repzo 1.0.212 → 1.0.214
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 +5 -1
- package/package.json +1 -1
- package/src/types/index.ts +7 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -15977,7 +15977,7 @@ export declare namespace Service {
|
|
|
15977
15977
|
export {};
|
|
15978
15978
|
}
|
|
15979
15979
|
namespace NotificationsCenter {
|
|
15980
|
-
export type Command = "update-categories" | "update-clients" | "bulk-update-clients" | "update-inventory" | "update-measureunitFamilies" | "update-measureunits" | "update-pricelistItems" | "update-pricelists" | "update-products" | "update-rep" | "update-salesmsl" | "update-settings" | "update-tags" | "update-taxes" | "update-transfer" | "update-warehouses" | "update-jobCategories" | "update-plans" | "update-workorders" | "update-commentsThread" | "update-approval-request" | "update-variant-batch" | "update-asset-part-type" | "update-asset-part" | "update-asset-part-unit" | "update-custom-status" | "update-module-custom-validator" | "update-feedback-options" | "update-customfields" | "update-speciality" | "update-presentation" | "update-sequence" | "update-slide";
|
|
15980
|
+
export type Command = "update-categories" | "update-clients" | "bulk-update-clients" | "update-inventory" | "update-measureunitFamilies" | "update-measureunits" | "update-pricelistItems" | "update-pricelists" | "update-products" | "update-rep" | "update-salesmsl" | "update-settings" | "update-tags" | "update-taxes" | "update-transfer" | "update-warehouses" | "update-jobCategories" | "update-plans" | "update-workorders" | "update-commentsThread" | "update-approval-request" | "update-variant-batch" | "update-asset-part-type" | "update-asset-part" | "update-asset-part-unit" | "update-custom-status" | "update-module-custom-validator" | "update-feedback-options" | "update-customfields" | "update-speciality" | "update-clm-presentation" | "update-clm-sequence" | "update-clm-slide";
|
|
15981
15981
|
export interface Data {
|
|
15982
15982
|
_id: StringId;
|
|
15983
15983
|
command: Command;
|
|
@@ -17182,6 +17182,8 @@ export declare namespace Service {
|
|
|
17182
17182
|
feedback: "positive" | "negative" | "notProvided";
|
|
17183
17183
|
zoom: boolean;
|
|
17184
17184
|
duration_on_slide_ms: number;
|
|
17185
|
+
is_book_mark?: boolean;
|
|
17186
|
+
book_mark_key_message?: string;
|
|
17185
17187
|
}[];
|
|
17186
17188
|
}[];
|
|
17187
17189
|
}
|
|
@@ -17231,6 +17233,8 @@ export declare namespace Service {
|
|
|
17231
17233
|
feedback: "positive" | "negative" | "notProvided";
|
|
17232
17234
|
zoom: boolean;
|
|
17233
17235
|
duration_on_slide_ms: number;
|
|
17236
|
+
is_book_mark?: boolean;
|
|
17237
|
+
book_mark_key_message?: string;
|
|
17234
17238
|
}[];
|
|
17235
17239
|
}[];
|
|
17236
17240
|
interactions: {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -18193,9 +18193,9 @@ export namespace Service {
|
|
|
18193
18193
|
| "update-feedback-options"
|
|
18194
18194
|
| "update-customfields"
|
|
18195
18195
|
| "update-speciality"
|
|
18196
|
-
| "update-presentation"
|
|
18197
|
-
| "update-sequence"
|
|
18198
|
-
| "update-slide";
|
|
18196
|
+
| "update-clm-presentation"
|
|
18197
|
+
| "update-clm-sequence"
|
|
18198
|
+
| "update-clm-slide";
|
|
18199
18199
|
|
|
18200
18200
|
export interface Data {
|
|
18201
18201
|
_id: StringId;
|
|
@@ -19474,6 +19474,8 @@ export namespace Service {
|
|
|
19474
19474
|
feedback: "positive" | "negative" | "notProvided";
|
|
19475
19475
|
zoom: boolean;
|
|
19476
19476
|
duration_on_slide_ms: number;
|
|
19477
|
+
is_book_mark?: boolean;
|
|
19478
|
+
book_mark_key_message?: string;
|
|
19477
19479
|
}[];
|
|
19478
19480
|
}[];
|
|
19479
19481
|
}
|
|
@@ -19519,6 +19521,8 @@ export namespace Service {
|
|
|
19519
19521
|
feedback: "positive" | "negative" | "notProvided";
|
|
19520
19522
|
zoom: boolean;
|
|
19521
19523
|
duration_on_slide_ms: number;
|
|
19524
|
+
is_book_mark?: boolean;
|
|
19525
|
+
book_mark_key_message?: string;
|
|
19522
19526
|
}[];
|
|
19523
19527
|
}[];
|
|
19524
19528
|
interactions: {
|