@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
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
612
|
+
public static getOutgoingPaymentsCountAsync(
|
|
569
613
|
walletId: string,
|
|
570
614
|
xApiVersion?: string,
|
|
571
615
|
): CancelablePromise<Int32Envelope> {
|
package/package.json
CHANGED