@emilgroup/setting-sdk-node 0.3.1-beta.15 → 0.3.1-beta.17

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.
@@ -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,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
+
package/models/index.ts CHANGED
@@ -2,10 +2,13 @@ export * from './create-public-key-request-dto';
2
2
  export * from './create-public-key-response-class';
3
3
  export * from './delete-public-key-request-dto';
4
4
  export * from './get-public-key-response-class';
5
+ export * from './get-setting-definition-response-class';
5
6
  export * from './inline-response200';
6
7
  export * from './inline-response503';
7
8
  export * from './list-public-keys-response-class';
9
+ export * from './list-setting-definitions-response-class';
8
10
  export * from './public-key-class';
9
11
  export * from './rotate-public-key-response-class';
12
+ export * from './setting-definition-class';
10
13
  export * from './update-public-key-request-dto';
11
14
  export * from './update-public-key-response-class';
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL SettingService
5
+ * The EMIL SettingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { SettingDefinitionClass } from './setting-definition-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListSettingDefinitionsResponseClass
22
+ */
23
+ export interface ListSettingDefinitionsResponseClass {
24
+ /**
25
+ * Next page token.
26
+ * @type {string}
27
+ * @memberof ListSettingDefinitionsResponseClass
28
+ */
29
+ 'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListSettingDefinitionsResponseClass
34
+ */
35
+ 'totalItems': number;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListSettingDefinitionsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * An array of setting definition entities containing all definition details including code, key, and audit information
44
+ * @type {Array<SettingDefinitionClass>}
45
+ * @memberof ListSettingDefinitionsResponseClass
46
+ */
47
+ 'items': Array<SettingDefinitionClass>;
48
+ }
49
+
@@ -0,0 +1,145 @@
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 SettingDefinitionClass
21
+ */
22
+ export interface SettingDefinitionClass {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof SettingDefinitionClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SettingDefinitionClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * Global: {service}.global.{name}. Tenant: slug (e.g. tax_config).
37
+ * @type {string}
38
+ * @memberof SettingDefinitionClass
39
+ */
40
+ 'definitionKey': string;
41
+ /**
42
+ * Backend service for global definitions; omitted for tenant definitions.
43
+ * @type {string}
44
+ * @memberof SettingDefinitionClass
45
+ */
46
+ 'ownerService'?: SettingDefinitionClassOwnerServiceEnum;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SettingDefinitionClass
51
+ */
52
+ 'scope': SettingDefinitionClassScopeEnum;
53
+ /**
54
+ *
55
+ * @type {object}
56
+ * @memberof SettingDefinitionClass
57
+ */
58
+ 'uiHints': object;
59
+ /**
60
+ *
61
+ * @type {boolean}
62
+ * @memberof SettingDefinitionClass
63
+ */
64
+ '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
+ /**
78
+ * Time at which the object was created.
79
+ * @type {string}
80
+ * @memberof SettingDefinitionClass
81
+ */
82
+ 'createdAt': string;
83
+ /**
84
+ * Time at which the object was updated.
85
+ * @type {string}
86
+ * @memberof SettingDefinitionClass
87
+ */
88
+ 'updatedAt': string;
89
+ /**
90
+ * Identifier of the user who created the record.
91
+ * @type {string}
92
+ * @memberof SettingDefinitionClass
93
+ */
94
+ 'createdBy': string;
95
+ /**
96
+ * Identifier of the user who last updated the record.
97
+ * @type {string}
98
+ * @memberof SettingDefinitionClass
99
+ */
100
+ 'updatedBy': string;
101
+ }
102
+
103
+ export const SettingDefinitionClassOwnerServiceEnum = {
104
+ Insuranceservice: 'insuranceservice',
105
+ Accountservice: 'accountservice',
106
+ Partnerservice: 'partnerservice',
107
+ Partnerportalservice: 'partnerportalservice',
108
+ Claimservice: 'claimservice',
109
+ Customerservice: 'customerservice',
110
+ Gdvservice: 'gdvservice',
111
+ Productsyncservice: 'productsyncservice',
112
+ Riskzoneservice: 'riskzoneservice',
113
+ Discountservice: 'discountservice',
114
+ Premiumcalculationservice: 'premiumcalculationservice',
115
+ Commissionservice: 'commissionservice',
116
+ Accountingservice: 'accountingservice',
117
+ Billingservice: 'billingservice',
118
+ Paymentservice: 'paymentservice',
119
+ Dunningservice: 'dunningservice',
120
+ Authservice: 'authservice',
121
+ Notificationservice: 'notificationservice',
122
+ Numbergenerator: 'numbergenerator',
123
+ Policyadministrationservice: 'policyadministrationservice',
124
+ Policydecisionservice: 'policydecisionservice',
125
+ Processmanagerservice: 'processmanagerservice',
126
+ Tenantservice: 'tenantservice',
127
+ Documentservice: 'documentservice',
128
+ Commentingservice: 'commentingservice',
129
+ Taskservice: 'taskservice',
130
+ Actionservice: 'actionservice',
131
+ Webhookservice: 'webhookservice',
132
+ Changelogservice: 'changelogservice',
133
+ Validationrulesservice: 'validationrulesservice'
134
+ } as const;
135
+
136
+ export type SettingDefinitionClassOwnerServiceEnum = typeof SettingDefinitionClassOwnerServiceEnum[keyof typeof SettingDefinitionClassOwnerServiceEnum];
137
+ export const SettingDefinitionClassScopeEnum = {
138
+ Product: 'product',
139
+ Infrastructure: 'infrastructure',
140
+ Finance: 'finance'
141
+ } as const;
142
+
143
+ export type SettingDefinitionClassScopeEnum = typeof SettingDefinitionClassScopeEnum[keyof typeof SettingDefinitionClassScopeEnum];
144
+
145
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/setting-sdk-node",
3
- "version": "0.3.1-beta.15",
3
+ "version": "0.3.1-beta.17",
4
4
  "description": "OpenAPI client for @emilgroup/setting-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [