repzo 1.0.39 → 1.0.40
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 -3
- package/package.json +1 -1
- package/src/types/index.ts +3 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -447,7 +447,7 @@ export declare namespace Service {
|
|
|
447
447
|
channel?: string;
|
|
448
448
|
isChain?: boolean;
|
|
449
449
|
chain?: string;
|
|
450
|
-
teams?: string[]
|
|
450
|
+
teams?: string[];
|
|
451
451
|
payment_type: "cash" | "credit";
|
|
452
452
|
integration_meta?: {
|
|
453
453
|
[key: string]: any;
|
|
@@ -543,8 +543,8 @@ export declare namespace Service {
|
|
|
543
543
|
| string
|
|
544
544
|
| Pick<ProductGroup.ProductGroupSchema, "_id" | "name">[];
|
|
545
545
|
teams?: string[] | Pick<Team.TeamSchema, "_id" | "name">[];
|
|
546
|
-
contacts?: string[] | ClientContact.ClientContactSchema;
|
|
547
|
-
speciality?: string[] | Speciality.SpecialitySchema;
|
|
546
|
+
contacts?: string[] | ClientContact.ClientContactSchema[];
|
|
547
|
+
speciality?: string[] | Speciality.SpecialitySchema[];
|
|
548
548
|
assigned_to?: string[] | Pick<Rep.RepSchema, "_id" | "name">[];
|
|
549
549
|
tags?: string[] | Tag.TagSchema[];
|
|
550
550
|
price_tag?: string | Tag.TagSchema;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -449,7 +449,7 @@ export namespace Service {
|
|
|
449
449
|
channel?: string;
|
|
450
450
|
isChain?: boolean;
|
|
451
451
|
chain?: string;
|
|
452
|
-
teams?: string[]
|
|
452
|
+
teams?: string[];
|
|
453
453
|
payment_type: "cash" | "credit";
|
|
454
454
|
integration_meta?: { [key: string]: any };
|
|
455
455
|
integrated_client_balance?: number;
|
|
@@ -540,8 +540,8 @@ export namespace Service {
|
|
|
540
540
|
| string
|
|
541
541
|
| Pick<ProductGroup.ProductGroupSchema, "_id" | "name">[];
|
|
542
542
|
teams?: string[] | Pick<Team.TeamSchema, "_id" | "name">[];
|
|
543
|
-
contacts?: string[] | ClientContact.ClientContactSchema;
|
|
544
|
-
speciality?: string[] | Speciality.SpecialitySchema;
|
|
543
|
+
contacts?: string[] | ClientContact.ClientContactSchema[];
|
|
544
|
+
speciality?: string[] | Speciality.SpecialitySchema[];
|
|
545
545
|
assigned_to?: string[] | Pick<Rep.RepSchema, "_id" | "name">[];
|
|
546
546
|
tags?: string[] | Tag.TagSchema[];
|
|
547
547
|
price_tag?: string | Tag.TagSchema;
|