@erp-galoper/types 1.0.1476 → 1.0.1478

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.
Files changed (2) hide show
  1. package/openapi.ts +14 -8
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -29413,6 +29413,7 @@ export interface components {
29413
29413
  feeType: components["schemas"]["PaymentProviderFeeTypeEnum"];
29414
29414
  /** Feepercentage */
29415
29415
  feePercentage: number;
29416
+ account: components["schemas"]["AccountSummaryInfo"];
29416
29417
  };
29417
29418
  /** CreateUpdatePaymentProviderSchema */
29418
29419
  CreateUpdatePaymentProviderSchema: {
@@ -29431,6 +29432,11 @@ export interface components {
29431
29432
  feeType: components["schemas"]["PaymentProviderFeeTypeEnum"];
29432
29433
  /** Feepercentage */
29433
29434
  feePercentage: number;
29435
+ /**
29436
+ * Account
29437
+ * @description get account using route /api/v1/chart_of_account/?branchId={branch-id}&type=creditCard
29438
+ */
29439
+ account: number;
29434
29440
  };
29435
29441
  /** ListPaymentProvidersSchema */
29436
29442
  ListPaymentProvidersSchema: {
@@ -31298,8 +31304,8 @@ export interface components {
31298
31304
  approvalStatus: components["schemas"]["ApprovalValueChoices"];
31299
31305
  /** Serialnumber */
31300
31306
  serialNumber: string;
31301
- fromWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31302
- toWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31307
+ fromWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31308
+ toWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31303
31309
  branch: components["schemas"]["BranchSummaryInfo"];
31304
31310
  /**
31305
31311
  * Transferdate
@@ -31489,8 +31495,8 @@ export interface components {
31489
31495
  approvalStatus: components["schemas"]["ApprovalValueChoices"];
31490
31496
  /** Serialnumber */
31491
31497
  serialNumber: string;
31492
- fromWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31493
- toWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31498
+ fromWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31499
+ toWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31494
31500
  branch: components["schemas"]["BranchSummaryInfo"];
31495
31501
  /**
31496
31502
  * Transferdate
@@ -31646,8 +31652,8 @@ export interface components {
31646
31652
  description: string | null;
31647
31653
  /** Attachments */
31648
31654
  attachments: string[] | null;
31649
- sourceWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31650
- destinationWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31655
+ sourceWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31656
+ destinationWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31651
31657
  sourceWarehouseResponse: components["schemas"]["SourceWarehouseResponseEnum"] | null;
31652
31658
  rejectionReason: components["schemas"]["ReasonSummaryInfo"] | null;
31653
31659
  /** Candelete */
@@ -31801,8 +31807,8 @@ export interface components {
31801
31807
  description: string | null;
31802
31808
  /** Attachments */
31803
31809
  attachments: string[] | null;
31804
- sourceWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31805
- destinationWarehouse: components["schemas"]["WarehouseSummaryInfo"];
31810
+ sourceWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31811
+ destinationWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
31806
31812
  sourceWarehouseResponse: components["schemas"]["SourceWarehouseResponseEnum"] | null;
31807
31813
  rejectionReason: components["schemas"]["ReasonSummaryInfo"] | null;
31808
31814
  /** Candelete */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1476",
3
+ "version": "1.0.1478",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],