@emilgroup/auth-sdk-node 1.4.0 → 1.9.1-beta.2

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.
Files changed (68) hide show
  1. package/.openapi-generator/FILES +2 -2
  2. package/README.md +2 -2
  3. package/api/authservice-api.ts +29 -29
  4. package/api/default-api.ts +8 -4
  5. package/dist/api/authservice-api.d.ts +613 -0
  6. package/dist/api/authservice-api.js +1069 -0
  7. package/dist/api/default-api.d.ts +70 -0
  8. package/dist/api/default-api.js +204 -0
  9. package/dist/api.d.ts +13 -0
  10. package/dist/api.js +31 -0
  11. package/dist/base.d.ts +78 -0
  12. package/dist/base.js +394 -0
  13. package/dist/common.d.ts +92 -0
  14. package/dist/common.js +277 -0
  15. package/dist/configuration.d.ts +90 -0
  16. package/dist/configuration.js +44 -0
  17. package/dist/index.d.ts +15 -0
  18. package/dist/index.js +36 -0
  19. package/dist/models/create-org-and-user-request-dto.d.ts +84 -0
  20. package/dist/models/create-org-and-user-request-dto.js +15 -0
  21. package/dist/models/create-org-and-user-response-class.d.ts +32 -0
  22. package/dist/models/create-org-and-user-response-class.js +15 -0
  23. package/dist/models/create-user-request-dto.d.ts +54 -0
  24. package/dist/models/create-user-request-dto.js +15 -0
  25. package/dist/models/create-user-response-class.d.ts +25 -0
  26. package/dist/models/create-user-response-class.js +15 -0
  27. package/dist/models/custom-schema-class.d.ts +66 -0
  28. package/dist/models/custom-schema-class.js +15 -0
  29. package/dist/models/forgot-password-request-dto.d.ts +24 -0
  30. package/dist/models/forgot-password-request-dto.js +15 -0
  31. package/dist/models/get-saml-login-link-request-dto.d.ts +24 -0
  32. package/dist/models/get-saml-login-link-request-dto.js +15 -0
  33. package/dist/models/index.d.ts +21 -0
  34. package/dist/models/index.js +37 -0
  35. package/dist/models/inline-response200.d.ts +54 -0
  36. package/dist/models/inline-response200.js +15 -0
  37. package/dist/models/inline-response503.d.ts +54 -0
  38. package/dist/models/inline-response503.js +15 -0
  39. package/dist/models/login-by-saml-request-dto.d.ts +30 -0
  40. package/dist/models/login-by-saml-request-dto.js +15 -0
  41. package/dist/models/login-class.d.ts +30 -0
  42. package/dist/models/login-class.js +15 -0
  43. package/dist/models/login-request-dto.d.ts +30 -0
  44. package/dist/models/login-request-dto.js +15 -0
  45. package/dist/models/logout-request-dto.d.ts +24 -0
  46. package/dist/models/logout-request-dto.js +15 -0
  47. package/dist/models/org-invitation-class.d.ts +109 -0
  48. package/dist/models/org-invitation-class.js +15 -0
  49. package/dist/models/organization-class.d.ts +114 -0
  50. package/dist/models/organization-class.js +15 -0
  51. package/dist/models/refresh-token-dto.d.ts +24 -0
  52. package/dist/models/refresh-token-dto.js +15 -0
  53. package/dist/models/reset-password-request-dto.d.ts +36 -0
  54. package/dist/models/reset-password-request-dto.js +15 -0
  55. package/dist/models/role-class.d.ts +54 -0
  56. package/dist/models/role-class.js +15 -0
  57. package/dist/models/user-class.d.ts +85 -0
  58. package/dist/models/user-class.js +15 -0
  59. package/dist/models/verify-org-invitation-request-dto.d.ts +24 -0
  60. package/dist/models/verify-org-invitation-request-dto.js +15 -0
  61. package/dist/models/verify-org-invitation-response-class.d.ts +32 -0
  62. package/dist/models/verify-org-invitation-response-class.js +15 -0
  63. package/models/{get-samllogin-link-request-dto.ts → get-saml-login-link-request-dto.ts} +3 -3
  64. package/models/index.ts +2 -2
  65. package/models/inline-response200.ts +6 -6
  66. package/models/inline-response503.ts +6 -6
  67. package/models/{login-by-samlrequest-dto.ts → login-by-saml-request-dto.ts} +4 -4
  68. package/package.json +1 -1
