repzo 1.0.127 → 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.
- package/lib/types/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/types/index.ts +4 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -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"
|
|
@@ -4943,7 +4946,7 @@ export declare namespace Service {
|
|
|
4943
4946
|
teams_populated?: string[] | Team.TeamSchema[];
|
|
4944
4947
|
route_populated?: string | Route.RouteSchema;
|
|
4945
4948
|
visit_id_populated?: string | Visit.VisitSchema;
|
|
4946
|
-
feed_back_option_populated?: string;
|
|
4949
|
+
feed_back_option_populated?: string | FeedbackOption.FeedbackOptionSchema;
|
|
4947
4950
|
};
|
|
4948
4951
|
export namespace Find {
|
|
4949
4952
|
type Params = DefaultPaginationQueryParams & {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -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"
|
|
@@ -4984,7 +4987,7 @@ export namespace Service {
|
|
|
4984
4987
|
teams_populated?: string[] | Team.TeamSchema[];
|
|
4985
4988
|
route_populated?: string | Route.RouteSchema;
|
|
4986
4989
|
visit_id_populated?: string | Visit.VisitSchema;
|
|
4987
|
-
feed_back_option_populated?: string;
|
|
4990
|
+
feed_back_option_populated?: string | FeedbackOption.FeedbackOptionSchema;
|
|
4988
4991
|
};
|
|
4989
4992
|
|
|
4990
4993
|
export namespace Find {
|