@gewis/sudosos-client 0.0.0-develop.6e7fadc → 0.0.0-develop.6f05c94
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 +368 -346
- package/dist/api.js +209 -300
- package/dist/base.js +1 -1
- package/dist/common.d.ts +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
|
*
|
|
@@ -5608,6 +5580,85 @@ export interface TransferResponse {
|
|
|
5608
5580
|
/**
|
|
5609
5581
|
*
|
|
5610
5582
|
* @export
|
|
5583
|
+
* @interface TransferSummaryResponse
|
|
5584
|
+
*/
|
|
5585
|
+
export interface TransferSummaryResponse {
|
|
5586
|
+
/**
|
|
5587
|
+
*
|
|
5588
|
+
* @type {TransferAggregateResponse}
|
|
5589
|
+
* @memberof TransferSummaryResponse
|
|
5590
|
+
*/
|
|
5591
|
+
'total': TransferAggregateResponse;
|
|
5592
|
+
/**
|
|
5593
|
+
*
|
|
5594
|
+
* @type {TransferAggregateResponse}
|
|
5595
|
+
* @memberof TransferSummaryResponse
|
|
5596
|
+
*/
|
|
5597
|
+
'deposits': TransferAggregateResponse;
|
|
5598
|
+
/**
|
|
5599
|
+
*
|
|
5600
|
+
* @type {TransferAggregateResponse}
|
|
5601
|
+
* @memberof TransferSummaryResponse
|
|
5602
|
+
*/
|
|
5603
|
+
'payoutRequests': TransferAggregateResponse;
|
|
5604
|
+
/**
|
|
5605
|
+
*
|
|
5606
|
+
* @type {TransferAggregateResponse}
|
|
5607
|
+
* @memberof TransferSummaryResponse
|
|
5608
|
+
*/
|
|
5609
|
+
'sellerPayouts': TransferAggregateResponse;
|
|
5610
|
+
/**
|
|
5611
|
+
*
|
|
5612
|
+
* @type {TransferAggregateResponse}
|
|
5613
|
+
* @memberof TransferSummaryResponse
|
|
5614
|
+
*/
|
|
5615
|
+
'invoices': TransferAggregateResponse;
|
|
5616
|
+
/**
|
|
5617
|
+
*
|
|
5618
|
+
* @type {TransferAggregateResponse}
|
|
5619
|
+
* @memberof TransferSummaryResponse
|
|
5620
|
+
*/
|
|
5621
|
+
'creditInvoices': TransferAggregateResponse;
|
|
5622
|
+
/**
|
|
5623
|
+
*
|
|
5624
|
+
* @type {TransferAggregateResponse}
|
|
5625
|
+
* @memberof TransferSummaryResponse
|
|
5626
|
+
*/
|
|
5627
|
+
'fines': TransferAggregateResponse;
|
|
5628
|
+
/**
|
|
5629
|
+
*
|
|
5630
|
+
* @type {TransferAggregateResponse}
|
|
5631
|
+
* @memberof TransferSummaryResponse
|
|
5632
|
+
*/
|
|
5633
|
+
'waivedFines': TransferAggregateResponse;
|
|
5634
|
+
/**
|
|
5635
|
+
*
|
|
5636
|
+
* @type {TransferAggregateResponse}
|
|
5637
|
+
* @memberof TransferSummaryResponse
|
|
5638
|
+
*/
|
|
5639
|
+
'writeOffs': TransferAggregateResponse;
|
|
5640
|
+
/**
|
|
5641
|
+
*
|
|
5642
|
+
* @type {TransferAggregateResponse}
|
|
5643
|
+
* @memberof TransferSummaryResponse
|
|
5644
|
+
*/
|
|
5645
|
+
'inactiveAdministrativeCosts': TransferAggregateResponse;
|
|
5646
|
+
/**
|
|
5647
|
+
*
|
|
5648
|
+
* @type {TransferAggregateResponse}
|
|
5649
|
+
* @memberof TransferSummaryResponse
|
|
5650
|
+
*/
|
|
5651
|
+
'manualCreations': TransferAggregateResponse;
|
|
5652
|
+
/**
|
|
5653
|
+
*
|
|
5654
|
+
* @type {TransferAggregateResponse}
|
|
5655
|
+
* @memberof TransferSummaryResponse
|
|
5656
|
+
*/
|
|
5657
|
+
'manualDeletions': TransferAggregateResponse;
|
|
5658
|
+
}
|
|
5659
|
+
/**
|
|
5660
|
+
* API Request for updating a `container` entity.
|
|
5661
|
+
* @export
|
|
5611
5662
|
* @interface UpdateContainerRequest
|
|
5612
5663
|
*/
|
|
5613
5664
|
export interface UpdateContainerRequest {
|
|
@@ -5856,7 +5907,7 @@ export interface UpdatePinRequest {
|
|
|
5856
5907
|
'pin': string;
|
|
5857
5908
|
}
|
|
5858
5909
|
/**
|
|
5859
|
-
*
|
|
5910
|
+
* API Request for updating a `point of sale` entity.
|
|
5860
5911
|
* @export
|
|
5861
5912
|
* @interface UpdatePointOfSaleRequest
|
|
5862
5913
|
*/
|
|
@@ -5893,7 +5944,7 @@ export interface UpdatePointOfSaleRequest {
|
|
|
5893
5944
|
'cashierRoleIds'?: Array<number>;
|
|
5894
5945
|
}
|
|
5895
5946
|
/**
|
|
5896
|
-
*
|
|
5947
|
+
* API Request for updating a `product` entity.
|
|
5897
5948
|
* @export
|
|
5898
5949
|
* @interface UpdateProductRequest
|
|
5899
5950
|
*/
|
|
@@ -6058,9 +6109,15 @@ export interface UpdateUserRequest {
|
|
|
6058
6109
|
* @memberof UpdateUserRequest
|
|
6059
6110
|
*/
|
|
6060
6111
|
'inactiveNotificationSend'?: boolean;
|
|
6112
|
+
/**
|
|
6113
|
+
* ISO date at which the account expires; pass null to clear
|
|
6114
|
+
* @type {string}
|
|
6115
|
+
* @memberof UpdateUserRequest
|
|
6116
|
+
*/
|
|
6117
|
+
'expiryDate'?: string | null;
|
|
6061
6118
|
}
|
|
6062
6119
|
/**
|
|
6063
|
-
*
|
|
6120
|
+
* API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
|
|
6064
6121
|
* @export
|
|
6065
6122
|
* @interface UpdateVatGroupRequest
|
|
6066
6123
|
*/
|
|
@@ -6274,6 +6331,12 @@ export interface UserResponse {
|
|
|
6274
6331
|
* @memberof UserResponse
|
|
6275
6332
|
*/
|
|
6276
6333
|
'pos'?: BasePointOfSaleInfoResponse;
|
|
6334
|
+
/**
|
|
6335
|
+
* ISO date at which the account expires (null for accounts without expiry)
|
|
6336
|
+
* @type {string}
|
|
6337
|
+
* @memberof UserResponse
|
|
6338
|
+
*/
|
|
6339
|
+
'expiryDate'?: string | null;
|
|
6277
6340
|
}
|
|
6278
6341
|
/**
|
|
6279
6342
|
*
|
|
@@ -6380,6 +6443,22 @@ export interface UserToInactiveAdministrativeCostResponse {
|
|
|
6380
6443
|
*/
|
|
6381
6444
|
'nickname'?: string;
|
|
6382
6445
|
}
|
|
6446
|
+
/**
|
|
6447
|
+
* The type of a user
|
|
6448
|
+
* @export
|
|
6449
|
+
* @enum {string}
|
|
6450
|
+
*/
|
|
6451
|
+
export declare const UserType: {
|
|
6452
|
+
readonly Member: "MEMBER";
|
|
6453
|
+
readonly Organ: "ORGAN";
|
|
6454
|
+
readonly Voucher: "VOUCHER";
|
|
6455
|
+
readonly LocalUser: "LOCAL_USER";
|
|
6456
|
+
readonly LocalAdmin: "LOCAL_ADMIN";
|
|
6457
|
+
readonly Invoice: "INVOICE";
|
|
6458
|
+
readonly PointOfSale: "POINT_OF_SALE";
|
|
6459
|
+
readonly Integration: "INTEGRATION";
|
|
6460
|
+
};
|
|
6461
|
+
export type UserType = typeof UserType[keyof typeof UserType];
|
|
6383
6462
|
/**
|
|
6384
6463
|
*
|
|
6385
6464
|
* @export
|
|
@@ -6406,7 +6485,7 @@ export interface UserTypeTotalBalanceResponse {
|
|
|
6406
6485
|
'totalNegative': DineroObjectResponse;
|
|
6407
6486
|
}
|
|
6408
6487
|
/**
|
|
6409
|
-
*
|
|
6488
|
+
* 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.
|
|
6410
6489
|
* @export
|
|
6411
6490
|
* @interface UserWithIndex
|
|
6412
6491
|
*/
|
|
@@ -6421,6 +6500,25 @@ export interface UserWithIndex {
|
|
|
6421
6500
|
/**
|
|
6422
6501
|
*
|
|
6423
6502
|
* @export
|
|
6503
|
+
* @interface ValidationResponse
|
|
6504
|
+
*/
|
|
6505
|
+
export interface ValidationResponse {
|
|
6506
|
+
/**
|
|
6507
|
+
* Whether the request passed validation.
|
|
6508
|
+
* @type {boolean}
|
|
6509
|
+
* @memberof ValidationResponse
|
|
6510
|
+
*/
|
|
6511
|
+
'valid': boolean;
|
|
6512
|
+
/**
|
|
6513
|
+
* List of validation error messages.
|
|
6514
|
+
* @type {Array<string>}
|
|
6515
|
+
* @memberof ValidationResponse
|
|
6516
|
+
*/
|
|
6517
|
+
'errors': Array<string>;
|
|
6518
|
+
}
|
|
6519
|
+
/**
|
|
6520
|
+
* API Response for a complete VAT declaration — one result table for a given year and period, containing one {@link VatDeclarationRow} per VAT group.
|
|
6521
|
+
* @export
|
|
6424
6522
|
* @interface VatDeclarationResponse
|
|
6425
6523
|
*/
|
|
6426
6524
|
export interface VatDeclarationResponse {
|
|
@@ -6444,7 +6542,7 @@ export interface VatDeclarationResponse {
|
|
|
6444
6542
|
'rows': Array<VatDeclarationRow>;
|
|
6445
6543
|
}
|
|
6446
6544
|
/**
|
|
6447
|
-
*
|
|
6545
|
+
* One row of a VAT declaration — the VAT collected for a single group, broken down by period.
|
|
6448
6546
|
* @export
|
|
6449
6547
|
* @interface VatDeclarationRow
|
|
6450
6548
|
*/
|
|
@@ -6910,15 +7008,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
6910
7008
|
* @throws {RequiredError}
|
|
6911
7009
|
*/
|
|
6912
7010
|
confirmQRCode: (sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6913
|
-
/**
|
|
6914
|
-
*
|
|
6915
|
-
* @summary EAN login and hand out token
|
|
6916
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
|
|
6917
|
-
* @param {*} [options] Override http request option.
|
|
6918
|
-
* @deprecated
|
|
6919
|
-
* @throws {RequiredError}
|
|
6920
|
-
*/
|
|
6921
|
-
eanAuthentication: (authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6922
7011
|
/**
|
|
6923
7012
|
*
|
|
6924
7013
|
* @summary Generate a QR code for authentication
|
|
@@ -6988,15 +7077,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
6988
7077
|
* @throws {RequiredError}
|
|
6989
7078
|
*/
|
|
6990
7079
|
localAuthentication: (authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6991
|
-
/**
|
|
6992
|
-
*
|
|
6993
|
-
* @summary PIN login for members using memberId.
|
|
6994
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
|
|
6995
|
-
* @param {*} [options] Override http request option.
|
|
6996
|
-
* @deprecated
|
|
6997
|
-
* @throws {RequiredError}
|
|
6998
|
-
*/
|
|
6999
|
-
memberPinAuthentication: (memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7000
7080
|
/**
|
|
7001
7081
|
*
|
|
7002
7082
|
* @summary Mock login and hand out token.
|
|
@@ -7005,24 +7085,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7005
7085
|
* @throws {RequiredError}
|
|
7006
7086
|
*/
|
|
7007
7087
|
mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7008
|
-
/**
|
|
7009
|
-
*
|
|
7010
|
-
* @summary NFC login and hand out token
|
|
7011
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
|
|
7012
|
-
* @param {*} [options] Override http request option.
|
|
7013
|
-
* @deprecated
|
|
7014
|
-
* @throws {RequiredError}
|
|
7015
|
-
*/
|
|
7016
|
-
nfcAuthentication: (authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7017
|
-
/**
|
|
7018
|
-
*
|
|
7019
|
-
* @summary PIN login and hand out token
|
|
7020
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
|
|
7021
|
-
* @param {*} [options] Override http request option.
|
|
7022
|
-
* @deprecated
|
|
7023
|
-
* @throws {RequiredError}
|
|
7024
|
-
*/
|
|
7025
|
-
pinAuthentication: (authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7026
7088
|
/**
|
|
7027
7089
|
*
|
|
7028
7090
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7108,15 +7170,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7108
7170
|
* @throws {RequiredError}
|
|
7109
7171
|
*/
|
|
7110
7172
|
confirmQRCode(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7111
|
-
/**
|
|
7112
|
-
*
|
|
7113
|
-
* @summary EAN login and hand out token
|
|
7114
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
|
|
7115
|
-
* @param {*} [options] Override http request option.
|
|
7116
|
-
* @deprecated
|
|
7117
|
-
* @throws {RequiredError}
|
|
7118
|
-
*/
|
|
7119
|
-
eanAuthentication(authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7120
7173
|
/**
|
|
7121
7174
|
*
|
|
7122
7175
|
* @summary Generate a QR code for authentication
|
|
@@ -7186,15 +7239,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7186
7239
|
* @throws {RequiredError}
|
|
7187
7240
|
*/
|
|
7188
7241
|
localAuthentication(authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7189
|
-
/**
|
|
7190
|
-
*
|
|
7191
|
-
* @summary PIN login for members using memberId.
|
|
7192
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
|
|
7193
|
-
* @param {*} [options] Override http request option.
|
|
7194
|
-
* @deprecated
|
|
7195
|
-
* @throws {RequiredError}
|
|
7196
|
-
*/
|
|
7197
|
-
memberPinAuthentication(memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7198
7242
|
/**
|
|
7199
7243
|
*
|
|
7200
7244
|
* @summary Mock login and hand out token.
|
|
@@ -7203,24 +7247,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7203
7247
|
* @throws {RequiredError}
|
|
7204
7248
|
*/
|
|
7205
7249
|
mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7206
|
-
/**
|
|
7207
|
-
*
|
|
7208
|
-
* @summary NFC login and hand out token
|
|
7209
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
|
|
7210
|
-
* @param {*} [options] Override http request option.
|
|
7211
|
-
* @deprecated
|
|
7212
|
-
* @throws {RequiredError}
|
|
7213
|
-
*/
|
|
7214
|
-
nfcAuthentication(authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7215
|
-
/**
|
|
7216
|
-
*
|
|
7217
|
-
* @summary PIN login and hand out token
|
|
7218
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
|
|
7219
|
-
* @param {*} [options] Override http request option.
|
|
7220
|
-
* @deprecated
|
|
7221
|
-
* @throws {RequiredError}
|
|
7222
|
-
*/
|
|
7223
|
-
pinAuthentication(authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7224
7250
|
/**
|
|
7225
7251
|
*
|
|
7226
7252
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7306,15 +7332,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7306
7332
|
* @throws {RequiredError}
|
|
7307
7333
|
*/
|
|
7308
7334
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7309
|
-
/**
|
|
7310
|
-
*
|
|
7311
|
-
* @summary EAN login and hand out token
|
|
7312
|
-
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7313
|
-
* @param {*} [options] Override http request option.
|
|
7314
|
-
* @deprecated
|
|
7315
|
-
* @throws {RequiredError}
|
|
7316
|
-
*/
|
|
7317
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7318
7335
|
/**
|
|
7319
7336
|
*
|
|
7320
7337
|
* @summary Generate a QR code for authentication
|
|
@@ -7384,15 +7401,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7384
7401
|
* @throws {RequiredError}
|
|
7385
7402
|
*/
|
|
7386
7403
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7387
|
-
/**
|
|
7388
|
-
*
|
|
7389
|
-
* @summary PIN login for members using memberId.
|
|
7390
|
-
* @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
|
|
7391
|
-
* @param {*} [options] Override http request option.
|
|
7392
|
-
* @deprecated
|
|
7393
|
-
* @throws {RequiredError}
|
|
7394
|
-
*/
|
|
7395
|
-
memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7396
7404
|
/**
|
|
7397
7405
|
*
|
|
7398
7406
|
* @summary Mock login and hand out token.
|
|
@@ -7401,24 +7409,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7401
7409
|
* @throws {RequiredError}
|
|
7402
7410
|
*/
|
|
7403
7411
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7404
|
-
/**
|
|
7405
|
-
*
|
|
7406
|
-
* @summary NFC login and hand out token
|
|
7407
|
-
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7408
|
-
* @param {*} [options] Override http request option.
|
|
7409
|
-
* @deprecated
|
|
7410
|
-
* @throws {RequiredError}
|
|
7411
|
-
*/
|
|
7412
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7413
|
-
/**
|
|
7414
|
-
*
|
|
7415
|
-
* @summary PIN login and hand out token
|
|
7416
|
-
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7417
|
-
* @param {*} [options] Override http request option.
|
|
7418
|
-
* @deprecated
|
|
7419
|
-
* @throws {RequiredError}
|
|
7420
|
-
*/
|
|
7421
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7422
7412
|
/**
|
|
7423
7413
|
*
|
|
7424
7414
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7514,19 +7504,6 @@ export interface AuthenticateApiConfirmQRCodeRequest {
|
|
|
7514
7504
|
*/
|
|
7515
7505
|
readonly sessionId: string;
|
|
7516
7506
|
}
|
|
7517
|
-
/**
|
|
7518
|
-
* Request parameters for eanAuthentication operation in AuthenticateApi.
|
|
7519
|
-
* @export
|
|
7520
|
-
* @interface AuthenticateApiEanAuthenticationRequest
|
|
7521
|
-
*/
|
|
7522
|
-
export interface AuthenticateApiEanAuthenticationRequest {
|
|
7523
|
-
/**
|
|
7524
|
-
* The EAN login.
|
|
7525
|
-
* @type {AuthenticationEanRequest}
|
|
7526
|
-
* @memberof AuthenticateApiEanAuthentication
|
|
7527
|
-
*/
|
|
7528
|
-
readonly authenticationEanRequest: AuthenticationEanRequest;
|
|
7529
|
-
}
|
|
7530
7507
|
/**
|
|
7531
7508
|
* Request parameters for getQRStatus operation in AuthenticateApi.
|
|
7532
7509
|
* @export
|
|
@@ -7605,19 +7582,6 @@ export interface AuthenticateApiLocalAuthenticationRequest {
|
|
|
7605
7582
|
*/
|
|
7606
7583
|
readonly authenticationLocalRequest: AuthenticationLocalRequest;
|
|
7607
7584
|
}
|
|
7608
|
-
/**
|
|
7609
|
-
* Request parameters for memberPinAuthentication operation in AuthenticateApi.
|
|
7610
|
-
* @export
|
|
7611
|
-
* @interface AuthenticateApiMemberPinAuthenticationRequest
|
|
7612
|
-
*/
|
|
7613
|
-
export interface AuthenticateApiMemberPinAuthenticationRequest {
|
|
7614
|
-
/**
|
|
7615
|
-
* The PIN login.
|
|
7616
|
-
* @type {MemberAuthenticationPinRequest}
|
|
7617
|
-
* @memberof AuthenticateApiMemberPinAuthentication
|
|
7618
|
-
*/
|
|
7619
|
-
readonly memberAuthenticationPinRequest: MemberAuthenticationPinRequest;
|
|
7620
|
-
}
|
|
7621
7585
|
/**
|
|
7622
7586
|
* Request parameters for mockAuthentication operation in AuthenticateApi.
|
|
7623
7587
|
* @export
|
|
@@ -7631,32 +7595,6 @@ export interface AuthenticateApiMockAuthenticationRequest {
|
|
|
7631
7595
|
*/
|
|
7632
7596
|
readonly authenticationMockRequest: AuthenticationMockRequest;
|
|
7633
7597
|
}
|
|
7634
|
-
/**
|
|
7635
|
-
* Request parameters for nfcAuthentication operation in AuthenticateApi.
|
|
7636
|
-
* @export
|
|
7637
|
-
* @interface AuthenticateApiNfcAuthenticationRequest
|
|
7638
|
-
*/
|
|
7639
|
-
export interface AuthenticateApiNfcAuthenticationRequest {
|
|
7640
|
-
/**
|
|
7641
|
-
* The NFC login.
|
|
7642
|
-
* @type {AuthenticationNfcRequest}
|
|
7643
|
-
* @memberof AuthenticateApiNfcAuthentication
|
|
7644
|
-
*/
|
|
7645
|
-
readonly authenticationNfcRequest: AuthenticationNfcRequest;
|
|
7646
|
-
}
|
|
7647
|
-
/**
|
|
7648
|
-
* Request parameters for pinAuthentication operation in AuthenticateApi.
|
|
7649
|
-
* @export
|
|
7650
|
-
* @interface AuthenticateApiPinAuthenticationRequest
|
|
7651
|
-
*/
|
|
7652
|
-
export interface AuthenticateApiPinAuthenticationRequest {
|
|
7653
|
-
/**
|
|
7654
|
-
* The PIN login.
|
|
7655
|
-
* @type {AuthenticationPinRequest}
|
|
7656
|
-
* @memberof AuthenticateApiPinAuthentication
|
|
7657
|
-
*/
|
|
7658
|
-
readonly authenticationPinRequest: AuthenticationPinRequest;
|
|
7659
|
-
}
|
|
7660
7598
|
/**
|
|
7661
7599
|
* Request parameters for resetLocal operation in AuthenticateApi.
|
|
7662
7600
|
* @export
|
|
@@ -7769,16 +7707,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7769
7707
|
* @memberof AuthenticateApi
|
|
7770
7708
|
*/
|
|
7771
7709
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
7772
|
-
/**
|
|
7773
|
-
*
|
|
7774
|
-
* @summary EAN login and hand out token
|
|
7775
|
-
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7776
|
-
* @param {*} [options] Override http request option.
|
|
7777
|
-
* @deprecated
|
|
7778
|
-
* @throws {RequiredError}
|
|
7779
|
-
* @memberof AuthenticateApi
|
|
7780
|
-
*/
|
|
7781
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7782
7710
|
/**
|
|
7783
7711
|
*
|
|
7784
7712
|
* @summary Generate a QR code for authentication
|
|
@@ -7857,16 +7785,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7857
7785
|
* @memberof AuthenticateApi
|
|
7858
7786
|
*/
|
|
7859
7787
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7860
|
-
/**
|
|
7861
|
-
*
|
|
7862
|
-
* @summary PIN login for members using memberId.
|
|
7863
|
-
* @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
|
|
7864
|
-
* @param {*} [options] Override http request option.
|
|
7865
|
-
* @deprecated
|
|
7866
|
-
* @throws {RequiredError}
|
|
7867
|
-
* @memberof AuthenticateApi
|
|
7868
|
-
*/
|
|
7869
|
-
memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7870
7788
|
/**
|
|
7871
7789
|
*
|
|
7872
7790
|
* @summary Mock login and hand out token.
|
|
@@ -7876,26 +7794,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7876
7794
|
* @memberof AuthenticateApi
|
|
7877
7795
|
*/
|
|
7878
7796
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7879
|
-
/**
|
|
7880
|
-
*
|
|
7881
|
-
* @summary NFC login and hand out token
|
|
7882
|
-
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7883
|
-
* @param {*} [options] Override http request option.
|
|
7884
|
-
* @deprecated
|
|
7885
|
-
* @throws {RequiredError}
|
|
7886
|
-
* @memberof AuthenticateApi
|
|
7887
|
-
*/
|
|
7888
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7889
|
-
/**
|
|
7890
|
-
*
|
|
7891
|
-
* @summary PIN login and hand out token
|
|
7892
|
-
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7893
|
-
* @param {*} [options] Override http request option.
|
|
7894
|
-
* @deprecated
|
|
7895
|
-
* @throws {RequiredError}
|
|
7896
|
-
* @memberof AuthenticateApi
|
|
7897
|
-
*/
|
|
7898
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7899
7797
|
/**
|
|
7900
7798
|
*
|
|
7901
7799
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7982,7 +7880,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7982
7880
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
7983
7881
|
* @param {number} [minFine] Minimum fine
|
|
7984
7882
|
* @param {number} [maxFine] Maximum fine
|
|
7985
|
-
* @param {
|
|
7883
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
7986
7884
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
7987
7885
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
7988
7886
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -7992,7 +7890,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7992
7890
|
* @param {*} [options] Override http request option.
|
|
7993
7891
|
* @throws {RequiredError}
|
|
7994
7892
|
*/
|
|
7995
|
-
getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
7893
|
+
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>;
|
|
7996
7894
|
/**
|
|
7997
7895
|
*
|
|
7998
7896
|
* @summary Retrieves the requested balance
|
|
@@ -8032,7 +7930,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8032
7930
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
8033
7931
|
* @param {number} [minFine] Minimum fine
|
|
8034
7932
|
* @param {number} [maxFine] Maximum fine
|
|
8035
|
-
* @param {
|
|
7933
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
8036
7934
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
8037
7935
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
8038
7936
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -8042,7 +7940,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8042
7940
|
* @param {*} [options] Override http request option.
|
|
8043
7941
|
* @throws {RequiredError}
|
|
8044
7942
|
*/
|
|
8045
|
-
getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
7943
|
+
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>>;
|
|
8046
7944
|
/**
|
|
8047
7945
|
*
|
|
8048
7946
|
* @summary Retrieves the requested balance
|
|
@@ -8159,10 +8057,10 @@ export interface BalanceApiGetAllBalanceRequest {
|
|
|
8159
8057
|
readonly maxFine?: number;
|
|
8160
8058
|
/**
|
|
8161
8059
|
* Filter based on user type.
|
|
8162
|
-
* @type {Array<
|
|
8060
|
+
* @type {Array<UserType>}
|
|
8163
8061
|
* @memberof BalanceApiGetAllBalance
|
|
8164
8062
|
*/
|
|
8165
|
-
readonly userTypes?:
|
|
8063
|
+
readonly userTypes?: Array<UserType>;
|
|
8166
8064
|
/**
|
|
8167
8065
|
* Column to order balance by - eg: id,amount
|
|
8168
8066
|
* @type {string}
|
|
@@ -8256,11 +8154,6 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8256
8154
|
*/
|
|
8257
8155
|
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8258
8156
|
}
|
|
8259
|
-
/**
|
|
8260
|
-
* @export
|
|
8261
|
-
*/
|
|
8262
|
-
export declare const GetAllBalanceUserTypesEnum: {};
|
|
8263
|
-
export type GetAllBalanceUserTypesEnum = typeof GetAllBalanceUserTypesEnum[keyof typeof GetAllBalanceUserTypesEnum];
|
|
8264
8157
|
/**
|
|
8265
8158
|
* @export
|
|
8266
8159
|
*/
|
|
@@ -10681,7 +10574,7 @@ export declare const InactiveAdministrativeCostsApiFp: (configuration?: Configur
|
|
|
10681
10574
|
* @param {*} [options] Override http request option.
|
|
10682
10575
|
* @throws {RequiredError}
|
|
10683
10576
|
*/
|
|
10684
|
-
handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10577
|
+
handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InactiveAdministrativeCostResponse>>>;
|
|
10685
10578
|
/**
|
|
10686
10579
|
*
|
|
10687
10580
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -10759,7 +10652,7 @@ export declare const InactiveAdministrativeCostsApiFactory: (configuration?: Con
|
|
|
10759
10652
|
* @param {*} [options] Override http request option.
|
|
10760
10653
|
* @throws {RequiredError}
|
|
10761
10654
|
*/
|
|
10762
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10655
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<InactiveAdministrativeCostResponse>>;
|
|
10763
10656
|
/**
|
|
10764
10657
|
*
|
|
10765
10658
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -10982,7 +10875,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10982
10875
|
* @throws {RequiredError}
|
|
10983
10876
|
* @memberof InactiveAdministrativeCostsApi
|
|
10984
10877
|
*/
|
|
10985
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10878
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
|
|
10986
10879
|
/**
|
|
10987
10880
|
*
|
|
10988
10881
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -11027,16 +10920,17 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11027
10920
|
* @summary Returns all invoices in the system.
|
|
11028
10921
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11029
10922
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11030
|
-
* @param {
|
|
10923
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11031
10924
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11032
10925
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11033
10926
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
10927
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
11034
10928
|
* @param {number} [take] How many entries the endpoint should return
|
|
11035
10929
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
11036
10930
|
* @param {*} [options] Override http request option.
|
|
11037
10931
|
* @throws {RequiredError}
|
|
11038
10932
|
*/
|
|
11039
|
-
getAllInvoices: (toId?: number, invoiceId?: number, currentState?:
|
|
10933
|
+
getAllInvoices: (toId?: number, invoiceId?: number, currentState?: Array<GetAllInvoicesCurrentStateParameterInner>, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11040
10934
|
/**
|
|
11041
10935
|
*
|
|
11042
10936
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11047,6 +10941,13 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11047
10941
|
* @throws {RequiredError}
|
|
11048
10942
|
*/
|
|
11049
10943
|
getEligibleTransactions: (forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10944
|
+
/**
|
|
10945
|
+
*
|
|
10946
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
10947
|
+
* @param {*} [options] Override http request option.
|
|
10948
|
+
* @throws {RequiredError}
|
|
10949
|
+
*/
|
|
10950
|
+
getInvoiceDrift: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11050
10951
|
/**
|
|
11051
10952
|
*
|
|
11052
10953
|
* @summary Get an invoice pdf.
|
|
@@ -11126,16 +11027,17 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11126
11027
|
* @summary Returns all invoices in the system.
|
|
11127
11028
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11128
11029
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11129
|
-
* @param {
|
|
11030
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11130
11031
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11131
11032
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11132
11033
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
11034
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
11133
11035
|
* @param {number} [take] How many entries the endpoint should return
|
|
11134
11036
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
11135
11037
|
* @param {*} [options] Override http request option.
|
|
11136
11038
|
* @throws {RequiredError}
|
|
11137
11039
|
*/
|
|
11138
|
-
getAllInvoices(toId?: number, invoiceId?: number, currentState?:
|
|
11040
|
+
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>>;
|
|
11139
11041
|
/**
|
|
11140
11042
|
*
|
|
11141
11043
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11145,7 +11047,14 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11145
11047
|
* @param {*} [options] Override http request option.
|
|
11146
11048
|
* @throws {RequiredError}
|
|
11147
11049
|
*/
|
|
11148
|
-
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionResponse
|
|
11050
|
+
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransactionResponse>>>;
|
|
11051
|
+
/**
|
|
11052
|
+
*
|
|
11053
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11054
|
+
* @param {*} [options] Override http request option.
|
|
11055
|
+
* @throws {RequiredError}
|
|
11056
|
+
*/
|
|
11057
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InvoiceDriftResponse>>>;
|
|
11149
11058
|
/**
|
|
11150
11059
|
*
|
|
11151
11060
|
* @summary Get an invoice pdf.
|
|
@@ -11154,7 +11063,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11154
11063
|
* @param {*} [options] Override http request option.
|
|
11155
11064
|
* @throws {RequiredError}
|
|
11156
11065
|
*/
|
|
11157
|
-
getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11066
|
+
getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PdfUrlResponse>>;
|
|
11158
11067
|
/**
|
|
11159
11068
|
*
|
|
11160
11069
|
* @summary Returns a single invoice in the system.
|
|
@@ -11235,7 +11144,14 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11235
11144
|
* @param {*} [options] Override http request option.
|
|
11236
11145
|
* @throws {RequiredError}
|
|
11237
11146
|
*/
|
|
11238
|
-
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse
|
|
11147
|
+
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<TransactionResponse>>;
|
|
11148
|
+
/**
|
|
11149
|
+
*
|
|
11150
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11151
|
+
* @param {*} [options] Override http request option.
|
|
11152
|
+
* @throws {RequiredError}
|
|
11153
|
+
*/
|
|
11154
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): AxiosPromise<Array<InvoiceDriftResponse>>;
|
|
11239
11155
|
/**
|
|
11240
11156
|
*
|
|
11241
11157
|
* @summary Get an invoice pdf.
|
|
@@ -11243,7 +11159,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11243
11159
|
* @param {*} [options] Override http request option.
|
|
11244
11160
|
* @throws {RequiredError}
|
|
11245
11161
|
*/
|
|
11246
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11162
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<PdfUrlResponse>;
|
|
11247
11163
|
/**
|
|
11248
11164
|
*
|
|
11249
11165
|
* @summary Returns a single invoice in the system.
|
|
@@ -11336,10 +11252,10 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11336
11252
|
readonly invoiceId?: number;
|
|
11337
11253
|
/**
|
|
11338
11254
|
* Filter based on Invoice State.
|
|
11339
|
-
* @type {Array<
|
|
11255
|
+
* @type {Array<GetAllInvoicesCurrentStateParameterInner>}
|
|
11340
11256
|
* @memberof InvoicesApiGetAllInvoices
|
|
11341
11257
|
*/
|
|
11342
|
-
readonly currentState?:
|
|
11258
|
+
readonly currentState?: Array<GetAllInvoicesCurrentStateParameterInner>;
|
|
11343
11259
|
/**
|
|
11344
11260
|
* Boolean if invoice entries should be returned
|
|
11345
11261
|
* @type {boolean}
|
|
@@ -11358,6 +11274,12 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11358
11274
|
* @memberof InvoicesApiGetAllInvoices
|
|
11359
11275
|
*/
|
|
11360
11276
|
readonly tillDate?: string;
|
|
11277
|
+
/**
|
|
11278
|
+
* Filter invoices by description (partial match)
|
|
11279
|
+
* @type {string}
|
|
11280
|
+
* @memberof InvoicesApiGetAllInvoices
|
|
11281
|
+
*/
|
|
11282
|
+
readonly description?: string;
|
|
11361
11283
|
/**
|
|
11362
11284
|
* How many entries the endpoint should return
|
|
11363
11285
|
* @type {number}
|
|
@@ -11536,7 +11458,15 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11536
11458
|
* @throws {RequiredError}
|
|
11537
11459
|
* @memberof InvoicesApi
|
|
11538
11460
|
*/
|
|
11539
|
-
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
11461
|
+
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse[], any, {}>>;
|
|
11462
|
+
/**
|
|
11463
|
+
*
|
|
11464
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11465
|
+
* @param {*} [options] Override http request option.
|
|
11466
|
+
* @throws {RequiredError}
|
|
11467
|
+
* @memberof InvoicesApi
|
|
11468
|
+
*/
|
|
11469
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}>>;
|
|
11540
11470
|
/**
|
|
11541
11471
|
*
|
|
11542
11472
|
* @summary Get an invoice pdf.
|
|
@@ -11545,7 +11475,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11545
11475
|
* @throws {RequiredError}
|
|
11546
11476
|
* @memberof InvoicesApi
|
|
11547
11477
|
*/
|
|
11548
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11478
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
11549
11479
|
/**
|
|
11550
11480
|
*
|
|
11551
11481
|
* @summary Returns a single invoice in the system.
|
|
@@ -11583,11 +11513,6 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11583
11513
|
*/
|
|
11584
11514
|
updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}>>;
|
|
11585
11515
|
}
|
|
11586
|
-
/**
|
|
11587
|
-
* @export
|
|
11588
|
-
*/
|
|
11589
|
-
export declare const GetAllInvoicesCurrentStateEnum: {};
|
|
11590
|
-
export type GetAllInvoicesCurrentStateEnum = typeof GetAllInvoicesCurrentStateEnum[keyof typeof GetAllInvoicesCurrentStateEnum];
|
|
11591
11516
|
/**
|
|
11592
11517
|
* PayoutRequestsApi - axios parameter creator
|
|
11593
11518
|
* @export
|
|
@@ -14142,11 +14067,11 @@ export declare const SyncApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14142
14067
|
/**
|
|
14143
14068
|
* 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.
|
|
14144
14069
|
* @summary Get dry-run sync results for users
|
|
14145
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14070
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14146
14071
|
* @param {*} [options] Override http request option.
|
|
14147
14072
|
* @throws {RequiredError}
|
|
14148
14073
|
*/
|
|
14149
|
-
getUserSyncResults: (service?: GetUserSyncResultsServiceEnum
|
|
14074
|
+
getUserSyncResults: (service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14150
14075
|
};
|
|
14151
14076
|
/**
|
|
14152
14077
|
* SyncApi - functional programming interface
|
|
@@ -14156,11 +14081,11 @@ export declare const SyncApiFp: (configuration?: Configuration) => {
|
|
|
14156
14081
|
/**
|
|
14157
14082
|
* 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.
|
|
14158
14083
|
* @summary Get dry-run sync results for users
|
|
14159
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14084
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14160
14085
|
* @param {*} [options] Override http request option.
|
|
14161
14086
|
* @throws {RequiredError}
|
|
14162
14087
|
*/
|
|
14163
|
-
getUserSyncResults(service?: GetUserSyncResultsServiceEnum
|
|
14088
|
+
getUserSyncResults(service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
14164
14089
|
};
|
|
14165
14090
|
/**
|
|
14166
14091
|
* SyncApi - factory interface
|
|
@@ -14184,10 +14109,10 @@ export declare const SyncApiFactory: (configuration?: Configuration, basePath?:
|
|
|
14184
14109
|
export interface SyncApiGetUserSyncResultsRequest {
|
|
14185
14110
|
/**
|
|
14186
14111
|
* Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14187
|
-
* @type {Array<
|
|
14112
|
+
* @type {Array<'LDAP' | 'GEWISDB'>}
|
|
14188
14113
|
* @memberof SyncApiGetUserSyncResults
|
|
14189
14114
|
*/
|
|
14190
|
-
readonly service?: GetUserSyncResultsServiceEnum
|
|
14115
|
+
readonly service?: Array<GetUserSyncResultsServiceEnum>;
|
|
14191
14116
|
}
|
|
14192
14117
|
/**
|
|
14193
14118
|
* SyncApi - object-oriented interface
|
|
@@ -14209,7 +14134,10 @@ export declare class SyncApi extends BaseAPI {
|
|
|
14209
14134
|
/**
|
|
14210
14135
|
* @export
|
|
14211
14136
|
*/
|
|
14212
|
-
export declare const GetUserSyncResultsServiceEnum: {
|
|
14137
|
+
export declare const GetUserSyncResultsServiceEnum: {
|
|
14138
|
+
readonly Ldap: "LDAP";
|
|
14139
|
+
readonly Gewisdb: "GEWISDB";
|
|
14140
|
+
};
|
|
14213
14141
|
export type GetUserSyncResultsServiceEnum = typeof GetUserSyncResultsServiceEnum[keyof typeof GetUserSyncResultsServiceEnum];
|
|
14214
14142
|
/**
|
|
14215
14143
|
* TermsOfServiceApi - axios parameter creator
|
|
@@ -14959,12 +14887,15 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14959
14887
|
* @summary Returns all existing transfers
|
|
14960
14888
|
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
14961
14889
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14890
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14891
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14892
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
14962
14893
|
* @param {number} [take] How many transfers the endpoint should return
|
|
14963
14894
|
* @param {number} [skip] How many transfers should be skipped (for pagination)
|
|
14964
14895
|
* @param {*} [options] Override http request option.
|
|
14965
14896
|
* @throws {RequiredError}
|
|
14966
14897
|
*/
|
|
14967
|
-
getAllTransfers: (fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14898
|
+
getAllTransfers: (fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14968
14899
|
/**
|
|
14969
14900
|
*
|
|
14970
14901
|
* @summary Returns the requested transfer
|
|
@@ -14980,7 +14911,7 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14980
14911
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14981
14912
|
* @param {number} [fromId] Filter transfers from this user ID
|
|
14982
14913
|
* @param {number} [toId] Filter transfers to this user ID
|
|
14983
|
-
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, invoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
14914
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
14984
14915
|
* @param {*} [options] Override http request option.
|
|
14985
14916
|
* @throws {RequiredError}
|
|
14986
14917
|
*/
|
|
@@ -14993,6 +14924,17 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14993
14924
|
* @throws {RequiredError}
|
|
14994
14925
|
*/
|
|
14995
14926
|
getTransferPdf: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14927
|
+
/**
|
|
14928
|
+
*
|
|
14929
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
14930
|
+
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
14931
|
+
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14932
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14933
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14934
|
+
* @param {*} [options] Override http request option.
|
|
14935
|
+
* @throws {RequiredError}
|
|
14936
|
+
*/
|
|
14937
|
+
getTransferSummary: (fromDate?: string, tillDate?: string, fromId?: number, toId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14996
14938
|
};
|
|
14997
14939
|
/**
|
|
14998
14940
|
* TransfersApi - functional programming interface
|
|
@@ -15020,12 +14962,15 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15020
14962
|
* @summary Returns all existing transfers
|
|
15021
14963
|
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
15022
14964
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14965
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14966
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14967
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15023
14968
|
* @param {number} [take] How many transfers the endpoint should return
|
|
15024
14969
|
* @param {number} [skip] How many transfers should be skipped (for pagination)
|
|
15025
14970
|
* @param {*} [options] Override http request option.
|
|
15026
14971
|
* @throws {RequiredError}
|
|
15027
14972
|
*/
|
|
15028
|
-
getAllTransfers(fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
14973
|
+
getAllTransfers(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedTransferResponse>>;
|
|
15029
14974
|
/**
|
|
15030
14975
|
*
|
|
15031
14976
|
* @summary Returns the requested transfer
|
|
@@ -15041,7 +14986,7 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15041
14986
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
15042
14987
|
* @param {number} [fromId] Filter transfers from this user ID
|
|
15043
14988
|
* @param {number} [toId] Filter transfers to this user ID
|
|
15044
|
-
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, invoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
14989
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
15045
14990
|
* @param {*} [options] Override http request option.
|
|
15046
14991
|
* @throws {RequiredError}
|
|
15047
14992
|
*/
|
|
@@ -15054,6 +14999,17 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15054
14999
|
* @throws {RequiredError}
|
|
15055
15000
|
*/
|
|
15056
15001
|
getTransferPdf(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
15002
|
+
/**
|
|
15003
|
+
*
|
|
15004
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
15005
|
+
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
15006
|
+
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
15007
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
15008
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
15009
|
+
* @param {*} [options] Override http request option.
|
|
15010
|
+
* @throws {RequiredError}
|
|
15011
|
+
*/
|
|
15012
|
+
getTransferSummary(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransferSummaryResponse>>;
|
|
15057
15013
|
};
|
|
15058
15014
|
/**
|
|
15059
15015
|
* TransfersApi - factory interface
|
|
@@ -15083,7 +15039,7 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
|
|
|
15083
15039
|
* @param {*} [options] Override http request option.
|
|
15084
15040
|
* @throws {RequiredError}
|
|
15085
15041
|
*/
|
|
15086
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
15042
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedTransferResponse>;
|
|
15087
15043
|
/**
|
|
15088
15044
|
*
|
|
15089
15045
|
* @summary Returns the requested transfer
|
|
@@ -15108,6 +15064,14 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
|
|
|
15108
15064
|
* @throws {RequiredError}
|
|
15109
15065
|
*/
|
|
15110
15066
|
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
15067
|
+
/**
|
|
15068
|
+
*
|
|
15069
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
15070
|
+
* @param {TransfersApiGetTransferSummaryRequest} requestParameters Request parameters.
|
|
15071
|
+
* @param {*} [options] Override http request option.
|
|
15072
|
+
* @throws {RequiredError}
|
|
15073
|
+
*/
|
|
15074
|
+
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransferSummaryResponse>;
|
|
15111
15075
|
};
|
|
15112
15076
|
/**
|
|
15113
15077
|
* Request parameters for createTransfer operation in TransfersApi.
|
|
@@ -15153,6 +15117,24 @@ export interface TransfersApiGetAllTransfersRequest {
|
|
|
15153
15117
|
* @memberof TransfersApiGetAllTransfers
|
|
15154
15118
|
*/
|
|
15155
15119
|
readonly tillDate?: string;
|
|
15120
|
+
/**
|
|
15121
|
+
* Filter transfers from this user ID
|
|
15122
|
+
* @type {number}
|
|
15123
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15124
|
+
*/
|
|
15125
|
+
readonly fromId?: number;
|
|
15126
|
+
/**
|
|
15127
|
+
* Filter transfers to this user ID
|
|
15128
|
+
* @type {number}
|
|
15129
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15130
|
+
*/
|
|
15131
|
+
readonly toId?: number;
|
|
15132
|
+
/**
|
|
15133
|
+
* Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15134
|
+
* @type {string}
|
|
15135
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15136
|
+
*/
|
|
15137
|
+
readonly category?: string;
|
|
15156
15138
|
/**
|
|
15157
15139
|
* How many transfers the endpoint should return
|
|
15158
15140
|
* @type {number}
|
|
@@ -15210,7 +15192,7 @@ export interface TransfersApiGetTransferAggregateRequest {
|
|
|
15210
15192
|
*/
|
|
15211
15193
|
readonly toId?: number;
|
|
15212
15194
|
/**
|
|
15213
|
-
* Restrict to a specific transfer category: deposit, payoutRequest, invoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
15195
|
+
* Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
15214
15196
|
* @type {string}
|
|
15215
15197
|
* @memberof TransfersApiGetTransferAggregate
|
|
15216
15198
|
*/
|
|
@@ -15229,6 +15211,37 @@ export interface TransfersApiGetTransferPdfRequest {
|
|
|
15229
15211
|
*/
|
|
15230
15212
|
readonly id: number;
|
|
15231
15213
|
}
|
|
15214
|
+
/**
|
|
15215
|
+
* Request parameters for getTransferSummary operation in TransfersApi.
|
|
15216
|
+
* @export
|
|
15217
|
+
* @interface TransfersApiGetTransferSummaryRequest
|
|
15218
|
+
*/
|
|
15219
|
+
export interface TransfersApiGetTransferSummaryRequest {
|
|
15220
|
+
/**
|
|
15221
|
+
* Start date for selected transfers (inclusive)
|
|
15222
|
+
* @type {string}
|
|
15223
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15224
|
+
*/
|
|
15225
|
+
readonly fromDate?: string;
|
|
15226
|
+
/**
|
|
15227
|
+
* End date for selected transfers (exclusive)
|
|
15228
|
+
* @type {string}
|
|
15229
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15230
|
+
*/
|
|
15231
|
+
readonly tillDate?: string;
|
|
15232
|
+
/**
|
|
15233
|
+
* Filter transfers from this user ID
|
|
15234
|
+
* @type {number}
|
|
15235
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15236
|
+
*/
|
|
15237
|
+
readonly fromId?: number;
|
|
15238
|
+
/**
|
|
15239
|
+
* Filter transfers to this user ID
|
|
15240
|
+
* @type {number}
|
|
15241
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15242
|
+
*/
|
|
15243
|
+
readonly toId?: number;
|
|
15244
|
+
}
|
|
15232
15245
|
/**
|
|
15233
15246
|
* TransfersApi - object-oriented interface
|
|
15234
15247
|
* @export
|
|
@@ -15262,7 +15275,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15262
15275
|
* @throws {RequiredError}
|
|
15263
15276
|
* @memberof TransfersApi
|
|
15264
15277
|
*/
|
|
15265
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15278
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}>>;
|
|
15266
15279
|
/**
|
|
15267
15280
|
*
|
|
15268
15281
|
* @summary Returns the requested transfer
|
|
@@ -15290,6 +15303,15 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15290
15303
|
* @memberof TransfersApi
|
|
15291
15304
|
*/
|
|
15292
15305
|
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
15306
|
+
/**
|
|
15307
|
+
*
|
|
15308
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
15309
|
+
* @param {TransfersApiGetTransferSummaryRequest} requestParameters Request parameters.
|
|
15310
|
+
* @param {*} [options] Override http request option.
|
|
15311
|
+
* @throws {RequiredError}
|
|
15312
|
+
* @memberof TransfersApi
|
|
15313
|
+
*/
|
|
15314
|
+
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferSummaryResponse, any, {}>>;
|
|
15293
15315
|
}
|
|
15294
15316
|
/**
|
|
15295
15317
|
* UserNotificationPreferencesApi - axios parameter creator
|