@erp-galoper/types 1.0.1097 → 1.0.1099

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 +18 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -32477,6 +32477,10 @@ export interface components {
32477
32477
  printOnHold: boolean | null;
32478
32478
  /** Currenciesoninvoice */
32479
32479
  currenciesOnInvoice: components["schemas"]["CurrencySummarySchema"][];
32480
+ /** Showvoideditem */
32481
+ showVoidedItem: boolean;
32482
+ /** Useuppercaseitemname */
32483
+ useUpperCaseItemName: boolean;
32480
32484
  };
32481
32485
  /** CreateUpdatePosSettings */
32482
32486
  CreateUpdatePosSettings: {
@@ -32515,6 +32519,16 @@ export interface components {
32515
32519
  * @description company currency should be added as default
32516
32520
  */
32517
32521
  currenciesOnInvoice: number[];
32522
+ /**
32523
+ * Showvoideditem
32524
+ * @default true
32525
+ */
32526
+ showVoidedItem: boolean;
32527
+ /**
32528
+ * Useuppercaseitemname
32529
+ * @default false
32530
+ */
32531
+ useUpperCaseItemName: boolean;
32518
32532
  };
32519
32533
  /** RetrieveAppointmentSettingSchema */
32520
32534
  RetrieveAppointmentSettingSchema: {
@@ -37322,7 +37336,10 @@ export interface components {
37322
37336
  description: string | null;
37323
37337
  /** Notes */
37324
37338
  notes: string | null;
37325
- /** Reasonforreturn */
37339
+ /**
37340
+ * Reasonforreturn
37341
+ * @description - Get reasons from /api/v1/common/reasons/ and filter by documentType equals to purchaseReturnInvoice
37342
+ */
37326
37343
  reasonForReturn?: number | null;
37327
37344
  /** Items */
37328
37345
  items: components["schemas"]["CreateUpdatePurchaseReturnInvoiceItemsSchema"][];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1097",
3
+ "version": "1.0.1099",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],