@erp-galoper/types 1.0.219 → 1.0.221

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 +26 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26504,7 +26504,7 @@ export interface components {
26504
26504
  /**
26505
26505
  * Id
26506
26506
  * Format: uuid
26507
- * @example caac9a34-db35-4487-85e7-83082fc1ff40
26507
+ * @example 6640fd8b-706a-4265-8c2d-aad076cb7be6
26508
26508
  */
26509
26509
  id: string;
26510
26510
  /**
@@ -38207,7 +38207,7 @@ export interface components {
38207
38207
  companyRate: string;
38208
38208
  /** Usdrate */
38209
38209
  usdRate: string;
38210
- advancePaymentItem: components["schemas"]["DocumentCommonSchema"] | null;
38210
+ advancePayment: components["schemas"]["RefundableAdvancePaymentDetailSchema"] | null;
38211
38211
  refundReturnInvoice: components["schemas"]["DocumentCommonSchema"] | null;
38212
38212
  };
38213
38213
  /** RefundVoucherResponseSchema */
@@ -38218,6 +38218,21 @@ export interface components {
38218
38218
  message: string;
38219
38219
  data: components["schemas"]["RefundVoucherDetailWithItemSchema"];
38220
38220
  };
38221
+ /** RefundableAdvancePaymentDetailSchema */
38222
+ RefundableAdvancePaymentDetailSchema: {
38223
+ /**
38224
+ * Id
38225
+ * Format: uuid
38226
+ */
38227
+ id: string;
38228
+ /** Serialnumber */
38229
+ serialNumber: string;
38230
+ /**
38231
+ * Advancepaymentitem
38232
+ * Format: uuid
38233
+ */
38234
+ advancePaymentItem: string;
38235
+ };
38221
38236
  /** RefundVoucherCreateSchema */
38222
38237
  RefundVoucherCreateSchema: {
38223
38238
  /** Password */
@@ -40862,7 +40877,7 @@ export interface components {
40862
40877
  */
40863
40878
  companyTotal: string;
40864
40879
  /** Quantityreturned */
40865
- quantityReturned: number;
40880
+ quantityReturned?: number;
40866
40881
  /**
40867
40882
  * Quantitydelivered
40868
40883
  * @description Only show in case of delivery note source is sales invoice
@@ -41327,6 +41342,11 @@ export interface components {
41327
41342
  /** Results */
41328
41343
  results: components["schemas"]["SalesInvoiceSchema"][];
41329
41344
  };
41345
+ /**
41346
+ * SalesInvoiceItemTypeSchema
41347
+ * @enum {string}
41348
+ */
41349
+ SalesInvoiceItemTypeSchema: "default" | "salesCreditNote";
41330
41350
  /** SalesInvoiceForReturnOrderSchema */
41331
41351
  SalesInvoiceForReturnOrderSchema: {
41332
41352
  /**
@@ -76886,7 +76906,9 @@ export interface operations {
76886
76906
  };
76887
76907
  sales_invoice_views_get_sales_invoice: {
76888
76908
  parameters: {
76889
- query?: never;
76909
+ query?: {
76910
+ type?: "default" | "salesCreditNote";
76911
+ };
76890
76912
  header?: never;
76891
76913
  path: {
76892
76914
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.219",
3
+ "version": "1.0.221",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],