repzo 1.0.214 → 1.0.215
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 +2 -1
- package/package.json +1 -1
- package/src/types/index.ts +2 -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 & {
|
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 {
|