@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.
Files changed (196) hide show
  1. package/clients/accountingService/core/OpenAPI.js +1 -1
  2. package/clients/accountingService/core/OpenAPI.ts +1 -1
  3. package/clients/authService/core/ApiError.js +20 -0
  4. package/clients/authService/core/ApiError.ts +25 -0
  5. package/clients/authService/core/ApiRequestOptions.js +2 -0
  6. package/clients/authService/core/ApiRequestOptions.ts +17 -0
  7. package/clients/authService/core/ApiResult.js +2 -0
  8. package/clients/authService/core/ApiResult.ts +11 -0
  9. package/clients/authService/core/CancelablePromise.js +104 -0
  10. package/clients/authService/core/CancelablePromise.ts +131 -0
  11. package/clients/authService/core/OpenAPI.js +14 -0
  12. package/clients/authService/core/OpenAPI.ts +32 -0
  13. package/clients/authService/core/request.js +294 -0
  14. package/clients/authService/core/request.ts +322 -0
  15. package/clients/authService/index.js +28 -0
  16. package/clients/authService/index.ts +48 -0
  17. package/clients/authService/models/AccessTokenResponse.js +2 -0
  18. package/clients/authService/models/AccessTokenResponse.ts +11 -0
  19. package/clients/authService/models/AccountHolderCreateDto.js +12 -0
  20. package/clients/authService/models/AccountHolderCreateDto.ts +41 -0
  21. package/clients/authService/models/AccountHolderCreateDtoEnvelope.js +2 -0
  22. package/clients/authService/models/AccountHolderCreateDtoEnvelope.ts +14 -0
  23. package/clients/authService/models/ApiAuthorizationResult.js +2 -0
  24. package/clients/authService/models/ApiAuthorizationResult.ts +17 -0
  25. package/clients/authService/models/ApiAuthorizationResultEnvelope.js +2 -0
  26. package/clients/authService/models/ApiAuthorizationResultEnvelope.ts +14 -0
  27. package/clients/authService/models/EnrollmentId.js +2 -0
  28. package/clients/authService/models/EnrollmentId.ts +5 -0
  29. package/clients/authService/models/ErrorEnvelope.js +2 -0
  30. package/clients/authService/models/ErrorEnvelope.ts +12 -0
  31. package/clients/authService/models/ForgotPasswordRequest.js +2 -0
  32. package/clients/authService/models/ForgotPasswordRequest.ts +8 -0
  33. package/clients/authService/models/HttpValidationProblemDetails.js +2 -0
  34. package/clients/authService/models/HttpValidationProblemDetails.ts +5 -0
  35. package/clients/authService/models/InfoRequest.js +2 -0
  36. package/clients/authService/models/InfoRequest.ts +10 -0
  37. package/clients/authService/models/InfoResponse.js +2 -0
  38. package/clients/authService/models/InfoResponse.ts +9 -0
  39. package/clients/authService/models/JsonWebKey.js +2 -0
  40. package/clients/authService/models/JsonWebKey.ts +13 -0
  41. package/clients/authService/models/JsonWebKeySet.js +2 -0
  42. package/clients/authService/models/JsonWebKeySet.ts +9 -0
  43. package/clients/authService/models/JsonWebKeySetEnvelope.js +2 -0
  44. package/clients/authService/models/JsonWebKeySetEnvelope.ts +14 -0
  45. package/clients/authService/models/JsonWebToken.js +2 -0
  46. package/clients/authService/models/JsonWebToken.ts +15 -0
  47. package/clients/authService/models/JsonWebTokenEnvelope.js +2 -0
  48. package/clients/authService/models/JsonWebTokenEnvelope.ts +14 -0
  49. package/clients/authService/models/JsonWebTokenHeader.js +2 -0
  50. package/clients/authService/models/JsonWebTokenHeader.ts +11 -0
  51. package/clients/authService/models/JsonWebTokenPayload.js +2 -0
  52. package/clients/authService/models/JsonWebTokenPayload.ts +17 -0
  53. package/clients/authService/models/LoginRequest.js +2 -0
  54. package/clients/authService/models/LoginRequest.ts +11 -0
  55. package/clients/authService/models/OAuthTokenRequest.js +2 -0
  56. package/clients/authService/models/OAuthTokenRequest.ts +12 -0
  57. package/clients/authService/models/OpenIdConfiguration.js +2 -0
  58. package/clients/authService/models/OpenIdConfiguration.ts +19 -0
  59. package/clients/authService/models/OpenIdConfigurationEnvelope.js +2 -0
  60. package/clients/authService/models/OpenIdConfigurationEnvelope.ts +14 -0
  61. package/clients/authService/models/RefreshRequest.js +2 -0
  62. package/clients/authService/models/RefreshRequest.ts +8 -0
  63. package/clients/authService/models/RegisterRequest.js +2 -0
  64. package/clients/authService/models/RegisterRequest.ts +9 -0
  65. package/clients/authService/models/ResendConfirmationEmailRequest.js +2 -0
  66. package/clients/authService/models/ResendConfirmationEmailRequest.ts +8 -0
  67. package/clients/authService/models/ResetPasswordRequest.js +2 -0
  68. package/clients/authService/models/ResetPasswordRequest.ts +10 -0
  69. package/clients/authService/models/SigninModel.js +2 -0
  70. package/clients/authService/models/SigninModel.ts +9 -0
  71. package/clients/authService/models/StringListEnvelope.js +2 -0
  72. package/clients/authService/models/StringListEnvelope.ts +13 -0
  73. package/clients/authService/models/TenantId.js +2 -0
  74. package/clients/authService/models/TenantId.ts +5 -0
  75. package/clients/authService/models/TwoFactorRequest.js +2 -0
  76. package/clients/authService/models/TwoFactorRequest.ts +12 -0
  77. package/clients/authService/models/TwoFactorResponse.js +2 -0
  78. package/clients/authService/models/TwoFactorResponse.ts +12 -0
  79. package/clients/authService/models/UserId.js +2 -0
  80. package/clients/authService/models/UserId.ts +5 -0
  81. package/clients/authService/services/ApplicationsService.js +112 -0
  82. package/clients/authService/services/ApplicationsService.ts +132 -0
  83. package/clients/authService/services/AuthService.js +246 -0
  84. package/clients/authService/services/AuthService.ts +293 -0
  85. package/clients/authService/services/CheckerService.js +22 -0
  86. package/clients/authService/services/CheckerService.ts +25 -0
  87. package/clients/authService/services/OAuthService.js +152 -0
  88. package/clients/authService/services/OAuthService.ts +183 -0
  89. package/clients/authService/services/ResourceService.js +22 -0
  90. package/clients/authService/services/ResourceService.ts +25 -0
  91. package/clients/authService/services/UserInfoService.js +36 -0
  92. package/clients/authService/services/UserInfoService.ts +41 -0
  93. package/clients/cartService/core/OpenAPI.js +1 -1
  94. package/clients/cartService/core/OpenAPI.ts +1 -1
  95. package/clients/catalogService/core/OpenAPI.js +1 -1
  96. package/clients/catalogService/core/OpenAPI.ts +1 -1
  97. package/clients/contentService/core/OpenAPI.js +1 -1
  98. package/clients/contentService/core/OpenAPI.ts +1 -1
  99. package/clients/contentService/services/PortalsService.js +26 -14
  100. package/clients/contentService/services/PortalsService.ts +26 -14
  101. package/clients/crmService/core/OpenAPI.js +1 -1
  102. package/clients/crmService/core/OpenAPI.ts +1 -1
  103. package/clients/dealsService/core/OpenAPI.js +1 -1
  104. package/clients/dealsService/core/OpenAPI.ts +1 -1
  105. package/clients/forexService/core/OpenAPI.js +1 -1
  106. package/clients/forexService/core/OpenAPI.ts +1 -1
  107. package/clients/globeService/core/OpenAPI.js +1 -1
  108. package/clients/globeService/core/OpenAPI.ts +1 -1
  109. package/clients/globeService/index.js +5 -1
  110. package/clients/globeService/index.ts +4 -0
  111. package/clients/globeService/models/Error.js +2 -0
  112. package/clients/globeService/models/Error.ts +10 -0
  113. package/clients/globeService/models/PaymentResponse.js +21 -0
  114. package/clients/globeService/models/PaymentResponse.ts +34 -0
  115. package/clients/globeService/models/ResponseStatus.js +2 -0
  116. package/clients/globeService/models/ResponseStatus.ts +12 -0
  117. package/clients/globeService/services/MigrationsService.js +26 -0
  118. package/clients/globeService/services/MigrationsService.ts +30 -0
  119. package/clients/holderService/core/OpenAPI.js +1 -1
  120. package/clients/holderService/core/OpenAPI.ts +1 -1
  121. package/clients/hrmsService/core/OpenAPI.js +1 -1
  122. package/clients/hrmsService/core/OpenAPI.ts +1 -1
  123. package/clients/identityService/core/OpenAPI.js +1 -1
  124. package/clients/identityService/core/OpenAPI.ts +1 -1
  125. package/clients/inventoryService/core/OpenAPI.js +1 -1
  126. package/clients/inventoryService/core/OpenAPI.ts +1 -1
  127. package/clients/invoicingService/core/OpenAPI.js +1 -1
  128. package/clients/invoicingService/core/OpenAPI.ts +1 -1
  129. package/clients/learningService/core/OpenAPI.js +1 -1
  130. package/clients/learningService/core/OpenAPI.ts +1 -1
  131. package/clients/marketingService/core/OpenAPI.js +1 -1
  132. package/clients/marketingService/core/OpenAPI.ts +1 -1
  133. package/clients/ordersService/core/OpenAPI.js +1 -1
  134. package/clients/ordersService/core/OpenAPI.ts +1 -1
  135. package/clients/paymentsService/core/OpenAPI.js +1 -1
  136. package/clients/paymentsService/core/OpenAPI.ts +1 -1
  137. package/clients/pricingService/core/OpenAPI.js +1 -1
  138. package/clients/pricingService/core/OpenAPI.ts +1 -1
  139. package/clients/projectsService/core/OpenAPI.js +1 -1
  140. package/clients/projectsService/core/OpenAPI.ts +1 -1
  141. package/clients/quotesService/core/OpenAPI.js +1 -1
  142. package/clients/quotesService/core/OpenAPI.ts +1 -1
  143. package/clients/salesService/core/OpenAPI.js +1 -1
  144. package/clients/salesService/core/OpenAPI.ts +1 -1
  145. package/clients/securityService/core/OpenAPI.js +1 -1
  146. package/clients/securityService/core/OpenAPI.ts +1 -1
  147. package/clients/shipmentsService/core/OpenAPI.js +1 -1
  148. package/clients/shipmentsService/core/OpenAPI.ts +1 -1
  149. package/clients/socialService/core/OpenAPI.js +1 -1
  150. package/clients/socialService/core/OpenAPI.ts +1 -1
  151. package/clients/socialService/services/SocialProfilesService.js +72 -24
  152. package/clients/socialService/services/SocialProfilesService.ts +72 -24
  153. package/clients/storageService/core/OpenAPI.js +1 -1
  154. package/clients/storageService/core/OpenAPI.ts +1 -1
  155. package/clients/supportService/core/OpenAPI.js +1 -1
  156. package/clients/supportService/core/OpenAPI.ts +1 -1
  157. package/clients/systemService/core/OpenAPI.js +1 -1
  158. package/clients/systemService/core/OpenAPI.ts +1 -1
  159. package/clients/systemService/index.js +5 -1
  160. package/clients/systemService/index.ts +10 -0
  161. package/clients/systemService/models/AdditionalAttribute.js +2 -0
  162. package/clients/systemService/models/AdditionalAttribute.ts +9 -0
  163. package/clients/systemService/models/LicenseAttributes.js +2 -0
  164. package/clients/systemService/models/LicenseAttributes.ts +5 -0
  165. package/clients/systemService/models/LicenseAttributesListEnvelope.js +2 -0
  166. package/clients/systemService/models/LicenseAttributesListEnvelope.ts +14 -0
  167. package/clients/systemService/models/LicenseFeature.js +2 -0
  168. package/clients/systemService/models/LicenseFeature.ts +9 -0
  169. package/clients/systemService/models/LicenseKey.js +2 -0
  170. package/clients/systemService/models/LicenseKey.ts +8 -0
  171. package/clients/systemService/models/LicenseKeyRequest.js +12 -0
  172. package/clients/systemService/models/LicenseKeyRequest.ts +28 -0
  173. package/clients/systemService/models/LicenseValidationError.js +2 -0
  174. package/clients/systemService/models/LicenseValidationError.ts +9 -0
  175. package/clients/systemService/models/LicenseValidationErrorListEnvelope.js +2 -0
  176. package/clients/systemService/models/LicenseValidationErrorListEnvelope.ts +14 -0
  177. package/clients/systemService/models/StringEnvelope.js +2 -0
  178. package/clients/systemService/models/StringEnvelope.ts +13 -0
  179. package/clients/systemService/services/LicensesService.js +108 -0
  180. package/clients/systemService/services/LicensesService.ts +131 -0
  181. package/clients/tenantService/core/OpenAPI.js +1 -1
  182. package/clients/tenantService/core/OpenAPI.ts +1 -1
  183. package/clients/timeTrackerService/core/OpenAPI.js +1 -1
  184. package/clients/timeTrackerService/core/OpenAPI.ts +1 -1
  185. package/clients/walletsService/core/OpenAPI.js +1 -1
  186. package/clients/walletsService/core/OpenAPI.ts +1 -1
  187. package/clients/walletsService/services/WalletsService.js +65 -21
  188. package/clients/walletsService/services/WalletsService.ts +65 -21
  189. package/package.json +1 -1
  190. package/schemas/authService/schema.s.js +6 -0
  191. package/schemas/authService/schema.s.ts +894 -0
  192. package/schemas/contentService/schema.s.ts +120 -48
  193. package/schemas/globeService/schema.s.ts +64 -0
  194. package/schemas/socialService/schema.s.ts +1046 -990
  195. package/schemas/systemService/schema.s.ts +238 -0
  196. 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
