simpleloan_api 1.2.48 → 1.2.50

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/index.d.mts CHANGED
@@ -978,8 +978,11 @@ type ApiResponse<T> = {
978
978
  _detail?: {
979
979
  [param: string]: string[];
980
980
  };
981
- _data_total_size?: number;
982
981
  _data?: T;
982
+ _data_size?: number;
983
+ _data_total_size?: number;
984
+ _page_size?: number;
985
+ _start_index?: number;
983
986
  };
984
987
  type SearchParams<F = Record<string, any>> = {
985
988
  _filter?: F;
@@ -1268,7 +1271,9 @@ type CommissionFeeReviseWipDownloadBody = WithData<{
1268
1271
  /**
1269
1272
  * Request for: /cabinet/commission_fee_revise_wip/update/
1270
1273
  */
1271
- type CommissionFeeReviseWipUpdateBody = WithData<CommissionFeeReviseWipItem>;
1274
+ type CommissionFeeReviseWipUpdateBody = WithData<{
1275
+ id: number;
1276
+ } & Partial<CommissionFeeReviseWipItem>>;
1272
1277
  /**
1273
1278
  * Request item for: /cabinet/commission_fee_revise_wip/update_many/
1274
1279
  */
package/dist/index.d.ts CHANGED
@@ -978,8 +978,11 @@ type ApiResponse<T> = {
978
978
  _detail?: {
979
979
  [param: string]: string[];
980
980
  };
981
- _data_total_size?: number;
982
981
  _data?: T;
982
+ _data_size?: number;
983
+ _data_total_size?: number;
984
+ _page_size?: number;
985
+ _start_index?: number;
983
986
  };
984
987
  type SearchParams<F = Record<string, any>> = {
985
988
  _filter?: F;
@@ -1268,7 +1271,9 @@ type CommissionFeeReviseWipDownloadBody = WithData<{
1268
1271
  /**
1269
1272
  * Request for: /cabinet/commission_fee_revise_wip/update/
1270
1273
  */
1271
- type CommissionFeeReviseWipUpdateBody = WithData<CommissionFeeReviseWipItem>;
1274
+ type CommissionFeeReviseWipUpdateBody = WithData<{
1275
+ id: number;
1276
+ } & Partial<CommissionFeeReviseWipItem>>;
1272
1277
  /**
1273
1278
  * Request item for: /cabinet/commission_fee_revise_wip/update_many/
1274
1279
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.2.48",
3
+ "version": "1.2.50",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",