@gewis/sudosos-client 0.0.0-develop.6e16b4c → 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/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
  */
@@ -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, if undefined it will default to the token ID.
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
- * @interface GetAllBalanceUserTypesParameterInner
2524
+ * @enum {string}
2570
2525
  */
2571
- export interface GetAllBalanceUserTypesParameterInner {
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
@@ -3146,25 +3106,6 @@ export interface InvoiceUserResponse {
3146
3106
  */
3147
3107
  'automatic': boolean;
3148
3108
  }
3149
- /**
3150
- *
3151
- * @export
3152
- * @interface MemberAuthenticationPinRequest
3153
- */
3154
- export interface MemberAuthenticationPinRequest {
3155
- /**
3156
- *
3157
- * @type {number}
3158
- * @memberof MemberAuthenticationPinRequest
3159
- */
3160
- 'memberId': number;
3161
- /**
3162
- *
3163
- * @type {string}
3164
- * @memberof MemberAuthenticationPinRequest
3165
- */
3166
- 'pin': string;
3167
- }
3168
3109
  /**
3169
3110
  *
3170
3111
  * @export
@@ -3214,13 +3155,13 @@ export interface PaginatedBalanceResponse {
3214
3155
  * @type {PaginationResult}
3215
3156
  * @memberof PaginatedBalanceResponse
3216
3157
  */
3217
- '_pagination'?: PaginationResult;
3158
+ '_pagination': PaginationResult;
3218
3159
  /**
3219
3160
  * Returned balance responses
3220
3161
  * @type {Array<BalanceResponse>}
3221
3162
  * @memberof PaginatedBalanceResponse
3222
3163
  */
3223
- 'records'?: Array<BalanceResponse>;
3164
+ 'records': Array<BalanceResponse>;
3224
3165
  }
3225
3166
  /**
3226
3167
  * Paginated API Response for the `banner` entity.
@@ -3233,13 +3174,13 @@ export interface PaginatedBannerResponse {
3233
3174
  * @type {PaginationResult}
3234
3175
  * @memberof PaginatedBannerResponse
3235
3176
  */
3236
- '_pagination'?: PaginationResult;
3177
+ '_pagination': PaginationResult;
3237
3178
  /**
3238
3179
  * Returned banners
3239
3180
  * @type {Array<BannerResponse>}
3240
3181
  * @memberof PaginatedBannerResponse
3241
3182
  */
3242
- 'records'?: Array<BannerResponse>;
3183
+ 'records': Array<BannerResponse>;
3243
3184
  }
3244
3185
  /**
3245
3186
  *
@@ -3299,7 +3240,7 @@ export interface PaginatedBaseTransactionResponse {
3299
3240
  'records': Array<BaseTransactionResponse>;
3300
3241
  }
3301
3242
  /**
3302
- *
3243
+ * Paginated API Response for the `container` entity.
3303
3244
  * @export
3304
3245
  * @interface PaginatedContainerResponse
3305
3246
  */
@@ -3318,7 +3259,7 @@ export interface PaginatedContainerResponse {
3318
3259
  'records': Array<ContainerResponse>;
3319
3260
  }
3320
3261
  /**
3321
- *
3262
+ * Paginated API Response for the `container` entity, with each container\'s products inlined.
3322
3263
  * @export
3323
3264
  * @interface PaginatedContainerWithProductResponse
3324
3265
  */
@@ -3404,13 +3345,13 @@ export interface PaginatedInactiveAdministrativeCostResponse {
3404
3345
  * @type {PaginationResult}
3405
3346
  * @memberof PaginatedInactiveAdministrativeCostResponse
3406
3347
  */
3407
- '_pagination'?: PaginationResult;
3348
+ '_pagination': PaginationResult;
3408
3349
  /**
3409
3350
  * Returned InactiveAdministrativeCost
3410
3351
  * @type {Array<InactiveAdministrativeCostResponse>}
3411
3352
  * @memberof PaginatedInactiveAdministrativeCostResponse
3412
3353
  */
3413
- 'records'?: Array<InactiveAdministrativeCostResponse>;
3354
+ 'records': Array<InactiveAdministrativeCostResponse>;
3414
3355
  }
3415
3356
  /**
3416
3357
  *
@@ -3432,7 +3373,7 @@ export interface PaginatedInvoiceResponse {
3432
3373
  'records': Array<InvoiceResponseTypes>;
3433
3374
  }
3434
3375
  /**
3435
- *
3376
+ * Paginated API Response for the `point of sale` entity.
3436
3377
  * @export
3437
3378
  * @interface PaginatedPointOfSaleResponse
3438
3379
  */
