@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
@@ -18,12 +18,14 @@ import { OpenAPI } from '../core/OpenAPI';
18
18
  import { request as __request } from '../core/request';
19
19
  export class WalletsService {
20
20
  /**
21
+ * Get Wallet Details
22
+ * Get details of a specific wallet by ID.
21
23
  * @param walletId
22
24
  * @param xApiVersion
23
25
  * @returns WalletDtoEnvelope OK
24
26
  * @throws ApiError
25
27
  */
26
- public static getApiV2WalletsServiceWallets(
28
+ public static getWalletDetailsAsync(
27
29
  walletId: string,
28
30
  xApiVersion?: string,
29
31
  ): CancelablePromise<WalletDtoEnvelope> {
@@ -43,12 +45,14 @@ export class WalletsService {
43
45
  });
44
46
  }
45
47
  /**
48
+ * Get Wallet Orders
49
+ * Get orders of a specific wallet by ID.
46
50
  * @param walletId
47
51
  * @param xApiVersion
48
52
  * @returns OrderDtoListEnvelope OK
49
53
  * @throws ApiError
50
54
  */
51
- public static getApiV2WalletsServiceWalletsOrders(
55
+ public static getWalletOrdersAsync(
52
56
  walletId: string,
53
57
  xApiVersion?: string,
54
58
  ): CancelablePromise<OrderDtoListEnvelope> {
@@ -68,12 +72,14 @@ export class WalletsService {
68
72
  });
69
73
  }
70
74
  /**
75
+ * Get Wallet Extended Orders
76
+ * Get extended orders of a specific wallet by ID.
71
77
  * @param walletId
72
78
  * @param xApiVersion
73
79
  * @returns ExtendedOrderDtoListEnvelope OK
74
80
  * @throws ApiError
75
81
  */
76
- public static getApiV2WalletsServiceWalletsOrdersExtended(
82
+ public static getWalletExtendedOrdersAsync(
77
83
  walletId: string,
78
84
  xApiVersion?: string,
79
85
  ): CancelablePromise<ExtendedOrderDtoListEnvelope> {
@@ -93,12 +99,14 @@ export class WalletsService {
93
99
  });
94
100
  }
95
101
  /**
102
+ * Get Wallet Orders Count
103
+ * Get orders count of a specific wallet by ID.
96
104
  * @param walletId
97
105
  * @param xApiVersion
98
106
  * @returns Int32Envelope OK
99
107
  * @throws ApiError
100
108
  */
101
- public static getApiV2WalletsServiceWalletsOrdersCount(
109
+ public static getWalletOrdersCountAsync(
102
110
  walletId: string,
103
111
  xApiVersion?: string,
104
112
  ): CancelablePromise<Int32Envelope> {
@@ -118,12 +126,14 @@ export class WalletsService {
118
126
  });
119
127
  }
120
128
  /**
129
+ * Get Wallet Invoices
130
+ * Get invoices of a specific wallet by ID.
121
131
  * @param walletId
122
132
  * @param xApiVersion
123
133
  * @returns InvoiceDtoListEnvelope OK
124
134
  * @throws ApiError
125
135
  */
126
- public static getApiV2WalletsServiceWalletsInvoices(
136
+ public static getWalletInvoicesAsync(
127
137
  walletId: string,
128
138
  xApiVersion?: string,
129
139
  ): CancelablePromise<InvoiceDtoListEnvelope> {
@@ -143,12 +153,14 @@ export class WalletsService {
143
153
  });
144
154
  }
145
155
  /**
156
+ * Get Wallet Invoices Count
157
+ * Get invoices count of a specific wallet by ID.
146
158
  * @param walletId
147
159
  * @param xApiVersion
148
160
  * @returns Int32Envelope OK
149
161
  * @throws ApiError
150
162
  */
151
- public static getApiV2WalletsServiceWalletsInvoicesCount(
163
+ public static getWalletInvoicesCountAsync(
152
164
  walletId: string,
153
165
  xApiVersion?: string,
154
166
  ): CancelablePromise<Int32Envelope> {
@@ -168,12 +180,14 @@ export class WalletsService {
168
180
  });
169
181
  }
170
182
  /**
183
+ * Get Wallet Payments
184
+ * Get payments of a specific wallet by ID.
171
185
  * @param walletId
172
186
  * @param xApiVersion
173
187
  * @returns PaymentDtoListEnvelope OK
174
188
  * @throws ApiError
175
189
  */
176
- public static getApiV2WalletsServiceWalletsPayments(
190
+ public static getWalletPaymentsAsync(
177
191
  walletId: string,
178
192
  xApiVersion?: string,
179
193
  ): CancelablePromise<PaymentDtoListEnvelope> {
@@ -193,12 +207,14 @@ export class WalletsService {
193
207
  });
194
208
  }
195
209
  /**
210
+ * Get Wallet Payments Count
211
+ * Get payments count of a specific wallet by ID.
196
212
  * @param walletId
197
213
  * @param xApiVersion
198
214
  * @returns Int32Envelope OK
199
215
  * @throws ApiError
200
216
  */
201
- public static getApiV2WalletsServiceWalletsPaymentsCount(
217
+ public static getWalletPaymentsCountAsync(
202
218
  walletId: string,
203
219
  xApiVersion?: string,
204
220
  ): CancelablePromise<Int32Envelope> {
@@ -218,12 +234,14 @@ export class WalletsService {
218
234
  });
219
235
  }
220
236
  /**
237
+ * Get Wallet Locations
238
+ * Get locations of a specific wallet by ID.
221
239
  * @param walletId
222
240
  * @param xApiVersion
223
241
  * @returns LocationDtoListEnvelope OK
224
242
  * @throws ApiError
225
243
  */
226
- public static getApiV2WalletsServiceWalletsLocations(
244
+ public static getWalletLocationsAsync(
227
245
  walletId: string,
228
246
  xApiVersion?: string,
229
247
  ): CancelablePromise<LocationDtoListEnvelope> {
@@ -243,13 +261,15 @@ export class WalletsService {
243
261
  });
244
262
  }
245
263
  /**
264
+ * Create Wallet Location
265
+ * Create a new location for a specific wallet by ID.
246
266
  * @param walletId
247
267
  * @param xApiVersion
248
268
  * @param requestBody
249
269
  * @returns EmptyEnvelope Created
250
270
  * @throws ApiError
251
271
  */
252
- public static postApiV2WalletsServiceWalletsLocations(
272
+ public static createWalletLocationAsync(
253
273
  walletId: string,
254
274
  xApiVersion?: string,
255
275
  requestBody?: LocationCreateDto,
@@ -272,12 +292,14 @@ export class WalletsService {
272
292
  });
273
293
  }
274
294
  /**
295
+ * Get Wallet Locations Count
296
+ * Get locations count of a specific wallet by ID.
275
297
  * @param walletId
276
298
  * @param xApiVersion
277
299
  * @returns Int32Envelope OK
278
300
  * @throws ApiError
279
301
  */
280
- public static getApiV2WalletsServiceWalletsLocationsCount(
302
+ public static getWalletLocationsCountAsync(
281
303
  walletId: string,
282
304
  xApiVersion?: string,
283
305
  ): CancelablePromise<Int32Envelope> {
@@ -297,6 +319,8 @@ export class WalletsService {
297
319
  });
298
320
  }
299
321
  /**
322
+ * Get Wallet Location
323
+ * Get a specific location of a specific wallet by ID.
300
324
  * @param walletId
301
325
  * @param locationId
302
326
  * @param xApiVersion
@@ -325,6 +349,8 @@ export class WalletsService {
325
349
  });
326
350
  }
327
351
  /**
352
+ * Update Wallet Location
353
+ * Update a specific location of a specific wallet by ID.
328
354
  * @param walletId
329
355
  * @param locationId
330
356
  * @param xApiVersion
@@ -332,7 +358,7 @@ export class WalletsService {
332
358
  * @returns EmptyEnvelope OK
333
359
  * @throws ApiError
334
360
  */
335
- public static putApiV2WalletsServiceWalletsLocations(
361
+ public static updateWalletLocationAsync(
336
362
  walletId: string,
337
363
  locationId: string,
338
364
  xApiVersion?: string,
@@ -357,13 +383,15 @@ export class WalletsService {
357
383
  });
358
384
  }
359
385
  /**
386
+ * Delete Wallet Location
387
+ * Delete a specific location of a specific wallet by ID.
360
388
  * @param walletId
361
389
  * @param locationId
362
390
  * @param xApiVersion
363
391
  * @returns void
364
392
  * @throws ApiError
365
393
  */
366
- public static deleteApiV2WalletsServiceWalletsLocations(
394
+ public static deleteWalletLocationAsync(
367
395
  walletId: string,
368
396
  locationId: string,
369
397
  xApiVersion?: string,
@@ -385,12 +413,14 @@ export class WalletsService {
385
413
  });
386
414
  }
387
415
  /**
416
+ * Get Incoming Wallet Invoices
417
+ * Get incoming invoices of a specific wallet by ID.
388
418
  * @param walletId
389
419
  * @param xApiVersion
390
420
  * @returns InvoiceDtoListEnvelope OK
391
421
  * @throws ApiError
392
422
  */
393
- public static getApiV2WalletsServiceWalletsInvoicesIncoming(
423
+ public static getIncomingWalletInvoicesAsync(
394
424
  walletId: string,
395
425
  xApiVersion?: string,
396
426
  ): CancelablePromise<InvoiceDtoListEnvelope> {
@@ -410,12 +440,14 @@ export class WalletsService {
410
440
  });
411
441
  }
412
442
  /**
443
+ * Get Incoming Wallet Invoices Count
444
+ * Get incoming invoices count of a specific wallet by ID.
413
445
  * @param walletId
414
446
  * @param xApiVersion
415
447
  * @returns Int32Envelope OK
416
448
  * @throws ApiError
417
449
  */
418
- public static getApiV2WalletsServiceWalletsInvoicesIncomingCount(
450
+ public static getIncomingWalletInvoicesCountAsync(
419
451
  walletId: string,
420
452
  xApiVersion?: string,
421
453
  ): CancelablePromise<Int32Envelope> {
@@ -435,12 +467,14 @@ export class WalletsService {
435
467
  });
436
468
  }
437
469
  /**
470
+ * Get Outgoing Wallet Invoices
471
+ * Get outgoing invoices of a specific wallet by ID.
438
472
  * @param walletId
439
473
  * @param xApiVersion
440
474
  * @returns InvoiceDtoListEnvelope OK
441
475
  * @throws ApiError
442
476
  */
443
- public static getApiV2WalletsServiceWalletsInvoicesOutgoing(
477
+ public static getOutgoingWalletInvoicesAsync(
444
478
  walletId: string,
445
479
  xApiVersion?: string,
446
480
  ): CancelablePromise<InvoiceDtoListEnvelope> {
@@ -460,12 +494,14 @@ export class WalletsService {
460
494
  });
461
495
  }
462
496
  /**
497
+ * Get Outgoing Wallet Invoices Count
498
+ * Get outgoing invoices count of a specific wallet by ID.
463
499
  * @param walletId
464
500
  * @param xApiVersion
465
501
  * @returns Int32Envelope OK
466
502
  * @throws ApiError
467
503
  */
468
- public static getApiV2WalletsServiceWalletsInvoicesOutgoingCount(
504
+ public static getOutgoingWalletInvoicesCountAsync(
469
505
  walletId: string,
470
506
  xApiVersion?: string,
471
507
  ): CancelablePromise<Int32Envelope> {
@@ -485,12 +521,14 @@ export class WalletsService {
485
521
  });
486
522
  }
487
523
  /**
524
+ * Get Incoming Payments
525
+ * Get incoming payments of a specific wallet by ID.
488
526
  * @param walletId
489
527
  * @param xApiVersion
490
528
  * @returns PaymentDtoListEnvelope OK
491
529
  * @throws ApiError
492
530
  */
493
- public static getApiV2WalletsServiceWalletsPaymentsIncoming(
531
+ public static getIncomingPaymentsAsync(
494
532
  walletId: string,
495
533
  xApiVersion?: string,
496
534
  ): CancelablePromise<PaymentDtoListEnvelope> {
@@ -510,12 +548,14 @@ export class WalletsService {
510
548
  });
511
549
  }
512
550
  /**
551
+ * Get Incoming Payments Count
552
+ * Get incoming payments count of a specific wallet by ID.
513
553
  * @param walletId
514
554
  * @param xApiVersion
515
555
  * @returns Int32Envelope OK
516
556
  * @throws ApiError
517
557
  */
518
- public static getApiV2WalletsServiceWalletsPaymentsIncomingCount(
558
+ public static getIncomingPaymentsCountAsync(
519
559
  walletId: string,
520
560
  xApiVersion?: string,
521
561
  ): CancelablePromise<Int32Envelope> {
@@ -535,12 +575,14 @@ export class WalletsService {
535
575
  });
536
576
  }
537
577
  /**
578
+ * Get Outgoing Payments
579
+ * Get outgoing payments of a specific wallet by ID.
538
580
  * @param walletId
539
581
  * @param xApiVersion
540
582
  * @returns PaymentDtoListEnvelope OK
541
583
  * @throws ApiError
542
584
  */
543
- public static getApiV2WalletsServiceWalletsPaymentsOutgoing(
585
+ public static getOutgoingPaymentsAsync(
544
586
  walletId: string,
545
587
  xApiVersion?: string,
546
588
  ): CancelablePromise<PaymentDtoListEnvelope> {
@@ -560,12 +602,14 @@ export class WalletsService {
560
602
  });
561
603
  }
562
604
  /**
605
+ * Get Outgoing Payments Count
606
+ * Get outgoing payments count of a specific wallet by ID.
563
607
  * @param walletId
564
608
  * @param xApiVersion
565
609
  * @returns Int32Envelope OK
566
610
  * @throws ApiError
567
611
  */
568
- public static getApiV2WalletsServiceWalletsPaymentsOutgoingCount(
612
+ public static getOutgoingPaymentsCountAsync(
569
613
  walletId: string,
570
614
  xApiVersion?: string,
571
615
  ): CancelablePromise<Int32Envelope> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "license": "MIT",
3
3
  "access": "public",
4
- "version": "1.0.13",
4
+ "version": "1.0.15",
5
5
  "name": "@fenixalliance/abs-api-client",
6
6
  "main": "wwwroot/build/bundle.js",
7
7
  "homepage": "https://absuite.net",
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by openapi-typescript.
4
+ * Do not make direct changes to the file.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });