repzo 1.0.291 → 1.0.292
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 +3 -0
- package/package.json +1 -1
- package/src/types/index.ts +3 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -3059,6 +3059,9 @@ export declare namespace Service {
|
|
|
3059
3059
|
enable_auto_skip_activity_existence?: boolean;
|
|
3060
3060
|
auto_skip_activity_slugs?: AutoSkipActivitySlugs[];
|
|
3061
3061
|
auto_skip_activity_slugs_operator?: "and" | "or";
|
|
3062
|
+
enable_auto_skip_visit_duration?: boolean;
|
|
3063
|
+
skip_if_visit_duration_minutes_is_less_than?: number;
|
|
3064
|
+
skip_if_visit_duration_minutes_is_more_than?: number;
|
|
3062
3065
|
};
|
|
3063
3066
|
createdAt: string;
|
|
3064
3067
|
updatedAt: string;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -3566,6 +3566,9 @@ export namespace Service {
|
|
|
3566
3566
|
enable_auto_skip_activity_existence?: boolean;
|
|
3567
3567
|
auto_skip_activity_slugs?: AutoSkipActivitySlugs[];
|
|
3568
3568
|
auto_skip_activity_slugs_operator?: "and" | "or";
|
|
3569
|
+
enable_auto_skip_visit_duration?: boolean;
|
|
3570
|
+
skip_if_visit_duration_minutes_is_less_than?: number;
|
|
3571
|
+
skip_if_visit_duration_minutes_is_more_than?: number;
|
|
3569
3572
|
};
|
|
3570
3573
|
createdAt: string;
|
|
3571
3574
|
updatedAt: string;
|