@gewis/sudosos-client 0.0.0-develop.eaad44e → 0.0.0-develop.f2b7926

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
@@ -1659,7 +1659,7 @@ export interface ContainerWithProductsResponse {
1659
1659
  'products': Array<ProductResponse>;
1660
1660
  }
1661
1661
  /**
1662
- *
1662
+ * API Request for creating a `container` entity.
1663
1663
  * @export
1664
1664
  * @interface CreateContainerRequest
1665
1665
  */
@@ -1856,7 +1856,7 @@ export interface CreatePermissionParams {
1856
1856
  'attributes': Array<string>;
1857
1857
  }
1858
1858
  /**
1859
- *
1859
+ * API Request for creating a `point of sale` entity.
1860
1860
  * @export
1861
1861
  * @interface CreatePointOfSaleRequest
1862
1862
  */
@@ -1880,7 +1880,7 @@ export interface CreatePointOfSaleRequest {
1880
1880
  */
1881
1881
  'containers': Array<number>;
1882
1882
  /**
1883
- * ID of the user who will own the POS, if undefined it will default to the token ID.
1883
+ * ID of the user who will own the POS.
1884
1884
  * @type {number}
1885
1885
  * @memberof CreatePointOfSaleRequest
1886
1886
  */
@@ -1893,7 +1893,7 @@ export interface CreatePointOfSaleRequest {
1893
1893
  'cashierRoleIds'?: Array<number>;
1894
1894
  }
1895
1895
  /**
1896
- *
1896
+ * API Request for creating a `product` entity.
1897
1897
  * @export
1898
1898
  * @interface CreateProductRequest
1899
1899
  */
@@ -3219,13 +3219,13 @@ export interface PaginatedBalanceResponse {
3219
3219
  * @type {PaginationResult}
3220
3220
  * @memberof PaginatedBalanceResponse
3221
3221
  */
3222
- '_pagination'?: PaginationResult;
3222
+ '_pagination': PaginationResult;
3223
3223
  /**
3224
3224
  * Returned balance responses
3225
3225
  * @type {Array<BalanceResponse>}
3226
3226
  * @memberof PaginatedBalanceResponse
3227
3227
  */
3228
- 'records'?: Array<BalanceResponse>;
3228
+ 'records': Array<BalanceResponse>;
3229
3229
  }
3230
3230
  /**
3231
3231
  * Paginated API Response for the `banner` entity.
@@ -3238,13 +3238,13 @@ export interface PaginatedBannerResponse {
3238
3238
  * @type {PaginationResult}
3239
3239
  * @memberof PaginatedBannerResponse
3240
3240
  */
3241
- '_pagination'?: PaginationResult;
3241
+ '_pagination': PaginationResult;
3242
3242
  /**
3243
3243
  * Returned banners
3244
3244
  * @type {Array<BannerResponse>}
3245
3245
  * @memberof PaginatedBannerResponse
3246
3246
  */
3247
- 'records'?: Array<BannerResponse>;
3247
+ 'records': Array<BannerResponse>;
3248
3248
  }
3249
3249
  /**
3250
3250
  *
@@ -3304,7 +3304,7 @@ export interface PaginatedBaseTransactionResponse {
3304
3304
  'records': Array<BaseTransactionResponse>;
3305
3305
  }
3306
3306
  /**
3307
- *
3307
+ * Paginated API Response for the `container` entity.
3308
3308
  * @export
3309
3309
  * @interface PaginatedContainerResponse
3310
3310
  */
@@ -3323,7 +3323,7 @@ export interface PaginatedContainerResponse {
3323
3323
  'records': Array<ContainerResponse>;
3324
3324
  }
3325
3325
  /**
3326
- *
3326
+ * Paginated API Response for the `container` entity, with each container\'s products inlined.
3327
3327
  * @export
3328
3328
  * @interface PaginatedContainerWithProductResponse
3329
3329
  */
@@ -3409,13 +3409,13 @@ export interface PaginatedInactiveAdministrativeCostResponse {
3409
3409
  * @type {PaginationResult}
3410
3410
  * @memberof PaginatedInactiveAdministrativeCostResponse
3411
3411
  */
3412
- '_pagination'?: PaginationResult;
3412
+ '_pagination': PaginationResult;
3413
3413
  /**
3414
3414
  * Returned InactiveAdministrativeCost
3415
3415
  * @type {Array<InactiveAdministrativeCostResponse>}
3416
3416
  * @memberof PaginatedInactiveAdministrativeCostResponse
3417
3417
  */
3418
- 'records'?: Array<InactiveAdministrativeCostResponse>;
3418
+ 'records': Array<InactiveAdministrativeCostResponse>;
3419
3419
  }
