repzo 1.0.214 → 1.0.216
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
|
@@ -17079,12 +17079,13 @@ export declare namespace Service {
|
|
|
17079
17079
|
}
|
|
17080
17080
|
export type UpdateBody = Partial<Data>;
|
|
17081
17081
|
export type PopulatedDoc = Data & {
|
|
17082
|
+
presentation_populated?: CLMPresentation.Data;
|
|
17082
17083
|
sequence_populated?: Pick<CLMSequence.Data, "position" | "_id" | "product" | "presentation">[];
|
|
17083
17084
|
photo_media_populated?: PopulatedMediaStorage & {
|
|
17084
17085
|
ContentLength?: number;
|
|
17085
17086
|
};
|
|
17086
17087
|
};
|
|
17087
|
-
type PopulatedKeys = "sequence" | "photo_media";
|
|
17088
|
+
type PopulatedKeys = "presentation" | "sequence" | "photo_media";
|
|
17088
17089
|
type SortingKeys = "_id" | "position" | "is_book_mark";
|
|
17089
17090
|
export namespace Find {
|
|
17090
17091
|
type Params = DefaultPaginationQueryParams & {
|
|
@@ -17182,6 +17183,7 @@ export declare namespace Service {
|
|
|
17182
17183
|
feedback: "positive" | "negative" | "notProvided";
|
|
17183
17184
|
zoom: boolean;
|
|
17184
17185
|
duration_on_slide_ms: number;
|
|
17186
|
+
slide_landing_count: number;
|
|
17185
17187
|
is_book_mark?: boolean;
|
|
17186
17188
|
book_mark_key_message?: string;
|
|
17187
17189
|
}[];
|
|
@@ -17233,6 +17235,7 @@ export declare namespace Service {
|
|
|
17233
17235
|
feedback: "positive" | "negative" | "notProvided";
|
|
17234
17236
|
zoom: boolean;
|
|
17235
17237
|
duration_on_slide_ms: number;
|
|
17238
|
+
slide_landing_count: number;
|
|
17236
17239
|
is_book_mark?: boolean;
|
|
17237
17240
|
book_mark_key_message?: string;
|
|
17238
17241
|
}[];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -19375,6 +19375,7 @@ export namespace Service {
|
|
|
19375
19375
|
export type UpdateBody = Partial<Data>;
|
|
19376
19376
|
|
|
19377
19377
|
export type PopulatedDoc = Data & {
|
|
19378
|
+
presentation_populated?: CLMPresentation.Data;
|
|
19378
19379
|
sequence_populated?: Pick<
|
|
19379
19380
|
CLMSequence.Data,
|
|
19380
19381
|
"position" | "_id" | "product" | "presentation"
|
|
@@ -19384,7 +19385,7 @@ export namespace Service {
|
|
|
19384
19385
|
};
|
|
19385
19386
|
};
|
|
19386
19387
|
|
|
19387
|
-
type PopulatedKeys = "sequence" | "photo_media";
|
|
19388
|
+
type PopulatedKeys = "presentation" | "sequence" | "photo_media";
|
|
19388
19389
|
type SortingKeys = "_id" | "position" | "is_book_mark";
|
|
19389
19390
|
|
|
19390
19391
|
export namespace Find {
|
|
@@ -19474,6 +19475,7 @@ export namespace Service {
|
|
|
19474
19475
|
feedback: "positive" | "negative" | "notProvided";
|
|
19475
19476
|
zoom: boolean;
|
|
19476
19477
|
duration_on_slide_ms: number;
|
|
19478
|
+
slide_landing_count: number;
|
|
19477
19479
|
is_book_mark?: boolean;
|
|
19478
19480
|
book_mark_key_message?: string;
|
|
19479
19481
|
}[];
|
|
@@ -19521,6 +19523,7 @@ export namespace Service {
|
|
|
19521
19523
|
feedback: "positive" | "negative" | "notProvided";
|
|
19522
19524
|
zoom: boolean;
|
|
19523
19525
|
duration_on_slide_ms: number;
|
|
19526
|
+
slide_landing_count: number;
|
|
19524
19527
|
is_book_mark?: boolean;
|
|
19525
19528
|
book_mark_key_message?: string;
|
|
19526
19529
|
}[];
|