@erp-galoper/types 1.0.1530 → 1.0.1531

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 +22 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25916,6 +25916,11 @@ export interface components {
25916
25916
  dateModified: string | null;
25917
25917
  createdBy: components["schemas"]["RecordUserSchema"];
25918
25918
  modifiedBy: components["schemas"]["RecordUserSchema"] | null;
25919
+ /**
25920
+ * Availableinpos
25921
+ * @default false
25922
+ */
25923
+ availableInPos: boolean;
25919
25924
  /** Id */
25920
25925
  id: number;
25921
25926
  /**
@@ -26159,6 +26164,11 @@ export interface components {
26159
26164
  dateModified: string | null;
26160
26165
  createdBy: components["schemas"]["RecordUserSchema"];
26161
26166
  modifiedBy: components["schemas"]["RecordUserSchema"] | null;
26167
+ /**
26168
+ * Availableinpos
26169
+ * @default false
26170
+ */
26171
+ availableInPos: boolean;
26162
26172
  /** Id */
26163
26173
  id: number;
26164
26174
  /**
@@ -26707,6 +26717,11 @@ export interface components {
26707
26717
  CostStrategy: "firstInFirstOut" | "lastInFirstOut" | "weightedAverageCost" | "marketCost";
26708
26718
  /** CreateChildItemSchema */
26709
26719
  CreateChildItemSchema: {
26720
+ /**
26721
+ * Availableinpos
26722
+ * @default false
26723
+ */
26724
+ availableInPos: boolean | null;
26710
26725
  /** Index */
26711
26726
  index?: number | null;
26712
26727
  /**
@@ -26933,6 +26948,11 @@ export interface components {
26933
26948
  };
26934
26949
  /** CreateItemSchema */
26935
26950
  CreateItemSchema: {
26951
+ /**
26952
+ * Availableinpos
26953
+ * @default false
26954
+ */
26955
+ availableInPos: boolean | null;
26936
26956
  /**
26937
26957
  * Image
26938
26958
  * @default default/default-product.jpg
@@ -27295,6 +27315,8 @@ export interface components {
27295
27315
  };
27296
27316
  /** PatchItemSchema */
27297
27317
  PatchItemSchema: {
27318
+ /** Availableinpos */
27319
+ availableInPos?: boolean | null;
27298
27320
  /** Image */
27299
27321
  image?: string | null;
27300
27322
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1530",
3
+ "version": "1.0.1531",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],