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