@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,53 @@
|
|
|
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 });
|
|
16
|
+
exports.SettingDefinitionClassScopeEnum = exports.SettingDefinitionClassOwnerServiceEnum = void 0;
|
|
17
|
+
exports.SettingDefinitionClassOwnerServiceEnum = {
|
|
18
|
+
Insuranceservice: 'insuranceservice',
|
|
19
|
+
Accountservice: 'accountservice',
|
|
20
|
+
Partnerservice: 'partnerservice',
|
|
21
|
+
Partnerportalservice: 'partnerportalservice',
|
|
22
|
+
Claimservice: 'claimservice',
|
|
23
|
+
Customerservice: 'customerservice',
|
|
24
|
+
Gdvservice: 'gdvservice',
|
|
25
|
+
Productsyncservice: 'productsyncservice',
|
|
26
|
+
Riskzoneservice: 'riskzoneservice',
|
|
27
|
+
Discountservice: 'discountservice',
|
|
28
|
+
Premiumcalculationservice: 'premiumcalculationservice',
|
|
29
|
+
Commissionservice: 'commissionservice',
|
|
30
|
+
Accountingservice: 'accountingservice',
|
|
31
|
+
Billingservice: 'billingservice',
|
|
32
|
+
Paymentservice: 'paymentservice',
|
|
33
|
+
Dunningservice: 'dunningservice',
|
|
34
|
+
Authservice: 'authservice',
|
|
35
|
+
Notificationservice: 'notificationservice',
|
|
36
|
+
Numbergenerator: 'numbergenerator',
|
|
37
|
+
Policyadministrationservice: 'policyadministrationservice',
|
|
38
|
+
Policydecisionservice: 'policydecisionservice',
|
|
39
|
+
Processmanagerservice: 'processmanagerservice',
|
|
40
|
+
Tenantservice: 'tenantservice',
|
|
41
|
+
Documentservice: 'documentservice',
|
|
42
|
+
Commentingservice: 'commentingservice',
|
|
43
|
+
Taskservice: 'taskservice',
|
|
44
|
+
Actionservice: 'actionservice',
|
|
45
|
+
Webhookservice: 'webhookservice',
|
|
46
|
+
Changelogservice: 'changelogservice',
|
|
47
|
+
Validationrulesservice: 'validationrulesservice'
|
|
48
|
+
};
|
|
49
|
+
exports.SettingDefinitionClassScopeEnum = {
|
|
50
|
+
Product: 'product',
|
|
51
|
+
Infrastructure: 'infrastructure',
|
|
52
|
+
Finance: 'finance'
|
|
53
|
+
};
|
|
@@ -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 SettingDefinitionVersionClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SettingDefinitionVersionClass {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SettingDefinitionVersionClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SettingDefinitionVersionClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SettingDefinitionVersionClass
|
|
34
|
+
*/
|
|
35
|
+
'definitionKey': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof SettingDefinitionVersionClass
|
|
40
|
+
*/
|
|
41
|
+
'schemaVersion': number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SettingDefinitionVersionClass
|
|
46
|
+
*/
|
|
47
|
+
'schemaHash': string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {object}
|
|
51
|
+
* @memberof SettingDefinitionVersionClass
|
|
52
|
+
*/
|
|
53
|
+
'schema': object;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {object}
|
|
57
|
+
* @memberof SettingDefinitionVersionClass
|
|
58
|
+
*/
|
|
59
|
+
'uiHints': object;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SettingDefinitionVersionClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SettingDefinitionVersionClass
|
|
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,85 @@
|
|
|
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 { SettingValueClass } from './setting-value-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SettingKeyClass
|
|
17
|
+
*/
|
|
18
|
+
export interface SettingKeyClass {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof SettingKeyClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof SettingKeyClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* Schema definition this setting key conforms to. Immutable after create.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof SettingKeyClass
|
|
35
|
+
*/
|
|
36
|
+
'definitionCode': string;
|
|
37
|
+
/**
|
|
38
|
+
* The immutable definition key defined by the developer.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof SettingKeyClass
|
|
41
|
+
*/
|
|
42
|
+
'definitionKey': string;
|
|
43
|
+
/**
|
|
44
|
+
* Immutable unique tenant identifier
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof SettingKeyClass
|
|
47
|
+
*/
|
|
48
|
+
'slug': string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {boolean}
|
|
52
|
+
* @memberof SettingKeyClass
|
|
53
|
+
*/
|
|
54
|
+
'isSecured'?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Time at which the object was created.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof SettingKeyClass
|
|
59
|
+
*/
|
|
60
|
+
'createdAt': string;
|
|
61
|
+
/**
|
|
62
|
+
* Time at which the object was updated.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof SettingKeyClass
|
|
65
|
+
*/
|
|
66
|
+
'updatedAt': string;
|
|
67
|
+
/**
|
|
68
|
+
* Identifier of the user who created the record.
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof SettingKeyClass
|
|
71
|
+
*/
|
|
72
|
+
'createdBy': string;
|
|
73
|
+
/**
|
|
74
|
+
* Identifier of the user who last updated the record.
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof SettingKeyClass
|
|
77
|
+
*/
|
|
78
|
+
'updatedBy': string;
|
|
79
|
+
/**
|
|
80
|
+
* Value versions with payload and etag. Populated on create, update, and get responses. Use the values list endpoint for full version history.
|
|
81
|
+
* @type {Array<SettingValueClass>}
|
|
82
|
+
* @memberof SettingKeyClass
|
|
83
|
+
*/
|
|
84
|
+
'values'?: Array<SettingValueClass>;
|
|
85
|
+
}
|
|
@@ -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,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,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 { 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
|
+
|