repzo 1.0.127 → 1.0.129
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 +21 -3
- package/package.json +1 -1
- package/src/types/index.ts +21 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -4292,9 +4292,24 @@ 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
|
+
};
|
|
4298
4313
|
variant_name: string;
|
|
4299
4314
|
listed_price: number;
|
|
4300
4315
|
variant_local_name?: string;
|
|
@@ -4918,6 +4933,7 @@ export declare namespace Service {
|
|
|
4918
4933
|
visit_id: string;
|
|
4919
4934
|
visit_UUID: string;
|
|
4920
4935
|
teams?: string[];
|
|
4936
|
+
feed_back_option: string;
|
|
4921
4937
|
company_namespace: string[];
|
|
4922
4938
|
createdAt: Date;
|
|
4923
4939
|
updatedAt: Date;
|
|
@@ -4926,6 +4942,7 @@ export declare namespace Service {
|
|
|
4926
4942
|
route?: string;
|
|
4927
4943
|
visit_id: string;
|
|
4928
4944
|
visit_UUID: string;
|
|
4945
|
+
feed_back_option: string;
|
|
4929
4946
|
teams?: string[];
|
|
4930
4947
|
}
|
|
4931
4948
|
export interface UpdateBody {
|
|
@@ -4933,6 +4950,7 @@ export declare namespace Service {
|
|
|
4933
4950
|
visit_id?: string;
|
|
4934
4951
|
visit_UUID?: string;
|
|
4935
4952
|
teams?: string[];
|
|
4953
|
+
feed_back_option?: string;
|
|
4936
4954
|
}
|
|
4937
4955
|
export type PopulatedKeys =
|
|
4938
4956
|
| "teams"
|
|
@@ -4943,7 +4961,7 @@ export declare namespace Service {
|
|
|
4943
4961
|
teams_populated?: string[] | Team.TeamSchema[];
|
|
4944
4962
|
route_populated?: string | Route.RouteSchema;
|
|
4945
4963
|
visit_id_populated?: string | Visit.VisitSchema;
|
|
4946
|
-
feed_back_option_populated?: string;
|
|
4964
|
+
feed_back_option_populated?: string | FeedbackOption.FeedbackOptionSchema;
|
|
4947
4965
|
};
|
|
4948
4966
|
export namespace Find {
|
|
4949
4967
|
type Params = DefaultPaginationQueryParams & {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4354,9 +4354,24 @@ 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
|
+
};
|
|
4360
4375
|
variant_name: string;
|
|
4361
4376
|
listed_price: number;
|
|
4362
4377
|
variant_local_name?: string;
|
|
@@ -4958,6 +4973,7 @@ export namespace Service {
|
|
|
4958
4973
|
visit_id: string;
|
|
4959
4974
|
visit_UUID: string;
|
|
4960
4975
|
teams?: string[];
|
|
4976
|
+
feed_back_option: string;
|
|
4961
4977
|
company_namespace: string[];
|
|
4962
4978
|
createdAt: Date;
|
|
4963
4979
|
updatedAt: Date;
|
|
@@ -4966,6 +4982,7 @@ export namespace Service {
|
|
|
4966
4982
|
route?: string;
|
|
4967
4983
|
visit_id: string;
|
|
4968
4984
|
visit_UUID: string;
|
|
4985
|
+
feed_back_option: string;
|
|
4969
4986
|
teams?: string[];
|
|
4970
4987
|
}
|
|
4971
4988
|
export interface UpdateBody {
|
|
@@ -4973,6 +4990,7 @@ export namespace Service {
|
|
|
4973
4990
|
visit_id?: string;
|
|
4974
4991
|
visit_UUID?: string;
|
|
4975
4992
|
teams?: string[];
|
|
4993
|
+
feed_back_option?: string;
|
|
4976
4994
|
}
|
|
4977
4995
|
export type PopulatedKeys =
|
|
4978
4996
|
| "teams"
|
|
@@ -4984,7 +5002,7 @@ export namespace Service {
|
|
|
4984
5002
|
teams_populated?: string[] | Team.TeamSchema[];
|
|
4985
5003
|
route_populated?: string | Route.RouteSchema;
|
|
4986
5004
|
visit_id_populated?: string | Visit.VisitSchema;
|
|
4987
|
-
feed_back_option_populated?: string;
|
|
5005
|
+
feed_back_option_populated?: string | FeedbackOption.FeedbackOptionSchema;
|
|
4988
5006
|
};
|
|
4989
5007
|
|
|
4990
5008
|
export namespace Find {
|