@emilgroup/tenant-sdk 1.35.1-beta.13 → 1.35.1-beta.19
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 +1 -0
- package/README.md +2 -2
- package/dist/models/get-setting-value-item-class.d.ts +30 -0
- package/dist/models/get-setting-value-item-class.js +15 -0
- package/dist/models/get-settings-response-class.d.ts +4 -3
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/set-setting-request-dto.d.ts +6 -0
- package/models/get-setting-value-item-class.ts +36 -0
- package/models/get-settings-response-class.ts +4 -3
- package/models/index.ts +1 -0
- package/models/set-setting-request-dto.ts +6 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -67,6 +67,7 @@ models/get-data-report-response-class.ts
|
|
|
67
67
|
models/get-embedded-url-response-class.ts
|
|
68
68
|
models/get-organization-migration-response-class.ts
|
|
69
69
|
models/get-organization-response-class.ts
|
|
70
|
+
models/get-setting-value-item-class.ts
|
|
70
71
|
models/get-settings-response-class.ts
|
|
71
72
|
models/get-user-response-class.ts
|
|
72
73
|
models/index.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/tenant-sdk@1.35.1-beta.
|
|
20
|
+
npm install @emilgroup/tenant-sdk@1.35.1-beta.19 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk@1.35.1-beta.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk@1.35.1-beta.19
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
|
@@ -0,0 +1,30 @@
|
|
|
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 GetSettingValueItemClass
|
|
16
|
+
*/
|
|
17
|
+
export interface GetSettingValueItemClass {
|
|
18
|
+
/**
|
|
19
|
+
* Setting payload. The string \"*****\" when isSensitive is true (secrets are not exposed over REST).
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof GetSettingValueItemClass
|
|
22
|
+
*/
|
|
23
|
+
'value': object | null;
|
|
24
|
+
/**
|
|
25
|
+
* Whether this setting is treated as sensitive (stored in Secrets Manager when applicable).
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof GetSettingValueItemClass
|
|
28
|
+
*/
|
|
29
|
+
'isSensitive': boolean;
|
|
30
|
+
}
|
|
@@ -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 });
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { GetSettingValueItemClass } from './get-setting-value-item-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -16,9 +17,9 @@
|
|
|
16
17
|
*/
|
|
17
18
|
export interface GetSettingsResponseClass {
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {Array<
|
|
20
|
+
* Values aligned with the requested keys order.
|
|
21
|
+
* @type {Array<GetSettingValueItemClass>}
|
|
21
22
|
* @memberof GetSettingsResponseClass
|
|
22
23
|
*/
|
|
23
|
-
'values': Array<
|
|
24
|
+
'values': Array<GetSettingValueItemClass>;
|
|
24
25
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export * from './get-data-report-response-class';
|
|
|
41
41
|
export * from './get-embedded-url-response-class';
|
|
42
42
|
export * from './get-organization-migration-response-class';
|
|
43
43
|
export * from './get-organization-response-class';
|
|
44
|
+
export * from './get-setting-value-item-class';
|
|
44
45
|
export * from './get-settings-response-class';
|
|
45
46
|
export * from './get-user-response-class';
|
|
46
47
|
export * from './initial-tenant-config-class';
|
package/dist/models/index.js
CHANGED
|
@@ -57,6 +57,7 @@ __exportStar(require("./get-data-report-response-class"), exports);
|
|
|
57
57
|
__exportStar(require("./get-embedded-url-response-class"), exports);
|
|
58
58
|
__exportStar(require("./get-organization-migration-response-class"), exports);
|
|
59
59
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
60
|
+
__exportStar(require("./get-setting-value-item-class"), exports);
|
|
60
61
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
61
62
|
__exportStar(require("./get-user-response-class"), exports);
|
|
62
63
|
__exportStar(require("./initial-tenant-config-class"), exports);
|
|
@@ -0,0 +1,36 @@
|
|
|
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 GetSettingValueItemClass
|
|
21
|
+
*/
|
|
22
|
+
export interface GetSettingValueItemClass {
|
|
23
|
+
/**
|
|
24
|
+
* Setting payload. The string \"*****\" when isSensitive is true (secrets are not exposed over REST).
|
|
25
|
+
* @type {object}
|
|
26
|
+
* @memberof GetSettingValueItemClass
|
|
27
|
+
*/
|
|
28
|
+
'value': object | null;
|
|
29
|
+
/**
|
|
30
|
+
* Whether this setting is treated as sensitive (stored in Secrets Manager when applicable).
|
|
31
|
+
* @type {boolean}
|
|
32
|
+
* @memberof GetSettingValueItemClass
|
|
33
|
+
*/
|
|
34
|
+
'isSensitive': boolean;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { GetSettingValueItemClass } from './get-setting-value-item-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -21,10 +22,10 @@
|
|
|
21
22
|
*/
|
|
22
23
|
export interface GetSettingsResponseClass {
|
|
23
24
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {Array<
|
|
25
|
+
* Values aligned with the requested keys order.
|
|
26
|
+
* @type {Array<GetSettingValueItemClass>}
|
|
26
27
|
* @memberof GetSettingsResponseClass
|
|
27
28
|
*/
|
|
28
|
-
'values': Array<
|
|
29
|
+
'values': Array<GetSettingValueItemClass>;
|
|
29
30
|
}
|
|
30
31
|
|
package/models/index.ts
CHANGED
|
@@ -41,6 +41,7 @@ export * from './get-data-report-response-class';
|
|
|
41
41
|
export * from './get-embedded-url-response-class';
|
|
42
42
|
export * from './get-organization-migration-response-class';
|
|
43
43
|
export * from './get-organization-response-class';
|
|
44
|
+
export * from './get-setting-value-item-class';
|
|
44
45
|
export * from './get-settings-response-class';
|
|
45
46
|
export * from './get-user-response-class';
|
|
46
47
|
export * from './initial-tenant-config-class';
|