@blocklet/payment-types 1.22.17 → 1.22.18

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 (2) hide show
  1. package/lib/payout.d.ts +2 -2
  2. package/package.json +2 -2
package/lib/payout.d.ts CHANGED
@@ -21,7 +21,7 @@ export declare class Payout extends Model<InferAttributes<Payout>, InferCreation
21
21
  order_id: string;
22
22
  commission_amount: string;
23
23
  };
24
- status: LiteralUnion<'pending' | 'paid' | 'failed' | 'canceled' | 'in_transit' | 'deferred', string>;
24
+ status: LiteralUnion<'pending' | 'paid' | 'failed' | 'canceled' | 'in_transit' | 'deferred' | 'reverted', string>;
25
25
  failure_message?: string;
26
26
  failure_code?: LiteralUnion<'account_closed' | 'account_frozen' | 'bank_account_restricted' | 'bank_ownership_changed' | 'could_not_process' | 'debit_not_authorized' | 'declined' | 'incorrect_account_holder_address' | 'incorrect_account_holder_name' | 'incorrect_account_holder_tax_id' | 'incorrect_account_type' | 'insufficient_funds' | 'invalid_account_number', string>;
27
27
  attempt_count: number;
@@ -82,7 +82,7 @@ export declare class Payout extends Model<InferAttributes<Payout>, InferCreation
82
82
  allowNull: boolean;
83
83
  };
84
84
  status: {
85
- type: DataTypes.EnumDataType<"pending" | "canceled" | "paid" | "failed" | "in_transit" | "deferred">;
85
+ type: DataTypes.EnumDataType<"pending" | "canceled" | "paid" | "failed" | "in_transit" | "deferred" | "reverted">;
86
86
  allowNull: boolean;
87
87
  };
88
88
  failure_message: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/payment-types",
3
- "version": "1.22.17",
3
+ "version": "1.22.18",
4
4
  "description": "Typings for Payment Kit SDK",
5
5
  "keywords": [
6
6
  "types",
@@ -48,5 +48,5 @@
48
48
  "sequelize": "^6.37.7",
49
49
  "type-fest": "^4.41.0"
50
50
  },
51
- "gitHead": "5de77cb79635cdd8616113c587379fb430530d44"
51
+ "gitHead": "24310c99c4d63ab5ec34f82f6c2d2d16a5af469f"
52
52
  }