increase 0.532.0 → 0.533.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 +8 -0
- package/package.json +1 -1
- package/resources/cards.d.mts +4 -4
- package/resources/cards.d.ts +4 -4
- package/src/resources/cards.ts +4 -4
- 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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.533.0 (2026-04-17)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.532.0...v0.533.0](https://github.com/Increase/increase-typescript/compare/v0.532.0...v0.533.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([8943290](https://github.com/Increase/increase-typescript/commit/89432909044235542c9bdaa8df5a2e0134c76fe8))
|
|
10
|
+
|
|
3
11
|
## 0.532.0 (2026-04-16)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.531.0...v0.532.0](https://github.com/Increase/increase-typescript/compare/v0.531.0...v0.532.0)
|
package/package.json
CHANGED
package/resources/cards.d.mts
CHANGED
|
@@ -89,10 +89,10 @@ export declare class Cards extends APIResource {
|
|
|
89
89
|
}
|
|
90
90
|
export type CardsPage = Page<Card>;
|
|
91
91
|
/**
|
|
92
|
-
* Cards may operate on credit, debit or prepaid BINs. They’ll immediately work
|
|
93
|
-
* online purchases after you create them. All cards work on a good funds
|
|
94
|
-
* and maintain a maximum limit of 100% of the Account’s available balance
|
|
95
|
-
* time of transaction. Funds are deducted from the Account upon transaction
|
|
92
|
+
* Cards may operate on credit, debit, or prepaid BINs. They’ll immediately work
|
|
93
|
+
* for online purchases after you create them. All cards work on a good funds
|
|
94
|
+
* model, and maintain a maximum limit of 100% of the Account’s available balance
|
|
95
|
+
* at the time of transaction. Funds are deducted from the Account upon transaction
|
|
96
96
|
* settlement.
|
|
97
97
|
*/
|
|
98
98
|
export interface Card {
|
package/resources/cards.d.ts
CHANGED
|
@@ -89,10 +89,10 @@ export declare class Cards extends APIResource {
|
|
|
89
89
|
}
|
|
90
90
|
export type CardsPage = Page<Card>;
|
|
91
91
|
/**
|
|
92
|
-
* Cards may operate on credit, debit or prepaid BINs. They’ll immediately work
|
|
93
|
-
* online purchases after you create them. All cards work on a good funds
|
|
94
|
-
* and maintain a maximum limit of 100% of the Account’s available balance
|
|
95
|
-
* time of transaction. Funds are deducted from the Account upon transaction
|
|
92
|
+
* Cards may operate on credit, debit, or prepaid BINs. They’ll immediately work
|
|
93
|
+
* for online purchases after you create them. All cards work on a good funds
|
|
94
|
+
* model, and maintain a maximum limit of 100% of the Account’s available balance
|
|
95
|
+
* at the time of transaction. Funds are deducted from the Account upon transaction
|
|
96
96
|
* settlement.
|
|
97
97
|
*/
|
|
98
98
|
export interface Card {
|
package/src/resources/cards.ts
CHANGED
|
@@ -122,10 +122,10 @@ export class Cards extends APIResource {
|
|
|
122
122
|
export type CardsPage = Page<Card>;
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
|
-
* Cards may operate on credit, debit or prepaid BINs. They’ll immediately work
|
|
126
|
-
* online purchases after you create them. All cards work on a good funds
|
|
127
|
-
* and maintain a maximum limit of 100% of the Account’s available balance
|
|
128
|
-
* time of transaction. Funds are deducted from the Account upon transaction
|
|
125
|
+
* Cards may operate on credit, debit, or prepaid BINs. They’ll immediately work
|
|
126
|
+
* for online purchases after you create them. All cards work on a good funds
|
|
127
|
+
* model, and maintain a maximum limit of 100% of the Account’s available balance
|
|
128
|
+
* at the time of transaction. Funds are deducted from the Account upon transaction
|
|
129
129
|
* settlement.
|
|
130
130
|
*/
|
|
131
131
|
export interface Card {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.533.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.533.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.533.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.533.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|