repzo 1.0.126 → 1.0.128

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.
@@ -4918,6 +4918,7 @@ export declare namespace Service {
4918
4918
  visit_id: string;
4919
4919
  visit_UUID: string;
4920
4920
  teams?: string[];
4921
+ feed_back_option: string;
4921
4922
  company_namespace: string[];
4922
4923
  createdAt: Date;
4923
4924
  updatedAt: Date;
@@ -4926,6 +4927,7 @@ export declare namespace Service {
4926
4927
  route?: string;
4927
4928
  visit_id: string;
4928
4929
  visit_UUID: string;
4930
+ feed_back_option: string;
4929
4931
  teams?: string[];
4930
4932
  }
4931
4933
  export interface UpdateBody {
@@ -4933,6 +4935,7 @@ export declare namespace Service {
4933
4935
  visit_id?: string;
4934
4936
  visit_UUID?: string;
4935
4937
  teams?: string[];
4938
+ feed_back_option?: string;
4936
4939
  }
4937
4940
  export type PopulatedKeys =
4938
4941
  | "teams"
@@ -4940,10 +4943,10 @@ export declare namespace Service {
4940
4943
  | "visit_id"
4941
4944
  | "feed_back_option";
4942
4945
  type ActivityFeedbackV2SchemaWithPopulatedKeys = ActivityFeedbackV2Schema & {
4943
- teams?: string[] | Team.TeamSchema[];
4944
- route?: string | Route.RouteSchema;
4945
- visit_id?: string | Visit.VisitSchema;
4946
- feed_back_option?: string;
4946
+ teams_populated?: string[] | Team.TeamSchema[];
4947
+ route_populated?: string | Route.RouteSchema;
4948
+ visit_id_populated?: string | Visit.VisitSchema;
4949
+ feed_back_option_populated?: string | FeedbackOption.FeedbackOptionSchema;
4947
4950
  };
4948
4951
  export namespace Find {
4949
4952
  type Params = DefaultPaginationQueryParams & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.126",
3
+ "version": "1.0.128",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -4958,6 +4958,7 @@ export namespace Service {
4958
4958
  visit_id: string;
4959
4959
  visit_UUID: string;
4960
4960
  teams?: string[];
4961
+ feed_back_option: string;
4961
4962
  company_namespace: string[];
4962
4963
  createdAt: Date;
4963
4964
  updatedAt: Date;
@@ -4966,6 +4967,7 @@ export namespace Service {
4966
4967
  route?: string;
4967
4968
  visit_id: string;
4968
4969
  visit_UUID: string;
4970
+ feed_back_option: string;
4969
4971
  teams?: string[];
4970
4972
  }
4971
4973
  export interface UpdateBody {
@@ -4973,6 +4975,7 @@ export namespace Service {
4973
4975
  visit_id?: string;
4974
4976
  visit_UUID?: string;
4975
4977
  teams?: string[];
4978
+ feed_back_option?: string;
4976
4979
  }
4977
4980
  export type PopulatedKeys =
4978
4981
  | "teams"
@@ -4981,10 +4984,10 @@ export namespace Service {
4981
4984
  | "feed_back_option";
4982
4985
 
4983
4986
  type ActivityFeedbackV2SchemaWithPopulatedKeys = ActivityFeedbackV2Schema & {
4984
- teams?: string[] | Team.TeamSchema[];
4985
- route?: string | Route.RouteSchema;
4986
- visit_id?: string | Visit.VisitSchema;
4987
- feed_back_option?: string;
4987
+ teams_populated?: string[] | Team.TeamSchema[];
4988
+ route_populated?: string | Route.RouteSchema;
4989
+ visit_id_populated?: string | Visit.VisitSchema;
4990
+ feed_back_option_populated?: string | FeedbackOption.FeedbackOptionSchema;
4988
4991
  };
4989
4992
 
4990
4993
  export namespace Find {