@emilgroup/setting-sdk-node 0.3.1-beta.16 → 0.3.1-beta.18
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 +17 -0
- package/README.md +2 -2
- package/api/setting-definitions-api.ts +353 -0
- package/api/setting-keys-api.ts +868 -0
- package/api/setting-values-api.ts +250 -0
- package/api.ts +6 -0
- package/dist/api/setting-definitions-api.d.ts +206 -0
- package/dist/api/setting-definitions-api.js +356 -0
- package/dist/api/setting-keys-api.d.ts +490 -0
- package/dist/api/setting-keys-api.js +768 -0
- package/dist/api/setting-values-api.d.ts +150 -0
- package/dist/api/setting-values-api.js +264 -0
- package/dist/api.d.ts +3 -0
- package/dist/api.js +3 -0
- package/dist/models/create-setting-key-request-dto.d.ts +36 -0
- package/dist/models/create-setting-key-request-dto.js +15 -0
- package/dist/models/create-setting-key-response-class.d.ts +25 -0
- package/dist/models/create-setting-key-response-class.js +15 -0
- package/dist/models/delete-setting-key-response-class.d.ts +24 -0
- package/dist/models/delete-setting-key-response-class.js +15 -0
- package/dist/models/get-setting-definition-response-class.d.ts +25 -0
- package/dist/models/get-setting-definition-response-class.js +15 -0
- package/dist/models/get-setting-key-response-class.d.ts +25 -0
- package/dist/models/get-setting-key-response-class.js +15 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +14 -0
- package/dist/models/list-setting-definitions-response-class.d.ts +43 -0
- package/dist/models/list-setting-definitions-response-class.js +15 -0
- package/dist/models/list-setting-keys-response-class.d.ts +43 -0
- package/dist/models/list-setting-keys-response-class.js +15 -0
- package/dist/models/list-setting-values-response-class.d.ts +43 -0
- package/dist/models/list-setting-values-response-class.js +15 -0
- package/dist/models/setting-definition-class.d.ts +124 -0
- package/dist/models/setting-definition-class.js +53 -0
- package/dist/models/setting-definition-version-class.d.ts +72 -0
- package/dist/models/setting-definition-version-class.js +15 -0
- package/dist/models/setting-key-class.d.ts +85 -0
- package/dist/models/setting-key-class.js +15 -0
- package/dist/models/setting-value-class.d.ts +72 -0
- package/dist/models/setting-value-class.js +15 -0
- package/dist/models/update-setting-key-request-rest-dto.d.ts +30 -0
- package/dist/models/update-setting-key-request-rest-dto.js +15 -0
- package/dist/models/update-setting-key-response-class.d.ts +25 -0
- package/dist/models/update-setting-key-response-class.js +15 -0
- package/models/create-setting-key-request-dto.ts +42 -0
- package/models/create-setting-key-response-class.ts +31 -0
- package/models/delete-setting-key-response-class.ts +30 -0
- package/models/get-setting-definition-response-class.ts +31 -0
- package/models/get-setting-key-response-class.ts +31 -0
- package/models/index.ts +14 -0
- package/models/list-setting-definitions-response-class.ts +49 -0
- package/models/list-setting-keys-response-class.ts +49 -0
- package/models/list-setting-values-response-class.ts +49 -0
- package/models/setting-definition-class.ts +134 -0
- package/models/setting-definition-version-class.ts +78 -0
- package/models/setting-key-class.ts +91 -0
- package/models/setting-value-class.ts +78 -0
- package/models/update-setting-key-request-rest-dto.ts +36 -0
- package/models/update-setting-key-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL SettingService
|
|
3
|
+
* The EMIL SettingService 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 SettingValueClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SettingValueClass {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SettingValueClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SettingValueClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SettingValueClass
|
|
34
|
+
*/
|
|
35
|
+
'definitionVersionCode': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof SettingValueClass
|
|
40
|
+
*/
|
|
41
|
+
'value'?: object;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SettingValueClass
|
|
46
|
+
*/
|
|
47
|
+
'secretRef'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Version-specific concurrency token for optimistic updates.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof SettingValueClass
|
|
52
|
+
*/
|
|
53
|
+
'etag': string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof SettingValueClass
|
|
58
|
+
*/
|
|
59
|
+
'version': number;
|
|
60
|
+
/**
|
|
61
|
+
* Time at which the object was created.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SettingValueClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SettingValueClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL SettingService
|
|
6
|
+
* The EMIL SettingService 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,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL SettingService
|
|
3
|
+
* The EMIL SettingService 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 UpdateSettingKeyRequestRestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateSettingKeyRequestRestDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof UpdateSettingKeyRequestRestDto
|
|
22
|
+
*/
|
|
23
|
+
'value': object;
|
|
24
|
+
/**
|
|
25
|
+
* Optional schema snapshot to rebind this setting value to before validation.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateSettingKeyRequestRestDto
|
|
28
|
+
*/
|
|
29
|
+
'definitionVersionCode'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL SettingService
|
|
6
|
+
* The EMIL SettingService 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,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL SettingService
|
|
3
|
+
* The EMIL SettingService 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 { SettingKeyClass } from './setting-key-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateSettingKeyResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateSettingKeyResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {SettingKeyClass}
|
|
22
|
+
* @memberof UpdateSettingKeyResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'settingKey': SettingKeyClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL SettingService
|
|
6
|
+
* The EMIL SettingService 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,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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 CreateSettingKeyRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateSettingKeyRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Immutable schema snapshot to validate against.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateSettingKeyRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'definitionVersionCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* Immutable unique tenant identifier for this setting key.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateSettingKeyRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'slug': string;
|
|
35
|
+
/**
|
|
36
|
+
* JSON value validated against the referenced definition version schema.
|
|
37
|
+
* @type {object}
|
|
38
|
+
* @memberof CreateSettingKeyRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'value'?: object;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingKeyClass } from './setting-key-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateSettingKeyResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateSettingKeyResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {SettingKeyClass}
|
|
27
|
+
* @memberof CreateSettingKeyResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'settingKey': SettingKeyClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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 DeleteSettingKeyResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteSettingKeyResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof DeleteSettingKeyResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'success': boolean;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingDefinitionClass } from './setting-definition-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetSettingDefinitionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetSettingDefinitionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {SettingDefinitionClass}
|
|
27
|
+
* @memberof GetSettingDefinitionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'definition': SettingDefinitionClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingKeyClass } from './setting-key-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetSettingKeyResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetSettingKeyResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {SettingKeyClass}
|
|
27
|
+
* @memberof GetSettingKeyResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'settingKey': SettingKeyClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
export * from './create-public-key-request-dto';
|
|
2
2
|
export * from './create-public-key-response-class';
|
|
3
|
+
export * from './create-setting-key-request-dto';
|
|
4
|
+
export * from './create-setting-key-response-class';
|
|
3
5
|
export * from './delete-public-key-request-dto';
|
|
6
|
+
export * from './delete-setting-key-response-class';
|
|
4
7
|
export * from './get-public-key-response-class';
|
|
8
|
+
export * from './get-setting-definition-response-class';
|
|
9
|
+
export * from './get-setting-key-response-class';
|
|
5
10
|
export * from './inline-response200';
|
|
6
11
|
export * from './inline-response503';
|
|
7
12
|
export * from './list-public-keys-response-class';
|
|
13
|
+
export * from './list-setting-definitions-response-class';
|
|
14
|
+
export * from './list-setting-keys-response-class';
|
|
15
|
+
export * from './list-setting-values-response-class';
|
|
8
16
|
export * from './public-key-class';
|
|
9
17
|
export * from './rotate-public-key-response-class';
|
|
18
|
+
export * from './setting-definition-class';
|
|
19
|
+
export * from './setting-definition-version-class';
|
|
20
|
+
export * from './setting-key-class';
|
|
21
|
+
export * from './setting-value-class';
|
|
10
22
|
export * from './update-public-key-request-dto';
|
|
11
23
|
export * from './update-public-key-response-class';
|
|
24
|
+
export * from './update-setting-key-request-rest-dto';
|
|
25
|
+
export * from './update-setting-key-response-class';
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingDefinitionClass } from './setting-definition-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListSettingDefinitionsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListSettingDefinitionsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Next page token.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListSettingDefinitionsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListSettingDefinitionsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListSettingDefinitionsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* An array of setting definition entities containing all definition details including code, key, and audit information
|
|
44
|
+
* @type {Array<SettingDefinitionClass>}
|
|
45
|
+
* @memberof ListSettingDefinitionsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<SettingDefinitionClass>;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingKeyClass } from './setting-key-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListSettingKeysResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListSettingKeysResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<SettingKeyClass>}
|
|
27
|
+
* @memberof ListSettingKeysResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<SettingKeyClass>;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListSettingKeysResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken'?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListSettingKeysResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage'?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListSettingKeysResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems'?: number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingValueClass } from './setting-value-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListSettingValuesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListSettingValuesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<SettingValueClass>}
|
|
27
|
+
* @memberof ListSettingValuesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<SettingValueClass>;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListSettingValuesResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken'?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListSettingValuesResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage'?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListSettingValuesResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems'?: number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL SettingService
|
|
5
|
+
* The EMIL SettingService 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
|
+
import { SettingDefinitionVersionClass } from './setting-definition-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface SettingDefinitionClass
|
|
22
|
+
*/
|
|
23
|
+
export interface SettingDefinitionClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SettingDefinitionClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SettingDefinitionClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* Global: {service}.global.{name}. Tenant: slug (e.g. tax_config).
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SettingDefinitionClass
|
|
40
|
+
*/
|
|
41
|
+
'definitionKey': string;
|
|
42
|
+
/**
|
|
43
|
+
* Backend service for global definitions; omitted for tenant definitions.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SettingDefinitionClass
|
|
46
|
+
*/
|
|
47
|
+
'ownerService'?: SettingDefinitionClassOwnerServiceEnum;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof SettingDefinitionClass
|
|
52
|
+
*/
|
|
53
|
+
'scope': SettingDefinitionClassScopeEnum;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof SettingDefinitionClass
|
|
58
|
+
*/
|
|
59
|
+
'isSecured': boolean;
|
|
60
|
+
/**
|
|
61
|
+
* Time at which the object was created.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SettingDefinitionClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was updated.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SettingDefinitionClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof SettingDefinitionClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SettingDefinitionClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
84
|
+
/**
|
|
85
|
+
* Schema snapshots. Included when expand=versions is requested on list.
|
|
86
|
+
* @type {Array<SettingDefinitionVersionClass>}
|
|
87
|
+
* @memberof SettingDefinitionClass
|
|
88
|
+
*/
|
|
89
|
+
'versions'?: Array<SettingDefinitionVersionClass>;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export const SettingDefinitionClassOwnerServiceEnum = {
|
|
93
|
+
Insuranceservice: 'insuranceservice',
|
|
94
|
+
Accountservice: 'accountservice',
|
|
95
|
+
Partnerservice: 'partnerservice',
|
|
96
|
+
Partnerportalservice: 'partnerportalservice',
|
|
97
|
+
Claimservice: 'claimservice',
|
|
98
|
+
Customerservice: 'customerservice',
|
|
99
|
+
Gdvservice: 'gdvservice',
|
|
100
|
+
Productsyncservice: 'productsyncservice',
|
|
101
|
+
Riskzoneservice: 'riskzoneservice',
|
|
102
|
+
Discountservice: 'discountservice',
|
|
103
|
+
Premiumcalculationservice: 'premiumcalculationservice',
|
|
104
|
+
Commissionservice: 'commissionservice',
|
|
105
|
+
Accountingservice: 'accountingservice',
|
|
106
|
+
Billingservice: 'billingservice',
|
|
107
|
+
Paymentservice: 'paymentservice',
|
|
108
|
+
Dunningservice: 'dunningservice',
|
|
109
|
+
Authservice: 'authservice',
|
|
110
|
+
Notificationservice: 'notificationservice',
|
|
111
|
+
Numbergenerator: 'numbergenerator',
|
|
112
|
+
Policyadministrationservice: 'policyadministrationservice',
|
|
113
|
+
Policydecisionservice: 'policydecisionservice',
|
|
114
|
+
Processmanagerservice: 'processmanagerservice',
|
|
115
|
+
Tenantservice: 'tenantservice',
|
|
116
|
+
Documentservice: 'documentservice',
|
|
117
|
+
Commentingservice: 'commentingservice',
|
|
118
|
+
Taskservice: 'taskservice',
|
|
119
|
+
Actionservice: 'actionservice',
|
|
120
|
+
Webhookservice: 'webhookservice',
|
|
121
|
+
Changelogservice: 'changelogservice',
|
|
122
|
+
Validationrulesservice: 'validationrulesservice'
|
|
123
|
+
} as const;
|
|
124
|
+
|
|
125
|
+
export type SettingDefinitionClassOwnerServiceEnum = typeof SettingDefinitionClassOwnerServiceEnum[keyof typeof SettingDefinitionClassOwnerServiceEnum];
|
|
126
|
+
export const SettingDefinitionClassScopeEnum = {
|
|
127
|
+
Product: 'product',
|
|
128
|
+
Infrastructure: 'infrastructure',
|
|
129
|
+
Finance: 'finance'
|
|
130
|
+
} as const;
|
|
131
|
+
|
|
132
|
+
export type SettingDefinitionClassScopeEnum = typeof SettingDefinitionClassScopeEnum[keyof typeof SettingDefinitionClassScopeEnum];
|
|
133
|
+
|
|
134
|
+
|