@atproto/bsync 0.0.24 → 0.0.26-next.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/CHANGELOG.md +27 -0
- package/bin/migration-create.ts +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +7 -12
- package/dist/client.js.map +1 -1
- package/dist/config.js +16 -24
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts +6 -6
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +8 -36
- package/dist/context.js.map +1 -1
- package/dist/db/index.d.ts +6 -4
- package/dist/db/index.d.ts.map +1 -1
- package/dist/db/index.js +26 -101
- package/dist/db/index.js.map +1 -1
- package/dist/db/migrations/20240108T220751294Z-init.js +4 -8
- package/dist/db/migrations/20240108T220751294Z-init.js.map +1 -1
- package/dist/db/migrations/20240717T224303472Z-notif-ops.js +4 -8
- package/dist/db/migrations/20240717T224303472Z-notif-ops.js.map +1 -1
- package/dist/db/migrations/20250527T022203400Z-add-operation.js +5 -9
- package/dist/db/migrations/20250527T022203400Z-add-operation.js.map +1 -1
- package/dist/db/migrations/20250603T163446567Z-alter-operation.js +2 -6
- package/dist/db/migrations/20250603T163446567Z-alter-operation.js.map +1 -1
- package/dist/db/migrations/index.d.ts +4 -4
- package/dist/db/migrations/index.d.ts.map +1 -1
- package/dist/db/migrations/index.js +4 -40
- package/dist/db/migrations/index.js.map +1 -1
- package/dist/db/migrations/provider.js +2 -11
- package/dist/db/migrations/provider.js.map +1 -1
- package/dist/db/schema/index.d.ts +5 -5
- package/dist/db/schema/index.d.ts.map +1 -1
- package/dist/db/schema/index.js +1 -2
- package/dist/db/schema/index.js.map +1 -1
- package/dist/db/schema/mute_item.js +1 -4
- package/dist/db/schema/mute_item.js.map +1 -1
- package/dist/db/schema/mute_op.d.ts +1 -1
- package/dist/db/schema/mute_op.d.ts.map +1 -1
- package/dist/db/schema/mute_op.js +2 -5
- package/dist/db/schema/mute_op.js.map +1 -1
- package/dist/db/schema/notif_item.js +1 -4
- package/dist/db/schema/notif_item.js.map +1 -1
- package/dist/db/schema/notif_op.js +2 -5
- package/dist/db/schema/notif_op.js.map +1 -1
- package/dist/db/schema/operation.d.ts +2 -2
- package/dist/db/schema/operation.d.ts.map +1 -1
- package/dist/db/schema/operation.js +2 -5
- package/dist/db/schema/operation.js.map +1 -1
- package/dist/db/types.d.ts +3 -1
- package/dist/db/types.d.ts.map +1 -1
- package/dist/db/types.js +1 -2
- package/dist/db/types.js.map +1 -1
- package/dist/index.d.ts +7 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +37 -88
- package/dist/index.js.map +1 -1
- package/dist/logger.js +8 -11
- package/dist/logger.js.map +1 -1
- package/dist/proto/bsync_connect.d.ts +10 -1
- package/dist/proto/bsync_connect.d.ts.map +1 -1
- package/dist/proto/bsync_connect.js +33 -27
- package/dist/proto/bsync_connect.js.map +1 -1
- package/dist/proto/bsync_pb.d.ts +38 -0
- package/dist/proto/bsync_pb.d.ts.map +1 -1
- package/dist/proto/bsync_pb.js +260 -680
- package/dist/proto/bsync_pb.js.map +1 -1
- package/dist/routes/add-mute-operation.d.ts +2 -2
- package/dist/routes/add-mute-operation.d.ts.map +1 -1
- package/dist/routes/add-mute-operation.js +28 -30
- package/dist/routes/add-mute-operation.js.map +1 -1
- package/dist/routes/add-notif-operation.d.ts +2 -2
- package/dist/routes/add-notif-operation.d.ts.map +1 -1
- package/dist/routes/add-notif-operation.js +14 -16
- package/dist/routes/add-notif-operation.js.map +1 -1
- package/dist/routes/auth.d.ts +1 -1
- package/dist/routes/auth.d.ts.map +1 -1
- package/dist/routes/auth.js +4 -8
- package/dist/routes/auth.js.map +1 -1
- package/dist/routes/delete-operations.d.ts +6 -0
- package/dist/routes/delete-operations.d.ts.map +1 -0
- package/dist/routes/delete-operations.js +36 -0
- package/dist/routes/delete-operations.js.map +1 -0
- package/dist/routes/index.d.ts +1 -1
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +19 -22
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/put-operation.d.ts +2 -2
- package/dist/routes/put-operation.d.ts.map +1 -1
- package/dist/routes/put-operation.js +24 -37
- package/dist/routes/put-operation.js.map +1 -1
- package/dist/routes/scan-mute-operations.d.ts +2 -2
- package/dist/routes/scan-mute-operations.d.ts.map +1 -1
- package/dist/routes/scan-mute-operations.js +13 -15
- package/dist/routes/scan-mute-operations.js.map +1 -1
- package/dist/routes/scan-notif-operations.d.ts +2 -2
- package/dist/routes/scan-notif-operations.d.ts.map +1 -1
- package/dist/routes/scan-notif-operations.js +13 -15
- package/dist/routes/scan-notif-operations.js.map +1 -1
- package/dist/routes/scan-operations.d.ts +2 -2
- package/dist/routes/scan-operations.d.ts.map +1 -1
- package/dist/routes/scan-operations.js +13 -15
- package/dist/routes/scan-operations.js.map +1 -1
- package/dist/routes/util.d.ts +1 -0
- package/dist/routes/util.d.ts.map +1 -1
- package/dist/routes/util.js +21 -17
- package/dist/routes/util.js.map +1 -1
- package/{jest.config.js → jest.config.cjs} +8 -1
- package/package.json +14 -9
- package/proto/bsync.proto +10 -0
- package/src/client.ts +1 -1
- package/src/context.ts +7 -7
- package/src/db/index.ts +12 -8
- package/src/db/migrations/index.ts +4 -4
- package/src/db/schema/index.ts +5 -5
- package/src/db/schema/mute_op.ts +1 -1
- package/src/db/schema/operation.ts +2 -2
- package/src/db/types.ts +3 -1
- package/src/index.ts +17 -13
- package/src/proto/bsync_connect.ts +10 -1
- package/src/proto/bsync_pb.ts +80 -0
- package/src/routes/add-mute-operation.ts +10 -7
- package/src/routes/add-notif-operation.ts +7 -7
- package/src/routes/auth.ts +1 -1
- package/src/routes/delete-operations.ts +45 -0
- package/src/routes/index.ts +10 -8
- package/src/routes/put-operation.ts +12 -24
- package/src/routes/scan-mute-operations.ts +6 -6
- package/src/routes/scan-notif-operations.ts +6 -6
- package/src/routes/scan-operations.ts +6 -6
- package/src/routes/util.ts +16 -0
- package/tests/delete-operations.test.ts +108 -0
- package/tests/mutes.test.ts +2 -2
- package/tests/notifications.test.ts +2 -2
- package/tests/operations.test.ts +2 -2
- package/tsconfig.build.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/tsconfig.tests.json +1 -1
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { Code, ConnectError, ServiceImpl } from '@connectrpc/connect'
|
|
2
2
|
import { sql } from 'kysely'
|
|
3
|
-
import {
|
|
4
|
-
import { AppContext } from '../context'
|
|
5
|
-
import { Database } from '../db'
|
|
6
|
-
import {
|
|
7
|
-
|
|
3
|
+
import { ensureValidRecordKey } from '@atproto/syntax'
|
|
4
|
+
import { AppContext } from '../context.js'
|
|
5
|
+
import { Database } from '../db/index.js'
|
|
6
|
+
import {
|
|
7
|
+
OperationMethod,
|
|
8
|
+
createOperationChannel,
|
|
9
|
+
} from '../db/schema/operation.js'
|
|
10
|
+
import { Service } from '../proto/bsync_connect.js'
|
|
8
11
|
import {
|
|
9
12
|
Method,
|
|
10
13
|
PutOperationRequest,
|
|
11
14
|
PutOperationResponse,
|
|
12
|
-
} from '../proto/bsync_pb'
|
|
13
|
-
import { authWithApiKey } from './auth'
|
|
14
|
-
import { isValidDid } from './util'
|
|
15
|
+
} from '../proto/bsync_pb.js'
|
|
16
|
+
import { authWithApiKey } from './auth.js'
|
|
17
|
+
import { isValidDid, validateNamespace } from './util.js'
|
|
15
18
|
|
|
16
19
|
export default (ctx: AppContext): Partial<ServiceImpl<typeof Service>> => ({
|
|
17
20
|
async putOperation(req, handlerCtx) {
|
|
@@ -103,25 +106,10 @@ const validateOp = (req: PutOperationRequest): Operation => {
|
|
|
103
106
|
return req as Operation
|
|
104
107
|
}
|
|
105
108
|
|
|
106
|
-
const validateNamespace = (namespace: string): void => {
|
|
107
|
-
const parts = namespace.split('#')
|
|
108
|
-
|
|
109
|
-
if (parts.length !== 1 && parts.length !== 2) {
|
|
110
|
-
throw new Error('namespace must be in the format "nsid[#fragment]"')
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
const [nsid, fragment] = parts
|
|
114
|
-
|
|
115
|
-
ensureValidNsid(nsid)
|
|
116
|
-
if (fragment && !/^[a-zA-Z][a-zA-Z0-9]*$/.test(fragment)) {
|
|
117
|
-
throw new Error('namespace fragment must be a valid identifier')
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
109
|
type Operation = {
|
|
122
110
|
actorDid: string
|
|
123
111
|
namespace: string
|
|
124
112
|
key: string
|
|
125
|
-
payload: Uint8Array
|
|
113
|
+
payload: Uint8Array<ArrayBuffer>
|
|
126
114
|
method: OperationMethod
|
|
127
115
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { once } from 'node:events'
|
|
2
2
|
import { ServiceImpl } from '@connectrpc/connect'
|
|
3
|
-
import { AppContext } from '../context'
|
|
4
|
-
import { createMuteOpChannel } from '../db/schema/mute_op'
|
|
5
|
-
import { Service } from '../proto/bsync_connect'
|
|
6
|
-
import { ScanMuteOperationsResponse } from '../proto/bsync_pb'
|
|
7
|
-
import { authWithApiKey } from './auth'
|
|
8
|
-
import { combineSignals, validCursor } from './util'
|
|
3
|
+
import { AppContext } from '../context.js'
|
|
4
|
+
import { createMuteOpChannel } from '../db/schema/mute_op.js'
|
|
5
|
+
import { Service } from '../proto/bsync_connect.js'
|
|
6
|
+
import { ScanMuteOperationsResponse } from '../proto/bsync_pb.js'
|
|
7
|
+
import { authWithApiKey } from './auth.js'
|
|
8
|
+
import { combineSignals, validCursor } from './util.js'
|
|
9
9
|
|
|
10
10
|
export default (ctx: AppContext): Partial<ServiceImpl<typeof Service>> => ({
|
|
11
11
|
async scanMuteOperations(req, handlerCtx) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { once } from 'node:events'
|
|
2
2
|
import { ServiceImpl } from '@connectrpc/connect'
|
|
3
|
-
import { AppContext } from '../context'
|
|
4
|
-
import { createNotifOpChannel } from '../db/schema/notif_op'
|
|
5
|
-
import { Service } from '../proto/bsync_connect'
|
|
6
|
-
import { ScanNotifOperationsResponse } from '../proto/bsync_pb'
|
|
7
|
-
import { authWithApiKey } from './auth'
|
|
8
|
-
import { combineSignals, validCursor } from './util'
|
|
3
|
+
import { AppContext } from '../context.js'
|
|
4
|
+
import { createNotifOpChannel } from '../db/schema/notif_op.js'
|
|
5
|
+
import { Service } from '../proto/bsync_connect.js'
|
|
6
|
+
import { ScanNotifOperationsResponse } from '../proto/bsync_pb.js'
|
|
7
|
+
import { authWithApiKey } from './auth.js'
|
|
8
|
+
import { combineSignals, validCursor } from './util.js'
|
|
9
9
|
|
|
10
10
|
export default (ctx: AppContext): Partial<ServiceImpl<typeof Service>> => ({
|
|
11
11
|
async scanNotifOperations(req, handlerCtx) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { once } from 'node:events'
|
|
2
2
|
import { ServiceImpl } from '@connectrpc/connect'
|
|
3
|
-
import { AppContext } from '../context'
|
|
4
|
-
import { createOperationChannel } from '../db/schema/operation'
|
|
5
|
-
import { Service } from '../proto/bsync_connect'
|
|
6
|
-
import { ScanOperationsResponse } from '../proto/bsync_pb'
|
|
7
|
-
import { authWithApiKey } from './auth'
|
|
8
|
-
import { combineSignals, validCursor } from './util'
|
|
3
|
+
import { AppContext } from '../context.js'
|
|
4
|
+
import { createOperationChannel } from '../db/schema/operation.js'
|
|
5
|
+
import { Service } from '../proto/bsync_connect.js'
|
|
6
|
+
import { ScanOperationsResponse } from '../proto/bsync_pb.js'
|
|
7
|
+
import { authWithApiKey } from './auth.js'
|
|
8
|
+
import { combineSignals, validCursor } from './util.js'
|
|
9
9
|
|
|
10
10
|
export default (ctx: AppContext): Partial<ServiceImpl<typeof Service>> => ({
|
|
11
11
|
async scanOperations(req, handlerCtx) {
|
package/src/routes/util.ts
CHANGED
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
InvalidDidError,
|
|
4
4
|
ensureValidAtUri,
|
|
5
5
|
ensureValidDid,
|
|
6
|
+
ensureValidNsid,
|
|
6
7
|
} from '@atproto/syntax'
|
|
7
8
|
|
|
8
9
|
export const validCursor = (cursor: string): number | null => {
|
|
@@ -49,3 +50,18 @@ export const isValidAtUri = (uri: string) => {
|
|
|
49
50
|
return false
|
|
50
51
|
}
|
|
51
52
|
}
|
|
53
|
+
|
|
54
|
+
export const validateNamespace = (namespace: string): void => {
|
|
55
|
+
const parts = namespace.split('#')
|
|
56
|
+
|
|
57
|
+
if (parts.length !== 1 && parts.length !== 2) {
|
|
58
|
+
throw new Error('namespace must be in the format "nsid[#fragment]"')
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const [nsid, fragment] = parts
|
|
62
|
+
|
|
63
|
+
ensureValidNsid(nsid)
|
|
64
|
+
if (fragment && !/^[a-zA-Z][a-zA-Z0-9]*$/.test(fragment)) {
|
|
65
|
+
throw new Error('namespace fragment must be a valid identifier')
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import getPort from 'get-port'
|
|
2
|
+
import {
|
|
3
|
+
BsyncClient,
|
|
4
|
+
BsyncService,
|
|
5
|
+
Database,
|
|
6
|
+
authWithApiKey,
|
|
7
|
+
createClient,
|
|
8
|
+
envToCfg,
|
|
9
|
+
} from '../src/index.js'
|
|
10
|
+
import { Method } from '../src/proto/bsync_pb.js'
|
|
11
|
+
|
|
12
|
+
describe('operations', () => {
|
|
13
|
+
let bsync: BsyncService
|
|
14
|
+
let client: BsyncClient
|
|
15
|
+
|
|
16
|
+
const validPayload0 = Buffer.from(JSON.stringify({ value: 0 }))
|
|
17
|
+
const validPayload1 = Buffer.from(JSON.stringify({ value: 1 }))
|
|
18
|
+
|
|
19
|
+
beforeAll(async () => {
|
|
20
|
+
bsync = await BsyncService.create(
|
|
21
|
+
envToCfg({
|
|
22
|
+
port: await getPort(),
|
|
23
|
+
dbUrl: process.env.DB_POSTGRES_URL,
|
|
24
|
+
dbSchema: 'bsync_delete_operations',
|
|
25
|
+
apiKeys: ['key-1'],
|
|
26
|
+
longPollTimeoutMs: 500,
|
|
27
|
+
}),
|
|
28
|
+
)
|
|
29
|
+
await bsync.ctx.db.migrateToLatestOrThrow()
|
|
30
|
+
await bsync.start()
|
|
31
|
+
client = createClient({
|
|
32
|
+
httpVersion: '1.1',
|
|
33
|
+
baseUrl: `http://localhost:${bsync.ctx.cfg.service.port}`,
|
|
34
|
+
interceptors: [authWithApiKey('key-1')],
|
|
35
|
+
})
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
afterAll(async () => {
|
|
39
|
+
await bsync.destroy()
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
beforeEach(async () => {
|
|
43
|
+
await clearOps(bsync.ctx.db)
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
it('deletes', async () => {
|
|
47
|
+
const res1 = await client.putOperation({
|
|
48
|
+
actorDid: 'did:example:a',
|
|
49
|
+
namespace: 'app.bsky.some.col',
|
|
50
|
+
key: 'key1',
|
|
51
|
+
method: Method.CREATE,
|
|
52
|
+
payload: validPayload0,
|
|
53
|
+
})
|
|
54
|
+
const res2 = await client.putOperation({
|
|
55
|
+
actorDid: 'did:example:a',
|
|
56
|
+
namespace: 'app.bsky.other.col#id',
|
|
57
|
+
key: 'key1',
|
|
58
|
+
method: Method.UPDATE,
|
|
59
|
+
payload: validPayload1,
|
|
60
|
+
})
|
|
61
|
+
|
|
62
|
+
expect(res1.operation?.id).toBe('1')
|
|
63
|
+
expect(res2.operation?.id).toBe('2')
|
|
64
|
+
expect(await dumpOps(bsync.ctx.db)).toStrictEqual([
|
|
65
|
+
{
|
|
66
|
+
id: 1,
|
|
67
|
+
actorDid: 'did:example:a',
|
|
68
|
+
namespace: 'app.bsky.some.col',
|
|
69
|
+
key: 'key1',
|
|
70
|
+
method: Method.CREATE,
|
|
71
|
+
payload: validPayload0,
|
|
72
|
+
createdAt: expect.any(Date),
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
id: 2,
|
|
76
|
+
actorDid: 'did:example:a',
|
|
77
|
+
namespace: 'app.bsky.other.col#id',
|
|
78
|
+
key: 'key1',
|
|
79
|
+
method: Method.UPDATE,
|
|
80
|
+
payload: validPayload1,
|
|
81
|
+
createdAt: expect.any(Date),
|
|
82
|
+
},
|
|
83
|
+
])
|
|
84
|
+
|
|
85
|
+
await client.deleteOperationsByActorAndNamespace({
|
|
86
|
+
actorDid: 'did:example:a',
|
|
87
|
+
namespace: 'app.bsky.some.col',
|
|
88
|
+
})
|
|
89
|
+
await client.deleteOperationsByActorAndNamespace({
|
|
90
|
+
actorDid: 'did:example:a',
|
|
91
|
+
namespace: 'app.bsky.other.col#id',
|
|
92
|
+
})
|
|
93
|
+
|
|
94
|
+
expect(await dumpOps(bsync.ctx.db)).toStrictEqual([])
|
|
95
|
+
})
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
const dumpOps = async (db: Database) => {
|
|
99
|
+
return db.db
|
|
100
|
+
.selectFrom('operation')
|
|
101
|
+
.selectAll()
|
|
102
|
+
.orderBy('id', 'asc')
|
|
103
|
+
.execute()
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
const clearOps = async (db: Database) => {
|
|
107
|
+
await db.db.deleteFrom('operation').execute()
|
|
108
|
+
}
|
package/tests/mutes.test.ts
CHANGED
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
authWithApiKey,
|
|
9
9
|
createClient,
|
|
10
10
|
envToCfg,
|
|
11
|
-
} from '../src'
|
|
12
|
-
import { MuteOperation, MuteOperation_Type } from '../src/proto/bsync_pb'
|
|
11
|
+
} from '../src/index.js'
|
|
12
|
+
import { MuteOperation, MuteOperation_Type } from '../src/proto/bsync_pb.js'
|
|
13
13
|
|
|
14
14
|
describe('mutes', () => {
|
|
15
15
|
let bsync: BsyncService
|
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
authWithApiKey,
|
|
9
9
|
createClient,
|
|
10
10
|
envToCfg,
|
|
11
|
-
} from '../src'
|
|
12
|
-
import { NotifOperation } from '../src/proto/bsync_pb'
|
|
11
|
+
} from '../src/index.js'
|
|
12
|
+
import { NotifOperation } from '../src/proto/bsync_pb.js'
|
|
13
13
|
|
|
14
14
|
describe('notifications', () => {
|
|
15
15
|
let bsync: BsyncService
|
package/tests/operations.test.ts
CHANGED
|
@@ -9,8 +9,8 @@ import {
|
|
|
9
9
|
authWithApiKey,
|
|
10
10
|
createClient,
|
|
11
11
|
envToCfg,
|
|
12
|
-
} from '../src'
|
|
13
|
-
import { Method, Operation } from '../src/proto/bsync_pb'
|
|
12
|
+
} from '../src/index.js'
|
|
13
|
+
import { Method, Operation } from '../src/proto/bsync_pb.js'
|
|
14
14
|
|
|
15
15
|
describe('operations', () => {
|
|
16
16
|
let bsync: BsyncService
|
package/tsconfig.build.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/client.ts","./src/config.ts","./src/context.ts","./src/index.ts","./src/logger.ts","./src/db/index.ts","./src/db/types.ts","./src/db/migrations/
|
|
1
|
+
{"root":["./src/client.ts","./src/config.ts","./src/context.ts","./src/index.ts","./src/logger.ts","./src/db/index.ts","./src/db/types.ts","./src/db/migrations/20240108t220751294z-init.ts","./src/db/migrations/20240717t224303472z-notif-ops.ts","./src/db/migrations/20250527t022203400z-add-operation.ts","./src/db/migrations/20250603t163446567z-alter-operation.ts","./src/db/migrations/index.ts","./src/db/migrations/provider.ts","./src/db/schema/index.ts","./src/db/schema/mute_item.ts","./src/db/schema/mute_op.ts","./src/db/schema/notif_item.ts","./src/db/schema/notif_op.ts","./src/db/schema/operation.ts","./src/proto/bsync_connect.ts","./src/proto/bsync_pb.ts","./src/routes/add-mute-operation.ts","./src/routes/add-notif-operation.ts","./src/routes/auth.ts","./src/routes/delete-operations.ts","./src/routes/index.ts","./src/routes/put-operation.ts","./src/routes/scan-mute-operations.ts","./src/routes/scan-notif-operations.ts","./src/routes/scan-operations.ts","./src/routes/util.ts","../../tsconfig/cjs-default-exports.d.ts"],"version":"6.0.3"}
|
package/tsconfig.tests.json
CHANGED