@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
@@ -1076,78 +1076,64 @@ export interface paths {
1076
1076
  };
1077
1077
  };
1078
1078
  "/api/v2/StudioService/Modules": {
1079
- get: {
1080
- parameters: {
1081
- query: {
1082
- tenantId: string;
1083
- "api-version"?: string;
1084
- };
1085
- header?: {
1086
- "x-api-version"?: string;
1087
- };
1088
- };
1089
- responses: {
1090
- /** @description OK */
1091
- 200: {
1092
- content: {
1093
- "application/json": components["schemas"]["StudioModuleListEnvelope"];
1094
- "application/xml": components["schemas"]["StudioModuleListEnvelope"];
1095
- };
1096
- };
1097
- /** @description Unauthorized */
1098
- 401: {
1099
- content: {
1100
- "application/json": components["schemas"]["ErrorEnvelope"];
1101
- "application/xml": components["schemas"]["ErrorEnvelope"];
1102
- };
1103
- };
1104
- /** @description Forbidden */
1105
- 403: {
1106
- content: {
1107
- "application/json": components["schemas"]["ErrorEnvelope"];
1108
- "application/xml": components["schemas"]["ErrorEnvelope"];
1109
- };
1110
- };
1111
- };
1112
- };
1079
+ /** Get all modules available on this suite server instance. */
1080
+ get: operations["GetAllModules"];
1113
1081
  };
1114
1082
  "/api/v2/StudioService/Modules/Data": {
1115
- get: {
1116
- parameters: {
1117
- query?: {
1118
- tenantId?: string;
1119
- "api-version"?: string;
1120
- };
1121
- header?: {
1122
- "x-api-version"?: string;
1123
- };
1124
- };
1125
- responses: {
1126
- /** @description OK */
1127
- 200: {
1128
- content: {
1129
- "application/json": components["schemas"]["ModuleListEnvelope"];
1130
- "application/xml": components["schemas"]["ModuleListEnvelope"];
1131
- };
1132
- };
1133
- /** @description Unauthorized */
1134
- 401: {
1135
- content: {
1136
- "application/json": components["schemas"]["ErrorEnvelope"];
1137
- "application/xml": components["schemas"]["ErrorEnvelope"];
1138
- };
1139
- };
1140
- /** @description Forbidden */
1141
- 403: {
1142
- content: {
1143
- "application/json": components["schemas"]["ErrorEnvelope"];
1144
- "application/xml": components["schemas"]["ErrorEnvelope"];
1145
- };
1146
- };
1147
- };
1148
- };
1083
+ /** Get all modules available to a tenant user. */
1084
+ get: operations["GetAvailableModules"];
1149
1085
  };
