@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.
Files changed (119) hide show
  1. package/app/index.js +2 -2
  2. package/app/index.ts +1 -1
  3. package/clients/contentService/index.ts +2 -2
  4. package/clients/contentService/models/{Portal.ts → PortalSettings.ts} +1 -1
  5. package/clients/contentService/models/PortalSettingsEnvelope.ts +14 -0
  6. package/clients/contentService/services/PortalsService.js +23 -12
  7. package/clients/contentService/services/PortalsService.ts +25 -14
  8. package/clients/crmService/services/ContactsService.js +86 -28
  9. package/clients/crmService/services/ContactsService.ts +86 -28
  10. package/clients/holderService/index.js +7 -3
  11. package/clients/holderService/index.ts +4 -2
  12. package/clients/holderService/models/FollowRecordDtoListEnvelope.ts +14 -0
  13. package/clients/holderService/services/{HolderService.js → IdentityService.js} +65 -157
  14. package/clients/holderService/services/{HolderService.ts → IdentityService.ts} +70 -186
  15. package/clients/holderService/services/TenantsService.js +151 -0
  16. package/clients/holderService/services/TenantsService.ts +176 -0
  17. package/clients/holderService/services/UserService.js +364 -0
  18. package/clients/holderService/services/UserService.ts +421 -0
  19. package/clients/storageService/core/ApiError.js +20 -0
  20. package/clients/storageService/core/ApiError.ts +25 -0
  21. package/clients/storageService/core/ApiRequestOptions.ts +17 -0
  22. package/clients/storageService/core/ApiResult.ts +11 -0
  23. package/clients/storageService/core/CancelablePromise.js +104 -0
  24. package/clients/storageService/core/CancelablePromise.ts +131 -0
  25. package/clients/storageService/core/OpenAPI.js +14 -0
  26. package/clients/storageService/core/OpenAPI.ts +32 -0
  27. package/clients/storageService/core/request.js +294 -0
  28. package/clients/storageService/core/request.ts +322 -0
  29. package/clients/storageService/index.js +26 -0
  30. package/clients/storageService/index.ts +23 -0
  31. package/clients/storageService/models/Blob.js +11 -0
  32. package/clients/storageService/models/Blob.ts +26 -0
  33. package/clients/{contentService/models/PortalEnvelope.ts → storageService/models/BlobEnvelope.ts} +3 -3
  34. package/clients/{holderService/models/EmptyEnvelopeEnvelope.ts → storageService/models/EmptyEnvelope.ts} +1 -3
  35. package/clients/storageService/models/ErrorEnvelope.ts +12 -0
  36. package/clients/storageService/models/FileUploadCreateDto.ts +20 -0
  37. package/clients/storageService/models/FileUploadDto.js +2 -0
  38. package/clients/storageService/models/FileUploadDto.ts +29 -0
  39. package/clients/storageService/models/FileUploadDtoEnvelope.js +2 -0
  40. package/clients/storageService/models/FileUploadDtoEnvelope.ts +14 -0
  41. package/clients/storageService/models/FileUploadUpdateDto.js +2 -0
  42. package/clients/storageService/models/FileUploadUpdateDto.ts +19 -0
  43. package/clients/storageService/services/AvatarsService.js +200 -0
  44. package/clients/storageService/services/AvatarsService.ts +234 -0
  45. package/clients/storageService/services/BlobsService.js +66 -0
  46. package/clients/storageService/services/BlobsService.ts +81 -0
  47. package/clients/{tenantService/services/EnrollmentsService.js → storageService/services/FilesService.js} +50 -42
  48. package/clients/{tenantService/services/UnitsService.ts → storageService/services/FilesService.ts} +75 -65
  49. package/clients/storageService/services/RadzenEditorService.js +117 -0
  50. package/clients/storageService/services/RadzenEditorService.ts +149 -0
  51. package/clients/storageService/services/UploadsService.js +33 -0
  52. package/clients/storageService/services/UploadsService.ts +53 -0
  53. package/clients/systemService/services/ModulesService.js +4 -2
  54. package/clients/systemService/services/ModulesService.ts +4 -2
  55. package/clients/systemService/services/TenantsService.js +24 -8
  56. package/clients/systemService/services/TenantsService.ts +24 -8
  57. package/clients/tenantService/index.js +1 -29
  58. package/clients/tenantService/index.ts +7 -20
  59. package/clients/tenantService/models/TenantIndustryDtoListEnvelope.js +2 -0
  60. package/clients/tenantService/models/TenantIndustryDtoListEnvelope.ts +14 -0
  61. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoListEnvelope.js +2 -0
  62. package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamContactEnrollmentDtoListEnvelope.ts} +1 -1
  63. package/clients/tenantService/models/TenantTeamDtoListEnvelope.js +2 -0
  64. package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.ts → TenantTeamDtoListEnvelope.ts} +1 -1
  65. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoListEnvelope.js +2 -0
  66. package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamEmployeeEnrollmentDtoListEnvelope.ts} +1 -1
  67. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoListEnvelope.js +2 -0
  68. package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamProjectEnrollmentDtoListEnvelope.ts} +1 -1
  69. package/clients/tenantService/models/TenantTeamRecordDtoListEnvelope.js +2 -0
  70. package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts → TenantTeamRecordDtoListEnvelope.ts} +1 -1
  71. package/clients/tenantService/models/TenantTypeDtoListEnvelope.js +2 -0
  72. package/clients/tenantService/models/{TenantTypeDtoIReadOnlyCollectionEnvelope.ts → TenantTypeDtoListEnvelope.ts} +1 -1
  73. package/clients/tenantService/services/SizesService.js +15 -5
  74. package/clients/tenantService/services/SizesService.ts +15 -5
  75. package/clients/tenantService/services/TenantsService.js +2554 -233
  76. package/clients/tenantService/services/TenantsService.ts +3004 -307
  77. package/package.json +1 -1
  78. package/schemas/contentService/schema.s.ts +877 -844
  79. package/schemas/crmService/schema.s.ts +1776 -1516
  80. package/schemas/holderService/schema.s.ts +1024 -789
  81. package/schemas/storageService/schema.s.js +6 -0
  82. package/schemas/storageService/schema.s.ts +1087 -0
  83. package/schemas/systemService/schema.s.ts +465 -387
  84. package/schemas/tenantService/schema.s.ts +5713 -4820
  85. package/clients/tenantService/services/DepartmentsService.js +0 -161
  86. package/clients/tenantService/services/DepartmentsService.ts +0 -192
  87. package/clients/tenantService/services/EmployeeEnrollmentsService.js +0 -153
  88. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +0 -181
  89. package/clients/tenantService/services/EnrollmentsService.ts +0 -195
  90. package/clients/tenantService/services/IndustriesService.js +0 -161
  91. package/clients/tenantService/services/IndustriesService.ts +0 -190
  92. package/clients/tenantService/services/InvitationsService.js +0 -128
  93. package/clients/tenantService/services/InvitationsService.ts +0 -150
  94. package/clients/tenantService/services/PositionsService.js +0 -161
  95. package/clients/tenantService/services/PositionsService.ts +0 -192
  96. package/clients/tenantService/services/SegmentsService.js +0 -161
  97. package/clients/tenantService/services/SegmentsService.ts +0 -191
  98. package/clients/tenantService/services/TeamContactEnrollmentsService.js +0 -161
  99. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +0 -191
  100. package/clients/tenantService/services/TeamProjectEnrollmentService.js +0 -153
  101. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +0 -181
  102. package/clients/tenantService/services/TeamRecordsService.js +0 -161
  103. package/clients/tenantService/services/TeamRecordsService.ts +0 -192
  104. package/clients/tenantService/services/TeamsService.js +0 -161
  105. package/clients/tenantService/services/TeamsService.ts +0 -192
  106. package/clients/tenantService/services/TerritoriesService.js +0 -161
  107. package/clients/tenantService/services/TerritoriesService.ts +0 -192
  108. package/clients/tenantService/services/TypesService.js +0 -149
  109. package/clients/tenantService/services/TypesService.ts +0 -176
  110. package/clients/tenantService/services/UnitsService.js +0 -159
  111. /package/clients/contentService/models/{Portal.js → PortalSettings.js} +0 -0
  112. /package/clients/contentService/models/{PortalEnvelope.js → PortalSettingsEnvelope.js} +0 -0
  113. /package/clients/holderService/models/{EmptyEnvelopeEnvelope.js → FollowRecordDtoListEnvelope.js} +0 -0
  114. /package/clients/{tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/core/ApiRequestOptions.js} +0 -0
  115. /package/clients/{tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.js → storageService/core/ApiResult.js} +0 -0
  116. /package/clients/{tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/models/BlobEnvelope.js} +0 -0
  117. /package/clients/{tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/models/EmptyEnvelope.js} +0 -0
  118. /package/clients/{tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.js → storageService/models/ErrorEnvelope.js} +0 -0
  119. /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
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { TenantTeamContactEnrollmentDto } from './TenantTeamContactEnrollmentDto';
6
- export type TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope = {
6
+ export type TenantTeamContactEnrollmentDtoListEnvelope = {
7
7
  readonly isSuccess?: boolean;
8
8
  errorMessage?: string | null;
9
9
  correlationId?: string | null;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { TenantTeamDto } from './TenantTeamDto';
6
- export type TenantTeamDtoIReadOnlyCollectionEnvelope = {
6
+ export type TenantTeamDtoListEnvelope = {
7
7
  readonly isSuccess?: boolean;
8
8
  errorMessage?: string | null;
9
9
  correlationId?: string | null;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { TenantTeamEmployeeEnrollmentDto } from './TenantTeamEmployeeEnrollmentDto';
6
- export type TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope = {
6
+ export type TenantTeamEmployeeEnrollmentDtoListEnvelope = {
7
7
  readonly isSuccess?: boolean;
8
8
  errorMessage?: string | null;
9
9
  correlationId?: string | null;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { TenantTeamProjectEnrollmentDto } from './TenantTeamProjectEnrollmentDto';
6
- export type TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope = {
6
+ export type TenantTeamProjectEnrollmentDtoListEnvelope = {
7
7
  readonly isSuccess?: boolean;
8
8
  errorMessage?: string | null;
9
9
  correlationId?: string | null;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { TenantTeamRecordDto } from './TenantTeamRecordDto';
6
- export type TenantTeamRecordDtoIReadOnlyCollectionEnvelope = {
6
+ export type TenantTeamRecordDtoListEnvelope = {
7
7
  readonly isSuccess?: boolean;
8
8
  errorMessage?: string | null;
9
9
  correlationId?: string | null;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,7 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { TenantTypeDto } from './TenantTypeDto';
6
- export type TenantTypeDtoIReadOnlyCollectionEnvelope = {
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 getApiV2Sizes(tenantId, xApiVersion) {
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 getApiV2Sizes1(tenantSizeId, xApiVersion) {
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 putApiV2Sizes(tenantId, tenantSizeId, xApiVersion, requestBody) {
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 patchApiV2Sizes(tenantId, tenantSizeId, xApiVersion, requestBody) {
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 deleteApiV2Sizes(tenantId, tenantSizeId, xApiVersion) {
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 getApiV2Sizes(
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 getApiV2Sizes1(
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 putApiV2Sizes(
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 patchApiV2Sizes(
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 deleteApiV2Sizes(
181
+ public static deleteTenantSizeAsync(
172
182
  tenantId: string,
173
183
  tenantSizeId: string,
174
184
  xApiVersion?: string,