simpleloan_api 1.2.47 → 1.2.48

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
@@ -1254,23 +1254,21 @@ type CommissionFeeReviseWipItem = {
1254
1254
  salespoint_group_title: string | null;
1255
1255
  user_id: number;
1256
1256
  };
1257
- type CommissionFeeReviseWipGenerateBody = {
1258
- _data: {
1259
- start_at: string;
1260
- end_at: string;
1261
- type: 'ipoteka';
1262
- };
1263
- };
1257
+ type CommissionFeeReviseWipGenerateBody = WithData<{
1258
+ start_at: string;
1259
+ end_at: string;
1260
+ type: 'ipoteka';
1261
+ }>;
1264
1262
  /**
1265
1263
  * Request for: /cabinet/commission_fee_revise_wip/download/ */
1266
- type CommissionFeeReviseWipDownloadBody = {
1264
+ type CommissionFeeReviseWipDownloadBody = WithData<{
1267
1265
  bankdetail_id: number;
1268
1266
  item_ids: number[];
1269
- };
1267
+ }>;
1270
1268
  /**
1271
- * Response for: /cabinet/commission_fee_revise_wip/update/
1269
+ * Request for: /cabinet/commission_fee_revise_wip/update/
1272
1270
  */
1273
- type CommissionFeeReviseWipUpdateBody = CommissionFeeReviseWipItem;
1271
+ type CommissionFeeReviseWipUpdateBody = WithData<CommissionFeeReviseWipItem>;
1274
1272
  /**
1275
1273
  * Request item for: /cabinet/commission_fee_revise_wip/update_many/
1276
1274
  */
@@ -1282,9 +1280,9 @@ type CommissionFeeReviseWipUpdateManyItem = {
1282
1280
  /**
1283
1281
  * Request for: /cabinet/commission_fee_revise_wip/update_many/
1284
1282
  */
1285
- type CommissionFeeReviseWipUpdateManyBody = {
1283
+ type CommissionFeeReviseWipUpdateManyBody = WithData<{
1286
1284
  data: CommissionFeeReviseWipUpdateManyItem[];
1287
- };
1285
+ }>;
1288
1286
  /**
1289
1287
  * Response for: /cabinet/commission_fee_revise_wip/update_many/
1290
1288
  */
package/dist/index.d.ts CHANGED
@@ -1254,23 +1254,21 @@ type CommissionFeeReviseWipItem = {
1254
1254
  salespoint_group_title: string | null;
1255
1255
  user_id: number;
1256
1256
  };
1257
- type CommissionFeeReviseWipGenerateBody = {
1258
- _data: {
1259
- start_at: string;
1260
- end_at: string;
1261
- type: 'ipoteka';
1262
- };
1263
- };
1257
+ type CommissionFeeReviseWipGenerateBody = WithData<{
1258
+ start_at: string;
1259
+ end_at: string;
1260
+ type: 'ipoteka';
1261
+ }>;
1264
1262
  /**
1265
1263
  * Request for: /cabinet/commission_fee_revise_wip/download/ */
1266
- type CommissionFeeReviseWipDownloadBody = {
1264
+ type CommissionFeeReviseWipDownloadBody = WithData<{
1267
1265
  bankdetail_id: number;
1268
1266
  item_ids: number[];
1269
- };
1267
+ }>;
1270
1268
  /**
1271
- * Response for: /cabinet/commission_fee_revise_wip/update/
1269
+ * Request for: /cabinet/commission_fee_revise_wip/update/
1272
1270
  */
1273
- type CommissionFeeReviseWipUpdateBody = CommissionFeeReviseWipItem;
1271
+ type CommissionFeeReviseWipUpdateBody = WithData<CommissionFeeReviseWipItem>;
1274
1272
  /**
1275
1273
  * Request item for: /cabinet/commission_fee_revise_wip/update_many/
1276
1274
  */
@@ -1282,9 +1280,9 @@ type CommissionFeeReviseWipUpdateManyItem = {
1282
1280
  /**
1283
1281
  * Request for: /cabinet/commission_fee_revise_wip/update_many/
1284
1282
  */
1285
- type CommissionFeeReviseWipUpdateManyBody = {
1283
+ type CommissionFeeReviseWipUpdateManyBody = WithData<{
1286
1284
  data: CommissionFeeReviseWipUpdateManyItem[];
1287
- };
1285
+ }>;
1288
1286
  /**
1289
1287
  * Response for: /cabinet/commission_fee_revise_wip/update_many/
1290
1288
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.2.47",
3
+ "version": "1.2.48",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",