@fenixalliance/abs-api-client 1.0.8 → 1.0.10
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/app/index.js +2 -2
- package/app/index.ts +1 -1
- package/clients/contentService/index.ts +2 -2
- package/clients/contentService/models/{Portal.ts → PortalSettings.ts} +1 -1
- package/clients/contentService/models/PortalSettingsEnvelope.ts +14 -0
- package/clients/contentService/services/PortalsService.js +23 -12
- package/clients/contentService/services/PortalsService.ts +25 -14
- package/clients/crmService/services/ContactsService.js +86 -28
- package/clients/crmService/services/ContactsService.ts +86 -28
- package/clients/holderService/index.js +7 -3
- package/clients/holderService/index.ts +4 -2
- package/clients/holderService/models/FollowRecordDtoListEnvelope.ts +14 -0
- package/clients/holderService/services/{HolderService.js → IdentityService.js} +65 -157
- package/clients/holderService/services/{HolderService.ts → IdentityService.ts} +70 -186
- package/clients/holderService/services/TenantsService.js +151 -0
- package/clients/holderService/services/TenantsService.ts +176 -0
- package/clients/holderService/services/UserService.js +364 -0
- package/clients/holderService/services/UserService.ts +421 -0
- package/clients/storageService/core/ApiError.js +20 -0
- package/clients/storageService/core/ApiError.ts +25 -0
- package/clients/storageService/core/ApiRequestOptions.ts +17 -0
- package/clients/storageService/core/ApiResult.ts +11 -0
- package/clients/storageService/core/CancelablePromise.js +104 -0
- package/clients/storageService/core/CancelablePromise.ts +131 -0
- package/clients/storageService/core/OpenAPI.js +14 -0
- package/clients/storageService/core/OpenAPI.ts +32 -0
- package/clients/storageService/core/request.js +294 -0
- package/clients/storageService/core/request.ts +322 -0
- package/clients/storageService/index.js +26 -0
- package/clients/storageService/index.ts +23 -0
- package/clients/storageService/models/Blob.js +11 -0
- package/clients/storageService/models/Blob.ts +26 -0
- package/clients/{contentService/models/PortalEnvelope.ts → storageService/models/BlobEnvelope.ts} +3 -3
- package/clients/{holderService/models/EmptyEnvelopeEnvelope.ts → storageService/models/EmptyEnvelope.ts} +1 -3
- package/clients/storageService/models/ErrorEnvelope.ts +12 -0
- package/clients/storageService/models/FileUploadCreateDto.ts +20 -0
- package/clients/storageService/models/FileUploadDto.js +2 -0
- package/clients/storageService/models/FileUploadDto.ts +29 -0
- package/clients/storageService/models/FileUploadDtoEnvelope.js +2 -0
- package/clients/storageService/models/FileUploadDtoEnvelope.ts +14 -0
- package/clients/storageService/models/FileUploadUpdateDto.js +2 -0
- package/clients/storageService/models/FileUploadUpdateDto.ts +19 -0
- package/clients/storageService/services/AvatarsService.js +200 -0
- package/clients/storageService/services/AvatarsService.ts +234 -0
- package/clients/storageService/services/BlobsService.js +66 -0
- package/clients/storageService/services/BlobsService.ts +81 -0
- package/clients/{tenantService/services/EnrollmentsService.js → storageService/services/FilesService.js} +50 -42
- package/clients/{tenantService/services/UnitsService.ts → storageService/services/FilesService.ts} +75 -65
- package/clients/storageService/services/RadzenEditorService.js +117 -0
- package/clients/storageService/services/RadzenEditorService.ts +149 -0
- package/clients/storageService/services/UploadsService.js +33 -0
- package/clients/storageService/services/UploadsService.ts +53 -0
- package/clients/systemService/services/ModulesService.js +4 -2
- package/clients/systemService/services/ModulesService.ts +4 -2
- package/clients/systemService/services/TenantsService.js +24 -8
- package/clients/systemService/services/TenantsService.ts +24 -8
- package/clients/tenantService/index.js +1 -29
- package/clients/tenantService/index.ts +7 -20
- package/clients/tenantService/models/TenantIndustryDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/TenantIndustryDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamContactEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.ts → TenantTeamDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamEmployeeEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamProjectEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamRecordDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts → TenantTeamRecordDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTypeDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTypeDtoIReadOnlyCollectionEnvelope.ts → TenantTypeDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/services/SizesService.js +15 -5
- package/clients/tenantService/services/SizesService.ts +15 -5
- package/clients/tenantService/services/TenantsService.js +2554 -233
- package/clients/tenantService/services/TenantsService.ts +3004 -307
- package/package.json +1 -1
- package/schemas/contentService/schema.s.ts +877 -844
- package/schemas/crmService/schema.s.ts +1776 -1516
- package/schemas/holderService/schema.s.ts +1024 -789
- package/schemas/storageService/schema.s.js +6 -0
- package/schemas/storageService/schema.s.ts +1087 -0
- package/schemas/systemService/schema.s.ts +465 -387
- package/schemas/tenantService/schema.s.ts +5713 -4820
- package/clients/tenantService/services/DepartmentsService.js +0 -161
- package/clients/tenantService/services/DepartmentsService.ts +0 -192
- package/clients/tenantService/services/EmployeeEnrollmentsService.js +0 -153
- package/clients/tenantService/services/EmployeeEnrollmentsService.ts +0 -181
- package/clients/tenantService/services/EnrollmentsService.ts +0 -195
- package/clients/tenantService/services/IndustriesService.js +0 -161
- package/clients/tenantService/services/IndustriesService.ts +0 -190
- package/clients/tenantService/services/InvitationsService.js +0 -128
- package/clients/tenantService/services/InvitationsService.ts +0 -150
- package/clients/tenantService/services/PositionsService.js +0 -161
- package/clients/tenantService/services/PositionsService.ts +0 -192
- package/clients/tenantService/services/SegmentsService.js +0 -161
- package/clients/tenantService/services/SegmentsService.ts +0 -191
- package/clients/tenantService/services/TeamContactEnrollmentsService.js +0 -161
- package/clients/tenantService/services/TeamContactEnrollmentsService.ts +0 -191
- package/clients/tenantService/services/TeamProjectEnrollmentService.js +0 -153
- package/clients/tenantService/services/TeamProjectEnrollmentService.ts +0 -181
- package/clients/tenantService/services/TeamRecordsService.js +0 -161
- package/clients/tenantService/services/TeamRecordsService.ts +0 -192
- package/clients/tenantService/services/TeamsService.js +0 -161
- package/clients/tenantService/services/TeamsService.ts +0 -192
- package/clients/tenantService/services/TerritoriesService.js +0 -161
- package/clients/tenantService/services/TerritoriesService.ts +0 -192
- package/clients/tenantService/services/TypesService.js +0 -149
- package/clients/tenantService/services/TypesService.ts +0 -176
- package/clients/tenantService/services/UnitsService.js +0 -159
- /package/clients/contentService/models/{Portal.js → PortalSettings.js} +0 -0
- /package/clients/contentService/models/{PortalEnvelope.js → PortalSettingsEnvelope.js} +0 -0
- /package/clients/holderService/models/{EmptyEnvelopeEnvelope.js → FollowRecordDtoListEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/core/ApiRequestOptions.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.js → storageService/core/ApiResult.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/models/BlobEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/models/EmptyEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.js → storageService/models/ErrorEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.js → storageService/models/FileUploadCreateDto.js} +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { TenantIndustryDto } from './TenantIndustryDto';
|
|
6
|
+
export type TenantIndustryDtoListEnvelope = {
|
|
7
|
+
readonly isSuccess?: boolean;
|
|
8
|
+
errorMessage?: string | null;
|
|
9
|
+
correlationId?: string | null;
|
|
10
|
+
readonly timestamp?: string;
|
|
11
|
+
readonly activityId?: string | null;
|
|
12
|
+
result?: Array<TenantIndustryDto> | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { TenantTeamContactEnrollmentDto } from './TenantTeamContactEnrollmentDto';
|
|
6
|
-
export type
|
|
6
|
+
export type TenantTeamContactEnrollmentDtoListEnvelope = {
|
|
7
7
|
readonly isSuccess?: boolean;
|
|
8
8
|
errorMessage?: string | null;
|
|
9
9
|
correlationId?: string | null;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { TenantTeamDto } from './TenantTeamDto';
|
|
6
|
-
export type
|
|
6
|
+
export type TenantTeamDtoListEnvelope = {
|
|
7
7
|
readonly isSuccess?: boolean;
|
|
8
8
|
errorMessage?: string | null;
|
|
9
9
|
correlationId?: string | null;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { TenantTeamEmployeeEnrollmentDto } from './TenantTeamEmployeeEnrollmentDto';
|
|
6
|
-
export type
|
|
6
|
+
export type TenantTeamEmployeeEnrollmentDtoListEnvelope = {
|
|
7
7
|
readonly isSuccess?: boolean;
|
|
8
8
|
errorMessage?: string | null;
|
|
9
9
|
correlationId?: string | null;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { TenantTeamProjectEnrollmentDto } from './TenantTeamProjectEnrollmentDto';
|
|
6
|
-
export type
|
|
6
|
+
export type TenantTeamProjectEnrollmentDtoListEnvelope = {
|
|
7
7
|
readonly isSuccess?: boolean;
|
|
8
8
|
errorMessage?: string | null;
|
|
9
9
|
correlationId?: string | null;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { TenantTeamRecordDto } from './TenantTeamRecordDto';
|
|
6
|
-
export type
|
|
6
|
+
export type TenantTeamRecordDtoListEnvelope = {
|
|
7
7
|
readonly isSuccess?: boolean;
|
|
8
8
|
errorMessage?: string | null;
|
|
9
9
|
correlationId?: string | null;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { TenantTypeDto } from './TenantTypeDto';
|
|
6
|
-
export type
|
|
6
|
+
export type TenantTypeDtoListEnvelope = {
|
|
7
7
|
readonly isSuccess?: boolean;
|
|
8
8
|
errorMessage?: string | null;
|
|
9
9
|
correlationId?: string | null;
|
|
@@ -32,12 +32,14 @@ class SizesService {
|
|
|
32
32
|
});
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
+
* Retrieves a list of tenant sizes for a specific tenant
|
|
36
|
+
* Retrieves a list of tenant sizes for a specific tenant and returns an envelope.
|
|
35
37
|
* @param tenantId
|
|
36
38
|
* @param xApiVersion
|
|
37
39
|
* @returns TenantSizeDtoListEnvelope OK
|
|
38
40
|
* @throws ApiError
|
|
39
41
|
*/
|
|
40
|
-
static
|
|
42
|
+
static getTenantSizesAsync(tenantId, xApiVersion) {
|
|
41
43
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
42
44
|
method: 'GET',
|
|
43
45
|
url: '/api/v2/Sizes',
|
|
@@ -54,12 +56,14 @@ class SizesService {
|
|
|
54
56
|
});
|
|
55
57
|
}
|
|
56
58
|
/**
|
|
59
|
+
* Retrieves a single tenant size by its ID
|
|
60
|
+
* Retrieves a single tenant size by its ID and returns an envelope.
|
|
57
61
|
* @param tenantSizeId
|
|
58
62
|
* @param xApiVersion
|
|
59
63
|
* @returns TenantSizeDtoEnvelope OK
|
|
60
64
|
* @throws ApiError
|
|
61
65
|
*/
|
|
62
|
-
static
|
|
66
|
+
static getTenantSizeByIdAsync(tenantSizeId, xApiVersion) {
|
|
63
67
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
64
68
|
method: 'GET',
|
|
65
69
|
url: '/api/v2/Sizes/{tenantSizeId}',
|
|
@@ -76,6 +80,8 @@ class SizesService {
|
|
|
76
80
|
});
|
|
77
81
|
}
|
|
78
82
|
/**
|
|
83
|
+
* Updates a tenant size
|
|
84
|
+
* Updates a tenant size and returns an envelope.
|
|
79
85
|
* @param tenantId
|
|
80
86
|
* @param tenantSizeId
|
|
81
87
|
* @param xApiVersion
|
|
@@ -83,7 +89,7 @@ class SizesService {
|
|
|
83
89
|
* @returns TenantSizeDtoEnvelope OK
|
|
84
90
|
* @throws ApiError
|
|
85
91
|
*/
|
|
86
|
-
static
|
|
92
|
+
static updateTenantSizeAsync(tenantId, tenantSizeId, xApiVersion, requestBody) {
|
|
87
93
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
88
94
|
method: 'PUT',
|
|
89
95
|
url: '/api/v2/Sizes/{tenantSizeId}',
|
|
@@ -105,6 +111,8 @@ class SizesService {
|
|
|
105
111
|
});
|
|
106
112
|
}
|
|
107
113
|
/**
|
|
114
|
+
* Partially updates a tenant size
|
|
115
|
+
* Partially updates a tenant size and returns an empty envelope.
|
|
108
116
|
* @param tenantId
|
|
109
117
|
* @param tenantSizeId
|
|
110
118
|
* @param xApiVersion
|
|
@@ -112,7 +120,7 @@ class SizesService {
|
|
|
112
120
|
* @returns EmptyEnvelope OK
|
|
113
121
|
* @throws ApiError
|
|
114
122
|
*/
|
|
115
|
-
static
|
|
123
|
+
static patchTenantSizeAsync(tenantId, tenantSizeId, xApiVersion, requestBody) {
|
|
116
124
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
117
125
|
method: 'PATCH',
|
|
118
126
|
url: '/api/v2/Sizes/{tenantSizeId}',
|
|
@@ -134,13 +142,15 @@ class SizesService {
|
|
|
134
142
|
});
|
|
135
143
|
}
|
|
136
144
|
/**
|
|
145
|
+
* Deletes a tenant size by its ID
|
|
146
|
+
* Deletes a tenant size by its ID and returns an envelope.
|
|
137
147
|
* @param tenantId
|
|
138
148
|
* @param tenantSizeId
|
|
139
149
|
* @param xApiVersion
|
|
140
150
|
* @returns TenantSizeDtoEnvelope OK
|
|
141
151
|
* @throws ApiError
|
|
142
152
|
*/
|
|
143
|
-
static
|
|
153
|
+
static deleteTenantSizeAsync(tenantId, tenantSizeId, xApiVersion) {
|
|
144
154
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
145
155
|
method: 'DELETE',
|
|
146
156
|
url: '/api/v2/Sizes/{tenantSizeId}',
|
|
@@ -44,12 +44,14 @@ export class SizesService {
|
|
|
44
44
|
});
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
+
* Retrieves a list of tenant sizes for a specific tenant
|
|
48
|
+
* Retrieves a list of tenant sizes for a specific tenant and returns an envelope.
|
|
47
49
|
* @param tenantId
|
|
48
50
|
* @param xApiVersion
|
|
49
51
|
* @returns TenantSizeDtoListEnvelope OK
|
|
50
52
|
* @throws ApiError
|
|
51
53
|
*/
|
|
52
|
-
public static
|
|
54
|
+
public static getTenantSizesAsync(
|
|
53
55
|
tenantId: string,
|
|
54
56
|
xApiVersion?: string,
|
|
55
57
|
): CancelablePromise<TenantSizeDtoListEnvelope> {
|
|
@@ -69,12 +71,14 @@ export class SizesService {
|
|
|
69
71
|
});
|
|
70
72
|
}
|
|
71
73
|
/**
|
|
74
|
+
* Retrieves a single tenant size by its ID
|
|
75
|
+
* Retrieves a single tenant size by its ID and returns an envelope.
|
|
72
76
|
* @param tenantSizeId
|
|
73
77
|
* @param xApiVersion
|
|
74
78
|
* @returns TenantSizeDtoEnvelope OK
|
|
75
79
|
* @throws ApiError
|
|
76
80
|
*/
|
|
77
|
-
public static
|
|
81
|
+
public static getTenantSizeByIdAsync(
|
|
78
82
|
tenantSizeId: string,
|
|
79
83
|
xApiVersion?: string,
|
|
80
84
|
): CancelablePromise<TenantSizeDtoEnvelope> {
|
|
@@ -94,6 +98,8 @@ export class SizesService {
|
|
|
94
98
|
});
|
|
95
99
|
}
|
|
96
100
|
/**
|
|
101
|
+
* Updates a tenant size
|
|
102
|
+
* Updates a tenant size and returns an envelope.
|
|
97
103
|
* @param tenantId
|
|
98
104
|
* @param tenantSizeId
|
|
99
105
|
* @param xApiVersion
|
|
@@ -101,7 +107,7 @@ export class SizesService {
|
|
|
101
107
|
* @returns TenantSizeDtoEnvelope OK
|
|
102
108
|
* @throws ApiError
|
|
103
109
|
*/
|
|
104
|
-
public static
|
|
110
|
+
public static updateTenantSizeAsync(
|
|
105
111
|
tenantId: string,
|
|
106
112
|
tenantSizeId: string,
|
|
107
113
|
xApiVersion?: string,
|
|
@@ -128,6 +134,8 @@ export class SizesService {
|
|
|
128
134
|
});
|
|
129
135
|
}
|
|
130
136
|
/**
|
|
137
|
+
* Partially updates a tenant size
|
|
138
|
+
* Partially updates a tenant size and returns an empty envelope.
|
|
131
139
|
* @param tenantId
|
|
132
140
|
* @param tenantSizeId
|
|
133
141
|
* @param xApiVersion
|
|
@@ -135,7 +143,7 @@ export class SizesService {
|
|
|
135
143
|
* @returns EmptyEnvelope OK
|
|
136
144
|
* @throws ApiError
|
|
137
145
|
*/
|
|
138
|
-
public static
|
|
146
|
+
public static patchTenantSizeAsync(
|
|
139
147
|
tenantId: string,
|
|
140
148
|
tenantSizeId: string,
|
|
141
149
|
xApiVersion?: string,
|
|
@@ -162,13 +170,15 @@ export class SizesService {
|
|
|
162
170
|
});
|
|
163
171
|
}
|
|
164
172
|
/**
|
|
173
|
+
* Deletes a tenant size by its ID
|
|
174
|
+
* Deletes a tenant size by its ID and returns an envelope.
|
|
165
175
|
* @param tenantId
|
|
166
176
|
* @param tenantSizeId
|
|
167
177
|
* @param xApiVersion
|
|
168
178
|
* @returns TenantSizeDtoEnvelope OK
|
|
169
179
|
* @throws ApiError
|
|
170
180
|
*/
|
|
171
|
-
public static
|
|
181
|
+
public static deleteTenantSizeAsync(
|
|
172
182
|
tenantId: string,
|
|
173
183
|
tenantSizeId: string,
|
|
174
184
|
xApiVersion?: string,
|