@emilgroup/setting-sdk-node 0.3.1-beta.17 → 0.3.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 +15 -0
- package/README.md +2 -2
- package/api/setting-definitions-api.ts +121 -14
- package/api/setting-keys-api.ts +868 -0
- package/api/setting-values-api.ts +250 -0
- package/api.ts +4 -0
- package/dist/api/setting-definitions-api.d.ts +64 -7
- package/dist/api/setting-definitions-api.js +106 -13
- 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 +2 -0
- package/dist/api.js +2 -0
- package/dist/models/create-setting-definition-request-dto.d.ts +93 -0
- package/dist/models/create-setting-definition-request-dto.js +53 -0
- package/dist/models/create-setting-definition-response-class.d.ts +25 -0
- package/dist/models/create-setting-definition-response-class.js +15 -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-key-response-class.d.ts +25 -0
- package/dist/models/get-setting-key-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -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 +7 -18
- 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-definition-request-dto.ts +103 -0
- package/models/create-setting-definition-response-class.ts +31 -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-key-response-class.ts +31 -0
- package/models/index.ts +13 -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 +7 -18
- 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,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,103 @@
|
|
|
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 CreateSettingDefinitionRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateSettingDefinitionRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Global: {service}.global.{name} (e.g. insuranceservice.global.tax_config). Tenant: single slug (e.g. tax_config).
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateSettingDefinitionRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'definitionKey': string;
|
|
29
|
+
/**
|
|
30
|
+
* Owning backend service. Required for global definitions only; tenant definitions are owned by the platform.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateSettingDefinitionRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'ownerService'?: CreateSettingDefinitionRequestDtoOwnerServiceEnum;
|
|
35
|
+
/**
|
|
36
|
+
* Logical group for organizing settings (e.g. product, payment).
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateSettingDefinitionRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'scope': CreateSettingDefinitionRequestDtoScopeEnum;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof CreateSettingDefinitionRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'schema': object;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {object}
|
|
50
|
+
* @memberof CreateSettingDefinitionRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'uiHints': object;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof CreateSettingDefinitionRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'isSecured': boolean;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export const CreateSettingDefinitionRequestDtoOwnerServiceEnum = {
|
|
62
|
+
Insuranceservice: 'insuranceservice',
|
|
63
|
+
Accountservice: 'accountservice',
|
|
64
|
+
Partnerservice: 'partnerservice',
|
|
65
|
+
Partnerportalservice: 'partnerportalservice',
|
|
66
|
+
Claimservice: 'claimservice',
|
|
67
|
+
Customerservice: 'customerservice',
|
|
68
|
+
Gdvservice: 'gdvservice',
|
|
69
|
+
Productsyncservice: 'productsyncservice',
|
|
70
|
+
Riskzoneservice: 'riskzoneservice',
|
|
71
|
+
Discountservice: 'discountservice',
|
|
72
|
+
Premiumcalculationservice: 'premiumcalculationservice',
|
|
73
|
+
Commissionservice: 'commissionservice',
|
|
74
|
+
Accountingservice: 'accountingservice',
|
|
75
|
+
Billingservice: 'billingservice',
|
|
76
|
+
Paymentservice: 'paymentservice',
|
|
77
|
+
Dunningservice: 'dunningservice',
|
|
78
|
+
Authservice: 'authservice',
|
|
79
|
+
Notificationservice: 'notificationservice',
|
|
80
|
+
Numbergenerator: 'numbergenerator',
|
|
81
|
+
Policyadministrationservice: 'policyadministrationservice',
|
|
82
|
+
Policydecisionservice: 'policydecisionservice',
|
|
83
|
+
Processmanagerservice: 'processmanagerservice',
|
|
84
|
+
Tenantservice: 'tenantservice',
|
|
85
|
+
Documentservice: 'documentservice',
|
|
86
|
+
Commentingservice: 'commentingservice',
|
|
87
|
+
Taskservice: 'taskservice',
|
|
88
|
+
Actionservice: 'actionservice',
|
|
89
|
+
Webhookservice: 'webhookservice',
|
|
90
|
+
Changelogservice: 'changelogservice',
|
|
91
|
+
Validationrulesservice: 'validationrulesservice'
|
|
92
|
+
} as const;
|
|
93
|
+
|
|
94
|
+
export type CreateSettingDefinitionRequestDtoOwnerServiceEnum = typeof CreateSettingDefinitionRequestDtoOwnerServiceEnum[keyof typeof CreateSettingDefinitionRequestDtoOwnerServiceEnum];
|
|
95
|
+
export const CreateSettingDefinitionRequestDtoScopeEnum = {
|
|
96
|
+
Product: 'product',
|
|
97
|
+
Infrastructure: 'infrastructure',
|
|
98
|
+
Finance: 'finance'
|
|
99
|
+
} as const;
|
|
100
|
+
|
|
101
|
+
export type CreateSettingDefinitionRequestDtoScopeEnum = typeof CreateSettingDefinitionRequestDtoScopeEnum[keyof typeof CreateSettingDefinitionRequestDtoScopeEnum];
|
|
102
|
+
|
|
103
|
+
|
|
@@ -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 CreateSettingDefinitionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateSettingDefinitionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {SettingDefinitionClass}
|
|
27
|
+
* @memberof CreateSettingDefinitionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'definition': SettingDefinitionClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { 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,14 +1,27 @@
|
|
|
1
1
|
export * from './create-public-key-request-dto';
|
|
2
2
|
export * from './create-public-key-response-class';
|
|
3
|
+
export * from './create-setting-definition-request-dto';
|
|
4
|
+
export * from './create-setting-definition-response-class';
|
|
5
|
+
export * from './create-setting-key-request-dto';
|
|
6
|
+
export * from './create-setting-key-response-class';
|
|
3
7
|
export * from './delete-public-key-request-dto';
|
|
8
|
+
export * from './delete-setting-key-response-class';
|
|
4
9
|
export * from './get-public-key-response-class';
|
|
5
10
|
export * from './get-setting-definition-response-class';
|
|
11
|
+
export * from './get-setting-key-response-class';
|
|
6
12
|
export * from './inline-response200';
|
|
7
13
|
export * from './inline-response503';
|
|
8
14
|
export * from './list-public-keys-response-class';
|
|
9
15
|
export * from './list-setting-definitions-response-class';
|
|
16
|
+
export * from './list-setting-keys-response-class';
|
|
17
|
+
export * from './list-setting-values-response-class';
|
|
10
18
|
export * from './public-key-class';
|
|
11
19
|
export * from './rotate-public-key-response-class';
|
|
12
20
|
export * from './setting-definition-class';
|
|
21
|
+
export * from './setting-definition-version-class';
|
|
22
|
+
export * from './setting-key-class';
|
|
23
|
+
export * from './setting-value-class';
|
|
13
24
|
export * from './update-public-key-request-dto';
|
|
14
25
|
export * from './update-public-key-response-class';
|
|
26
|
+
export * from './update-setting-key-request-rest-dto';
|
|
27
|
+
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 { 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
|
+
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { SettingDefinitionVersionClass } from './setting-definition-version-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -50,30 +51,12 @@ export interface SettingDefinitionClass {
|
|
|
50
51
|
* @memberof SettingDefinitionClass
|
|
51
52
|
*/
|
|
52
53
|
'scope': SettingDefinitionClassScopeEnum;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @type {object}
|
|
56
|
-
* @memberof SettingDefinitionClass
|
|
57
|
-
*/
|
|
58
|
-
'uiHints': object;
|
|
59
54
|
/**
|
|
60
55
|
*
|
|
61
56
|
* @type {boolean}
|
|
62
57
|
* @memberof SettingDefinitionClass
|
|
63
58
|
*/
|
|
64
59
|
'isSecured': boolean;
|
|
65
|
-
/**
|
|
66
|
-
* Monotonic schema version. Incremented on each definition write that changes the schema snapshot.
|
|
67
|
-
* @type {number}
|
|
68
|
-
* @memberof SettingDefinitionClass
|
|
69
|
-
*/
|
|
70
|
-
'version': number;
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof SettingDefinitionClass
|
|
75
|
-
*/
|
|
76
|
-
'schemaHash': string;
|
|
77
60
|
/**
|
|
78
61
|
* Time at which the object was created.
|
|
79
62
|
* @type {string}
|
|
@@ -98,6 +81,12 @@ export interface SettingDefinitionClass {
|
|
|
98
81
|
* @memberof SettingDefinitionClass
|
|
99
82
|
*/
|
|
100
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>;
|
|
101
90
|
}
|
|
102
91
|
|
|
103
92
|
export const SettingDefinitionClassOwnerServiceEnum = {
|
|
@@ -0,0 +1,78 @@
|
|
|
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 SettingDefinitionVersionClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SettingDefinitionVersionClass {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof SettingDefinitionVersionClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SettingDefinitionVersionClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SettingDefinitionVersionClass
|
|
39
|
+
*/
|
|
40
|
+
'definitionKey': string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof SettingDefinitionVersionClass
|
|
45
|
+
*/
|
|
46
|
+
'schemaVersion': number;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof SettingDefinitionVersionClass
|
|
51
|
+
*/
|
|
52
|
+
'schemaHash': string;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof SettingDefinitionVersionClass
|
|
57
|
+
*/
|
|
58
|
+
'schema': object;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {object}
|
|
62
|
+
* @memberof SettingDefinitionVersionClass
|
|
63
|
+
*/
|
|
64
|
+
'uiHints': object;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof SettingDefinitionVersionClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof SettingDefinitionVersionClass
|
|
75
|
+
*/
|
|
76
|
+
'createdBy': string;
|
|
77
|
+
}
|
|
78
|
+
|