Skip to content

Commit 38892bd

Browse files
committedNov 29, 2023
Release 4.2.1
1 parent 3d15396 commit 38892bd

File tree

87 files changed

+2345
-347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2345
-347
lines changed
 

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ The PostFinance Checkout TypeScript library wraps around the PostFinance Checkou
1212
- npm 6+
1313

1414
## Installation
15+
>**_NOTE:_** Highly recommended to use TypeScript SDK in server-side applications.<br>
16+
Use front-end frameworks such as Angular at your own risk, as the application might be incompatible or cause a potential threat that the application user information (such as secret keys) might be revealed publicly in the browser.
1517

1618
## NPM install (recommended)
1719
```sh

‎index.ts

+6
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ import { UserType as UserTypeModelImport } from "./src/models/UserType";
255255
import { WalletType as WalletTypeModelImport } from "./src/models/WalletType";
256256
import { WebAppConfirmationRequest as WebAppConfirmationRequestModelImport } from "./src/models/WebAppConfirmationRequest";
257257
import { WebAppConfirmationResponse as WebAppConfirmationResponseModelImport } from "./src/models/WebAppConfirmationResponse";
258+
import { WebhookEncryptionPublicKey as WebhookEncryptionPublicKeyModelImport } from "./src/models/WebhookEncryptionPublicKey";
258259
import { WebhookIdentity as WebhookIdentityModelImport } from "./src/models/WebhookIdentity";
259260
import { WebhookListener as WebhookListenerModelImport } from "./src/models/WebhookListener";
260261
import { WebhookListenerEntity as WebhookListenerEntityModelImport } from "./src/models/WebhookListenerEntity";
@@ -388,6 +389,7 @@ import { TransactionVoidService as TransactionVoidServiceApiImport } from "./src
388389
import { UserAccountRoleService as UserAccountRoleServiceApiImport } from "./src/api/UserAccountRoleService";
389390
import { UserSpaceRoleService as UserSpaceRoleServiceApiImport } from "./src/api/UserSpaceRoleService";
390391
import { WebAppService as WebAppServiceApiImport } from "./src/api/WebAppService";
392+
import { WebhookEncryptionService as WebhookEncryptionServiceApiImport } from "./src/api/WebhookEncryptionService";
391393
import { WebhookListenerService as WebhookListenerServiceApiImport } from "./src/api/WebhookListenerService";
392394
import { WebhookUrlService as WebhookUrlServiceApiImport } from "./src/api/WebhookUrlService";
393395

@@ -908,6 +910,8 @@ export namespace PostFinanceCheckout {
908910
export const WebAppConfirmationRequest = WebAppConfirmationRequestModelImport;
909911
export type WebAppConfirmationResponse = WebAppConfirmationResponseModelImport;
910912
export const WebAppConfirmationResponse = WebAppConfirmationResponseModelImport;
913+
export type WebhookEncryptionPublicKey = WebhookEncryptionPublicKeyModelImport;
914+
export const WebhookEncryptionPublicKey = WebhookEncryptionPublicKeyModelImport;
911915
export type WebhookIdentity = WebhookIdentityModelImport;
912916
export const WebhookIdentity = WebhookIdentityModelImport;
913917
export type WebhookListener = WebhookListenerModelImport;
@@ -1175,6 +1179,8 @@ export namespace PostFinanceCheckout {
11751179
export const UserSpaceRoleService = UserSpaceRoleServiceApiImport;
11761180
export type WebAppService = WebAppServiceApiImport;
11771181
export const WebAppService = WebAppServiceApiImport;
1182+
export type WebhookEncryptionService = WebhookEncryptionServiceApiImport;
1183+
export const WebhookEncryptionService = WebhookEncryptionServiceApiImport;
11781184
export type WebhookListenerService = WebhookListenerServiceApiImport;
11791185
export const WebhookListenerService = WebhookListenerServiceApiImport;
11801186
export type WebhookUrlService = WebhookUrlServiceApiImport;

0 commit comments

Comments
 (0)