@meistrari/auth-core 1.7.1 → 1.7.2
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +1 -1
- package/package.json +29 -29
package/dist/index.d.mts
CHANGED
|
@@ -2,6 +2,7 @@ import * as better_auth_plugins from 'better-auth/plugins';
|
|
|
2
2
|
import * as better_auth from 'better-auth';
|
|
3
3
|
import { JWTPayload } from 'better-auth';
|
|
4
4
|
import { BetterFetchOption } from 'better-auth/client';
|
|
5
|
+
import * as jose from 'jose';
|
|
5
6
|
import * as _better_auth_sso from '@better-auth/sso';
|
|
6
7
|
import * as better_call from 'better-call';
|
|
7
8
|
import * as nanostores from 'nanostores';
|
|
@@ -2858,7 +2859,7 @@ declare function createAPIClient(apiUrl: string, fetchOptions?: BetterFetchOptio
|
|
|
2858
2859
|
statusText: string;
|
|
2859
2860
|
};
|
|
2860
2861
|
} | {
|
|
2861
|
-
data:
|
|
2862
|
+
data: jose.JSONWebKeySet;
|
|
2862
2863
|
error: null;
|
|
2863
2864
|
}>;
|
|
2864
2865
|
} & {
|
|
@@ -5821,7 +5822,7 @@ declare const stub: {
|
|
|
5821
5822
|
statusText: string;
|
|
5822
5823
|
};
|
|
5823
5824
|
} | {
|
|
5824
|
-
data:
|
|
5825
|
+
data: jose.JSONWebKeySet;
|
|
5825
5826
|
error: null;
|
|
5826
5827
|
}>;
|
|
5827
5828
|
} & {
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as better_auth_plugins from 'better-auth/plugins';
|
|
|
2
2
|
import * as better_auth from 'better-auth';
|
|
3
3
|
import { JWTPayload } from 'better-auth';
|
|
4
4
|
import { BetterFetchOption } from 'better-auth/client';
|
|
5
|
+
import * as jose from 'jose';
|
|
5
6
|
import * as _better_auth_sso from '@better-auth/sso';
|
|
6
7
|
import * as better_call from 'better-call';
|
|
7
8
|
import * as nanostores from 'nanostores';
|
|
@@ -2858,7 +2859,7 @@ declare function createAPIClient(apiUrl: string, fetchOptions?: BetterFetchOptio
|
|
|
2858
2859
|
statusText: string;
|
|
2859
2860
|
};
|
|
2860
2861
|
} | {
|
|
2861
|
-
data:
|
|
2862
|
+
data: jose.JSONWebKeySet;
|
|
2862
2863
|
error: null;
|
|
2863
2864
|
}>;
|
|
2864
2865
|
} & {
|
|
@@ -5821,7 +5822,7 @@ declare const stub: {
|
|
|
5821
5822
|
statusText: string;
|
|
5822
5823
|
};
|
|
5823
5824
|
} | {
|
|
5824
|
-
data:
|
|
5825
|
+
data: jose.JSONWebKeySet;
|
|
5825
5826
|
error: null;
|
|
5826
5827
|
}>;
|
|
5827
5828
|
} & {
|
package/dist/index.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { createAccessControl } from 'better-auth/plugins/access';
|
|
|
6
6
|
import { defaultStatements } from 'better-auth/plugins/organization/access';
|
|
7
7
|
export { BetterFetchError as APIError } from '@better-fetch/fetch';
|
|
8
8
|
|
|
9
|
-
const version = "1.7.
|
|
9
|
+
const version = "1.7.2";
|
|
10
10
|
|
|
11
11
|
const statements = {
|
|
12
12
|
...defaultStatements,
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"name": "@meistrari/auth-core",
|
|
3
|
+
"version": "1.7.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"import": "./dist/index.mjs"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.mjs",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "unbuild"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@better-auth/sso": "1.4.7",
|
|
21
|
+
"better-auth": "1.4.7",
|
|
22
|
+
"jose": "6.1.0",
|
|
23
|
+
"nanostores": "1.0.1",
|
|
24
|
+
"@better-fetch/fetch": "1.1.21",
|
|
25
|
+
"better-call": "1.1.5"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "latest",
|
|
29
|
+
"typescript": "5.9.2",
|
|
30
|
+
"unbuild": "3.6.1"
|
|
9
31
|
}
|
|
10
|
-
},
|
|
11
|
-
"main": "./dist/index.mjs",
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
|
-
"files": [
|
|
14
|
-
"dist"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "unbuild"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@better-auth/sso": "1.4.7",
|
|
21
|
-
"better-auth": "1.4.7",
|
|
22
|
-
"jose": "6.1.0",
|
|
23
|
-
"nanostores": "1.0.1",
|
|
24
|
-
"@better-fetch/fetch": "1.1.21",
|
|
25
|
-
"better-call": "1.1.5"
|
|
26
|
-
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@types/node": "latest",
|
|
29
|
-
"typescript": "5.9.2",
|
|
30
|
-
"unbuild": "3.6.1"
|
|
31
|
-
}
|
|
32
32
|
}
|