3420
3420
  /**
3421
3421
  *
@@ -3437,7 +3437,7 @@ export interface PaginatedInvoiceResponse {
3437
3437
  'records': Array<InvoiceResponseTypes>;
3438
3438
  }
3439
3439
  /**
3440
- *
3440
+ * Paginated API Response for the `point of sale` entity.
3441
3441
  * @export
3442
3442
  * @interface PaginatedPointOfSaleResponse
3443
3443
  */
@@ -3456,7 +3456,7 @@ export interface PaginatedPointOfSaleResponse {
3456
3456
  'records': Array<PointOfSaleResponse>;
3457
3457
  }
3458
3458
  /**
3459
- *
3459
+ * Paginated API Response for the `product category` entity.
3460
3460
  * @export
3461
3461
  * @interface PaginatedProductCategoryResponse
3462
3462
  */
@@ -3475,7 +3475,7 @@ export interface PaginatedProductCategoryResponse {
3475
3475
  'records': Array<ProductCategoryResponse>;
3476
3476
  }
3477
3477
  /**
3478
- *
3478
+ * Paginated API Response for the `product` entity.
3479
3479
  * @export
3480
3480
  * @interface PaginatedProductResponse
3481
3481
  */
@@ -3570,7 +3570,7 @@ export interface PaginatedUserResponse {
3570
3570
  'records': Array<UserResponse>;
3571
3571
  }
3572
3572
  /**
3573
- *
3573
+ * Paginated API Response for the `vat group` entity.
3574
3574
  * @export
3575
3575
  * @interface PaginatedVatGroupResponse
3576
3576
  */
@@ -3902,7 +3902,7 @@ export interface PermissionResponse {
3902
3902
  'actions': Array<ActionResponse>;
3903
3903
  }
3904
3904
  /**
3905
- *
3905
+ * 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).
3906
3906
  * @export
3907
3907
  * @interface PointOfSaleAssociateUsersResponse
3908
3908
  */
@@ -4055,7 +4055,7 @@ export interface PointOfSaleWithContainersResponse {
4055
4055
  'containers': Array<ContainerWithProductsResponse>;
4056
4056
  }
4057
4057
  /**
4058
- *
4058
+ * API Request for creating or updating a `product category` entity.
4059
4059
  * @export
4060
4060
  * @interface ProductCategoryRequest
4061
4061
  */
@@ -5120,23 +5120,23 @@ export interface TotalBalanceResponse {
5120
5120
  */
5121
5121
  'date': string;
5122
5122
  /**
5123
- * The total amount of positive balance in SudoSOS
5124
- * @type {number}
5123
+ *
5124
+ * @type {DineroObjectResponse}
5125
5125
  * @memberof TotalBalanceResponse
5126
5126
  */
5127
- 'totalPositive': number;
5127
+ 'totalPositive': DineroObjectResponse;
5128
5128
  /**
5129
- * The total amount of negative balance in SudoSOS
5130
- * @type {number}
5129
+ *
5130
+ * @type {DineroObjectResponse}
5131
5131
  * @memberof TotalBalanceResponse
5132
5132
  */
5133
- 'totalNegative': number;
5133
+ 'totalNegative': DineroObjectResponse;
5134
5134
  /**
5135
- *
5136
- * @type {UserTypeTotalBalanceResponse}
5135
+ * The total balances for the different user types
5136
+ * @type {Array<UserTypeTotalBalanceResponse>}
5137
5137
  * @memberof TotalBalanceResponse
5138
5138
  */
5139
- 'userTypeBalances': UserTypeTotalBalanceResponse;
5139
+ 'userTypeBalances': Array<UserTypeTotalBalanceResponse>;
5140
5140
  }
5141
5141
  /**
5142
5142
  *
@@ -5721,7 +5721,7 @@ export interface TransferSummaryResponse {
5721
5721
  'manualDeletions': TransferAggregateResponse;
5722
5722
  }
5723
5723
  /**
5724
- *
5724
+ * API Request for updating a `container` entity.
5725
5725
  * @export
5726
5726
  * @interface UpdateContainerRequest
5727
5727
  */