1150
1086
  "/api/v2/SystemService/Tenants": {
1087
+ /**
1088
+ * Get all tenants available on this suite server instance.
1089
+ * @description This action is only available for global administrators.
1090
+ */
1091
+ get: operations["GetAllTenants"];
1092
+ /**
1093
+ * Create a new tenant.
1094
+ * @description This action is only available for global administrators.
1095
+ */
1096
+ post: operations["CreateTenant"];
1097
+ };
1098
+ "/api/v2/SystemService/Tenants/Count": {
1099
+ /**
1100
+ * Get the total count of tenants available on this suite server instance.
1101
+ * @description This action is only available for global administrators.
1102
+ */
1103
+ get: operations["GetTenantsCount"];
1104
+ };
1105
+ "/api/v2/SystemService/Tenants/Extended": {
1106
+ /**
1107
+ * Get all extended tenants available on this suite server instance.
1108
+ * @description This action is only available for global administrators.
1109
+ */
1110
+ get: operations["GetAllExtendedTenants"];
1111
+ };
1112
+ "/api/v2/SystemService/Tenants/Extended/Count": {
1113
+ /**
1114
+ * Get the total count of extended tenants available on this suite server instance.
1115
+ * @description This action is only available for global administrators.
1116
+ */
1117
+ get: operations["GetExtendedTenantsCount"];
1118
+ };
1119
+ "/api/v2/SystemService/Tenants/{tenantId}": {
1120
+ /**
1121
+ * Get a specific tenant by ID.
1122
+ * @description This action is only available for global administrators.
1123
+ */
1124
+ get: operations["GetTenant"];
1125
+ /**
1126
+ * Update a specific tenant by ID.
1127
+ * @description This action is only available for global administrators.
1128
+ */
1129
+ put: operations["UpdateTenant"];
1130
+ /**
1131
+ * Delete a specific tenant by ID.
1132
+ * @description This action is only available for global administrators.
1133
+ */
1134
+ delete: operations["DeleteTenant"];
1135
+ };
1136
+ "/api/v2/SystemService/Users": {
1151
1137
  get: {
1152
1138
  parameters: {
1153
1139
  query?: {
@@ -1161,8 +1147,8 @@ export interface paths {
1161
1147
  /** @description OK */
1162
1148
  200: {
1163
1149
  content: {
1164
- "application/json": components["schemas"]["TenantDtoListEnvelope"];
1165
- "application/xml": components["schemas"]["TenantDtoListEnvelope"];
1150
+ "application/json": components["schemas"]["UserDtoListEnvelope"];
1151
+ "application/xml": components["schemas"]["UserDtoListEnvelope"];
1166
1152
  };
1167
1153
  };
1168
1154
  /** @description Unauthorized */
@@ -1192,16 +1178,16 @@ export interface paths {
1192
1178
  };
1193
1179
  requestBody?: {
1194
1180
  content: {
1195
- "application/json": components["schemas"]["TenantCreateDto"];
1196
- "application/xml": components["schemas"]["TenantCreateDto"];
1181
+ "application/json": components["schemas"]["AccountHolderCreateDto"];
1182
+ "application/xml": components["schemas"]["AccountHolderCreateDto"];
1197
1183
  };
1198
1184
  };
1199
1185
  responses: {
1200
1186
  /** @description Created */
1201
1187
  201: {
1202
1188
  content: {
1203
- "application/json": components["schemas"]["TenantDtoEnvelope"];
1204
- "application/xml": components["schemas"]["TenantDtoEnvelope"];
1189
+ "application/json": components["schemas"]["EmptyEnvelope"];
1190
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1205
1191
  };
1206
1192
  };
1207
1193
  /** @description Unauthorized */
@@ -1221,7 +1207,7 @@ export interface paths {
1221
1207
  };
1222
1208
  };
1223
1209
  };
1224
- "/api/v2/SystemService/Tenants/Count": {
1210
+ "/api/v2/SystemService/Users/Count": {
1225
1211
  get: {
1226
1212
  parameters: {
1227
1213
  query?: {
@@ -1256,7 +1242,7 @@ export interface paths {
1256
1242
  };
1257
1243
  };
1258
1244
  };
1259
- "/api/v2/SystemService/Tenants/Extended": {
1245
+ "/api/v2/SystemService/Users/Extended": {
1260
1246
  get: {
1261
1247
  parameters: {
1262
1248
  query?: {
@@ -1270,8 +1256,8 @@ export interface paths {
1270
1256
  /** @description OK */
1271
1257
  200: {
1272
1258
  content: {
1273
- "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1274
- "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1259
+ "application/json": components["schemas"]["ExtendedUserDtoListEnvelope"];
1260
+ "application/xml": components["schemas"]["ExtendedUserDtoListEnvelope"];
1275
1261
  };
1276
1262
  };
1277
1263
  /** @description Unauthorized */
@@ -1291,7 +1277,7 @@ export interface paths {
1291
1277
  };
1292
1278
  };
1293
1279
  };
1294
- "/api/v2/SystemService/Tenants/Extended/Count": {
1280
+ "/api/v2/SystemService/Users/Extended/Count": {
1295
1281
  get: {
1296
1282
  parameters: {
1297
1283
  query?: {
@@ -1326,43 +1312,8 @@ export interface paths {
1326
1312
  };
1327
1313
  };
1328
1314
  };
1329
- "/api/v2/SystemService/Tenants/{tenantId}": {
1330
- get: {
1331
- parameters: {
1332
- query?: {
1333
- "api-version"?: string;
1334
- };
1335
- header?: {
1336
- "x-api-version"?: string;
1337
- };
1338
- path: {
1339
- tenantId: string;
1340
- };
1341
- };
1342
- responses: {
1343
- /** @description OK */
1344
- 200: {
1345
- content: {
1346
- "application/json": components["schemas"]["TenantDtoEnvelope"];
1347
- "application/xml": components["schemas"]["TenantDtoEnvelope"];
1348
- };
1349
- };
1350
- /** @description Unauthorized */
1351
- 401: {
1352
- content: {
1353
- "application/json": components["schemas"]["ErrorEnvelope"];
1354
- "application/xml": components["schemas"]["ErrorEnvelope"];
1355
- };
1356
- };
1357
- /** @description Forbidden */
1358
- 403: {
1359
- content: {
1360
- "application/json": components["schemas"]["ErrorEnvelope"];
1361
- "application/xml": components["schemas"]["ErrorEnvelope"];
1362
- };
1363
- };
1364
- };
1365
- };
1315
+ "/api/v2/SystemService/Users/{userId}": {
1316
+ get: operations["GetUserAsync"];
1366
1317
  put: {
1367
1318
  parameters: {
1368
1319
  query?: {
@@ -1372,21 +1323,21 @@ export interface paths {
1372
1323
  "x-api-version"?: string;
1373
1324
  };
1374
1325
  path: {
1375
- tenantId: string;
1326
+ userId: string;
1376
1327
  };
1377
1328
  };
1378
1329
  requestBody?: {
1379
1330
  content: {
1380
- "application/json": components["schemas"]["TenantUpdateDto"];
1381
- "application/xml": components["schemas"]["TenantUpdateDto"];
1331
+ "application/json": components["schemas"]["AccountHolderUpdateDto"];
1332
+ "application/xml": components["schemas"]["AccountHolderUpdateDto"];
1382
1333
  };
1383
1334
  };
1384
1335
  responses: {
1385
1336
  /** @description OK */
1386
1337
  200: {
1387
1338
  content: {
1388
- "application/json": components["schemas"]["TenantDtoEnvelope"];
1389
- "application/xml": components["schemas"]["TenantDtoEnvelope"];
1339
+ "application/json": components["schemas"]["EmptyEnvelope"];
1340
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1390
1341
  };
1391
1342
  };
1392
1343
  /** @description Unauthorized */
@@ -1414,86 +1365,12 @@ export interface paths {
1414
1365
  "x-api-version"?: string;
1415
1366
  };
1416
1367
  path: {
1417
- tenantId: string;
1418
- };
1419
- };
1420
- responses: {
1421
- /** @description No Content */
1422
- 204: {
1423
- content: {
1424
- "application/json": components["schemas"]["EmptyEnvelope"];
1425
- "application/xml": components["schemas"]["EmptyEnvelope"];
1426
- };
1427
- };
1428
- /** @description Unauthorized */
1429
- 401: {
1430
- content: {
1431
- "application/json": components["schemas"]["ErrorEnvelope"];
1432
- "application/xml": components["schemas"]["ErrorEnvelope"];
1433
- };
1434
- };
1435
- /** @description Forbidden */
1436
- 403: {
1437
- content: {
1438
- "application/json": components["schemas"]["ErrorEnvelope"];
1439
- "application/xml": components["schemas"]["ErrorEnvelope"];
1440
- };
1441
- };
1442
- };
1443
- };
1444
- };
1445
- "/api/v2/SystemService/Users": {
1446
- get: {
1447
- parameters: {
1448
- query?: {
1449
- "api-version"?: string;
1450
- };
1451
- header?: {
1452
- "x-api-version"?: string;
1368
+ userId: string;
1453
1369
  };
1454
1370
  };
1455
1371
  responses: {
1456
1372
  /** @description OK */
1457
1373
  200: {
1458
- content: {
1459
- "application/json": components["schemas"]["UserDtoListEnvelope"];
1460
- "application/xml": components["schemas"]["UserDtoListEnvelope"];
1461
- };
1462
- };
1463
- /** @description Unauthorized */
1464
- 401: {
1465
- content: {
1466
- "application/json": components["schemas"]["ErrorEnvelope"];
1467
- "application/xml": components["schemas"]["ErrorEnvelope"];
1468
- };
1469
- };
1470
- /** @description Forbidden */
1471
- 403: {
1472
- content: {
1473
- "application/json": components["schemas"]["ErrorEnvelope"];
1474
- "application/xml": components["schemas"]["ErrorEnvelope"];
1475
- };
1476
- };
1477
- };
1478
- };
1479
- post: {
1480
- parameters: {
1481
- query?: {
1482
- "api-version"?: string;
1483
- };
1484
- header?: {
1485
- "x-api-version"?: string;
1486
- };
1487
- };
1488
- requestBody?: {
1489
- content: {
1490
- "application/json": components["schemas"]["AccountHolderCreateDto"];
1491
- "application/xml": components["schemas"]["AccountHolderCreateDto"];
1492
- };
1493
- };
1494
- responses: {
1495
- /** @description Created */
1496
- 201: {
1497
1374
  content: {
1498
1375
  "application/json": components["schemas"]["EmptyEnvelope"];
1499
1376
  "application/xml": components["schemas"]["EmptyEnvelope"];
@@ -1516,7 +1393,7 @@ export interface paths {
1516
1393
  };
1517
1394
  };
1518
1395
  };
1519
- "/api/v2/SystemService/Users/Count": {
1396
+ "/api/v2/SystemService/Users/{userId}/Extended": {
1520
1397
  get: {
1521
1398
  parameters: {
1522
1399
  query?: {
@@ -1525,202 +1402,16 @@ export interface paths {
1525
1402
  header?: {
1526
1403
  "x-api-version"?: string;
1527
1404
  };
1528
- };
1529
- responses: {
1530
- /** @description OK */
1531
- 200: {
1532
- content: {
1533
- "application/json": components["schemas"]["Int32Envelope"];
1534
- "application/xml": components["schemas"]["Int32Envelope"];
1535
- };
1536
- };
1537
- /** @description Unauthorized */
1538
- 401: {
1539
- content: {
1540
- "application/json": components["schemas"]["ErrorEnvelope"];
1541
- "application/xml": components["schemas"]["ErrorEnvelope"];
1542
- };
1543
- };
1544
- /** @description Forbidden */
1545
- 403: {
1546
- content: {
1547
- "application/json": components["schemas"]["ErrorEnvelope"];
1548
- "application/xml": components["schemas"]["ErrorEnvelope"];
1549
- };
1550
- };
1551
- };
1552
- };
1553
- };
1554
- "/api/v2/SystemService/Users/Extended": {
1555
- get: {
1556
- parameters: {
1557
- query?: {
1558
- "api-version"?: string;
1559
- };
1560
- header?: {
1561
- "x-api-version"?: string;
1405
+ path: {
1406
+ userId: string;
1562
1407
  };
1563
1408
  };
1564
1409
  responses: {
1565
1410
  /** @description OK */
1566
1411
  200: {
1567
1412
  content: {
1568
- "application/json": components["schemas"]["ExtendedUserDtoListEnvelope"];
1569
- "application/xml": components["schemas"]["ExtendedUserDtoListEnvelope"];
1570
- };
1571
- };
1572
- /** @description Unauthorized */
1573
- 401: {
1574
- content: {
1575
- "application/json": components["schemas"]["ErrorEnvelope"];
1576
- "application/xml": components["schemas"]["ErrorEnvelope"];
1577
- };
1578
- };
1579
- /** @description Forbidden */
1580
- 403: {
1581
- content: {
1582
- "application/json": components["schemas"]["ErrorEnvelope"];
1583
- "application/xml": components["schemas"]["ErrorEnvelope"];
1584
- };
1585
- };
1586
- };
1587
- };
1588
- };
1589
- "/api/v2/SystemService/Users/Extended/Count": {
1590
- get: {
1591
- parameters: {
1592
- query?: {
1593
- "api-version"?: string;
1594
- };
1595
- header?: {
1596
- "x-api-version"?: string;
1597
- };
1598
- };
1599
- responses: {
1600
- /** @description OK */
1601
- 200: {
1602
- content: {
1603
- "application/json": components["schemas"]["Int32Envelope"];
1604
- "application/xml": components["schemas"]["Int32Envelope"];
1605
- };
1606
- };
1607
- /** @description Unauthorized */
1608
- 401: {
1609
- content: {
1610
- "application/json": components["schemas"]["ErrorEnvelope"];
1611
- "application/xml": components["schemas"]["ErrorEnvelope"];
1612
- };
1613
- };
1614
- /** @description Forbidden */
1615
- 403: {
1616
- content: {
1617
- "application/json": components["schemas"]["ErrorEnvelope"];
1618
- "application/xml": components["schemas"]["ErrorEnvelope"];
1619
- };
1620
- };
1621
- };
1622
- };
1623
- };
1624
- "/api/v2/SystemService/Users/{userId}": {
1625
- get: operations["GetUserAsync"];
1626
- put: {
1627
- parameters: {
1628
- query?: {
1629
- "api-version"?: string;
1630
- };
1631
- header?: {
1632
- "x-api-version"?: string;
1633
- };
1634
- path: {
1635
- userId: string;
1636
- };
1637
- };
1638
- requestBody?: {
1639
- content: {
1640
- "application/json": components["schemas"]["AccountHolderUpdateDto"];
1641
- "application/xml": components["schemas"]["AccountHolderUpdateDto"];
1642
- };
1643
- };
1644
- responses: {
1645
- /** @description OK */
1646
- 200: {
1647
- content: {
1648
- "application/json": components["schemas"]["EmptyEnvelope"];
1649
- "application/xml": components["schemas"]["EmptyEnvelope"];
1650
- };
1651
- };
1652
- /** @description Unauthorized */
1653
- 401: {
1654
- content: {
1655
- "application/json": components["schemas"]["ErrorEnvelope"];
1656
- "application/xml": components["schemas"]["ErrorEnvelope"];
1657
- };
1658
- };
1659
- /** @description Forbidden */
1660
- 403: {
1661
- content: {
1662
- "application/json": components["schemas"]["ErrorEnvelope"];
1663
- "application/xml": components["schemas"]["ErrorEnvelope"];
1664
- };
1665
- };
1666
- };
1667
- };
1668
- delete: {
1669
- parameters: {
1670
- query?: {
1671
- "api-version"?: string;
1672
- };
1673
- header?: {
1674
- "x-api-version"?: string;
1675
- };
1676
- path: {
1677
- userId: string;
1678
- };
1679
- };
1680
- responses: {
1681
- /** @description OK */
1682
- 200: {
1683
- content: {
1684
- "application/json": components["schemas"]["EmptyEnvelope"];
1685
- "application/xml": components["schemas"]["EmptyEnvelope"];
1686
- };
1687
- };
1688
- /** @description Unauthorized */
1689
- 401: {
1690
- content: {
1691
- "application/json": components["schemas"]["ErrorEnvelope"];
1692
- "application/xml": components["schemas"]["ErrorEnvelope"];
1693
- };
1694
- };
1695
- /** @description Forbidden */
1696
- 403: {
1697
- content: {
1698
- "application/json": components["schemas"]["ErrorEnvelope"];
1699
- "application/xml": components["schemas"]["ErrorEnvelope"];
1700
- };
1701
- };
1702
- };
1703
- };
1704
- };
1705
- "/api/v2/SystemService/Users/{userId}/Extended": {
1706
- get: {
1707
- parameters: {
1708
- query?: {
1709
- "api-version"?: string;
1710
- };
1711
- header?: {
1712
- "x-api-version"?: string;
1713
- };
1714
- path: {
1715
- userId: string;
1716
- };
1717
- };
1718
- responses: {
1719
- /** @description OK */
1720
- 200: {
1721
- content: {
1722
- "application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
1723
- "application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
1413
+ "application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
1414
+ "application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
1724
1415
  };
1725
1416
  };
1726
1417
  /** @description Unauthorized */
@@ -2420,6 +2111,393 @@ export type external = Record<string, never>;
2420
2111
 
2421
2112
  export interface operations {
2422
2113
 
2114
+ /** Get all modules available on this suite server instance. */
2115
+ GetAllModules: {
2116
+ parameters: {
2117
+ query: {
2118
+ tenantId: string;
2119
+ "api-version"?: string;
2120
+ };
2121
+ header?: {
2122
+ "x-api-version"?: string;
2123
+ };
2124
+ };
2125
+ responses: {
2126
+ /** @description OK */
2127
+ 200: {
2128
+ content: {
2129
+ "application/json": components["schemas"]["StudioModuleListEnvelope"];
2130
+ "application/xml": components["schemas"]["StudioModuleListEnvelope"];
2131
+ };
2132
+ };
2133
+ /** @description Unauthorized */
2134
+ 401: {
2135
+ content: {
2136
+ "application/json": components["schemas"]["ErrorEnvelope"];
2137
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2138
+ };
2139
+ };
2140
+ /** @description Forbidden */
2141
+ 403: {
2142
+ content: {
2143
+ "application/json": components["schemas"]["ErrorEnvelope"];
2144
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2145
+ };
2146
+ };
2147
+ };
2148
+ };
2149
+ /** Get all modules available to a tenant user. */
2150
+ GetAvailableModules: {
2151
+ parameters: {
2152
+ query?: {
2153
+ tenantId?: string;
2154
+ "api-version"?: string;
2155
+ };
2156
+ header?: {
2157
+ "x-api-version"?: string;
2158
+ };
2159
+ };
2160
+ responses: {
2161
+ /** @description OK */
2162
+ 200: {
2163
+ content: {
2164
+ "application/json": components["schemas"]["ModuleListEnvelope"];
2165
+ "application/xml": components["schemas"]["ModuleListEnvelope"];
2166
+ };
2167
+ };
2168
+ /** @description Unauthorized */
2169
+ 401: {
2170
+ content: {
2171
+ "application/json": components["schemas"]["ErrorEnvelope"];
2172
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2173
+ };
2174
+ };
2175
+ /** @description Forbidden */
2176
+ 403: {
2177
+ content: {
2178
+ "application/json": components["schemas"]["ErrorEnvelope"];
2179
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2180
+ };
2181
+ };
2182
+ };
2183
+ };
2184
+ /**
2185
+ * Get all tenants available on this suite server instance.
2186
+ * @description This action is only available for global administrators.
2187
+ */
2188
+ GetAllTenants: {
2189
+ parameters: {
2190
+ query?: {
2191
+ "api-version"?: string;
2192
+ };
2193
+ header?: {
2194
+ "x-api-version"?: string;
2195
+ };
2196
+ };
2197
+ responses: {
2198
+ /** @description OK */
2199
+ 200: {
2200
+ content: {
2201
+ "application/json": components["schemas"]["TenantDtoListEnvelope"];
2202
+ "application/xml": components["schemas"]["TenantDtoListEnvelope"];
2203
+ };
2204
+ };
2205
+ /** @description Unauthorized */
2206
+ 401: {
2207
+ content: {
2208
+ "application/json": components["schemas"]["ErrorEnvelope"];
2209
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2210
+ };
2211
+ };
2212
+ /** @description Forbidden */
2213
+ 403: {
2214
+ content: {
2215
+ "application/json": components["schemas"]["ErrorEnvelope"];
2216
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2217
+ };
2218
+ };
2219
+ };
2220
+ };
2221
+ /**
2222
+ * Create a new tenant.
2223
+ * @description This action is only available for global administrators.
2224
+ */
2225
+ CreateTenant: {
2226
+ parameters: {
2227
+ query?: {
2228
+ "api-version"?: string;
2229
+ };
2230
+ header?: {
2231
+ "x-api-version"?: string;
2232
+ };
2233
+ };
2234
+ requestBody?: {
2235
+ content: {
2236
+ "application/json": components["schemas"]["TenantCreateDto"];
2237
+ "application/xml": components["schemas"]["TenantCreateDto"];
2238
+ };
2239
+ };
2240
+ responses: {
2241
+ /** @description Created */
2242
+ 201: {
2243
+ content: {
2244
+ "application/json": components["schemas"]["TenantDtoEnvelope"];
2245
+ "application/xml": components["schemas"]["TenantDtoEnvelope"];
2246
+ };
2247
+ };
2248
+ /** @description Unauthorized */
2249
+ 401: {
2250
+ content: {
2251
+ "application/json": components["schemas"]["ErrorEnvelope"];
2252
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2253
+ };
2254
+ };
2255
+ /** @description Forbidden */
2256
+ 403: {
2257
+ content: {
2258
+ "application/json": components["schemas"]["ErrorEnvelope"];
2259
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2260
+ };
2261
+ };
2262
+ };
2263
+ };
2264
+ /**
2265
+ * Get the total count of tenants available on this suite server instance.
2266
+ * @description This action is only available for global administrators.
2267
+ */
2268
+ GetTenantsCount: {
2269
+ parameters: {
2270
+ query?: {
2271
+ "api-version"?: string;
2272
+ };
2273
+ header?: {
2274
+ "x-api-version"?: string;
2275
+ };
2276
+ };
2277
+ responses: {
2278
+ /** @description OK */
2279
+ 200: {
2280
+ content: {
2281
+ "application/json": components["schemas"]["Int32Envelope"];
2282
+ "application/xml": components["schemas"]["Int32Envelope"];
2283
+ };
2284
+ };
2285
+ /** @description Unauthorized */
2286
+ 401: {
2287
+ content: {
2288
+ "application/json": components["schemas"]["ErrorEnvelope"];
2289
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2290
+ };
2291
+ };
2292
+ /** @description Forbidden */
2293
+ 403: {
2294
+ content: {
2295
+ "application/json": components["schemas"]["ErrorEnvelope"];
2296
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2297
+ };
2298
+ };
2299
+ };
2300
+ };
2301
+ /**
2302
+ * Get all extended tenants available on this suite server instance.
2303
+ * @description This action is only available for global administrators.
2304
+ */
2305
+ GetAllExtendedTenants: {
2306
+ parameters: {
2307
+ query?: {
2308
+ "api-version"?: string;
2309
+ };
2310
+ header?: {
2311
+ "x-api-version"?: string;
2312
+ };
2313
+ };
2314
+ responses: {
2315
+ /** @description OK */
2316
+ 200: {
2317
+ content: {
2318
+ "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
2319
+ "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
2320
+ };
2321
+ };
2322
+ /** @description Unauthorized */
2323
+ 401: {
2324
+ content: {
2325
+ "application/json": components["schemas"]["ErrorEnvelope"];
2326
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2327
+ };
2328
+ };
2329
+ /** @description Forbidden */
2330
+ 403: {
2331
+ content: {
2332
+ "application/json": components["schemas"]["ErrorEnvelope"];
2333
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2334
+ };
2335
+ };
2336
+ };
2337
+ };
2338
+ /**
2339
+ * Get the total count of extended tenants available on this suite server instance.
2340
+ * @description This action is only available for global administrators.
2341
+ */
2342
+ GetExtendedTenantsCount: {
2343
+ parameters: {
2344
+ query?: {
2345
+ "api-version"?: string;
2346
+ };
2347
+ header?: {
2348
+ "x-api-version"?: string;
2349
+ };
2350
+ };
2351
+ responses: {
2352
+ /** @description OK */
2353
+ 200: {
2354
+ content: {
2355
+ "application/json": components["schemas"]["Int32Envelope"];
2356
+ "application/xml": components["schemas"]["Int32Envelope"];
2357
+ };
2358
+ };
2359
+ /** @description Unauthorized */
2360
+ 401: {
2361
+ content: {
2362
+ "application/json": components["schemas"]["ErrorEnvelope"];
2363
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2364
+ };
2365
+ };
2366
+ /** @description Forbidden */
2367
+ 403: {
2368
+ content: {
2369
+ "application/json": components["schemas"]["ErrorEnvelope"];
2370
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2371
+ };
2372
+ };
2373
+ };
2374
+ };
2375
+ /**
2376
+ * Get a specific tenant by ID.
2377
+ * @description This action is only available for global administrators.
2378
+ */
2379
+ GetTenant: {
2380
+ parameters: {
2381
+ query?: {
2382
+ "api-version"?: string;
2383
+ };
2384
+ header?: {
2385
+ "x-api-version"?: string;
2386
+ };
2387
+ path: {
2388
+ tenantId: string;
2389
+ };
2390
+ };
2391
+ responses: {
2392
+ /** @description OK */
2393
+ 200: {
2394
+ content: {
2395
+ "application/json": components["schemas"]["TenantDtoEnvelope"];
2396
+ "application/xml": components["schemas"]["TenantDtoEnvelope"];
2397
+ };
2398
+ };
2399
+ /** @description Unauthorized */
2400
+ 401: {
2401
+ content: {
2402
+ "application/json": components["schemas"]["ErrorEnvelope"];
2403
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2404
+ };
2405
+ };
2406
+ /** @description Forbidden */
2407
+ 403: {
2408
+ content: {
2409
+ "application/json": components["schemas"]["ErrorEnvelope"];
2410
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2411
+ };
2412
+ };
2413
+ };
2414
+ };
2415
+ /**
2416
+ * Update a specific tenant by ID.
2417
+ * @description This action is only available for global administrators.
2418
+ */
2419
+ UpdateTenant: {
2420
+ parameters: {
2421
+ query?: {
2422
+ "api-version"?: string;
2423
+ };
2424
+ header?: {
2425
+ "x-api-version"?: string;
2426
+ };
2427
+ path: {
2428
+ tenantId: string;
2429
+ };
2430
+ };
2431
+ requestBody?: {
2432
+ content: {
2433
+ "application/json": components["schemas"]["TenantUpdateDto"];
2434
+ "application/xml": components["schemas"]["TenantUpdateDto"];
2435
+ };
2436
+ };
2437
+ responses: {
2438
+ /** @description OK */
2439
+ 200: {
2440
+ content: {
2441
+ "application/json": components["schemas"]["TenantDtoEnvelope"];
2442
+ "application/xml": components["schemas"]["TenantDtoEnvelope"];
2443
+ };
2444
+ };
2445
+ /** @description Unauthorized */
2446
+ 401: {
2447
+ content: {
2448
+ "application/json": components["schemas"]["ErrorEnvelope"];
2449
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2450
+ };
2451
+ };
2452
+ /** @description Forbidden */
2453
+ 403: {
2454
+ content: {
2455
+ "application/json": components["schemas"]["ErrorEnvelope"];
2456
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2457
+ };
2458
+ };
2459
+ };
2460
+ };
2461
+ /**
2462
+ * Delete a specific tenant by ID.
2463
+ * @description This action is only available for global administrators.
2464
+ */
2465
+ DeleteTenant: {
2466
+ parameters: {
2467
+ query?: {
2468
+ "api-version"?: string;
2469
+ };
2470
+ header?: {
2471
+ "x-api-version"?: string;
2472
+ };
2473
+ path: {
2474
+ tenantId: string;
2475
+ };
2476
+ };
2477
+ responses: {
2478
+ /** @description No Content */
2479
+ 204: {
2480
+ content: {
2481
+ "application/json": components["schemas"]["EmptyEnvelope"];
2482
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2483
+ };
2484
+ };
2485
+ /** @description Unauthorized */
2486
+ 401: {
2487
+ content: {
2488
+ "application/json": components["schemas"]["ErrorEnvelope"];
2489
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2490
+ };
2491
+ };
2492
+ /** @description Forbidden */
2493
+ 403: {
2494
+ content: {
2495
+ "application/json": components["schemas"]["ErrorEnvelope"];
2496
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2497
+ };
2498
+ };
2499
+ };
2500
+ };
2423
2501
  GetUserAsync: {
2424
2502
  parameters: {
2425
2503
  query?: {