increase 0.575.0 → 0.576.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 +13 -0
- package/bin/cli +5 -12
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +4 -4
- package/client.js.map +1 -1
- package/client.mjs +4 -4
- package/client.mjs.map +1 -1
- package/core/error.js +5 -4
- package/core/error.js.map +1 -1
- package/core/error.mjs +5 -4
- package/core/error.mjs.map +1 -1
- package/core/pagination.d.mts.map +1 -1
- package/core/pagination.d.ts.map +1 -1
- package/internal/detect-platform.js +1 -1
- package/internal/detect-platform.js.map +1 -1
- package/internal/detect-platform.mjs +1 -1
- package/internal/detect-platform.mjs.map +1 -1
- package/internal/qs/stringify.d.mts.map +1 -1
- package/internal/qs/stringify.d.ts.map +1 -1
- package/internal/qs/stringify.js +13 -12
- package/internal/qs/stringify.js.map +1 -1
- package/internal/qs/stringify.mjs +13 -12
- package/internal/qs/stringify.mjs.map +1 -1
- package/internal/shim-types.d.mts.map +1 -1
- package/internal/shim-types.d.ts.map +1 -1
- package/internal/types.d.mts +4 -4
- package/internal/types.d.mts.map +1 -1
- package/internal/types.d.ts +4 -4
- package/internal/types.d.ts.map +1 -1
- package/internal/uploads.d.mts.map +1 -1
- package/internal/uploads.d.ts.map +1 -1
- package/internal/uploads.js +3 -5
- package/internal/uploads.js.map +1 -1
- package/internal/uploads.mjs +3 -5
- package/internal/uploads.mjs.map +1 -1
- package/internal/utils/log.d.mts.map +1 -1
- package/internal/utils/log.d.ts.map +1 -1
- package/internal/utils/log.js +3 -3
- package/internal/utils/log.js.map +1 -1
- package/internal/utils/log.mjs +3 -3
- package/internal/utils/log.mjs.map +1 -1
- package/package.json +21 -21
- package/resources/accounts.d.mts +1 -0
- package/resources/accounts.d.mts.map +1 -1
- package/resources/accounts.d.ts +1 -0
- package/resources/accounts.d.ts.map +1 -1
- package/resources/check-transfers.d.mts +15 -6
- package/resources/check-transfers.d.mts.map +1 -1
- package/resources/check-transfers.d.ts +15 -6
- package/resources/check-transfers.d.ts.map +1 -1
- package/resources/entities.d.mts +9 -0
- package/resources/entities.d.mts.map +1 -1
- package/resources/entities.d.ts +9 -0
- package/resources/entities.d.ts.map +1 -1
- package/resources/pending-transactions.d.mts +2 -2
- package/resources/pending-transactions.d.ts +2 -2
- package/src/client.ts +7 -10
- package/src/core/error.ts +6 -6
- package/src/core/pagination.ts +3 -3
- package/src/internal/detect-platform.ts +1 -1
- package/src/internal/qs/stringify.ts +14 -15
- package/src/internal/shim-types.ts +3 -2
- package/src/internal/types.ts +29 -33
- package/src/internal/uploads.ts +5 -6
- package/src/internal/utils/log.ts +8 -12
- package/src/resources/accounts.ts +2 -0
- package/src/resources/check-transfers.ts +18 -7
- package/src/resources/entities.ts +11 -0
- package/src/resources/pending-transactions.ts +2 -2
- 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
|
@@ -460,6 +460,11 @@ export namespace CheckTransfer {
|
|
|
460
460
|
*/
|
|
461
461
|
return_address: PhysicalCheck.ReturnAddress | null;
|
|
462
462
|
|
|
463
|
+
/**
|
|
464
|
+
* A custom name printed above the Increase-managed return address.
|
|
465
|
+
*/
|
|
466
|
+
return_address_name: string | null;
|
|
467
|
+
|
|
463
468
|
/**
|
|
464
469
|
* The shipping method for the check.
|
|
465
470
|
*
|
|
@@ -844,6 +849,13 @@ export namespace CheckTransferCreateParams {
|
|
|
844
849
|
*/
|
|
845
850
|
memo: string;
|
|
846
851
|
|
|
852
|
+
/**
|
|
853
|
+
* The payer of the check. This will be printed on the top-left portion of the
|
|
854
|
+
* check. This should be an array of up to 4 elements, each of which represents a
|
|
855
|
+
* line of the payer.
|
|
856
|
+
*/
|
|
857
|
+
payer: Array<PhysicalCheck.Payer>;
|
|
858
|
+
|
|
847
859
|
/**
|
|
848
860
|
* The name that will be printed on the check in the 'To:' field.
|
|
849
861
|
*/
|
|
@@ -868,13 +880,6 @@ export namespace CheckTransferCreateParams {
|
|
|
868
880
|
*/
|
|
869
881
|
note?: string;
|
|
870
882
|
|
|
871
|
-
/**
|
|
872
|
-
* The payer of the check. This will be printed on the top-left portion of the
|
|
873
|
-
* check and defaults to the return address if unspecified. This should be an array
|
|
874
|
-
* of up to 4 elements, each of which represents a line of the payer.
|
|
875
|
-
*/
|
|
876
|
-
payer?: Array<PhysicalCheck.Payer>;
|
|
877
|
-
|
|
878
883
|
/**
|
|
879
884
|
* The return address to be printed on the check. If omitted this will default to
|
|
880
885
|
* an Increase-owned address that will mark checks as delivery failed and shred
|
|
@@ -882,6 +887,12 @@ export namespace CheckTransferCreateParams {
|
|
|
882
887
|
*/
|
|
883
888
|
return_address?: PhysicalCheck.ReturnAddress;
|
|
884
889
|
|
|
890
|
+
/**
|
|
891
|
+
* A custom name to print above the default return address. Cannot be provided
|
|
892
|
+
* together with `return_address`.
|
|
893
|
+
*/
|
|
894
|
+
return_address_name?: string;
|
|
895
|
+
|
|
885
896
|
/**
|
|
886
897
|
* How to ship the check. For details on pricing, timing, and restrictions, see
|
|
887
898
|
* https://increase.com/documentation/originating-checks#printing-checks .
|
|
@@ -3327,6 +3327,8 @@ export interface EntityListParams extends PageParams {
|
|
|
3327
3327
|
idempotency_key?: string;
|
|
3328
3328
|
|
|
3329
3329
|
status?: EntityListParams.Status;
|
|
3330
|
+
|
|
3331
|
+
validation_status?: EntityListParams.ValidationStatus;
|
|
3330
3332
|
}
|
|
3331
3333
|
|
|
3332
3334
|
export namespace EntityListParams {
|
|
@@ -3364,6 +3366,15 @@ export namespace EntityListParams {
|
|
|
3364
3366
|
*/
|
|
3365
3367
|
in?: Array<'active' | 'archived' | 'disabled'>;
|
|
3366
3368
|
}
|
|
3369
|
+
|
|
3370
|
+
export interface ValidationStatus {
|
|
3371
|
+
/**
|
|
3372
|
+
* Filter Entities for those with the specified validation status. For GET
|
|
3373
|
+
* requests, this should be encoded as a comma-delimited string, such as
|
|
3374
|
+
* `?in=one,two,three`.
|
|
3375
|
+
*/
|
|
3376
|
+
in?: Array<'pending' | 'valid' | 'invalid'>;
|
|
3377
|
+
}
|
|
3367
3378
|
}
|
|
3368
3379
|
|
|
3369
3380
|
export declare namespace Entities {
|
|
@@ -1705,8 +1705,8 @@ export interface PendingTransactionCreateParams {
|
|
|
1705
1705
|
|
|
1706
1706
|
/**
|
|
1707
1707
|
* The amount to hold in the minor unit of the account's currency. For dollars, for
|
|
1708
|
-
* example, this is cents. This should be a negative amount
|
|
1709
|
-
*
|
|
1708
|
+
* example, this is cents. This should be a negative amount: To hold $1.00 from the
|
|
1709
|
+
* account, pass -100 as `amount`.
|
|
1710
1710
|
*/
|
|
1711
1711
|
amount: number;
|
|
1712
1712
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.576.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.576.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.576.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.576.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|