@blocklet/payment-types 1.20.12 → 1.20.13

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.
@@ -110,12 +110,12 @@ export declare class CheckoutSession extends Model<InferAttributes<CheckoutSessi
110
110
  verification_method?: string;
111
111
  verification_data?: Record<string, any>;
112
112
  }>;
113
- fulfillment_status?: LiteralUnion<'pending' | 'processing' | 'completed' | 'failed' | 'cancelled' | 'max_retries_exceeded' | 'return_requested' | 'sent', string>;
113
+ fulfillment_status?: LiteralUnion<'pending' | 'processing' | 'completed' | 'failed' | 'cancelled' | 'max_retries_exceeded' | 'return_requested' | 'sent' | 'returning' | 'returned', string>;
114
114
  vendor_info?: Array<{
115
115
  vendor_id: string;
116
116
  vendor_key: string;
117
117
  order_id: string;
118
- status: 'pending' | 'processing' | 'completed' | 'failed' | 'cancelled' | 'max_retries_exceeded' | 'return_requested' | 'sent';
118
+ status: 'pending' | 'processing' | 'completed' | 'failed' | 'cancelled' | 'max_retries_exceeded' | 'return_requested' | 'sent' | 'returned';
119
119
  service_url?: string;
120
120
  app_url?: string;
121
121
  error_message?: string;
@@ -12,6 +12,7 @@ export declare class ProductVendor extends Model<InferAttributes<ProductVendor>,
12
12
  vendor_did?: string;
13
13
  status: 'active' | 'inactive';
14
14
  metadata: Record<string, any>;
15
+ extends: Record<string, any>;
15
16
  created_by: string;
16
17
  created_at: CreationOptional<Date>;
17
18
  updated_at: CreationOptional<Date>;
@@ -66,6 +67,11 @@ export declare class ProductVendor extends Model<InferAttributes<ProductVendor>,
66
67
  allowNull: boolean;
67
68
  defaultValue: {};
68
69
  };
70
+ extends: {
71
+ type: DataTypes.AbstractDataTypeConstructor;
72
+ allowNull: boolean;
73
+ defaultValue: {};
74
+ };
69
75
  created_by: {
70
76
  type: DataTypes.StringDataType;
71
77
  allowNull: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/payment-types",
3
- "version": "1.20.12",
3
+ "version": "1.20.13",
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": "e6c432f89c2bf305efc903c0809f4a0557c07774"
51
+ "gitHead": "0cbe918549f7d06561b5307fb947bfbbd2250984"
52
52
  }