increase 0.331.0 → 0.333.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/card-disputes.d.ts +2 -1
  4. package/resources/card-disputes.d.ts.map +1 -1
  5. package/resources/card-disputes.js.map +1 -1
  6. package/resources/card-disputes.mjs.map +1 -1
  7. package/resources/card-payments.d.ts +28 -8
  8. package/resources/card-payments.d.ts.map +1 -1
  9. package/resources/card-payments.js.map +1 -1
  10. package/resources/card-payments.mjs.map +1 -1
  11. package/resources/declined-transactions.d.ts +6 -1
  12. package/resources/declined-transactions.d.ts.map +1 -1
  13. package/resources/declined-transactions.js.map +1 -1
  14. package/resources/declined-transactions.mjs.map +1 -1
  15. package/resources/pending-transactions.d.ts +6 -1
  16. package/resources/pending-transactions.d.ts.map +1 -1
  17. package/resources/pending-transactions.js.map +1 -1
  18. package/resources/pending-transactions.mjs.map +1 -1
  19. package/resources/real-time-decisions.d.ts +6 -1
  20. package/resources/real-time-decisions.d.ts.map +1 -1
  21. package/resources/simulations/programs.d.ts +2 -1
  22. package/resources/simulations/programs.d.ts.map +1 -1
  23. package/resources/transactions.d.ts +10 -3
  24. package/resources/transactions.d.ts.map +1 -1
  25. package/resources/transactions.js.map +1 -1
  26. package/resources/transactions.mjs.map +1 -1
  27. package/src/resources/card-disputes.ts +2 -1
  28. package/src/resources/card-payments.ts +31 -8
  29. package/src/resources/declined-transactions.ts +7 -1
  30. package/src/resources/pending-transactions.ts +7 -1
  31. package/src/resources/real-time-decisions.ts +7 -1
  32. package/src/resources/simulations/programs.ts +3 -1
  33. package/src/resources/transactions.ts +11 -3
  34. package/src/version.ts +1 -1
  35. package/version.d.ts +1 -1
  36. package/version.js +1 -1
  37. package/version.mjs +1 -1
@@ -37,13 +37,15 @@ export interface ProgramCreateParams {
37
37
  * - `first_internet_bank` - First Internet Bank of Indiana
38
38
  * - `global_innovations_bank` - Global Innovations Bank
39
39
  * - `grasshopper_bank` - Grasshopper Bank
40
+ * - `twin_city_bank` - Twin City Bank
40
41
  */
41
42
  bank?:
42
43
  | 'blue_ridge_bank'
43
44
  | 'core_bank'
44
45
  | 'first_internet_bank'
45
46
  | 'global_innovations_bank'
46
- | 'grasshopper_bank';
47
+ | 'grasshopper_bank'
48
+ | 'twin_city_bank';
47
49
 
48
50
  /**
49
51
  * The identifier of the Account the Program should be added to is for.
@@ -958,8 +958,9 @@ export namespace Transaction {
958
958
  * The network that the Card Dispute is associated with.
959
959
  *
960
960
  * - `visa` - Visa: details will be under the `visa` object.
961
+ * - `pulse` - Pulse: details will be under the `pulse` object.
961
962
  */
962
- network: 'visa';
963
+ network: 'visa' | 'pulse';
963
964
 
964
965
  /**
965
966
  * The identifier of the Transaction that was created to credit or debit the
@@ -1459,8 +1460,14 @@ export namespace Transaction {
1459
1460
  * The payment network used to process this card authorization.
1460
1461
  *
1461
1462
  * - `visa` - Visa
1463
+ * - `pulse` - Pulse
1462
1464
  */
1463
- category: 'visa';
1465
+ category: 'visa' | 'pulse';
1466
+
1467
+ /**
1468
+ * Fields specific to the `pulse` network.
1469
+ */
1470
+ pulse: unknown | null;
1464
1471
 
1465
1472
  /**
1466
1473
  * Fields specific to the `visa` network.
@@ -2571,8 +2578,9 @@ export namespace Transaction {
2571
2578
  * The card network on which this transaction was processed.
2572
2579
  *
2573
2580
  * - `visa` - Visa
2581
+ * - `pulse` - Pulse
2574
2582
  */
2575
- network: 'visa';
2583
+ network: 'visa' | 'pulse';
2576
2584
 
2577
2585
  /**
2578
2586
  * Network-specific identifiers for this refund.
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.331.0'; // x-release-please-version
1
+ export const VERSION = '0.333.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.331.0";
1
+ export declare const VERSION = "0.333.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.331.0'; // x-release-please-version
4
+ exports.VERSION = '0.333.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.331.0'; // x-release-please-version
1
+ export const VERSION = '0.333.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map