repzo 1.0.126 → 1.0.127
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 -4
- package/package.json +1 -1
- package/src/types/index.ts +4 -4
package/lib/types/index.d.ts
CHANGED
|
@@ -4940,10 +4940,10 @@ export declare namespace Service {
|
|
|
4940
4940
|
| "visit_id"
|
|
4941
4941
|
| "feed_back_option";
|
|
4942
4942
|
type ActivityFeedbackV2SchemaWithPopulatedKeys = ActivityFeedbackV2Schema & {
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4943
|
+
teams_populated?: string[] | Team.TeamSchema[];
|
|
4944
|
+
route_populated?: string | Route.RouteSchema;
|
|
4945
|
+
visit_id_populated?: string | Visit.VisitSchema;
|
|
4946
|
+
feed_back_option_populated?: string;
|
|
4947
4947
|
};
|
|
4948
4948
|
export namespace Find {
|
|
4949
4949
|
type Params = DefaultPaginationQueryParams & {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4981,10 +4981,10 @@ export namespace Service {
|
|
|
4981
4981
|
| "feed_back_option";
|
|
4982
4982
|
|
|
4983
4983
|
type ActivityFeedbackV2SchemaWithPopulatedKeys = ActivityFeedbackV2Schema & {
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4984
|
+
teams_populated?: string[] | Team.TeamSchema[];
|
|
4985
|
+
route_populated?: string | Route.RouteSchema;
|
|
4986
|
+
visit_id_populated?: string | Visit.VisitSchema;
|
|
4987
|
+
feed_back_option_populated?: string;
|
|
4988
4988
|
};
|
|
4989
4989
|
|
|
4990
4990
|
export namespace Find {
|