@erp-galoper/types 1.0.429 → 1.0.431

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 +11 -75
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -18592,11 +18592,6 @@ export interface components {
18592
18592
  * @default []
18593
18593
  */
18594
18594
  hr: components["schemas"]["BasePermissionsSchema_Hr"];
18595
- /**
18596
- * @description pos actions
18597
- * @default []
18598
- */
18599
- pos: components["schemas"]["BasePermissionsSchema_Pos"];
18600
18595
  /**
18601
18596
  * @description project actions
18602
18597
  * @default []
@@ -18619,6 +18614,12 @@ export interface components {
18619
18614
  * @default []
18620
18615
  */
18621
18616
  calendar: Record<string, never>;
18617
+ /**
18618
+ * Pos
18619
+ * @description pos actions
18620
+ * @default []
18621
+ */
18622
+ pos: Record<string, never>;
18622
18623
  /**
18623
18624
  * Approval
18624
18625
  * @description approval actions
@@ -18919,75 +18920,6 @@ export interface components {
18919
18920
  * @enum {string}
18920
18921
  */
18921
18922
  BasePermissionsSchema_Inventory_WarehouseEnum: "add" | "change" | "delete" | "view";
18922
- /** BasePermissionsSchema_Pos */
18923
- BasePermissionsSchema_Pos: {
18924
- /**
18925
- * Giftreceipt
18926
- * @description giftreceipt actions
18927
- * @default []
18928
- */
18929
- giftreceipt: components["schemas"]["BasePermissionsSchema_Pos_GiftreceiptEnum"][];
18930
- /**
18931
- * Invoice
18932
- * @description invoice actions
18933
- * @default []
18934
- */
18935
- invoice: components["schemas"]["BasePermissionsSchema_Pos_InvoiceEnum"][];
18936
- /**
18937
- * Invoicepayment
18938
- * @description invoicepayment actions
18939
- * @default []
18940
- */
18941
- invoicepayment: components["schemas"]["BasePermissionsSchema_Pos_InvoicepaymentEnum"][];
18942
- /**
18943
- * Posrefund
18944
- * @description posrefund actions
18945
- * @default []
18946
- */
18947
- posrefund: components["schemas"]["BasePermissionsSchema_Pos_PosrefundEnum"][];
18948
- /**
18949
- * Posreturninvoiceheader
18950
- * @description posreturninvoiceheader actions
18951
- * @default []
18952
- */
18953
- posreturninvoiceheader: components["schemas"]["BasePermissionsSchema_Pos_PosreturninvoiceheaderEnum"][];
18954
- /**
18955
- * Session
18956
- * @description session actions
18957
- * @default []
18958
- */
18959
- session: components["schemas"]["BasePermissionsSchema_Pos_SessionEnum"][];
18960
- };
18961
- /**
18962
- * BasePermissionsSchema_Pos_GiftreceiptEnum
18963
- * @enum {string}
18964
- */
18965
- BasePermissionsSchema_Pos_GiftreceiptEnum: "add" | "exchange" | "view";
18966
- /**
18967
- * BasePermissionsSchema_Pos_InvoiceEnum
18968
- * @enum {string}
18969
- */
18970
- BasePermissionsSchema_Pos_InvoiceEnum: "add" | "discount" | "exchange" | "hold" | "view" | "void";
18971
- /**
18972
- * BasePermissionsSchema_Pos_InvoicepaymentEnum
18973
- * @enum {string}
18974
- */
18975
- BasePermissionsSchema_Pos_InvoicepaymentEnum: "add" | "change" | "delete" | "view";
18976
- /**
18977
- * BasePermissionsSchema_Pos_PosrefundEnum
18978
- * @enum {string}
18979
- */
18980
- BasePermissionsSchema_Pos_PosrefundEnum: "add" | "change" | "delete" | "view";
18981
- /**
18982
- * BasePermissionsSchema_Pos_PosreturninvoiceheaderEnum
18983
- * @enum {string}
18984
- */
18985
- BasePermissionsSchema_Pos_PosreturninvoiceheaderEnum: "add" | "change" | "hold" | "view" | "void";
18986
- /**
18987
- * BasePermissionsSchema_Pos_SessionEnum
18988
- * @enum {string}
18989
- */
18990
- BasePermissionsSchema_Pos_SessionEnum: "add" | "change" | "delete" | "view";
18991
18923
  /** BasePermissionsSchema_Project */
18992
18924
  BasePermissionsSchema_Project: {
18993
18925
  /**
@@ -24803,6 +24735,8 @@ export interface components {
24803
24735
  accountNumber: string;
24804
24736
  /** Name */
24805
24737
  name: string;
24738
+ /** Email */
24739
+ email: string | null;
24806
24740
  type: components["schemas"]["TypeOfCustomer"];
24807
24741
  /** Phone */
24808
24742
  phone?: string | null;
@@ -25684,6 +25618,8 @@ export interface components {
25684
25618
  accountNumber: string;
25685
25619
  /** Name */
25686
25620
  name: string;
25621
+ /** Email */
25622
+ email: string | null;
25687
25623
  /** Company */
25688
25624
  company: string;
25689
25625
  /** Phone */
@@ -26850,7 +26786,7 @@ export interface components {
26850
26786
  /**
26851
26787
  * Id
26852
26788
  * Format: uuid
26853
- * @example 05751f07-a6fc-4537-85e9-bfedca260717
26789
+ * @example 949be327-7140-4538-9b18-44344f31fe69
26854
26790
  */
26855
26791
  id: string;
26856
26792
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.429",
3
+ "version": "1.0.431",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],