@erp-galoper/types 1.0.1280 → 1.0.1282

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 +9 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -41209,6 +41209,11 @@ export interface components {
41209
41209
  */
41210
41210
  remaining: string;
41211
41211
  };
41212
+ /**
41213
+ * PaymentDocumentsChangedFields
41214
+ * @enum {string}
41215
+ */
41216
+ PaymentDocumentsChangedFields: "amount" | "companyAmount" | "usdAmount" | "companyRate" | "usdRate";
41212
41217
  /** PaymentVoucherCalculateEquivalentsAndTotalsSchema */
41213
41218
  PaymentVoucherCalculateEquivalentsAndTotalsSchema: {
41214
41219
  /**
@@ -41258,7 +41263,8 @@ export interface components {
41258
41263
  * @description field is number
41259
41264
  */
41260
41265
  secondaryRate?: string;
41261
- changedField: components["schemas"]["ChangedFields"] | null;
41266
+ /** @default amount */
41267
+ changedField: components["schemas"]["PaymentDocumentsChangedFields"] | null;
41262
41268
  };
41263
41269
  /** PaymentVoucherItemDetailSchema */
41264
41270
  PaymentVoucherItemDetailSchema: {
@@ -49118,7 +49124,8 @@ export interface components {
49118
49124
  * @description field is number
49119
49125
  */
49120
49126
  secondaryRate?: string;
49121
- changedField: components["schemas"]["ChangedFields"] | null;
49127
+ /** @default amount */
49128
+ changedField: components["schemas"]["PaymentDocumentsChangedFields"] | null;
49122
49129
  };
49123
49130
  /** CalculateEquivalentsAndTotalsSchema */
49124
49131
  CalculateEquivalentsAndTotalsSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1280",
3
+ "version": "1.0.1282",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],