@saritasa/crm-delmar-core-sdk 0.0.15 → 0.0.16

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/model/models.d.ts CHANGED
@@ -267,6 +267,8 @@ export * from "./roles-create-validation-error.dto";
267
267
  export * from "./roles-destroy-error-response400.dto";
268
268
  export * from "./roles-list-error.dto";
269
269
  export * from "./roles-list-error-response400.dto";
270
+ export * from "./roles-list-id-error-component.dto";
271
+ export * from "./roles-list-id-in-error-component.dto";
270
272
  export * from "./roles-list-permissions-permission-error-component.dto";
271
273
  export * from "./roles-list-permissions-permission-in-error-component.dto";
272
274
  export * from "./roles-list-permissions-scope-error-component.dto";
@@ -402,6 +404,8 @@ export * from "./user-logins-list-department-error-component.dto";
402
404
  export * from "./user-logins-list-department-in-error-component.dto";
403
405
  export * from "./user-logins-list-error.dto";
404
406
  export * from "./user-logins-list-error-response400.dto";
407
+ export * from "./user-logins-list-id-error-component.dto";
408
+ export * from "./user-logins-list-id-in-error-component.dto";
405
409
  export * from "./user-logins-list-role-error-component.dto";
406
410
  export * from "./user-logins-list-role-in-error-component.dto";
407
411
  export * from "./user-logins-list-validation-error.dto";
@@ -9,10 +9,12 @@
9
9
  */
10
10
  import { RolesListPermissionsPermissionInErrorComponentDto } from "./roles-list-permissions-permission-in-error-component.dto";
11
11
  import { RolesListPermissionsScopeErrorComponentDto } from "./roles-list-permissions-scope-error-component.dto";
12
+ import { RolesListIdErrorComponentDto } from "./roles-list-id-error-component.dto";
13
+ import { RolesListIdInErrorComponentDto } from "./roles-list-id-in-error-component.dto";
12
14
  import { RolesListPermissionsScopeInErrorComponentDto } from "./roles-list-permissions-scope-in-error-component.dto";
13
15
  import { RolesListPermissionsPermissionErrorComponentDto } from "./roles-list-permissions-permission-error-component.dto";
14
16
  /**
15
17
  * @type RolesListErrorDto
16
18
  * @export
17
19
  */
18
- export type RolesListErrorDto = RolesListPermissionsPermissionErrorComponentDto | RolesListPermissionsPermissionInErrorComponentDto | RolesListPermissionsScopeErrorComponentDto | RolesListPermissionsScopeInErrorComponentDto;
20
+ export type RolesListErrorDto = RolesListIdErrorComponentDto | RolesListIdInErrorComponentDto | RolesListPermissionsPermissionErrorComponentDto | RolesListPermissionsPermissionInErrorComponentDto | RolesListPermissionsScopeErrorComponentDto | RolesListPermissionsScopeInErrorComponentDto;
@@ -0,0 +1,27 @@
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
+ export interface RolesListIdErrorComponentDto {
11
+ /**
12
+ * * `id` - id
13
+ */
14
+ attr: RolesListIdErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: RolesListIdErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum RolesListIdErrorComponentDtoAttrEnum {
22
+ Id = "id"
23
+ }
24
+ export declare enum RolesListIdErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
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
+ export interface RolesListIdInErrorComponentDto {
11
+ /**
12
+ * * `id__in` - id__in
13
+ */
14
+ attr: RolesListIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: RolesListIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum RolesListIdInErrorComponentDtoAttrEnum {
22
+ IdIn = "id__in"
23
+ }
24
+ export declare enum RolesListIdInErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -12,11 +12,13 @@ import { UserLoginsListWorkTypeErrorComponentDto } from "./user-logins-list-work
12
12
  import { UserLoginsListDepartmentErrorComponentDto } from "./user-logins-list-department-error-component.dto";
13
13
  import { UserLoginsListWorkTypeInErrorComponentDto } from "./user-logins-list-work-type-in-error-component.dto";
14
14
  import { UserLoginsListBranchInErrorComponentDto } from "./user-logins-list-branch-in-error-component.dto";
15
+ import { UserLoginsListIdErrorComponentDto } from "./user-logins-list-id-error-component.dto";
15
16
  import { UserLoginsListBranchErrorComponentDto } from "./user-logins-list-branch-error-component.dto";
17
+ import { UserLoginsListIdInErrorComponentDto } from "./user-logins-list-id-in-error-component.dto";
16
18
  import { UserLoginsListRoleInErrorComponentDto } from "./user-logins-list-role-in-error-component.dto";
17
19
  import { UserLoginsListRoleErrorComponentDto } from "./user-logins-list-role-error-component.dto";
18
20
  /**
19
21
  * @type UserLoginsListErrorDto
20
22
  * @export
21
23
  */
22
- export type UserLoginsListErrorDto = UserLoginsListBranchErrorComponentDto | UserLoginsListBranchInErrorComponentDto | UserLoginsListDepartmentErrorComponentDto | UserLoginsListDepartmentInErrorComponentDto | UserLoginsListRoleErrorComponentDto | UserLoginsListRoleInErrorComponentDto | UserLoginsListWorkTypeErrorComponentDto | UserLoginsListWorkTypeInErrorComponentDto;
24
+ export type UserLoginsListErrorDto = UserLoginsListBranchErrorComponentDto | UserLoginsListBranchInErrorComponentDto | UserLoginsListDepartmentErrorComponentDto | UserLoginsListDepartmentInErrorComponentDto | UserLoginsListIdErrorComponentDto | UserLoginsListIdInErrorComponentDto | UserLoginsListRoleErrorComponentDto | UserLoginsListRoleInErrorComponentDto | UserLoginsListWorkTypeErrorComponentDto | UserLoginsListWorkTypeInErrorComponentDto;
@@ -0,0 +1,27 @@
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
+ export interface UserLoginsListIdErrorComponentDto {
11
+ /**
12
+ * * `id` - id
13
+ */
14
+ attr: UserLoginsListIdErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: UserLoginsListIdErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum UserLoginsListIdErrorComponentDtoAttrEnum {
22
+ Id = "id"
23
+ }
24
+ export declare enum UserLoginsListIdErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
@@ -0,0 +1,27 @@
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
+ export interface UserLoginsListIdInErrorComponentDto {
11
+ /**
12
+ * * `id__in` - id__in
13
+ */
14
+ attr: UserLoginsListIdInErrorComponentDtoAttrEnum;
15
+ /**
16
+ * * `invalid` - invalid * `max_value` - max_value
17
+ */
18
+ code: UserLoginsListIdInErrorComponentDtoCodeEnum;
19
+ detail: string;
20
+ }
21
+ export declare enum UserLoginsListIdInErrorComponentDtoAttrEnum {
22
+ IdIn = "id__in"
23
+ }
24
+ export declare enum UserLoginsListIdInErrorComponentDtoCodeEnum {
25
+ Invalid = "invalid",
26
+ MaxValue = "max_value"
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saritasa/crm-delmar-core-sdk",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.0.32)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {