@emilgroup/setting-sdk 0.3.1-beta.2 → 0.3.1-beta.21
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 +19 -0
- package/README.md +2 -2
- package/api/setting-definitions-api.ts +456 -0
- package/api/setting-keys-api.ts +864 -0
- package/api/setting-values-api.ts +246 -0
- package/api.ts +6 -0
- package/base.ts +1 -0
- package/dist/api/setting-definitions-api.d.ts +263 -0
- package/dist/api/setting-definitions-api.js +445 -0
- package/dist/api/setting-keys-api.d.ts +490 -0
- package/dist/api/setting-keys-api.js +764 -0
- package/dist/api/setting-values-api.d.ts +150 -0
- package/dist/api/setting-values-api.js +260 -0
- package/dist/api.d.ts +3 -0
- package/dist/api.js +3 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -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-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 +16 -0
- package/dist/models/index.js +16 -0
- package/dist/models/list-public-keys-response-class.d.ts +10 -10
- 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-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-definition-response-class.ts +31 -0
- package/models/get-setting-key-response-class.ts +31 -0
- package/models/index.ts +16 -0
- package/models/list-public-keys-response-class.ts +10 -10
- 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 +2 -2
|
@@ -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,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';
|
|
10
|
+
export * from './get-setting-definition-response-class';
|
|
11
|
+
export * from './get-setting-key-response-class';
|
|
5
12
|
export * from './inline-response200';
|
|
6
13
|
export * from './inline-response503';
|
|
7
14
|
export * from './list-public-keys-response-class';
|
|
15
|
+
export * from './list-setting-definitions-response-class';
|
|
16
|
+
export * from './list-setting-keys-response-class';
|
|
17
|
+
export * from './list-setting-values-response-class';
|
|
8
18
|
export * from './public-key-class';
|
|
9
19
|
export * from './rotate-public-key-response-class';
|
|
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';
|
|
10
24
|
export * from './update-public-key-request-dto';
|
|
11
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';
|
|
@@ -22,28 +22,28 @@ import { PublicKeyClass } from './public-key-class';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPublicKeysResponseClass {
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {
|
|
25
|
+
* Next page token.
|
|
26
|
+
* @type {string}
|
|
27
27
|
* @memberof ListPublicKeysResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'
|
|
29
|
+
'nextPageToken': string;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
33
|
* @memberof ListPublicKeysResponseClass
|
|
34
34
|
*/
|
|
35
|
-
'
|
|
35
|
+
'totalItems': number;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Items per page.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof ListPublicKeysResponseClass
|
|
40
40
|
*/
|
|
41
41
|
'itemsPerPage': number;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
43
|
+
* An array of public key entities containing all key details including code, slug, key value, and audit information
|
|
44
|
+
* @type {Array<PublicKeyClass>}
|
|
45
45
|
* @memberof ListPublicKeysResponseClass
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'items': Array<PublicKeyClass>;
|
|
48
48
|
}
|
|
49
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 { 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
|
+
|
|
@@ -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
|
+
|
|
@@ -0,0 +1,91 @@
|
|
|
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 SettingKeyClass
|
|
22
|
+
*/
|
|
23
|
+
export interface SettingKeyClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SettingKeyClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SettingKeyClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* Schema definition this setting key conforms to. Immutable after create.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SettingKeyClass
|
|
40
|
+
*/
|
|
41
|
+
'definitionCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* The immutable definition key defined by the developer.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SettingKeyClass
|
|
46
|
+
*/
|
|
47
|
+
'definitionKey': string;
|
|
48
|
+
/**
|
|
49
|
+
* Immutable unique tenant identifier
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof SettingKeyClass
|
|
52
|
+
*/
|
|
53
|
+
'slug': string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof SettingKeyClass
|
|
58
|
+
*/
|
|
59
|
+
'isSecured'?: boolean;
|
|
60
|
+
/**
|
|
61
|
+
* Time at which the object was created.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SettingKeyClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was updated.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SettingKeyClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof SettingKeyClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SettingKeyClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
84
|
+
/**
|
|
85
|
+
* Value versions with payload and etag. Populated on create, update, and get responses. Use the values list endpoint for full version history.
|
|
86
|
+
* @type {Array<SettingValueClass>}
|
|
87
|
+
* @memberof SettingKeyClass
|
|
88
|
+
*/
|
|
89
|
+
'values'?: Array<SettingValueClass>;
|
|
90
|
+
}
|
|
91
|
+
|
|
@@ -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 SettingValueClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SettingValueClass {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof SettingValueClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SettingValueClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SettingValueClass
|
|
39
|
+
*/
|
|
40
|
+
'definitionVersionCode': string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof SettingValueClass
|
|
45
|
+
*/
|
|
46
|
+
'value'?: object;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof SettingValueClass
|
|
51
|
+
*/
|
|
52
|
+
'secretRef'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Version-specific concurrency token for optimistic updates.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof SettingValueClass
|
|
57
|
+
*/
|
|
58
|
+
'etag': string;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof SettingValueClass
|
|
63
|
+
*/
|
|
64
|
+
'version': number;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was created.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof SettingValueClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Identifier of the user who created the record.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof SettingValueClass
|
|
75
|
+
*/
|
|
76
|
+
'createdBy': string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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 UpdateSettingKeyRequestRestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateSettingKeyRequestRestDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {object}
|
|
26
|
+
* @memberof UpdateSettingKeyRequestRestDto
|
|
27
|
+
*/
|
|
28
|
+
'value': object;
|
|
29
|
+
/**
|
|
30
|
+
* Optional schema snapshot to rebind this setting value to before validation.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateSettingKeyRequestRestDto
|
|
33
|
+
*/
|
|
34
|
+
'definitionVersionCode'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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 UpdateSettingKeyResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateSettingKeyResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {SettingKeyClass}
|
|
27
|
+
* @memberof UpdateSettingKeyResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'settingKey': SettingKeyClass;
|
|
30
|
+
}
|
|
31
|
+
|