repzo 1.0.227 → 1.0.228
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 +9 -1
- package/package.json +1 -1
- package/src/types/index.ts +15 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -6631,6 +6631,8 @@ export declare namespace Service {
|
|
|
6631
6631
|
shipping_charge?: number;
|
|
6632
6632
|
payment_charge?: number;
|
|
6633
6633
|
total_with_charges?: number;
|
|
6634
|
+
media?: StringId[];
|
|
6635
|
+
signature?: StringId;
|
|
6634
6636
|
createdAt: string;
|
|
6635
6637
|
updatedAt: string;
|
|
6636
6638
|
__v: number;
|
|
@@ -6738,6 +6740,8 @@ export declare namespace Service {
|
|
|
6738
6740
|
shipping_charge?: number;
|
|
6739
6741
|
payment_charge?: number;
|
|
6740
6742
|
total_with_charges?: number;
|
|
6743
|
+
media?: StringId[];
|
|
6744
|
+
signature?: StringId;
|
|
6741
6745
|
}
|
|
6742
6746
|
export interface UpdateBody {
|
|
6743
6747
|
_id?: string;
|
|
@@ -6848,6 +6852,8 @@ export declare namespace Service {
|
|
|
6848
6852
|
shipping_charge?: number;
|
|
6849
6853
|
payment_charge?: number;
|
|
6850
6854
|
total_with_charges?: number;
|
|
6855
|
+
media?: StringId[];
|
|
6856
|
+
signature?: StringId;
|
|
6851
6857
|
createdAt?: string;
|
|
6852
6858
|
updatedAt?: string;
|
|
6853
6859
|
__v?: number;
|
|
@@ -7010,8 +7016,10 @@ export declare namespace Service {
|
|
|
7010
7016
|
return_reason?: string | ReturnReason.Schema;
|
|
7011
7017
|
teams?: string[] | Team.TeamSchema[];
|
|
7012
7018
|
route?: string | Route.RouteSchema;
|
|
7019
|
+
media?: StringId[] | PopulatedMediaStorage[];
|
|
7020
|
+
signature?: StringId | PopulatedMediaStorage;
|
|
7013
7021
|
};
|
|
7014
|
-
type PopulatedKeys = "custom_status" | "return_reason" | "teams" | "route";
|
|
7022
|
+
type PopulatedKeys = "custom_status" | "return_reason" | "teams" | "route" | "media" | "signature";
|
|
7015
7023
|
type ProformaStatus = "pending" | "approved" | "processing" | "rejected";
|
|
7016
7024
|
type VariantSortingKeys = "product_sku" | "product_barcode" | "variant_name" | "product_name" | "variant_sku" | "variant_barcode";
|
|
7017
7025
|
export namespace Find {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -7191,6 +7191,8 @@ export namespace Service {
|
|
|
7191
7191
|
shipping_charge?: number;
|
|
7192
7192
|
payment_charge?: number;
|
|
7193
7193
|
total_with_charges?: number;
|
|
7194
|
+
media?: StringId[];
|
|
7195
|
+
signature?: StringId;
|
|
7194
7196
|
createdAt: string;
|
|
7195
7197
|
updatedAt: string;
|
|
7196
7198
|
__v: number;
|
|
@@ -7290,6 +7292,8 @@ export namespace Service {
|
|
|
7290
7292
|
shipping_charge?: number;
|
|
7291
7293
|
payment_charge?: number;
|
|
7292
7294
|
total_with_charges?: number;
|
|
7295
|
+
media?: StringId[];
|
|
7296
|
+
signature?: StringId;
|
|
7293
7297
|
}
|
|
7294
7298
|
export interface UpdateBody {
|
|
7295
7299
|
_id?: string;
|
|
@@ -7392,6 +7396,8 @@ export namespace Service {
|
|
|
7392
7396
|
shipping_charge?: number;
|
|
7393
7397
|
payment_charge?: number;
|
|
7394
7398
|
total_with_charges?: number;
|
|
7399
|
+
media?: StringId[];
|
|
7400
|
+
signature?: StringId;
|
|
7395
7401
|
createdAt?: string;
|
|
7396
7402
|
updatedAt?: string;
|
|
7397
7403
|
__v?: number;
|
|
@@ -7539,8 +7545,16 @@ export namespace Service {
|
|
|
7539
7545
|
return_reason?: string | ReturnReason.Schema;
|
|
7540
7546
|
teams?: string[] | Team.TeamSchema[];
|
|
7541
7547
|
route?: string | Route.RouteSchema;
|
|
7548
|
+
media?: StringId[] | PopulatedMediaStorage[];
|
|
7549
|
+
signature?: StringId | PopulatedMediaStorage;
|
|
7542
7550
|
};
|
|
7543
|
-
type PopulatedKeys =
|
|
7551
|
+
type PopulatedKeys =
|
|
7552
|
+
| "custom_status"
|
|
7553
|
+
| "return_reason"
|
|
7554
|
+
| "teams"
|
|
7555
|
+
| "route"
|
|
7556
|
+
| "media"
|
|
7557
|
+
| "signature";
|
|
7544
7558
|
type ProformaStatus = "pending" | "approved" | "processing" | "rejected";
|
|
7545
7559
|
type VariantSortingKeys =
|
|
7546
7560
|
| "product_sku"
|