Skip to content

Commit a1c356a

Browse files
committed
fix(schema): update custom auth data schema across multiple packages
1 parent bd23151 commit a1c356a

File tree

35 files changed

+132
-24
lines changed

35 files changed

+132
-24
lines changed

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"four-badgers-heal",
2626
"light-beds-push",
2727
"stupid-lies-invent",
28+
"thirty-candles-try",
2829
"witty-news-join"
2930
]
3031
}

.changeset/thirty-candles-try.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
'@lit-protocol/access-control-conditions': patch
3+
'@lit-protocol/access-control-conditions-schemas': patch
4+
'@lit-protocol/auth': patch
5+
'@lit-protocol/auth-helpers': patch
6+
'@lit-protocol/auth-services': patch
7+
'@lit-protocol/constants': patch
8+
'@lit-protocol/crypto': patch
9+
'@lit-protocol/lit-client': patch
10+
'@lit-protocol/logger': patch
11+
'@lit-protocol/networks': patch
12+
'@lit-protocol/schemas': patch
13+
'@lit-protocol/types': patch
14+
'@lit-protocol/wasm': patch
15+
'@lit-protocol/wrapped-keys': patch
16+
'@lit-protocol/wrapped-keys-lit-actions': patch
17+
---
18+
19+
fix custom auth data schema

.github/workflows/e2e.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
run: NETWORK=naga-dev bun run test:e2e all
5252
timeout-minutes: 10
5353

54-
- name: Run health check for naga-test
55-
run: NETWORK=naga-test bun run test:e2e all
56-
timeout-minutes: 10
54+
# - name: Run health check for naga-test
55+
# run: NETWORK=naga-test bun run test:e2e all
56+
# timeout-minutes: 10
5757

58-
- name: Run health check for naga-staging
59-
run: NETWORK=naga-staging bun run test:e2e all
60-
timeout-minutes: 10
58+
# - name: Run health check for naga-staging
59+
# run: NETWORK=naga-staging bun run test:e2e all
60+
# timeout-minutes: 10

e2e/src/e2e.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ describe('all', () => {
5757
it('executeJs', () =>
5858
createExecuteJsTest(ctx, () => ctx.aliceEoaAuthContext)());
5959
it('viewPKPsByAddress', () => createViewPKPsByAddressTest(ctx)());
60-
it('viewPKPsByAuthData', () =>
61-
createViewPKPsByAuthDataTest(ctx)());
60+
it('viewPKPsByAuthData', () => createViewPKPsByAuthDataTest(ctx)());
6261
it('pkpEncryptDecrypt', () =>
6362
createPkpEncryptDecryptTest(ctx, () => ctx.aliceEoaAuthContext)());
6463
it('encryptDecryptFlow', () =>

e2e/src/init.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,6 @@ export const init = async (
228228
userId: 'eve',
229229
});
230230

231-
232231
const { pkpData } = await litClient.mintWithCustomAuth({
233232
account: eveViemAccount,
234233
authData: eveCustomAuthData,

packages/access-control-conditions-schemas/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lit-protocol/access-control-conditions-schemas
22

3+
## 8.0.0-canary.4
4+
5+
### Patch Changes
6+
7+
- fix custom auth data schema
8+
39
## 8.0.0-canary.3
410

511
### Patch Changes

packages/access-control-conditions-schemas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"tags": [
2121
"universal"
2222
],
23-
"version": "8.0.0-canary.3",
23+
"version": "8.0.0-canary.4",
2424
"main": "./src/index.js",
2525
"typings": "./src/index.d.ts",
2626
"dependencies": {

packages/access-control-conditions/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lit-protocol/access-control-conditions
22

3+
## 8.0.0-canary.4
4+
5+
### Patch Changes
6+
7+
- fix custom auth data schema
8+
39
## 8.0.0-canary.3
410

511
### Patch Changes

packages/access-control-conditions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"tags": [
2222
"universal"
2323
],
24-
"version": "8.0.0-canary.3",
24+
"version": "8.0.0-canary.4",
2525
"main": "./src/index.js",
2626
"typings": "./src/index.d.ts",
2727
"dependencies": {

packages/auth-helpers/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lit-protocol/auth-helpers
22

3+
## 8.0.0-canary.4
4+
5+
### Patch Changes
6+
7+
- fix custom auth data schema
8+
39
## 8.0.0-canary.3
410

511
### Patch Changes

0 commit comments

Comments
 (0)