repzo 1.0.215 → 1.0.217
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 +8 -1
- package/package.json +1 -1
- package/src/types/index.ts +9 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -17183,6 +17183,7 @@ export declare namespace Service {
|
|
|
17183
17183
|
feedback: "positive" | "negative" | "notProvided";
|
|
17184
17184
|
zoom: boolean;
|
|
17185
17185
|
duration_on_slide_ms: number;
|
|
17186
|
+
slide_landing_count: number;
|
|
17186
17187
|
is_book_mark?: boolean;
|
|
17187
17188
|
book_mark_key_message?: string;
|
|
17188
17189
|
}[];
|
|
@@ -17234,6 +17235,7 @@ export declare namespace Service {
|
|
|
17234
17235
|
feedback: "positive" | "negative" | "notProvided";
|
|
17235
17236
|
zoom: boolean;
|
|
17236
17237
|
duration_on_slide_ms: number;
|
|
17238
|
+
slide_landing_count: number;
|
|
17237
17239
|
is_book_mark?: boolean;
|
|
17238
17240
|
book_mark_key_message?: string;
|
|
17239
17241
|
}[];
|
|
@@ -17269,8 +17271,13 @@ export declare namespace Service {
|
|
|
17269
17271
|
teams_populated?: Pick<Team.TeamSchema, "name" | "_id">[];
|
|
17270
17272
|
tags_populated?: Pick<Tag.Data, "_id" | "tag" | "type">[];
|
|
17271
17273
|
presentation_populated?: Pick<CLMPresentation.Data, "name" | "_id">;
|
|
17274
|
+
result: Data["result"] & {
|
|
17275
|
+
slides: (Data["result"][0]["slides"] & {
|
|
17276
|
+
slide: StringId | CLMSlide.Data;
|
|
17277
|
+
})[];
|
|
17278
|
+
};
|
|
17272
17279
|
};
|
|
17273
|
-
type PopulatedKeys = "client" | "visit" | "route" | "teams" | "tags" | "presentation";
|
|
17280
|
+
type PopulatedKeys = "client" | "visit" | "route" | "teams" | "tags" | "presentation" | "slide";
|
|
17274
17281
|
export namespace Find {
|
|
17275
17282
|
type Params = DefaultPaginationQueryParams & {
|
|
17276
17283
|
populatedKeys?: PopulatedKeys | PopulatedKeys[];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -19475,6 +19475,7 @@ export namespace Service {
|
|
|
19475
19475
|
feedback: "positive" | "negative" | "notProvided";
|
|
19476
19476
|
zoom: boolean;
|
|
19477
19477
|
duration_on_slide_ms: number;
|
|
19478
|
+
slide_landing_count: number;
|
|
19478
19479
|
is_book_mark?: boolean;
|
|
19479
19480
|
book_mark_key_message?: string;
|
|
19480
19481
|
}[];
|
|
@@ -19522,6 +19523,7 @@ export namespace Service {
|
|
|
19522
19523
|
feedback: "positive" | "negative" | "notProvided";
|
|
19523
19524
|
zoom: boolean;
|
|
19524
19525
|
duration_on_slide_ms: number;
|
|
19526
|
+
slide_landing_count: number;
|
|
19525
19527
|
is_book_mark?: boolean;
|
|
19526
19528
|
book_mark_key_message?: string;
|
|
19527
19529
|
}[];
|
|
@@ -19588,6 +19590,11 @@ export namespace Service {
|
|
|
19588
19590
|
teams_populated?: Pick<Team.TeamSchema, "name" | "_id">[];
|
|
19589
19591
|
tags_populated?: Pick<Tag.Data, "_id" | "tag" | "type">[];
|
|
19590
19592
|
presentation_populated?: Pick<CLMPresentation.Data, "name" | "_id">;
|
|
19593
|
+
result: Data["result"] & {
|
|
19594
|
+
slides: (Data["result"][0]["slides"] & {
|
|
19595
|
+
slide: StringId | CLMSlide.Data;
|
|
19596
|
+
})[];
|
|
19597
|
+
};
|
|
19591
19598
|
};
|
|
19592
19599
|
|
|
19593
19600
|
type PopulatedKeys =
|
|
@@ -19596,7 +19603,8 @@ export namespace Service {
|
|
|
19596
19603
|
| "route"
|
|
19597
19604
|
| "teams"
|
|
19598
19605
|
| "tags"
|
|
19599
|
-
| "presentation"
|
|
19606
|
+
| "presentation"
|
|
19607
|
+
| "slide";
|
|
19600
19608
|
|
|
19601
19609
|
export namespace Find {
|
|
19602
19610
|
export type Params = DefaultPaginationQueryParams & {
|