repzo 1.0.277 → 1.0.279
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 +9 -1
- package/package.json +1 -1
- package/src/types/index.ts +15 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -8536,6 +8536,7 @@ export declare namespace Service {
|
|
|
8536
8536
|
variants: VariantTransfer[];
|
|
8537
8537
|
items_count?: number;
|
|
8538
8538
|
total_items_base_unit_qty?: number;
|
|
8539
|
+
total_measure_unit_qty?: number;
|
|
8539
8540
|
teams?: string[];
|
|
8540
8541
|
custom_status?: string;
|
|
8541
8542
|
sync_id: string;
|
|
@@ -8602,6 +8603,7 @@ export declare namespace Service {
|
|
|
8602
8603
|
})[];
|
|
8603
8604
|
items_count?: number;
|
|
8604
8605
|
total_items_base_unit_qty?: number;
|
|
8606
|
+
total_measure_unit_qty?: number;
|
|
8605
8607
|
teams?: string[];
|
|
8606
8608
|
custom_status?: string;
|
|
8607
8609
|
sync_id?: string;
|
|
@@ -15792,6 +15794,9 @@ export declare namespace Service {
|
|
|
15792
15794
|
multiply_factor?: number;
|
|
15793
15795
|
none_zero?: boolean;
|
|
15794
15796
|
is_timestamp?: boolean;
|
|
15797
|
+
unique?: boolean;
|
|
15798
|
+
ignore_disabled_in_unique?: boolean;
|
|
15799
|
+
allow_unique?: boolean;
|
|
15795
15800
|
}
|
|
15796
15801
|
export interface ReferenceValidation {
|
|
15797
15802
|
data_type?: "reference";
|
|
@@ -15812,6 +15817,9 @@ export declare namespace Service {
|
|
|
15812
15817
|
min?: number;
|
|
15813
15818
|
max?: number;
|
|
15814
15819
|
enum?: string[];
|
|
15820
|
+
unique?: boolean;
|
|
15821
|
+
ignore_disabled_in_unique?: boolean;
|
|
15822
|
+
allow_unique?: boolean;
|
|
15815
15823
|
}
|
|
15816
15824
|
interface BasicData {
|
|
15817
15825
|
creator: AdminCreator;
|
|
@@ -15901,7 +15909,7 @@ export declare namespace Service {
|
|
|
15901
15909
|
export {};
|
|
15902
15910
|
}
|
|
15903
15911
|
namespace NotificationsCenter {
|
|
15904
|
-
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" | "update-promotions";
|
|
15912
|
+
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" | "update-promotions" | "ai-chat-navigate" | "ai-chat-api-call" | "ai-chat-message-update" | "ai-chat-message-amend" | "update-delivery-note" | "update-item-status-type";
|
|
15905
15913
|
export interface Data {
|
|
15906
15914
|
_id: StringId;
|
|
15907
15915
|
command: Command;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -9200,6 +9200,7 @@ export namespace Service {
|
|
|
9200
9200
|
variants: VariantTransfer[];
|
|
9201
9201
|
items_count?: number;
|
|
9202
9202
|
total_items_base_unit_qty?: number;
|
|
9203
|
+
total_measure_unit_qty?: number;
|
|
9203
9204
|
teams?: string[];
|
|
9204
9205
|
custom_status?: string;
|
|
9205
9206
|
sync_id: string;
|
|
@@ -9266,6 +9267,7 @@ export namespace Service {
|
|
|
9266
9267
|
)[];
|
|
9267
9268
|
items_count?: number;
|
|
9268
9269
|
total_items_base_unit_qty?: number;
|
|
9270
|
+
total_measure_unit_qty?: number;
|
|
9269
9271
|
teams?: string[];
|
|
9270
9272
|
custom_status?: string;
|
|
9271
9273
|
sync_id?: string;
|
|
@@ -17745,6 +17747,9 @@ export namespace Service {
|
|
|
17745
17747
|
multiply_factor?: number;
|
|
17746
17748
|
none_zero?: boolean;
|
|
17747
17749
|
is_timestamp?: boolean;
|
|
17750
|
+
unique?: boolean;
|
|
17751
|
+
ignore_disabled_in_unique?: boolean;
|
|
17752
|
+
allow_unique?: boolean;
|
|
17748
17753
|
}
|
|
17749
17754
|
export interface ReferenceValidation {
|
|
17750
17755
|
data_type?: "reference";
|
|
@@ -17765,6 +17770,9 @@ export namespace Service {
|
|
|
17765
17770
|
min?: number;
|
|
17766
17771
|
max?: number;
|
|
17767
17772
|
enum?: string[];
|
|
17773
|
+
unique?: boolean;
|
|
17774
|
+
ignore_disabled_in_unique?: boolean;
|
|
17775
|
+
allow_unique?: boolean;
|
|
17768
17776
|
}
|
|
17769
17777
|
interface BasicData {
|
|
17770
17778
|
creator: AdminCreator;
|
|
@@ -17855,7 +17863,6 @@ export namespace Service {
|
|
|
17855
17863
|
export type Body = UpdateBody;
|
|
17856
17864
|
export type Result = Data;
|
|
17857
17865
|
}
|
|
17858
|
-
|
|
17859
17866
|
export namespace Remove {
|
|
17860
17867
|
export type ID = string;
|
|
17861
17868
|
export type Params = {};
|
|
@@ -17898,7 +17905,13 @@ export namespace Service {
|
|
|
17898
17905
|
| "update-clm-presentation"
|
|
17899
17906
|
| "update-clm-sequence"
|
|
17900
17907
|
| "update-clm-slide"
|
|
17901
|
-
| "update-promotions"
|
|
17908
|
+
| "update-promotions"
|
|
17909
|
+
| "ai-chat-navigate"
|
|
17910
|
+
| "ai-chat-api-call"
|
|
17911
|
+
| "ai-chat-message-update"
|
|
17912
|
+
| "ai-chat-message-amend"
|
|
17913
|
+
| "update-delivery-note"
|
|
17914
|
+
| "update-item-status-type";
|
|
17902
17915
|
|
|
17903
17916
|
export interface Data {
|
|
17904
17917
|
_id: StringId;
|