@erp-galoper/types 1.0.1098 → 1.0.1100
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.
- package/openapi.ts +14 -0
- 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: {
|