repzo 1.0.38 → 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 +2 -2
- package/package.json +1 -1
- package/src/types/index.ts +2 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -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
|
@@ -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;
|