repzo 1.0.135 → 1.0.136

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.
@@ -2690,6 +2690,7 @@ export declare namespace Service {
2690
2690
  linked_to_device?: boolean;
2691
2691
  live_location?: boolean;
2692
2692
  phone?: string;
2693
+ email?: string;
2693
2694
  integration_id?: string;
2694
2695
  permissions: RepPermissions;
2695
2696
  preferences: {
@@ -2747,6 +2748,7 @@ export declare namespace Service {
2747
2748
  linked_to_device?: boolean;
2748
2749
  live_location?: boolean;
2749
2750
  phone?: string;
2751
+ email?: string;
2750
2752
  integration_id?: string;
2751
2753
  permissions?: RepPermissions;
2752
2754
  preferences?: {
@@ -2793,11 +2795,33 @@ export declare namespace Service {
2793
2795
  cover_photo?: string;
2794
2796
  last_login_time?: number;
2795
2797
  }
2796
- type PopulatedKeys = "line" | "job_category" | "teams";
2798
+ type PopulatedKeys =
2799
+ | "line"
2800
+ | "lines"
2801
+ | "job_category"
2802
+ | "teams"
2803
+ | "assigned_forms_v2"
2804
+ | "job_category"
2805
+ | "cover_photo"
2806
+ | "assigned_plan"
2807
+ | "assigned_retail_execution_templates"
2808
+ | "warehouse";
2797
2809
  export type RepWithPopulatedKeysSchema = RepSchema & {
2798
2810
  lines?: string[] | Line.LineSchema[];
2799
2811
  job_category?: string[] | JobCategory.JobCategorySchema[];
2800
2812
  teams?: string[] | Team.TeamSchema[];
2813
+ assigned_warehouse?:
2814
+ | string
2815
+ | Pick<
2816
+ Warehouse.WarehouseSchema,
2817
+ "_id" | "name" | "code" | "type" | "integration_meta"
2818
+ >;
2819
+ assigned_main_warehouse?:
2820
+ | string
2821
+ | Pick<
2822
+ Warehouse.WarehouseSchema,
2823
+ "_id" | "name" | "code" | "type" | "integration_meta"
2824
+ >;
2801
2825
  };
2802
2826
  export namespace Find {
2803
2827
  type Params = DefaultPaginationQueryParams & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.135",
3
+ "version": "1.0.136",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -2733,6 +2733,7 @@ export namespace Service {
2733
2733
  linked_to_device?: boolean;
2734
2734
  live_location?: boolean;
2735
2735
  phone?: string;
2736
+ email?: string;
2736
2737
  integration_id?: string;
2737
2738
  permissions: RepPermissions;
2738
2739
  preferences: {
@@ -2786,6 +2787,7 @@ export namespace Service {
2786
2787
  linked_to_device?: boolean;
2787
2788
  live_location?: boolean;
2788
2789
  phone?: string;
2790
+ email?: string;
2789
2791
  integration_id?: string;
2790
2792
  permissions?: RepPermissions;
2791
2793
  preferences?: {
@@ -2829,12 +2831,34 @@ export namespace Service {
2829
2831
  last_login_time?: number;
2830
2832
  }
2831
2833
 
2832
- type PopulatedKeys = "line" | "job_category" | "teams";
2834
+ type PopulatedKeys =
2835
+ | "line"
2836
+ | "lines"
2837
+ | "job_category"
2838
+ | "teams"
2839
+ | "assigned_forms_v2"
2840
+ | "job_category"
2841
+ | "cover_photo"
2842
+ | "assigned_plan"
2843
+ | "assigned_retail_execution_templates"
2844
+ | "warehouse";
2833
2845
 
2834
2846
  export type RepWithPopulatedKeysSchema = RepSchema & {
2835
2847
  lines?: string[] | Line.LineSchema[];
2836
2848
  job_category?: string[] | JobCategory.JobCategorySchema[];
2837
2849
  teams?: string[] | Team.TeamSchema[];
2850
+ assigned_warehouse?:
2851
+ | string
2852
+ | Pick<
2853
+ Warehouse.WarehouseSchema,
2854
+ "_id" | "name" | "code" | "type" | "integration_meta"
2855
+ >;
2856
+ assigned_main_warehouse?:
2857
+ | string
2858
+ | Pick<
2859
+ Warehouse.WarehouseSchema,
2860
+ "_id" | "name" | "code" | "type" | "integration_meta"
2861
+ >;
2838
2862
  };
2839
2863
 
2840
2864
  export namespace Find {