repzo 1.0.216 → 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 +6 -1
- package/package.json +1 -1
- package/src/types/index.ts +7 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -17271,8 +17271,13 @@ export declare namespace Service {
|
|
|
17271
17271
|
teams_populated?: Pick<Team.TeamSchema, "name" | "_id">[];
|
|
17272
17272
|
tags_populated?: Pick<Tag.Data, "_id" | "tag" | "type">[];
|
|
17273
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
|
+
};
|
|
17274
17279
|
};
|
|
17275
|
-
type PopulatedKeys = "client" | "visit" | "route" | "teams" | "tags" | "presentation";
|
|
17280
|
+
type PopulatedKeys = "client" | "visit" | "route" | "teams" | "tags" | "presentation" | "slide";
|
|
17276
17281
|
export namespace Find {
|
|
17277
17282
|
type Params = DefaultPaginationQueryParams & {
|
|
17278
17283
|
populatedKeys?: PopulatedKeys | PopulatedKeys[];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -19590,6 +19590,11 @@ export namespace Service {
|
|
|
19590
19590
|
teams_populated?: Pick<Team.TeamSchema, "name" | "_id">[];
|
|
19591
19591
|
tags_populated?: Pick<Tag.Data, "_id" | "tag" | "type">[];
|
|
19592
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
|
+
};
|
|
19593
19598
|
};
|
|
19594
19599
|
|
|
19595
19600
|
type PopulatedKeys =
|
|
@@ -19598,7 +19603,8 @@ export namespace Service {
|
|
|
19598
19603
|
| "route"
|
|
19599
19604
|
| "teams"
|
|
19600
19605
|
| "tags"
|
|
19601
|
-
| "presentation"
|
|
19606
|
+
| "presentation"
|
|
19607
|
+
| "slide";
|
|
19602
19608
|
|
|
19603
19609
|
export namespace Find {
|
|
19604
19610
|
export type Params = DefaultPaginationQueryParams & {
|