repzo 1.0.128 → 1.0.130
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/lib/types/index.d.ts +20 -2
- package/package.json +1 -1
- package/src/types/index.ts +18 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -4292,9 +4292,27 @@ export declare namespace Service {
|
|
|
4292
4292
|
group_tax_total?: number;
|
|
4293
4293
|
}
|
|
4294
4294
|
export interface Item_Variant {
|
|
4295
|
-
product_id:
|
|
4295
|
+
product_id:
|
|
4296
|
+
| string
|
|
4297
|
+
| {
|
|
4298
|
+
_id: string;
|
|
4299
|
+
name: string;
|
|
4300
|
+
local_name: string;
|
|
4301
|
+
barcode: string;
|
|
4302
|
+
};
|
|
4296
4303
|
product_name: string;
|
|
4297
|
-
variant_id:
|
|
4304
|
+
variant_id:
|
|
4305
|
+
| string
|
|
4306
|
+
| {
|
|
4307
|
+
_id: string;
|
|
4308
|
+
name: string;
|
|
4309
|
+
local_name: string;
|
|
4310
|
+
sku: string;
|
|
4311
|
+
barcode: string;
|
|
4312
|
+
integration_meta?: {
|
|
4313
|
+
[key: string]: any;
|
|
4314
|
+
};
|
|
4315
|
+
};
|
|
4298
4316
|
variant_name: string;
|
|
4299
4317
|
listed_price: number;
|
|
4300
4318
|
variant_local_name?: string;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4354,9 +4354,25 @@ export namespace Service {
|
|
|
4354
4354
|
group_tax_total?: number;
|
|
4355
4355
|
}
|
|
4356
4356
|
export interface Item_Variant {
|
|
4357
|
-
product_id:
|
|
4357
|
+
product_id:
|
|
4358
|
+
| string
|
|
4359
|
+
| {
|
|
4360
|
+
_id: string;
|
|
4361
|
+
name: string;
|
|
4362
|
+
local_name: string;
|
|
4363
|
+
barcode: string;
|
|
4364
|
+
};
|
|
4358
4365
|
product_name: string;
|
|
4359
|
-
variant_id:
|
|
4366
|
+
variant_id:
|
|
4367
|
+
| string
|
|
4368
|
+
| {
|
|
4369
|
+
_id: string;
|
|
4370
|
+
name: string;
|
|
4371
|
+
local_name: string;
|
|
4372
|
+
sku: string;
|
|
4373
|
+
barcode: string;
|
|
4374
|
+
integration_meta?: { [key: string]: any };
|
|
4375
|
+
};
|
|
4360
4376
|
variant_name: string;
|
|
4361
4377
|
listed_price: number;
|
|
4362
4378
|
variant_local_name?: string;
|