@erp-galoper/types 1.0.88 → 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 +53 -13
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20859,6 +20859,8 @@ export interface components {
20859
20859
  * @description Name of the package
20860
20860
  */
20861
20861
  name: string;
20862
+ /** @description Category of the package */
20863
+ category: components["schemas"]["PackageCategory"];
20862
20864
  };
20863
20865
  /** SpecSchema */
20864
20866
  SpecSchema: {
@@ -26463,7 +26465,7 @@ export interface components {
26463
26465
  /**
26464
26466
  * Id
26465
26467
  * Format: uuid
26466
- * @example ec8fa84f-f44f-4f37-9b5e-5f519d3e78f8
26468
+ * @example e6ec7fa3-03ea-448b-bde7-27b2547bca87
26467
26469
  */
26468
26470
  id: string;
26469
26471
  /**
@@ -29508,6 +29510,11 @@ export interface components {
29508
29510
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
29509
29511
  }[];
29510
29512
  };
29513
+ /**
29514
+ * PackageCategory
29515
+ * @enum {string}
29516
+ */
29517
+ PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
29511
29518
  /** ReasonSummaryInfo */
29512
29519
  ReasonSummaryInfo: {
29513
29520
  /** Id */
@@ -31000,11 +31007,6 @@ export interface components {
31000
31007
  /** Total */
31001
31008
  total: number;
31002
31009
  };
31003
- /**
31004
- * PackageCategory
31005
- * @enum {string}
31006
- */
31007
- PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
31008
31010
  /** TotalCalculationResponse */
31009
31011
  TotalCalculationResponse: {
31010
31012
  supplier: components["schemas"]["ChildSupplierSharedSchema"];
@@ -32348,15 +32350,15 @@ export interface components {
32348
32350
  */
32349
32351
  remainingBalance: string;
32350
32352
  /** Payments */
32351
- payments: components["schemas"]["PaymentWithEquivalentResponse"][];
32353
+ payments: components["schemas"]["PaymentVoucherWithEquivalentResponse"][];
32352
32354
  };
32353
- /** PaymentWithEquivalentResponse */
32354
- PaymentWithEquivalentResponse: {
32355
+ /** PaymentVoucherWithEquivalentResponse */
32356
+ PaymentVoucherWithEquivalentResponse: {
32355
32357
  /**
32356
- * Salesinvoice
32358
+ * Purchaseinvoice
32357
32359
  * Format: uuid
32358
32360
  */
32359
- salesInvoice?: string;
32361
+ purchaseInvoice?: string;
32360
32362
  /**
32361
32363
  * Amount
32362
32364
  * @description field is number
@@ -32368,10 +32370,10 @@ export interface components {
32368
32370
  */
32369
32371
  companyAmount: string;
32370
32372
  /**
32371
- * Secondaryamount
32373
+ * Usdamount
32372
32374
  * @description field is number
32373
32375
  */
32374
- secondaryAmount: string;
32376
+ usdAmount: string;
32375
32377
  /**
32376
32378
  * Companyrate
32377
32379
  * @description field is number
@@ -37241,6 +37243,44 @@ export interface components {
37241
37243
  /** Payments */
37242
37244
  payments: components["schemas"]["PaymentWithEquivalentResponse"][];
37243
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
+ };
37244
37284
  /** CalculateEquivalentsAndTotalsSchema */
37245
37285
  CalculateEquivalentsAndTotalsSchema: {
37246
37286
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.88",
3
+ "version": "1.0.90",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],