repzo 1.0.50 → 1.0.51

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.
@@ -4373,8 +4373,11 @@ export declare namespace Service {
4373
4373
  client_id?: string | Client.ClientSchema;
4374
4374
  custom_status?: string | CustomStatus.CustomStatusSchema;
4375
4375
  cycle?: Cycle.Schema;
4376
+ return_reason?: string | ReturnReason.Schema;
4377
+ teams?: string[] | Team.TeamSchema[];
4378
+ route?: string | Route.RouteSchema;
4376
4379
  };
4377
- type PopulatedKeys = "custom_status";
4380
+ type PopulatedKeys = "custom_status" | "return_reason" | "teams" | "route";
4378
4381
  type ProformaStatus = "pending" | "approved" | "processing" | "rejected";
4379
4382
  type SortingKeys = "product_sku" | "product_barcode" | "variant_name" | "product_name" | "variant_sku" | "variant_barcode";
4380
4383
  export namespace Find {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -4693,8 +4693,11 @@ export namespace Service {
4693
4693
  client_id?: string | Client.ClientSchema;
4694
4694
  custom_status?: string | CustomStatus.CustomStatusSchema;
4695
4695
  cycle?: Cycle.Schema;
4696
+ return_reason?: string | ReturnReason.Schema;
4697
+ teams?: string[] | Team.TeamSchema[];
4698
+ route?: string | Route.RouteSchema;
4696
4699
  };
4697
- type PopulatedKeys = "custom_status";
4700
+ type PopulatedKeys = "custom_status" | "return_reason" | "teams" | "route";
4698
4701
  type ProformaStatus = "pending" | "approved" | "processing" | "rejected";
4699
4702
  type SortingKeys =
4700
4703
  | "product_sku"