@erp-galoper/types 1.0.89 → 1.0.90

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 +46 -8
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26465,7 +26465,7 @@ export interface components {
26465
26465
  /**
26466
26466
  * Id
26467
26467
  * Format: uuid
26468
- * @example 21c1f528-c04b-4d0d-91c9-7853179cab37
26468
+ * @example e6ec7fa3-03ea-448b-bde7-27b2547bca87
26469
26469
  */
26470
26470
  id: string;
26471
26471
  /**
@@ -32350,15 +32350,15 @@ export interface components {
32350
32350
  */
32351
32351
  remainingBalance: string;
32352
32352
  /** Payments */
32353
- payments: components["schemas"]["PaymentWithEquivalentResponse"][];
32353
+ payments: components["schemas"]["PaymentVoucherWithEquivalentResponse"][];
32354
32354
  };
32355
- /** PaymentWithEquivalentResponse */
32356
- PaymentWithEquivalentResponse: {
32355
+ /** PaymentVoucherWithEquivalentResponse */
32356
+ PaymentVoucherWithEquivalentResponse: {
32357
32357
  /**
32358
- * Salesinvoice
32358
+ * Purchaseinvoice
32359
32359
  * Format: uuid
32360
32360
  */
32361
- salesInvoice?: string;
32361
+ purchaseInvoice?: string;
32362
32362
  /**
32363
32363
  * Amount
32364
32364
  * @description field is number
@@ -32370,10 +32370,10 @@ export interface components {
32370
32370
  */
32371
32371
  companyAmount: string;
32372
32372
  /**
32373
- * Secondaryamount
32373
+ * Usdamount
32374
32374
  * @description field is number
32375
32375
  */
32376
- secondaryAmount: string;
32376
+ usdAmount: string;
32377
32377
  /**
32378
32378
  * Companyrate
32379
32379
  * @description field is number
@@ -37243,6 +37243,44 @@ export interface components {
37243
37243
  /** Payments */
37244
37244
  payments: components["schemas"]["PaymentWithEquivalentResponse"][];
37245
37245
  };
37246
+ /** PaymentWithEquivalentResponse */
37247
+ PaymentWithEquivalentResponse: {
37248
+ /**
37249
+ * Salesinvoice
37250
+ * Format: uuid
37251
+ */
37252
+ salesInvoice?: string;
37253
+ /**
37254
+ * Amount
37255
+ * @description field is number
37256
+ */
37257
+ amount: string;
37258
+ /**
37259
+ * Companyamount
37260
+ * @description field is number
37261
+ */
37262
+ companyAmount: string;
37263
+ /**
37264
+ * Secondaryamount
37265
+ * @description field is number
37266
+ */
37267
+ secondaryAmount: string;
37268
+ /**
37269
+ * Companyrate
37270
+ * @description field is number
37271
+ */
37272
+ companyRate: string;
37273
+ /**
37274
+ * Secondaryrate
37275
+ * @description field is number
37276
+ */
37277
+ secondaryRate: string | null;
37278
+ /**
37279
+ * Remaining
37280
+ * @description field is number
37281
+ */
37282
+ remaining: string;
37283
+ };
37246
37284
  /** CalculateEquivalentsAndTotalsSchema */
37247
37285
  CalculateEquivalentsAndTotalsSchema: {
37248
37286
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],