@golocalinteractive/golocal-cloud-wrapper 1.0.13 → 1.0.15

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.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import "./index.css";
2
2
  export { GLICloudProvider } from "./providers/GLICloudProvider";
3
+ export * from "./lib/auth";
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,aAAa,CAAC;AAGrB,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,aAAa,CAAC;AAGrB,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAGhE,cAAc,YAAY,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Auth0Client } from "@auth0/nextjs-auth0/server";
2
+ export declare const auth0: Auth0Client;
3
+ //# sourceMappingURL=client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAEzD,eAAO,MAAM,KAAK,aAKhB,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from "./client";
2
+ export * from "./token";
3
+ export * from "./middleware";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { NextRequest } from "next/server";
2
+ import { NextResponse } from "next/server";
3
+ export declare function handleAuthMiddleware(request: NextRequest): Promise<NextResponse<unknown>>;
4
+ export declare const authMiddlewareMatcher: string[];
5
+ //# sourceMappingURL=middleware.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"middleware.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/middleware.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,WAAW,kCAyB9D;AAED,eAAO,MAAM,qBAAqB,UASjC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function accessToken(): Promise<string>;
2
+ //# sourceMappingURL=token.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"token.d.ts","sourceRoot":"","sources":["../../../src/lib/auth/token.ts"],"names":[],"mappings":"AAEA,wBAAsB,WAAW,oBAGhC"}
@@ -0,0 +1,7 @@
1
+ import type { NextRequest } from "next/server";
2
+ import { NextResponse } from "next/server";
3
+ export declare function middleware(request: NextRequest): Promise<NextResponse<unknown>>;
4
+ export declare const config: {
5
+ matcher: string[];
6
+ };
7
+ //# sourceMappingURL=middleware.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"middleware.d.ts","sourceRoot":"","sources":["../src/middleware.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,wBAAsB,UAAU,CAAC,OAAO,EAAE,WAAW,kCAyBpD;AAED,eAAO,MAAM,MAAM;;CAWlB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golocalinteractive/golocal-cloud-wrapper",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "A React provider component for Go Local Interactive's cloud services",
5
5
  "license": "ISC",
6
6
  "author": "Tanner Barrett",
@@ -56,7 +56,9 @@
56
56
  },
57
57
  "peerDependencies": {
58
58
  "react": "^19.0.0",
59
- "react-dom": "^19.0.0"
59
+ "react-dom": "^19.0.0",
60
+ "next": "^14.0.0",
61
+ "@auth0/nextjs-auth0": "^4.0.0"
60
62
  },
61
63
  "dependencies": {
62
64
  "@auth0/nextjs-auth0": "^4.7.0",