increase 0.514.0 → 0.516.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 +16 -0
- package/package.json +1 -1
- package/resources/cards.d.mts +263 -115
- package/resources/cards.d.mts.map +1 -1
- package/resources/cards.d.ts +263 -115
- package/resources/cards.d.ts.map +1 -1
- package/src/resources/cards.ts +284 -121
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.516.0 (2026-04-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.515.0...v0.516.0](https://github.com/Increase/increase-typescript/compare/v0.515.0...v0.516.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([24d99fc](https://github.com/Increase/increase-typescript/commit/24d99fc112553d328df140410b38788207ee4372))
|
|
10
|
+
|
|
11
|
+
## 0.515.0 (2026-04-06)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.514.0...v0.515.0](https://github.com/Increase/increase-typescript/compare/v0.514.0...v0.515.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([2babe3f](https://github.com/Increase/increase-typescript/commit/2babe3f4d5ac55573b021a83131a0cc796a43866))
|
|
18
|
+
|
|
3
19
|
## 0.514.0 (2026-04-04)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.513.0...v0.514.0](https://github.com/Increase/increase-typescript/compare/v0.513.0...v0.514.0)
|
package/package.json
CHANGED
package/resources/cards.d.mts
CHANGED
|
@@ -89,10 +89,11 @@ export declare class Cards extends APIResource {
|
|
|
89
89
|
}
|
|
90
90
|
export type CardsPage = Page<Card>;
|
|
91
91
|
/**
|
|
92
|
-
* Cards
|
|
93
|
-
* after you create them. All cards
|
|
94
|
-
*
|
|
95
|
-
* the Account upon transaction
|
|
92
|
+
* Cards may operate on credit, debit or prepaid BINs. They’ll immediately work for
|
|
93
|
+
* online purchases after you create them. All cards work on a good funds model,
|
|
94
|
+
* and maintain a maximum limit of 100% of the Account’s available balance at the
|
|
95
|
+
* time of transaction. Funds are deducted from the Account upon transaction
|
|
96
|
+
* settlement.
|
|
96
97
|
*/
|
|
97
98
|
export interface Card {
|
|
98
99
|
/**
|
|
@@ -168,10 +169,6 @@ export declare namespace Card {
|
|
|
168
169
|
* Controls that restrict how this card can be used.
|
|
169
170
|
*/
|
|
170
171
|
interface AuthorizationControls {
|
|
171
|
-
/**
|
|
172
|
-
* Limits the number of authorizations that can be approved on this card.
|
|
173
|
-
*/
|
|
174
|
-
maximum_authorization_count: AuthorizationControls.MaximumAuthorizationCount | null;
|
|
175
172
|
/**
|
|
176
173
|
* Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations
|
|
177
174
|
* on this card.
|
|
@@ -188,22 +185,11 @@ export declare namespace Card {
|
|
|
188
185
|
*/
|
|
189
186
|
merchant_country: AuthorizationControls.MerchantCountry | null;
|
|
190
187
|
/**
|
|
191
|
-
*
|
|
192
|
-
* limits match.
|
|
188
|
+
* Controls how many times this card can be used.
|
|
193
189
|
*/
|
|
194
|
-
|
|
190
|
+
usage: AuthorizationControls.Usage | null;
|
|
195
191
|
}
|
|
196
192
|
namespace AuthorizationControls {
|
|
197
|
-
/**
|
|
198
|
-
* Limits the number of authorizations that can be approved on this card.
|
|
199
|
-
*/
|
|
200
|
-
interface MaximumAuthorizationCount {
|
|
201
|
-
/**
|
|
202
|
-
* The maximum number of authorizations that can be approved on this card over its
|
|
203
|
-
* lifetime.
|
|
204
|
-
*/
|
|
205
|
-
all_time: number | null;
|
|
206
|
-
}
|
|
207
193
|
/**
|
|
208
194
|
* Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations
|
|
209
195
|
* on this card.
|
|
@@ -288,36 +274,100 @@ export declare namespace Card {
|
|
|
288
274
|
country: string;
|
|
289
275
|
}
|
|
290
276
|
}
|
|
291
|
-
|
|
277
|
+
/**
|
|
278
|
+
* Controls how many times this card can be used.
|
|
279
|
+
*/
|
|
280
|
+
interface Usage {
|
|
292
281
|
/**
|
|
293
|
-
*
|
|
282
|
+
* Whether the card is for a single use or multiple uses.
|
|
294
283
|
*
|
|
295
|
-
* - `
|
|
296
|
-
* - `
|
|
297
|
-
* - `per_day` - The spending limit applies per day. Resets nightly at midnight
|
|
298
|
-
* UTC.
|
|
299
|
-
* - `per_week` - The spending limit applies per week. Resets weekly on Mondays at
|
|
300
|
-
* midnight UTC.
|
|
301
|
-
* - `per_month` - The spending limit applies per month. Resets on the first of the
|
|
302
|
-
* month, midnight UTC.
|
|
284
|
+
* - `single_use` - The card can only be used for a single authorization.
|
|
285
|
+
* - `multi_use` - The card can be used for multiple authorizations.
|
|
303
286
|
*/
|
|
304
|
-
|
|
287
|
+
category: 'single_use' | 'multi_use';
|
|
305
288
|
/**
|
|
306
|
-
*
|
|
307
|
-
* the limit applies to all transactions.
|
|
289
|
+
* Controls for multi-use cards. Required if and only if `category` is `multi_use`.
|
|
308
290
|
*/
|
|
309
|
-
|
|
291
|
+
multi_use: Usage.MultiUse | null;
|
|
310
292
|
/**
|
|
311
|
-
*
|
|
293
|
+
* Controls for single-use cards. Required if and only if `category` is
|
|
294
|
+
* `single_use`.
|
|
312
295
|
*/
|
|
313
|
-
|
|
296
|
+
single_use: Usage.SingleUse | null;
|
|
314
297
|
}
|
|
315
|
-
namespace
|
|
316
|
-
|
|
298
|
+
namespace Usage {
|
|
299
|
+
/**
|
|
300
|
+
* Controls for multi-use cards. Required if and only if `category` is `multi_use`.
|
|
301
|
+
*/
|
|
302
|
+
interface MultiUse {
|
|
317
303
|
/**
|
|
318
|
-
* The
|
|
304
|
+
* Spending limits for this card. The most restrictive limit applies if multiple
|
|
305
|
+
* limits match.
|
|
319
306
|
*/
|
|
320
|
-
|
|
307
|
+
spending_limits: Array<MultiUse.SpendingLimit> | null;
|
|
308
|
+
}
|
|
309
|
+
namespace MultiUse {
|
|
310
|
+
interface SpendingLimit {
|
|
311
|
+
/**
|
|
312
|
+
* The interval at which the spending limit is enforced.
|
|
313
|
+
*
|
|
314
|
+
* - `all_time` - The spending limit applies over the lifetime of the card.
|
|
315
|
+
* - `per_transaction` - The spending limit applies per transaction.
|
|
316
|
+
* - `per_day` - The spending limit applies per day. Resets nightly at midnight
|
|
317
|
+
* UTC.
|
|
318
|
+
* - `per_week` - The spending limit applies per week. Resets weekly on Mondays at
|
|
319
|
+
* midnight UTC.
|
|
320
|
+
* - `per_month` - The spending limit applies per month. Resets on the first of the
|
|
321
|
+
* month, midnight UTC.
|
|
322
|
+
*/
|
|
323
|
+
interval: 'all_time' | 'per_transaction' | 'per_day' | 'per_week' | 'per_month';
|
|
324
|
+
/**
|
|
325
|
+
* The Merchant Category Codes (MCCs) this spending limit applies to. If not set,
|
|
326
|
+
* the limit applies to all transactions.
|
|
327
|
+
*/
|
|
328
|
+
merchant_category_codes: Array<SpendingLimit.MerchantCategoryCode> | null;
|
|
329
|
+
/**
|
|
330
|
+
* The maximum settlement amount permitted in the given interval.
|
|
331
|
+
*/
|
|
332
|
+
settlement_amount: number;
|
|
333
|
+
}
|
|
334
|
+
namespace SpendingLimit {
|
|
335
|
+
interface MerchantCategoryCode {
|
|
336
|
+
/**
|
|
337
|
+
* The Merchant Category Code (MCC).
|
|
338
|
+
*/
|
|
339
|
+
code: string;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* Controls for single-use cards. Required if and only if `category` is
|
|
345
|
+
* `single_use`.
|
|
346
|
+
*/
|
|
347
|
+
interface SingleUse {
|
|
348
|
+
/**
|
|
349
|
+
* The settlement amount constraint for this single-use card.
|
|
350
|
+
*/
|
|
351
|
+
settlement_amount: SingleUse.SettlementAmount;
|
|
352
|
+
}
|
|
353
|
+
namespace SingleUse {
|
|
354
|
+
/**
|
|
355
|
+
* The settlement amount constraint for this single-use card.
|
|
356
|
+
*/
|
|
357
|
+
interface SettlementAmount {
|
|
358
|
+
/**
|
|
359
|
+
* The operator used to compare the settlement amount.
|
|
360
|
+
*
|
|
361
|
+
* - `equals` - The settlement amount must be exactly the specified value.
|
|
362
|
+
* - `less_than_or_equals` - The settlement amount must be less than or equal to
|
|
363
|
+
* the specified value.
|
|
364
|
+
*/
|
|
365
|
+
comparison: 'equals' | 'less_than_or_equals';
|
|
366
|
+
/**
|
|
367
|
+
* The settlement amount value.
|
|
368
|
+
*/
|
|
369
|
+
value: number;
|
|
370
|
+
}
|
|
321
371
|
}
|
|
322
372
|
}
|
|
323
373
|
}
|
|
@@ -464,10 +514,6 @@ export declare namespace CardCreateParams {
|
|
|
464
514
|
* Controls that restrict how this card can be used.
|
|
465
515
|
*/
|
|
466
516
|
interface AuthorizationControls {
|
|
467
|
-
/**
|
|
468
|
-
* Limits the number of authorizations that can be approved on this card.
|
|
469
|
-
*/
|
|
470
|
-
maximum_authorization_count?: AuthorizationControls.MaximumAuthorizationCount;
|
|
471
517
|
/**
|
|
472
518
|
* Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations
|
|
473
519
|
* on this card.
|
|
@@ -484,22 +530,11 @@ export declare namespace CardCreateParams {
|
|
|
484
530
|
*/
|
|
485
531
|
merchant_country?: AuthorizationControls.MerchantCountry;
|
|
486
532
|
/**
|
|
487
|
-
*
|
|
488
|
-
* limits match.
|
|
533
|
+
* Controls how many times this card can be used.
|
|
489
534
|
*/
|
|
490
|
-
|
|
535
|
+
usage?: AuthorizationControls.Usage;
|
|
491
536
|
}
|
|
492
537
|
namespace AuthorizationControls {
|
|
493
|
-
/**
|
|
494
|
-
* Limits the number of authorizations that can be approved on this card.
|
|
495
|
-
*/
|
|
496
|
-
interface MaximumAuthorizationCount {
|
|
497
|
-
/**
|
|
498
|
-
* The maximum number of authorizations that can be approved on this card over its
|
|
499
|
-
* lifetime.
|
|
500
|
-
*/
|
|
501
|
-
all_time: number;
|
|
502
|
-
}
|
|
503
538
|
/**
|
|
504
539
|
* Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations
|
|
505
540
|
* on this card.
|
|
@@ -590,36 +625,100 @@ export declare namespace CardCreateParams {
|
|
|
590
625
|
country: string;
|
|
591
626
|
}
|
|
592
627
|
}
|
|
593
|
-
|
|
628
|
+
/**
|
|
629
|
+
* Controls how many times this card can be used.
|
|
630
|
+
*/
|
|
631
|
+
interface Usage {
|
|
594
632
|
/**
|
|
595
|
-
*
|
|
633
|
+
* Whether the card is for a single use or multiple uses.
|
|
596
634
|
*
|
|
597
|
-
* - `
|
|
598
|
-
* - `
|
|
599
|
-
* - `per_day` - The spending limit applies per day. Resets nightly at midnight
|
|
600
|
-
* UTC.
|
|
601
|
-
* - `per_week` - The spending limit applies per week. Resets weekly on Mondays at
|
|
602
|
-
* midnight UTC.
|
|
603
|
-
* - `per_month` - The spending limit applies per month. Resets on the first of the
|
|
604
|
-
* month, midnight UTC.
|
|
635
|
+
* - `single_use` - The card can only be used for a single authorization.
|
|
636
|
+
* - `multi_use` - The card can be used for multiple authorizations.
|
|
605
637
|
*/
|
|
606
|
-
|
|
638
|
+
category: 'single_use' | 'multi_use';
|
|
607
639
|
/**
|
|
608
|
-
*
|
|
640
|
+
* Controls for multi-use cards. Required if and only if `category` is `multi_use`.
|
|
609
641
|
*/
|
|
610
|
-
|
|
642
|
+
multi_use?: Usage.MultiUse;
|
|
611
643
|
/**
|
|
612
|
-
*
|
|
613
|
-
*
|
|
644
|
+
* Controls for single-use cards. Required if and only if `category` is
|
|
645
|
+
* `single_use`.
|
|
614
646
|
*/
|
|
615
|
-
|
|
647
|
+
single_use?: Usage.SingleUse;
|
|
616
648
|
}
|
|
617
|
-
namespace
|
|
618
|
-
|
|
649
|
+
namespace Usage {
|
|
650
|
+
/**
|
|
651
|
+
* Controls for multi-use cards. Required if and only if `category` is `multi_use`.
|
|
652
|
+
*/
|
|
653
|
+
interface MultiUse {
|
|
619
654
|
/**
|
|
620
|
-
* The
|
|
655
|
+
* Spending limits for this card. The most restrictive limit applies if multiple
|
|
656
|
+
* limits match.
|
|
621
657
|
*/
|
|
622
|
-
|
|
658
|
+
spending_limits?: Array<MultiUse.SpendingLimit>;
|
|
659
|
+
}
|
|
660
|
+
namespace MultiUse {
|
|
661
|
+
interface SpendingLimit {
|
|
662
|
+
/**
|
|
663
|
+
* The interval at which the spending limit is enforced.
|
|
664
|
+
*
|
|
665
|
+
* - `all_time` - The spending limit applies over the lifetime of the card.
|
|
666
|
+
* - `per_transaction` - The spending limit applies per transaction.
|
|
667
|
+
* - `per_day` - The spending limit applies per day. Resets nightly at midnight
|
|
668
|
+
* UTC.
|
|
669
|
+
* - `per_week` - The spending limit applies per week. Resets weekly on Mondays at
|
|
670
|
+
* midnight UTC.
|
|
671
|
+
* - `per_month` - The spending limit applies per month. Resets on the first of the
|
|
672
|
+
* month, midnight UTC.
|
|
673
|
+
*/
|
|
674
|
+
interval: 'all_time' | 'per_transaction' | 'per_day' | 'per_week' | 'per_month';
|
|
675
|
+
/**
|
|
676
|
+
* The maximum settlement amount permitted in the given interval.
|
|
677
|
+
*/
|
|
678
|
+
settlement_amount: number;
|
|
679
|
+
/**
|
|
680
|
+
* The Merchant Category Codes this spending limit applies to. If not set, the
|
|
681
|
+
* limit applies to all transactions.
|
|
682
|
+
*/
|
|
683
|
+
merchant_category_codes?: Array<SpendingLimit.MerchantCategoryCode>;
|
|
684
|
+
}
|
|
685
|
+
namespace SpendingLimit {
|
|
686
|
+
interface MerchantCategoryCode {
|
|
687
|
+
/**
|
|
688
|
+
* The Merchant Category Code.
|
|
689
|
+
*/
|
|
690
|
+
code: string;
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
/**
|
|
695
|
+
* Controls for single-use cards. Required if and only if `category` is
|
|
696
|
+
* `single_use`.
|
|
697
|
+
*/
|
|
698
|
+
interface SingleUse {
|
|
699
|
+
/**
|
|
700
|
+
* The settlement amount constraint for this single-use card.
|
|
701
|
+
*/
|
|
702
|
+
settlement_amount: SingleUse.SettlementAmount;
|
|
703
|
+
}
|
|
704
|
+
namespace SingleUse {
|
|
705
|
+
/**
|
|
706
|
+
* The settlement amount constraint for this single-use card.
|
|
707
|
+
*/
|
|
708
|
+
interface SettlementAmount {
|
|
709
|
+
/**
|
|
710
|
+
* The operator used to compare the settlement amount.
|
|
711
|
+
*
|
|
712
|
+
* - `equals` - The settlement amount must be exactly the specified value.
|
|
713
|
+
* - `less_than_or_equals` - The settlement amount must be less than or equal to
|
|
714
|
+
* the specified value.
|
|
715
|
+
*/
|
|
716
|
+
comparison: 'equals' | 'less_than_or_equals';
|
|
717
|
+
/**
|
|
718
|
+
* The settlement amount value.
|
|
719
|
+
*/
|
|
720
|
+
value: number;
|
|
721
|
+
}
|
|
623
722
|
}
|
|
624
723
|
}
|
|
625
724
|
}
|
|
@@ -710,10 +809,6 @@ export declare namespace CardUpdateParams {
|
|
|
710
809
|
* Controls that restrict how this card can be used.
|
|
711
810
|
*/
|
|
712
811
|
interface AuthorizationControls {
|
|
713
|
-
/**
|
|
714
|
-
* Limits the number of authorizations that can be approved on this card.
|
|
715
|
-
*/
|
|
716
|
-
maximum_authorization_count?: AuthorizationControls.MaximumAuthorizationCount;
|
|
717
812
|
/**
|
|
718
813
|
* Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations
|
|
719
814
|
* on this card.
|
|
@@ -730,22 +825,11 @@ export declare namespace CardUpdateParams {
|
|
|
730
825
|
*/
|
|
731
826
|
merchant_country?: AuthorizationControls.MerchantCountry;
|
|
732
827
|
/**
|
|
733
|
-
*
|
|
734
|
-
* limits match.
|
|
828
|
+
* Controls how many times this card can be used.
|
|
735
829
|
*/
|
|
736
|
-
|
|
830
|
+
usage?: AuthorizationControls.Usage;
|
|
737
831
|
}
|
|
738
832
|
namespace AuthorizationControls {
|
|
739
|
-
/**
|
|
740
|
-
* Limits the number of authorizations that can be approved on this card.
|
|
741
|
-
*/
|
|
742
|
-
interface MaximumAuthorizationCount {
|
|
743
|
-
/**
|
|
744
|
-
* The maximum number of authorizations that can be approved on this card over its
|
|
745
|
-
* lifetime.
|
|
746
|
-
*/
|
|
747
|
-
all_time: number;
|
|
748
|
-
}
|
|
749
833
|
/**
|
|
750
834
|
* Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations
|
|
751
835
|
* on this card.
|
|
@@ -836,36 +920,100 @@ export declare namespace CardUpdateParams {
|
|
|
836
920
|
country: string;
|
|
837
921
|
}
|
|
838
922
|
}
|
|
839
|
-
|
|
923
|
+
/**
|
|
924
|
+
* Controls how many times this card can be used.
|
|
925
|
+
*/
|
|
926
|
+
interface Usage {
|
|
840
927
|
/**
|
|
841
|
-
*
|
|
928
|
+
* Whether the card is for a single use or multiple uses.
|
|
842
929
|
*
|
|
843
|
-
* - `
|
|
844
|
-
* - `
|
|
845
|
-
* - `per_day` - The spending limit applies per day. Resets nightly at midnight
|
|
846
|
-
* UTC.
|
|
847
|
-
* - `per_week` - The spending limit applies per week. Resets weekly on Mondays at
|
|
848
|
-
* midnight UTC.
|
|
849
|
-
* - `per_month` - The spending limit applies per month. Resets on the first of the
|
|
850
|
-
* month, midnight UTC.
|
|
930
|
+
* - `single_use` - The card can only be used for a single authorization.
|
|
931
|
+
* - `multi_use` - The card can be used for multiple authorizations.
|
|
851
932
|
*/
|
|
852
|
-
|
|
933
|
+
category: 'single_use' | 'multi_use';
|
|
853
934
|
/**
|
|
854
|
-
*
|
|
935
|
+
* Controls for multi-use cards. Required if and only if `category` is `multi_use`.
|
|
855
936
|
*/
|
|
856
|
-
|
|
937
|
+
multi_use?: Usage.MultiUse;
|
|
857
938
|
/**
|
|
858
|
-
*
|
|
859
|
-
*
|
|
939
|
+
* Controls for single-use cards. Required if and only if `category` is
|
|
940
|
+
* `single_use`.
|
|
860
941
|
*/
|
|
861
|
-
|
|
942
|
+
single_use?: Usage.SingleUse;
|
|
862
943
|
}
|
|
863
|
-
namespace
|
|
864
|
-
|
|
944
|
+
namespace Usage {
|
|
945
|
+
/**
|
|
946
|
+
* Controls for multi-use cards. Required if and only if `category` is `multi_use`.
|
|
947
|
+
*/
|
|
948
|
+
interface MultiUse {
|
|
865
949
|
/**
|
|
866
|
-
* The
|
|
950
|
+
* Spending limits for this card. The most restrictive limit applies if multiple
|
|
951
|
+
* limits match.
|
|
867
952
|
*/
|
|
868
|
-
|
|
953
|
+
spending_limits?: Array<MultiUse.SpendingLimit>;
|
|
954
|
+
}
|
|
955
|
+
namespace MultiUse {
|
|
956
|
+
interface SpendingLimit {
|
|
957
|
+
/**
|
|
958
|
+
* The interval at which the spending limit is enforced.
|
|
959
|
+
*
|
|
960
|
+
* - `all_time` - The spending limit applies over the lifetime of the card.
|
|
961
|
+
* - `per_transaction` - The spending limit applies per transaction.
|
|
962
|
+
* - `per_day` - The spending limit applies per day. Resets nightly at midnight
|
|
963
|
+
* UTC.
|
|
964
|
+
* - `per_week` - The spending limit applies per week. Resets weekly on Mondays at
|
|
965
|
+
* midnight UTC.
|
|
966
|
+
* - `per_month` - The spending limit applies per month. Resets on the first of the
|
|
967
|
+
* month, midnight UTC.
|
|
968
|
+
*/
|
|
969
|
+
interval: 'all_time' | 'per_transaction' | 'per_day' | 'per_week' | 'per_month';
|
|
970
|
+
/**
|
|
971
|
+
* The maximum settlement amount permitted in the given interval.
|
|
972
|
+
*/
|
|
973
|
+
settlement_amount: number;
|
|
974
|
+
/**
|
|
975
|
+
* The Merchant Category Codes this spending limit applies to. If not set, the
|
|
976
|
+
* limit applies to all transactions.
|
|
977
|
+
*/
|
|
978
|
+
merchant_category_codes?: Array<SpendingLimit.MerchantCategoryCode>;
|
|
979
|
+
}
|
|
980
|
+
namespace SpendingLimit {
|
|
981
|
+
interface MerchantCategoryCode {
|
|
982
|
+
/**
|
|
983
|
+
* The Merchant Category Code.
|
|
984
|
+
*/
|
|
985
|
+
code: string;
|
|
986
|
+
}
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
/**
|
|
990
|
+
* Controls for single-use cards. Required if and only if `category` is
|
|
991
|
+
* `single_use`.
|
|
992
|
+
*/
|
|
993
|
+
interface SingleUse {
|
|
994
|
+
/**
|
|
995
|
+
* The settlement amount constraint for this single-use card.
|
|
996
|
+
*/
|
|
997
|
+
settlement_amount: SingleUse.SettlementAmount;
|
|
998
|
+
}
|
|
999
|
+
namespace SingleUse {
|
|
1000
|
+
/**
|
|
1001
|
+
* The settlement amount constraint for this single-use card.
|
|
1002
|
+
*/
|
|
1003
|
+
interface SettlementAmount {
|
|
1004
|
+
/**
|
|
1005
|
+
* The operator used to compare the settlement amount.
|
|
1006
|
+
*
|
|
1007
|
+
* - `equals` - The settlement amount must be exactly the specified value.
|
|
1008
|
+
* - `less_than_or_equals` - The settlement amount must be less than or equal to
|
|
1009
|
+
* the specified value.
|
|
1010
|
+
*/
|
|
1011
|
+
comparison: 'equals' | 'less_than_or_equals';
|
|
1012
|
+
/**
|
|
1013
|
+
* The settlement amount value.
|
|
1014
|
+
*/
|
|
1015
|
+
value: number;
|
|
1016
|
+
}
|
|
869
1017
|
}
|
|
870
1018
|
}
|
|
871
1019
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cards.d.mts","sourceRoot":"","sources":["../src/resources/cards.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"cards.d.mts","sourceRoot":"","sources":["../src/resources/cards.ts"],"names":[],"mappings":"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"}
|