@@ -3451,7 +3392,7 @@ export interface PaginatedPointOfSaleResponse {
3451
3392
  'records': Array<PointOfSaleResponse>;
3452
3393
  }
3453
3394
  /**
3454
- *
3395
+ * Paginated API Response for the `product category` entity.
3455
3396
  * @export
3456
3397
  * @interface PaginatedProductCategoryResponse
3457
3398
  */
@@ -3470,7 +3411,7 @@ export interface PaginatedProductCategoryResponse {
3470
3411
  'records': Array<ProductCategoryResponse>;
3471
3412
  }
3472
3413
  /**
3473
- *
3414
+ * Paginated API Response for the `product` entity.
3474
3415
  * @export
3475
3416
  * @interface PaginatedProductResponse
3476
3417
  */
@@ -3565,7 +3506,7 @@ export interface PaginatedUserResponse {
3565
3506
  'records': Array<UserResponse>;
3566
3507
  }
3567
3508
  /**
3568
- *
3509
+ * Paginated API Response for the `vat group` entity.
3569
3510
  * @export
3570
3511
  * @interface PaginatedVatGroupResponse
3571
3512
  */
@@ -3897,7 +3838,7 @@ export interface PermissionResponse {
3897
3838
  'actions': Array<ActionResponse>;
3898
3839
  }
3899
3840
  /**
3900
- *
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).
3901
3842
  * @export
3902
3843
  * @interface PointOfSaleAssociateUsersResponse
3903
3844
  */
@@ -4050,7 +3991,7 @@ export interface PointOfSaleWithContainersResponse {
4050
3991
  'containers': Array<ContainerWithProductsResponse>;
4051
3992
  }
4052
3993
  /**
4053
- *
3994
+ * API Request for creating or updating a `product category` entity.
4054
3995
  * @export
4055
3996
  * @interface ProductCategoryRequest
4056
3997
  */
@@ -5115,23 +5056,23 @@ export interface TotalBalanceResponse {
5115
5056
  */
5116
5057
  'date': string;
5117
5058
  /**
5118
- * The total amount of positive balance in SudoSOS
5119
- * @type {number}
5059
+ *
5060
+ * @type {DineroObjectResponse}
5120
5061
  * @memberof TotalBalanceResponse
5121
5062
  */
5122
- 'totalPositive': number;
5063
+ 'totalPositive': DineroObjectResponse;
5123
5064
  /**
5124
- * The total amount of negative balance in SudoSOS
5125
- * @type {number}
5065
+ *
5066
+ * @type {DineroObjectResponse}
5126
5067
  * @memberof TotalBalanceResponse
5127
5068
  */
5128
- 'totalNegative': number;
5069
+ 'totalNegative': DineroObjectResponse;
5129
5070
  /**
5130
- *
5131
- * @type {UserTypeTotalBalanceResponse}
5071
+ * The total balances for the different user types
5072
+ * @type {Array<UserTypeTotalBalanceResponse>}
5132
5073
  * @memberof TotalBalanceResponse
5133
5074
  */
5134
- 'userTypeBalances': UserTypeTotalBalanceResponse;
5075
+ 'userTypeBalances': Array<UserTypeTotalBalanceResponse>;
5135
5076
  }
5136
5077
  /**
5137
5078
  *
@@ -5716,7 +5657,7 @@ export interface TransferSummaryResponse {
5716
5657
  'manualDeletions': TransferAggregateResponse;
5717
5658
  }
5718
5659
  /**
5719
- *
5660
+ * API Request for updating a `container` entity.
5720
5661
  * @export
5721
5662
  * @interface UpdateContainerRequest
5722
5663
  */
@@ -5966,7 +5907,7 @@ export interface UpdatePinRequest {
5966
5907
  'pin': string;
5967
5908
  }
5968
5909
  /**
5969
- *
5910
+ * API Request for updating a `point of sale` entity.
5970
5911
  * @export
5971
5912
  * @interface UpdatePointOfSaleRequest
5972
5913
  */
@@ -6003,7 +5944,7 @@ export interface UpdatePointOfSaleRequest {
6003
5944
  'cashierRoleIds'?: Array<number>;
6004
5945
  }
6005
5946
  /**
6006
- *
5947
+ * API Request for updating a `product` entity.
6007
5948
  * @export
6008
5949
  * @interface UpdateProductRequest
6009
5950
  */
@@ -6168,9 +6109,15 @@ export interface UpdateUserRequest {
6168
6109
  * @memberof UpdateUserRequest
6169
6110
  */
6170
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;
6171
6118
  }
