@flowselections/floriday-verkoop-module 1.0.6 → 1.0.7

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.
@@ -1,5 +1,5 @@
1
1
  import type { FlowModule } from "@flowselections/core";
2
2
  export * from "./_core-safelist";
3
3
  export { VerkoopOrdersPage } from "./components/verkoop/VerkoopOrdersPage";
4
- export declare const myModule: FlowModule;
4
+ export declare const floridayVerkoopModule: FlowModule;
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAEvD,cAAc,kBAAkB,CAAC;AACjC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAE3E,eAAO,MAAM,QAAQ,EAAE,UAiBtB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAEvD,cAAc,kBAAkB,CAAC;AACjC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAE3E,eAAO,MAAM,qBAAqB,EAAE,UAiBnC,CAAC"}
package/dist-lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ShoppingCart, ListOrdered } from "lucide-react";
2
2
  export * from "./_core-safelist";
3
3
  export { VerkoopOrdersPage } from "./components/verkoop/VerkoopOrdersPage";
4
- export const myModule = {
4
+ export const floridayVerkoopModule = {
5
5
  id: "verkoop",
6
6
  name: "Verkoop",
7
7
  version: "1.0.0",
@@ -3,7 +3,7 @@ import { createClient } from '@supabase/supabase-js';
3
3
  const SUPABASE_URL = "https://vmicscahrnzpmhagztmx.supabase.co";
4
4
  const SUPABASE_PUBLISHABLE_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InZtaWNzY2Focm56cG1oYWd6dG14Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzYxNTkyNTEsImV4cCI6MjA5MTczNTI1MX0.l3Q2WSCzgvy0-9fkX2GNUQ7Qgh5_lXXSo69qLXYelkQ";
5
5
  // Import the supabase client like this:
6
- // import { supabase } from "@/integrations/supabase/client";
6
+ // import { supabase } from "../../integrations/supabase/client";
7
7
  const isBrowser = typeof window !== "undefined";
8
8
  export const supabase = createClient(SUPABASE_URL, SUPABASE_PUBLISHABLE_KEY, {
9
9
  auth: {
@@ -20,7 +20,7 @@ function createSupabaseAdminClient() {
20
20
  let _supabaseAdmin;
21
21
  // Server-side Supabase client with service role - bypasses RLS
22
22
  // SECURITY: Only use this for trusted server-side operations, never expose to client code
23
- // Import like: import { supabaseAdmin } from "@/integrations/supabase/client.server";
23
+ // Import like: import { supabaseAdmin } from "../../integrations/supabase/client.server";
24
24
  export const supabaseAdmin = new Proxy({}, {
25
25
  get(_, prop, receiver) {
26
26
  if (!_supabaseAdmin)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowselections/floriday-verkoop-module",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "dev": "vite dev",
24
24
  "build": "vite build",
25
- "build:lib": "tsc -p tsconfig.build.json && node -e \"require('fs').writeFileSync('dist-lib/styles.css', '@source \\\"./\\\";\\n')\"",
25
+ "build:lib": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && node -e \"require('fs').writeFileSync('dist-lib/styles.css', '@source \\\"./\\\";\\n')\"",
26
26
  "build:lib:watch": "tsc -p tsconfig.build.json --watch",
27
27
  "build:dev": "vite build --mode development",
28
28
  "preview": "vite preview",
@@ -69,6 +69,7 @@
69
69
  "tailwindcss": "^4.2.1",
70
70
  "tw-animate-css": "^1.3.4",
71
71
  "typescript": "^5.8.3",
72
+ "tsc-alias": "^1.8.0",
72
73
  "typescript-eslint": "^8.56.1",
73
74
  "vite": "^7.3.1",
74
75
  "vite-tsconfig-paths": "^6.0.2"