yellowgrid-api-ts 3.2.177 → 3.2.178
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/api.ts +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/UserGroupEnum.d.ts +5 -0
- package/dist/models/UserGroupEnum.js +5 -0
- package/models/UserGroupEnum.ts +5 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -748,6 +748,7 @@ export const AdminUserModelPermissionsEnum = {
|
|
|
748
748
|
Privileged: 'Privileged',
|
|
749
749
|
Development: 'Development',
|
|
750
750
|
Finance: 'Finance',
|
|
751
|
+
Telesales: 'Telesales',
|
|
751
752
|
} as const;
|
|
752
753
|
|
|
753
754
|
export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
|
package/dist/api.d.ts
CHANGED
|
@@ -731,6 +731,7 @@ export declare const AdminUserModelPermissionsEnum: {
|
|
|
731
731
|
readonly Privileged: "Privileged";
|
|
732
732
|
readonly Development: "Development";
|
|
733
733
|
readonly Finance: "Finance";
|
|
734
|
+
readonly Telesales: "Telesales";
|
|
734
735
|
};
|
|
735
736
|
export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
|
|
736
737
|
/**
|
package/dist/api.js
CHANGED
|
@@ -29,5 +29,10 @@ export declare const UserGroupEnum: {
|
|
|
29
29
|
readonly value: "Finance";
|
|
30
30
|
readonly publicValue: "Finance";
|
|
31
31
|
};
|
|
32
|
+
readonly TELESALES: {
|
|
33
|
+
readonly name: "TELESALES";
|
|
34
|
+
readonly value: "Telesales";
|
|
35
|
+
readonly publicValue: "Telesales";
|
|
36
|
+
};
|
|
32
37
|
};
|
|
33
38
|
export type UserGroupEnum = typeof UserGroupEnum;
|
package/models/UserGroupEnum.ts
CHANGED