@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
@@ -41,6 +41,174 @@ export interface paths {
41
41
  };
42
42
  };
43
43
  };
44
+ "/api/Licensing/Licenses/Validate": {
45
+ get: {
46
+ parameters: {
47
+ query: {
48
+ tenantId: string;
49
+ "api-version"?: string;
50
+ };
51
+ header?: {
52
+ "x-api-version"?: string;
53
+ };
54
+ };
55
+ requestBody?: {
56
+ content: {
57
+ "application/json": components["schemas"]["LicenseKey"];
58
+ "application/xml": components["schemas"]["LicenseKey"];
59
+ };
60
+ };
61
+ responses: {
62
+ /** @description OK */
63
+ 200: {
64
+ content: {
65
+ "application/json": components["schemas"]["BooleanEnvelope"];
66
+ "application/xml": components["schemas"]["BooleanEnvelope"];
67
+ };
68
+ };
69
+ /** @description Unauthorized */
70
+ 401: {
71
+ content: {
72
+ "application/json": components["schemas"]["ErrorEnvelope"];
73
+ "application/xml": components["schemas"]["ErrorEnvelope"];
74
+ };
75
+ };
76
+ /** @description Forbidden */
77
+ 403: {
78
+ content: {
79
+ "application/json": components["schemas"]["ErrorEnvelope"];
80
+ "application/xml": components["schemas"]["ErrorEnvelope"];
81
+ };
82
+ };
83
+ };
84
+ };
85
+ };
86
+ "/api/Licensing/Licenses/Validate/Errors": {
87
+ get: {
88
+ parameters: {
89
+ query: {
90
+ tenantId: string;
91
+ "api-version"?: string;
92
+ };
93
+ header?: {
94
+ "x-api-version"?: string;
95
+ };
96
+ };
97
+ requestBody?: {
98
+ content: {
99
+ "application/json": components["schemas"]["LicenseKey"];
100
+ "application/xml": components["schemas"]["LicenseKey"];
101
+ };
102
+ };
103
+ responses: {
104
+ /** @description OK */
105
+ 200: {
106
+ content: {
107
+ "application/json": components["schemas"]["LicenseValidationErrorListEnvelope"];
108
+ "application/xml": components["schemas"]["LicenseValidationErrorListEnvelope"];
109
+ };
110
+ };
111
+ /** @description Unauthorized */
112
+ 401: {
113
+ content: {
114
+ "application/json": components["schemas"]["ErrorEnvelope"];
115
+ "application/xml": components["schemas"]["ErrorEnvelope"];
116
+ };
117
+ };
118
+ /** @description Forbidden */
119
+ 403: {
120
+ content: {
121
+ "application/json": components["schemas"]["ErrorEnvelope"];
122
+ "application/xml": components["schemas"]["ErrorEnvelope"];
123
+ };
124
+ };
125
+ };
126
+ };
127
+ };
128
+ "/api/Licensing/Licenses/Validate/Attributes": {
129
+ get: {
130
+ parameters: {
131
+ query: {
132
+ tenantId: string;
133
+ "api-version"?: string;
134
+ };
135
+ header?: {
136
+ "x-api-version"?: string;
137
+ };
138
+ };
139
+ requestBody?: {
140
+ content: {
141
+ "application/json": components["schemas"]["LicenseKey"];
142
+ "application/xml": components["schemas"]["LicenseKey"];
143
+ };
144
+ };
145
+ responses: {
146
+ /** @description OK */
147
+ 200: {
148
+ content: {
149
+ "application/json": components["schemas"]["LicenseAttributesListEnvelope"];
150
+ "application/xml": components["schemas"]["LicenseAttributesListEnvelope"];
151
+ };
152
+ };
153
+ /** @description Unauthorized */
154
+ 401: {
155
+ content: {
156
+ "application/json": components["schemas"]["ErrorEnvelope"];
157
+ "application/xml": components["schemas"]["ErrorEnvelope"];
158
+ };
159
+ };
160
+ /** @description Forbidden */
161
+ 403: {
162
+ content: {
163
+ "application/json": components["schemas"]["ErrorEnvelope"];
164
+ "application/xml": components["schemas"]["ErrorEnvelope"];
165
+ };
166
+ };
167
+ };
168
+ };
169
+ };
170
+ "/api/Licensing/Licenses/Generate": {
171
+ post: {
172
+ parameters: {
173
+ query: {
174
+ tenantId: string;
175
+ "api-version"?: string;
176
+ };
177
+ header?: {
178
+ "x-api-version"?: string;
179
+ };
180
+ };
181
+ requestBody?: {
182
+ content: {
183
+ "application/json": components["schemas"]["LicenseKeyRequest"];
184
+ "application/xml": components["schemas"]["LicenseKeyRequest"];
185
+ };
186
+ };
187
+ responses: {
188
+ /** @description OK */
189
+ 200: {
190
+ content: {
191
+ "application/json": components["schemas"]["StringEnvelope"];
192
+ "application/xml": components["schemas"]["StringEnvelope"];
193
+ };
194
+ };
195
+ /** @description Unauthorized */
196
+ 401: {
197
+ content: {
198
+ "application/json": components["schemas"]["ErrorEnvelope"];
199
+ "application/xml": components["schemas"]["ErrorEnvelope"];
200
+ };
201
+ };
202
+ /** @description Forbidden */
203
+ 403: {
204
+ content: {
205
+ "application/json": components["schemas"]["ErrorEnvelope"];
206
+ "application/xml": components["schemas"]["ErrorEnvelope"];
207
+ };
208
+ };
209
+ };
210
+ };
211
+ };
44
212
  "/api/v2/SystemService/Licensing/Licenses": {
45
213
  get: {
46
214
  parameters: {
@@ -1474,6 +1642,10 @@ export interface components {
1474
1642
  password?: string | null;
1475
1643
  };
1476
1644
  AccountHolderUpdateDto: Record<string, never>;
1645
+ AdditionalAttribute: {
1646
+ key?: string | null;
1647
+ value?: string | null;
1648
+ };
1477
1649
  BooleanEnvelope: {
1478
1650
  isSuccess?: boolean;
1479
1651
  errorMessage?: string | null;
@@ -1705,6 +1877,63 @@ export interface components {
1705
1877
  /** Format: int32 */
1706
1878
  result?: number;
1707
1879
  };
1880
+ LicenseAttributes: Record<string, never>;
1881
+ LicenseAttributesListEnvelope: {
1882
+ isSuccess?: boolean;
1883
+ errorMessage?: string | null;
1884
+ correlationId?: string | null;
1885
+ /** Format: date-time */
1886
+ timestamp?: string;
1887
+ activityId?: string | null;
1888
+ result?: components["schemas"]["LicenseAttributes"][] | null;
1889
+ };
1890
+ LicenseFeature: {
1891
+ key?: string | null;
1892
+ value?: string | null;
1893
+ };
1894
+ LicenseKey: {
1895
+ key?: string | null;
1896
+ };
1897
+ LicenseKeyRequest: {
1898
+ /** Format: uuid */
1899
+ userId?: string;
1900
+ /** Format: uuid */
1901
+ tenantId?: string | null;
1902
+ /** Format: uuid */
1903
+ orderId?: string | null;
1904
+ /** Format: uuid */
1905
+ paymentId?: string | null;
1906
+ /** Format: uuid */
1907
+ invoiceId?: string | null;
1908
+ /** Format: uuid */
1909
+ enrollmentId?: string | null;
1910
+ /** Format: uuid */
1911
+ entitlementId?: string | null;
1912
+ /** Format: int32 */
1913
+ seats?: number;
1914
+ /**
1915
+ * Format: int32
1916
+ * @enum {integer}
1917
+ */
1918
+ licenseType?: 1 | 2 | 3;
1919
+ /** Format: date-time */
1920
+ expirationDate?: string;
1921
+ features?: components["schemas"]["LicenseFeature"][] | null;
1922
+ additionalAttributes?: components["schemas"]["AdditionalAttribute"][] | null;
1923
+ };
1924
+ LicenseValidationError: {
1925
+ message?: string | null;
1926
+ howToResolve?: string | null;
1927
+ };
1928
+ LicenseValidationErrorListEnvelope: {
1929
+ isSuccess?: boolean;
1930
+ errorMessage?: string | null;
1931
+ correlationId?: string | null;
1932
+ /** Format: date-time */
1933
+ timestamp?: string;
1934
+ activityId?: string | null;
1935
+ result?: components["schemas"]["LicenseValidationError"][] | null;
1936
+ };
1708
1937
  LicenseValidationRequest: {
1709
1938
  licenseKey: string;
1710
1939
  };
@@ -1791,6 +2020,15 @@ export interface components {
1791
2020
  domain?: string | null;
1792
2021
  notes?: string | null;
1793
2022
  };
2023
+ StringEnvelope: {
2024
+ isSuccess?: boolean;
2025
+ errorMessage?: string | null;
2026
+ correlationId?: string | null;
2027
+ /** Format: date-time */
2028
+ timestamp?: string;
2029
+ activityId?: string | null;
2030
+ result?: string | null;
2031
+ };
1794
2032
  StringListEnvelope: {
1795
2033
  isSuccess?: boolean;
1796
2034
  errorMessage?: string | null;