@emilgroup/tenant-sdk 1.2.1 → 1.3.0
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/.openapi-generator/FILES +3 -0
- package/README.md +2 -2
- package/api/invite-organizations-api.ts +0 -174
- package/api/list-organization-invitations-api.ts +236 -0
- package/api/re-invite-an-organization-api.ts +165 -0
- package/api.ts +4 -0
- package/base.ts +1 -1
- package/dist/api/invite-organizations-api.d.ts +0 -101
- package/dist/api/invite-organizations-api.js +0 -123
- package/dist/api/list-organization-invitations-api.d.ts +141 -0
- package/dist/api/list-organization-invitations-api.js +258 -0
- package/dist/api/re-invite-an-organization-api.d.ts +93 -0
- package/dist/api/re-invite-an-organization-api.js +224 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/base.js +1 -1
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/invite-org-request-dto.d.ts +8 -2
- package/dist/models/org-invitation-class.d.ts +8 -2
- package/dist/models/organization-class.d.ts +11 -5
- package/dist/models/re-invite-org-request-dto.d.ts +24 -0
- package/dist/models/re-invite-org-request-dto.js +15 -0
- package/dist/models/update-organization-request-dto-rest.d.ts +8 -2
- package/models/index.ts +1 -0
- package/models/invite-org-request-dto.ts +8 -2
- package/models/org-invitation-class.ts +8 -2
- package/models/organization-class.ts +11 -5
- package/models/re-invite-org-request-dto.ts +30 -0
- package/models/update-organization-request-dto-rest.ts +8 -2
- package/package.json +2 -2
|
@@ -53,11 +53,17 @@ export interface OrgInvitationClass {
|
|
|
53
53
|
*/
|
|
54
54
|
'parentOrganizationId'?: number;
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* Organization\'s street name.
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof OrgInvitationClass
|
|
59
59
|
*/
|
|
60
|
-
'
|
|
60
|
+
'street': string;
|
|
61
|
+
/**
|
|
62
|
+
* Organization\'s house number.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof OrgInvitationClass
|
|
65
|
+
*/
|
|
66
|
+
'houseNumber': string;
|
|
61
67
|
/**
|
|
62
68
|
* Zip code of the organization.
|
|
63
69
|
* @type {string}
|
|
@@ -29,12 +29,12 @@ export interface OrganizationClass {
|
|
|
29
29
|
'code': string;
|
|
30
30
|
/**
|
|
31
31
|
* Parent organization ID.
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {number}
|
|
33
33
|
* @memberof OrganizationClass
|
|
34
34
|
*/
|
|
35
|
-
'parentId'?:
|
|
35
|
+
'parentId'?: number;
|
|
36
36
|
/**
|
|
37
|
-
* ERN
|
|
37
|
+
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof OrganizationClass
|
|
40
40
|
*/
|
|
@@ -52,11 +52,17 @@ export interface OrganizationClass {
|
|
|
52
52
|
*/
|
|
53
53
|
'name': string;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Organization\'s street name.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof OrganizationClass
|
|
58
|
+
*/
|
|
59
|
+
'street': string;
|
|
60
|
+
/**
|
|
61
|
+
* Organization\'s house number..
|
|
56
62
|
* @type {string}
|
|
57
63
|
* @memberof OrganizationClass
|
|
58
64
|
*/
|
|
59
|
-
'
|
|
65
|
+
'houseNumber': string;
|
|
60
66
|
/**
|
|
61
67
|
* Zip code of the organization.
|
|
62
68
|
* @type {string}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL Tenant Service
|
|
3
|
+
* The EMIL TenantService 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 ReInviteOrgRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ReInviteOrgRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Email address to identify the invitation by
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ReInviteOrgRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'email': string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService 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 });
|
|
@@ -16,11 +16,17 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface UpdateOrganizationRequestDtoRest {
|
|
18
18
|
/**
|
|
19
|
-
* Organization\'s
|
|
19
|
+
* Organization\'s street name.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateOrganizationRequestDtoRest
|
|
22
|
+
*/
|
|
23
|
+
'street': string;
|
|
24
|
+
/**
|
|
25
|
+
* Organization\'s house number.
|
|
20
26
|
* @type {string}
|
|
21
27
|
* @memberof UpdateOrganizationRequestDtoRest
|
|
22
28
|
*/
|
|
23
|
-
'
|
|
29
|
+
'houseNumber': string;
|
|
24
30
|
/**
|
|
25
31
|
* Zip code of the organization.
|
|
26
32
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './org-invitation-class';
|
|
|
36
36
|
export * from './org-invitation-response-class';
|
|
37
37
|
export * from './organization-class';
|
|
38
38
|
export * from './permission-class';
|
|
39
|
+
export * from './re-invite-org-request-dto';
|
|
39
40
|
export * from './role-class';
|
|
40
41
|
export * from './set-setting-request-dto';
|
|
41
42
|
export * from './set-user-setting-response-class';
|
|
@@ -51,11 +51,17 @@ export interface InviteOrgRequestDto {
|
|
|
51
51
|
*/
|
|
52
52
|
'parentOrganizationId': number;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Organization\'s street name.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof InviteOrgRequestDto
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'street': string;
|
|
59
|
+
/**
|
|
60
|
+
* Organization\'s house number.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof InviteOrgRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'houseNumber': string;
|
|
59
65
|
/**
|
|
60
66
|
* Zip code of the organization.
|
|
61
67
|
* @type {string}
|
|
@@ -58,11 +58,17 @@ export interface OrgInvitationClass {
|
|
|
58
58
|
*/
|
|
59
59
|
'parentOrganizationId'?: number;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* Organization\'s street name.
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof OrgInvitationClass
|
|
64
64
|
*/
|
|
65
|
-
'
|
|
65
|
+
'street': string;
|
|
66
|
+
/**
|
|
67
|
+
* Organization\'s house number.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof OrgInvitationClass
|
|
70
|
+
*/
|
|
71
|
+
'houseNumber': string;
|
|
66
72
|
/**
|
|
67
73
|
* Zip code of the organization.
|
|
68
74
|
* @type {string}
|
|
@@ -34,12 +34,12 @@ export interface OrganizationClass {
|
|
|
34
34
|
'code': string;
|
|
35
35
|
/**
|
|
36
36
|
* Parent organization ID.
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {number}
|
|
38
38
|
* @memberof OrganizationClass
|
|
39
39
|
*/
|
|
40
|
-
'parentId'?:
|
|
40
|
+
'parentId'?: number;
|
|
41
41
|
/**
|
|
42
|
-
* ERN
|
|
42
|
+
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof OrganizationClass
|
|
45
45
|
*/
|
|
@@ -57,11 +57,17 @@ export interface OrganizationClass {
|
|
|
57
57
|
*/
|
|
58
58
|
'name': string;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Organization\'s street name.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof OrganizationClass
|
|
63
|
+
*/
|
|
64
|
+
'street': string;
|
|
65
|
+
/**
|
|
66
|
+
* Organization\'s house number..
|
|
61
67
|
* @type {string}
|
|
62
68
|
* @memberof OrganizationClass
|
|
63
69
|
*/
|
|
64
|
-
'
|
|
70
|
+
'houseNumber': string;
|
|
65
71
|
/**
|
|
66
72
|
* Zip code of the organization.
|
|
67
73
|
* @type {string}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ReInviteOrgRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface ReInviteOrgRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Email address to identify the invitation by
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ReInviteOrgRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'email': string;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -21,11 +21,17 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface UpdateOrganizationRequestDtoRest {
|
|
23
23
|
/**
|
|
24
|
-
* Organization\'s
|
|
24
|
+
* Organization\'s street name.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateOrganizationRequestDtoRest
|
|
27
|
+
*/
|
|
28
|
+
'street': string;
|
|
29
|
+
/**
|
|
30
|
+
* Organization\'s house number.
|
|
25
31
|
* @type {string}
|
|
26
32
|
* @memberof UpdateOrganizationRequestDtoRest
|
|
27
33
|
*/
|
|
28
|
-
'
|
|
34
|
+
'houseNumber': string;
|
|
29
35
|
/**
|
|
30
36
|
* Zip code of the organization.
|
|
31
37
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/tenant-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/tenant-sdk",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
27
|
"typescript": "^4.0"
|
|
28
28
|
}
|
|
29
29
|
}
|