@shellicar/svelte-adapter-azure-functions 0.3.0 → 1.0.0
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/LICENSE +1 -1
- package/dist/adapter.js +1 -1
- package/dist/adapter.js.map +1 -1
- package/dist/ambient.d.js.map +1 -1
- package/dist/chunk-42KILSBR.js +1 -1
- package/dist/chunk-42KILSBR.js.map +1 -1
- package/dist/chunk-6TUT2TP2.js.map +1 -1
- package/dist/chunk-AW5NC2LL.js +1 -1
- package/dist/chunk-AW5NC2LL.js.map +1 -1
- package/dist/chunk-GKOGVGYC.js +1 -1
- package/dist/chunk-GKOGVGYC.js.map +1 -1
- package/dist/chunk-JITMWCAX.js +1 -1
- package/dist/chunk-JITMWCAX.js.map +1 -1
- package/dist/chunk-UZCYXPAL.js +1 -1
- package/dist/chunk-UZCYXPAL.js.map +1 -1
- package/dist/defaults.js +1 -1
- package/dist/defaults.js.map +1 -1
- package/dist/handler.js +1 -1
- package/dist/handler.js.map +1 -1
- package/dist/headers.js +1 -1
- package/dist/headers.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/shims.js +1 -1
- package/dist/shims.js.map +1 -1
- package/dist/trigger.js +178 -173
- package/dist/trigger.js.map +1 -1
- package/dist/types.js.map +1 -1
- package/files/local.settings.json +6 -0
- package/package.json +15 -13
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types.ts"],"sourcesContent":["// https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-user-identities#decoding-the-client-principal-header\n\nexport type ClientPrincipalClaim = {\n /**\n * Type\n */\n typ: string;\n /**\n * Value\n */\n val: string;\n};\n\nexport type ClientPrincipal = {\n /**\n * Identity Provider\n */\n auth_typ: string;\n /**\n * Claims\n */\n claims: ClientPrincipalClaim[];\n /**\n * Name Claim Type\n */\n name_typ: string;\n /**\n * Role Claim Type\n */\n role_typ: string;\n};\n"]
|
|
1
|
+
{"version":3,"sources":["../src/types.ts"],"names":[],"mappings":";AAAA,aAAA,EAAA","file":"types.js","sourcesContent":["// https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-user-identities#decoding-the-client-principal-header\n\nexport type ClientPrincipalClaim = {\n /**\n * Type\n */\n typ: string;\n /**\n * Value\n */\n val: string;\n};\n\nexport type ClientPrincipal = {\n /**\n * Identity Provider\n */\n auth_typ: string;\n /**\n * Claims\n */\n claims: ClientPrincipalClaim[];\n /**\n * Name Claim Type\n */\n name_typ: string;\n /**\n * Role Claim Type\n */\n role_typ: string;\n};\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shellicar/svelte-adapter-azure-functions",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Stephen Hellicar",
|
|
@@ -29,25 +29,27 @@
|
|
|
29
29
|
],
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
"import": {
|
|
33
|
+
"typess": "./dist/index.d.ts",
|
|
34
|
+
"default": "./dist/index.js"
|
|
35
|
+
}
|
|
35
36
|
}
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
|
-
"@azure/functions": "^4.
|
|
39
|
-
"@
|
|
40
|
-
"@
|
|
39
|
+
"@azure/functions": "^4.7.3",
|
|
40
|
+
"@shellicar/build-clean": "1.0.0-preview.5",
|
|
41
|
+
"@sveltejs/kit": "^2.36.2",
|
|
42
|
+
"@types/node": "^24.3.0",
|
|
41
43
|
"@types/set-cookie-parser": "^2.4.10",
|
|
42
44
|
"set-cookie-parser": "^2.7.1",
|
|
43
|
-
"terser": "^5.
|
|
44
|
-
"tsup": "^8.
|
|
45
|
-
"tsx": "^4.
|
|
46
|
-
"typescript": "^5.
|
|
47
|
-
"vitest": "^2.
|
|
45
|
+
"terser": "^5.43.1",
|
|
46
|
+
"tsup": "^8.5.0",
|
|
47
|
+
"tsx": "^4.20.5",
|
|
48
|
+
"typescript": "^5.9.2",
|
|
49
|
+
"vitest": "^3.2.4"
|
|
48
50
|
},
|
|
49
51
|
"dependencies": {
|
|
50
|
-
"esbuild": "^0.
|
|
52
|
+
"esbuild": "^0.25.9"
|
|
51
53
|
},
|
|
52
54
|
"scripts": {
|
|
53
55
|
"build": "tsup",
|