@emilgroup/tenant-sdk-node 1.33.1-beta.23 → 1.34.1-beta.14
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 +5 -1
- package/README.md +2 -2
- package/api/dashboard-api.ts +6 -23
- package/api/invitation-controller-rest-api.ts +561 -0
- package/api/settings-api.ts +304 -0
- package/api/user-controller-rest-api.ts +1413 -0
- package/api.ts +4 -0
- package/base.ts +1 -0
- package/dist/api/dashboard-api.d.ts +3 -13
- package/dist/api/dashboard-api.js +6 -13
- package/dist/api/invitation-controller-rest-api.d.ts +315 -0
- package/dist/api/invitation-controller-rest-api.js +538 -0
- package/dist/api/settings-api.d.ts +156 -0
- package/dist/api/settings-api.js +268 -0
- package/dist/api/user-controller-rest-api.d.ts +777 -0
- package/dist/api/user-controller-rest-api.js +1227 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/custom-field-dto.d.ts +1 -1
- package/dist/models/get-settings-response-class.d.ts +1 -1
- package/dist/models/index.d.ts +3 -1
- package/dist/models/index.js +3 -1
- package/dist/models/set-setting-grpc-request-dto.d.ts +42 -0
- package/dist/models/set-setting-request-dto.d.ts +4 -10
- package/dist/models/set-tenant-setting-response-class.d.ts +36 -0
- package/dist/models/set-tenant-setting-response-class.js +15 -0
- package/dist/models/set-user-setting-response-class.d.ts +36 -0
- package/dist/models/set-user-setting-response-class.js +15 -0
- package/dist/models/tenant-settings-class.d.ts +6 -0
- package/models/custom-field-dto.ts +1 -1
- package/models/get-settings-response-class.ts +1 -1
- package/models/index.ts +3 -1
- package/models/set-setting-grpc-request-dto.ts +48 -0
- package/models/set-setting-request-dto.ts +4 -10
- package/models/set-tenant-setting-response-class.ts +42 -0
- package/models/{duplicate-dashboard-request-dto.ts → set-user-setting-response-class.ts} +14 -8
- package/models/tenant-settings-class.ts +6 -0
- package/package.json +2 -2
- package/dist/models/duplicate-dashboard-request-dto.d.ts +0 -30
- /package/dist/models/{duplicate-dashboard-request-dto.js → set-setting-grpc-request-dto.js} +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from './api/data-report-api';
|
|
|
16
16
|
export * from './api/data-report-executor-api';
|
|
17
17
|
export * from './api/delete-organization-invitations-api';
|
|
18
18
|
export * from './api/health-check-api';
|
|
19
|
+
export * from './api/invitation-controller-rest-api';
|
|
19
20
|
export * from './api/invite-organizations-api';
|
|
20
21
|
export * from './api/invite-users-api';
|
|
21
22
|
export * from './api/list-organization-invitations-api';
|
|
@@ -24,4 +25,5 @@ export * from './api/organizations-api';
|
|
|
24
25
|
export * from './api/re-invite-an-organization-api';
|
|
25
26
|
export * from './api/roles-api';
|
|
26
27
|
export * from './api/settings-api';
|
|
28
|
+
export * from './api/user-controller-rest-api';
|
|
27
29
|
export * from './api/users-api';
|
package/dist/api.js
CHANGED
|
@@ -34,6 +34,7 @@ __exportStar(require("./api/data-report-api"), exports);
|
|
|
34
34
|
__exportStar(require("./api/data-report-executor-api"), exports);
|
|
35
35
|
__exportStar(require("./api/delete-organization-invitations-api"), exports);
|
|
36
36
|
__exportStar(require("./api/health-check-api"), exports);
|
|
37
|
+
__exportStar(require("./api/invitation-controller-rest-api"), exports);
|
|
37
38
|
__exportStar(require("./api/invite-organizations-api"), exports);
|
|
38
39
|
__exportStar(require("./api/invite-users-api"), exports);
|
|
39
40
|
__exportStar(require("./api/list-organization-invitations-api"), exports);
|
|
@@ -42,4 +43,5 @@ __exportStar(require("./api/organizations-api"), exports);
|
|
|
42
43
|
__exportStar(require("./api/re-invite-an-organization-api"), exports);
|
|
43
44
|
__exportStar(require("./api/roles-api"), exports);
|
|
44
45
|
__exportStar(require("./api/settings-api"), exports);
|
|
46
|
+
__exportStar(require("./api/user-controller-rest-api"), exports);
|
|
45
47
|
__exportStar(require("./api/users-api"), exports);
|
package/dist/base.d.ts
CHANGED
|
@@ -39,7 +39,8 @@ export declare enum Environment {
|
|
|
39
39
|
Test = "https://apiv2-test.emil.de",
|
|
40
40
|
Staging = "https://apiv2-staging.emil.de",
|
|
41
41
|
Development = "https://apiv2-dev.emil.de",
|
|
42
|
-
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
42
|
+
ProductionZurich = "https://eu-central-2.apiv2.emil.de",
|
|
43
|
+
StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
|
|
43
44
|
}
|
|
44
45
|
export declare function resetRetry(): void;
|
|
45
46
|
/**
|
package/dist/base.js
CHANGED
|
@@ -132,6 +132,7 @@ var Environment;
|
|
|
132
132
|
Environment["Staging"] = "https://apiv2-staging.emil.de";
|
|
133
133
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
134
134
|
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
135
|
+
Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
|
|
135
136
|
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
136
137
|
var _retry_count = 0;
|
|
137
138
|
var _retry = null;
|
|
@@ -28,7 +28,7 @@ export interface CustomFieldDto {
|
|
|
28
28
|
*/
|
|
29
29
|
'label'?: string;
|
|
30
30
|
/**
|
|
31
|
-
* The type of the custom field.
|
|
31
|
+
* The type of the custom field. Supported types are: string, number, boolean, array, object, date, dateTime, phoneNumber, email, url
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof CustomFieldDto
|
|
34
34
|
*/
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface GetSettingsResponseClass {
|
|
18
18
|
/**
|
|
19
|
-
* Values aligned with the requested keys order.
|
|
19
|
+
* Values aligned with the requested keys order. Each item is either a JSON primitive, an array, `null`, or an object (object-shaped settings include `isSensitive` when applicable). Example: `[ \"stripe\" ]` for a string setting.
|
|
20
20
|
* @type {Array<{ [key: string]: object; }>}
|
|
21
21
|
* @memberof GetSettingsResponseClass
|
|
22
22
|
*/
|
package/dist/models/index.d.ts
CHANGED
|
@@ -29,7 +29,6 @@ export * from './data-report-filter-value-dto';
|
|
|
29
29
|
export * from './delete-response-class';
|
|
30
30
|
export * from './disable-users-request-dto';
|
|
31
31
|
export * from './disable-users-response-class';
|
|
32
|
-
export * from './duplicate-dashboard-request-dto';
|
|
33
32
|
export * from './duplicate-dashboard-response-class';
|
|
34
33
|
export * from './enable-users-request-dto';
|
|
35
34
|
export * from './enable-users-response-class';
|
|
@@ -77,7 +76,10 @@ export * from './revert-organization-migration-response-class';
|
|
|
77
76
|
export * from './role-class';
|
|
78
77
|
export * from './run-data-report-request-dto';
|
|
79
78
|
export * from './run-data-report-response-class';
|
|
79
|
+
export * from './set-setting-grpc-request-dto';
|
|
80
80
|
export * from './set-setting-request-dto';
|
|
81
|
+
export * from './set-tenant-setting-response-class';
|
|
82
|
+
export * from './set-user-setting-response-class';
|
|
81
83
|
export * from './subscription-class';
|
|
82
84
|
export * from './tenant-admin-user-dto';
|
|
83
85
|
export * from './tenant-settings-class';
|
package/dist/models/index.js
CHANGED
|
@@ -45,7 +45,6 @@ __exportStar(require("./data-report-filter-value-dto"), exports);
|
|
|
45
45
|
__exportStar(require("./delete-response-class"), exports);
|
|
46
46
|
__exportStar(require("./disable-users-request-dto"), exports);
|
|
47
47
|
__exportStar(require("./disable-users-response-class"), exports);
|
|
48
|
-
__exportStar(require("./duplicate-dashboard-request-dto"), exports);
|
|
49
48
|
__exportStar(require("./duplicate-dashboard-response-class"), exports);
|
|
50
49
|
__exportStar(require("./enable-users-request-dto"), exports);
|
|
51
50
|
__exportStar(require("./enable-users-response-class"), exports);
|
|
@@ -93,7 +92,10 @@ __exportStar(require("./revert-organization-migration-response-class"), exports)
|
|
|
93
92
|
__exportStar(require("./role-class"), exports);
|
|
94
93
|
__exportStar(require("./run-data-report-request-dto"), exports);
|
|
95
94
|
__exportStar(require("./run-data-report-response-class"), exports);
|
|
95
|
+
__exportStar(require("./set-setting-grpc-request-dto"), exports);
|
|
96
96
|
__exportStar(require("./set-setting-request-dto"), exports);
|
|
97
|
+
__exportStar(require("./set-tenant-setting-response-class"), exports);
|
|
98
|
+
__exportStar(require("./set-user-setting-response-class"), exports);
|
|
97
99
|
__exportStar(require("./subscription-class"), exports);
|
|
98
100
|
__exportStar(require("./tenant-admin-user-dto"), exports);
|
|
99
101
|
__exportStar(require("./tenant-settings-class"), exports);
|
|
@@ -0,0 +1,42 @@
|
|
|
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 SetSettingGrpcRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface SetSettingGrpcRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SetSettingGrpcRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetSettingGrpcRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'value': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SetSettingGrpcRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'type': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof SetSettingGrpcRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'isSensitive'?: boolean;
|
|
42
|
+
}
|
|
@@ -16,23 +16,17 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface SetSettingRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Setting key.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof SetSettingRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'key': string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {
|
|
27
|
-
* @memberof SetSettingRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'value': string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {string}
|
|
25
|
+
* Setting value.
|
|
26
|
+
* @type {object}
|
|
33
27
|
* @memberof SetSettingRequestDto
|
|
34
28
|
*/
|
|
35
|
-
'
|
|
29
|
+
'value': object;
|
|
36
30
|
/**
|
|
37
31
|
*
|
|
38
32
|
* @type {boolean}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 SetTenantSettingResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SetTenantSettingResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Setting key.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SetTenantSettingResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
* Setting value.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetTenantSettingResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'value': string;
|
|
30
|
+
/**
|
|
31
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SetTenantSettingResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'type': string;
|
|
36
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,36 @@
|
|
|
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 SetUserSettingResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SetUserSettingResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Setting key.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SetUserSettingResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
* Setting value.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetUserSettingResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'value': string;
|
|
30
|
+
/**
|
|
31
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SetUserSettingResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'type': string;
|
|
36
|
+
}
|
|
@@ -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 });
|
|
@@ -58,4 +58,10 @@ export interface TenantSettingsClass {
|
|
|
58
58
|
* @memberof TenantSettingsClass
|
|
59
59
|
*/
|
|
60
60
|
'payment_request_number_format_config': FormatTenantSettingsClass;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {FormatTenantSettingsClass}
|
|
64
|
+
* @memberof TenantSettingsClass
|
|
65
|
+
*/
|
|
66
|
+
'claim_position_number_format_config': FormatTenantSettingsClass;
|
|
61
67
|
}
|
|
@@ -33,7 +33,7 @@ export interface CustomFieldDto {
|
|
|
33
33
|
*/
|
|
34
34
|
'label'?: string;
|
|
35
35
|
/**
|
|
36
|
-
* The type of the custom field.
|
|
36
|
+
* The type of the custom field. Supported types are: string, number, boolean, array, object, date, dateTime, phoneNumber, email, url
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CustomFieldDto
|
|
39
39
|
*/
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetSettingsResponseClass {
|
|
23
23
|
/**
|
|
24
|
-
* Values aligned with the requested keys order.
|
|
24
|
+
* Values aligned with the requested keys order. Each item is either a JSON primitive, an array, `null`, or an object (object-shaped settings include `isSensitive` when applicable). Example: `[ \"stripe\" ]` for a string setting.
|
|
25
25
|
* @type {Array<{ [key: string]: object; }>}
|
|
26
26
|
* @memberof GetSettingsResponseClass
|
|
27
27
|
*/
|
package/models/index.ts
CHANGED
|
@@ -29,7 +29,6 @@ export * from './data-report-filter-value-dto';
|
|
|
29
29
|
export * from './delete-response-class';
|
|
30
30
|
export * from './disable-users-request-dto';
|
|
31
31
|
export * from './disable-users-response-class';
|
|
32
|
-
export * from './duplicate-dashboard-request-dto';
|
|
33
32
|
export * from './duplicate-dashboard-response-class';
|
|
34
33
|
export * from './enable-users-request-dto';
|
|
35
34
|
export * from './enable-users-response-class';
|
|
@@ -77,7 +76,10 @@ export * from './revert-organization-migration-response-class';
|
|
|
77
76
|
export * from './role-class';
|
|
78
77
|
export * from './run-data-report-request-dto';
|
|
79
78
|
export * from './run-data-report-response-class';
|
|
79
|
+
export * from './set-setting-grpc-request-dto';
|
|
80
80
|
export * from './set-setting-request-dto';
|
|
81
|
+
export * from './set-tenant-setting-response-class';
|
|
82
|
+
export * from './set-user-setting-response-class';
|
|
81
83
|
export * from './subscription-class';
|
|
82
84
|
export * from './tenant-admin-user-dto';
|
|
83
85
|
export * from './tenant-settings-class';
|
|
@@ -0,0 +1,48 @@
|
|
|
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 SetSettingGrpcRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface SetSettingGrpcRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SetSettingGrpcRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SetSettingGrpcRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'value': string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SetSettingGrpcRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof SetSettingGrpcRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'isSensitive'?: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -21,23 +21,17 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface SetSettingRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Setting key.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof SetSettingRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'key': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {
|
|
32
|
-
* @memberof SetSettingRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'value': string;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {string}
|
|
30
|
+
* Setting value.
|
|
31
|
+
* @type {object}
|
|
38
32
|
* @memberof SetSettingRequestDto
|
|
39
33
|
*/
|
|
40
|
-
'
|
|
34
|
+
'value': object;
|
|
41
35
|
/**
|
|
42
36
|
*
|
|
43
37
|
* @type {boolean}
|
|
@@ -0,0 +1,42 @@
|
|
|
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 SetTenantSettingResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SetTenantSettingResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Setting key.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SetTenantSettingResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
* Setting value.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SetTenantSettingResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'value': string;
|
|
35
|
+
/**
|
|
36
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SetTenantSettingResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -17,20 +17,26 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface SetUserSettingResponseClass
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface SetUserSettingResponseClass {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Setting key.
|
|
25
25
|
* @type {string}
|
|
26
|
-
* @memberof
|
|
26
|
+
* @memberof SetUserSettingResponseClass
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'key': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Setting value.
|
|
31
31
|
* @type {string}
|
|
32
|
-
* @memberof
|
|
32
|
+
* @memberof SetUserSettingResponseClass
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'value': string;
|
|
35
|
+
/**
|
|
36
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SetUserSettingResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
35
41
|
}
|
|
36
42
|
|
|
@@ -63,5 +63,11 @@ export interface TenantSettingsClass {
|
|
|
63
63
|
* @memberof TenantSettingsClass
|
|
64
64
|
*/
|
|
65
65
|
'payment_request_number_format_config': FormatTenantSettingsClass;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {FormatTenantSettingsClass}
|
|
69
|
+
* @memberof TenantSettingsClass
|
|
70
|
+
*/
|
|
71
|
+
'claim_position_number_format_config': FormatTenantSettingsClass;
|
|
66
72
|
}
|
|
67
73
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/tenant-sdk-node",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.34.1-beta.14",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/tenant-sdk-node",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"prepare": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"axios": "
|
|
21
|
+
"axios": "1.12.0",
|
|
22
22
|
"form-data": "^4.0.0",
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|
|
@@ -1,30 +0,0 @@
|
|
|
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 DuplicateDashboardRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface DuplicateDashboardRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Dashboard name to set
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof DuplicateDashboardRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'name'?: string;
|
|
24
|
-
/**
|
|
25
|
-
* Dashboard description to set
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof DuplicateDashboardRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'description'?: string;
|
|
30
|
-
}
|
|
File without changes
|