@emilgroup/tenant-sdk 1.7.0 → 1.8.0
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 +3 -0
- package/README.md +2 -2
- package/base.ts +1 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/create-tenant-request-dto.d.ts +3 -2
- package/dist/models/format-tenant-settings-class.d.ts +24 -0
- package/dist/models/format-tenant-settings-class.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/initial-tenant-config-class.d.ts +31 -0
- package/dist/models/initial-tenant-config-class.js +15 -0
- package/dist/models/tenant-settings-class.d.ts +55 -0
- package/dist/models/tenant-settings-class.js +15 -0
- package/models/create-tenant-request-dto.ts +3 -2
- package/models/format-tenant-settings-class.ts +30 -0
- package/models/index.ts +3 -0
- package/models/initial-tenant-config-class.ts +37 -0
- package/models/tenant-settings-class.ts +61 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -46,12 +46,14 @@ models/disable-users-response-class.ts
|
|
|
46
46
|
models/enable-user-response-class.ts
|
|
47
47
|
models/enable-users-request-dto.ts
|
|
48
48
|
models/enable-users-response-class.ts
|
|
49
|
+
models/format-tenant-settings-class.ts
|
|
49
50
|
models/get-custom-schema-response-class.ts
|
|
50
51
|
models/get-data-report-response-class.ts
|
|
51
52
|
models/get-organization-response-class.ts
|
|
52
53
|
models/get-settings-response-class.ts
|
|
53
54
|
models/get-user-response-class.ts
|
|
54
55
|
models/index.ts
|
|
56
|
+
models/initial-tenant-config-class.ts
|
|
55
57
|
models/inline-response200.ts
|
|
56
58
|
models/inline-response503.ts
|
|
57
59
|
models/invite-class.ts
|
|
@@ -79,6 +81,7 @@ models/set-setting-request-dto.ts
|
|
|
79
81
|
models/set-user-setting-response-class.ts
|
|
80
82
|
models/subscription-class.ts
|
|
81
83
|
models/tenant-admin-user-dto.ts
|
|
84
|
+
models/tenant-settings-class.ts
|
|
82
85
|
models/update-custom-schema-request-dto.ts
|
|
83
86
|
models/update-custom-schema-response-class.ts
|
|
84
87
|
models/update-data-report-request-dto.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/tenant-sdk@1.
|
|
20
|
+
npm install @emilgroup/tenant-sdk@1.8.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk@1.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk@1.8.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/base.ts
CHANGED
package/dist/base.d.ts
CHANGED
|
@@ -29,7 +29,8 @@ export interface LoginClass {
|
|
|
29
29
|
export declare enum Environment {
|
|
30
30
|
Production = "https://apiv2.emil.de",
|
|
31
31
|
Test = "https://apiv2-test.emil.de",
|
|
32
|
-
Development = "https://apiv2-dev.emil.de"
|
|
32
|
+
Development = "https://apiv2-dev.emil.de",
|
|
33
|
+
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
33
34
|
}
|
|
34
35
|
export declare function resetRetry(): void;
|
|
35
36
|
/**
|
package/dist/base.js
CHANGED
|
@@ -100,6 +100,7 @@ var Environment;
|
|
|
100
100
|
Environment["Production"] = "https://apiv2.emil.de";
|
|
101
101
|
Environment["Test"] = "https://apiv2-test.emil.de";
|
|
102
102
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
103
|
+
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
103
104
|
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
104
105
|
var _retry_count = 0;
|
|
105
106
|
var _retry = null;
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { DBConfigDto } from './dbconfig-dto';
|
|
13
|
+
import { InitialTenantConfigClass } from './initial-tenant-config-class';
|
|
13
14
|
import { TenantAdminUserDto } from './tenant-admin-user-dto';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -43,10 +44,10 @@ export interface CreateTenantRequestDto {
|
|
|
43
44
|
'dbConfig'?: DBConfigDto;
|
|
44
45
|
/**
|
|
45
46
|
* Initial tenant settings like roles, tenant configurations about payment etc
|
|
46
|
-
* @type {
|
|
47
|
+
* @type {InitialTenantConfigClass}
|
|
47
48
|
* @memberof CreateTenantRequestDto
|
|
48
49
|
*/
|
|
49
|
-
'initialConfig'
|
|
50
|
+
'initialConfig': InitialTenantConfigClass;
|
|
50
51
|
/**
|
|
51
52
|
*
|
|
52
53
|
* @type {string}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 FormatTenantSettingsClass
|
|
16
|
+
*/
|
|
17
|
+
export interface FormatTenantSettingsClass {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FormatTenantSettingsClass
|
|
22
|
+
*/
|
|
23
|
+
'slug': string;
|
|
24
|
+
}
|
|
@@ -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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -24,11 +24,13 @@ export * from './disable-users-response-class';
|
|
|
24
24
|
export * from './enable-user-response-class';
|
|
25
25
|
export * from './enable-users-request-dto';
|
|
26
26
|
export * from './enable-users-response-class';
|
|
27
|
+
export * from './format-tenant-settings-class';
|
|
27
28
|
export * from './get-custom-schema-response-class';
|
|
28
29
|
export * from './get-data-report-response-class';
|
|
29
30
|
export * from './get-organization-response-class';
|
|
30
31
|
export * from './get-settings-response-class';
|
|
31
32
|
export * from './get-user-response-class';
|
|
33
|
+
export * from './initial-tenant-config-class';
|
|
32
34
|
export * from './inline-response200';
|
|
33
35
|
export * from './inline-response503';
|
|
34
36
|
export * from './invite-class';
|
|
@@ -56,6 +58,7 @@ export * from './set-setting-request-dto';
|
|
|
56
58
|
export * from './set-user-setting-response-class';
|
|
57
59
|
export * from './subscription-class';
|
|
58
60
|
export * from './tenant-admin-user-dto';
|
|
61
|
+
export * from './tenant-settings-class';
|
|
59
62
|
export * from './update-custom-schema-request-dto';
|
|
60
63
|
export * from './update-custom-schema-response-class';
|
|
61
64
|
export * from './update-data-report-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -40,11 +40,13 @@ __exportStar(require("./disable-users-response-class"), exports);
|
|
|
40
40
|
__exportStar(require("./enable-user-response-class"), exports);
|
|
41
41
|
__exportStar(require("./enable-users-request-dto"), exports);
|
|
42
42
|
__exportStar(require("./enable-users-response-class"), exports);
|
|
43
|
+
__exportStar(require("./format-tenant-settings-class"), exports);
|
|
43
44
|
__exportStar(require("./get-custom-schema-response-class"), exports);
|
|
44
45
|
__exportStar(require("./get-data-report-response-class"), exports);
|
|
45
46
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
46
47
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
47
48
|
__exportStar(require("./get-user-response-class"), exports);
|
|
49
|
+
__exportStar(require("./initial-tenant-config-class"), exports);
|
|
48
50
|
__exportStar(require("./inline-response200"), exports);
|
|
49
51
|
__exportStar(require("./inline-response503"), exports);
|
|
50
52
|
__exportStar(require("./invite-class"), exports);
|
|
@@ -72,6 +74,7 @@ __exportStar(require("./set-setting-request-dto"), exports);
|
|
|
72
74
|
__exportStar(require("./set-user-setting-response-class"), exports);
|
|
73
75
|
__exportStar(require("./subscription-class"), exports);
|
|
74
76
|
__exportStar(require("./tenant-admin-user-dto"), exports);
|
|
77
|
+
__exportStar(require("./tenant-settings-class"), exports);
|
|
75
78
|
__exportStar(require("./update-custom-schema-request-dto"), exports);
|
|
76
79
|
__exportStar(require("./update-custom-schema-response-class"), exports);
|
|
77
80
|
__exportStar(require("./update-data-report-request-dto"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
import { TenantSettingsClass } from './tenant-settings-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface InitialTenantConfigClass
|
|
17
|
+
*/
|
|
18
|
+
export interface InitialTenantConfigClass {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {TenantSettingsClass}
|
|
22
|
+
* @memberof InitialTenantConfigClass
|
|
23
|
+
*/
|
|
24
|
+
'tenantSettings': TenantSettingsClass;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<string>}
|
|
28
|
+
* @memberof InitialTenantConfigClass
|
|
29
|
+
*/
|
|
30
|
+
'roles': Array<string>;
|
|
31
|
+
}
|
|
@@ -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,55 @@
|
|
|
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
|
+
import { FormatTenantSettingsClass } from './format-tenant-settings-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface TenantSettingsClass
|
|
17
|
+
*/
|
|
18
|
+
export interface TenantSettingsClass {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {FormatTenantSettingsClass}
|
|
22
|
+
* @memberof TenantSettingsClass
|
|
23
|
+
*/
|
|
24
|
+
'policy_number_format_config': FormatTenantSettingsClass;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {FormatTenantSettingsClass}
|
|
28
|
+
* @memberof TenantSettingsClass
|
|
29
|
+
*/
|
|
30
|
+
'account_number_format_config': FormatTenantSettingsClass;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {FormatTenantSettingsClass}
|
|
34
|
+
* @memberof TenantSettingsClass
|
|
35
|
+
*/
|
|
36
|
+
'claim_number_format_config': FormatTenantSettingsClass;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {FormatTenantSettingsClass}
|
|
40
|
+
* @memberof TenantSettingsClass
|
|
41
|
+
*/
|
|
42
|
+
'invoice_number_format_config': FormatTenantSettingsClass;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {FormatTenantSettingsClass}
|
|
46
|
+
* @memberof TenantSettingsClass
|
|
47
|
+
*/
|
|
48
|
+
'lead_number_format_config': FormatTenantSettingsClass;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {FormatTenantSettingsClass}
|
|
52
|
+
* @memberof TenantSettingsClass
|
|
53
|
+
*/
|
|
54
|
+
'customer_number_format_config': FormatTenantSettingsClass;
|
|
55
|
+
}
|
|
@@ -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 });
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import { DBConfigDto } from './dbconfig-dto';
|
|
17
|
+
import { InitialTenantConfigClass } from './initial-tenant-config-class';
|
|
17
18
|
import { TenantAdminUserDto } from './tenant-admin-user-dto';
|
|
18
19
|
|
|
19
20
|
/**
|
|
@@ -48,10 +49,10 @@ export interface CreateTenantRequestDto {
|
|
|
48
49
|
'dbConfig'?: DBConfigDto;
|
|
49
50
|
/**
|
|
50
51
|
* Initial tenant settings like roles, tenant configurations about payment etc
|
|
51
|
-
* @type {
|
|
52
|
+
* @type {InitialTenantConfigClass}
|
|
52
53
|
* @memberof CreateTenantRequestDto
|
|
53
54
|
*/
|
|
54
|
-
'initialConfig'
|
|
55
|
+
'initialConfig': InitialTenantConfigClass;
|
|
55
56
|
/**
|
|
56
57
|
*
|
|
57
58
|
* @type {string}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 FormatTenantSettingsClass
|
|
21
|
+
*/
|
|
22
|
+
export interface FormatTenantSettingsClass {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof FormatTenantSettingsClass
|
|
27
|
+
*/
|
|
28
|
+
'slug': string;
|
|
29
|
+
}
|
|
30
|
+
|
package/models/index.ts
CHANGED
|
@@ -24,11 +24,13 @@ export * from './disable-users-response-class';
|
|
|
24
24
|
export * from './enable-user-response-class';
|
|
25
25
|
export * from './enable-users-request-dto';
|
|
26
26
|
export * from './enable-users-response-class';
|
|
27
|
+
export * from './format-tenant-settings-class';
|
|
27
28
|
export * from './get-custom-schema-response-class';
|
|
28
29
|
export * from './get-data-report-response-class';
|
|
29
30
|
export * from './get-organization-response-class';
|
|
30
31
|
export * from './get-settings-response-class';
|
|
31
32
|
export * from './get-user-response-class';
|
|
33
|
+
export * from './initial-tenant-config-class';
|
|
32
34
|
export * from './inline-response200';
|
|
33
35
|
export * from './inline-response503';
|
|
34
36
|
export * from './invite-class';
|
|
@@ -56,6 +58,7 @@ export * from './set-setting-request-dto';
|
|
|
56
58
|
export * from './set-user-setting-response-class';
|
|
57
59
|
export * from './subscription-class';
|
|
58
60
|
export * from './tenant-admin-user-dto';
|
|
61
|
+
export * from './tenant-settings-class';
|
|
59
62
|
export * from './update-custom-schema-request-dto';
|
|
60
63
|
export * from './update-custom-schema-response-class';
|
|
61
64
|
export * from './update-data-report-request-dto';
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
import { TenantSettingsClass } from './tenant-settings-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface InitialTenantConfigClass
|
|
22
|
+
*/
|
|
23
|
+
export interface InitialTenantConfigClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {TenantSettingsClass}
|
|
27
|
+
* @memberof InitialTenantConfigClass
|
|
28
|
+
*/
|
|
29
|
+
'tenantSettings': TenantSettingsClass;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof InitialTenantConfigClass
|
|
34
|
+
*/
|
|
35
|
+
'roles': Array<string>;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
import { FormatTenantSettingsClass } from './format-tenant-settings-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface TenantSettingsClass
|
|
22
|
+
*/
|
|
23
|
+
export interface TenantSettingsClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {FormatTenantSettingsClass}
|
|
27
|
+
* @memberof TenantSettingsClass
|
|
28
|
+
*/
|
|
29
|
+
'policy_number_format_config': FormatTenantSettingsClass;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {FormatTenantSettingsClass}
|
|
33
|
+
* @memberof TenantSettingsClass
|
|
34
|
+
*/
|
|
35
|
+
'account_number_format_config': FormatTenantSettingsClass;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {FormatTenantSettingsClass}
|
|
39
|
+
* @memberof TenantSettingsClass
|
|
40
|
+
*/
|
|
41
|
+
'claim_number_format_config': FormatTenantSettingsClass;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {FormatTenantSettingsClass}
|
|
45
|
+
* @memberof TenantSettingsClass
|
|
46
|
+
*/
|
|
47
|
+
'invoice_number_format_config': FormatTenantSettingsClass;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {FormatTenantSettingsClass}
|
|
51
|
+
* @memberof TenantSettingsClass
|
|
52
|
+
*/
|
|
53
|
+
'lead_number_format_config': FormatTenantSettingsClass;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {FormatTenantSettingsClass}
|
|
57
|
+
* @memberof TenantSettingsClass
|
|
58
|
+
*/
|
|
59
|
+
'customer_number_format_config': FormatTenantSettingsClass;
|
|
60
|
+
}
|
|
61
|
+
|