@fenixalliance/abs-api-client 1.0.13 → 1.0.15
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/clients/accountingService/core/OpenAPI.js +1 -1
- package/clients/accountingService/core/OpenAPI.ts +1 -1
- package/clients/authService/core/ApiError.js +20 -0
- package/clients/authService/core/ApiError.ts +25 -0
- package/clients/authService/core/ApiRequestOptions.js +2 -0
- package/clients/authService/core/ApiRequestOptions.ts +17 -0
- package/clients/authService/core/ApiResult.js +2 -0
- package/clients/authService/core/ApiResult.ts +11 -0
- package/clients/authService/core/CancelablePromise.js +104 -0
- package/clients/authService/core/CancelablePromise.ts +131 -0
- package/clients/authService/core/OpenAPI.js +14 -0
- package/clients/authService/core/OpenAPI.ts +32 -0
- package/clients/authService/core/request.js +294 -0
- package/clients/authService/core/request.ts +322 -0
- package/clients/authService/index.js +28 -0
- package/clients/authService/index.ts +48 -0
- package/clients/authService/models/AccessTokenResponse.js +2 -0
- package/clients/authService/models/AccessTokenResponse.ts +11 -0
- package/clients/authService/models/AccountHolderCreateDto.js +12 -0
- package/clients/authService/models/AccountHolderCreateDto.ts +41 -0
- package/clients/authService/models/AccountHolderCreateDtoEnvelope.js +2 -0
- package/clients/authService/models/AccountHolderCreateDtoEnvelope.ts +14 -0
- package/clients/authService/models/ApiAuthorizationResult.js +2 -0
- package/clients/authService/models/ApiAuthorizationResult.ts +17 -0
- package/clients/authService/models/ApiAuthorizationResultEnvelope.js +2 -0
- package/clients/authService/models/ApiAuthorizationResultEnvelope.ts +14 -0
- package/clients/authService/models/EnrollmentId.js +2 -0
- package/clients/authService/models/EnrollmentId.ts +5 -0
- package/clients/authService/models/ErrorEnvelope.js +2 -0
- package/clients/authService/models/ErrorEnvelope.ts +12 -0
- package/clients/authService/models/ForgotPasswordRequest.js +2 -0
- package/clients/authService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/authService/models/HttpValidationProblemDetails.js +2 -0
- package/clients/authService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/authService/models/InfoRequest.js +2 -0
- package/clients/authService/models/InfoRequest.ts +10 -0
- package/clients/authService/models/InfoResponse.js +2 -0
- package/clients/authService/models/InfoResponse.ts +9 -0
- package/clients/authService/models/JsonWebKey.js +2 -0
- package/clients/authService/models/JsonWebKey.ts +13 -0
- package/clients/authService/models/JsonWebKeySet.js +2 -0
- package/clients/authService/models/JsonWebKeySet.ts +9 -0
- package/clients/authService/models/JsonWebKeySetEnvelope.js +2 -0
- package/clients/authService/models/JsonWebKeySetEnvelope.ts +14 -0
- package/clients/authService/models/JsonWebToken.js +2 -0
- package/clients/authService/models/JsonWebToken.ts +15 -0
- package/clients/authService/models/JsonWebTokenEnvelope.js +2 -0
- package/clients/authService/models/JsonWebTokenEnvelope.ts +14 -0
- package/clients/authService/models/JsonWebTokenHeader.js +2 -0
- package/clients/authService/models/JsonWebTokenHeader.ts +11 -0
- package/clients/authService/models/JsonWebTokenPayload.js +2 -0
- package/clients/authService/models/JsonWebTokenPayload.ts +17 -0
- package/clients/authService/models/LoginRequest.js +2 -0
- package/clients/authService/models/LoginRequest.ts +11 -0
- package/clients/authService/models/OAuthTokenRequest.js +2 -0
- package/clients/authService/models/OAuthTokenRequest.ts +12 -0
- package/clients/authService/models/OpenIdConfiguration.js +2 -0
- package/clients/authService/models/OpenIdConfiguration.ts +19 -0
- package/clients/authService/models/OpenIdConfigurationEnvelope.js +2 -0
- package/clients/authService/models/OpenIdConfigurationEnvelope.ts +14 -0
- package/clients/authService/models/RefreshRequest.js +2 -0
- package/clients/authService/models/RefreshRequest.ts +8 -0
- package/clients/authService/models/RegisterRequest.js +2 -0
- package/clients/authService/models/RegisterRequest.ts +9 -0
- package/clients/authService/models/ResendConfirmationEmailRequest.js +2 -0
- package/clients/authService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/authService/models/ResetPasswordRequest.js +2 -0
- package/clients/authService/models/ResetPasswordRequest.ts +10 -0
- package/clients/authService/models/SigninModel.js +2 -0
- package/clients/authService/models/SigninModel.ts +9 -0
- package/clients/authService/models/StringListEnvelope.js +2 -0
- package/clients/authService/models/StringListEnvelope.ts +13 -0
- package/clients/authService/models/TenantId.js +2 -0
- package/clients/authService/models/TenantId.ts +5 -0
- package/clients/authService/models/TwoFactorRequest.js +2 -0
- package/clients/authService/models/TwoFactorRequest.ts +12 -0
- package/clients/authService/models/TwoFactorResponse.js +2 -0
- package/clients/authService/models/TwoFactorResponse.ts +12 -0
- package/clients/authService/models/UserId.js +2 -0
- package/clients/authService/models/UserId.ts +5 -0
- package/clients/authService/services/ApplicationsService.js +112 -0
- package/clients/authService/services/ApplicationsService.ts +132 -0
- package/clients/authService/services/AuthService.js +246 -0
- package/clients/authService/services/AuthService.ts +293 -0
- package/clients/authService/services/CheckerService.js +22 -0
- package/clients/authService/services/CheckerService.ts +25 -0
- package/clients/authService/services/OAuthService.js +152 -0
- package/clients/authService/services/OAuthService.ts +183 -0
- package/clients/authService/services/ResourceService.js +22 -0
- package/clients/authService/services/ResourceService.ts +25 -0
- package/clients/authService/services/UserInfoService.js +36 -0
- package/clients/authService/services/UserInfoService.ts +41 -0
- package/clients/cartService/core/OpenAPI.js +1 -1
- package/clients/cartService/core/OpenAPI.ts +1 -1
- package/clients/catalogService/core/OpenAPI.js +1 -1
- package/clients/catalogService/core/OpenAPI.ts +1 -1
- package/clients/contentService/core/OpenAPI.js +1 -1
- package/clients/contentService/core/OpenAPI.ts +1 -1
- package/clients/contentService/services/PortalsService.js +26 -14
- package/clients/contentService/services/PortalsService.ts +26 -14
- package/clients/crmService/core/OpenAPI.js +1 -1
- package/clients/crmService/core/OpenAPI.ts +1 -1
- package/clients/dealsService/core/OpenAPI.js +1 -1
- package/clients/dealsService/core/OpenAPI.ts +1 -1
- package/clients/forexService/core/OpenAPI.js +1 -1
- package/clients/forexService/core/OpenAPI.ts +1 -1
- package/clients/globeService/core/OpenAPI.js +1 -1
- package/clients/globeService/core/OpenAPI.ts +1 -1
- package/clients/globeService/index.js +5 -1
- package/clients/globeService/index.ts +4 -0
- package/clients/globeService/models/Error.js +2 -0
- package/clients/globeService/models/Error.ts +10 -0
- package/clients/globeService/models/PaymentResponse.js +21 -0
- package/clients/globeService/models/PaymentResponse.ts +34 -0
- package/clients/globeService/models/ResponseStatus.js +2 -0
- package/clients/globeService/models/ResponseStatus.ts +12 -0
- package/clients/globeService/services/MigrationsService.js +26 -0
- package/clients/globeService/services/MigrationsService.ts +30 -0
- package/clients/holderService/core/OpenAPI.js +1 -1
- package/clients/holderService/core/OpenAPI.ts +1 -1
- package/clients/hrmsService/core/OpenAPI.js +1 -1
- package/clients/hrmsService/core/OpenAPI.ts +1 -1
- package/clients/identityService/core/OpenAPI.js +1 -1
- package/clients/identityService/core/OpenAPI.ts +1 -1
- package/clients/inventoryService/core/OpenAPI.js +1 -1
- package/clients/inventoryService/core/OpenAPI.ts +1 -1
- package/clients/invoicingService/core/OpenAPI.js +1 -1
- package/clients/invoicingService/core/OpenAPI.ts +1 -1
- package/clients/learningService/core/OpenAPI.js +1 -1
- package/clients/learningService/core/OpenAPI.ts +1 -1
- package/clients/marketingService/core/OpenAPI.js +1 -1
- package/clients/marketingService/core/OpenAPI.ts +1 -1
- package/clients/ordersService/core/OpenAPI.js +1 -1
- package/clients/ordersService/core/OpenAPI.ts +1 -1
- package/clients/paymentsService/core/OpenAPI.js +1 -1
- package/clients/paymentsService/core/OpenAPI.ts +1 -1
- package/clients/pricingService/core/OpenAPI.js +1 -1
- package/clients/pricingService/core/OpenAPI.ts +1 -1
- package/clients/projectsService/core/OpenAPI.js +1 -1
- package/clients/projectsService/core/OpenAPI.ts +1 -1
- package/clients/quotesService/core/OpenAPI.js +1 -1
- package/clients/quotesService/core/OpenAPI.ts +1 -1
- package/clients/salesService/core/OpenAPI.js +1 -1
- package/clients/salesService/core/OpenAPI.ts +1 -1
- package/clients/securityService/core/OpenAPI.js +1 -1
- package/clients/securityService/core/OpenAPI.ts +1 -1
- package/clients/shipmentsService/core/OpenAPI.js +1 -1
- package/clients/shipmentsService/core/OpenAPI.ts +1 -1
- package/clients/socialService/core/OpenAPI.js +1 -1
- package/clients/socialService/core/OpenAPI.ts +1 -1
- package/clients/socialService/services/SocialProfilesService.js +72 -24
- package/clients/socialService/services/SocialProfilesService.ts +72 -24
- package/clients/storageService/core/OpenAPI.js +1 -1
- package/clients/storageService/core/OpenAPI.ts +1 -1
- package/clients/supportService/core/OpenAPI.js +1 -1
- package/clients/supportService/core/OpenAPI.ts +1 -1
- package/clients/systemService/core/OpenAPI.js +1 -1
- package/clients/systemService/core/OpenAPI.ts +1 -1
- package/clients/systemService/index.js +5 -1
- package/clients/systemService/index.ts +10 -0
- package/clients/systemService/models/AdditionalAttribute.js +2 -0
- package/clients/systemService/models/AdditionalAttribute.ts +9 -0
- package/clients/systemService/models/LicenseAttributes.js +2 -0
- package/clients/systemService/models/LicenseAttributes.ts +5 -0
- package/clients/systemService/models/LicenseAttributesListEnvelope.js +2 -0
- package/clients/systemService/models/LicenseAttributesListEnvelope.ts +14 -0
- package/clients/systemService/models/LicenseFeature.js +2 -0
- package/clients/systemService/models/LicenseFeature.ts +9 -0
- package/clients/systemService/models/LicenseKey.js +2 -0
- package/clients/systemService/models/LicenseKey.ts +8 -0
- package/clients/systemService/models/LicenseKeyRequest.js +12 -0
- package/clients/systemService/models/LicenseKeyRequest.ts +28 -0
- package/clients/systemService/models/LicenseValidationError.js +2 -0
- package/clients/systemService/models/LicenseValidationError.ts +9 -0
- package/clients/systemService/models/LicenseValidationErrorListEnvelope.js +2 -0
- package/clients/systemService/models/LicenseValidationErrorListEnvelope.ts +14 -0
- package/clients/systemService/models/StringEnvelope.js +2 -0
- package/clients/systemService/models/StringEnvelope.ts +13 -0
- package/clients/systemService/services/LicensesService.js +108 -0
- package/clients/systemService/services/LicensesService.ts +131 -0
- package/clients/tenantService/core/OpenAPI.js +1 -1
- package/clients/tenantService/core/OpenAPI.ts +1 -1
- package/clients/timeTrackerService/core/OpenAPI.js +1 -1
- package/clients/timeTrackerService/core/OpenAPI.ts +1 -1
- package/clients/walletsService/core/OpenAPI.js +1 -1
- package/clients/walletsService/core/OpenAPI.ts +1 -1
- package/clients/walletsService/services/WalletsService.js +65 -21
- package/clients/walletsService/services/WalletsService.ts +65 -21
- package/package.json +1 -1
- package/schemas/authService/schema.s.js +6 -0
- package/schemas/authService/schema.s.ts +894 -0
- package/schemas/contentService/schema.s.ts +120 -48
- package/schemas/globeService/schema.s.ts +64 -0
- package/schemas/socialService/schema.s.ts +1046 -990
- package/schemas/systemService/schema.s.ts +238 -0
- package/schemas/walletsService/schema.s.ts +971 -774
|
@@ -1340,46 +1340,82 @@ export interface paths {
|
|
|
1340
1340
|
};
|
|
1341
1341
|
};
|
|
1342
1342
|
"/api/v2/ContentService/Portals/Root": {
|
|
1343
|
-
/**
|
|
1344
|
-
|
|
1343
|
+
/**
|
|
1344
|
+
* Get the root portal
|
|
1345
|
+
* @description Get the root portal of the this server instance
|
|
1346
|
+
*/
|
|
1347
|
+
get: operations["GetRootWebPortalAsync"];
|
|
1345
1348
|
};
|
|
1346
1349
|
"/api/v2/ContentService/Portals/Current": {
|
|
1347
|
-
/**
|
|
1348
|
-
|
|
1350
|
+
/**
|
|
1351
|
+
* Get the current portal
|
|
1352
|
+
* @description Get the current portal of the this server instance
|
|
1353
|
+
*/
|
|
1354
|
+
get: operations["GetCurrentWebPortalAsync"];
|
|
1349
1355
|
};
|
|
1350
1356
|
"/api/v2/ContentService/Portals/Initialize": {
|
|
1351
|
-
/**
|
|
1352
|
-
|
|
1357
|
+
/**
|
|
1358
|
+
* Initialize the current portal
|
|
1359
|
+
* @description Initialize the current portal for the current user.
|
|
1360
|
+
*/
|
|
1361
|
+
get: operations["InitializeCurrentWebPortalAsync"];
|
|
1353
1362
|
};
|
|
1354
1363
|
"/api/v2/ContentService/Portals/Current/Options": {
|
|
1355
|
-
/**
|
|
1356
|
-
|
|
1364
|
+
/**
|
|
1365
|
+
* Get the current portal's options
|
|
1366
|
+
* @description Get the current portal's options for the current user.
|
|
1367
|
+
*/
|
|
1368
|
+
get: operations["GetCurrentWebPortalOptionsAsync"];
|
|
1357
1369
|
};
|
|
1358
1370
|
"/api/v2/ContentService/Portals/Search": {
|
|
1359
|
-
/**
|
|
1360
|
-
|
|
1371
|
+
/**
|
|
1372
|
+
* Search for a portal by its domain
|
|
1373
|
+
* @description Search for a portal by its domain
|
|
1374
|
+
*/
|
|
1375
|
+
get: operations["SearchWebPortalAsync"];
|
|
1361
1376
|
};
|
|
1362
1377
|
"/api/v2/ContentService/Portals/{portalId}": {
|
|
1363
|
-
/**
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1378
|
+
/**
|
|
1379
|
+
* Get a web portal by its ID
|
|
1380
|
+
* @description Get a web portal by its ID
|
|
1381
|
+
*/
|
|
1382
|
+
get: operations["GetWebPortalByIdAsync"];
|
|
1383
|
+
/**
|
|
1384
|
+
* Update an existing web portal
|
|
1385
|
+
* @description Update an existing web portal
|
|
1386
|
+
*/
|
|
1387
|
+
put: operations["UpdateWebPortalAsync"];
|
|
1388
|
+
/**
|
|
1389
|
+
* Delete a web portal
|
|
1390
|
+
* @description Delete a web portal
|
|
1391
|
+
*/
|
|
1392
|
+
delete: operations["DeleteWebPortalAsync"];
|
|
1393
|
+
/**
|
|
1394
|
+
* Partially update a web portal
|
|
1395
|
+
* @description Partially update a web portal
|
|
1396
|
+
*/
|
|
1397
|
+
patch: operations["PatchWebPortalAsync"];
|
|
1371
1398
|
};
|
|
1372
1399
|
"/api/v2/ContentService/Portals/{portalId}/Settings": {
|
|
1373
|
-
/**
|
|
1374
|
-
|
|
1400
|
+
/**
|
|
1401
|
+
* Get a web portal's settings by its ID
|
|
1402
|
+
* @description Get a web portal's settings by its ID
|
|
1403
|
+
*/
|
|
1404
|
+
get: operations["GetWebPortalSettingsAsync"];
|
|
1375
1405
|
};
|
|
1376
1406
|
"/api/v2/ContentService/Portals/{portalId}/Options": {
|
|
1377
|
-
/**
|
|
1378
|
-
|
|
1407
|
+
/**
|
|
1408
|
+
* Get a web portal's options by its ID
|
|
1409
|
+
* @description Get a web portal's options by its ID
|
|
1410
|
+
*/
|
|
1411
|
+
get: operations["GetWebPortalOptionsAsync"];
|
|
1379
1412
|
};
|
|
1380
1413
|
"/api/v2/ContentService/Portals": {
|
|
1381
|
-
/**
|
|
1382
|
-
|
|
1414
|
+
/**
|
|
1415
|
+
* Create a new web portal
|
|
1416
|
+
* @description Create a new web portal
|
|
1417
|
+
*/
|
|
1418
|
+
post: operations["CreateWebPortalAsync"];
|
|
1383
1419
|
};
|
|
1384
1420
|
"/api/v2/ContentService/Themes/Update": {
|
|
1385
1421
|
get: {
|
|
@@ -4560,8 +4596,11 @@ export type external = Record<string, never>;
|
|
|
4560
4596
|
|
|
4561
4597
|
export interface operations {
|
|
4562
4598
|
|
|
4563
|
-
/**
|
|
4564
|
-
|
|
4599
|
+
/**
|
|
4600
|
+
* Get the root portal
|
|
4601
|
+
* @description Get the root portal of the this server instance
|
|
4602
|
+
*/
|
|
4603
|
+
GetRootWebPortalAsync: {
|
|
4565
4604
|
parameters: {
|
|
4566
4605
|
query?: {
|
|
4567
4606
|
"api-version"?: string;
|
|
@@ -4594,8 +4633,11 @@ export interface operations {
|
|
|
4594
4633
|
};
|
|
4595
4634
|
};
|
|
4596
4635
|
};
|
|
4597
|
-
/**
|
|
4598
|
-
|
|
4636
|
+
/**
|
|
4637
|
+
* Get the current portal
|
|
4638
|
+
* @description Get the current portal of the this server instance
|
|
4639
|
+
*/
|
|
4640
|
+
GetCurrentWebPortalAsync: {
|
|
4599
4641
|
parameters: {
|
|
4600
4642
|
query?: {
|
|
4601
4643
|
"api-version"?: string;
|
|
@@ -4628,8 +4670,11 @@ export interface operations {
|
|
|
4628
4670
|
};
|
|
4629
4671
|
};
|
|
4630
4672
|
};
|
|
4631
|
-
/**
|
|
4632
|
-
|
|
4673
|
+
/**
|
|
4674
|
+
* Initialize the current portal
|
|
4675
|
+
* @description Initialize the current portal for the current user.
|
|
4676
|
+
*/
|
|
4677
|
+
InitializeCurrentWebPortalAsync: {
|
|
4633
4678
|
parameters: {
|
|
4634
4679
|
query?: {
|
|
4635
4680
|
"api-version"?: string;
|
|
@@ -4662,8 +4707,11 @@ export interface operations {
|
|
|
4662
4707
|
};
|
|
4663
4708
|
};
|
|
4664
4709
|
};
|
|
4665
|
-
/**
|
|
4666
|
-
|
|
4710
|
+
/**
|
|
4711
|
+
* Get the current portal's options
|
|
4712
|
+
* @description Get the current portal's options for the current user.
|
|
4713
|
+
*/
|
|
4714
|
+
GetCurrentWebPortalOptionsAsync: {
|
|
4667
4715
|
parameters: {
|
|
4668
4716
|
query?: {
|
|
4669
4717
|
"api-version"?: string;
|
|
@@ -4696,8 +4744,11 @@ export interface operations {
|
|
|
4696
4744
|
};
|
|
4697
4745
|
};
|
|
4698
4746
|
};
|
|
4699
|
-
/**
|
|
4700
|
-
|
|
4747
|
+
/**
|
|
4748
|
+
* Search for a portal by its domain
|
|
4749
|
+
* @description Search for a portal by its domain
|
|
4750
|
+
*/
|
|
4751
|
+
SearchWebPortalAsync: {
|
|
4701
4752
|
parameters: {
|
|
4702
4753
|
query: {
|
|
4703
4754
|
domain: string;
|
|
@@ -4731,8 +4782,11 @@ export interface operations {
|
|
|
4731
4782
|
};
|
|
4732
4783
|
};
|
|
4733
4784
|
};
|
|
4734
|
-
/**
|
|
4735
|
-
|
|
4785
|
+
/**
|
|
4786
|
+
* Get a web portal by its ID
|
|
4787
|
+
* @description Get a web portal by its ID
|
|
4788
|
+
*/
|
|
4789
|
+
GetWebPortalByIdAsync: {
|
|
4736
4790
|
parameters: {
|
|
4737
4791
|
query?: {
|
|
4738
4792
|
"api-version"?: string;
|
|
@@ -4768,8 +4822,11 @@ export interface operations {
|
|
|
4768
4822
|
};
|
|
4769
4823
|
};
|
|
4770
4824
|
};
|
|
4771
|
-
/**
|
|
4772
|
-
|
|
4825
|
+
/**
|
|
4826
|
+
* Update an existing web portal
|
|
4827
|
+
* @description Update an existing web portal
|
|
4828
|
+
*/
|
|
4829
|
+
UpdateWebPortalAsync: {
|
|
4773
4830
|
parameters: {
|
|
4774
4831
|
query: {
|
|
4775
4832
|
tenantId: string;
|
|
@@ -4812,8 +4869,11 @@ export interface operations {
|
|
|
4812
4869
|
};
|
|
4813
4870
|
};
|
|
4814
4871
|
};
|
|
4815
|
-
/**
|
|
4816
|
-
|
|
4872
|
+
/**
|
|
4873
|
+
* Delete a web portal
|
|
4874
|
+
* @description Delete a web portal
|
|
4875
|
+
*/
|
|
4876
|
+
DeleteWebPortalAsync: {
|
|
4817
4877
|
parameters: {
|
|
4818
4878
|
query: {
|
|
4819
4879
|
tenantId: string;
|
|
@@ -4856,8 +4916,11 @@ export interface operations {
|
|
|
4856
4916
|
};
|
|
4857
4917
|
};
|
|
4858
4918
|
};
|
|
4859
|
-
/**
|
|
4860
|
-
|
|
4919
|
+
/**
|
|
4920
|
+
* Partially update a web portal
|
|
4921
|
+
* @description Partially update a web portal
|
|
4922
|
+
*/
|
|
4923
|
+
PatchWebPortalAsync: {
|
|
4861
4924
|
parameters: {
|
|
4862
4925
|
query: {
|
|
4863
4926
|
tenantId: string;
|
|
@@ -4900,8 +4963,11 @@ export interface operations {
|
|
|
4900
4963
|
};
|
|
4901
4964
|
};
|
|
4902
4965
|
};
|
|
4903
|
-
/**
|
|
4904
|
-
|
|
4966
|
+
/**
|
|
4967
|
+
* Get a web portal's settings by its ID
|
|
4968
|
+
* @description Get a web portal's settings by its ID
|
|
4969
|
+
*/
|
|
4970
|
+
GetWebPortalSettingsAsync: {
|
|
4905
4971
|
parameters: {
|
|
4906
4972
|
query?: {
|
|
4907
4973
|
"api-version"?: string;
|
|
@@ -4937,8 +5003,11 @@ export interface operations {
|
|
|
4937
5003
|
};
|
|
4938
5004
|
};
|
|
4939
5005
|
};
|
|
4940
|
-
/**
|
|
4941
|
-
|
|
5006
|
+
/**
|
|
5007
|
+
* Get a web portal's options by its ID
|
|
5008
|
+
* @description Get a web portal's options by its ID
|
|
5009
|
+
*/
|
|
5010
|
+
GetWebPortalOptionsAsync: {
|
|
4942
5011
|
parameters: {
|
|
4943
5012
|
query?: {
|
|
4944
5013
|
"api-version"?: string;
|
|
@@ -4974,8 +5043,11 @@ export interface operations {
|
|
|
4974
5043
|
};
|
|
4975
5044
|
};
|
|
4976
5045
|
};
|
|
4977
|
-
/**
|
|
4978
|
-
|
|
5046
|
+
/**
|
|
5047
|
+
* Create a new web portal
|
|
5048
|
+
* @description Create a new web portal
|
|
5049
|
+
*/
|
|
5050
|
+
CreateWebPortalAsync: {
|
|
4979
5051
|
parameters: {
|
|
4980
5052
|
query: {
|
|
4981
5053
|
tenantId: string;
|
|
@@ -528,6 +528,41 @@ export interface paths {
|
|
|
528
528
|
};
|
|
529
529
|
};
|
|
530
530
|
};
|
|
531
|
+
"/api/v2/Global/System/Migrate": {
|
|
532
|
+
post: {
|
|
533
|
+
parameters: {
|
|
534
|
+
query?: {
|
|
535
|
+
"api-version"?: string;
|
|
536
|
+
};
|
|
537
|
+
header?: {
|
|
538
|
+
"x-api-version"?: string;
|
|
539
|
+
};
|
|
540
|
+
};
|
|
541
|
+
responses: {
|
|
542
|
+
/** @description OK */
|
|
543
|
+
200: {
|
|
544
|
+
content: {
|
|
545
|
+
"application/json": components["schemas"]["PaymentResponse"];
|
|
546
|
+
"application/xml": components["schemas"]["PaymentResponse"];
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
/** @description Unauthorized */
|
|
550
|
+
401: {
|
|
551
|
+
content: {
|
|
552
|
+
"application/json": components["schemas"]["ResponseStatus"];
|
|
553
|
+
"application/xml": components["schemas"]["ResponseStatus"];
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
/** @description Internal Server Error */
|
|
557
|
+
500: {
|
|
558
|
+
content: {
|
|
559
|
+
"application/json": components["schemas"]["ResponseStatus"];
|
|
560
|
+
"application/xml": components["schemas"]["ResponseStatus"];
|
|
561
|
+
};
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
};
|
|
531
566
|
"/api/v2/GlobeService/Timezones": {
|
|
532
567
|
get: {
|
|
533
568
|
parameters: {
|
|
@@ -763,6 +798,11 @@ export interface components {
|
|
|
763
798
|
activityId?: string | null;
|
|
764
799
|
result?: components["schemas"]["CurrencyDto"][] | null;
|
|
765
800
|
};
|
|
801
|
+
Error: {
|
|
802
|
+
id?: string | null;
|
|
803
|
+
description?: string | null;
|
|
804
|
+
help?: string | null;
|
|
805
|
+
};
|
|
766
806
|
ErrorEnvelope: {
|
|
767
807
|
isSuccess?: boolean;
|
|
768
808
|
errorMessage?: string | null;
|
|
@@ -771,6 +811,30 @@ export interface components {
|
|
|
771
811
|
timestamp?: string;
|
|
772
812
|
activityId?: string | null;
|
|
773
813
|
};
|
|
814
|
+
PaymentResponse: {
|
|
815
|
+
test?: boolean;
|
|
816
|
+
ip?: string | null;
|
|
817
|
+
bank?: string | null;
|
|
818
|
+
status?: string | null;
|
|
819
|
+
errors?: unknown;
|
|
820
|
+
response?: string | null;
|
|
821
|
+
authCode?: string | null;
|
|
822
|
+
paymentID?: string | null;
|
|
823
|
+
franchise?: string | null;
|
|
824
|
+
signature?: string | null;
|
|
825
|
+
/**
|
|
826
|
+
* Format: int32
|
|
827
|
+
* @enum {integer}
|
|
828
|
+
*/
|
|
829
|
+
paymentStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
830
|
+
};
|
|
831
|
+
ResponseStatus: {
|
|
832
|
+
success?: boolean;
|
|
833
|
+
error?: components["schemas"]["Error"];
|
|
834
|
+
correlationID?: string | null;
|
|
835
|
+
/** Format: date-time */
|
|
836
|
+
utcTimestamp?: string;
|
|
837
|
+
};
|
|
774
838
|
TimezoneDto: {
|
|
775
839
|
/** Format: date-time */
|
|
776
840
|
timestamp?: string | null;
|