@saritasa/crm-delmar-core-sdk 0.0.17 → 0.0.18
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/README.md +2 -2
- package/api/permission-data-api.service.d.ts +6 -6
- package/api/permission-data-api.serviceInterface.d.ts +1 -1
- package/esm2022/api/permission-data-api.service.mjs +2 -2
- package/esm2022/api/permission-data-api.serviceInterface.mjs +1 -1
- package/esm2022/model/models.mjs +3 -2
- package/esm2022/model/name-enum.dto.mjs +23 -0
- package/esm2022/model/permission-data-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/permission-data-request.dto.mjs +1 -1
- package/esm2022/model/permission-data.dto.mjs +1 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +25 -2
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +2 -1
- package/model/name-enum.dto.d.ts +21 -0
- package/model/{permission-data-retrieve-error-response400.dto.d.ts → permission-data-list-error-response400.dto.d.ts} +2 -2
- package/model/permission-data-request.dto.d.ts +2 -1
- package/model/permission-data.dto.d.ts +2 -1
- package/package.json +1 -1
- package/esm2022/model/permission-data-retrieve-error-response400.dto.mjs +0 -2
package/model/models.d.ts
CHANGED
|
@@ -196,6 +196,7 @@ export * from "./locations-update-non-field-errors-error-component.dto";
|
|
|
196
196
|
export * from "./locations-update-timezone-error-component.dto";
|
|
197
197
|
export * from "./locations-update-validation-error.dto";
|
|
198
198
|
export * from "./login-open-id-request.dto";
|
|
199
|
+
export * from "./name-enum.dto";
|
|
199
200
|
export * from "./open-id-code-exchange-request.dto";
|
|
200
201
|
export * from "./open-id-redirect.dto";
|
|
201
202
|
export * from "./ordering-enum.dto";
|
|
@@ -224,8 +225,8 @@ export * from "./period-model-enum.dto";
|
|
|
224
225
|
export * from "./period-type-enum.dto";
|
|
225
226
|
export * from "./period-user.dto";
|
|
226
227
|
export * from "./permission-data.dto";
|
|
228
|
+
export * from "./permission-data-list-error-response400.dto";
|
|
227
229
|
export * from "./permission-data-request.dto";
|
|
228
|
-
export * from "./permission-data-retrieve-error-response400.dto";
|
|
229
230
|
export * from "./permission-enum.dto";
|
|
230
231
|
export * from "./profile.dto";
|
|
231
232
|
export * from "./profile-request.dto";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* * `manage_branch_periods` - manage_branch_periods * `vacation_request` - vacation_request * `create_update_pto_user_periods` - create_update_pto_user_periods * `delete_pto_user_periods` - delete_pto_user_periods * `approve_reject_vacations` - approve_reject_vacations * `delete_vacations` - delete_vacations * `manage_users` - manage_users
|
|
12
|
+
*/
|
|
13
|
+
export declare enum NameEnumDto {
|
|
14
|
+
ManageBranchPeriods = "manage_branch_periods",
|
|
15
|
+
VacationRequest = "vacation_request",
|
|
16
|
+
CreateUpdatePtoUserPeriods = "create_update_pto_user_periods",
|
|
17
|
+
DeletePtoUserPeriods = "delete_pto_user_periods",
|
|
18
|
+
ApproveRejectVacations = "approve_reject_vacations",
|
|
19
|
+
DeleteVacations = "delete_vacations",
|
|
20
|
+
ManageUsers = "manage_users"
|
|
21
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { ParseErrorResponseDto } from "./parse-error-response.dto";
|
|
11
11
|
/**
|
|
12
|
-
* @type
|
|
12
|
+
* @type PermissionDataListErrorResponse400Dto
|
|
13
13
|
* @export
|
|
14
14
|
*/
|
|
15
|
-
export type
|
|
15
|
+
export type PermissionDataListErrorResponse400Dto = ParseErrorResponseDto;
|
|
@@ -7,12 +7,13 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { NameEnumDto } from "./name-enum.dto";
|
|
10
11
|
import { GroupEnumDto } from "./group-enum.dto";
|
|
11
12
|
/**
|
|
12
13
|
* Serializer for PermissionData.
|
|
13
14
|
*/
|
|
14
15
|
export interface PermissionDataRequestDto {
|
|
15
|
-
name:
|
|
16
|
+
name: NameEnumDto;
|
|
16
17
|
description: string;
|
|
17
18
|
group: GroupEnumDto;
|
|
18
19
|
}
|
|
@@ -7,12 +7,13 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
+
import { NameEnumDto } from "./name-enum.dto";
|
|
10
11
|
import { GroupEnumDto } from "./group-enum.dto";
|
|
11
12
|
/**
|
|
12
13
|
* Serializer for PermissionData.
|
|
13
14
|
*/
|
|
14
15
|
export interface PermissionDataDto {
|
|
15
|
-
name:
|
|
16
|
+
name: NameEnumDto;
|
|
16
17
|
description: string;
|
|
17
18
|
group: GroupEnumDto;
|
|
18
19
|
}
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVybWlzc2lvbi1kYXRhLXJldHJpZXZlLWVycm9yLXJlc3BvbnNlNDAwLmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3Blcm1pc3Npb24tZGF0YS1yZXRyaWV2ZS1lcnJvci1yZXNwb25zZTQwMC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRGVsbWFyIEFwaVxuICpcbiAqXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cbiAqIGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBQYXJzZUVycm9yUmVzcG9uc2VEdG8gfSBmcm9tIFwiLi9wYXJzZS1lcnJvci1yZXNwb25zZS5kdG9cIjtcbmltcG9ydCB7IFBhcnNlRXJyb3JEdG8gfSBmcm9tIFwiLi9wYXJzZS1lcnJvci5kdG9cIjtcbmltcG9ydCB7IENsaWVudEVycm9yRW51bUR0byB9IGZyb20gXCIuL2NsaWVudC1lcnJvci1lbnVtLmR0b1wiO1xuXG4vKipcbiAqIEB0eXBlIFBlcm1pc3Npb25EYXRhUmV0cmlldmVFcnJvclJlc3BvbnNlNDAwRHRvXG4gKiBAZXhwb3J0XG4gKi9cbmV4cG9ydCB0eXBlIFBlcm1pc3Npb25EYXRhUmV0cmlldmVFcnJvclJlc3BvbnNlNDAwRHRvID0gUGFyc2VFcnJvclJlc3BvbnNlRHRvO1xuIl19
|