6172
6119
  /**
6173
- *
6120
+ * API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
6174
6121
  * @export
6175
6122
  * @interface UpdateVatGroupRequest
6176
6123
  */
@@ -6384,6 +6331,12 @@ export interface UserResponse {
6384
6331
  * @memberof UserResponse
6385
6332
  */
6386
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;
6387
6340
  }
6388
6341
  /**
6389
6342
  *
@@ -6490,6 +6443,22 @@ export interface UserToInactiveAdministrativeCostResponse {
6490
6443
  */
6491
6444
  'nickname'?: string;
6492
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];
6493
6462
  /**
6494
6463
  *
6495
6464
  * @export
@@ -6516,7 +6485,7 @@ export interface UserTypeTotalBalanceResponse {
6516
6485
  'totalNegative': DineroObjectResponse;
6517
6486
  }
6518
6487
  /**
6519
- *
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.
6520
6489
  * @export
6521
6490
  * @interface UserWithIndex
6522
6491
  */
@@ -6531,6 +6500,25 @@ export interface UserWithIndex {
6531
6500
  /**
6532
6501
  *
6533
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
6534
6522
  * @interface VatDeclarationResponse
6535
6523
  */
6536
6524
  export interface VatDeclarationResponse {
@@ -6554,7 +6542,7 @@ export interface VatDeclarationResponse {
6554
6542
  'rows': Array<VatDeclarationRow>;
6555
6543
  }
6556
6544
  /**
6557
- *
6545
+ * One row of a VAT declaration — the VAT collected for a single group, broken down by period.
6558
6546
  * @export
6559
6547
  * @interface VatDeclarationRow
6560
6548
  */
@@ -7020,15 +7008,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
7020
7008
  * @throws {RequiredError}
7021
7009
  */
7022
7010
  confirmQRCode: (sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7023
- /**
7024
- *
7025
- * @summary EAN login and hand out token
7026
- * @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
7027
- * @param {*} [options] Override http request option.
7028
- * @deprecated
7029
- * @throws {RequiredError}
7030
- */
7031
- eanAuthentication: (authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7032
7011
  /**
7033
7012
  *
7034
7013
  * @summary Generate a QR code for authentication
@@ -7098,15 +7077,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
7098
7077
  * @throws {RequiredError}
7099
7078
  */
7100
7079
  localAuthentication: (authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7101
- /**
7102
- *
7103
- * @summary PIN login for members using memberId.
7104
- * @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
7105
- * @param {*} [options] Override http request option.
7106
- * @deprecated
7107
- * @throws {RequiredError}
7108
- */
7109
- memberPinAuthentication: (memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7110
7080
  /**
7111
7081
  *
7112
7082
  * @summary Mock login and hand out token.
@@ -7115,24 +7085,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
7115
7085
  * @throws {RequiredError}
7116
7086
  */
7117
7087
  mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7118
- /**
7119
- *
7120
- * @summary NFC login and hand out token
7121
- * @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
7122
- * @param {*} [options] Override http request option.
7123
- * @deprecated
7124
- * @throws {RequiredError}
7125
- */
7126
- nfcAuthentication: (authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7127
- /**
7128
- *
7129
- * @summary PIN login and hand out token
7130
- * @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
7131
- * @param {*} [options] Override http request option.
7132
- * @deprecated
7133
- * @throws {RequiredError}
7134
- */
7135
- pinAuthentication: (authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7136
7088
  /**
7137
7089
  *
7138
7090
  * @summary Get a new JWT token, maintaining the same access level (posId) as the original token
@@ -7218,15 +7170,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
7218
7170
  * @throws {RequiredError}
7219
7171
  */
7220
7172
  confirmQRCode(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7221
- /**
7222
- *
7223
- * @summary EAN login and hand out token
7224
- * @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
7225
- * @param {*} [options] Override http request option.
7226
- * @deprecated
7227
- * @throws {RequiredError}
7228
- */
7229
- eanAuthentication(authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
7230
7173
  /**
7231
7174
  *
7232
7175
  * @summary Generate a QR code for authentication
@@ -7296,15 +7239,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
7296
7239
  * @throws {RequiredError}
7297
7240
  */
7298
7241
  localAuthentication(authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
7299
- /**
7300
- *
7301
- * @summary PIN login for members using memberId.
7302
- * @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
7303
- * @param {*} [options] Override http request option.
7304
- * @deprecated
7305
- * @throws {RequiredError}
7306
- */
7307
- memberPinAuthentication(memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
7308
7242
  /**
7309
7243
  *
7310
7244
  * @summary Mock login and hand out token.
@@ -7313,24 +7247,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
7313
7247
  * @throws {RequiredError}
7314
7248
  */
7315
7249
  mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
7316
- /**
7317
- *
7318
- * @summary NFC login and hand out token
7319
- * @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
7320
- * @param {*} [options] Override http request option.
7321
- * @deprecated
7322
- * @throws {RequiredError}
7323
- */
7324
- nfcAuthentication(authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
7325
- /**
7326
- *
7327
- * @summary PIN login and hand out token
7328
- * @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
7329
- * @param {*} [options] Override http request option.
7330
- * @deprecated
7331
- * @throws {RequiredError}
7332
- */
7333
- pinAuthentication(authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
7334
7250
  /**
7335
7251
  *
7336
7252
  * @summary Get a new JWT token, maintaining the same access level (posId) as the original token
@@ -7416,15 +7332,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
7416
7332
  * @throws {RequiredError}
7417
7333
  */
7418
7334
  confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7419
- /**
7420
- *
7421
- * @summary EAN login and hand out token
7422
- * @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
7423
- * @param {*} [options] Override http request option.
7424
- * @deprecated
7425
- * @throws {RequiredError}
7426
- */
7427
- eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
7428
7335
  /**
7429
7336
  *
7430
7337
  * @summary Generate a QR code for authentication
@@ -7494,15 +7401,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
7494
7401
  * @throws {RequiredError}
7495
7402
  */
7496
7403
  localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
7497
- /**
7498
- *
7499
- * @summary PIN login for members using memberId.
7500
- * @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
7501
- * @param {*} [options] Override http request option.
7502
- * @deprecated
7503
- * @throws {RequiredError}
7504
- */
7505
- memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
7506
7404
  /**
7507
7405
  *
7508
7406
  * @summary Mock login and hand out token.
@@ -7511,24 +7409,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
7511
7409
  * @throws {RequiredError}
7512
7410
  */
7513
7411
  mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
7514
- /**
7515
- *
7516
- * @summary NFC login and hand out token
7517
- * @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
7518
- * @param {*} [options] Override http request option.
7519
- * @deprecated
7520
- * @throws {RequiredError}
7521
- */
7522
- nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
7523
- /**
7524
- *
7525
- * @summary PIN login and hand out token
7526
- * @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
7527
- * @param {*} [options] Override http request option.
7528
- * @deprecated
7529
- * @throws {RequiredError}
7530
- */
7531
- pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
7532
7412
  /**
7533
7413
  *
7534
7414
  * @summary Get a new JWT token, maintaining the same access level (posId) as the original token
@@ -7624,19 +7504,6 @@ export interface AuthenticateApiConfirmQRCodeRequest {
7624
7504
  */
7625
7505
  readonly sessionId: string;
7626
7506
  }
7627
- /**
7628
- * Request parameters for eanAuthentication operation in AuthenticateApi.
7629
- * @export
7630
- * @interface AuthenticateApiEanAuthenticationRequest
7631
- */
7632
- export interface AuthenticateApiEanAuthenticationRequest {
7633
- /**
7634
- * The EAN login.
7635
- * @type {AuthenticationEanRequest}
7636
- * @memberof AuthenticateApiEanAuthentication
7637
- */
7638
- readonly authenticationEanRequest: AuthenticationEanRequest;
7639
- }
7640
7507
  /**
7641
7508
  * Request parameters for getQRStatus operation in AuthenticateApi.
7642
7509
  * @export
@@ -7715,19 +7582,6 @@ export interface AuthenticateApiLocalAuthenticationRequest {
7715
7582
  */
7716
7583
  readonly authenticationLocalRequest: AuthenticationLocalRequest;
7717
7584
  }
7718
- /**
7719
- * Request parameters for memberPinAuthentication operation in AuthenticateApi.
7720
- * @export
7721
- * @interface AuthenticateApiMemberPinAuthenticationRequest
7722
- */
7723
- export interface AuthenticateApiMemberPinAuthenticationRequest {
7724
- /**
7725
- * The PIN login.
7726
- * @type {MemberAuthenticationPinRequest}
7727
- * @memberof AuthenticateApiMemberPinAuthentication
7728
- */
7729
- readonly memberAuthenticationPinRequest: MemberAuthenticationPinRequest;
7730
- }
7731
7585
  /**
7732
7586
  * Request parameters for mockAuthentication operation in AuthenticateApi.
7733
7587
  * @export
@@ -7741,32 +7595,6 @@ export interface AuthenticateApiMockAuthenticationRequest {
7741
7595
  */
7742
7596
  readonly authenticationMockRequest: AuthenticationMockRequest;
7743
7597
  }
7744
- /**
7745
- * Request parameters for nfcAuthentication operation in AuthenticateApi.
7746
- * @export
7747
- * @interface AuthenticateApiNfcAuthenticationRequest
7748
- */
7749
- export interface AuthenticateApiNfcAuthenticationRequest {
7750
- /**
7751
- * The NFC login.
7752
- * @type {AuthenticationNfcRequest}
7753
- * @memberof AuthenticateApiNfcAuthentication
7754
- */
7755
- readonly authenticationNfcRequest: AuthenticationNfcRequest;
7756
- }
7757
- /**
7758
- * Request parameters for pinAuthentication operation in AuthenticateApi.
7759
- * @export
7760
- * @interface AuthenticateApiPinAuthenticationRequest
7761
- */
7762
- export interface AuthenticateApiPinAuthenticationRequest {
7763
- /**
7764
- * The PIN login.
7765
- * @type {AuthenticationPinRequest}
7766
- * @memberof AuthenticateApiPinAuthentication
7767
- */
7768
- readonly authenticationPinRequest: AuthenticationPinRequest;
7769
- }
7770
7598
  /**
7771
7599
  * Request parameters for resetLocal operation in AuthenticateApi.
7772
7600
  * @export
@@ -7879,16 +7707,6 @@ export declare class AuthenticateApi extends BaseAPI {
7879
7707
  * @memberof AuthenticateApi
7880
7708
  */
7881
7709
  confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
7882
- /**
7883
- *
7884
- * @summary EAN login and hand out token
7885
- * @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
7886
- * @param {*} [options] Override http request option.
7887
- * @deprecated
7888
- * @throws {RequiredError}
7889
- * @memberof AuthenticateApi
7890
- */
7891
- eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
7892
7710
  /**
7893
7711
  *
7894
7712
  * @summary Generate a QR code for authentication
@@ -7967,16 +7785,6 @@ export declare class AuthenticateApi extends BaseAPI {
7967
7785
  * @memberof AuthenticateApi
7968
7786
  */
7969
7787
  localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
7970
- /**
7971
- *
7972
- * @summary PIN login for members using memberId.
7973
- * @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
7974
- * @param {*} [options] Override http request option.
7975
- * @deprecated
7976
- * @throws {RequiredError}
7977
- * @memberof AuthenticateApi
7978
- */
7979
- memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
7980
7788
  /**
7981
7789
  *
7982
7790
  * @summary Mock login and hand out token.
@@ -7986,26 +7794,6 @@ export declare class AuthenticateApi extends BaseAPI {
7986
7794
  * @memberof AuthenticateApi
7987
7795
  */
7988
7796
  mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
7989
- /**
7990
- *
7991
- * @summary NFC login and hand out token
7992
- * @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
7993
- * @param {*} [options] Override http request option.
7994
- * @deprecated
7995
- * @throws {RequiredError}
7996
- * @memberof AuthenticateApi
7997
- */
7998
- nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
7999
- /**
8000
- *
8001
- * @summary PIN login and hand out token
8002
- * @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
8003
- * @param {*} [options] Override http request option.
8004
- * @deprecated
8005
- * @throws {RequiredError}
8006
- * @memberof AuthenticateApi
8007
- */
8008
- pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
8009
7797
  /**
8010
7798
  *
8011
7799
  * @summary Get a new JWT token, maintaining the same access level (posId) as the original token
@@ -8092,7 +7880,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
8092
7880
  * @param {boolean} [hasFine] Only users with(out) fines
8093
7881
  * @param {number} [minFine] Minimum fine
8094
7882
  * @param {number} [maxFine] Maximum fine
8095
- * @param {GetAllBalanceUserTypesEnum} [userTypes] Filter based on user type.
7883
+ * @param {Array<UserType>} [userTypes] Filter based on user type.
8096
7884
  * @param {string} [orderBy] Column to order balance by - eg: id,amount
8097
7885
  * @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
8098
7886
  * @param {boolean} [allowDeleted] Whether to include deleted users
@@ -8102,7 +7890,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
8102
7890
  * @param {*} [options] Override http request option.
8103
7891
  * @throws {RequiredError}
8104
7892
  */
8105
- getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?: GetAllBalanceUserTypesEnum, orderBy?: string, orderDirection?: GetAllBalanceOrderDirectionEnum, allowDeleted?: boolean, inactive?: boolean, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
8106
7894
  /**
8107
7895
  *
8108
7896
  * @summary Retrieves the requested balance
@@ -8142,7 +7930,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
8142
7930
  * @param {boolean} [hasFine] Only users with(out) fines
8143
7931
  * @param {number} [minFine] Minimum fine
8144
7932
  * @param {number} [maxFine] Maximum fine
8145
- * @param {GetAllBalanceUserTypesEnum} [userTypes] Filter based on user type.
7933
+ * @param {Array<UserType>} [userTypes] Filter based on user type.
8146
7934
  * @param {string} [orderBy] Column to order balance by - eg: id,amount
8147
7935
  * @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
8148
7936
  * @param {boolean} [allowDeleted] Whether to include deleted users
@@ -8152,7 +7940,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
8152
7940
  * @param {*} [options] Override http request option.
8153
7941
  * @throws {RequiredError}
8154
7942
  */
8155
- getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?: GetAllBalanceUserTypesEnum, orderBy?: string, orderDirection?: GetAllBalanceOrderDirectionEnum, allowDeleted?: boolean, inactive?: boolean, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedBalanceResponse>>;
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>>;
8156
7944
  /**
8157
7945
  *
8158
7946
  * @summary Retrieves the requested balance
@@ -8269,10 +8057,10 @@ export interface BalanceApiGetAllBalanceRequest {
8269
8057
  readonly maxFine?: number;
8270
8058
  /**
8271
8059
  * Filter based on user type.
8272
- * @type {Array<GetAllBalanceUserTypesParameterInner>}
8060
+ * @type {Array<UserType>}
8273
8061
  * @memberof BalanceApiGetAllBalance
8274
8062
  */
8275
- readonly userTypes?: GetAllBalanceUserTypesEnum;
8063
+ readonly userTypes?: Array<UserType>;
8276
8064
  /**
8277
8065
  * Column to order balance by - eg: id,amount
8278
8066
  * @type {string}
@@ -8366,11 +8154,6 @@ export declare class BalanceApi extends BaseAPI {
8366
8154
  */
8367
8155
  getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
8368
8156
  }
8369
- /**
8370
- * @export
8371
- */
8372
- export declare const GetAllBalanceUserTypesEnum: {};
8373
- export type GetAllBalanceUserTypesEnum = typeof GetAllBalanceUserTypesEnum[keyof typeof GetAllBalanceUserTypesEnum];
8374
8157
  /**
8375
8158
  * @export
8376
8159
  */
@@ -10791,7 +10574,7 @@ export declare const InactiveAdministrativeCostsApiFp: (configuration?: Configur
10791
10574
  * @param {*} [options] Override http request option.
10792
10575
  * @throws {RequiredError}
10793
10576
  */
10794
- handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10577
+ handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InactiveAdministrativeCostResponse>>>;
10795
10578
  /**
10796
10579
  *
10797
10580
  * @summary Notify all users which will pay administrative costs within a year
@@ -10869,7 +10652,7 @@ export declare const InactiveAdministrativeCostsApiFactory: (configuration?: Con
10869
10652
  * @param {*} [options] Override http request option.
10870
10653
  * @throws {RequiredError}
10871
10654
  */
10872
- handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10655
+ handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<InactiveAdministrativeCostResponse>>;
10873
10656
  /**
10874
10657
  *
10875
10658
  * @summary Notify all users which will pay administrative costs within a year
@@ -11092,7 +10875,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
11092
10875
  * @throws {RequiredError}
11093
10876
  * @memberof InactiveAdministrativeCostsApi
11094
10877
  */
11095
- handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10878
+ handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
11096
10879
  /**
11097
10880
  *
11098
10881
  * @summary Notify all users which will pay administrative costs within a year
@@ -11137,7 +10920,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
11137
10920
  * @summary Returns all invoices in the system.
11138
10921
  * @param {number} [toId] Filter on Id of the debtor
11139
10922
  * @param {number} [invoiceId] Filter on invoice ID
11140
- * @param {GetAllInvoicesCurrentStateEnum} [currentState] Filter based on Invoice State.
10923
+ * @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
11141
10924
  * @param {boolean} [returnEntries] Boolean if invoice entries should be returned
11142
10925
  * @param {string} [fromDate] Start date for selected invoices (inclusive)
11143
10926
  * @param {string} [tillDate] End date for selected invoices (exclusive)
@@ -11147,7 +10930,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
11147
10930
  * @param {*} [options] Override http request option.
11148
10931
  * @throws {RequiredError}
11149
10932
  */
11150
- getAllInvoices: (toId?: number, invoiceId?: number, currentState?: GetAllInvoicesCurrentStateEnum, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
11151
10934
  /**
11152
10935
  *
11153
10936
  * @summary Get eligible transactions for invoice creation.
@@ -11244,7 +11027,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
11244
11027
  * @summary Returns all invoices in the system.
11245
11028
  * @param {number} [toId] Filter on Id of the debtor
11246
11029
  * @param {number} [invoiceId] Filter on invoice ID
11247
- * @param {GetAllInvoicesCurrentStateEnum} [currentState] Filter based on Invoice State.
11030
+ * @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
11248
11031
  * @param {boolean} [returnEntries] Boolean if invoice entries should be returned
11249
11032
  * @param {string} [fromDate] Start date for selected invoices (inclusive)
11250
11033
  * @param {string} [tillDate] End date for selected invoices (exclusive)
@@ -11254,7 +11037,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
11254
11037
  * @param {*} [options] Override http request option.
11255
11038
  * @throws {RequiredError}
11256
11039
  */
11257
- getAllInvoices(toId?: number, invoiceId?: number, currentState?: GetAllInvoicesCurrentStateEnum, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInvoiceResponse>>;
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>>;
11258
11041
  /**
11259
11042
  *
11260
11043
  * @summary Get eligible transactions for invoice creation.
@@ -11264,7 +11047,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
11264
11047
  * @param {*} [options] Override http request option.
11265
11048
  * @throws {RequiredError}
11266
11049
  */
11267
- 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>>>;
11268
11051
  /**
11269
11052
  *
11270
11053
  * @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
@@ -11280,7 +11063,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
11280
11063
  * @param {*} [options] Override http request option.
11281
11064
  * @throws {RequiredError}
11282
11065
  */
11283
- getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
11066
+ getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PdfUrlResponse>>;
11284
11067
  /**
11285
11068
  *
11286
11069
  * @summary Returns a single invoice in the system.
@@ -11361,7 +11144,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
11361
11144
  * @param {*} [options] Override http request option.
11362
11145
  * @throws {RequiredError}
11363
11146
  */
11364
- getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse>;
11147
+ getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<TransactionResponse>>;
11365
11148
  /**
11366
11149
  *
11367
11150
  * @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
@@ -11376,7 +11159,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
11376
11159
  * @param {*} [options] Override http request option.
11377
11160
  * @throws {RequiredError}
11378
11161
  */
11379
- getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
11162
+ getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<PdfUrlResponse>;
11380
11163
  /**
11381
11164
  *
11382
11165
  * @summary Returns a single invoice in the system.
@@ -11469,10 +11252,10 @@ export interface InvoicesApiGetAllInvoicesRequest {
11469
11252
  readonly invoiceId?: number;
11470
11253
  /**
11471
11254
  * Filter based on Invoice State.
11472
- * @type {Array<GetAllBalanceUserTypesParameterInner>}
11255
+ * @type {Array<GetAllInvoicesCurrentStateParameterInner>}
11473
11256
  * @memberof InvoicesApiGetAllInvoices
11474
11257
  */
11475
- readonly currentState?: GetAllInvoicesCurrentStateEnum;
11258
+ readonly currentState?: Array<GetAllInvoicesCurrentStateParameterInner>;
11476
11259
  /**
11477
11260
  * Boolean if invoice entries should be returned
11478
11261
  * @type {boolean}
@@ -11675,7 +11458,7 @@ export declare class InvoicesApi extends BaseAPI {
11675
11458
  * @throws {RequiredError}
11676
11459
  * @memberof InvoicesApi
11677
11460
  */
11678
- getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
11461
+ getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse[], any, {}>>;
11679
11462
  /**
11680
11463
  *
11681
11464
  * @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
@@ -11692,7 +11475,7 @@ export declare class InvoicesApi extends BaseAPI {
11692
11475
  * @throws {RequiredError}
11693
11476
  * @memberof InvoicesApi
11694
11477
  */
11695
- getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
11478
+ getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
11696
11479
  /**
11697
11480
  *
11698
11481
  * @summary Returns a single invoice in the system.
@@ -11730,11 +11513,6 @@ export declare class InvoicesApi extends BaseAPI {
11730
11513
  */
11731
11514
  updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}>>;
11732
11515
  }
11733
- /**
11734
- * @export
11735
- */
11736
- export declare const GetAllInvoicesCurrentStateEnum: {};
11737
- export type GetAllInvoicesCurrentStateEnum = typeof GetAllInvoicesCurrentStateEnum[keyof typeof GetAllInvoicesCurrentStateEnum];
11738
11516
  /**
11739
11517
  * PayoutRequestsApi - axios parameter creator
11740
11518
  * @export
@@ -14289,11 +14067,11 @@ export declare const SyncApiAxiosParamCreator: (configuration?: Configuration) =
14289
14067
  /**
14290
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.
14291
14069
  * @summary Get dry-run sync results for users
14292
- * @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.
14293
14071
  * @param {*} [options] Override http request option.
14294
14072
  * @throws {RequiredError}
14295
14073
  */
14296
- getUserSyncResults: (service?: GetUserSyncResultsServiceEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14074
+ getUserSyncResults: (service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14297
14075
  };
14298
14076
  /**
14299
14077
  * SyncApi - functional programming interface
@@ -14303,11 +14081,11 @@ export declare const SyncApiFp: (configuration?: Configuration) => {
14303
14081
  /**
14304
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.
14305
14083
  * @summary Get dry-run sync results for users
14306
- * @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.
14307
14085
  * @param {*} [options] Override http request option.
14308
14086
  * @throws {RequiredError}
14309
14087
  */
14310
- getUserSyncResults(service?: GetUserSyncResultsServiceEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
14088
+ getUserSyncResults(service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
14311
14089
  };
14312
14090
  /**
14313
14091
  * SyncApi - factory interface
@@ -14331,10 +14109,10 @@ export declare const SyncApiFactory: (configuration?: Configuration, basePath?:
14331
14109
  export interface SyncApiGetUserSyncResultsRequest {
14332
14110
  /**
14333
14111
  * Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
14334
- * @type {Array<string>}
14112
+ * @type {Array<'LDAP' | 'GEWISDB'>}
14335
14113
  * @memberof SyncApiGetUserSyncResults
14336
14114
  */
14337
- readonly service?: GetUserSyncResultsServiceEnum;
14115
+ readonly service?: Array<GetUserSyncResultsServiceEnum>;
14338
14116
  }
14339
14117
  /**
14340
14118
  * SyncApi - object-oriented interface
@@ -14356,7 +14134,10 @@ export declare class SyncApi extends BaseAPI {
14356
14134
  /**
14357
14135
  * @export
14358
14136
  */
14359
- export declare const GetUserSyncResultsServiceEnum: {};
14137
+ export declare const GetUserSyncResultsServiceEnum: {
14138
+ readonly Ldap: "LDAP";
14139
+ readonly Gewisdb: "GEWISDB";
14140
+ };
14360
14141
  export type GetUserSyncResultsServiceEnum = typeof GetUserSyncResultsServiceEnum[keyof typeof GetUserSyncResultsServiceEnum];
14361
14142
  /**
14362
14143
  * TermsOfServiceApi - axios parameter creator
@@ -15106,12 +14887,15 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
15106
14887
  * @summary Returns all existing transfers
15107
14888
  * @param {string} [fromDate] Start date for selected transfers (inclusive)
15108
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
15109
14893
  * @param {number} [take] How many transfers the endpoint should return
15110
14894
  * @param {number} [skip] How many transfers should be skipped (for pagination)
15111
14895
  * @param {*} [options] Override http request option.
15112
14896
  * @throws {RequiredError}
15113
14897
  */
15114
- 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>;
15115
14899
  /**
15116
14900
  *
15117
14901
  * @summary Returns the requested transfer
@@ -15178,12 +14962,15 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
15178
14962
  * @summary Returns all existing transfers
15179
14963
  * @param {string} [fromDate] Start date for selected transfers (inclusive)
15180
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
15181
14968
  * @param {number} [take] How many transfers the endpoint should return
15182
14969
  * @param {number} [skip] How many transfers should be skipped (for pagination)
15183
14970
  * @param {*} [options] Override http request option.
15184
14971
  * @throws {RequiredError}
15185
14972
  */
15186
- getAllTransfers(fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransferResponse>>>;
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>>;
15187
14974
  /**
15188
14975
  *
15189
14976
  * @summary Returns the requested transfer
@@ -15252,7 +15039,7 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
15252
15039
  * @param {*} [options] Override http request option.
15253
15040
  * @throws {RequiredError}
15254
15041
  */
15255
- getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<TransferResponse>>;
15042
+ getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedTransferResponse>;
15256
15043
  /**
15257
15044
  *
15258
15045
  * @summary Returns the requested transfer
@@ -15330,6 +15117,24 @@ export interface TransfersApiGetAllTransfersRequest {
15330
15117
  * @memberof TransfersApiGetAllTransfers
15331
15118
  */
15332
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;
15333
15138
  /**
15334
15139
  * How many transfers the endpoint should return
15335
15140
  * @type {number}
@@ -15470,7 +15275,7 @@ export declare class TransfersApi extends BaseAPI {
15470
15275
  * @throws {RequiredError}
15471
15276
  * @memberof TransfersApi
15472
15277
  */
15473
- getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse[], any, {}>>;
15278
+ getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}>>;
15474
15279
  /**
15475
15280
  *
15476
15281
  * @summary Returns the requested transfer