repzo 1.0.171 → 1.0.173
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 +4 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -2803,6 +2803,7 @@ export declare namespace Service {
|
|
|
2803
2803
|
updatedAt: string;
|
|
2804
2804
|
__v: number;
|
|
2805
2805
|
}
|
|
2806
|
+
export type Data = TagSchema;
|
|
2806
2807
|
export interface TagBody {
|
|
2807
2808
|
tag?: string;
|
|
2808
2809
|
type?: TagType;
|
|
@@ -15824,7 +15825,7 @@ export declare namespace Service {
|
|
|
15824
15825
|
export {};
|
|
15825
15826
|
}
|
|
15826
15827
|
namespace NotificationsCenter {
|
|
15827
|
-
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";
|
|
15828
|
+
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";
|
|
15828
15829
|
export interface Data {
|
|
15829
15830
|
_id: StringId;
|
|
15830
15831
|
command: Command;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -3225,6 +3225,7 @@ export namespace Service {
|
|
|
3225
3225
|
updatedAt: string;
|
|
3226
3226
|
__v: number;
|
|
3227
3227
|
}
|
|
3228
|
+
export type Data = TagSchema;
|
|
3228
3229
|
export interface TagBody {
|
|
3229
3230
|
tag?: string;
|
|
3230
3231
|
type?: TagType;
|
|
@@ -17881,7 +17882,9 @@ export namespace Service {
|
|
|
17881
17882
|
| "update-asset-part"
|
|
17882
17883
|
| "update-asset-part-unit"
|
|
17883
17884
|
| "update-custom-status"
|
|
17884
|
-
| "update-module-custom-validator"
|
|
17885
|
+
| "update-module-custom-validator"
|
|
17886
|
+
| "update-feedback-options"
|
|
17887
|
+
| "update-customfields";
|
|
17885
17888
|
export interface Data {
|
|
17886
17889
|
_id: StringId;
|
|
17887
17890
|
command: Command;
|