@appcorp/stellar-solutions-modules 0.1.4 → 0.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/stellar-solutions-modules",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "scripts": {
5
5
  "build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib",
6
6
  "build:next": "next build",
@@ -16,15 +16,17 @@
16
16
  "start": "next start",
17
17
  "upgrade": "ncu -u"
18
18
  },
19
- "dependencies": {},
19
+ "dependencies": {
20
+ "uuid": "^11.1.0"
21
+ },
20
22
  "devDependencies": {
21
23
  "@appcorp/app-corp-designs": "^0.4.79",
22
- "@appcorp/app-corp-vista": "^0.1.66",
24
+ "@appcorp/app-corp-vista": "^0.2.26",
23
25
  "@eslint/eslintrc": "^3",
24
26
  "@headlessui/react": "^2.2.0",
25
27
  "@heroicons/react": "^2.2.0",
26
- "@react-pakistan/util-functions": "^1.24.4",
27
- "@supabase/supabase-js": "^2.49.8",
28
+ "@react-pakistan/util-functions": "^1.24.25",
29
+ "@supabase/supabase-js": "^2",
28
30
  "@tailwindcss/forms": "^0.5.10",
29
31
  "@tailwindcss/postcss": "^4",
30
32
  "@types/node": "^22",
@@ -36,7 +38,7 @@
36
38
  "eslint-config-next": "15.2.1",
37
39
  "husky": "^9.1.7",
38
40
  "next": "^15",
39
- "next-intl": "^3.26.5",
41
+ "next-intl": "^4.3.4",
40
42
  "react": "^19",
41
43
  "react-copy-to-clipboard": "^5.1.0",
42
44
  "react-dom": "^19",
@@ -1 +1,4 @@
1
+ export declare const supabaseStorageBaseUrl: string;
2
+ export declare const supabasePrivateStorageUrl: string;
3
+ export declare const supabasePublicStorageUrl: string;
1
4
  export declare const supabaseClient: import("@supabase/supabase-js").SupabaseClient<any, "public", any>;
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.supabaseClient = void 0;
3
+ exports.supabaseClient = exports.supabasePublicStorageUrl = exports.supabasePrivateStorageUrl = exports.supabaseStorageBaseUrl = void 0;
4
4
  var supabase_js_1 = require("@supabase/supabase-js");
5
+ exports.supabaseStorageBaseUrl = process.env
6
+ .NEXT_PUBLIC_SUPABASE_STORAGE_URL;
7
+ exports.supabasePrivateStorageUrl = "".concat(exports.supabaseStorageBaseUrl, "/authenticated/").concat(process.env.NEXT_PUBLIC_SUPABASE_PRIVATE_BUCKET);
8
+ exports.supabasePublicStorageUrl = "".concat(exports.supabaseStorageBaseUrl, "/public/").concat(process.env.NEXT_PUBLIC_SUPABASE_PUBLIC_BUCKET);
5
9
  var supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL;
6
10
  var supabaseKey = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY;
7
11
  exports.supabaseClient = (0, supabase_js_1.createClient)(supabaseUrl, supabaseKey, {