repzo 1.0.213 → 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 +3 -2
- package/package.json +1 -1
- package/src/types/index.ts +5 -4
package/lib/types/index.d.ts
CHANGED
|
@@ -15977,7 +15977,7 @@ export declare namespace Service {
|
|
|
15977
15977
|
export {};
|
|
15978
15978
|
}
|
|
15979
15979
|
namespace NotificationsCenter {
|
|
15980
|
-
export type Command = "update-categories" | "update-clients" | "bulk-update-clients" | "update-inventory" | "update-measureunitFamilies" | "update-measureunits" | "update-pricelistItems" | "update-pricelists" | "update-products" | "update-rep" | "update-salesmsl" | "update-settings" | "update-tags" | "update-taxes" | "update-transfer" | "update-warehouses" | "update-jobCategories" | "update-plans" | "update-workorders" | "update-commentsThread" | "update-approval-request" | "update-variant-batch" | "update-asset-part-type" | "update-asset-part" | "update-asset-part-unit" | "update-custom-status" | "update-module-custom-validator" | "update-feedback-options" | "update-customfields" | "update-speciality" | "update-presentation" | "update-sequence" | "update-slide";
|
|
15980
|
+
export type Command = "update-categories" | "update-clients" | "bulk-update-clients" | "update-inventory" | "update-measureunitFamilies" | "update-measureunits" | "update-pricelistItems" | "update-pricelists" | "update-products" | "update-rep" | "update-salesmsl" | "update-settings" | "update-tags" | "update-taxes" | "update-transfer" | "update-warehouses" | "update-jobCategories" | "update-plans" | "update-workorders" | "update-commentsThread" | "update-approval-request" | "update-variant-batch" | "update-asset-part-type" | "update-asset-part" | "update-asset-part-unit" | "update-custom-status" | "update-module-custom-validator" | "update-feedback-options" | "update-customfields" | "update-speciality" | "update-clm-presentation" | "update-clm-sequence" | "update-clm-slide";
|
|
15981
15981
|
export interface Data {
|
|
15982
15982
|
_id: StringId;
|
|
15983
15983
|
command: Command;
|
|
@@ -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
|
@@ -18193,9 +18193,9 @@ export namespace Service {
|
|
|
18193
18193
|
| "update-feedback-options"
|
|
18194
18194
|
| "update-customfields"
|
|
18195
18195
|
| "update-speciality"
|
|
18196
|
-
| "update-presentation"
|
|
18197
|
-
| "update-sequence"
|
|
18198
|
-
| "update-slide";
|
|
18196
|
+
| "update-clm-presentation"
|
|
18197
|
+
| "update-clm-sequence"
|
|
18198
|
+
| "update-clm-slide";
|
|
18199
18199
|
|
|
18200
18200
|
export interface Data {
|
|
18201
18201
|
_id: StringId;
|
|
@@ -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 {
|