@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.
@@ -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.13 --save
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.13
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
- * Setting values.
20
- * @type {Array<string>}
20
+ * Values aligned with the requested keys order.
21
+ * @type {Array<GetSettingValueItemClass>}
21
22
  * @memberof GetSettingsResponseClass
22
23
  */
23
- 'values': Array<string>;
24
+ 'values': Array<GetSettingValueItemClass>;
24
25
  }
@@ -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';
@@ -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);
@@ -33,4 +33,10 @@ export interface SetSettingRequestDto {
33
33
  * @memberof SetSettingRequestDto
34
34
  */
35
35
  'type': string;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof SetSettingRequestDto
40
+ */
41
+ 'isSensitive'?: boolean;
36
42
  }
@@ -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
- * Setting values.
25
- * @type {Array<string>}
25
+ * Values aligned with the requested keys order.
26
+ * @type {Array<GetSettingValueItemClass>}
26
27
  * @memberof GetSettingsResponseClass
27
28
  */
28
- 'values': Array<string>;
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';
@@ -38,5 +38,11 @@ export interface SetSettingRequestDto {
38
38
  * @memberof SetSettingRequestDto
39
39
  */
40
40
  'type': string;
41
+ /**
42
+ *
43
+ * @type {boolean}
44
+ * @memberof SetSettingRequestDto
45
+ */
46
+ 'isSensitive'?: boolean;
41
47
  }
42
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/tenant-sdk",
3
- "version": "1.35.1-beta.13",
3
+ "version": "1.35.1-beta.19",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [