yellowgrid-api-ts 3.2.156 → 3.2.157
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
|
@@ -743,6 +743,7 @@ export const AdminUserModelPermissionsEnum = {
|
|
|
743
743
|
Technical: 'Technical',
|
|
744
744
|
Privileged: 'Privileged',
|
|
745
745
|
Development: 'Development',
|
|
746
|
+
Finance: 'Finance',
|
|
746
747
|
} as const;
|
|
747
748
|
|
|
748
749
|
export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
|
package/dist/api.d.ts
CHANGED
|
@@ -726,6 +726,7 @@ export declare const AdminUserModelPermissionsEnum: {
|
|
|
726
726
|
readonly Technical: "Technical";
|
|
727
727
|
readonly Privileged: "Privileged";
|
|
728
728
|
readonly Development: "Development";
|
|
729
|
+
readonly Finance: "Finance";
|
|
729
730
|
};
|
|
730
731
|
export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
|
|
731
732
|
/**
|
package/dist/api.js
CHANGED
|
@@ -24,5 +24,10 @@ export declare const UserGroupEnum: {
|
|
|
24
24
|
readonly value: "Development";
|
|
25
25
|
readonly publicValue: "Development";
|
|
26
26
|
};
|
|
27
|
+
readonly FINANCE: {
|
|
28
|
+
readonly name: "FINANCE";
|
|
29
|
+
readonly value: "Finance";
|
|
30
|
+
readonly publicValue: "Finance";
|
|
31
|
+
};
|
|
27
32
|
};
|
|
28
33
|
export type UserGroupEnum = typeof UserGroupEnum;
|
package/models/UserGroupEnum.ts
CHANGED