@erp-galoper/types 1.0.104 → 1.0.105

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 +44 -14
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26489,7 +26489,7 @@ export interface components {
26489
26489
  /**
26490
26490
  * Id
26491
26491
  * Format: uuid
26492
- * @example b6762932-03c2-42f6-9e08-963ed5020d1d
26492
+ * @example 020744f2-0ada-49cc-a3af-9fe3d76cae37
26493
26493
  */
26494
26494
  id: string;
26495
26495
  /**
@@ -41376,6 +41376,34 @@ export interface components {
41376
41376
  /** Items */
41377
41377
  items: components["schemas"]["CalculateSalesReturnInvoiceItemsSchema"][];
41378
41378
  };
41379
+ /** RefundableDownPaymentItemWithRemaining */
41380
+ RefundableDownPaymentItemWithRemaining: {
41381
+ /**
41382
+ * Id
41383
+ * Format: uuid
41384
+ */
41385
+ id: string;
41386
+ /**
41387
+ * Total
41388
+ * @description field is number
41389
+ */
41390
+ total: string;
41391
+ /**
41392
+ * Companytotal
41393
+ * @description field is number
41394
+ */
41395
+ companyTotal: string;
41396
+ /**
41397
+ * Secondarytotal
41398
+ * @description field is number
41399
+ */
41400
+ secondaryTotal: string;
41401
+ /**
41402
+ * Remaining
41403
+ * @description field is number
41404
+ */
41405
+ remaining: string;
41406
+ };
41379
41407
  /** RefundableDownPaymentWithRemaining */
41380
41408
  RefundableDownPaymentWithRemaining: {
41381
41409
  /**
@@ -41405,6 +41433,8 @@ export interface components {
41405
41433
  * @description field is number
41406
41434
  */
41407
41435
  remaining: string;
41436
+ /** Items */
41437
+ items: components["schemas"]["RefundableDownPaymentItemWithRemaining"][];
41408
41438
  };
41409
41439
  /** RefundableReturnPackagesWithRemaining */
41410
41440
  RefundableReturnPackagesWithRemaining: {
@@ -41502,8 +41532,8 @@ export interface components {
41502
41532
  SalesRefundVoucherPaymentWithEquivalentResponse: {
41503
41533
  /** Returninvoice */
41504
41534
  returnInvoice: string | null;
41505
- /** Downpayment */
41506
- downPayment: string | null;
41535
+ /** Downpaymentitem */
41536
+ downPaymentItem: string | null;
41507
41537
  /** Amount */
41508
41538
  amount: string;
41509
41539
  /**
@@ -41582,11 +41612,11 @@ export interface components {
41582
41612
  */
41583
41613
  returnInvoice?: string;
41584
41614
  /**
41585
- * Downpayment
41615
+ * Downpaymentitem
41586
41616
  * Format: uuid
41587
41617
  * @description down payment id, if down payment is undefined then return invoice should be required
41588
41618
  */
41589
- downPayment?: string;
41619
+ downPaymentItem?: string;
41590
41620
  };
41591
41621
  /** SalesRefundVoucherDetailWithItemSchema */
41592
41622
  SalesRefundVoucherDetailWithItemSchema: {
@@ -41682,7 +41712,7 @@ export interface components {
41682
41712
  * @description this field is number
41683
41713
  */
41684
41714
  secondaryRate: string;
41685
- downPayment: components["schemas"]["DocumentCommonSchema"] | null;
41715
+ downPaymentItem: components["schemas"]["DocumentCommonSchema"] | null;
41686
41716
  refundReturnInvoice: components["schemas"]["DocumentCommonSchema"] | null;
41687
41717
  returnReturnablePackage: components["schemas"]["DocumentCommonSchema"] | null;
41688
41718
  };
@@ -41825,14 +41855,14 @@ export interface components {
41825
41855
  */
41826
41856
  customerBankAccount?: number;
41827
41857
  /**
41828
- * Downpayment
41858
+ * Downpaymentitem
41829
41859
  * Format: uuid
41830
41860
  * @description
41831
- * get down payments from /v1/sales/refund-vouchers/refundable-documents/?customer = {customer-id}
41832
- * user should select either down payment or return invoice or return returnable package per row
41861
+ * get down payments from /v1/sales/refund-vouchers/refundable-documents/?customer = {customer-id}
41862
+ * user should select either down payment or return invoice or return returnable package per row
41833
41863
  *
41834
41864
  */
41835
- downPayment?: string;
41865
+ downPaymentItem?: string;
41836
41866
  /**
41837
41867
  * Returninvoice
41838
41868
  * Format: uuid
@@ -41998,14 +42028,14 @@ export interface components {
41998
42028
  */
41999
42029
  customerBankAccount?: number;
42000
42030
  /**
42001
- * Downpayment
42031
+ * Downpaymentitem
42002
42032
  * Format: uuid
42003
42033
  * @description
42004
- * get down payments from /v1/sales/refund-vouchers/refundable-documents/?customer = {customer-id}
42005
- * user should select either down payment or return invoice or return returnable package per row
42034
+ * get down payments from /v1/sales/refund-vouchers/refundable-documents/?customer = {customer-id}
42035
+ * user should select either down payment or return invoice or return returnable package per row
42006
42036
  *
42007
42037
  */
42008
- downPayment?: string;
42038
+ downPaymentItem?: string;
42009
42039
  /**
42010
42040
  * Returninvoice
42011
42041
  * Format: uuid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.104",
3
+ "version": "1.0.105",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],