@solidgate/client-sdk-loader 1.33.0 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +26 -1
- package/dist/cjs/enums/PayableEntity.d.ts +2 -1
- package/dist/cjs/enums/PayableEntity.js +1 -0
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/interfaces/ClientSdkInstance.d.ts +3 -1
- package/dist/cjs/interfaces/InitConfig.d.ts +7 -0
- package/dist/cjs/interfaces/WalletCardType.d.ts +17 -0
- package/dist/cjs/interfaces/WalletCardType.js +2 -0
- package/dist/cjs/interfaces/messages/InteractionMessage.d.ts +1 -1
- package/dist/cjs/interfaces/messages/MountedMessage.d.ts +1 -1
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/enums/PayableEntity.d.ts +2 -1
- package/dist/esm/enums/PayableEntity.js +1 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/interfaces/ClientSdkInstance.d.ts +3 -1
- package/dist/esm/interfaces/InitConfig.d.ts +7 -0
- package/dist/esm/interfaces/WalletCardType.d.ts +17 -0
- package/dist/esm/interfaces/WalletCardType.js +1 -0
- package/dist/esm/interfaces/messages/InteractionMessage.d.ts +1 -1
- package/dist/esm/interfaces/messages/MountedMessage.d.ts +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/src/enums/PayableEntity.ts +2 -1
- package/src/index.ts +19 -1
- package/src/interfaces/ClientSdkInstance.ts +6 -1
- package/src/interfaces/InitConfig.ts +9 -0
- package/src/interfaces/WalletCardType.ts +27 -0
- package/src/interfaces/messages/InteractionMessage.ts +1 -0
- package/src/interfaces/messages/MountedMessage.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
**1.35.0**
|
|
2
|
+
|
|
3
|
+
Added **walletCardType** event support:
|
|
4
|
+
- Added the **walletCardType** subscription overload (subscriber + **pauseUntil**) to **ClientSdkInstance.on** and **ClientSdkInstance.unsubscribe**
|
|
5
|
+
- Added **WalletCardTypeEvent**, **WalletCardTypeSubscriber**, **WalletCardTypeCard**, **WalletCardTypeWallet**, **WalletCardTypeFunding**, **WalletCardTypeSideEffect** types
|
|
6
|
+
- Added **totalPriceStatus** (TOTAL_PRICE_STATUS_FINAL, TOTAL_PRICE_STATUS_ESTIMATED) to **googlePayButtonParams** in the **InitConfig** interface
|
|
7
|
+
|
|
8
|
+
**1.34.0**
|
|
9
|
+
|
|
10
|
+
Added **Click to Pay** support:
|
|
11
|
+
- Added **ClickToPay** to the **PayableEntity** enum
|
|
12
|
+
- Added **clicktopay** to the **entity** field of **MountedMessage** event
|
|
13
|
+
- Added **clicktopay** to the **name** field of **InteractionMessage** event
|
|
14
|
+
- Added **clickToPayButtonParams** (enabled, height, saveRecognitionToken, supportedCardNetworks) to the **InitConfig** interface
|
|
15
|
+
|
|
1
16
|
**1.33.0**
|
|
2
17
|
|
|
3
18
|
Added **UPI** payment method support:
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This repository is wrapper for the Solidgate Client Software Development Kit (SDK).
|
|
4
4
|
|
|
5
|
-
It supports rendering payment forms and resign forms, including custom container elements for <a href="https://docs.solidgate.com/payments/integrate/payment-form/google-pay-button/" target="_blank">Google Pay</a>, <a href="https://docs.solidgate.com/payments/integrate/payment-form/apple-pay-button/" target="_blank">Apple Pay</a>,
|
|
5
|
+
It supports rendering payment forms and resign forms, including custom container elements for <a href="https://docs.solidgate.com/payments/integrate/payment-form/google-pay-button/" target="_blank">Google Pay</a>, <a href="https://docs.solidgate.com/payments/integrate/payment-form/apple-pay-button/" target="_blank">Apple Pay</a>, <a href="https://docs.solidgate.com/payments/integrate/payment-form/paypal-button/" target="_blank">PayPal</a>, or Click to Pay buttons.
|
|
6
6
|
|
|
7
7
|
Check our
|
|
8
8
|
* <a href="https://docs.solidgate.com/" target="_blank">Payment guide</a> to understand business value better
|
|
@@ -64,6 +64,31 @@ async function init() {
|
|
|
64
64
|
}
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
+
### Wallet card type
|
|
68
|
+
|
|
69
|
+
Apple Pay and Google Pay report the payer's card funding type before the charge.
|
|
70
|
+
Subscribe to `walletCardType` to inspect it and, optionally, pause the wallet flow
|
|
71
|
+
with `pauseUntil` while you call an update intent method (`update`, `updateCheckout`).
|
|
72
|
+
The side effect has a 25 s budget, measured from the moment the event fired:
|
|
73
|
+
|
|
74
|
+
```typescript
|
|
75
|
+
form.on('walletCardType', (event, pauseUntil) => {
|
|
76
|
+
const { wallet, card } = event.data // wallet: 'applePay' | 'googlePay'
|
|
77
|
+
|
|
78
|
+
if (card.type === 'unknown') {
|
|
79
|
+
return // no intent update - the wallet continues immediately
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
pauseUntil(async () => {
|
|
83
|
+
await form.update({ partialIntent: intentFor(card.type) })
|
|
84
|
+
})
|
|
85
|
+
})
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Calling an update intent method inside the event on Google Pay also requires
|
|
89
|
+
`googlePayButtonParams: { totalPriceStatus: 'TOTAL_PRICE_STATUS_ESTIMATED' }` in the
|
|
90
|
+
init config, so the sheet renders the amount as an estimate.
|
|
91
|
+
|
|
67
92
|
## Development
|
|
68
93
|
|
|
69
94
|
Build:
|
|
@@ -15,5 +15,6 @@ var PayableEntity;
|
|
|
15
15
|
PayableEntity["Mbway"] = "mbway";
|
|
16
16
|
PayableEntity["CashApp"] = "cashapp";
|
|
17
17
|
PayableEntity["PixAutomatico"] = "pix-automatico";
|
|
18
|
+
PayableEntity["ClickToPay"] = "clicktopay";
|
|
18
19
|
})(PayableEntity || (PayableEntity = {}));
|
|
19
20
|
exports.default = PayableEntity;
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import CustomStylesAppendedMessage from './interfaces/messages/CustomStylesAppen
|
|
|
18
18
|
import CardMessage from './interfaces/messages/CardMessage';
|
|
19
19
|
import PaymentDetailsMessage from './interfaces/messages/PaymentDetailsMessage';
|
|
20
20
|
import { ResignRequest, ResignFormConfig } from './interfaces/ResignConfig';
|
|
21
|
+
import { WalletCardTypeEventName, WalletCardTypeWallet, WalletCardTypeFunding, WalletCardTypeCard, WalletCardTypeEventData, WalletCardTypeEvent, WalletCardTypeSideEffect, WalletCardTypeSubscriber } from './interfaces/WalletCardType';
|
|
21
22
|
import Message from './interfaces/messages/Message';
|
|
22
23
|
import PriceBreakdown from './interfaces/PriceBreakdown';
|
|
23
24
|
import OrderShort from './interfaces/OrderShort';
|
|
@@ -37,4 +38,4 @@ import FormButtonType from './enums/FormButtonType';
|
|
|
37
38
|
import CardBrandIconStyle from './enums/CardBrandIconStyle';
|
|
38
39
|
import SdkLoader from './services/SdkLoader';
|
|
39
40
|
export { InteractionTargetType, AdditionalFieldName, InteractionType, FormButtonType, PayableEntity, SecureBrand, CardBrandIconStyle, MessageType, FieldName, CardBrand, SdkLoader, FormType };
|
|
40
|
-
export type { CustomStylesAppendedMessage, PaymentDetailsMessage, OrderStatusMessage, InteractionMessage, ClientSdkInstance, RedirectMessage, MountedMessage, SuccessMessage, VerifyMessage, ResizeMessage, SubmitMessage, ErrorMessage, UpdateConfig, FailMessage, CardMessage, OrderStatus, APMOrderStatus, PriceBreakdown, Transaction, APMTransaction, SdkMessage, InitConfig, ResignRequest, ResignFormConfig, OrderShort, ClientSdk, Message };
|
|
41
|
+
export type { CustomStylesAppendedMessage, PaymentDetailsMessage, OrderStatusMessage, InteractionMessage, ClientSdkInstance, RedirectMessage, MountedMessage, SuccessMessage, VerifyMessage, ResizeMessage, SubmitMessage, ErrorMessage, UpdateConfig, FailMessage, CardMessage, OrderStatus, APMOrderStatus, PriceBreakdown, Transaction, APMTransaction, SdkMessage, InitConfig, ResignRequest, ResignFormConfig, OrderShort, ClientSdk, Message, WalletCardTypeEventName, WalletCardTypeWallet, WalletCardTypeFunding, WalletCardTypeCard, WalletCardTypeEventData, WalletCardTypeEvent, WalletCardTypeSideEffect, WalletCardTypeSubscriber };
|
|
@@ -4,12 +4,14 @@ import SdkMessage from './SdkMessage';
|
|
|
4
4
|
import ApplyCouponPrices from './ApplyCouponPrices';
|
|
5
5
|
import MessageType from '../enums/MessageType';
|
|
6
6
|
import { ResignFormConfig, ResignRequest } from './ResignConfig';
|
|
7
|
+
import { WalletCardTypeEventName, WalletCardTypeSubscriber } from './WalletCardType';
|
|
7
8
|
export default interface ClientSdkInstance {
|
|
8
9
|
init(config: InitConfig): Promise<void>;
|
|
9
10
|
resign(request: ResignRequest, config?: ResignFormConfig): Promise<ClientSdkInstance>;
|
|
10
11
|
update(config: UpdateConfig): Promise<void>;
|
|
12
|
+
on(event: WalletCardTypeEventName, subscriber: WalletCardTypeSubscriber): void;
|
|
11
13
|
on<T extends MessageType>(event: T, callback: (e: MessageEvent<SdkMessage[T]>) => void): void;
|
|
12
|
-
unsubscribe(messageType: MessageType): void;
|
|
14
|
+
unsubscribe(messageType: MessageType | WalletCardTypeEventName): void;
|
|
13
15
|
unsubscribeAll(): void;
|
|
14
16
|
submit(): void;
|
|
15
17
|
applyCoupon(couponCode: string): Promise<ApplyCouponPrices>;
|
|
@@ -50,6 +50,7 @@ export default interface InitConfig {
|
|
|
50
50
|
containerId: string;
|
|
51
51
|
color: string;
|
|
52
52
|
type: string;
|
|
53
|
+
totalPriceStatus: 'TOTAL_PRICE_STATUS_FINAL' | 'TOTAL_PRICE_STATUS_ESTIMATED';
|
|
53
54
|
}>;
|
|
54
55
|
applePayButtonParams?: Partial<{
|
|
55
56
|
enabled: boolean;
|
|
@@ -112,4 +113,10 @@ export default interface InitConfig {
|
|
|
112
113
|
height?: number;
|
|
113
114
|
resetEnabled?: boolean;
|
|
114
115
|
};
|
|
116
|
+
clickToPayButtonParams?: {
|
|
117
|
+
enabled?: boolean;
|
|
118
|
+
height?: number;
|
|
119
|
+
saveRecognitionToken?: boolean;
|
|
120
|
+
supportedCardNetworks?: ('mastercard' | 'visa' | 'amex' | 'discover')[];
|
|
121
|
+
};
|
|
115
122
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare type WalletCardTypeEventName = 'walletCardType';
|
|
2
|
+
export declare type WalletCardTypeWallet = 'applePay' | 'googlePay';
|
|
3
|
+
export declare type WalletCardTypeFunding = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
4
|
+
export interface WalletCardTypeCard {
|
|
5
|
+
type: WalletCardTypeFunding;
|
|
6
|
+
brand?: string;
|
|
7
|
+
last4?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface WalletCardTypeEventData {
|
|
10
|
+
wallet: WalletCardTypeWallet;
|
|
11
|
+
card: WalletCardTypeCard;
|
|
12
|
+
}
|
|
13
|
+
export interface WalletCardTypeEvent {
|
|
14
|
+
data: WalletCardTypeEventData;
|
|
15
|
+
}
|
|
16
|
+
export declare type WalletCardTypeSideEffect = () => Promise<unknown>;
|
|
17
|
+
export declare type WalletCardTypeSubscriber = (event: WalletCardTypeEvent, pauseUntil: (sideEffect: WalletCardTypeSideEffect) => void) => void;
|
|
@@ -21,7 +21,7 @@ declare type InteractionMessageFormState = {
|
|
|
21
21
|
declare type InteractionMessage = Message<MessageType.Interaction> & {
|
|
22
22
|
target: {
|
|
23
23
|
type: InteractionTargetType;
|
|
24
|
-
name: FieldName | ResignFieldName | AdditionalFieldName | 'submit' | 'googlePay' | 'applePay' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico';
|
|
24
|
+
name: FieldName | ResignFieldName | AdditionalFieldName | 'submit' | 'googlePay' | 'applePay' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico' | 'clicktopay';
|
|
25
25
|
interaction: InteractionType;
|
|
26
26
|
};
|
|
27
27
|
} & InteractionMessageFormState;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Message from './Message';
|
|
2
2
|
import MessageType from '../../enums/MessageType';
|
|
3
3
|
export default interface MountedMessage extends Message<MessageType.Mounted> {
|
|
4
|
-
entity: 'applebtn' | 'googlebtn' | 'form' | 'resign' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico';
|
|
4
|
+
entity: 'applebtn' | 'googlebtn' | 'form' | 'resign' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico' | 'clicktopay';
|
|
5
5
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../src/enums/formtype.ts","../../src/enums/cardbrand.ts","../../src/enums/securebrand.ts","../../src/enums/formbuttontype.ts","../../src/enums/additionalfieldname.ts","../../src/interfaces/initconfig.ts","../../src/interfaces/updateconfig.ts","../../src/enums/messagetype.ts","../../src/interfaces/messages/message.ts","../../src/interfaces/messages/mountedmessage.ts","../../src/interfaces/messages/errormessage.ts","../../src/interfaces/ordershort.ts","../../src/enums/payableentity.ts","../../src/interfaces/messages/failmessage.ts","../../src/interfaces/transaction.ts","../../src/interfaces/orderstatus.ts","../../src/interfaces/apmtransaction.ts","../../src/interfaces/apmorderstatus.ts","../../src/interfaces/messages/orderstatusmessage.ts","../../src/interfaces/messages/resizemessage.ts","../../src/interfaces/messages/successmessage.ts","../../src/interfaces/messages/submitmessage.ts","../../src/enums/fieldname.ts","../../src/enums/interactiontype.ts","../../src/enums/interactiontargettype.ts","../../src/enums/resignfieldname.ts","../../src/interfaces/messages/interactionmessage.ts","../../src/interfaces/messages/cardmessage.ts","../../src/interfaces/messages/verifymessage.ts","../../src/interfaces/messages/redirectmessage.ts","../../src/interfaces/messages/customstylesappendedmessage.ts","../../src/interfaces/pricebreakdown.ts","../../src/interfaces/messages/paymentdetailsmessage.ts","../../src/interfaces/sdkmessage.ts","../../src/interfaces/applycouponprices.ts","../../src/enums/cardbrandiconstyle.ts","../../src/interfaces/resignconfig.ts","../../src/interfaces/clientsdkinstance.ts","../../src/interfaces/clientsdk.ts","../../src/services/sdkloader.ts","../../src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6c368b34c314d833dc422950927ea5bf6704163943b70c17059f3444fd1ae101","406deb59bf25a29a2cc0163ddea9ce7fd26db20df5164877616248a4eabd7467","6eae9b92f94b2882db464e1b7e1c87371f3a4cd4c9a91b8bdfeb76ee1ba7f68a","43edd1f90c325db3c47bf9e1030e63b0da962860ad433e9aa64392d12c7445f7","4f67e49d43f8f937a91951dd827bfd3d1c29b52ed9253734fbf5ba14cd95e619","6a312889a66e94b38a2135cf4ff7330926325ef3299dc4f5cc0326a4cf6ca02f","aae6366a89fb07e539055d0bb6e12723ddfa931bcf658cb45f47eb547b603a00","b0aee83852e03336810125cd88c4af69553a77e827563cd36861b5a33b97c922","b4de4a421d92ac3cca9eae424c9387345f5665a5c74ad43bb0fbaee2e559848d","08282e6003b76449109098116a3982af60a5bdc3084ea61a0c1da11a8d3c11b7","70815944926c98e1964f42eee9177b0f908b51b632d3343b41953d4517260d1e","633d86c69f78ae26a5138191ecd0c23ec810d539ff154fdcc192c3d737b0dac1","180274ce57cf11cf86f3cbb76d5f51e13fda477123f7a812c3a6eaabe0bcc7f5","918a9263ac886382a6da0af5f4e2ef0c1855fb07dca8c1c1f058cb1b09a75041","85477c8be65fde6850ccccfa1f2c7ef48e676547d3ad0f2ec8e3f29ef7441b4f","b556bcb752213e3267bb31bb449d8839949907654b0134409a039e1430255f0d","2aac29eefc68f572ab15e0a0936602ac94122518f74bbc4782103b3dc10affa1","33002442d6f7b4b6ef27a93751f28337966801f6145acef6f835e4cc6252a38b","33f25992efc3e610b92a162d4003478de700a0617eb67c966e425a89b0a3d2cc","ed21c63804be037c5973861a727688bcc565c51117311af643c7ed32318a9c01","e49d8b78d362550d9800963d59fa8f4bcaf99c4ee8ceab88cef9253a00f48952","47ad1b44b1af911c91b1efbb414bdbe64bdb44c6048bf54290368cea3dd66024","6f2352766b2bd179df3463a633ab67a612990adbabb7683a162d954da621ea15","3caf6e3e5016f71324ab174d2c6b159d925fe79fceca16c5b72e06d2d3e9a0ba","a765be4bd2244ad2fe5d0b1b8bdfcdd739d6e75846d487556b9007446fe054be","22c5ebf8c0fb5061d5a5a07d2635865bcf73ad4c1871d675bd91c3f8e7d8a8e4","1266ae3c4138d8045f67dc847909ad175d23e8b469de955894ec61834ccd4a95","2f3774b6d9e7b4d38a530063ec78eb0e79d9141457cdafbee8035ca65715b835","0e48d8c0080844101e208231080804cce4cd046ddf22cccbc8f29c9ac7c24f63","bade74effdb998f563c87e741b8dae04db7611c4131c6ab1ab373b4510854a21","0074f35fe925527eda5968894c2215c0f72dad6e1410a55761d65daeacbed418","1dd96725a51d505881ad6dd2994a8d3180453caae18686d65f694a527a9b3d5f","34754fa6d71480765f4dbd4225ddadf6cec776aa175d845964c063d6483952ed","0c0a6be0bc8f6cc9d8d0c462ba1d7d9f6732f7021b51ddbf951c9768f8445143","da175af43cccd5858a8c91018a40e3c288bbd9eca10c101111408fb72ce0e0f8","62b268bf838ab12d91c7f3f12b0ebc20f22b591cff02536018d8a7a567d96354","aba1df0b90c327c5854b6e83a64f8762020f3c06a3489b061a9c02f7ce01fe10","2ecc8d57b820914ca448cac2214eab771e6037279b7f7b8344ba1f1057cb3295","791b585b50c2d0e557288e5dc3d059037761978fb82ca4b69b3f689f5dcc0bf5",{"version":"08ab9084718554186912e87b00a7813bb46b9061636c89dd3a173e14eac2177b","affectsGlobalScope":true},"877ecd9c277944b4997f0d4031f098568d717b83261d77d49428117386cdc7c5","ac65f04c2df0218cb8e54f012745cbfcc3c0e67c1f6b1e557d88842bbb72e2db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a2e86df4db576d80704e25293cec6f20fc6101a11f4747440e2eef58fb3c860c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","6704f0b54df85640baaeebd86c9d4a1dbb661d5a4d57a75bc84162f562f6531d","9d255af1b09c6697089d3c9bf438292a298d8b7a95c68793c9aae80afc9e5ca7","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","db84fe1cb3b2e2b8e64c9265c90231f7e63e8b50b3558e30473925c712f8f23b","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","5e4a8a9465586cc3aebd70e2b94bcdfa32dcda5782a8a696530b143f8a0b2f14","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","3c0200c7436608251b7b96cda0e8b8171555da78e44b5a0739a5f5ba7c21ade2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ba437529769c1d4766a8a6d5a304f46fbb4f5f1716f23f4cbf20b7a4fd82d8ba","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"1637db4fe3d1aac2d98812832a7f07e16e7b02e409b2cb63414c6f52aa2044a0","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[81,133],[133],[81,82,83,84,85,133],[81,83,133],[104,133,140],[133,142],[133,143],[133,147,151],[87,133],[90,133],[91,96,124,133],[92,103,104,111,121,132,133],[92,93,103,111,133],[94,133],[95,96,104,112,133],[96,121,129,133],[97,99,103,111,133],[98,133],[99,100,133],[103,133],[101,103,133],[103,104,105,121,132,133],[103,104,105,118,121,124,133],[133,137],[99,103,106,111,121,132,133],[103,104,106,107,111,121,129,132,133],[106,108,121,129,132,133],[87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],[103,109,133],[110,132,133],[99,103,111,121,133],[112,133],[113,133],[90,114,133],[115,131,133,137],[116,133],[117,133],[103,118,119,133],[118,120,133,135],[91,103,121,122,123,124,133],[91,121,123,133],[121,122,133],[124,133],[125,133],[121,133],[103,127,128,133],[127,128,133],[96,111,121,129,133],[130,133],[111,131,133],[91,106,117,132,133],[96,133],[121,133,134],[133,135],[133,136],[91,96,103,105,114,121,132,133,135,137],[121,133,138],[133,158],[133,145,148],[133,145,148,149,150],[133,147],[133,146],[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,133],[56,133],[45,76,77,133],[45,46,47,73,74,76,133],[40,41,42,43,44,133],[47,48,133],[47,48,51,52,133],[44,47,48,62,63,64,65,133],[47,133],[47,48,52,55,57,133],[47,48,71,133],[47,48,52,133],[54,133],[75,133],[47,49,50,53,58,59,60,61,66,67,68,69,70,72,133],[45,133],[78,133]],"referencedMap":[[83,1],[81,2],[86,3],[82,1],[84,4],[85,1],[141,5],[142,2],[143,6],[144,7],[152,8],[153,2],[154,2],[87,9],[88,9],[90,10],[91,11],[92,12],[93,13],[94,14],[95,15],[96,16],[97,17],[98,18],[99,19],[100,19],[102,20],[101,21],[103,20],[104,22],[105,23],[89,24],[139,2],[106,25],[107,26],[108,27],[140,28],[109,29],[110,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,38],[120,39],[121,40],[123,41],[122,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[155,2],[156,2],[157,2],[158,2],[159,58],[145,2],[149,59],[151,60],[150,59],[148,61],[147,62],[146,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[80,63],[57,64],[56,2],[74,2],[78,65],[77,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[79,79]],"exportedModulesMap":[[83,1],[81,2],[86,3],[82,1],[84,4],[85,1],[141,5],[142,2],[143,6],[144,7],[152,8],[153,2],[154,2],[87,9],[88,9],[90,10],[91,11],[92,12],[93,13],[94,14],[95,15],[96,16],[97,17],[98,18],[99,19],[100,19],[102,20],[101,21],[103,20],[104,22],[105,23],[89,24],[139,2],[106,25],[107,26],[108,27],[140,28],[109,29],[110,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,38],[120,39],[121,40],[123,41],[122,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[155,2],[156,2],[157,2],[158,2],[159,58],[145,2],[149,59],[151,60],[150,59],[148,61],[147,62],[146,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[80,63],[57,64],[56,2],[74,2],[78,65],[77,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[79,79]],"semanticDiagnosticsPerFile":[83,81,86,82,84,85,141,142,143,144,152,153,154,87,88,90,91,92,93,94,95,96,97,98,99,100,102,101,103,104,105,89,139,106,107,108,140,109,110,111,112,113,114,115,116,117,118,119,120,121,123,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,155,156,157,158,159,145,149,151,150,148,147,146,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,44,41,75,62,43,40,64,63,47,52,65,42,80,57,56,74,78,77,45,67,70,50,53,66,48,49,58,72,69,59,61,60,68,51,55,71,76,73,54,46,79]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../src/enums/formtype.ts","../../src/enums/cardbrand.ts","../../src/enums/securebrand.ts","../../src/enums/formbuttontype.ts","../../src/enums/additionalfieldname.ts","../../src/interfaces/initconfig.ts","../../src/interfaces/updateconfig.ts","../../src/enums/messagetype.ts","../../src/interfaces/messages/message.ts","../../src/interfaces/messages/mountedmessage.ts","../../src/interfaces/messages/errormessage.ts","../../src/interfaces/ordershort.ts","../../src/enums/payableentity.ts","../../src/interfaces/messages/failmessage.ts","../../src/interfaces/transaction.ts","../../src/interfaces/orderstatus.ts","../../src/interfaces/apmtransaction.ts","../../src/interfaces/apmorderstatus.ts","../../src/interfaces/messages/orderstatusmessage.ts","../../src/interfaces/messages/resizemessage.ts","../../src/interfaces/messages/successmessage.ts","../../src/interfaces/messages/submitmessage.ts","../../src/enums/fieldname.ts","../../src/enums/interactiontype.ts","../../src/enums/interactiontargettype.ts","../../src/enums/resignfieldname.ts","../../src/interfaces/messages/interactionmessage.ts","../../src/interfaces/messages/cardmessage.ts","../../src/interfaces/messages/verifymessage.ts","../../src/interfaces/messages/redirectmessage.ts","../../src/interfaces/messages/customstylesappendedmessage.ts","../../src/interfaces/pricebreakdown.ts","../../src/interfaces/messages/paymentdetailsmessage.ts","../../src/interfaces/sdkmessage.ts","../../src/interfaces/applycouponprices.ts","../../src/enums/cardbrandiconstyle.ts","../../src/interfaces/resignconfig.ts","../../src/interfaces/walletcardtype.ts","../../src/interfaces/clientsdkinstance.ts","../../src/interfaces/clientsdk.ts","../../src/services/sdkloader.ts","../../src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/estree/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6c368b34c314d833dc422950927ea5bf6704163943b70c17059f3444fd1ae101","406deb59bf25a29a2cc0163ddea9ce7fd26db20df5164877616248a4eabd7467","6eae9b92f94b2882db464e1b7e1c87371f3a4cd4c9a91b8bdfeb76ee1ba7f68a","43edd1f90c325db3c47bf9e1030e63b0da962860ad433e9aa64392d12c7445f7","4f67e49d43f8f937a91951dd827bfd3d1c29b52ed9253734fbf5ba14cd95e619","179a17c58f72a9e6117f5b2309f2aaab088a860d88ce02da72b0c290923aab22","aae6366a89fb07e539055d0bb6e12723ddfa931bcf658cb45f47eb547b603a00","b0aee83852e03336810125cd88c4af69553a77e827563cd36861b5a33b97c922","b4de4a421d92ac3cca9eae424c9387345f5665a5c74ad43bb0fbaee2e559848d","cc2dd5ce16f4024f0ad2e9b4389c0de0f1a1c8c6bd49c4b403103ebe7c061cc3","70815944926c98e1964f42eee9177b0f908b51b632d3343b41953d4517260d1e","633d86c69f78ae26a5138191ecd0c23ec810d539ff154fdcc192c3d737b0dac1","4b30306f7fcce478486c3b1ab3942fed94527a9d74075fce4ef42d399adbf610","918a9263ac886382a6da0af5f4e2ef0c1855fb07dca8c1c1f058cb1b09a75041","85477c8be65fde6850ccccfa1f2c7ef48e676547d3ad0f2ec8e3f29ef7441b4f","b556bcb752213e3267bb31bb449d8839949907654b0134409a039e1430255f0d","2aac29eefc68f572ab15e0a0936602ac94122518f74bbc4782103b3dc10affa1","33002442d6f7b4b6ef27a93751f28337966801f6145acef6f835e4cc6252a38b","33f25992efc3e610b92a162d4003478de700a0617eb67c966e425a89b0a3d2cc","ed21c63804be037c5973861a727688bcc565c51117311af643c7ed32318a9c01","e49d8b78d362550d9800963d59fa8f4bcaf99c4ee8ceab88cef9253a00f48952","47ad1b44b1af911c91b1efbb414bdbe64bdb44c6048bf54290368cea3dd66024","6f2352766b2bd179df3463a633ab67a612990adbabb7683a162d954da621ea15","3caf6e3e5016f71324ab174d2c6b159d925fe79fceca16c5b72e06d2d3e9a0ba","a765be4bd2244ad2fe5d0b1b8bdfcdd739d6e75846d487556b9007446fe054be","22c5ebf8c0fb5061d5a5a07d2635865bcf73ad4c1871d675bd91c3f8e7d8a8e4","3f34e82e273dfc2c9e28c60f12f133a4d99b21f64bf20c310b06831d32c8ef24","2f3774b6d9e7b4d38a530063ec78eb0e79d9141457cdafbee8035ca65715b835","0e48d8c0080844101e208231080804cce4cd046ddf22cccbc8f29c9ac7c24f63","bade74effdb998f563c87e741b8dae04db7611c4131c6ab1ab373b4510854a21","0074f35fe925527eda5968894c2215c0f72dad6e1410a55761d65daeacbed418","1dd96725a51d505881ad6dd2994a8d3180453caae18686d65f694a527a9b3d5f","34754fa6d71480765f4dbd4225ddadf6cec776aa175d845964c063d6483952ed","0c0a6be0bc8f6cc9d8d0c462ba1d7d9f6732f7021b51ddbf951c9768f8445143","da175af43cccd5858a8c91018a40e3c288bbd9eca10c101111408fb72ce0e0f8","62b268bf838ab12d91c7f3f12b0ebc20f22b591cff02536018d8a7a567d96354","aba1df0b90c327c5854b6e83a64f8762020f3c06a3489b061a9c02f7ce01fe10","45d0c1bfca558b78d5931383ec2d90dc599ce4432092786a78e2006fd1f7feeb","d802de378790491980d4b3bbb893189ae6838002eadfad5d92f2d28dbfa6672b","791b585b50c2d0e557288e5dc3d059037761978fb82ca4b69b3f689f5dcc0bf5",{"version":"08ab9084718554186912e87b00a7813bb46b9061636c89dd3a173e14eac2177b","affectsGlobalScope":true},"99f0968d406f630408879e5d127518e0e52d4c13a4ed5ddbf74baf8e48c1ec26","ac65f04c2df0218cb8e54f012745cbfcc3c0e67c1f6b1e557d88842bbb72e2db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a2e86df4db576d80704e25293cec6f20fc6101a11f4747440e2eef58fb3c860c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","6704f0b54df85640baaeebd86c9d4a1dbb661d5a4d57a75bc84162f562f6531d","9d255af1b09c6697089d3c9bf438292a298d8b7a95c68793c9aae80afc9e5ca7","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","db84fe1cb3b2e2b8e64c9265c90231f7e63e8b50b3558e30473925c712f8f23b","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","5e4a8a9465586cc3aebd70e2b94bcdfa32dcda5782a8a696530b143f8a0b2f14","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","3c0200c7436608251b7b96cda0e8b8171555da78e44b5a0739a5f5ba7c21ade2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ba437529769c1d4766a8a6d5a304f46fbb4f5f1716f23f4cbf20b7a4fd82d8ba","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"1637db4fe3d1aac2d98812832a7f07e16e7b02e409b2cb63414c6f52aa2044a0","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba","e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[82,134],[134],[82,83,84,85,86,134],[82,84,134],[105,134,141],[134,143],[134,144],[134,148,152],[88,134],[91,134],[92,97,125,134],[93,104,105,112,122,133,134],[93,94,104,112,134],[95,134],[96,97,105,113,134],[97,122,130,134],[98,100,104,112,134],[99,134],[100,101,134],[104,134],[102,104,134],[104,105,106,122,133,134],[104,105,106,119,122,125,134],[134,138],[100,104,107,112,122,133,134],[104,105,107,108,112,122,130,133,134],[107,109,122,130,133,134],[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],[104,110,134],[111,133,134],[100,104,112,122,134],[113,134],[114,134],[91,115,134],[116,132,134,138],[117,134],[118,134],[104,119,120,134],[119,121,134,136],[92,104,122,123,124,125,134],[92,122,124,134],[122,123,134],[125,134],[126,134],[122,134],[104,128,129,134],[128,129,134],[97,112,122,130,134],[131,134],[112,132,134],[92,107,118,133,134],[97,134],[122,134,135],[134,136],[134,137],[92,97,104,106,115,122,133,134,136,138],[122,134,139],[134,159],[134,146,149],[134,146,149,150,151],[134,148],[134,147],[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,80,134],[56,134],[45,76,78,134],[45,46,47,73,74,76,77,134],[40,41,42,43,44,134],[47,48,134],[47,48,51,52,134],[44,47,48,62,63,64,65,134],[47,134],[47,48,52,55,57,134],[47,48,71,134],[47,48,52,134],[54,134],[75,134],[47,49,50,53,58,59,60,61,66,67,68,69,70,72,134],[45,134],[79,134]],"referencedMap":[[84,1],[82,2],[87,3],[83,1],[85,4],[86,1],[142,5],[143,2],[144,6],[145,7],[153,8],[154,2],[155,2],[88,9],[89,9],[91,10],[92,11],[93,12],[94,13],[95,14],[96,15],[97,16],[98,17],[99,18],[100,19],[101,19],[103,20],[102,21],[104,20],[105,22],[106,23],[90,24],[140,2],[107,25],[108,26],[109,27],[141,28],[110,29],[111,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,38],[121,39],[122,40],[124,41],[123,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[132,50],[133,51],[134,52],[135,53],[136,54],[137,55],[138,56],[139,57],[156,2],[157,2],[158,2],[159,2],[160,58],[146,2],[150,59],[152,60],[151,59],[149,61],[148,62],[147,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[81,63],[57,64],[56,2],[74,2],[79,65],[78,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[77,2],[80,79],[161,2]],"exportedModulesMap":[[84,1],[82,2],[87,3],[83,1],[85,4],[86,1],[142,5],[143,2],[144,6],[145,7],[153,8],[154,2],[155,2],[88,9],[89,9],[91,10],[92,11],[93,12],[94,13],[95,14],[96,15],[97,16],[98,17],[99,18],[100,19],[101,19],[103,20],[102,21],[104,20],[105,22],[106,23],[90,24],[140,2],[107,25],[108,26],[109,27],[141,28],[110,29],[111,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,38],[121,39],[122,40],[124,41],[123,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[132,50],[133,51],[134,52],[135,53],[136,54],[137,55],[138,56],[139,57],[156,2],[157,2],[158,2],[159,2],[160,58],[146,2],[150,59],[152,60],[151,59],[149,61],[148,62],[147,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[81,63],[57,64],[56,2],[74,2],[79,65],[78,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[77,2],[80,79],[161,2]],"semanticDiagnosticsPerFile":[84,82,87,83,85,86,142,143,144,145,153,154,155,88,89,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,90,140,107,108,109,141,110,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,156,157,158,159,160,146,150,152,151,149,148,147,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,44,41,75,62,43,40,64,63,47,52,65,42,81,57,56,74,79,78,45,67,70,50,53,66,48,49,58,72,69,59,61,60,68,51,55,71,76,73,54,46,77,80,161]},"version":"4.5.5"}
|
|
@@ -13,5 +13,6 @@ var PayableEntity;
|
|
|
13
13
|
PayableEntity["Mbway"] = "mbway";
|
|
14
14
|
PayableEntity["CashApp"] = "cashapp";
|
|
15
15
|
PayableEntity["PixAutomatico"] = "pix-automatico";
|
|
16
|
+
PayableEntity["ClickToPay"] = "clicktopay";
|
|
16
17
|
})(PayableEntity || (PayableEntity = {}));
|
|
17
18
|
export default PayableEntity;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import CustomStylesAppendedMessage from './interfaces/messages/CustomStylesAppen
|
|
|
18
18
|
import CardMessage from './interfaces/messages/CardMessage';
|
|
19
19
|
import PaymentDetailsMessage from './interfaces/messages/PaymentDetailsMessage';
|
|
20
20
|
import { ResignRequest, ResignFormConfig } from './interfaces/ResignConfig';
|
|
21
|
+
import { WalletCardTypeEventName, WalletCardTypeWallet, WalletCardTypeFunding, WalletCardTypeCard, WalletCardTypeEventData, WalletCardTypeEvent, WalletCardTypeSideEffect, WalletCardTypeSubscriber } from './interfaces/WalletCardType';
|
|
21
22
|
import Message from './interfaces/messages/Message';
|
|
22
23
|
import PriceBreakdown from './interfaces/PriceBreakdown';
|
|
23
24
|
import OrderShort from './interfaces/OrderShort';
|
|
@@ -37,4 +38,4 @@ import FormButtonType from './enums/FormButtonType';
|
|
|
37
38
|
import CardBrandIconStyle from './enums/CardBrandIconStyle';
|
|
38
39
|
import SdkLoader from './services/SdkLoader';
|
|
39
40
|
export { InteractionTargetType, AdditionalFieldName, InteractionType, FormButtonType, PayableEntity, SecureBrand, CardBrandIconStyle, MessageType, FieldName, CardBrand, SdkLoader, FormType };
|
|
40
|
-
export type { CustomStylesAppendedMessage, PaymentDetailsMessage, OrderStatusMessage, InteractionMessage, ClientSdkInstance, RedirectMessage, MountedMessage, SuccessMessage, VerifyMessage, ResizeMessage, SubmitMessage, ErrorMessage, UpdateConfig, FailMessage, CardMessage, OrderStatus, APMOrderStatus, PriceBreakdown, Transaction, APMTransaction, SdkMessage, InitConfig, ResignRequest, ResignFormConfig, OrderShort, ClientSdk, Message };
|
|
41
|
+
export type { CustomStylesAppendedMessage, PaymentDetailsMessage, OrderStatusMessage, InteractionMessage, ClientSdkInstance, RedirectMessage, MountedMessage, SuccessMessage, VerifyMessage, ResizeMessage, SubmitMessage, ErrorMessage, UpdateConfig, FailMessage, CardMessage, OrderStatus, APMOrderStatus, PriceBreakdown, Transaction, APMTransaction, SdkMessage, InitConfig, ResignRequest, ResignFormConfig, OrderShort, ClientSdk, Message, WalletCardTypeEventName, WalletCardTypeWallet, WalletCardTypeFunding, WalletCardTypeCard, WalletCardTypeEventData, WalletCardTypeEvent, WalletCardTypeSideEffect, WalletCardTypeSubscriber };
|
|
@@ -4,12 +4,14 @@ import SdkMessage from './SdkMessage';
|
|
|
4
4
|
import ApplyCouponPrices from './ApplyCouponPrices';
|
|
5
5
|
import MessageType from '../enums/MessageType';
|
|
6
6
|
import { ResignFormConfig, ResignRequest } from './ResignConfig';
|
|
7
|
+
import { WalletCardTypeEventName, WalletCardTypeSubscriber } from './WalletCardType';
|
|
7
8
|
export default interface ClientSdkInstance {
|
|
8
9
|
init(config: InitConfig): Promise<void>;
|
|
9
10
|
resign(request: ResignRequest, config?: ResignFormConfig): Promise<ClientSdkInstance>;
|
|
10
11
|
update(config: UpdateConfig): Promise<void>;
|
|
12
|
+
on(event: WalletCardTypeEventName, subscriber: WalletCardTypeSubscriber): void;
|
|
11
13
|
on<T extends MessageType>(event: T, callback: (e: MessageEvent<SdkMessage[T]>) => void): void;
|
|
12
|
-
unsubscribe(messageType: MessageType): void;
|
|
14
|
+
unsubscribe(messageType: MessageType | WalletCardTypeEventName): void;
|
|
13
15
|
unsubscribeAll(): void;
|
|
14
16
|
submit(): void;
|
|
15
17
|
applyCoupon(couponCode: string): Promise<ApplyCouponPrices>;
|
|
@@ -50,6 +50,7 @@ export default interface InitConfig {
|
|
|
50
50
|
containerId: string;
|
|
51
51
|
color: string;
|
|
52
52
|
type: string;
|
|
53
|
+
totalPriceStatus: 'TOTAL_PRICE_STATUS_FINAL' | 'TOTAL_PRICE_STATUS_ESTIMATED';
|
|
53
54
|
}>;
|
|
54
55
|
applePayButtonParams?: Partial<{
|
|
55
56
|
enabled: boolean;
|
|
@@ -112,4 +113,10 @@ export default interface InitConfig {
|
|
|
112
113
|
height?: number;
|
|
113
114
|
resetEnabled?: boolean;
|
|
114
115
|
};
|
|
116
|
+
clickToPayButtonParams?: {
|
|
117
|
+
enabled?: boolean;
|
|
118
|
+
height?: number;
|
|
119
|
+
saveRecognitionToken?: boolean;
|
|
120
|
+
supportedCardNetworks?: ('mastercard' | 'visa' | 'amex' | 'discover')[];
|
|
121
|
+
};
|
|
115
122
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare type WalletCardTypeEventName = 'walletCardType';
|
|
2
|
+
export declare type WalletCardTypeWallet = 'applePay' | 'googlePay';
|
|
3
|
+
export declare type WalletCardTypeFunding = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
4
|
+
export interface WalletCardTypeCard {
|
|
5
|
+
type: WalletCardTypeFunding;
|
|
6
|
+
brand?: string;
|
|
7
|
+
last4?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface WalletCardTypeEventData {
|
|
10
|
+
wallet: WalletCardTypeWallet;
|
|
11
|
+
card: WalletCardTypeCard;
|
|
12
|
+
}
|
|
13
|
+
export interface WalletCardTypeEvent {
|
|
14
|
+
data: WalletCardTypeEventData;
|
|
15
|
+
}
|
|
16
|
+
export declare type WalletCardTypeSideEffect = () => Promise<unknown>;
|
|
17
|
+
export declare type WalletCardTypeSubscriber = (event: WalletCardTypeEvent, pauseUntil: (sideEffect: WalletCardTypeSideEffect) => void) => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -21,7 +21,7 @@ declare type InteractionMessageFormState = {
|
|
|
21
21
|
declare type InteractionMessage = Message<MessageType.Interaction> & {
|
|
22
22
|
target: {
|
|
23
23
|
type: InteractionTargetType;
|
|
24
|
-
name: FieldName | ResignFieldName | AdditionalFieldName | 'submit' | 'googlePay' | 'applePay' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico';
|
|
24
|
+
name: FieldName | ResignFieldName | AdditionalFieldName | 'submit' | 'googlePay' | 'applePay' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico' | 'clicktopay';
|
|
25
25
|
interaction: InteractionType;
|
|
26
26
|
};
|
|
27
27
|
} & InteractionMessageFormState;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Message from './Message';
|
|
2
2
|
import MessageType from '../../enums/MessageType';
|
|
3
3
|
export default interface MountedMessage extends Message<MessageType.Mounted> {
|
|
4
|
-
entity: 'applebtn' | 'googlebtn' | 'form' | 'resign' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico';
|
|
4
|
+
entity: 'applebtn' | 'googlebtn' | 'form' | 'resign' | 'paypal' | 'pix' | 'upi' | 'pix-qr' | 'bizum' | 'blik' | 'mbway' | 'cashapp' | 'pix-automatico' | 'clicktopay';
|
|
5
5
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../src/enums/formtype.ts","../../src/enums/cardbrand.ts","../../src/enums/securebrand.ts","../../src/enums/formbuttontype.ts","../../src/enums/additionalfieldname.ts","../../src/interfaces/initconfig.ts","../../src/interfaces/updateconfig.ts","../../src/enums/messagetype.ts","../../src/interfaces/messages/message.ts","../../src/interfaces/messages/mountedmessage.ts","../../src/interfaces/messages/errormessage.ts","../../src/interfaces/ordershort.ts","../../src/enums/payableentity.ts","../../src/interfaces/messages/failmessage.ts","../../src/interfaces/transaction.ts","../../src/interfaces/orderstatus.ts","../../src/interfaces/apmtransaction.ts","../../src/interfaces/apmorderstatus.ts","../../src/interfaces/messages/orderstatusmessage.ts","../../src/interfaces/messages/resizemessage.ts","../../src/interfaces/messages/successmessage.ts","../../src/interfaces/messages/submitmessage.ts","../../src/enums/fieldname.ts","../../src/enums/interactiontype.ts","../../src/enums/interactiontargettype.ts","../../src/enums/resignfieldname.ts","../../src/interfaces/messages/interactionmessage.ts","../../src/interfaces/messages/cardmessage.ts","../../src/interfaces/messages/verifymessage.ts","../../src/interfaces/messages/redirectmessage.ts","../../src/interfaces/messages/customstylesappendedmessage.ts","../../src/interfaces/pricebreakdown.ts","../../src/interfaces/messages/paymentdetailsmessage.ts","../../src/interfaces/sdkmessage.ts","../../src/interfaces/applycouponprices.ts","../../src/enums/cardbrandiconstyle.ts","../../src/interfaces/resignconfig.ts","../../src/interfaces/clientsdkinstance.ts","../../src/interfaces/clientsdk.ts","../../src/services/sdkloader.ts","../../src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6c368b34c314d833dc422950927ea5bf6704163943b70c17059f3444fd1ae101","406deb59bf25a29a2cc0163ddea9ce7fd26db20df5164877616248a4eabd7467","6eae9b92f94b2882db464e1b7e1c87371f3a4cd4c9a91b8bdfeb76ee1ba7f68a","43edd1f90c325db3c47bf9e1030e63b0da962860ad433e9aa64392d12c7445f7","4f67e49d43f8f937a91951dd827bfd3d1c29b52ed9253734fbf5ba14cd95e619","6a312889a66e94b38a2135cf4ff7330926325ef3299dc4f5cc0326a4cf6ca02f","aae6366a89fb07e539055d0bb6e12723ddfa931bcf658cb45f47eb547b603a00","b0aee83852e03336810125cd88c4af69553a77e827563cd36861b5a33b97c922","b4de4a421d92ac3cca9eae424c9387345f5665a5c74ad43bb0fbaee2e559848d","08282e6003b76449109098116a3982af60a5bdc3084ea61a0c1da11a8d3c11b7","70815944926c98e1964f42eee9177b0f908b51b632d3343b41953d4517260d1e","633d86c69f78ae26a5138191ecd0c23ec810d539ff154fdcc192c3d737b0dac1","180274ce57cf11cf86f3cbb76d5f51e13fda477123f7a812c3a6eaabe0bcc7f5","918a9263ac886382a6da0af5f4e2ef0c1855fb07dca8c1c1f058cb1b09a75041","85477c8be65fde6850ccccfa1f2c7ef48e676547d3ad0f2ec8e3f29ef7441b4f","b556bcb752213e3267bb31bb449d8839949907654b0134409a039e1430255f0d","2aac29eefc68f572ab15e0a0936602ac94122518f74bbc4782103b3dc10affa1","33002442d6f7b4b6ef27a93751f28337966801f6145acef6f835e4cc6252a38b","33f25992efc3e610b92a162d4003478de700a0617eb67c966e425a89b0a3d2cc","ed21c63804be037c5973861a727688bcc565c51117311af643c7ed32318a9c01","e49d8b78d362550d9800963d59fa8f4bcaf99c4ee8ceab88cef9253a00f48952","47ad1b44b1af911c91b1efbb414bdbe64bdb44c6048bf54290368cea3dd66024","6f2352766b2bd179df3463a633ab67a612990adbabb7683a162d954da621ea15","3caf6e3e5016f71324ab174d2c6b159d925fe79fceca16c5b72e06d2d3e9a0ba","a765be4bd2244ad2fe5d0b1b8bdfcdd739d6e75846d487556b9007446fe054be","22c5ebf8c0fb5061d5a5a07d2635865bcf73ad4c1871d675bd91c3f8e7d8a8e4","1266ae3c4138d8045f67dc847909ad175d23e8b469de955894ec61834ccd4a95","2f3774b6d9e7b4d38a530063ec78eb0e79d9141457cdafbee8035ca65715b835","0e48d8c0080844101e208231080804cce4cd046ddf22cccbc8f29c9ac7c24f63","bade74effdb998f563c87e741b8dae04db7611c4131c6ab1ab373b4510854a21","0074f35fe925527eda5968894c2215c0f72dad6e1410a55761d65daeacbed418","1dd96725a51d505881ad6dd2994a8d3180453caae18686d65f694a527a9b3d5f","34754fa6d71480765f4dbd4225ddadf6cec776aa175d845964c063d6483952ed","0c0a6be0bc8f6cc9d8d0c462ba1d7d9f6732f7021b51ddbf951c9768f8445143","da175af43cccd5858a8c91018a40e3c288bbd9eca10c101111408fb72ce0e0f8","62b268bf838ab12d91c7f3f12b0ebc20f22b591cff02536018d8a7a567d96354","aba1df0b90c327c5854b6e83a64f8762020f3c06a3489b061a9c02f7ce01fe10","2ecc8d57b820914ca448cac2214eab771e6037279b7f7b8344ba1f1057cb3295","791b585b50c2d0e557288e5dc3d059037761978fb82ca4b69b3f689f5dcc0bf5",{"version":"08ab9084718554186912e87b00a7813bb46b9061636c89dd3a173e14eac2177b","affectsGlobalScope":true},"877ecd9c277944b4997f0d4031f098568d717b83261d77d49428117386cdc7c5","ac65f04c2df0218cb8e54f012745cbfcc3c0e67c1f6b1e557d88842bbb72e2db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a2e86df4db576d80704e25293cec6f20fc6101a11f4747440e2eef58fb3c860c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","6704f0b54df85640baaeebd86c9d4a1dbb661d5a4d57a75bc84162f562f6531d","9d255af1b09c6697089d3c9bf438292a298d8b7a95c68793c9aae80afc9e5ca7","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","db84fe1cb3b2e2b8e64c9265c90231f7e63e8b50b3558e30473925c712f8f23b","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","5e4a8a9465586cc3aebd70e2b94bcdfa32dcda5782a8a696530b143f8a0b2f14","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","3c0200c7436608251b7b96cda0e8b8171555da78e44b5a0739a5f5ba7c21ade2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ba437529769c1d4766a8a6d5a304f46fbb4f5f1716f23f4cbf20b7a4fd82d8ba","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"1637db4fe3d1aac2d98812832a7f07e16e7b02e409b2cb63414c6f52aa2044a0","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"module":5,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[81,133],[133],[81,82,83,84,85,133],[81,83,133],[104,133,140],[133,142],[133,143],[133,147,151],[87,133],[90,133],[91,96,124,133],[92,103,104,111,121,132,133],[92,93,103,111,133],[94,133],[95,96,104,112,133],[96,121,129,133],[97,99,103,111,133],[98,133],[99,100,133],[103,133],[101,103,133],[103,104,105,121,132,133],[103,104,105,118,121,124,133],[133,137],[99,103,106,111,121,132,133],[103,104,106,107,111,121,129,132,133],[106,108,121,129,132,133],[87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],[103,109,133],[110,132,133],[99,103,111,121,133],[112,133],[113,133],[90,114,133],[115,131,133,137],[116,133],[117,133],[103,118,119,133],[118,120,133,135],[91,103,121,122,123,124,133],[91,121,123,133],[121,122,133],[124,133],[125,133],[121,133],[103,127,128,133],[127,128,133],[96,111,121,129,133],[130,133],[111,131,133],[91,106,117,132,133],[96,133],[121,133,134],[133,135],[133,136],[91,96,103,105,114,121,132,133,135,137],[121,133,138],[133,158],[133,145,148],[133,145,148,149,150],[133,147],[133,146],[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,133],[56,133],[45,76,77,133],[45,46,47,73,74,76,133],[40,41,42,43,44,133],[47,48,133],[47,48,51,52,133],[44,47,48,62,63,64,65,133],[47,133],[47,48,52,55,57,133],[47,48,71,133],[47,48,52,133],[54,133],[75,133],[47,49,50,53,58,59,60,61,66,67,68,69,70,72,133],[45,133],[78,133]],"referencedMap":[[83,1],[81,2],[86,3],[82,1],[84,4],[85,1],[141,5],[142,2],[143,6],[144,7],[152,8],[153,2],[154,2],[87,9],[88,9],[90,10],[91,11],[92,12],[93,13],[94,14],[95,15],[96,16],[97,17],[98,18],[99,19],[100,19],[102,20],[101,21],[103,20],[104,22],[105,23],[89,24],[139,2],[106,25],[107,26],[108,27],[140,28],[109,29],[110,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,38],[120,39],[121,40],[123,41],[122,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[155,2],[156,2],[157,2],[158,2],[159,58],[145,2],[149,59],[151,60],[150,59],[148,61],[147,62],[146,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[80,63],[57,64],[56,2],[74,2],[78,65],[77,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[79,79]],"exportedModulesMap":[[83,1],[81,2],[86,3],[82,1],[84,4],[85,1],[141,5],[142,2],[143,6],[144,7],[152,8],[153,2],[154,2],[87,9],[88,9],[90,10],[91,11],[92,12],[93,13],[94,14],[95,15],[96,16],[97,17],[98,18],[99,19],[100,19],[102,20],[101,21],[103,20],[104,22],[105,23],[89,24],[139,2],[106,25],[107,26],[108,27],[140,28],[109,29],[110,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,38],[120,39],[121,40],[123,41],[122,42],[124,43],[125,44],[126,45],[127,46],[128,47],[129,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[155,2],[156,2],[157,2],[158,2],[159,58],[145,2],[149,59],[151,60],[150,59],[148,61],[147,62],[146,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[80,63],[57,64],[56,2],[74,2],[78,65],[77,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[79,79]],"semanticDiagnosticsPerFile":[83,81,86,82,84,85,141,142,143,144,152,153,154,87,88,90,91,92,93,94,95,96,97,98,99,100,102,101,103,104,105,89,139,106,107,108,140,109,110,111,112,113,114,115,116,117,118,119,120,121,123,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,155,156,157,158,159,145,149,151,150,148,147,146,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,44,41,75,62,43,40,64,63,47,52,65,42,80,57,56,74,78,77,45,67,70,50,53,66,48,49,58,72,69,59,61,60,68,51,55,71,76,73,54,46,79]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../src/enums/formtype.ts","../../src/enums/cardbrand.ts","../../src/enums/securebrand.ts","../../src/enums/formbuttontype.ts","../../src/enums/additionalfieldname.ts","../../src/interfaces/initconfig.ts","../../src/interfaces/updateconfig.ts","../../src/enums/messagetype.ts","../../src/interfaces/messages/message.ts","../../src/interfaces/messages/mountedmessage.ts","../../src/interfaces/messages/errormessage.ts","../../src/interfaces/ordershort.ts","../../src/enums/payableentity.ts","../../src/interfaces/messages/failmessage.ts","../../src/interfaces/transaction.ts","../../src/interfaces/orderstatus.ts","../../src/interfaces/apmtransaction.ts","../../src/interfaces/apmorderstatus.ts","../../src/interfaces/messages/orderstatusmessage.ts","../../src/interfaces/messages/resizemessage.ts","../../src/interfaces/messages/successmessage.ts","../../src/interfaces/messages/submitmessage.ts","../../src/enums/fieldname.ts","../../src/enums/interactiontype.ts","../../src/enums/interactiontargettype.ts","../../src/enums/resignfieldname.ts","../../src/interfaces/messages/interactionmessage.ts","../../src/interfaces/messages/cardmessage.ts","../../src/interfaces/messages/verifymessage.ts","../../src/interfaces/messages/redirectmessage.ts","../../src/interfaces/messages/customstylesappendedmessage.ts","../../src/interfaces/pricebreakdown.ts","../../src/interfaces/messages/paymentdetailsmessage.ts","../../src/interfaces/sdkmessage.ts","../../src/interfaces/applycouponprices.ts","../../src/enums/cardbrandiconstyle.ts","../../src/interfaces/resignconfig.ts","../../src/interfaces/walletcardtype.ts","../../src/interfaces/clientsdkinstance.ts","../../src/interfaces/clientsdk.ts","../../src/services/sdkloader.ts","../../src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/estree/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6c368b34c314d833dc422950927ea5bf6704163943b70c17059f3444fd1ae101","406deb59bf25a29a2cc0163ddea9ce7fd26db20df5164877616248a4eabd7467","6eae9b92f94b2882db464e1b7e1c87371f3a4cd4c9a91b8bdfeb76ee1ba7f68a","43edd1f90c325db3c47bf9e1030e63b0da962860ad433e9aa64392d12c7445f7","4f67e49d43f8f937a91951dd827bfd3d1c29b52ed9253734fbf5ba14cd95e619","179a17c58f72a9e6117f5b2309f2aaab088a860d88ce02da72b0c290923aab22","aae6366a89fb07e539055d0bb6e12723ddfa931bcf658cb45f47eb547b603a00","b0aee83852e03336810125cd88c4af69553a77e827563cd36861b5a33b97c922","b4de4a421d92ac3cca9eae424c9387345f5665a5c74ad43bb0fbaee2e559848d","cc2dd5ce16f4024f0ad2e9b4389c0de0f1a1c8c6bd49c4b403103ebe7c061cc3","70815944926c98e1964f42eee9177b0f908b51b632d3343b41953d4517260d1e","633d86c69f78ae26a5138191ecd0c23ec810d539ff154fdcc192c3d737b0dac1","4b30306f7fcce478486c3b1ab3942fed94527a9d74075fce4ef42d399adbf610","918a9263ac886382a6da0af5f4e2ef0c1855fb07dca8c1c1f058cb1b09a75041","85477c8be65fde6850ccccfa1f2c7ef48e676547d3ad0f2ec8e3f29ef7441b4f","b556bcb752213e3267bb31bb449d8839949907654b0134409a039e1430255f0d","2aac29eefc68f572ab15e0a0936602ac94122518f74bbc4782103b3dc10affa1","33002442d6f7b4b6ef27a93751f28337966801f6145acef6f835e4cc6252a38b","33f25992efc3e610b92a162d4003478de700a0617eb67c966e425a89b0a3d2cc","ed21c63804be037c5973861a727688bcc565c51117311af643c7ed32318a9c01","e49d8b78d362550d9800963d59fa8f4bcaf99c4ee8ceab88cef9253a00f48952","47ad1b44b1af911c91b1efbb414bdbe64bdb44c6048bf54290368cea3dd66024","6f2352766b2bd179df3463a633ab67a612990adbabb7683a162d954da621ea15","3caf6e3e5016f71324ab174d2c6b159d925fe79fceca16c5b72e06d2d3e9a0ba","a765be4bd2244ad2fe5d0b1b8bdfcdd739d6e75846d487556b9007446fe054be","22c5ebf8c0fb5061d5a5a07d2635865bcf73ad4c1871d675bd91c3f8e7d8a8e4","3f34e82e273dfc2c9e28c60f12f133a4d99b21f64bf20c310b06831d32c8ef24","2f3774b6d9e7b4d38a530063ec78eb0e79d9141457cdafbee8035ca65715b835","0e48d8c0080844101e208231080804cce4cd046ddf22cccbc8f29c9ac7c24f63","bade74effdb998f563c87e741b8dae04db7611c4131c6ab1ab373b4510854a21","0074f35fe925527eda5968894c2215c0f72dad6e1410a55761d65daeacbed418","1dd96725a51d505881ad6dd2994a8d3180453caae18686d65f694a527a9b3d5f","34754fa6d71480765f4dbd4225ddadf6cec776aa175d845964c063d6483952ed","0c0a6be0bc8f6cc9d8d0c462ba1d7d9f6732f7021b51ddbf951c9768f8445143","da175af43cccd5858a8c91018a40e3c288bbd9eca10c101111408fb72ce0e0f8","62b268bf838ab12d91c7f3f12b0ebc20f22b591cff02536018d8a7a567d96354","aba1df0b90c327c5854b6e83a64f8762020f3c06a3489b061a9c02f7ce01fe10","45d0c1bfca558b78d5931383ec2d90dc599ce4432092786a78e2006fd1f7feeb","d802de378790491980d4b3bbb893189ae6838002eadfad5d92f2d28dbfa6672b","791b585b50c2d0e557288e5dc3d059037761978fb82ca4b69b3f689f5dcc0bf5",{"version":"08ab9084718554186912e87b00a7813bb46b9061636c89dd3a173e14eac2177b","affectsGlobalScope":true},"99f0968d406f630408879e5d127518e0e52d4c13a4ed5ddbf74baf8e48c1ec26","ac65f04c2df0218cb8e54f012745cbfcc3c0e67c1f6b1e557d88842bbb72e2db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a2e86df4db576d80704e25293cec6f20fc6101a11f4747440e2eef58fb3c860c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","6704f0b54df85640baaeebd86c9d4a1dbb661d5a4d57a75bc84162f562f6531d","9d255af1b09c6697089d3c9bf438292a298d8b7a95c68793c9aae80afc9e5ca7","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","db84fe1cb3b2e2b8e64c9265c90231f7e63e8b50b3558e30473925c712f8f23b","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","5e4a8a9465586cc3aebd70e2b94bcdfa32dcda5782a8a696530b143f8a0b2f14","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","3c0200c7436608251b7b96cda0e8b8171555da78e44b5a0739a5f5ba7c21ade2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ba437529769c1d4766a8a6d5a304f46fbb4f5f1716f23f4cbf20b7a4fd82d8ba","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"1637db4fe3d1aac2d98812832a7f07e16e7b02e409b2cb63414c6f52aa2044a0","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba","e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"module":5,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[82,134],[134],[82,83,84,85,86,134],[82,84,134],[105,134,141],[134,143],[134,144],[134,148,152],[88,134],[91,134],[92,97,125,134],[93,104,105,112,122,133,134],[93,94,104,112,134],[95,134],[96,97,105,113,134],[97,122,130,134],[98,100,104,112,134],[99,134],[100,101,134],[104,134],[102,104,134],[104,105,106,122,133,134],[104,105,106,119,122,125,134],[134,138],[100,104,107,112,122,133,134],[104,105,107,108,112,122,130,133,134],[107,109,122,130,133,134],[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],[104,110,134],[111,133,134],[100,104,112,122,134],[113,134],[114,134],[91,115,134],[116,132,134,138],[117,134],[118,134],[104,119,120,134],[119,121,134,136],[92,104,122,123,124,125,134],[92,122,124,134],[122,123,134],[125,134],[126,134],[122,134],[104,128,129,134],[128,129,134],[97,112,122,130,134],[131,134],[112,132,134],[92,107,118,133,134],[97,134],[122,134,135],[134,136],[134,137],[92,97,104,106,115,122,133,134,136,138],[122,134,139],[134,159],[134,146,149],[134,146,149,150,151],[134,148],[134,147],[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,75,76,77,78,79,80,134],[56,134],[45,76,78,134],[45,46,47,73,74,76,77,134],[40,41,42,43,44,134],[47,48,134],[47,48,51,52,134],[44,47,48,62,63,64,65,134],[47,134],[47,48,52,55,57,134],[47,48,71,134],[47,48,52,134],[54,134],[75,134],[47,49,50,53,58,59,60,61,66,67,68,69,70,72,134],[45,134],[79,134]],"referencedMap":[[84,1],[82,2],[87,3],[83,1],[85,4],[86,1],[142,5],[143,2],[144,6],[145,7],[153,8],[154,2],[155,2],[88,9],[89,9],[91,10],[92,11],[93,12],[94,13],[95,14],[96,15],[97,16],[98,17],[99,18],[100,19],[101,19],[103,20],[102,21],[104,20],[105,22],[106,23],[90,24],[140,2],[107,25],[108,26],[109,27],[141,28],[110,29],[111,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,38],[121,39],[122,40],[124,41],[123,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[132,50],[133,51],[134,52],[135,53],[136,54],[137,55],[138,56],[139,57],[156,2],[157,2],[158,2],[159,2],[160,58],[146,2],[150,59],[152,60],[151,59],[149,61],[148,62],[147,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[81,63],[57,64],[56,2],[74,2],[79,65],[78,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[77,2],[80,79],[161,2]],"exportedModulesMap":[[84,1],[82,2],[87,3],[83,1],[85,4],[86,1],[142,5],[143,2],[144,6],[145,7],[153,8],[154,2],[155,2],[88,9],[89,9],[91,10],[92,11],[93,12],[94,13],[95,14],[96,15],[97,16],[98,17],[99,18],[100,19],[101,19],[103,20],[102,21],[104,20],[105,22],[106,23],[90,24],[140,2],[107,25],[108,26],[109,27],[141,28],[110,29],[111,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,38],[121,39],[122,40],[124,41],[123,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[132,50],[133,51],[134,52],[135,53],[136,54],[137,55],[138,56],[139,57],[156,2],[157,2],[158,2],[159,2],[160,58],[146,2],[150,59],[152,60],[151,59],[149,61],[148,62],[147,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[44,2],[41,2],[75,2],[62,2],[43,2],[40,2],[64,2],[63,2],[47,2],[52,2],[65,2],[42,2],[81,63],[57,64],[56,2],[74,2],[79,65],[78,66],[45,67],[67,68],[70,68],[50,68],[53,69],[66,70],[48,71],[49,68],[58,72],[72,73],[69,68],[59,68],[61,74],[60,69],[68,68],[51,2],[55,75],[71,2],[76,76],[73,77],[54,2],[46,78],[77,2],[80,79],[161,2]],"semanticDiagnosticsPerFile":[84,82,87,83,85,86,142,143,144,145,153,154,155,88,89,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,90,140,107,108,109,141,110,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,156,157,158,159,160,146,150,152,151,149,148,147,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,44,41,75,62,43,40,64,63,47,52,65,42,81,57,56,74,79,78,45,67,70,50,53,66,48,49,58,72,69,59,61,60,68,51,55,71,76,73,54,46,77,80,161]},"version":"4.5.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidgate/client-sdk-loader",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.35.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Solidgate client sdk loader",
|
|
6
6
|
"repository": "https://github.com/solidgate-tech/client-sdk-loader",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"prettier": "^2.0.4",
|
|
48
48
|
"typescript": "^4.5.0"
|
|
49
49
|
},
|
|
50
|
+
|
|
50
51
|
"jest": {
|
|
51
52
|
"verbose": true,
|
|
52
53
|
"testEnvironment": "jsdom"
|
package/src/index.ts
CHANGED
|
@@ -18,6 +18,16 @@ import CustomStylesAppendedMessage from './interfaces/messages/CustomStylesAppen
|
|
|
18
18
|
import CardMessage from './interfaces/messages/CardMessage'
|
|
19
19
|
import PaymentDetailsMessage from './interfaces/messages/PaymentDetailsMessage'
|
|
20
20
|
import { ResignRequest, ResignFormConfig } from './interfaces/ResignConfig'
|
|
21
|
+
import {
|
|
22
|
+
WalletCardTypeEventName,
|
|
23
|
+
WalletCardTypeWallet,
|
|
24
|
+
WalletCardTypeFunding,
|
|
25
|
+
WalletCardTypeCard,
|
|
26
|
+
WalletCardTypeEventData,
|
|
27
|
+
WalletCardTypeEvent,
|
|
28
|
+
WalletCardTypeSideEffect,
|
|
29
|
+
WalletCardTypeSubscriber
|
|
30
|
+
} from './interfaces/WalletCardType'
|
|
21
31
|
|
|
22
32
|
import Message from './interfaces/messages/Message'
|
|
23
33
|
import PriceBreakdown from './interfaces/PriceBreakdown'
|
|
@@ -82,5 +92,13 @@ export type {
|
|
|
82
92
|
ResignFormConfig,
|
|
83
93
|
OrderShort,
|
|
84
94
|
ClientSdk,
|
|
85
|
-
Message
|
|
95
|
+
Message,
|
|
96
|
+
WalletCardTypeEventName,
|
|
97
|
+
WalletCardTypeWallet,
|
|
98
|
+
WalletCardTypeFunding,
|
|
99
|
+
WalletCardTypeCard,
|
|
100
|
+
WalletCardTypeEventData,
|
|
101
|
+
WalletCardTypeEvent,
|
|
102
|
+
WalletCardTypeSideEffect,
|
|
103
|
+
WalletCardTypeSubscriber
|
|
86
104
|
}
|
|
@@ -5,6 +5,10 @@ import ApplyCouponPrices from './ApplyCouponPrices'
|
|
|
5
5
|
|
|
6
6
|
import MessageType from '../enums/MessageType'
|
|
7
7
|
import { ResignFormConfig, ResignRequest } from './ResignConfig'
|
|
8
|
+
import {
|
|
9
|
+
WalletCardTypeEventName,
|
|
10
|
+
WalletCardTypeSubscriber
|
|
11
|
+
} from './WalletCardType'
|
|
8
12
|
|
|
9
13
|
export default interface ClientSdkInstance {
|
|
10
14
|
init(config: InitConfig): Promise<void>
|
|
@@ -13,11 +17,12 @@ export default interface ClientSdkInstance {
|
|
|
13
17
|
config?: ResignFormConfig
|
|
14
18
|
): Promise<ClientSdkInstance>
|
|
15
19
|
update(config: UpdateConfig): Promise<void>
|
|
20
|
+
on(event: WalletCardTypeEventName, subscriber: WalletCardTypeSubscriber): void
|
|
16
21
|
on<T extends MessageType>(
|
|
17
22
|
event: T,
|
|
18
23
|
callback: (e: MessageEvent<SdkMessage[T]>) => void
|
|
19
24
|
): void
|
|
20
|
-
unsubscribe(messageType: MessageType): void
|
|
25
|
+
unsubscribe(messageType: MessageType | WalletCardTypeEventName): void
|
|
21
26
|
unsubscribeAll(): void
|
|
22
27
|
submit(): void
|
|
23
28
|
applyCoupon(couponCode: string): Promise<ApplyCouponPrices>
|
|
@@ -57,6 +57,9 @@ export default interface InitConfig {
|
|
|
57
57
|
containerId: string
|
|
58
58
|
color: string
|
|
59
59
|
type: string
|
|
60
|
+
totalPriceStatus:
|
|
61
|
+
| 'TOTAL_PRICE_STATUS_FINAL'
|
|
62
|
+
| 'TOTAL_PRICE_STATUS_ESTIMATED'
|
|
60
63
|
}>
|
|
61
64
|
applePayButtonParams?: Partial<{
|
|
62
65
|
enabled: boolean
|
|
@@ -119,4 +122,10 @@ export default interface InitConfig {
|
|
|
119
122
|
height?: number
|
|
120
123
|
resetEnabled?: boolean
|
|
121
124
|
}
|
|
125
|
+
clickToPayButtonParams?: {
|
|
126
|
+
enabled?: boolean
|
|
127
|
+
height?: number
|
|
128
|
+
saveRecognitionToken?: boolean
|
|
129
|
+
supportedCardNetworks?: ('mastercard' | 'visa' | 'amex' | 'discover')[]
|
|
130
|
+
}
|
|
122
131
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export type WalletCardTypeEventName = 'walletCardType'
|
|
2
|
+
|
|
3
|
+
export type WalletCardTypeWallet = 'applePay' | 'googlePay'
|
|
4
|
+
|
|
5
|
+
export type WalletCardTypeFunding = 'credit' | 'debit' | 'prepaid' | 'unknown'
|
|
6
|
+
|
|
7
|
+
export interface WalletCardTypeCard {
|
|
8
|
+
type: WalletCardTypeFunding
|
|
9
|
+
brand?: string
|
|
10
|
+
last4?: string
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface WalletCardTypeEventData {
|
|
14
|
+
wallet: WalletCardTypeWallet
|
|
15
|
+
card: WalletCardTypeCard
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface WalletCardTypeEvent {
|
|
19
|
+
data: WalletCardTypeEventData
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type WalletCardTypeSideEffect = () => Promise<unknown>
|
|
23
|
+
|
|
24
|
+
export type WalletCardTypeSubscriber = (
|
|
25
|
+
event: WalletCardTypeEvent,
|
|
26
|
+
pauseUntil: (sideEffect: WalletCardTypeSideEffect) => void
|
|
27
|
+
) => void
|