@@ -5971,7 +5971,7 @@ export interface UpdatePinRequest {
5971
5971
  'pin': string;
5972
5972
  }
5973
5973
  /**
5974
- *
5974
+ * API Request for updating a `point of sale` entity.
5975
5975
  * @export
5976
5976
  * @interface UpdatePointOfSaleRequest
5977
5977
  */
@@ -6008,7 +6008,7 @@ export interface UpdatePointOfSaleRequest {
6008
6008
  'cashierRoleIds'?: Array<number>;
6009
6009
  }
6010
6010
  /**
6011
- *
6011
+ * API Request for updating a `product` entity.
6012
6012
  * @export
6013
6013
  * @interface UpdateProductRequest
6014
6014
  */
@@ -6175,7 +6175,7 @@ export interface UpdateUserRequest {
6175
6175
  'inactiveNotificationSend'?: boolean;
6176
6176
  }
6177
6177
  /**
6178
- *
6178
+ * API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
6179
6179
  * @export
6180
6180
  * @interface UpdateVatGroupRequest
6181
6181
  */
@@ -6537,7 +6537,7 @@ export interface UserTypeTotalBalanceResponse {
6537
6537
  'totalNegative': DineroObjectResponse;
6538
6538
  }
6539
6539
  /**
6540
- *
6540
+ * 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.
6541
6541
  * @export
6542
6542
  * @interface UserWithIndex
6543
6543
  */
@@ -6569,7 +6569,7 @@ export interface ValidationResponse {
6569
6569
  'errors': Array<string>;
6570
6570
  }
6571
6571
  /**
6572
- *
6572
+ * API Response for a complete VAT declaration — one result table for a given year and period, containing one {@link VatDeclarationRow} per VAT group.
6573
6573
  * @export
6574
6574
  * @interface VatDeclarationResponse
6575
6575
  */
@@ -6594,7 +6594,7 @@ export interface VatDeclarationResponse {
6594
6594
  'rows': Array<VatDeclarationRow>;
6595
6595
  }
6596
6596
  /**
6597
- *
6597
+ * One row of a VAT declaration — the VAT collected for a single group, broken down by period.
6598
6598
  * @export
6599
6599
  * @interface VatDeclarationRow
6600
6600
  */
