@gewis/sudosos-client 0.0.0-develop.0dd03a8 → 0.0.0-develop.11b785c
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/README.md +110 -0
- package/dist/api.d.ts +194 -341
- package/dist/api.js +116 -293
- package/dist/base.js +1 -1
- package/package.json +4 -4
package/dist/api.d.ts
CHANGED
|
@@ -58,19 +58,6 @@ export interface AddRoleRequest {
|
|
|
58
58
|
*/
|
|
59
59
|
'roleId': number;
|
|
60
60
|
}
|
|
61
|
-
/**
|
|
62
|
-
*
|
|
63
|
-
* @export
|
|
64
|
-
* @interface AuthenticationEanRequest
|
|
65
|
-
*/
|
|
66
|
-
export interface AuthenticationEanRequest {
|
|
67
|
-
/**
|
|
68
|
-
*
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof AuthenticationEanRequest
|
|
71
|
-
*/
|
|
72
|
-
'eanCode': string;
|
|
73
|
-
}
|
|
74
61
|
/**
|
|
75
62
|
*
|
|
76
63
|
* @export
|
|
@@ -147,38 +134,6 @@ export interface AuthenticationMockRequest {
|
|
|
147
134
|
*/
|
|
148
135
|
'nonce': string;
|
|
149
136
|
}
|
|
150
|
-
/**
|
|
151
|
-
*
|
|
152
|
-
* @export
|
|
153
|
-
* @interface AuthenticationNfcRequest
|
|
154
|
-
*/
|
|
155
|
-
export interface AuthenticationNfcRequest {
|
|
156
|
-
/**
|
|
157
|
-
*
|
|
158
|
-
* @type {string}
|
|
159
|
-
* @memberof AuthenticationNfcRequest
|
|
160
|
-
*/
|
|
161
|
-
'nfcCode': string;
|
|
162
|
-
}
|
|
163
|
-
/**
|
|
164
|
-
*
|
|
165
|
-
* @export
|
|
166
|
-
* @interface AuthenticationPinRequest
|
|
167
|
-
*/
|
|
168
|
-
export interface AuthenticationPinRequest {
|
|
169
|
-
/**
|
|
170
|
-
*
|
|
171
|
-
* @type {number}
|
|
172
|
-
* @memberof AuthenticationPinRequest
|
|
173
|
-
*/
|
|
174
|
-
'userId': number;
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
* @type {string}
|
|
178
|
-
* @memberof AuthenticationPinRequest
|
|
179
|
-
*/
|
|
180
|
-
'pin': string;
|
|
181
|
-
}
|
|
182
137
|
/**
|
|
183
138
|
*
|
|
184
139
|
* @export
|
|
@@ -1659,7 +1614,7 @@ export interface ContainerWithProductsResponse {
|
|
|
1659
1614
|
'products': Array<ProductResponse>;
|
|
1660
1615
|
}
|
|
1661
1616
|
/**
|
|
1662
|
-
*
|
|
1617
|
+
* API Request for creating a `container` entity.
|
|
1663
1618
|
* @export
|
|
1664
1619
|
* @interface CreateContainerRequest
|
|
1665
1620
|
*/
|
|
@@ -1683,11 +1638,11 @@ export interface CreateContainerRequest {
|
|
|
1683
1638
|
*/
|
|
1684
1639
|
'public': boolean;
|
|
1685
1640
|
/**
|
|
1686
|
-
* Id of the
|
|
1641
|
+
* Id of the organ that will own the container
|
|
1687
1642
|
* @type {number}
|
|
1688
1643
|
* @memberof CreateContainerRequest
|
|
1689
1644
|
*/
|
|
1690
|
-
'ownerId'
|
|
1645
|
+
'ownerId': number;
|
|
1691
1646
|
}
|
|
1692
1647
|
/**
|
|
1693
1648
|
*
|
|
@@ -1856,7 +1811,7 @@ export interface CreatePermissionParams {
|
|
|
1856
1811
|
'attributes': Array<string>;
|
|
1857
1812
|
}
|
|
1858
1813
|
/**
|
|
1859
|
-
*
|
|
1814
|
+
* API Request for creating a `point of sale` entity.
|
|
1860
1815
|
* @export
|
|
1861
1816
|
* @interface CreatePointOfSaleRequest
|
|
1862
1817
|
*/
|
|
@@ -1880,7 +1835,7 @@ export interface CreatePointOfSaleRequest {
|
|
|
1880
1835
|
*/
|
|
1881
1836
|
'containers': Array<number>;
|
|
1882
1837
|
/**
|
|
1883
|
-
* ID of the user who will own the POS
|
|
1838
|
+
* ID of the user who will own the POS.
|
|
1884
1839
|
* @type {number}
|
|
1885
1840
|
* @memberof CreatePointOfSaleRequest
|
|
1886
1841
|
*/
|
|
@@ -1893,7 +1848,7 @@ export interface CreatePointOfSaleRequest {
|
|
|
1893
1848
|
'cashierRoleIds'?: Array<number>;
|
|
1894
1849
|
}
|
|
1895
1850
|
/**
|
|
1896
|
-
*
|
|
1851
|
+
* API Request for creating a `product` entity.
|
|
1897
1852
|
* @export
|
|
1898
1853
|
* @interface CreateProductRequest
|
|
1899
1854
|
*/
|
|
@@ -2566,10 +2521,15 @@ export interface FineResponse {
|
|
|
2566
2521
|
/**
|
|
2567
2522
|
*
|
|
2568
2523
|
* @export
|
|
2569
|
-
* @
|
|
2524
|
+
* @enum {string}
|
|
2570
2525
|
*/
|
|
2571
|
-
export
|
|
2572
|
-
|
|
2526
|
+
export declare const GetAllInvoicesCurrentStateParameterInner: {
|
|
2527
|
+
readonly Created: "CREATED";
|
|
2528
|
+
readonly Sent: "SENT";
|
|
2529
|
+
readonly Paid: "PAID";
|
|
2530
|
+
readonly Deleted: "DELETED";
|
|
2531
|
+
};
|
|
2532
|
+
export type GetAllInvoicesCurrentStateParameterInner = typeof GetAllInvoicesCurrentStateParameterInner[keyof typeof GetAllInvoicesCurrentStateParameterInner];
|
|
2573
2533
|
/**
|
|
2574
2534
|
* @type GetAllPayoutRequestsRequestedByIdParameter
|
|
2575
2535
|
* @export
|
|
@@ -2724,6 +2684,37 @@ export interface InactiveAdministrativeCostResponse {
|
|
|
2724
2684
|
*/
|
|
2725
2685
|
'transfer': TransferResponse;
|
|
2726
2686
|
}
|
|
2687
|
+
/**
|
|
2688
|
+
*
|
|
2689
|
+
* @export
|
|
2690
|
+
* @interface InvoiceDriftResponse
|
|
2691
|
+
*/
|
|
2692
|
+
export interface InvoiceDriftResponse {
|
|
2693
|
+
/**
|
|
2694
|
+
*
|
|
2695
|
+
* @type {BaseInvoiceResponse}
|
|
2696
|
+
* @memberof InvoiceDriftResponse
|
|
2697
|
+
*/
|
|
2698
|
+
'invoice': BaseInvoiceResponse;
|
|
2699
|
+
/**
|
|
2700
|
+
*
|
|
2701
|
+
* @type {DineroObjectResponse}
|
|
2702
|
+
* @memberof InvoiceDriftResponse
|
|
2703
|
+
*/
|
|
2704
|
+
'actualAmount': DineroObjectResponse;
|
|
2705
|
+
/**
|
|
2706
|
+
*
|
|
2707
|
+
* @type {DineroObjectResponse}
|
|
2708
|
+
* @memberof InvoiceDriftResponse
|
|
2709
|
+
*/
|
|
2710
|
+
'expectedAmount': DineroObjectResponse;
|
|
2711
|
+
/**
|
|
2712
|
+
*
|
|
2713
|
+
* @type {DineroObjectResponse}
|
|
2714
|
+
* @memberof InvoiceDriftResponse
|
|
2715
|
+
*/
|
|
2716
|
+
'deltaAmount': DineroObjectResponse;
|
|
2717
|
+
}
|
|
2727
2718
|
/**
|
|
2728
2719
|
*
|
|
2729
2720
|
* @export
|
|
@@ -3115,25 +3106,6 @@ export interface InvoiceUserResponse {
|
|
|
3115
3106
|
*/
|
|
3116
3107
|
'automatic': boolean;
|
|
3117
3108
|
}
|
|
3118
|
-
/**
|
|
3119
|
-
*
|
|
3120
|
-
* @export
|
|
3121
|
-
* @interface MemberAuthenticationPinRequest
|
|
3122
|
-
*/
|
|
3123
|
-
export interface MemberAuthenticationPinRequest {
|
|
3124
|
-
/**
|
|
3125
|
-
*
|
|
3126
|
-
* @type {number}
|
|
3127
|
-
* @memberof MemberAuthenticationPinRequest
|
|
3128
|
-
*/
|
|
3129
|
-
'memberId': number;
|
|
3130
|
-
/**
|
|
3131
|
-
*
|
|
3132
|
-
* @type {string}
|
|
3133
|
-
* @memberof MemberAuthenticationPinRequest
|
|
3134
|
-
*/
|
|
3135
|
-
'pin': string;
|
|
3136
|
-
}
|
|
3137
3109
|
/**
|
|
3138
3110
|
*
|
|
3139
3111
|
* @export
|
|
@@ -3183,13 +3155,13 @@ export interface PaginatedBalanceResponse {
|
|
|
3183
3155
|
* @type {PaginationResult}
|
|
3184
3156
|
* @memberof PaginatedBalanceResponse
|
|
3185
3157
|
*/
|
|
3186
|
-
'_pagination'
|
|
3158
|
+
'_pagination': PaginationResult;
|
|
3187
3159
|
/**
|
|
3188
3160
|
* Returned balance responses
|
|
3189
3161
|
* @type {Array<BalanceResponse>}
|
|
3190
3162
|
* @memberof PaginatedBalanceResponse
|
|
3191
3163
|
*/
|
|
3192
|
-
'records'
|
|
3164
|
+
'records': Array<BalanceResponse>;
|
|
3193
3165
|
}
|
|
3194
3166
|
/**
|
|
3195
3167
|
* Paginated API Response for the `banner` entity.
|
|
@@ -3202,13 +3174,13 @@ export interface PaginatedBannerResponse {
|
|
|
3202
3174
|
* @type {PaginationResult}
|
|
3203
3175
|
* @memberof PaginatedBannerResponse
|
|
3204
3176
|
*/
|
|
3205
|
-
'_pagination'
|
|
3177
|
+
'_pagination': PaginationResult;
|
|
3206
3178
|
/**
|
|
3207
3179
|
* Returned banners
|
|
3208
3180
|
* @type {Array<BannerResponse>}
|
|
3209
3181
|
* @memberof PaginatedBannerResponse
|
|
3210
3182
|
*/
|
|
3211
|
-
'records'
|
|
3183
|
+
'records': Array<BannerResponse>;
|
|
3212
3184
|
}
|
|
3213
3185
|
/**
|
|
3214
3186
|
*
|
|
@@ -3268,7 +3240,7 @@ export interface PaginatedBaseTransactionResponse {
|
|
|
3268
3240
|
'records': Array<BaseTransactionResponse>;
|
|
3269
3241
|
}
|
|
3270
3242
|
/**
|
|
3271
|
-
*
|
|
3243
|
+
* Paginated API Response for the `container` entity.
|
|
3272
3244
|
* @export
|
|
3273
3245
|
* @interface PaginatedContainerResponse
|
|
3274
3246
|
*/
|
|
@@ -3287,7 +3259,7 @@ export interface PaginatedContainerResponse {
|
|
|
3287
3259
|
'records': Array<ContainerResponse>;
|
|
3288
3260
|
}
|
|
3289
3261
|
/**
|
|
3290
|
-
*
|
|
3262
|
+
* Paginated API Response for the `container` entity, with each container\'s products inlined.
|
|
3291
3263
|
* @export
|
|
3292
3264
|
* @interface PaginatedContainerWithProductResponse
|
|
3293
3265
|
*/
|
|
@@ -3373,13 +3345,13 @@ export interface PaginatedInactiveAdministrativeCostResponse {
|
|
|
3373
3345
|
* @type {PaginationResult}
|
|
3374
3346
|
* @memberof PaginatedInactiveAdministrativeCostResponse
|
|
3375
3347
|
*/
|
|
3376
|
-
'_pagination'
|
|
3348
|
+
'_pagination': PaginationResult;
|
|
3377
3349
|
/**
|
|
3378
3350
|
* Returned InactiveAdministrativeCost
|
|
3379
3351
|
* @type {Array<InactiveAdministrativeCostResponse>}
|
|
3380
3352
|
* @memberof PaginatedInactiveAdministrativeCostResponse
|
|
3381
3353
|
*/
|
|
3382
|
-
'records'
|
|
3354
|
+
'records': Array<InactiveAdministrativeCostResponse>;
|
|
3383
3355
|
}
|
|
3384
3356
|
/**
|
|
3385
3357
|
*
|
|
@@ -3401,7 +3373,7 @@ export interface PaginatedInvoiceResponse {
|
|
|
3401
3373
|
'records': Array<InvoiceResponseTypes>;
|
|
3402
3374
|
}
|
|
3403
3375
|
/**
|
|
3404
|
-
*
|
|
3376
|
+
* Paginated API Response for the `point of sale` entity.
|
|
3405
3377
|
* @export
|
|
3406
3378
|
* @interface PaginatedPointOfSaleResponse
|
|
3407
3379
|
*/
|
|
@@ -3420,7 +3392,7 @@ export interface PaginatedPointOfSaleResponse {
|
|
|
3420
3392
|
'records': Array<PointOfSaleResponse>;
|
|
3421
3393
|
}
|
|
3422
3394
|
/**
|
|
3423
|
-
*
|
|
3395
|
+
* Paginated API Response for the `product category` entity.
|
|
3424
3396
|
* @export
|
|
3425
3397
|
* @interface PaginatedProductCategoryResponse
|
|
3426
3398
|
*/
|
|
@@ -3439,7 +3411,7 @@ export interface PaginatedProductCategoryResponse {
|
|
|
3439
3411
|
'records': Array<ProductCategoryResponse>;
|
|
3440
3412
|
}
|
|
3441
3413
|
/**
|
|
3442
|
-
*
|
|
3414
|
+
* Paginated API Response for the `product` entity.
|
|
3443
3415
|
* @export
|
|
3444
3416
|
* @interface PaginatedProductResponse
|
|
3445
3417
|
*/
|
|
@@ -3534,7 +3506,7 @@ export interface PaginatedUserResponse {
|
|
|
3534
3506
|
'records': Array<UserResponse>;
|
|
3535
3507
|
}
|
|
3536
3508
|
/**
|
|
3537
|
-
*
|
|
3509
|
+
* Paginated API Response for the `vat group` entity.
|
|
3538
3510
|
* @export
|
|
3539
3511
|
* @interface PaginatedVatGroupResponse
|
|
3540
3512
|
*/
|
|
@@ -3866,7 +3838,7 @@ export interface PermissionResponse {
|
|
|
3866
3838
|
'actions': Array<ActionResponse>;
|
|
3867
3839
|
}
|
|
3868
3840
|
/**
|
|
3869
|
-
*
|
|
3841
|
+
* API Response describing who is associated with a `point of sale`: its owner, the owner\'s organ members, and the cashier users (users holding at least one of the POS\'s cashier roles).
|
|
3870
3842
|
* @export
|
|
3871
3843
|
* @interface PointOfSaleAssociateUsersResponse
|
|
3872
3844
|
*/
|
|
@@ -4019,7 +3991,7 @@ export interface PointOfSaleWithContainersResponse {
|
|
|
4019
3991
|
'containers': Array<ContainerWithProductsResponse>;
|
|
4020
3992
|
}
|
|
4021
3993
|
/**
|
|
4022
|
-
*
|
|
3994
|
+
* API Request for creating or updating a `product category` entity.
|
|
4023
3995
|
* @export
|
|
4024
3996
|
* @interface ProductCategoryRequest
|
|
4025
3997
|
*/
|
|
@@ -5084,23 +5056,23 @@ export interface TotalBalanceResponse {
|
|
|
5084
5056
|
*/
|
|
5085
5057
|
'date': string;
|
|
5086
5058
|
/**
|
|
5087
|
-
*
|
|
5088
|
-
* @type {
|
|
5059
|
+
*
|
|
5060
|
+
* @type {DineroObjectResponse}
|
|
5089
5061
|
* @memberof TotalBalanceResponse
|
|
5090
5062
|
*/
|
|
5091
|
-
'totalPositive':
|
|
5063
|
+
'totalPositive': DineroObjectResponse;
|
|
5092
5064
|
/**
|
|
5093
|
-
*
|
|
5094
|
-
* @type {
|
|
5065
|
+
*
|
|
5066
|
+
* @type {DineroObjectResponse}
|
|
5095
5067
|
* @memberof TotalBalanceResponse
|
|
5096
5068
|
*/
|
|
5097
|
-
'totalNegative':
|
|
5069
|
+
'totalNegative': DineroObjectResponse;
|
|
5098
5070
|
/**
|
|
5099
|
-
*
|
|
5100
|
-
* @type {UserTypeTotalBalanceResponse}
|
|
5071
|
+
* The total balances for the different user types
|
|
5072
|
+
* @type {Array<UserTypeTotalBalanceResponse>}
|
|
5101
5073
|
* @memberof TotalBalanceResponse
|
|
5102
5074
|
*/
|
|
5103
|
-
'userTypeBalances': UserTypeTotalBalanceResponse
|
|
5075
|
+
'userTypeBalances': Array<UserTypeTotalBalanceResponse>;
|
|
5104
5076
|
}
|
|
5105
5077
|
/**
|
|
5106
5078
|
*
|
|
@@ -5685,7 +5657,7 @@ export interface TransferSummaryResponse {
|
|
|
5685
5657
|
'manualDeletions': TransferAggregateResponse;
|
|
5686
5658
|
}
|
|
5687
5659
|
/**
|
|
5688
|
-
*
|
|
5660
|
+
* API Request for updating a `container` entity.
|
|
5689
5661
|
* @export
|
|
5690
5662
|
* @interface UpdateContainerRequest
|
|
5691
5663
|
*/
|
|
@@ -5935,7 +5907,7 @@ export interface UpdatePinRequest {
|
|
|
5935
5907
|
'pin': string;
|
|
5936
5908
|
}
|
|
5937
5909
|
/**
|
|
5938
|
-
*
|
|
5910
|
+
* API Request for updating a `point of sale` entity.
|
|
5939
5911
|
* @export
|
|
5940
5912
|
* @interface UpdatePointOfSaleRequest
|
|
5941
5913
|
*/
|
|
@@ -5972,7 +5944,7 @@ export interface UpdatePointOfSaleRequest {
|
|
|
5972
5944
|
'cashierRoleIds'?: Array<number>;
|
|
5973
5945
|
}
|
|
5974
5946
|
/**
|
|
5975
|
-
*
|
|
5947
|
+
* API Request for updating a `product` entity.
|
|
5976
5948
|
* @export
|
|
5977
5949
|
* @interface UpdateProductRequest
|
|
5978
5950
|
*/
|
|
@@ -6139,7 +6111,7 @@ export interface UpdateUserRequest {
|
|
|
6139
6111
|
'inactiveNotificationSend'?: boolean;
|
|
6140
6112
|
}
|
|
6141
6113
|
/**
|
|
6142
|
-
*
|
|
6114
|
+
* API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
|
|
6143
6115
|
* @export
|
|
6144
6116
|
* @interface UpdateVatGroupRequest
|
|
6145
6117
|
*/
|
|
@@ -6459,6 +6431,22 @@ export interface UserToInactiveAdministrativeCostResponse {
|
|
|
6459
6431
|
*/
|
|
6460
6432
|
'nickname'?: string;
|
|
6461
6433
|
}
|
|
6434
|
+
/**
|
|
6435
|
+
* The type of a user
|
|
6436
|
+
* @export
|
|
6437
|
+
* @enum {string}
|
|
6438
|
+
*/
|
|
6439
|
+
export declare const UserType: {
|
|
6440
|
+
readonly Member: "MEMBER";
|
|
6441
|
+
readonly Organ: "ORGAN";
|
|
6442
|
+
readonly Voucher: "VOUCHER";
|
|
6443
|
+
readonly LocalUser: "LOCAL_USER";
|
|
6444
|
+
readonly LocalAdmin: "LOCAL_ADMIN";
|
|
6445
|
+
readonly Invoice: "INVOICE";
|
|
6446
|
+
readonly PointOfSale: "POINT_OF_SALE";
|
|
6447
|
+
readonly Integration: "INTEGRATION";
|
|
6448
|
+
};
|
|
6449
|
+
export type UserType = typeof UserType[keyof typeof UserType];
|
|
6462
6450
|
/**
|
|
6463
6451
|
*
|
|
6464
6452
|
* @export
|
|
@@ -6485,7 +6473,7 @@ export interface UserTypeTotalBalanceResponse {
|
|
|
6485
6473
|
'totalNegative': DineroObjectResponse;
|
|
6486
6474
|
}
|
|
6487
6475
|
/**
|
|
6488
|
-
*
|
|
6476
|
+
* A `BaseUserResponse` augmented with a stable position index, used to keep ordered user lists (e.g. POS owner members) rendering in a consistent order across requests.
|
|
6489
6477
|
* @export
|
|
6490
6478
|
* @interface UserWithIndex
|
|
6491
6479
|
*/
|
|
@@ -6500,6 +6488,25 @@ export interface UserWithIndex {
|
|
|
6500
6488
|
/**
|
|
6501
6489
|
*
|
|
6502
6490
|
* @export
|
|
6491
|
+
* @interface ValidationResponse
|
|
6492
|
+
*/
|
|
6493
|
+
export interface ValidationResponse {
|
|
6494
|
+
/**
|
|
6495
|
+
* Whether the request passed validation.
|
|
6496
|
+
* @type {boolean}
|
|
6497
|
+
* @memberof ValidationResponse
|
|
6498
|
+
*/
|
|
6499
|
+
'valid': boolean;
|
|
6500
|
+
/**
|
|
6501
|
+
* List of validation error messages.
|
|
6502
|
+
* @type {Array<string>}
|
|
6503
|
+
* @memberof ValidationResponse
|
|
6504
|
+
*/
|
|
6505
|
+
'errors': Array<string>;
|
|
6506
|
+
}
|
|
6507
|
+
/**
|
|
6508
|
+
* API Response for a complete VAT declaration — one result table for a given year and period, containing one {@link VatDeclarationRow} per VAT group.
|
|
6509
|
+
* @export
|
|
6503
6510
|
* @interface VatDeclarationResponse
|
|
6504
6511
|
*/
|
|
6505
6512
|
export interface VatDeclarationResponse {
|
|
@@ -6523,7 +6530,7 @@ export interface VatDeclarationResponse {
|
|
|
6523
6530
|
'rows': Array<VatDeclarationRow>;
|
|
6524
6531
|
}
|
|
6525
6532
|
/**
|
|
6526
|
-
*
|
|
6533
|
+
* One row of a VAT declaration — the VAT collected for a single group, broken down by period.
|
|
6527
6534
|
* @export
|
|
6528
6535
|
* @interface VatDeclarationRow
|
|
6529
6536
|
*/
|
|
@@ -6989,15 +6996,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
6989
6996
|
* @throws {RequiredError}
|
|
6990
6997
|
*/
|
|
6991
6998
|
confirmQRCode: (sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6992
|
-
/**
|
|
6993
|
-
*
|
|
6994
|
-
* @summary EAN login and hand out token
|
|
6995
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
|
|
6996
|
-
* @param {*} [options] Override http request option.
|
|
6997
|
-
* @deprecated
|
|
6998
|
-
* @throws {RequiredError}
|
|
6999
|
-
*/
|
|
7000
|
-
eanAuthentication: (authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7001
6999
|
/**
|
|
7002
7000
|
*
|
|
7003
7001
|
* @summary Generate a QR code for authentication
|
|
@@ -7067,15 +7065,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7067
7065
|
* @throws {RequiredError}
|
|
7068
7066
|
*/
|
|
7069
7067
|
localAuthentication: (authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7070
|
-
/**
|
|
7071
|
-
*
|
|
7072
|
-
* @summary PIN login for members using memberId.
|
|
7073
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
|
|
7074
|
-
* @param {*} [options] Override http request option.
|
|
7075
|
-
* @deprecated
|
|
7076
|
-
* @throws {RequiredError}
|
|
7077
|
-
*/
|
|
7078
|
-
memberPinAuthentication: (memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7079
7068
|
/**
|
|
7080
7069
|
*
|
|
7081
7070
|
* @summary Mock login and hand out token.
|
|
@@ -7084,24 +7073,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7084
7073
|
* @throws {RequiredError}
|
|
7085
7074
|
*/
|
|
7086
7075
|
mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7087
|
-
/**
|
|
7088
|
-
*
|
|
7089
|
-
* @summary NFC login and hand out token
|
|
7090
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
|
|
7091
|
-
* @param {*} [options] Override http request option.
|
|
7092
|
-
* @deprecated
|
|
7093
|
-
* @throws {RequiredError}
|
|
7094
|
-
*/
|
|
7095
|
-
nfcAuthentication: (authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7096
|
-
/**
|
|
7097
|
-
*
|
|
7098
|
-
* @summary PIN login and hand out token
|
|
7099
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
|
|
7100
|
-
* @param {*} [options] Override http request option.
|
|
7101
|
-
* @deprecated
|
|
7102
|
-
* @throws {RequiredError}
|
|
7103
|
-
*/
|
|
7104
|
-
pinAuthentication: (authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7105
7076
|
/**
|
|
7106
7077
|
*
|
|
7107
7078
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7187,15 +7158,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7187
7158
|
* @throws {RequiredError}
|
|
7188
7159
|
*/
|
|
7189
7160
|
confirmQRCode(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7190
|
-
/**
|
|
7191
|
-
*
|
|
7192
|
-
* @summary EAN login and hand out token
|
|
7193
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
|
|
7194
|
-
* @param {*} [options] Override http request option.
|
|
7195
|
-
* @deprecated
|
|
7196
|
-
* @throws {RequiredError}
|
|
7197
|
-
*/
|
|
7198
|
-
eanAuthentication(authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7199
7161
|
/**
|
|
7200
7162
|
*
|
|
7201
7163
|
* @summary Generate a QR code for authentication
|
|
@@ -7265,15 +7227,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7265
7227
|
* @throws {RequiredError}
|
|
7266
7228
|
*/
|
|
7267
7229
|
localAuthentication(authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7268
|
-
/**
|
|
7269
|
-
*
|
|
7270
|
-
* @summary PIN login for members using memberId.
|
|
7271
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
|
|
7272
|
-
* @param {*} [options] Override http request option.
|
|
7273
|
-
* @deprecated
|
|
7274
|
-
* @throws {RequiredError}
|
|
7275
|
-
*/
|
|
7276
|
-
memberPinAuthentication(memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7277
7230
|
/**
|
|
7278
7231
|
*
|
|
7279
7232
|
* @summary Mock login and hand out token.
|
|
@@ -7282,24 +7235,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7282
7235
|
* @throws {RequiredError}
|
|
7283
7236
|
*/
|
|
7284
7237
|
mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7285
|
-
/**
|
|
7286
|
-
*
|
|
7287
|
-
* @summary NFC login and hand out token
|
|
7288
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
|
|
7289
|
-
* @param {*} [options] Override http request option.
|
|
7290
|
-
* @deprecated
|
|
7291
|
-
* @throws {RequiredError}
|
|
7292
|
-
*/
|
|
7293
|
-
nfcAuthentication(authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7294
|
-
/**
|
|
7295
|
-
*
|
|
7296
|
-
* @summary PIN login and hand out token
|
|
7297
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
|
|
7298
|
-
* @param {*} [options] Override http request option.
|
|
7299
|
-
* @deprecated
|
|
7300
|
-
* @throws {RequiredError}
|
|
7301
|
-
*/
|
|
7302
|
-
pinAuthentication(authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7303
7238
|
/**
|
|
7304
7239
|
*
|
|
7305
7240
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7385,15 +7320,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7385
7320
|
* @throws {RequiredError}
|
|
7386
7321
|
*/
|
|
7387
7322
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7388
|
-
/**
|
|
7389
|
-
*
|
|
7390
|
-
* @summary EAN login and hand out token
|
|
7391
|
-
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7392
|
-
* @param {*} [options] Override http request option.
|
|
7393
|
-
* @deprecated
|
|
7394
|
-
* @throws {RequiredError}
|
|
7395
|
-
*/
|
|
7396
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7397
7323
|
/**
|
|
7398
7324
|
*
|
|
7399
7325
|
* @summary Generate a QR code for authentication
|
|
@@ -7463,15 +7389,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7463
7389
|
* @throws {RequiredError}
|
|
7464
7390
|
*/
|
|
7465
7391
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7466
|
-
/**
|
|
7467
|
-
*
|
|
7468
|
-
* @summary PIN login for members using memberId.
|
|
7469
|
-
* @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
|
|
7470
|
-
* @param {*} [options] Override http request option.
|
|
7471
|
-
* @deprecated
|
|
7472
|
-
* @throws {RequiredError}
|
|
7473
|
-
*/
|
|
7474
|
-
memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7475
7392
|
/**
|
|
7476
7393
|
*
|
|
7477
7394
|
* @summary Mock login and hand out token.
|
|
@@ -7480,24 +7397,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7480
7397
|
* @throws {RequiredError}
|
|
7481
7398
|
*/
|
|
7482
7399
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7483
|
-
/**
|
|
7484
|
-
*
|
|
7485
|
-
* @summary NFC login and hand out token
|
|
7486
|
-
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7487
|
-
* @param {*} [options] Override http request option.
|
|
7488
|
-
* @deprecated
|
|
7489
|
-
* @throws {RequiredError}
|
|
7490
|
-
*/
|
|
7491
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7492
|
-
/**
|
|
7493
|
-
*
|
|
7494
|
-
* @summary PIN login and hand out token
|
|
7495
|
-
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7496
|
-
* @param {*} [options] Override http request option.
|
|
7497
|
-
* @deprecated
|
|
7498
|
-
* @throws {RequiredError}
|
|
7499
|
-
*/
|
|
7500
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7501
7400
|
/**
|
|
7502
7401
|
*
|
|
7503
7402
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7593,19 +7492,6 @@ export interface AuthenticateApiConfirmQRCodeRequest {
|
|
|
7593
7492
|
*/
|
|
7594
7493
|
readonly sessionId: string;
|
|
7595
7494
|
}
|
|
7596
|
-
/**
|
|
7597
|
-
* Request parameters for eanAuthentication operation in AuthenticateApi.
|
|
7598
|
-
* @export
|
|
7599
|
-
* @interface AuthenticateApiEanAuthenticationRequest
|
|
7600
|
-
*/
|
|
7601
|
-
export interface AuthenticateApiEanAuthenticationRequest {
|
|
7602
|
-
/**
|
|
7603
|
-
* The EAN login.
|
|
7604
|
-
* @type {AuthenticationEanRequest}
|
|
7605
|
-
* @memberof AuthenticateApiEanAuthentication
|
|
7606
|
-
*/
|
|
7607
|
-
readonly authenticationEanRequest: AuthenticationEanRequest;
|
|
7608
|
-
}
|
|
7609
7495
|
/**
|
|
7610
7496
|
* Request parameters for getQRStatus operation in AuthenticateApi.
|
|
7611
7497
|
* @export
|
|
@@ -7684,19 +7570,6 @@ export interface AuthenticateApiLocalAuthenticationRequest {
|
|
|
7684
7570
|
*/
|
|
7685
7571
|
readonly authenticationLocalRequest: AuthenticationLocalRequest;
|
|
7686
7572
|
}
|
|
7687
|
-
/**
|
|
7688
|
-
* Request parameters for memberPinAuthentication operation in AuthenticateApi.
|
|
7689
|
-
* @export
|
|
7690
|
-
* @interface AuthenticateApiMemberPinAuthenticationRequest
|
|
7691
|
-
*/
|
|
7692
|
-
export interface AuthenticateApiMemberPinAuthenticationRequest {
|
|
7693
|
-
/**
|
|
7694
|
-
* The PIN login.
|
|
7695
|
-
* @type {MemberAuthenticationPinRequest}
|
|
7696
|
-
* @memberof AuthenticateApiMemberPinAuthentication
|
|
7697
|
-
*/
|
|
7698
|
-
readonly memberAuthenticationPinRequest: MemberAuthenticationPinRequest;
|
|
7699
|
-
}
|
|
7700
7573
|
/**
|
|
7701
7574
|
* Request parameters for mockAuthentication operation in AuthenticateApi.
|
|
7702
7575
|
* @export
|
|
@@ -7710,32 +7583,6 @@ export interface AuthenticateApiMockAuthenticationRequest {
|
|
|
7710
7583
|
*/
|
|
7711
7584
|
readonly authenticationMockRequest: AuthenticationMockRequest;
|
|
7712
7585
|
}
|
|
7713
|
-
/**
|
|
7714
|
-
* Request parameters for nfcAuthentication operation in AuthenticateApi.
|
|
7715
|
-
* @export
|
|
7716
|
-
* @interface AuthenticateApiNfcAuthenticationRequest
|
|
7717
|
-
*/
|
|
7718
|
-
export interface AuthenticateApiNfcAuthenticationRequest {
|
|
7719
|
-
/**
|
|
7720
|
-
* The NFC login.
|
|
7721
|
-
* @type {AuthenticationNfcRequest}
|
|
7722
|
-
* @memberof AuthenticateApiNfcAuthentication
|
|
7723
|
-
*/
|
|
7724
|
-
readonly authenticationNfcRequest: AuthenticationNfcRequest;
|
|
7725
|
-
}
|
|
7726
|
-
/**
|
|
7727
|
-
* Request parameters for pinAuthentication operation in AuthenticateApi.
|
|
7728
|
-
* @export
|
|
7729
|
-
* @interface AuthenticateApiPinAuthenticationRequest
|
|
7730
|
-
*/
|
|
7731
|
-
export interface AuthenticateApiPinAuthenticationRequest {
|
|
7732
|
-
/**
|
|
7733
|
-
* The PIN login.
|
|
7734
|
-
* @type {AuthenticationPinRequest}
|
|
7735
|
-
* @memberof AuthenticateApiPinAuthentication
|
|
7736
|
-
*/
|
|
7737
|
-
readonly authenticationPinRequest: AuthenticationPinRequest;
|
|
7738
|
-
}
|
|
7739
7586
|
/**
|
|
7740
7587
|
* Request parameters for resetLocal operation in AuthenticateApi.
|
|
7741
7588
|
* @export
|
|
@@ -7848,16 +7695,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7848
7695
|
* @memberof AuthenticateApi
|
|
7849
7696
|
*/
|
|
7850
7697
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
7851
|
-
/**
|
|
7852
|
-
*
|
|
7853
|
-
* @summary EAN login and hand out token
|
|
7854
|
-
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7855
|
-
* @param {*} [options] Override http request option.
|
|
7856
|
-
* @deprecated
|
|
7857
|
-
* @throws {RequiredError}
|
|
7858
|
-
* @memberof AuthenticateApi
|
|
7859
|
-
*/
|
|
7860
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7861
7698
|
/**
|
|
7862
7699
|
*
|
|
7863
7700
|
* @summary Generate a QR code for authentication
|
|
@@ -7936,16 +7773,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7936
7773
|
* @memberof AuthenticateApi
|
|
7937
7774
|
*/
|
|
7938
7775
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7939
|
-
/**
|
|
7940
|
-
*
|
|
7941
|
-
* @summary PIN login for members using memberId.
|
|
7942
|
-
* @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
|
|
7943
|
-
* @param {*} [options] Override http request option.
|
|
7944
|
-
* @deprecated
|
|
7945
|
-
* @throws {RequiredError}
|
|
7946
|
-
* @memberof AuthenticateApi
|
|
7947
|
-
*/
|
|
7948
|
-
memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7949
7776
|
/**
|
|
7950
7777
|
*
|
|
7951
7778
|
* @summary Mock login and hand out token.
|
|
@@ -7955,26 +7782,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7955
7782
|
* @memberof AuthenticateApi
|
|
7956
7783
|
*/
|
|
7957
7784
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7958
|
-
/**
|
|
7959
|
-
*
|
|
7960
|
-
* @summary NFC login and hand out token
|
|
7961
|
-
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7962
|
-
* @param {*} [options] Override http request option.
|
|
7963
|
-
* @deprecated
|
|
7964
|
-
* @throws {RequiredError}
|
|
7965
|
-
* @memberof AuthenticateApi
|
|
7966
|
-
*/
|
|
7967
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7968
|
-
/**
|
|
7969
|
-
*
|
|
7970
|
-
* @summary PIN login and hand out token
|
|
7971
|
-
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7972
|
-
* @param {*} [options] Override http request option.
|
|
7973
|
-
* @deprecated
|
|
7974
|
-
* @throws {RequiredError}
|
|
7975
|
-
* @memberof AuthenticateApi
|
|
7976
|
-
*/
|
|
7977
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7978
7785
|
/**
|
|
7979
7786
|
*
|
|
7980
7787
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -8061,7 +7868,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8061
7868
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
8062
7869
|
* @param {number} [minFine] Minimum fine
|
|
8063
7870
|
* @param {number} [maxFine] Maximum fine
|
|
8064
|
-
* @param {
|
|
7871
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
8065
7872
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
8066
7873
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
8067
7874
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -8071,7 +7878,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8071
7878
|
* @param {*} [options] Override http request option.
|
|
8072
7879
|
* @throws {RequiredError}
|
|
8073
7880
|
*/
|
|
8074
|
-
getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
7881
|
+
getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?: Array<UserType>, orderBy?: string, orderDirection?: GetAllBalanceOrderDirectionEnum, allowDeleted?: boolean, inactive?: boolean, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8075
7882
|
/**
|
|
8076
7883
|
*
|
|
8077
7884
|
* @summary Retrieves the requested balance
|
|
@@ -8111,7 +7918,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8111
7918
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
8112
7919
|
* @param {number} [minFine] Minimum fine
|
|
8113
7920
|
* @param {number} [maxFine] Maximum fine
|
|
8114
|
-
* @param {
|
|
7921
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
8115
7922
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
8116
7923
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
8117
7924
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -8121,7 +7928,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8121
7928
|
* @param {*} [options] Override http request option.
|
|
8122
7929
|
* @throws {RequiredError}
|
|
8123
7930
|
*/
|
|
8124
|
-
getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
7931
|
+
getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?: Array<UserType>, orderBy?: string, orderDirection?: GetAllBalanceOrderDirectionEnum, allowDeleted?: boolean, inactive?: boolean, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedBalanceResponse>>;
|
|
8125
7932
|
/**
|
|
8126
7933
|
*
|
|
8127
7934
|
* @summary Retrieves the requested balance
|
|
@@ -8238,10 +8045,10 @@ export interface BalanceApiGetAllBalanceRequest {
|
|
|
8238
8045
|
readonly maxFine?: number;
|
|
8239
8046
|
/**
|
|
8240
8047
|
* Filter based on user type.
|
|
8241
|
-
* @type {Array<
|
|
8048
|
+
* @type {Array<UserType>}
|
|
8242
8049
|
* @memberof BalanceApiGetAllBalance
|
|
8243
8050
|
*/
|
|
8244
|
-
readonly userTypes?:
|
|
8051
|
+
readonly userTypes?: Array<UserType>;
|
|
8245
8052
|
/**
|
|
8246
8053
|
* Column to order balance by - eg: id,amount
|
|
8247
8054
|
* @type {string}
|
|
@@ -8335,11 +8142,6 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8335
8142
|
*/
|
|
8336
8143
|
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8337
8144
|
}
|
|
8338
|
-
/**
|
|
8339
|
-
* @export
|
|
8340
|
-
*/
|
|
8341
|
-
export declare const GetAllBalanceUserTypesEnum: {};
|
|
8342
|
-
export type GetAllBalanceUserTypesEnum = typeof GetAllBalanceUserTypesEnum[keyof typeof GetAllBalanceUserTypesEnum];
|
|
8343
8145
|
/**
|
|
8344
8146
|
* @export
|
|
8345
8147
|
*/
|
|
@@ -10760,7 +10562,7 @@ export declare const InactiveAdministrativeCostsApiFp: (configuration?: Configur
|
|
|
10760
10562
|
* @param {*} [options] Override http request option.
|
|
10761
10563
|
* @throws {RequiredError}
|
|
10762
10564
|
*/
|
|
10763
|
-
handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10565
|
+
handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InactiveAdministrativeCostResponse>>>;
|
|
10764
10566
|
/**
|
|
10765
10567
|
*
|
|
10766
10568
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -10838,7 +10640,7 @@ export declare const InactiveAdministrativeCostsApiFactory: (configuration?: Con
|
|
|
10838
10640
|
* @param {*} [options] Override http request option.
|
|
10839
10641
|
* @throws {RequiredError}
|
|
10840
10642
|
*/
|
|
10841
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10643
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<InactiveAdministrativeCostResponse>>;
|
|
10842
10644
|
/**
|
|
10843
10645
|
*
|
|
10844
10646
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -11061,7 +10863,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11061
10863
|
* @throws {RequiredError}
|
|
11062
10864
|
* @memberof InactiveAdministrativeCostsApi
|
|
11063
10865
|
*/
|
|
11064
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10866
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
|
|
11065
10867
|
/**
|
|
11066
10868
|
*
|
|
11067
10869
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -11106,7 +10908,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11106
10908
|
* @summary Returns all invoices in the system.
|
|
11107
10909
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11108
10910
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11109
|
-
* @param {
|
|
10911
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11110
10912
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11111
10913
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11112
10914
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
@@ -11116,7 +10918,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11116
10918
|
* @param {*} [options] Override http request option.
|
|
11117
10919
|
* @throws {RequiredError}
|
|
11118
10920
|
*/
|
|
11119
|
-
getAllInvoices: (toId?: number, invoiceId?: number, currentState?:
|
|
10921
|
+
getAllInvoices: (toId?: number, invoiceId?: number, currentState?: Array<GetAllInvoicesCurrentStateParameterInner>, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11120
10922
|
/**
|
|
11121
10923
|
*
|
|
11122
10924
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11127,6 +10929,13 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11127
10929
|
* @throws {RequiredError}
|
|
11128
10930
|
*/
|
|
11129
10931
|
getEligibleTransactions: (forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10932
|
+
/**
|
|
10933
|
+
*
|
|
10934
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
10935
|
+
* @param {*} [options] Override http request option.
|
|
10936
|
+
* @throws {RequiredError}
|
|
10937
|
+
*/
|
|
10938
|
+
getInvoiceDrift: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11130
10939
|
/**
|
|
11131
10940
|
*
|
|
11132
10941
|
* @summary Get an invoice pdf.
|
|
@@ -11206,7 +11015,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11206
11015
|
* @summary Returns all invoices in the system.
|
|
11207
11016
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11208
11017
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11209
|
-
* @param {
|
|
11018
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11210
11019
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11211
11020
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11212
11021
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
@@ -11216,7 +11025,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11216
11025
|
* @param {*} [options] Override http request option.
|
|
11217
11026
|
* @throws {RequiredError}
|
|
11218
11027
|
*/
|
|
11219
|
-
getAllInvoices(toId?: number, invoiceId?: number, currentState?:
|
|
11028
|
+
getAllInvoices(toId?: number, invoiceId?: number, currentState?: Array<GetAllInvoicesCurrentStateParameterInner>, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInvoiceResponse>>;
|
|
11220
11029
|
/**
|
|
11221
11030
|
*
|
|
11222
11031
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11227,6 +11036,13 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11227
11036
|
* @throws {RequiredError}
|
|
11228
11037
|
*/
|
|
11229
11038
|
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionResponse>>;
|
|
11039
|
+
/**
|
|
11040
|
+
*
|
|
11041
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11042
|
+
* @param {*} [options] Override http request option.
|
|
11043
|
+
* @throws {RequiredError}
|
|
11044
|
+
*/
|
|
11045
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InvoiceDriftResponse>>>;
|
|
11230
11046
|
/**
|
|
11231
11047
|
*
|
|
11232
11048
|
* @summary Get an invoice pdf.
|
|
@@ -11235,7 +11051,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11235
11051
|
* @param {*} [options] Override http request option.
|
|
11236
11052
|
* @throws {RequiredError}
|
|
11237
11053
|
*/
|
|
11238
|
-
getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11054
|
+
getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PdfUrlResponse>>;
|
|
11239
11055
|
/**
|
|
11240
11056
|
*
|
|
11241
11057
|
* @summary Returns a single invoice in the system.
|
|
@@ -11317,6 +11133,13 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11317
11133
|
* @throws {RequiredError}
|
|
11318
11134
|
*/
|
|
11319
11135
|
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse>;
|
|
11136
|
+
/**
|
|
11137
|
+
*
|
|
11138
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11139
|
+
* @param {*} [options] Override http request option.
|
|
11140
|
+
* @throws {RequiredError}
|
|
11141
|
+
*/
|
|
11142
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): AxiosPromise<Array<InvoiceDriftResponse>>;
|
|
11320
11143
|
/**
|
|
11321
11144
|
*
|
|
11322
11145
|
* @summary Get an invoice pdf.
|
|
@@ -11324,7 +11147,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11324
11147
|
* @param {*} [options] Override http request option.
|
|
11325
11148
|
* @throws {RequiredError}
|
|
11326
11149
|
*/
|
|
11327
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11150
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<PdfUrlResponse>;
|
|
11328
11151
|
/**
|
|
11329
11152
|
*
|
|
11330
11153
|
* @summary Returns a single invoice in the system.
|
|
@@ -11417,10 +11240,10 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11417
11240
|
readonly invoiceId?: number;
|
|
11418
11241
|
/**
|
|
11419
11242
|
* Filter based on Invoice State.
|
|
11420
|
-
* @type {Array<
|
|
11243
|
+
* @type {Array<GetAllInvoicesCurrentStateParameterInner>}
|
|
11421
11244
|
* @memberof InvoicesApiGetAllInvoices
|
|
11422
11245
|
*/
|
|
11423
|
-
readonly currentState?:
|
|
11246
|
+
readonly currentState?: Array<GetAllInvoicesCurrentStateParameterInner>;
|
|
11424
11247
|
/**
|
|
11425
11248
|
* Boolean if invoice entries should be returned
|
|
11426
11249
|
* @type {boolean}
|
|
@@ -11624,6 +11447,14 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11624
11447
|
* @memberof InvoicesApi
|
|
11625
11448
|
*/
|
|
11626
11449
|
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
11450
|
+
/**
|
|
11451
|
+
*
|
|
11452
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11453
|
+
* @param {*} [options] Override http request option.
|
|
11454
|
+
* @throws {RequiredError}
|
|
11455
|
+
* @memberof InvoicesApi
|
|
11456
|
+
*/
|
|
11457
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}>>;
|
|
11627
11458
|
/**
|
|
11628
11459
|
*
|
|
11629
11460
|
* @summary Get an invoice pdf.
|
|
@@ -11632,7 +11463,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11632
11463
|
* @throws {RequiredError}
|
|
11633
11464
|
* @memberof InvoicesApi
|
|
11634
11465
|
*/
|
|
11635
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11466
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
11636
11467
|
/**
|
|
11637
11468
|
*
|
|
11638
11469
|
* @summary Returns a single invoice in the system.
|
|
@@ -11670,11 +11501,6 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11670
11501
|
*/
|
|
11671
11502
|
updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}>>;
|
|
11672
11503
|
}
|
|
11673
|
-
/**
|
|
11674
|
-
* @export
|
|
11675
|
-
*/
|
|
11676
|
-
export declare const GetAllInvoicesCurrentStateEnum: {};
|
|
11677
|
-
export type GetAllInvoicesCurrentStateEnum = typeof GetAllInvoicesCurrentStateEnum[keyof typeof GetAllInvoicesCurrentStateEnum];
|
|
11678
11504
|
/**
|
|
11679
11505
|
* PayoutRequestsApi - axios parameter creator
|
|
11680
11506
|
* @export
|
|
@@ -14229,11 +14055,11 @@ export declare const SyncApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14229
14055
|
/**
|
|
14230
14056
|
* Performs a dry-run synchronization of users using the specified services. This endpoint always performs a dry-run and does not apply any actual database changes.
|
|
14231
14057
|
* @summary Get dry-run sync results for users
|
|
14232
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14058
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14233
14059
|
* @param {*} [options] Override http request option.
|
|
14234
14060
|
* @throws {RequiredError}
|
|
14235
14061
|
*/
|
|
14236
|
-
getUserSyncResults: (service?: GetUserSyncResultsServiceEnum
|
|
14062
|
+
getUserSyncResults: (service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14237
14063
|
};
|
|
14238
14064
|
/**
|
|
14239
14065
|
* SyncApi - functional programming interface
|
|
@@ -14243,11 +14069,11 @@ export declare const SyncApiFp: (configuration?: Configuration) => {
|
|
|
14243
14069
|
/**
|
|
14244
14070
|
* Performs a dry-run synchronization of users using the specified services. This endpoint always performs a dry-run and does not apply any actual database changes.
|
|
14245
14071
|
* @summary Get dry-run sync results for users
|
|
14246
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14072
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14247
14073
|
* @param {*} [options] Override http request option.
|
|
14248
14074
|
* @throws {RequiredError}
|
|
14249
14075
|
*/
|
|
14250
|
-
getUserSyncResults(service?: GetUserSyncResultsServiceEnum
|
|
14076
|
+
getUserSyncResults(service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
14251
14077
|
};
|
|
14252
14078
|
/**
|
|
14253
14079
|
* SyncApi - factory interface
|
|
@@ -14271,10 +14097,10 @@ export declare const SyncApiFactory: (configuration?: Configuration, basePath?:
|
|
|
14271
14097
|
export interface SyncApiGetUserSyncResultsRequest {
|
|
14272
14098
|
/**
|
|
14273
14099
|
* Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14274
|
-
* @type {Array<
|
|
14100
|
+
* @type {Array<'LDAP' | 'GEWISDB'>}
|
|
14275
14101
|
* @memberof SyncApiGetUserSyncResults
|
|
14276
14102
|
*/
|
|
14277
|
-
readonly service?: GetUserSyncResultsServiceEnum
|
|
14103
|
+
readonly service?: Array<GetUserSyncResultsServiceEnum>;
|
|
14278
14104
|
}
|
|
14279
14105
|
/**
|
|
14280
14106
|
* SyncApi - object-oriented interface
|
|
@@ -14296,7 +14122,10 @@ export declare class SyncApi extends BaseAPI {
|
|
|
14296
14122
|
/**
|
|
14297
14123
|
* @export
|
|
14298
14124
|
*/
|
|
14299
|
-
export declare const GetUserSyncResultsServiceEnum: {
|
|
14125
|
+
export declare const GetUserSyncResultsServiceEnum: {
|
|
14126
|
+
readonly Ldap: "LDAP";
|
|
14127
|
+
readonly Gewisdb: "GEWISDB";
|
|
14128
|
+
};
|
|
14300
14129
|
export type GetUserSyncResultsServiceEnum = typeof GetUserSyncResultsServiceEnum[keyof typeof GetUserSyncResultsServiceEnum];
|
|
14301
14130
|
/**
|
|
14302
14131
|
* TermsOfServiceApi - axios parameter creator
|
|
@@ -15046,12 +14875,15 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
15046
14875
|
* @summary Returns all existing transfers
|
|
15047
14876
|
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
15048
14877
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14878
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14879
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14880
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15049
14881
|
* @param {number} [take] How many transfers the endpoint should return
|
|
15050
14882
|
* @param {number} [skip] How many transfers should be skipped (for pagination)
|
|
15051
14883
|
* @param {*} [options] Override http request option.
|
|
15052
14884
|
* @throws {RequiredError}
|
|
15053
14885
|
*/
|
|
15054
|
-
getAllTransfers: (fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14886
|
+
getAllTransfers: (fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15055
14887
|
/**
|
|
15056
14888
|
*
|
|
15057
14889
|
* @summary Returns the requested transfer
|
|
@@ -15118,12 +14950,15 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15118
14950
|
* @summary Returns all existing transfers
|
|
15119
14951
|
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
15120
14952
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14953
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14954
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14955
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15121
14956
|
* @param {number} [take] How many transfers the endpoint should return
|
|
15122
14957
|
* @param {number} [skip] How many transfers should be skipped (for pagination)
|
|
15123
14958
|
* @param {*} [options] Override http request option.
|
|
15124
14959
|
* @throws {RequiredError}
|
|
15125
14960
|
*/
|
|
15126
|
-
getAllTransfers(fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
14961
|
+
getAllTransfers(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedTransferResponse>>;
|
|
15127
14962
|
/**
|
|
15128
14963
|
*
|
|
15129
14964
|
* @summary Returns the requested transfer
|
|
@@ -15192,7 +15027,7 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
|
|
|
15192
15027
|
* @param {*} [options] Override http request option.
|
|
15193
15028
|
* @throws {RequiredError}
|
|
15194
15029
|
*/
|
|
15195
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
15030
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedTransferResponse>;
|
|
15196
15031
|
/**
|
|
15197
15032
|
*
|
|
15198
15033
|
* @summary Returns the requested transfer
|
|
@@ -15270,6 +15105,24 @@ export interface TransfersApiGetAllTransfersRequest {
|
|
|
15270
15105
|
* @memberof TransfersApiGetAllTransfers
|
|
15271
15106
|
*/
|
|
15272
15107
|
readonly tillDate?: string;
|
|
15108
|
+
/**
|
|
15109
|
+
* Filter transfers from this user ID
|
|
15110
|
+
* @type {number}
|
|
15111
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15112
|
+
*/
|
|
15113
|
+
readonly fromId?: number;
|
|
15114
|
+
/**
|
|
15115
|
+
* Filter transfers to this user ID
|
|
15116
|
+
* @type {number}
|
|
15117
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15118
|
+
*/
|
|
15119
|
+
readonly toId?: number;
|
|
15120
|
+
/**
|
|
15121
|
+
* Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15122
|
+
* @type {string}
|
|
15123
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15124
|
+
*/
|
|
15125
|
+
readonly category?: string;
|
|
15273
15126
|
/**
|
|
15274
15127
|
* How many transfers the endpoint should return
|
|
15275
15128
|
* @type {number}
|
|
@@ -15410,7 +15263,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15410
15263
|
* @throws {RequiredError}
|
|
15411
15264
|
* @memberof TransfersApi
|
|
15412
15265
|
*/
|
|
15413
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15266
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}>>;
|
|
15414
15267
|
/**
|
|
15415
15268
|
*
|
|
15416
15269
|
* @summary Returns the requested transfer
|