@paysponge/sdk 0.1.50 → 0.1.51
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/dist/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.d.ts +14 -0
- package/dist/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.d.ts.map +1 -1
- package/dist/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.js +9 -0
- package/dist/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -33,7 +33,21 @@ export interface PostApiBridgeFiatTransfersRequest {
|
|
|
33
33
|
* @memberof PostApiBridgeFiatTransfersRequest
|
|
34
34
|
*/
|
|
35
35
|
amount: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum}
|
|
39
|
+
* @memberof PostApiBridgeFiatTransfersRequest
|
|
40
|
+
*/
|
|
41
|
+
destinationPaymentRail?: PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum;
|
|
36
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* @export
|
|
45
|
+
*/
|
|
46
|
+
export declare const PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum: {
|
|
47
|
+
readonly Ach: "ach";
|
|
48
|
+
readonly Wire: "wire";
|
|
49
|
+
};
|
|
50
|
+
export type PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum = typeof PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum[keyof typeof PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum];
|
|
37
51
|
/**
|
|
38
52
|
* Check if a given object implements the PostApiBridgeFiatTransfersRequest interface.
|
|
39
53
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-api-bridge-fiat-transfers-request.d.ts","sourceRoot":"","sources":["../../../../../src/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"post-api-bridge-fiat-transfers-request.d.ts","sourceRoot":"","sources":["../../../../../src/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,2DAA2D,CAAC;CACxF;AAGD;;GAEG;AACH,eAAO,MAAM,2DAA2D;;;CAG9D,CAAC;AACX,MAAM,MAAM,2DAA2D,GAAG,OAAO,2DAA2D,CAAC,MAAM,OAAO,2DAA2D,CAAC,CAAC;AAGvN;;GAEG;AACH,wBAAgB,2CAA2C,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,iCAAiC,CAKrH;AAED,wBAAgB,yCAAyC,CAAC,IAAI,EAAE,GAAG,GAAG,iCAAiC,CAEtG;AAED,wBAAgB,8CAA8C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,iCAAiC,CAWzI;AAED,wBAAgB,uCAAuC,CAAC,IAAI,EAAE,GAAG,GAAG,iCAAiC,CAEpG;AAED,wBAAgB,4CAA4C,CAAC,KAAK,CAAC,EAAE,iCAAiC,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAYxJ"}
|
|
@@ -11,6 +11,13 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
/**
|
|
15
|
+
* @export
|
|
16
|
+
*/
|
|
17
|
+
export const PostApiBridgeFiatTransfersRequestDestinationPaymentRailEnum = {
|
|
18
|
+
Ach: 'ach',
|
|
19
|
+
Wire: 'wire'
|
|
20
|
+
};
|
|
14
21
|
/**
|
|
15
22
|
* Check if a given object implements the PostApiBridgeFiatTransfersRequest interface.
|
|
16
23
|
*/
|
|
@@ -34,6 +41,7 @@ export function PostApiBridgeFiatTransfersRequestFromJSONTyped(json, ignoreDiscr
|
|
|
34
41
|
'walletId': json['walletId'],
|
|
35
42
|
'externalAccountId': json['externalAccountId'],
|
|
36
43
|
'amount': json['amount'],
|
|
44
|
+
'destinationPaymentRail': json['destinationPaymentRail'] == null ? undefined : json['destinationPaymentRail'],
|
|
37
45
|
};
|
|
38
46
|
}
|
|
39
47
|
export function PostApiBridgeFiatTransfersRequestToJSON(json) {
|
|
@@ -47,6 +55,7 @@ export function PostApiBridgeFiatTransfersRequestToJSONTyped(value, ignoreDiscri
|
|
|
47
55
|
'walletId': value['walletId'],
|
|
48
56
|
'externalAccountId': value['externalAccountId'],
|
|
49
57
|
'amount': value['amount'],
|
|
58
|
+
'destinationPaymentRail': value['destinationPaymentRail'],
|
|
50
59
|
};
|
|
51
60
|
}
|
|
52
61
|
//# sourceMappingURL=post-api-bridge-fiat-transfers-request.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-api-bridge-fiat-transfers-request.js","sourceRoot":"","sources":["../../../../../src/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"post-api-bridge-fiat-transfers-request.js","sourceRoot":"","sources":["../../../../../src/api/generated/openapi/models/post-api-bridge-fiat-transfers-request.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAoCH;;GAEG;AACH,MAAM,CAAC,MAAM,2DAA2D,GAAG;IACvE,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;CACN,CAAC;AAIX;;GAEG;AACH,MAAM,UAAU,2CAA2C,CAAC,KAAa;IACrE,IAAI,CAAC,CAAC,UAAU,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC5E,IAAI,CAAC,CAAC,mBAAmB,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC9F,IAAI,CAAC,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,yCAAyC,CAAC,IAAS;IAC/D,OAAO,8CAA8C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACvE,CAAC;AAED,MAAM,UAAU,8CAA8C,CAAC,IAAS,EAAE,mBAA4B;IAClG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;QAC5B,mBAAmB,EAAE,IAAI,CAAC,mBAAmB,CAAC;QAC9C,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,wBAAwB,EAAE,IAAI,CAAC,wBAAwB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC;KAChH,CAAC;AACN,CAAC;AAED,MAAM,UAAU,uCAAuC,CAAC,IAAS;IAC7D,OAAO,4CAA4C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACrE,CAAC;AAED,MAAM,UAAU,4CAA4C,CAAC,KAAgD,EAAE,sBAA+B,KAAK;IAC/I,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,mBAAmB,EAAE,KAAK,CAAC,mBAAmB,CAAC;QAC/C,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,wBAAwB,EAAE,KAAK,CAAC,wBAAwB,CAAC;KAC5D,CAAC;AACN,CAAC"}
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.1.
|
|
1
|
+
export declare const SDK_VERSION = "0.1.51";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const SDK_VERSION = "0.1.
|
|
1
|
+
export const SDK_VERSION = "0.1.51";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|