@erp-galoper/types 1.0.219 → 1.0.220

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 +17 -2
  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 5fdf8117-87f3-4603-9ae3-243b9f4816a8
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 */
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.220",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],