@emilgroup/tenant-sdk-node 1.33.1-beta.8 → 1.34.1-beta.14
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 +5 -0
- package/README.md +2 -2
- package/api/invitation-controller-rest-api.ts +561 -0
- package/api/invite-users-api.ts +12 -12
- package/api/settings-api.ts +304 -0
- package/api/user-controller-rest-api.ts +1413 -0
- package/api/users-api.ts +12 -12
- package/api.ts +4 -0
- package/base.ts +1 -0
- package/dist/api/invitation-controller-rest-api.d.ts +315 -0
- package/dist/api/invitation-controller-rest-api.js +538 -0
- package/dist/api/invite-users-api.d.ts +12 -12
- package/dist/api/invite-users-api.js +10 -10
- package/dist/api/settings-api.d.ts +156 -0
- package/dist/api/settings-api.js +268 -0
- package/dist/api/user-controller-rest-api.d.ts +777 -0
- package/dist/api/user-controller-rest-api.js +1227 -0
- package/dist/api/users-api.d.ts +12 -12
- package/dist/api/users-api.js +10 -10
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/get-settings-response-class.d.ts +5 -3
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/set-setting-grpc-request-dto.d.ts +42 -0
- package/dist/models/set-setting-grpc-request-dto.js +15 -0
- package/dist/models/set-setting-request-dto.d.ts +6 -6
- package/dist/models/set-tenant-setting-response-class.d.ts +36 -0
- package/dist/models/set-tenant-setting-response-class.js +15 -0
- package/dist/models/set-user-setting-response-class.d.ts +36 -0
- package/dist/models/set-user-setting-response-class.js +15 -0
- package/dist/models/tenant-settings-class.d.ts +6 -0
- package/models/get-settings-response-class.ts +3 -3
- package/models/index.ts +3 -0
- package/models/set-setting-grpc-request-dto.ts +48 -0
- package/models/set-setting-request-dto.ts +6 -6
- package/models/set-tenant-setting-response-class.ts +42 -0
- package/models/set-user-setting-response-class.ts +42 -0
- package/models/tenant-settings-class.ts +6 -0
- package/package.json +2 -2
package/dist/api/users-api.d.ts
CHANGED
|
@@ -82,16 +82,16 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
82
82
|
*/
|
|
83
83
|
linkUserWithPartner: (code: string, linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
84
|
/**
|
|
85
|
-
* Returns a list of users you have previously created.
|
|
85
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
86
86
|
* @summary List users
|
|
87
87
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
88
88
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
89
89
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
90
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
90
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
91
91
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
92
92
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, firstName, lastName</i>
|
|
93
93
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: subscriptions, organizations<i>
|
|
94
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
94
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
95
95
|
* @param {*} [options] Override http request option.
|
|
96
96
|
* @throws {RequiredError}
|
|
97
97
|
*/
|
|
@@ -155,16 +155,16 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
155
155
|
*/
|
|
156
156
|
linkUserWithPartner(code: string, linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkUserWithPartnerResponseClass>>;
|
|
157
157
|
/**
|
|
158
|
-
* Returns a list of users you have previously created.
|
|
158
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
159
159
|
* @summary List users
|
|
160
160
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
161
161
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
162
162
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
163
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
163
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
164
164
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
165
165
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, firstName, lastName</i>
|
|
166
166
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: subscriptions, organizations<i>
|
|
167
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
167
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
168
168
|
* @param {*} [options] Override http request option.
|
|
169
169
|
* @throws {RequiredError}
|
|
170
170
|
*/
|
|
@@ -228,16 +228,16 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
228
228
|
*/
|
|
229
229
|
linkUserWithPartner(code: string, linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest, authorization?: string, options?: any): AxiosPromise<LinkUserWithPartnerResponseClass>;
|
|
230
230
|
/**
|
|
231
|
-
* Returns a list of users you have previously created.
|
|
231
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
232
232
|
* @summary List users
|
|
233
233
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
234
234
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
235
235
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
236
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
236
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
237
237
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
238
238
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, firstName, lastName</i>
|
|
239
239
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: subscriptions, organizations<i>
|
|
240
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
240
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
241
241
|
* @param {*} [options] Override http request option.
|
|
242
242
|
* @throws {RequiredError}
|
|
243
243
|
*/
|
|
@@ -400,7 +400,7 @@ export interface UsersApiListUsersRequest {
|
|
|
400
400
|
*/
|
|
401
401
|
readonly pageToken?: string;
|
|
402
402
|
/**
|
|
403
|
-
* Filter the response by one or multiple fields.
|
|
403
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
404
404
|
* @type {string}
|
|
405
405
|
* @memberof UsersApiListUsers
|
|
406
406
|
*/
|
|
@@ -424,7 +424,7 @@ export interface UsersApiListUsersRequest {
|
|
|
424
424
|
*/
|
|
425
425
|
readonly expand?: string;
|
|
426
426
|
/**
|
|
427
|
-
* Filters the response by one or multiple fields.
|
|
427
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
428
428
|
* @type {string}
|
|
429
429
|
* @memberof UsersApiListUsers
|
|
430
430
|
*/
|
|
@@ -487,7 +487,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
487
487
|
*/
|
|
488
488
|
linkUserWithPartner(requestParameters: UsersApiLinkUserWithPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkUserWithPartnerResponseClass, any, {}>>;
|
|
489
489
|
/**
|
|
490
|
-
* Returns a list of users you have previously created.
|
|
490
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
491
491
|
* @summary List users
|
|
492
492
|
* @param {UsersApiListUsersRequest} requestParameters Request parameters.
|
|
493
493
|
* @param {*} [options] Override http request option.
|
package/dist/api/users-api.js
CHANGED
|
@@ -397,16 +397,16 @@ var UsersApiAxiosParamCreator = function (configuration) {
|
|
|
397
397
|
});
|
|
398
398
|
},
|
|
399
399
|
/**
|
|
400
|
-
* Returns a list of users you have previously created.
|
|
400
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
401
401
|
* @summary List users
|
|
402
402
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
403
403
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
404
404
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
405
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
405
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
406
406
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
407
407
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, firstName, lastName</i>
|
|
408
408
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: subscriptions, organizations<i>
|
|
409
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
409
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
410
410
|
* @param {*} [options] Override http request option.
|
|
411
411
|
* @throws {RequiredError}
|
|
412
412
|
*/
|
|
@@ -603,16 +603,16 @@ var UsersApiFp = function (configuration) {
|
|
|
603
603
|
});
|
|
604
604
|
},
|
|
605
605
|
/**
|
|
606
|
-
* Returns a list of users you have previously created.
|
|
606
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
607
607
|
* @summary List users
|
|
608
608
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
609
609
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
610
610
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
611
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
611
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
612
612
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
613
613
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, firstName, lastName</i>
|
|
614
614
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: subscriptions, organizations<i>
|
|
615
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
615
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
616
616
|
* @param {*} [options] Override http request option.
|
|
617
617
|
* @throws {RequiredError}
|
|
618
618
|
*/
|
|
@@ -704,16 +704,16 @@ var UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
704
704
|
return localVarFp.linkUserWithPartner(code, linkUserWithPartnerRequestDtoRest, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
705
705
|
},
|
|
706
706
|
/**
|
|
707
|
-
* Returns a list of users you have previously created.
|
|
707
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
708
708
|
* @summary List users
|
|
709
709
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
710
710
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
711
711
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
712
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
712
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
713
713
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
714
714
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, firstName, lastName</i>
|
|
715
715
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: subscriptions, organizations<i>
|
|
716
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
716
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, email, sub, status, organizationId, ern, partnerCode</i>
|
|
717
717
|
* @param {*} [options] Override http request option.
|
|
718
718
|
* @throws {RequiredError}
|
|
719
719
|
*/
|
|
@@ -802,7 +802,7 @@ var UsersApi = /** @class */ (function (_super) {
|
|
|
802
802
|
return (0, exports.UsersApiFp)(this.configuration).linkUserWithPartner(requestParameters.code, requestParameters.linkUserWithPartnerRequestDtoRest, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
803
803
|
};
|
|
804
804
|
/**
|
|
805
|
-
* Returns a list of users you have previously created.
|
|
805
|
+
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.users.view\"
|
|
806
806
|
* @summary List users
|
|
807
807
|
* @param {UsersApiListUsersRequest} requestParameters Request parameters.
|
|
808
808
|
* @param {*} [options] Override http request option.
|
package/dist/api.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from './api/data-report-api';
|
|
|
16
16
|
export * from './api/data-report-executor-api';
|
|
17
17
|
export * from './api/delete-organization-invitations-api';
|
|
18
18
|
export * from './api/health-check-api';
|
|
19
|
+
export * from './api/invitation-controller-rest-api';
|
|
19
20
|
export * from './api/invite-organizations-api';
|
|
20
21
|
export * from './api/invite-users-api';
|
|
21
22
|
export * from './api/list-organization-invitations-api';
|
|
@@ -24,4 +25,5 @@ export * from './api/organizations-api';
|
|
|
24
25
|
export * from './api/re-invite-an-organization-api';
|
|
25
26
|
export * from './api/roles-api';
|
|
26
27
|
export * from './api/settings-api';
|
|
28
|
+
export * from './api/user-controller-rest-api';
|
|
27
29
|
export * from './api/users-api';
|
package/dist/api.js
CHANGED
|
@@ -34,6 +34,7 @@ __exportStar(require("./api/data-report-api"), exports);
|
|
|
34
34
|
__exportStar(require("./api/data-report-executor-api"), exports);
|
|
35
35
|
__exportStar(require("./api/delete-organization-invitations-api"), exports);
|
|
36
36
|
__exportStar(require("./api/health-check-api"), exports);
|
|
37
|
+
__exportStar(require("./api/invitation-controller-rest-api"), exports);
|
|
37
38
|
__exportStar(require("./api/invite-organizations-api"), exports);
|
|
38
39
|
__exportStar(require("./api/invite-users-api"), exports);
|
|
39
40
|
__exportStar(require("./api/list-organization-invitations-api"), exports);
|
|
@@ -42,4 +43,5 @@ __exportStar(require("./api/organizations-api"), exports);
|
|
|
42
43
|
__exportStar(require("./api/re-invite-an-organization-api"), exports);
|
|
43
44
|
__exportStar(require("./api/roles-api"), exports);
|
|
44
45
|
__exportStar(require("./api/settings-api"), exports);
|
|
46
|
+
__exportStar(require("./api/user-controller-rest-api"), exports);
|
|
45
47
|
__exportStar(require("./api/users-api"), exports);
|
package/dist/base.d.ts
CHANGED
|
@@ -39,7 +39,8 @@ export declare enum Environment {
|
|
|
39
39
|
Test = "https://apiv2-test.emil.de",
|
|
40
40
|
Staging = "https://apiv2-staging.emil.de",
|
|
41
41
|
Development = "https://apiv2-dev.emil.de",
|
|
42
|
-
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
42
|
+
ProductionZurich = "https://eu-central-2.apiv2.emil.de",
|
|
43
|
+
StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
|
|
43
44
|
}
|
|
44
45
|
export declare function resetRetry(): void;
|
|
45
46
|
/**
|
package/dist/base.js
CHANGED
|
@@ -132,6 +132,7 @@ var Environment;
|
|
|
132
132
|
Environment["Staging"] = "https://apiv2-staging.emil.de";
|
|
133
133
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
134
134
|
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
135
|
+
Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
|
|
135
136
|
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
136
137
|
var _retry_count = 0;
|
|
137
138
|
var _retry = null;
|
|
@@ -16,9 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface GetSettingsResponseClass {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {Array<string>}
|
|
19
|
+
* Values aligned with the requested keys order. Each item is either a JSON primitive, an array, `null`, or an object (object-shaped settings include `isSensitive` when applicable). Example: `[ \"stripe\" ]` for a string setting.
|
|
20
|
+
* @type {Array<{ [key: string]: object; }>}
|
|
21
21
|
* @memberof GetSettingsResponseClass
|
|
22
22
|
*/
|
|
23
|
-
'values': Array<
|
|
23
|
+
'values': Array<{
|
|
24
|
+
[key: string]: object;
|
|
25
|
+
}>;
|
|
24
26
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -76,7 +76,10 @@ export * from './revert-organization-migration-response-class';
|
|
|
76
76
|
export * from './role-class';
|
|
77
77
|
export * from './run-data-report-request-dto';
|
|
78
78
|
export * from './run-data-report-response-class';
|
|
79
|
+
export * from './set-setting-grpc-request-dto';
|
|
79
80
|
export * from './set-setting-request-dto';
|
|
81
|
+
export * from './set-tenant-setting-response-class';
|
|
82
|
+
export * from './set-user-setting-response-class';
|
|
80
83
|
export * from './subscription-class';
|
|
81
84
|
export * from './tenant-admin-user-dto';
|
|
82
85
|
export * from './tenant-settings-class';
|
package/dist/models/index.js
CHANGED
|
@@ -92,7 +92,10 @@ __exportStar(require("./revert-organization-migration-response-class"), exports)
|
|
|
92
92
|
__exportStar(require("./role-class"), exports);
|
|
93
93
|
__exportStar(require("./run-data-report-request-dto"), exports);
|
|
94
94
|
__exportStar(require("./run-data-report-response-class"), exports);
|
|
95
|
+
__exportStar(require("./set-setting-grpc-request-dto"), exports);
|
|
95
96
|
__exportStar(require("./set-setting-request-dto"), exports);
|
|
97
|
+
__exportStar(require("./set-tenant-setting-response-class"), exports);
|
|
98
|
+
__exportStar(require("./set-user-setting-response-class"), exports);
|
|
96
99
|
__exportStar(require("./subscription-class"), exports);
|
|
97
100
|
__exportStar(require("./tenant-admin-user-dto"), exports);
|
|
98
101
|
__exportStar(require("./tenant-settings-class"), exports);
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL Tenant Service
|
|
3
|
+
* The EMIL TenantService 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 SetSettingGrpcRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface SetSettingGrpcRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SetSettingGrpcRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetSettingGrpcRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'value': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SetSettingGrpcRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'type': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof SetSettingGrpcRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'isSensitive'?: boolean;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService 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,21 +16,21 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface SetSettingRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Setting key.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof SetSettingRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'key': string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {
|
|
25
|
+
* Setting value.
|
|
26
|
+
* @type {object}
|
|
27
27
|
* @memberof SetSettingRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'value':
|
|
29
|
+
'value': object;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {boolean}
|
|
33
33
|
* @memberof SetSettingRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'
|
|
35
|
+
'isSensitive'?: boolean;
|
|
36
36
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL Tenant Service
|
|
3
|
+
* The EMIL TenantService 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 SetTenantSettingResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SetTenantSettingResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Setting key.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SetTenantSettingResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
* Setting value.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetTenantSettingResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'value': string;
|
|
30
|
+
/**
|
|
31
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SetTenantSettingResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'type': string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService 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,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL Tenant Service
|
|
3
|
+
* The EMIL TenantService 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 SetUserSettingResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SetUserSettingResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Setting key.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SetUserSettingResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
* Setting value.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetUserSettingResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'value': string;
|
|
30
|
+
/**
|
|
31
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SetUserSettingResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'type': string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService 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 });
|
|
@@ -58,4 +58,10 @@ export interface TenantSettingsClass {
|
|
|
58
58
|
* @memberof TenantSettingsClass
|
|
59
59
|
*/
|
|
60
60
|
'payment_request_number_format_config': FormatTenantSettingsClass;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {FormatTenantSettingsClass}
|
|
64
|
+
* @memberof TenantSettingsClass
|
|
65
|
+
*/
|
|
66
|
+
'claim_position_number_format_config': FormatTenantSettingsClass;
|
|
61
67
|
}
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetSettingsResponseClass {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {Array<string>}
|
|
24
|
+
* Values aligned with the requested keys order. Each item is either a JSON primitive, an array, `null`, or an object (object-shaped settings include `isSensitive` when applicable). Example: `[ \"stripe\" ]` for a string setting.
|
|
25
|
+
* @type {Array<{ [key: string]: object; }>}
|
|
26
26
|
* @memberof GetSettingsResponseClass
|
|
27
27
|
*/
|
|
28
|
-
'values': Array<string>;
|
|
28
|
+
'values': Array<{ [key: string]: object; }>;
|
|
29
29
|
}
|
|
30
30
|
|
package/models/index.ts
CHANGED
|
@@ -76,7 +76,10 @@ export * from './revert-organization-migration-response-class';
|
|
|
76
76
|
export * from './role-class';
|
|
77
77
|
export * from './run-data-report-request-dto';
|
|
78
78
|
export * from './run-data-report-response-class';
|
|
79
|
+
export * from './set-setting-grpc-request-dto';
|
|
79
80
|
export * from './set-setting-request-dto';
|
|
81
|
+
export * from './set-tenant-setting-response-class';
|
|
82
|
+
export * from './set-user-setting-response-class';
|
|
80
83
|
export * from './subscription-class';
|
|
81
84
|
export * from './tenant-admin-user-dto';
|
|
82
85
|
export * from './tenant-settings-class';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService 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 SetSettingGrpcRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface SetSettingGrpcRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SetSettingGrpcRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SetSettingGrpcRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'value': string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SetSettingGrpcRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof SetSettingGrpcRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'isSensitive'?: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface SetSettingRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Setting key.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof SetSettingRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'key': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {
|
|
30
|
+
* Setting value.
|
|
31
|
+
* @type {object}
|
|
32
32
|
* @memberof SetSettingRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'value':
|
|
34
|
+
'value': object;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {boolean}
|
|
38
38
|
* @memberof SetSettingRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'isSensitive'?: boolean;
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService 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 SetTenantSettingResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SetTenantSettingResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Setting key.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SetTenantSettingResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
* Setting value.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SetTenantSettingResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'value': string;
|
|
35
|
+
/**
|
|
36
|
+
* Type indicates whether the setting applies to user or tenant.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SetTenantSettingResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
41
|
+
}
|
|
42
|
+
|