@@ -10826,7 +10826,7 @@ export declare const InactiveAdministrativeCostsApiFp: (configuration?: Configur
10826
10826
  * @param {*} [options] Override http request option.
10827
10827
  * @throws {RequiredError}
10828
10828
  */
10829
- handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10829
+ handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InactiveAdministrativeCostResponse>>>;
10830
10830
  /**
10831
10831
  *
10832
10832
  * @summary Notify all users which will pay administrative costs within a year
@@ -10904,7 +10904,7 @@ export declare const InactiveAdministrativeCostsApiFactory: (configuration?: Con
10904
10904
  * @param {*} [options] Override http request option.
10905
10905
  * @throws {RequiredError}
10906
10906
  */
10907
- handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10907
+ handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<InactiveAdministrativeCostResponse>>;
10908
10908
  /**
10909
10909
  *
10910
10910
  * @summary Notify all users which will pay administrative costs within a year
@@ -11127,7 +11127,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
11127
11127
  * @throws {RequiredError}
11128
11128
  * @memberof InactiveAdministrativeCostsApi
11129
11129
  */
11130
- handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
11130
+ handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
11131
11131
  /**
11132
11132
  *
11133
11133
  * @summary Notify all users which will pay administrative costs within a year
@@ -11315,7 +11315,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
11315
11315
  * @param {*} [options] Override http request option.
11316
11316
  * @throws {RequiredError}
11317
11317
  */
11318
- getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
11318
+ getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PdfUrlResponse>>;
11319
11319
  /**
11320
11320
  *
11321
11321
  * @summary Returns a single invoice in the system.
@@ -11411,7 +11411,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
11411
11411
  * @param {*} [options] Override http request option.
11412
11412
  * @throws {RequiredError}
11413
11413
  */
11414
- getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
11414
+ getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<PdfUrlResponse>;
11415
11415
  /**
11416
11416
  *
11417
11417
  * @summary Returns a single invoice in the system.
@@ -11727,7 +11727,7 @@ export declare class InvoicesApi extends BaseAPI {
11727
11727
  * @throws {RequiredError}
11728
11728
  * @memberof InvoicesApi
11729
11729
  */
11730
- getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
11730
+ getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
11731
11731
  /**
11732
11732
  *
11733
11733
  * @summary Returns a single invoice in the system.
@@ -15139,12 +15139,15 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
15139
15139
  * @summary Returns all existing transfers
15140
15140
  * @param {string} [fromDate] Start date for selected transfers (inclusive)
15141
15141
  * @param {string} [tillDate] End date for selected transfers (exclusive)
15142
+ * @param {number} [fromId] Filter transfers from this user ID
15143
+ * @param {number} [toId] Filter transfers to this user ID
15144
+ * @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
15142
15145
  * @param {number} [take] How many transfers the endpoint should return
15143
15146
  * @param {number} [skip] How many transfers should be skipped (for pagination)
15144
15147
  * @param {*} [options] Override http request option.
15145
15148
  * @throws {RequiredError}
15146
15149
  */
15147
- getAllTransfers: (fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15150
+ getAllTransfers: (fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15148
15151
  /**
15149
15152
  *
15150
15153
  * @summary Returns the requested transfer
@@ -15211,12 +15214,15 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
15211
15214
  * @summary Returns all existing transfers
15212
15215
  * @param {string} [fromDate] Start date for selected transfers (inclusive)
15213
15216
  * @param {string} [tillDate] End date for selected transfers (exclusive)
15217
+ * @param {number} [fromId] Filter transfers from this user ID
15218
+ * @param {number} [toId] Filter transfers to this user ID
15219
+ * @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
15214
15220
  * @param {number} [take] How many transfers the endpoint should return
15215
15221
  * @param {number} [skip] How many transfers should be skipped (for pagination)
15216
15222
  * @param {*} [options] Override http request option.
15217
15223
  * @throws {RequiredError}
15218
15224
  */
15219
- getAllTransfers(fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransferResponse>>>;
15225
+ getAllTransfers(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransferResponse>>>;
15220
15226
  /**
15221
15227
  *
15222
15228
  * @summary Returns the requested transfer
@@ -15363,6 +15369,24 @@ export interface TransfersApiGetAllTransfersRequest {
15363
15369
  * @memberof TransfersApiGetAllTransfers
15364
15370
  */
15365
15371
  readonly tillDate?: string;
15372
+ /**
15373
+ * Filter transfers from this user ID
15374
+ * @type {number}
15375
+ * @memberof TransfersApiGetAllTransfers
15376
+ */
15377
+ readonly fromId?: number;
15378
+ /**
15379
+ * Filter transfers to this user ID
15380
+ * @type {number}
15381
+ * @memberof TransfersApiGetAllTransfers
15382
+ */
15383
+ readonly toId?: number;
15384
+ /**
15385
+ * Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
15386
+ * @type {string}
15387
+ * @memberof TransfersApiGetAllTransfers
15388
+ */
15389
+ readonly category?: string;
15366
15390
  /**
15367
15391
  * How many transfers the endpoint should return
15368
15392
  * @type {number}
package/dist/api.js CHANGED
@@ -11267,12 +11267,15 @@ const TransfersApiAxiosParamCreator = function (configuration) {
11267
11267
  * @summary Returns all existing transfers
11268
11268
  * @param {string} [fromDate] Start date for selected transfers (inclusive)
11269
11269
  * @param {string} [tillDate] End date for selected transfers (exclusive)
11270
+ * @param {number} [fromId] Filter transfers from this user ID
11271
+ * @param {number} [toId] Filter transfers to this user ID
11272
+ * @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
11270
11273
  * @param {number} [take] How many transfers the endpoint should return
11271
11274
  * @param {number} [skip] How many transfers should be skipped (for pagination)
11272
11275
  * @param {*} [options] Override http request option.
11273
11276
  * @throws {RequiredError}
11274
11277
  */
11275
- getAllTransfers: async (fromDate, tillDate, take, skip, options = {}) => {
11278
+ getAllTransfers: async (fromDate, tillDate, fromId, toId, category, take, skip, options = {}) => {
11276
11279
  const localVarPath = `/transfers`;
11277
11280
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
11278
11281
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -11292,6 +11295,15 @@ const TransfersApiAxiosParamCreator = function (configuration) {
11292
11295
  if (tillDate !== undefined) {
11293
11296
  localVarQueryParameter['tillDate'] = tillDate;
11294
11297
  }
11298
+ if (fromId !== undefined) {
11299
+ localVarQueryParameter['fromId'] = fromId;
11300
+ }
11301
+ if (toId !== undefined) {
11302
+ localVarQueryParameter['toId'] = toId;
11303
+ }
11304
+ if (category !== undefined) {
11305
+ localVarQueryParameter['category'] = category;
11306
+ }
11295
11307
  if (take !== undefined) {
11296
11308
  localVarQueryParameter['take'] = take;
11297
11309
  }
@@ -11503,13 +11515,16 @@ const TransfersApiFp = function (configuration) {
11503
11515
  * @summary Returns all existing transfers
11504
11516
  * @param {string} [fromDate] Start date for selected transfers (inclusive)
11505
11517
  * @param {string} [tillDate] End date for selected transfers (exclusive)
11518
+ * @param {number} [fromId] Filter transfers from this user ID
11519
+ * @param {number} [toId] Filter transfers to this user ID
11520
+ * @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
11506
11521
  * @param {number} [take] How many transfers the endpoint should return
11507
11522
  * @param {number} [skip] How many transfers should be skipped (for pagination)
11508
11523
  * @param {*} [options] Override http request option.
11509
11524
  * @throws {RequiredError}
11510
11525
  */
11511
- async getAllTransfers(fromDate, tillDate, take, skip, options) {
11512
- const localVarAxiosArgs = await localVarAxiosParamCreator.getAllTransfers(fromDate, tillDate, take, skip, options);
11526
+ async getAllTransfers(fromDate, tillDate, fromId, toId, category, take, skip, options) {
11527
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAllTransfers(fromDate, tillDate, fromId, toId, category, take, skip, options);
11513
11528
  const index = configuration?.serverIndex ?? 0;
11514
11529
  const operationBasePath = base_1.operationServerMap['TransfersApi.getAllTransfers']?.[index]?.url;
11515
11530
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
@@ -11611,7 +11626,7 @@ const TransfersApiFactory = function (configuration, basePath, axios) {
11611
11626
  * @throws {RequiredError}
11612
11627
  */
11613
11628
  getAllTransfers(requestParameters = {}, options) {
11614
- return localVarFp.getAllTransfers(requestParameters.fromDate, requestParameters.tillDate, requestParameters.take, requestParameters.skip, options).then((request) => request(axios, basePath));
11629
+ return localVarFp.getAllTransfers(requestParameters.fromDate, requestParameters.tillDate, requestParameters.fromId, requestParameters.toId, requestParameters.category, requestParameters.take, requestParameters.skip, options).then((request) => request(axios, basePath));
11615
11630
  },
11616
11631
  /**
11617
11632
  *
@@ -11694,7 +11709,7 @@ class TransfersApi extends base_1.BaseAPI {
11694
11709
  * @memberof TransfersApi
11695
11710
  */
11696
11711
  getAllTransfers(requestParameters = {}, options) {
11697
- return (0, exports.TransfersApiFp)(this.configuration).getAllTransfers(requestParameters.fromDate, requestParameters.tillDate, requestParameters.take, requestParameters.skip, options).then((request) => request(this.axios, this.basePath));
11712
+ return (0, exports.TransfersApiFp)(this.configuration).getAllTransfers(requestParameters.fromDate, requestParameters.tillDate, requestParameters.fromId, requestParameters.toId, requestParameters.category, requestParameters.take, requestParameters.skip, options).then((request) => request(this.axios, this.basePath));
11698
11713
  }
11699
11714
  /**
11700
11715
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gewis/sudosos-client",
3
- "version": "0.0.0-develop.eaad44e",
3
+ "version": "0.0.0-develop.f2b7926",
4
4
  "description": "Auto-generated TypeScript-Axios client for the SudoSOS API",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "main": "dist/index.js",
@@ -16,11 +16,11 @@
16
16
  "clean": "rm -rf src dist"
17
17
  },
18
18
  "dependencies": {
19
- "axios": "^1.6.3"
19
+ "axios": "1.15.2"
20
20
  },
21
21
  "devDependencies": {
22
- "@openapitools/openapi-generator-cli": "^2.7.0",
23
- "typescript": "~5.9.3"
22
+ "@openapitools/openapi-generator-cli": "2.31.1",
23
+ "typescript": "5.9.3"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",