repzo 1.0.278 → 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 +7 -1
- package/package.json +1 -1
- package/src/types/index.ts +13 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -15794,6 +15794,9 @@ export declare namespace Service {
|
|
|
15794
15794
|
multiply_factor?: number;
|
|
15795
15795
|
none_zero?: boolean;
|
|
15796
15796
|
is_timestamp?: boolean;
|
|
15797
|
+
unique?: boolean;
|
|
15798
|
+
ignore_disabled_in_unique?: boolean;
|
|
15799
|
+
allow_unique?: boolean;
|
|
15797
15800
|
}
|
|
15798
15801
|
export interface ReferenceValidation {
|
|
15799
15802
|
data_type?: "reference";
|
|
@@ -15814,6 +15817,9 @@ export declare namespace Service {
|
|
|
15814
15817
|
min?: number;
|
|
15815
15818
|
max?: number;
|
|
15816
15819
|
enum?: string[];
|
|
15820
|
+
unique?: boolean;
|
|
15821
|
+
ignore_disabled_in_unique?: boolean;
|
|
15822
|
+
allow_unique?: boolean;
|
|
15817
15823
|
}
|
|
15818
15824
|
interface BasicData {
|
|
15819
15825
|
creator: AdminCreator;
|
|
@@ -15903,7 +15909,7 @@ export declare namespace Service {
|
|
|
15903
15909
|
export {};
|
|
15904
15910
|
}
|
|
15905
15911
|
namespace NotificationsCenter {
|
|
15906
|
-
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";
|
|
15907
15913
|
export interface Data {
|
|
15908
15914
|
_id: StringId;
|
|
15909
15915
|
command: Command;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -17747,6 +17747,9 @@ export namespace Service {
|
|
|
17747
17747
|
multiply_factor?: number;
|
|
17748
17748
|
none_zero?: boolean;
|
|
17749
17749
|
is_timestamp?: boolean;
|
|
17750
|
+
unique?: boolean;
|
|
17751
|
+
ignore_disabled_in_unique?: boolean;
|
|
17752
|
+
allow_unique?: boolean;
|
|
17750
17753
|
}
|
|
17751
17754
|
export interface ReferenceValidation {
|
|
17752
17755
|
data_type?: "reference";
|
|
@@ -17767,6 +17770,9 @@ export namespace Service {
|
|
|
17767
17770
|
min?: number;
|
|
17768
17771
|
max?: number;
|
|
17769
17772
|
enum?: string[];
|
|
17773
|
+
unique?: boolean;
|
|
17774
|
+
ignore_disabled_in_unique?: boolean;
|
|
17775
|
+
allow_unique?: boolean;
|
|
17770
17776
|
}
|
|
17771
17777
|
interface BasicData {
|
|
17772
17778
|
creator: AdminCreator;
|
|
@@ -17857,7 +17863,6 @@ export namespace Service {
|
|
|
17857
17863
|
export type Body = UpdateBody;
|
|
17858
17864
|
export type Result = Data;
|
|
17859
17865
|
}
|
|
17860
|
-
|
|
17861
17866
|
export namespace Remove {
|
|
17862
17867
|
export type ID = string;
|
|
17863
17868
|
export type Params = {};
|
|
@@ -17900,7 +17905,13 @@ export namespace Service {
|
|
|
17900
17905
|
| "update-clm-presentation"
|
|
17901
17906
|
| "update-clm-sequence"
|
|
17902
17907
|
| "update-clm-slide"
|
|
17903
|
-
| "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";
|
|
17904
17915
|
|
|
17905
17916
|
export interface Data {
|
|
17906
17917
|
_id: StringId;
|