warqadui 0.0.115 → 0.0.118

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/dist/index.d.mts CHANGED
@@ -957,6 +957,15 @@ declare const useTransaction: ({ url, v, delay, params, dateFilter, }: {
957
957
  reload: () => Promise<any>;
958
958
  error: string | null;
959
959
  date: String | null | undefined;
960
+ openPos: (datas: {
961
+ data: any;
962
+ columns: any;
963
+ type: "payment" | "sale";
964
+ title: string;
965
+ printerType: "80mm";
966
+ delivery?: boolean;
967
+ }) => void;
968
+ PosPrinter: () => react_jsx_runtime.JSX.Element;
960
969
  };
961
970
 
962
971
  interface PdfOptions {
@@ -1329,16 +1338,16 @@ declare const createAccountSchema: z$1.ZodObject<{
1329
1338
  name: string;
1330
1339
  email?: string | undefined;
1331
1340
  sex?: "male" | "female" | undefined;
1341
+ currency?: string | undefined;
1332
1342
  phoneNumber?: string | undefined;
1333
1343
  branch?: string | undefined;
1334
- currency?: string | undefined;
1335
1344
  }, {
1336
1345
  name: string;
1337
1346
  email?: string | undefined;
1338
1347
  sex?: "male" | "female" | undefined;
1348
+ currency?: string | undefined;
1339
1349
  phoneNumber?: string | undefined;
1340
1350
  branch?: string | undefined;
1341
- currency?: string | undefined;
1342
1351
  }>;
1343
1352
  type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
1344
1353
 
package/dist/index.d.ts CHANGED
@@ -957,6 +957,15 @@ declare const useTransaction: ({ url, v, delay, params, dateFilter, }: {
957
957
  reload: () => Promise<any>;
958
958
  error: string | null;
959
959
  date: String | null | undefined;
960
+ openPos: (datas: {
961
+ data: any;
962
+ columns: any;
963
+ type: "payment" | "sale";
964
+ title: string;
965
+ printerType: "80mm";
966
+ delivery?: boolean;
967
+ }) => void;
968
+ PosPrinter: () => react_jsx_runtime.JSX.Element;
960
969
  };
961
970
 
962
971
  interface PdfOptions {
@@ -1329,16 +1338,16 @@ declare const createAccountSchema: z$1.ZodObject<{
1329
1338
  name: string;
1330
1339
  email?: string | undefined;
1331
1340
  sex?: "male" | "female" | undefined;
1341
+ currency?: string | undefined;
1332
1342
  phoneNumber?: string | undefined;
1333
1343
  branch?: string | undefined;
1334
- currency?: string | undefined;
1335
1344
  }, {
1336
1345
  name: string;
1337
1346
  email?: string | undefined;
1338
1347
  sex?: "male" | "female" | undefined;
1348
+ currency?: string | undefined;
1339
1349
  phoneNumber?: string | undefined;
1340
1350
  branch?: string | undefined;
1341
- currency?: string | undefined;
1342
1351
  }>;
1343
1352
  type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
1344
1353