@@ -0,0 +1,109 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { RoleClass } from './role-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface OrgInvitationClass
17
+ */
18
+ export interface OrgInvitationClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof OrgInvitationClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Organization user\'s email address.
27
+ * @type {string}
28
+ * @memberof OrgInvitationClass
29
+ */
30
+ 'email': string;
31
+ /**
32
+ * Permissions associated with the invite.
33
+ * @type {Array<RoleClass>}
34
+ * @memberof OrgInvitationClass
35
+ */
36
+ 'roles'?: Array<RoleClass>;
37
+ /**
38
+ * Name of the invited organization.
39
+ * @type {string}
40
+ * @memberof OrgInvitationClass
41
+ */
42
+ 'name': string;
43
+ /**
44
+ * Identifier for the organization.
45
+ * @type {string}
46
+ * @memberof OrgInvitationClass
47
+ */
48
+ 'slug': string;
49
+ /**
50
+ * Inviting organization.
51
+ * @type {number}
52
+ * @memberof OrgInvitationClass
53
+ */
54
+ 'parentOrganizationId'?: number;
55
+ /**
56
+ * Organization\'s street name.
57
+ * @type {string}
58
+ * @memberof OrgInvitationClass
59
+ */
60
+ 'street': string;
61
+ /**
62
+ * Organization\'s house number.
63
+ * @type {string}
64
+ * @memberof OrgInvitationClass
65
+ */
66
+ 'houseNumber': string;
67
+ /**
68
+ * Zip code of the organization.
69
+ * @type {string}
70
+ * @memberof OrgInvitationClass
71
+ */
72
+ 'zipCode': string;
73
+ /**
74
+ * City of the organization.
75
+ * @type {string}
76
+ * @memberof OrgInvitationClass
77
+ */
78
+ 'city': string;
79
+ /**
80
+ * Country of the organization.
81
+ * @type {string}
82
+ * @memberof OrgInvitationClass
83
+ */
84
+ 'country': string;
85
+ /**
86
+ * Custom fields of the organization.
87
+ * @type {object}
88
+ * @memberof OrgInvitationClass
89
+ */
90
+ 'customFields'?: object;
91
+ /**
92
+ * Expiry date of invitation email.
93
+ * @type {string}
94
+ * @memberof OrgInvitationClass
95
+ */
96
+ 'expiresAt': string;
97
+ /**
98
+ * Time at which the object was created.
99
+ * @type {string}
100
+ * @memberof OrgInvitationClass
101
+ */
102
+ 'createdAt': string;
103
+ /**
104
+ * Time at which the object was updated.
105
+ * @type {string}
106
+ * @memberof OrgInvitationClass
107
+ */
108
+ 'updatedAt': string;
109
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,114 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface OrganizationClass
16
+ */
17
+ export interface OrganizationClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof OrganizationClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof OrganizationClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof OrganizationClass
34
+ */
35
+ 'parentId'?: number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof OrganizationClass
40
+ */
41
+ 'email': string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof OrganizationClass
46
+ */
47
+ 'ern'?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof OrganizationClass
52
+ */
53
+ 'name': string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof OrganizationClass
58
+ */
59
+ 'type': string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof OrganizationClass
64
+ */
65
+ 'street': string;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof OrganizationClass
70
+ */
71
+ 'houseNumber': string;
72
+ /**
73
+ *
74
+ * @type {string}
75
+ * @memberof OrganizationClass
76
+ */
77
+ 'zipCode': string;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof OrganizationClass
82
+ */
83
+ 'city': string;
84
+ /**
85
+ *
86
+ * @type {string}
87
+ * @memberof OrganizationClass
88
+ */
89
+ 'country': string;
90
+ /**
91
+ *
92
+ * @type {object}
93
+ * @memberof OrganizationClass
94
+ */
95
+ 'customFields'?: object;
96
+ /**
97
+ * Time at which the object was created.
98
+ * @type {string}
99
+ * @memberof OrganizationClass
100
+ */
101
+ 'createdAt': string;
102
+ /**
103
+ * Time at which the object was updated.
104
+ * @type {string}
105
+ * @memberof OrganizationClass
106
+ */
107
+ 'updatedAt': string;
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof OrganizationClass
112
+ */
113
+ 'deletedAt'?: string | null;
114
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RefreshTokenDto
16
+ */
17
+ export interface RefreshTokenDto {
18
+ /**
19
+ * Tenant user\'s username. Usually an email.
20
+ * @type {string}
21
+ * @memberof RefreshTokenDto
22
+ */
23
+ 'username': string;
24
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ResetPasswordRequestDto
16
+ */
17
+ export interface ResetPasswordRequestDto {
18
+ /**
19
+ * Tenant user\'s email address
20
+ * @type {string}
21
+ * @memberof ResetPasswordRequestDto
22
+ */
23
+ 'email': string;
24
+ /**
25
+ * Tenant user\'s reset token. Reset token can be found in the email sent after \'forgot-password\' endpoint was called.
26
+ * @type {string}
27
+ * @memberof ResetPasswordRequestDto
28
+ */
29
+ 'resetToken': string;
30
+ /**
31
+ * Tenant user\'s new password
32
+ * @type {string}
33
+ * @memberof ResetPasswordRequestDto
34
+ */
35
+ 'password': string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,54 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RoleClass
16
+ */
17
+ export interface RoleClass {
18
+ /**
19
+ * unique role code
20
+ * @type {string}
21
+ * @memberof RoleClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * role id
26
+ * @type {number}
27
+ * @memberof RoleClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * short description of the role
32
+ * @type {string}
33
+ * @memberof RoleClass
34
+ */
35
+ 'description': string;
36
+ /**
37
+ * role label
38
+ * @type {string}
39
+ * @memberof RoleClass
40
+ */
41
+ 'label': string;
42
+ /**
43
+ * Date created
44
+ * @type {string}
45
+ * @memberof RoleClass
46
+ */
47
+ 'createdAt': string;
48
+ /**
49
+ * Date updated
50
+ * @type {string}
51
+ * @memberof RoleClass
52
+ */
53
+ 'updatedAt': string;
54
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,85 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { RoleClass } from './role-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UserClass
17
+ */
18
+ export interface UserClass {
19
+ /**
20
+ * user id
21
+ * @type {number}
22
+ * @memberof UserClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * unique user code
27
+ * @type {string}
28
+ * @memberof UserClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * email address of the user
33
+ * @type {string}
34
+ * @memberof UserClass
35
+ */
36
+ 'email': string;
37
+ /**
38
+ * first name of the user
39
+ * @type {string}
40
+ * @memberof UserClass
41
+ */
42
+ 'firstName': string;
43
+ /**
44
+ * first name of the user
45
+ * @type {string}
46
+ * @memberof UserClass
47
+ */
48
+ 'lastName': string;
49
+ /**
50
+ * status of the of the user
51
+ * @type {string}
52
+ * @memberof UserClass
53
+ */
54
+ 'status': string;
55
+ /**
56
+ * cognito sub of the user
57
+ * @type {string}
58
+ * @memberof UserClass
59
+ */
60
+ 'sub': string;
61
+ /**
62
+ * tenant id
63
+ * @type {number}
64
+ * @memberof UserClass
65
+ */
66
+ 'tenantId': number;
67
+ /**
68
+ * permissions associated with the user
69
+ * @type {Array<RoleClass>}
70
+ * @memberof UserClass
71
+ */
72
+ 'roles': Array<RoleClass>;
73
+ /**
74
+ * Date created
75
+ * @type {string}
76
+ * @memberof UserClass
77
+ */
78
+ 'createdAt': string;
79
+ /**
80
+ * Date updated
81
+ * @type {string}
82
+ * @memberof UserClass
83
+ */
84
+ 'updatedAt': string;
85
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VerifyOrgInvitationRequestDto
16
+ */
17
+ export interface VerifyOrgInvitationRequestDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof VerifyOrgInvitationRequestDto
22
+ */
23
+ 'invitationToken': string;
24
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,32 @@
1
+ /**
2
+ * EMIL AuthService
3
+ * The EMIL AuthService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { CustomSchemaClass } from './custom-schema-class';
13
+ import { OrgInvitationClass } from './org-invitation-class';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface VerifyOrgInvitationResponseClass
18
+ */
19
+ export interface VerifyOrgInvitationResponseClass {
20
+ /**
21
+ * Invitation object identified by the token.
22
+ * @type {OrgInvitationClass}
23
+ * @memberof VerifyOrgInvitationResponseClass
24
+ */
25
+ 'invitation': OrgInvitationClass;
26
+ /**
27
+ * Custom schema associated for the invitation process
28
+ * @type {CustomSchemaClass}
29
+ * @memberof VerifyOrgInvitationResponseClass
30
+ */
31
+ 'customSchema': CustomSchemaClass;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AuthService
6
+ * The EMIL AuthService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -17,13 +17,13 @@
17
17
  /**
18
18
  *
19
19
  * @export
20
- * @interface GetSAMLLoginLinkRequestDto
20
+ * @interface GetSamlLoginLinkRequestDto
21
21
  */
22
- export interface GetSAMLLoginLinkRequestDto {
22
+ export interface GetSamlLoginLinkRequestDto {
23
23
  /**
24
24
  *
25
25
  * @type {string}
26
- * @memberof GetSAMLLoginLinkRequestDto
26
+ * @memberof GetSamlLoginLinkRequestDto
27
27
  */
28
28
  'tenantSlug': string;
29
29
  }
package/models/index.ts CHANGED
@@ -4,10 +4,10 @@ export * from './create-user-request-dto';
4
4
  export * from './create-user-response-class';
5
5
  export * from './custom-schema-class';
6
6
  export * from './forgot-password-request-dto';
7
- export * from './get-samllogin-link-request-dto';
7
+ export * from './get-saml-login-link-request-dto';
8
8
  export * from './inline-response200';
9
9
  export * from './inline-response503';
10
- export * from './login-by-samlrequest-dto';
10
+ export * from './login-by-saml-request-dto';
11
11
  export * from './login-class';
12
12
  export * from './login-request-dto';
13
13
  export * from './logout-request-dto';
@@ -28,21 +28,21 @@ export interface InlineResponse200 {
28
28
  'status'?: string;
29
29
  /**
30
30
  *
31
- * @type {{ [key: string]: { [key: string]: string; }; }}
31
+ * @type {{ [key: string]: { [key: string]: object; }; }}
32
32
  * @memberof InlineResponse200
33
33
  */
34
- 'info'?: { [key: string]: { [key: string]: string; }; } | null;
34
+ 'info'?: { [key: string]: { [key: string]: object; }; } | null;
35
35
  /**
36
36
  *
37
- * @type {{ [key: string]: { [key: string]: string; }; }}
37
+ * @type {{ [key: string]: { [key: string]: object; }; }}
38
38
  * @memberof InlineResponse200
39
39
  */
40
- 'error'?: { [key: string]: { [key: string]: string; }; } | null;
40
+ 'error'?: { [key: string]: { [key: string]: object; }; } | null;
41
41
  /**
42
42
  *
43
- * @type {{ [key: string]: { [key: string]: string; }; }}
43
+ * @type {{ [key: string]: { [key: string]: object; }; }}
44
44
  * @memberof InlineResponse200
45
45
  */
46
- 'details'?: { [key: string]: { [key: string]: string; }; };
46
+ 'details'?: { [key: string]: { [key: string]: object; }; };
47
47
  }
48
48