File tree Expand file tree Collapse file tree 6 files changed +25
-25
lines changed Expand file tree Collapse file tree 6 files changed +25
-25
lines changed Original file line number Diff line number Diff line change 7067
7067
"required" : [" from" , " to" ],
7068
7068
"properties" : {
7069
7069
"from" : {
7070
- "$ref" : " #/components/schemas/OptionalAmountMoney "
7070
+ "$ref" : " #/components/schemas/CpsOptionalAmountMoney "
7071
7071
},
7072
7072
"to" : {
7073
- "$ref" : " #/components/schemas/OptionalAmountMoney "
7073
+ "$ref" : " #/components/schemas/CpsOptionalAmountMoney "
7074
7074
}
7075
7075
}
7076
7076
},
7077
- "OptionalAmountMoney " : {
7077
+ "CpsOptionalAmountMoney " : {
7078
7078
"type" : " object" ,
7079
7079
"required" : [" currency" ],
7080
7080
"properties" : {
7091
7091
},
7092
7092
"CpsToken" : {
7093
7093
"type" : " string" ,
7094
- "description" : " Supported stablecoin tokens" ,
7094
+ "description" : " Supported stablecoin tokens for CPS " ,
7095
7095
"enum" : [" USDC" , " EURC" ],
7096
7096
"example" : " USDC"
7097
7097
},
7117
7117
"example" : " 0.9132"
7118
7118
},
7119
7119
"from" : {
7120
- "$ref" : " #/components/schemas/OptionalAmountMoney "
7120
+ "$ref" : " #/components/schemas/CpsOptionalAmountMoney "
7121
7121
},
7122
7122
"to" : {
7123
- "$ref" : " #/components/schemas/OptionalAmountMoney "
7123
+ "$ref" : " #/components/schemas/CpsOptionalAmountMoney "
7124
7124
},
7125
7125
"fee" : {
7126
- "$ref" : " #/components/schemas/OptionalAmountMoney "
7126
+ "$ref" : " #/components/schemas/CpsOptionalAmountMoney "
7127
7127
},
7128
7128
"expiry" : {
7129
7129
"type" : " string" ,
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ models/checkout-session.ts
83
83
models/conflict.ts
84
84
models/continuous-payment-intent-creation-request.ts
85
85
models/continuous-payment-intent.ts
86
+ models/cps-optional-amount-money.ts
86
87
models/cps-quote.ts
87
88
models/cps-token.ts
88
89
models/create-address-book-recipient-response.ts
@@ -222,7 +223,6 @@ models/money.ts
222
223
models/network-fee-quote.ts
223
224
models/not-authorized.ts
224
225
models/not-found.ts
225
- models/optional-amount-money.ts
226
226
models/payment-creation-request.ts
227
227
models/payment-error-code.ts
228
228
models/payment-info-cancel.ts
Original file line number Diff line number Diff line change @@ -13,19 +13,19 @@ import { CpsToken } from "./cps-token";
13
13
/**
14
14
*
15
15
* @export
16
- * @interface OptionalAmountMoney
16
+ * @interface CpsOptionalAmountMoney
17
17
*/
18
- export interface OptionalAmountMoney {
18
+ export interface CpsOptionalAmountMoney {
19
19
/**
20
20
* Source amount (optional)
21
21
* @type {number }
22
- * @memberof OptionalAmountMoney
22
+ * @memberof CpsOptionalAmountMoney
23
23
*/
24
24
amount ?: number | null ;
25
25
/**
26
26
*
27
27
* @type {CpsToken }
28
- * @memberof OptionalAmountMoney
28
+ * @memberof CpsOptionalAmountMoney
29
29
*/
30
30
currency : CpsToken ;
31
31
}
Original file line number Diff line number Diff line change 8
8
9
9
// May contain unused imports in some cases
10
10
// @ts -ignore
11
- import { OptionalAmountMoney } from "./optional-amount-money" ;
11
+ import { CpsOptionalAmountMoney } from "./cps- optional-amount-money" ;
12
12
13
13
/**
14
14
*
@@ -30,22 +30,22 @@ export interface CpsQuote {
30
30
rate ?: string ;
31
31
/**
32
32
*
33
- * @type {OptionalAmountMoney }
33
+ * @type {CpsOptionalAmountMoney }
34
34
* @memberof CpsQuote
35
35
*/
36
- from ?: OptionalAmountMoney ;
36
+ from ?: CpsOptionalAmountMoney ;
37
37
/**
38
38
*
39
- * @type {OptionalAmountMoney }
39
+ * @type {CpsOptionalAmountMoney }
40
40
* @memberof CpsQuote
41
41
*/
42
- to ?: OptionalAmountMoney ;
42
+ to ?: CpsOptionalAmountMoney ;
43
43
/**
44
44
*
45
- * @type {OptionalAmountMoney }
45
+ * @type {CpsOptionalAmountMoney }
46
46
* @memberof CpsQuote
47
47
*/
48
- fee ?: OptionalAmountMoney ;
48
+ fee ?: CpsOptionalAmountMoney ;
49
49
/**
50
50
* Quote expiration time in ISO-8601 format
51
51
* @type {string }
Original file line number Diff line number Diff line change 8
8
9
9
// May contain unused imports in some cases
10
10
// @ts -ignore
11
- import { OptionalAmountMoney } from "./optional-amount-money" ;
11
+ import { CpsOptionalAmountMoney } from "./cps- optional-amount-money" ;
12
12
13
13
/**
14
14
*
@@ -18,14 +18,14 @@ import { OptionalAmountMoney } from "./optional-amount-money";
18
18
export interface CreateCpsQuoteRequest {
19
19
/**
20
20
*
21
- * @type {OptionalAmountMoney }
21
+ * @type {CpsOptionalAmountMoney }
22
22
* @memberof CreateCpsQuoteRequest
23
23
*/
24
- from : OptionalAmountMoney ;
24
+ from : CpsOptionalAmountMoney ;
25
25
/**
26
26
*
27
- * @type {OptionalAmountMoney }
27
+ * @type {CpsOptionalAmountMoney }
28
28
* @memberof CreateCpsQuoteRequest
29
29
*/
30
- to : OptionalAmountMoney ;
30
+ to : CpsOptionalAmountMoney ;
31
31
}
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ export * from "./checkout-session-status";
52
52
export * from "./conflict" ;
53
53
export * from "./continuous-payment-intent" ;
54
54
export * from "./continuous-payment-intent-creation-request" ;
55
+ export * from "./cps-optional-amount-money" ;
55
56
export * from "./cps-quote" ;
56
57
export * from "./cps-token" ;
57
58
export * from "./create-address-book-recipient-response" ;
@@ -190,7 +191,6 @@ export * from "./money";
190
191
export * from "./network-fee-quote" ;
191
192
export * from "./not-authorized" ;
192
193
export * from "./not-found" ;
193
- export * from "./optional-amount-money" ;
194
194
export * from "./payment-creation-request" ;
195
195
export * from "./payment-error-code" ;
196
196
export * from "./payment-info-cancel" ;
You can’t perform that action at this time.
0 commit comments