- /** Get the root portal */
1344
- get: operations["GetRootPortal"];
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
- /** Get the current portal */
1348
- get: operations["GetCurrentWebPortal"];
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
- /** Initialize the current portal */
1352
- get: operations["InitializeCurrentWebPortal"];
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
- /** Get the current portal settings */
1356
- get: operations["GetCurrentWebPortalOptions"];
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
- /** Search for a portal by its domain */
1360
- get: operations["SearchWebPortal"];
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
- /** Get a web portal by its ID */
1364
- get: operations["GetWebPortalById"];
1365
- /** Update an existing web portal */
1366
- put: operations["UpdateWebPortal"];
1367
- /** Delete a web portal by its ID */
1368
- delete: operations["DeleteWebPortal"];
1369
- /** Partially update a web portal */
1370
- patch: operations["PatchWebPortal"];
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
- /** Get a web portal's settings by its ID */
1374
- get: operations["GetWebPortalSettingsById"];
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
- /** Get a web portal's options by its ID */
1378
- get: operations["GetWebPortalOptionsById"];
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
- /** Create a new web portal */
1382
- post: operations["CreateWebPortal"];
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
- /** Get the root portal */
4564
- GetRootPortal: {
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
- /** Get the current portal */
4598
- GetCurrentWebPortal: {
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
- /** Initialize the current portal */
4632
- InitializeCurrentWebPortal: {
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
- /** Get the current portal settings */
4666
- GetCurrentWebPortalOptions: {
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
- /** Search for a portal by its domain */
4700
- SearchWebPortal: {
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
- /** Get a web portal by its ID */
4735
- GetWebPortalById: {
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
- /** Update an existing web portal */
4772
- UpdateWebPortal: {
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
- /** Delete a web portal by its ID */
4816
- DeleteWebPortal: {
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
- /** Partially update a web portal */
4860
- PatchWebPortal: {
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
- /** Get a web portal's settings by its ID */
4904
- GetWebPortalSettingsById: {
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
- /** Get a web portal's options by its ID */
4941
- GetWebPortalOptionsById: {
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
- /** Create a new web portal */
4978
- CreateWebPortal: {
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;