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