diff --git a/composites/points/README.md b/composites/points/README.md new file mode 100644 index 0000000..585ae42 --- /dev/null +++ b/composites/points/README.md @@ -0,0 +1,13 @@ +# Points composite + +Composite for interfaces and simple models to interact with points on Ceramic using ComposeDB. + +## Installation + +```sh +npm install @ceramic-solutions/points-composite +``` + +## License + +Dual licensed under MIT and Apache 2 diff --git a/composites/points/package.json b/composites/points/package.json index 0106f67..f986700 100644 --- a/composites/points/package.json +++ b/composites/points/package.json @@ -1,11 +1,11 @@ { - "name": "@composexp/points-composite", + "name": "@ceramic-solutions/points-composite", "version": "0.1.0", "author": "3Box Labs", "license": "(Apache-2.0 OR MIT)", "repository": { "type": "git", - "url": "https://github.com/ceramicstudio/solutions", + "url": "https://github.com/ceramicstudio/solutions-sdk", "directory": "composites/points" }, "type": "module", @@ -35,7 +35,7 @@ }, "devDependencies": { "@composedb/types": "^0.7.1", - "@composexp/composite-utils": "workspace:^", + "@ceramic-solutions/composite-utils": "workspace:^", "@types/node": "^20.12.7", "tsx": "^4.7.2" } diff --git a/composites/points/scripts/write-composite.ts b/composites/points/scripts/write-composite.ts index bc5badd..fc8f19f 100644 --- a/composites/points/scripts/write-composite.ts +++ b/composites/points/scripts/write-composite.ts @@ -1,6 +1,6 @@ import { join } from 'node:path' import { fileURLToPath } from 'node:url' -import { writeComposite } from '@composexp/composite-utils' +import { writeComposite } from '@ceramic-solutions/composite-utils' const PACKAGE_PATH = fileURLToPath(new URL('..', import.meta.url)) diff --git a/demo/server/package.json b/demo/server/package.json index 83143be..3e62e05 100644 --- a/demo/server/package.json +++ b/demo/server/package.json @@ -1,12 +1,12 @@ { - "name": "@composexp/server", + "name": "@ceramic-solutions/server-demo", "version": "0.1.0", "private": true, "author": "3Box Labs", "license": "(Apache-2.0 OR MIT)", "repository": { "type": "git", - "url": "https://github.com/ceramicstudio/solutions", + "url": "https://github.com/ceramicstudio/solutions-sdk", "directory": "demo/server" }, "type": "module", @@ -35,15 +35,15 @@ "start": "node ." }, "devDependencies": { + "@ceramic-solutions/ceramic-utils": "workspace:^", + "@ceramic-solutions/did-utils": "workspace:^", + "@ceramic-solutions/points": "workspace:^", "@types/cors": "^2.8.15", "@types/express": "^4.17.20", - "key-did-provider-ed25519": "^2.0.1", - "key-did-resolver": "^2.1.3", + "key-did-provider-ed25519": "^4.0.2", + "key-did-resolver": "^4.0.0", "nodemon": "^3.1.0", "ts-node": "^10.9.1", - "@composexp/points": "workspace:^", - "@composexp/ceramic-utils": "workspace:^", - "@composexp/did-utils": "workspace:^", "uint8arrays": "^5.0.3" }, "dependencies": { diff --git a/demo/server/src/controllers/multiController.ts b/demo/server/src/controllers/multiController.ts index 2a0e238..97f83f0 100644 --- a/demo/server/src/controllers/multiController.ts +++ b/demo/server/src/controllers/multiController.ts @@ -1,6 +1,6 @@ import { getContext } from '../utils/context.js' import { Request, Response, NextFunction } from 'express' -import { PointsWriter, PointsReader } from '@composexp/points' +import { PointsWriter, PointsReader } from '@ceramic-solutions/points' type ContextAggregationContent = { recipient: string diff --git a/demo/server/src/controllers/singleController.ts b/demo/server/src/controllers/singleController.ts index 8f1c941..144e795 100644 --- a/demo/server/src/controllers/singleController.ts +++ b/demo/server/src/controllers/singleController.ts @@ -1,6 +1,6 @@ import { getContext } from '../utils/context.js' import { Request, Response, NextFunction } from 'express' -import { SinglePointReader, SinglePointWriter } from '@composexp/points' +import { SinglePointReader, SinglePointWriter } from '@ceramic-solutions/points' export interface CreateSinglePointRequest extends Request { body: { diff --git a/demo/server/src/utils/context.ts b/demo/server/src/utils/context.ts index 31413ef..7ee2e3c 100644 --- a/demo/server/src/utils/context.ts +++ b/demo/server/src/utils/context.ts @@ -1,4 +1,4 @@ -import { getAuthenticatedDID } from '@composexp/did-utils' +import { getAuthenticatedDID } from '@ceramic-solutions/did-utils' import { fromString } from 'uint8arrays' import { CeramicClient } from '@ceramicnetwork/http-client' import 'dotenv/config.js' @@ -14,7 +14,7 @@ export const getContext = async (): Promise => { const aggregationModelID: string = process.env.AGGREGATION_ID || '' //eslint-disable-next-line - const key = fromString(CERAMIC_PRIVATE_KEY, 'base16') as Uint8Array + const key = fromString(CERAMIC_PRIVATE_KEY, 'base16') as Uint8Array const ceramic = new CeramicClient(CERAMIC_URL) ceramic.did = await getAuthenticatedDID(key) diff --git a/demo/simple/package.json b/demo/simple/package.json index c5d5472..ea93036 100644 --- a/demo/simple/package.json +++ b/demo/simple/package.json @@ -3,8 +3,8 @@ "version": "1.0.0", "dependencies": { "@ceramicnetwork/http-client": "^5.6.0", - "@composexp/did-utils": "workspace:^", - "@composexp/points": "workspace:^", + "@ceramic-solutions/did-utils": "workspace:^", + "@ceramic-solutions/points": "workspace:^", "uint8arrays": "^5.0.3" } } diff --git a/docs/api/classes/points.PointsReader.md b/docs/api/classes/points.PointsReader.md index b7cb614..9c6ee4b 100644 --- a/docs/api/classes/points.PointsReader.md +++ b/docs/api/classes/points.PointsReader.md @@ -61,7 +61,7 @@ #### Defined in -[libraries/points/src/points-reader.ts:45](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L45) +[libraries/points/src/points-reader.ts:45](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L45) ## Accessors @@ -75,7 +75,7 @@ #### Defined in -[libraries/points/src/points-reader.ts:59](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L59) +[libraries/points/src/points-reader.ts:59](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L59) ___ @@ -89,7 +89,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:63](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L63) +[libraries/points/src/points-reader.ts:63](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L63) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:67](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L67) +[libraries/points/src/points-reader.ts:67](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L67) ___ @@ -117,7 +117,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:71](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L71) +[libraries/points/src/points-reader.ts:71](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L71) ## Methods @@ -137,7 +137,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:95](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L95) +[libraries/points/src/points-reader.ts:95](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L95) ___ @@ -158,7 +158,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:75](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L75) +[libraries/points/src/points-reader.ts:75](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L75) ___ @@ -179,7 +179,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:87](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L87) +[libraries/points/src/points-reader.ts:87](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L87) ___ @@ -199,7 +199,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:100](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L100) +[libraries/points/src/points-reader.ts:100](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L100) ___ @@ -220,4 +220,4 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:106](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L106) +[libraries/points/src/points-reader.ts:106](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L106) diff --git a/docs/api/classes/points.PointsWriter.md b/docs/api/classes/points.PointsWriter.md index 6cda417..f9cba05 100644 --- a/docs/api/classes/points.PointsWriter.md +++ b/docs/api/classes/points.PointsWriter.md @@ -70,7 +70,7 @@ #### Defined in -[libraries/points/src/points-writer.ts:43](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L43) +[libraries/points/src/points-writer.ts:43](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L43) ## Accessors @@ -88,7 +88,7 @@ PointsReader.aggregationModelID #### Defined in -[libraries/points/src/points-reader.ts:59](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L59) +[libraries/points/src/points-reader.ts:59](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L59) ___ @@ -106,7 +106,7 @@ PointsReader.allocationModelID #### Defined in -[libraries/points/src/points-reader.ts:63](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L63) +[libraries/points/src/points-reader.ts:63](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L63) ___ @@ -124,7 +124,7 @@ PointsReader.ceramic #### Defined in -[libraries/points/src/points-reader.ts:67](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L67) +[libraries/points/src/points-reader.ts:67](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L67) ___ @@ -142,7 +142,7 @@ PointsReader.loader #### Defined in -[libraries/points/src/points-reader.ts:71](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L71) +[libraries/points/src/points-reader.ts:71](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L71) ## Methods @@ -164,7 +164,7 @@ PointsReader.loader #### Defined in -[libraries/points/src/points-writer.ts:50](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L50) +[libraries/points/src/points-writer.ts:50](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L50) ___ @@ -188,7 +188,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:95](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L95) +[libraries/points/src/points-reader.ts:95](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L95) ___ @@ -213,7 +213,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:75](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L75) +[libraries/points/src/points-reader.ts:75](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L75) ___ @@ -238,7 +238,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:87](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L87) +[libraries/points/src/points-reader.ts:87](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L87) ___ @@ -262,7 +262,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:100](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L100) +[libraries/points/src/points-reader.ts:100](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L100) ___ @@ -287,7 +287,7 @@ ___ #### Defined in -[libraries/points/src/points-reader.ts:106](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L106) +[libraries/points/src/points-reader.ts:106](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L106) ___ @@ -307,7 +307,7 @@ ___ #### Defined in -[libraries/points/src/points-writer.ts:62](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L62) +[libraries/points/src/points-writer.ts:62](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L62) ___ @@ -329,7 +329,7 @@ ___ #### Defined in -[libraries/points/src/points-writer.ts:89](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L89) +[libraries/points/src/points-writer.ts:89](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L89) ___ @@ -350,7 +350,7 @@ ___ #### Defined in -[libraries/points/src/points-writer.ts:70](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L70) +[libraries/points/src/points-writer.ts:70](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L70) ___ @@ -377,4 +377,4 @@ ___ #### Defined in -[libraries/points/src/points-writer.ts:31](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L31) +[libraries/points/src/points-writer.ts:31](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L31) diff --git a/docs/api/classes/points.SinglePointReader.md b/docs/api/classes/points.SinglePointReader.md index de0fabc..bcb7105 100644 --- a/docs/api/classes/points.SinglePointReader.md +++ b/docs/api/classes/points.SinglePointReader.md @@ -56,7 +56,7 @@ #### Defined in -[libraries/points/src/single-reader.ts:27](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L27) +[libraries/points/src/single-reader.ts:27](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L27) ## Accessors @@ -70,7 +70,7 @@ #### Defined in -[libraries/points/src/single-reader.ts:37](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L37) +[libraries/points/src/single-reader.ts:37](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L37) ___ @@ -84,7 +84,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:41](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L41) +[libraries/points/src/single-reader.ts:41](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L41) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:45](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L45) +[libraries/points/src/single-reader.ts:45](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L45) ## Methods @@ -118,7 +118,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:61](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L61) +[libraries/points/src/single-reader.ts:61](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L61) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:49](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L49) +[libraries/points/src/single-reader.ts:49](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L49) ___ @@ -153,4 +153,4 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:53](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L53) +[libraries/points/src/single-reader.ts:53](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L53) diff --git a/docs/api/classes/points.SinglePointWriter.md b/docs/api/classes/points.SinglePointWriter.md index 7de34ab..4f6492f 100644 --- a/docs/api/classes/points.SinglePointWriter.md +++ b/docs/api/classes/points.SinglePointWriter.md @@ -63,7 +63,7 @@ #### Defined in -[libraries/points/src/single-writer.ts:33](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-writer.ts#L33) +[libraries/points/src/single-writer.ts:33](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-writer.ts#L33) ## Accessors @@ -81,7 +81,7 @@ SinglePointReader.ceramic #### Defined in -[libraries/points/src/single-reader.ts:37](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L37) +[libraries/points/src/single-reader.ts:37](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L37) ___ @@ -99,7 +99,7 @@ SinglePointReader.loader #### Defined in -[libraries/points/src/single-reader.ts:41](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L41) +[libraries/points/src/single-reader.ts:41](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L41) ___ @@ -117,7 +117,7 @@ SinglePointReader.modelID #### Defined in -[libraries/points/src/single-reader.ts:45](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L45) +[libraries/points/src/single-reader.ts:45](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L45) ## Methods @@ -138,7 +138,7 @@ SinglePointReader.modelID #### Defined in -[libraries/points/src/single-writer.ts:40](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-writer.ts#L40) +[libraries/points/src/single-writer.ts:40](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-writer.ts#L40) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:61](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L61) +[libraries/points/src/single-reader.ts:61](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L61) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:49](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L49) +[libraries/points/src/single-reader.ts:49](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L49) ___ @@ -205,7 +205,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:53](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L53) +[libraries/points/src/single-reader.ts:53](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L53) ___ @@ -225,7 +225,7 @@ ___ #### Defined in -[libraries/points/src/single-writer.ts:47](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-writer.ts#L47) +[libraries/points/src/single-writer.ts:47](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-writer.ts#L47) ___ @@ -251,4 +251,4 @@ ___ #### Defined in -[libraries/points/src/single-writer.ts:24](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-writer.ts#L24) +[libraries/points/src/single-writer.ts:24](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-writer.ts#L24) diff --git a/docs/api/modules/points.md b/docs/api/modules/points.md index 948e500..e3941f1 100644 --- a/docs/api/modules/points.md +++ b/docs/api/modules/points.md @@ -38,7 +38,7 @@ #### Defined in -[libraries/points/src/points-reader.ts:25](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-reader.ts#L25) +[libraries/points/src/points-reader.ts:25](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-reader.ts#L25) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[libraries/points/src/points-writer.ts:13](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L13) +[libraries/points/src/points-writer.ts:13](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L13) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[libraries/points/src/points-writer.ts:20](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/points-writer.ts#L20) +[libraries/points/src/points-writer.ts:20](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/points-writer.ts#L20) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[libraries/points/src/types.ts:3](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/types.ts#L3) +[libraries/points/src/types.ts:3](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/types.ts#L3) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[libraries/points/src/types.ts:9](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/types.ts#L9) +[libraries/points/src/types.ts:9](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/types.ts#L9) ___ @@ -139,7 +139,7 @@ ___ #### Defined in -[libraries/points/src/single-reader.ts:14](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-reader.ts#L14) +[libraries/points/src/single-reader.ts:14](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-reader.ts#L14) ___ @@ -158,7 +158,7 @@ ___ #### Defined in -[libraries/points/src/single-writer.ts:8](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-writer.ts#L8) +[libraries/points/src/single-writer.ts:8](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-writer.ts#L8) ___ @@ -176,4 +176,4 @@ ___ #### Defined in -[libraries/points/src/single-writer.ts:15](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/libraries/points/src/single-writer.ts#L15) +[libraries/points/src/single-writer.ts:15](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/libraries/points/src/single-writer.ts#L15) diff --git a/docs/api/modules/points_composite.md b/docs/api/modules/points_composite.md index 0c2a10f..303a59e 100644 --- a/docs/api/modules/points_composite.md +++ b/docs/api/modules/points_composite.md @@ -14,4 +14,4 @@ #### Defined in -[composites/points/src/definition.ts:3](https://github.com/ceramicstudio/solutions/blob/63cb3ad5f3da236446973238558e1895a955200e/composites/points/src/definition.ts#L3) +[composites/points/src/definition.ts:3](https://github.com/ceramicstudio/solutions-sdk/blob/996989c557810301e582e300ab7215628488db96/composites/points/src/definition.ts#L3) diff --git a/libraries/points/README.md b/libraries/points/README.md index 7d4cb1c..f8877f0 100644 --- a/libraries/points/README.md +++ b/libraries/points/README.md @@ -1,26 +1,12 @@ # Points library -## Installation - -TODO - -## Usage +Simple library to interact with points on Ceramic using ComposeDB. -### Single point vs multiple points per document - -**Symbols** - -🟢 built-in support -🟡 supported by configuration or other APIs -🟠 requires application logic -🔴 implementation constraint +## Installation -| Use case | Single point per document | Multiple points per document | -| ------------------------------ | ------------------------- | ---------------------------- | -| Allocate points | 🔴 only 1 at a time | 🟢 any number at a time | -| Count all points for recipient | 🟢 built-in method | 🟠 needs aggregation | -| Count all points by issuer | 🟡 use Ceramic API | 🟠 needs custom logic | -| Sourcing of points | 🟡 use custom model | 🟡 use custom model | +```sh +npm install @ceramic-solutions/points +``` ## License diff --git a/libraries/points/package.json b/libraries/points/package.json index 51c570b..590e7c5 100644 --- a/libraries/points/package.json +++ b/libraries/points/package.json @@ -1,11 +1,11 @@ { - "name": "@composexp/points", + "name": "@ceramic-solutions/points", "version": "0.1.0", "author": "3Box Labs", "license": "(Apache-2.0 OR MIT)", "repository": { "type": "git", - "url": "https://github.com/ceramicstudio/solutions", + "url": "https://github.com/ceramicstudio/solutions-sdk", "directory": "libraries/points" }, "type": "module", @@ -35,7 +35,7 @@ "dependencies": { "@ceramicnetwork/http-client": "^5.6.0", "@composedb/loader": "^0.7.1", - "@composexp/points-composite": "workspace:^", + "@ceramic-solutions/points-composite": "workspace:^", "dids": "^5.0.2", "key-did-provider-ed25519": "^4.0.2", "key-did-resolver": "^4.0.0" @@ -43,9 +43,9 @@ "devDependencies": { "@ceramicnetwork/common": "^5.5.0", "@composedb/types": "^0.7.1", - "@composexp/ceramic-utils": "workspace:^", - "@composexp/composite-utils": "workspace:^", - "@composexp/did-utils": "workspace:^" + "@ceramic-solutions/ceramic-utils": "workspace:^", + "@ceramic-solutions/composite-utils": "workspace:^", + "@ceramic-solutions/did-utils": "workspace:^" }, "jest": { "extensionsToTreatAsEsm": [ diff --git a/libraries/points/src/points-reader.ts b/libraries/points/src/points-reader.ts index 114ca2c..a9da022 100644 --- a/libraries/points/src/points-reader.ts +++ b/libraries/points/src/points-reader.ts @@ -1,7 +1,7 @@ import type { BaseQuery } from '@ceramicnetwork/common' import { type DeterministicLoadOptions, DocumentLoader } from '@composedb/loader' import type { CeramicAPI, ModelInstanceDocument } from '@composedb/types' -import { definition } from '@composexp/points-composite' +import { definition } from '@ceramic-solutions/points-composite' import { getCeramic } from './ceramic.js' import { getQueryForRecipient, queryConnection } from './query.js' diff --git a/libraries/points/src/single-reader.ts b/libraries/points/src/single-reader.ts index a729140..117c96a 100644 --- a/libraries/points/src/single-reader.ts +++ b/libraries/points/src/single-reader.ts @@ -1,7 +1,7 @@ import type { BaseQuery } from '@ceramicnetwork/common' import { DocumentLoader } from '@composedb/loader' import type { CeramicAPI } from '@composedb/types' -import { definition } from '@composexp/points-composite' +import { definition } from '@ceramic-solutions/points-composite' import { getCeramic } from './ceramic.js' import { getQueryForRecipient, queryConnection } from './query.js' diff --git a/libraries/points/test/lib.test.ts b/libraries/points/test/lib.test.ts index b8590b7..95bdf97 100644 --- a/libraries/points/test/lib.test.ts +++ b/libraries/points/test/lib.test.ts @@ -1,16 +1,16 @@ import { createRequire } from 'node:module' import { CeramicClient } from '@ceramicnetwork/http-client' import { DocumentLoader } from '@composedb/loader' -import { type CeramicContext, getEphemeralCeramic } from '@composexp/ceramic-utils' -import { generatePrivateKey, getAuthenticatedDID } from '@composexp/did-utils' -import { deployComposite } from '@composexp/composite-utils' -import { definition } from '@composexp/points-composite' +import { type CeramicContext, getEphemeralCeramic } from '@ceramic-solutions/ceramic-utils' +import { generatePrivateKey, getAuthenticatedDID } from '@ceramic-solutions/did-utils' +import { deployComposite } from '@ceramic-solutions/composite-utils' +import { definition } from '@ceramic-solutions/points-composite' import { jest } from '@jest/globals' import { PointsReader, PointsWriter, SinglePointReader, SinglePointWriter } from '../src' const require = createRequire(import.meta.url) -const compositePath = require.resolve('@composexp/points-composite/composite.json') +const compositePath = require.resolve('@ceramic-solutions/points-composite/composite.json') describe('points', () => { describe('SinglePointReader class', () => { diff --git a/package.json b/package.json index d2e15a2..af89603 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "test": "turbo run test", "test:ci": "turbo run test:ci", "lint": "turbo run lint", - "build": "pnpm --filter \"@composexp/*\" build:types && turbo run build:js", + "build": "pnpm --filter \"@ceramic-solutions/*\" build:types && turbo run build:js", "prepare": "pnpm build" }, "devDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bc08327..ca1cb53 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.1' +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -16,22 +16,22 @@ importers: version: 0.2.2 '@swc/cli': specifier: ^0.3.12 - version: 0.3.12(@swc/core@1.4.13) + version: 0.3.12(@swc/core@1.4.14) '@swc/core': specifier: ^1.4.13 - version: 1.4.13 + version: 1.4.14 '@swc/jest': specifier: ^0.2.36 - version: 0.2.36(@swc/core@1.4.13) + version: 0.2.36(@swc/core@1.4.14) '@types/jest': specifier: ^29.5.12 version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^7.6.0 - version: 7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.4) + version: 7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': specifier: ^7.6.0 - version: 7.6.0(eslint@8.57.0)(typescript@5.4.4) + version: 7.6.0(eslint@8.57.0)(typescript@5.4.5) del-cli: specifier: ^5.1.0 version: 5.1.0 @@ -40,10 +40,10 @@ importers: version: 8.57.0 eslint-config-3box: specifier: ^1.0.0 - version: 1.0.0(eslint@8.57.0)(jest@29.7.0)(prettier@3.2.5)(typescript@5.4.4) + version: 1.0.0(eslint@8.57.0)(jest@29.7.0)(prettier@3.2.5)(typescript@5.4.5) eslint-plugin-jest: specifier: ^28.2.0 - version: 28.2.0(@typescript-eslint/eslint-plugin@7.6.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.4) + version: 28.2.0(@typescript-eslint/eslint-plugin@7.6.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.5) jest: specifier: ^29.7.0 version: 29.7.0 @@ -55,22 +55,22 @@ importers: version: 1.13.2 typedoc: specifier: 0.25.13 - version: 0.25.13(typescript@5.4.4) + version: 0.25.13(typescript@5.4.5) typedoc-plugin-markdown: specifier: ^3.17.1 version: 3.17.1(typedoc@0.25.13) typescript: specifier: ^5.4.4 - version: 5.4.4 + version: 5.4.5 composites/points: devDependencies: - '@composedb/types': - specifier: ^0.7.1 - version: 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composexp/composite-utils': + '@ceramic-solutions/composite-utils': specifier: workspace:^ version: link:../../utils/composite + '@composedb/types': + specifier: ^0.7.1 + version: 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) '@types/node': specifier: ^20.12.7 version: 20.12.7 @@ -82,7 +82,7 @@ importers: dependencies: '@ceramicnetwork/http-client': specifier: ^5.6.0 - version: 5.6.0(typescript@5.4.4) + version: 5.6.0(typescript@5.4.5) body-parser: specifier: ^1.20.2 version: 1.20.2 @@ -91,7 +91,7 @@ importers: version: 2.8.5 dotenv: specifier: ^16.3.1 - version: 16.3.1 + version: 16.4.5 exec: specifier: ^0.2.1 version: 0.2.1 @@ -102,129 +102,129 @@ importers: specifier: ^4.7.1 version: 4.7.2 devDependencies: - '@composexp/ceramic-utils': + '@ceramic-solutions/ceramic-utils': specifier: workspace:^ version: link:../../utils/ceramic - '@composexp/did-utils': + '@ceramic-solutions/did-utils': specifier: workspace:^ version: link:../../utils/did - '@composexp/points': + '@ceramic-solutions/points': specifier: workspace:^ version: link:../../libraries/points '@types/cors': specifier: ^2.8.15 - version: 2.8.15 + version: 2.8.17 '@types/express': specifier: ^4.17.20 version: 4.17.21 key-did-provider-ed25519: - specifier: ^2.0.1 - version: 2.0.1 + specifier: ^4.0.2 + version: 4.0.2(typescript@5.4.5) key-did-resolver: - specifier: ^2.1.3 - version: 2.1.3 + specifier: ^4.0.0 + version: 4.0.0 nodemon: specifier: ^3.1.0 version: 3.1.0 ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.4.13)(@types/node@20.12.7)(typescript@5.4.4) + version: 10.9.2(@swc/core@1.4.14)(@types/node@20.12.7)(typescript@5.4.5) uint8arrays: specifier: ^5.0.3 version: 5.0.3 demo/simple: dependencies: - '@ceramicnetwork/http-client': - specifier: ^5.6.0 - version: 5.6.0(typescript@5.4.4) - '@composexp/did-utils': + '@ceramic-solutions/did-utils': specifier: workspace:^ version: link:../../utils/did - '@composexp/points': + '@ceramic-solutions/points': specifier: workspace:^ version: link:../../libraries/points + '@ceramicnetwork/http-client': + specifier: ^5.6.0 + version: 5.6.0(typescript@5.4.5) uint8arrays: specifier: ^5.0.3 version: 5.0.3 libraries/points: dependencies: + '@ceramic-solutions/points-composite': + specifier: workspace:^ + version: link:../../composites/points '@ceramicnetwork/http-client': specifier: ^5.6.0 - version: 5.6.0(typescript@5.4.4) + version: 5.6.0(typescript@5.4.5) '@composedb/loader': specifier: ^0.7.1 - version: 0.7.1(typescript@5.4.4) - '@composexp/points-composite': - specifier: workspace:^ - version: link:../../composites/points + version: 0.7.1(typescript@5.4.5) dids: specifier: ^5.0.2 - version: 5.0.2(typescript@5.4.4) + version: 5.0.2(typescript@5.4.5) key-did-provider-ed25519: specifier: ^4.0.2 - version: 4.0.2(typescript@5.4.4) + version: 4.0.2(typescript@5.4.5) key-did-resolver: specifier: ^4.0.0 version: 4.0.0 devDependencies: - '@ceramicnetwork/common': - specifier: ^5.5.0 - version: 5.5.0(typescript@5.4.4) - '@composedb/types': - specifier: ^0.7.1 - version: 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composexp/ceramic-utils': + '@ceramic-solutions/ceramic-utils': specifier: workspace:^ version: link:../../utils/ceramic - '@composexp/composite-utils': + '@ceramic-solutions/composite-utils': specifier: workspace:^ version: link:../../utils/composite - '@composexp/did-utils': + '@ceramic-solutions/did-utils': specifier: workspace:^ version: link:../../utils/did + '@ceramicnetwork/common': + specifier: ^5.5.0 + version: 5.5.0(typescript@5.4.5) + '@composedb/types': + specifier: ^0.7.1 + version: 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) utils/ceramic: dependencies: + '@ceramic-solutions/did-utils': + specifier: workspace:^ + version: link:../did '@ceramicnetwork/cli': specifier: ^5.6.0 - version: 5.6.0(@polkadot/util@7.9.2)(@types/express@4.17.21)(pg@8.11.3)(typescript@5.4.4) + version: 5.6.0(@polkadot/util@12.6.2)(@types/express@4.17.21)(pg@8.11.5)(typescript@5.4.5) '@ceramicnetwork/core': specifier: ^5.6.0 - version: 5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4) + version: 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.5) '@ceramicnetwork/ipfs-daemon': specifier: ^5.6.0 - version: 5.6.0(typescript@5.4.4) - '@composexp/did-utils': - specifier: workspace:^ - version: link:../did + version: 5.6.0(typescript@5.4.5) tmp-promise: specifier: ^3.0.3 version: 3.0.3 devDependencies: '@ceramicnetwork/common': specifier: ^5.5.0 - version: 5.5.0(typescript@5.4.4) + version: 5.5.0(typescript@5.4.5) '@types/node': specifier: ^20.12.7 version: 20.12.7 dids: specifier: ^5.0.2 - version: 5.0.2(typescript@5.4.4) + version: 5.0.2(typescript@5.4.5) utils/composite: dependencies: - '@composedb/devtools-node': - specifier: ^0.7.1 - version: 0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composexp/ceramic-utils': + '@ceramic-solutions/ceramic-utils': specifier: workspace:^ version: link:../ceramic + '@composedb/devtools-node': + specifier: ^0.7.1 + version: 0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@12.6.2)(typescript@5.4.5) devDependencies: '@composedb/types': specifier: ^0.7.1 - version: 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + version: 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) '@types/node': specifier: ^20.12.7 version: 20.12.7 @@ -233,10 +233,10 @@ importers: dependencies: dids: specifier: ^5.0.2 - version: 5.0.2(typescript@5.4.4) + version: 5.0.2(typescript@5.4.5) key-did-provider-ed25519: specifier: ^4.0.2 - version: 4.0.2(typescript@5.4.4) + version: 4.0.2(typescript@5.4.5) key-did-resolver: specifier: ^4.0.0 version: 4.0.0 @@ -282,22 +282,22 @@ packages: picocolors: 1.0.0 dev: true - /@babel/compat-data@7.24.1: - resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==} + /@babel/compat-data@7.24.4: + resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/core@7.24.3: - resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} + /@babel/core@7.24.4: + resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.1 + '@babel/generator': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helpers': 7.24.1 - '@babel/parser': 7.24.1 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) + '@babel/helpers': 7.24.4 + '@babel/parser': 7.24.4 '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 @@ -310,8 +310,8 @@ packages: - supports-color dev: true - /@babel/generator@7.24.1: - resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} + /@babel/generator@7.24.4: + resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.24.0 @@ -324,7 +324,7 @@ packages: resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.24.1 + '@babel/compat-data': 7.24.4 '@babel/helper-validator-option': 7.23.5 browserslist: 4.23.0 lru-cache: 5.1.1 @@ -358,13 +358,13 @@ packages: '@babel/types': 7.24.0 dev: true - /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3): + /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 @@ -406,8 +406,8 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helpers@7.24.1: - resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} + /@babel/helpers@7.24.4: + resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.24.0 @@ -427,145 +427,145 @@ packages: picocolors: 1.0.0 dev: true - /@babel/parser@7.24.1: - resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==} + /@babel/parser@7.24.4: + resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.24.0 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3): + /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3): + /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 dev: true - /@babel/runtime@7.24.1: - resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==} + /@babel/runtime@7.24.4: + resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.1 @@ -580,7 +580,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.2 - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 dev: true @@ -589,12 +589,12 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.1 + '@babel/generator': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 @@ -615,11 +615,11 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@ceramicnetwork/3id-did-resolver@5.6.0(typescript@5.4.4): + /@ceramicnetwork/3id-did-resolver@5.6.0(typescript@5.4.5): resolution: {integrity: sha512-AZgu/w+IDFej+l/6D5ysxNEzRuVzL4TOoBS8OuVGD7MNpL4s5FyuEg6xS/QGtnUumuF6WracT51/AzJdz3oqrg==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 least-recent: 1.0.3 multiformats: 13.1.0 @@ -632,23 +632,10 @@ packages: - zod dev: false - /@ceramicnetwork/anchor-listener@4.4.0(typescript@5.4.4): - resolution: {integrity: sha512-/eaWXWTQGjHR4MeX0a3H3VwSC95sLTeKNVqasOvsZ9k+Jw/rNIajR9bkicLYuEjciMCUbcNx2q4ieYPY7qo9XQ==} - dependencies: - '@ceramicnetwork/anchor-utils': 4.4.0(typescript@5.4.4) - '@ethersproject/providers': 5.7.2 - rxjs: 7.8.1 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/anchor-listener@4.5.0(typescript@5.4.4): + /@ceramicnetwork/anchor-listener@4.5.0(typescript@5.4.5): resolution: {integrity: sha512-m2Z9v0ZHsAETEKJQh+lpgzW3IpBFif/V35qPmW+JWtWXlnm3HA87kgY/1xnZ22wQdvQCEfEuiLaGnAC2yvuTGg==} dependencies: - '@ceramicnetwork/anchor-utils': 4.5.0(typescript@5.4.4) + '@ceramicnetwork/anchor-utils': 4.5.0(typescript@5.4.5) '@ethersproject/providers': 5.7.2 rxjs: 7.8.1 transitivePeerDependencies: @@ -657,26 +644,11 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/anchor-utils@4.4.0(typescript@5.4.4): - resolution: {integrity: sha512-1EIguHvDb5vQpfUFtoE3WA9p6B3SSd0+4ajLJInaZQKKon6+gJjBUE8oWHtrKcm7FAlMUJmu2fdiKfH6VxYXvw==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ethersproject/abi': 5.7.0 - multiformats: 13.1.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/anchor-utils@4.5.0(typescript@5.4.4): + /@ceramicnetwork/anchor-utils@4.5.0(typescript@5.4.5): resolution: {integrity: sha512-7gsjNZq5WuKrdnOIaBoW5MeOr0UJRlkNU4J8KBq4Q73YnIBF1Swhm/T63XnIzq6qffW7LVqDxRkT7Ud1SerNtw==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ethersproject/abi': 5.7.0 multiformats: 13.1.0 uint8arrays: 5.0.3 @@ -686,13 +658,12 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/blockchain-utils-linking@5.0.0(typescript@5.4.4): + /@ceramicnetwork/blockchain-utils-linking@5.0.0(typescript@5.4.5): resolution: {integrity: sha512-9WzcRioVzbaxkA9+YTCa+UiOqJnprrK5r3BopPE7gDVk69vpdoEYjf3kP+gmHSQyFUFArwSO9vuYbJ8JQr1k0A==} dependencies: '@ceramicnetwork/streamid': 5.0.0 - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@stablelib/random': 1.0.2 '@stablelib/sha256': 1.0.1 caip: 1.1.1 @@ -705,42 +676,16 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/blockchain-utils-validation@5.4.0(@polkadot/util@7.9.2)(typescript@5.4.4): - resolution: {integrity: sha512-AzzCzOb5zwOF9kA9lgzUSvn2EM+9gljOCCgLgLnmZ5vg1QzAM/1xpM07hGxuve4ud3s37q/C3IVrNCdGvMtIvw==} - dependencies: - '@ceramicnetwork/blockchain-utils-linking': 5.0.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2 - '@ethersproject/wallet': 5.7.0 - '@noble/curves': 1.4.0 - '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) - '@smontero/eosio-signing-tools': 0.0.6 - '@taquito/utils': 11.2.0 - '@tendermint/sig': 0.6.0 - '@zondax/filecoin-signing-tools': 0.18.6 - caip: 1.1.1 - tweetnacl: 1.0.3 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - '@polkadot/util' - - bufferutil - - debug - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/blockchain-utils-validation@5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4): + /@ceramicnetwork/blockchain-utils-validation@5.5.0(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-1hLGXugUE6qNjkbzOAeInj0l58y9ejI19wW8y1TTQTpeThUjkUFxdaiLkKWitIXAcw8Ve+Vnpw5f0VnwtR/+hA==} dependencies: - '@ceramicnetwork/blockchain-utils-linking': 5.0.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/blockchain-utils-linking': 5.0.0(typescript@5.4.5) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ethersproject/contracts': 5.7.0 '@ethersproject/providers': 5.7.2 '@ethersproject/wallet': 5.7.0 '@noble/curves': 1.4.0 - '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) + '@polkadot/util-crypto': 7.9.2(@polkadot/util@12.6.2) '@smontero/eosio-signing-tools': 0.0.6 '@taquito/utils': 11.2.0 '@tendermint/sig': 0.6.0 @@ -756,37 +701,36 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/cli@5.6.0(@polkadot/util@7.9.2)(@types/express@4.17.21)(pg@8.11.3)(typescript@5.4.4): + /@ceramicnetwork/cli@5.6.0(@polkadot/util@12.6.2)(@types/express@4.17.21)(pg@8.11.5)(typescript@5.4.5): resolution: {integrity: sha512-TZDMTsVWk6tzGV3E1LdTPhZUA3BxPLLGZRbtIhwTU5Pvbs6sCHSTyinGzUQ4zthtXp2vMqIIYHb5C1eZrNdK8A==} engines: {node: '>=20.8'} hasBin: true dependencies: '@awaitjs/express': 0.9.0(@types/express@4.17.21)(express@4.19.2) - '@ceramicnetwork/3id-did-resolver': 5.6.0(typescript@5.4.4) - '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/core': 5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4) - '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) - '@ceramicnetwork/indexing': 4.6.0(pg@8.11.3)(sqlite3@5.1.7)(typescript@5.4.4) - '@ceramicnetwork/ipfs-daemon': 5.6.0(typescript@5.4.4) + '@ceramicnetwork/3id-did-resolver': 5.6.0(typescript@5.4.5) + '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/core': 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.5) + '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.5) + '@ceramicnetwork/indexing': 4.6.0(pg@8.11.5)(sqlite3@5.1.7)(typescript@5.4.5) + '@ceramicnetwork/ipfs-daemon': 5.6.0(typescript@5.4.5) '@ceramicnetwork/logger': 5.0.0 - '@ceramicnetwork/model-metrics': 1.2.5(typescript@5.4.4) + '@ceramicnetwork/model-metrics': 1.2.5(typescript@5.4.5) '@ceramicnetwork/observability': 1.4.4 - '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@stablelib/random': 1.0.2 - aws-sdk: 2.1594.0 + aws-sdk: 2.1599.0 commander: 9.5.0 cors: 2.8.5 cross-eventsource: 1.0.0 did-resolver: 4.1.0 - dids: 5.0.2(typescript@5.4.4) + dids: 5.0.2(typescript@5.4.5) express: 4.19.2 http-status-codes: 2.3.0 ipfs-http-client: 60.0.1 - key-did-provider-ed25519: 4.0.2(typescript@5.4.4) + key-did-provider-ed25519: 4.0.2(typescript@5.4.5) key-did-resolver: 4.0.0 levelup: 5.1.1 merge-options: 3.0.4 @@ -795,7 +739,7 @@ packages: picocolors: 1.0.0 pkh-did-resolver: 1.2.0 reflect-metadata: 0.1.14 - s3leveldown: 2.2.2(aws-sdk@2.1594.0)(levelup@5.1.1) + s3leveldown: 2.2.2(aws-sdk@2.1599.0)(levelup@5.1.1) stream-to-array: 2.3.0 typedjson: 1.8.0 uint8arrays: 5.0.3 @@ -828,29 +772,11 @@ packages: dag-jose: 4.0.0 multiformats: 13.1.0 uint8arrays: 5.0.3 - dev: false - /@ceramicnetwork/codecs@4.4.0(typescript@5.4.4): - resolution: {integrity: sha512-XAFLvNZnYs8m66v48lYOmpPn5DuJUsVhO2bhoFwQ0zbB7bO221ye9nrnjmGc+/o6TiJa8Zwg/GNIsDhBK/GlWQ==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - cartonne: 3.0.1 - codeco: 1.2.1 - dag-jose: 4.0.0 - multiformats: 13.1.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/codecs@4.5.0(typescript@5.4.4): + /@ceramicnetwork/codecs@4.5.0(typescript@5.4.5): resolution: {integrity: sha512-++PHxu6B4s7Tvk8RDOGgj2LxpZISJBAAVbzQd8bedPs/qSMufDs3EE99SR92YhHLbn5Wt/+uEZcSNGiHh8HyhQ==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 cartonne: 3.0.1 codeco: 1.2.1 @@ -864,16 +790,16 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/common@3.4.1(typescript@5.4.4): + /@ceramicnetwork/common@3.4.1(typescript@5.4.5): resolution: {integrity: sha512-SVtPG6tkaDF77iM2mweXV+JSgZa3tKvuku0TIrA+pZswa1EHtnRHssSilaj4q91JNaTy2Gsk86oK6MuQp9+LKg==} dependencies: '@ceramicnetwork/codecs': 2.4.1 '@ceramicnetwork/streamid': 3.4.1 - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@didtools/pkh-ethereum': 0.2.1 - '@didtools/pkh-solana': 0.2.0(typescript@5.4.4) - '@didtools/pkh-stacks': 0.2.0(typescript@5.4.4) - '@didtools/pkh-tezos': 0.3.0(typescript@5.4.4) + '@didtools/pkh-solana': 0.2.0(typescript@5.4.5) + '@didtools/pkh-stacks': 0.2.0(typescript@5.4.5) + '@didtools/pkh-tezos': 0.3.0(typescript@5.4.5) '@stablelib/random': 1.0.2 caip: 1.1.1 flat: 5.0.2 @@ -890,17 +816,16 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/common@5.5.0(typescript@5.4.4): + /@ceramicnetwork/common@5.5.0(typescript@5.4.5): resolution: {integrity: sha512-zEYVVZAZ6lo0GHgtJu7uiQRPn8++32SzNFA4n8gao9jTujlFYsmQW8n7EbfZIooIPTrByqLpg/YSurr8kvQMhw==} dependencies: '@ceramicnetwork/streamid': 5.0.0 - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@didtools/pkh-ethereum': 0.2.1 - '@didtools/pkh-solana': 0.2.0(typescript@5.4.4) - '@didtools/pkh-stacks': 0.2.0(typescript@5.4.4) - '@didtools/pkh-tezos': 0.3.0(typescript@5.4.4) + '@didtools/pkh-solana': 0.2.0(typescript@5.4.5) + '@didtools/pkh-stacks': 0.2.0(typescript@5.4.5) + '@didtools/pkh-tezos': 0.3.0(typescript@5.4.5) '@ipld/dag-cbor': 9.2.0 '@stablelib/random': 1.0.2 caip: 1.1.1 @@ -919,97 +844,29 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/core@5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4): - resolution: {integrity: sha512-Tj/uZZ4pneSjSaEKhfp4RR6gMmzyqOIK3eqyepEObyEQUyggbQMxDqhGPRWqFFeUdB2GAnbaKuYuo/uz6a5ghg==} - engines: {node: '>=20.8'} - dependencies: - '@ceramicnetwork/anchor-listener': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/anchor-utils': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/codecs': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/indexing': 4.5.0(pg@8.11.3)(sqlite3@5.1.7)(typescript@5.4.4) - '@ceramicnetwork/ipfs-topology': 5.4.0(typescript@5.4.4) - '@ceramicnetwork/job-queue': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/observability': 1.4.4 - '@ceramicnetwork/pinning-aggregation': 5.4.0 - '@ceramicnetwork/pinning-ipfs-backend': 5.4.0 - '@ceramicnetwork/stream-caip10-link': 5.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link-handler': 5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-handler': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance-handler': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile': 5.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile-handler': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - '@ceramicnetwork/wasm-bloom-filter': 0.1.0 - '@datastructures-js/priority-queue': 6.3.1 - '@ethersproject/providers': 5.7.2 - '@ipld/dag-cbor': 7.0.3 - '@scarf/scarf': 1.3.0 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/uuid': 1.0.2 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - await-semaphore: 0.1.3 - cartonne: 3.0.1 - codeco: 1.2.1 - dag-jose: 4.0.0 - dids: 5.0.2(typescript@5.4.4) - it-all: 3.0.4 - it-batch: 3.0.4 - it-first: 3.0.4 - knex: 2.5.1(pg@8.11.3)(sqlite3@5.1.7) - least-recent: 1.0.3 - level-ts: 2.1.0 - lodash.clonedeep: 4.5.0 - mapmoize: 1.2.1 - multiformats: 13.1.0 - p-queue: 8.0.1 - pg: 8.11.3 - rxjs: 7.8.1 - sqlite3: 5.1.7 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - '@polkadot/util' - - better-sqlite3 - - bluebird - - bufferutil - - debug - - encoding - - mysql - - mysql2 - - pg-native - - supports-color - - tedious - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/core@5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4): + /@ceramicnetwork/core@5.6.0(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-svRyYxXW1HeP0EhxDjtisrZYfYuPUjMA4ZlM5o4xs6qGO0GJl88ttPTFPA5LI/iWAdzwyeTxpvmORwoq0A+j6w==} engines: {node: '>=20.8'} dependencies: - '@ceramicnetwork/anchor-listener': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/anchor-utils': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/indexing': 4.6.0(pg@8.11.3)(sqlite3@5.1.7)(typescript@5.4.4) - '@ceramicnetwork/ipfs-topology': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/job-queue': 4.6.0(typescript@5.4.4) - '@ceramicnetwork/model-metrics': 1.2.5(typescript@5.4.4) + '@ceramicnetwork/anchor-listener': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/anchor-utils': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/indexing': 4.6.0(pg@8.11.5)(sqlite3@5.1.7)(typescript@5.4.5) + '@ceramicnetwork/ipfs-topology': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/job-queue': 4.6.0(typescript@5.4.5) + '@ceramicnetwork/model-metrics': 1.2.5(typescript@5.4.5) '@ceramicnetwork/observability': 1.4.4 '@ceramicnetwork/pinning-aggregation': 5.5.0 '@ceramicnetwork/pinning-ipfs-backend': 5.5.0 - '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link-handler': 5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-handler': 4.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance-handler': 4.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile-handler': 5.6.0(typescript@5.4.4) + '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-caip10-link-handler': 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-handler': 4.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance-handler': 4.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-tile-handler': 5.6.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@ceramicnetwork/wasm-bloom-filter': 0.1.0 '@datastructures-js/priority-queue': 6.3.1 @@ -1025,18 +882,18 @@ packages: cartonne: 3.0.1 codeco: 1.2.1 dag-jose: 4.0.0 - dids: 5.0.2(typescript@5.4.4) + dids: 5.0.2(typescript@5.4.5) it-all: 3.0.4 it-batch: 3.0.4 it-first: 3.0.4 - knex: 2.5.1(pg@8.11.3)(sqlite3@5.1.7) + knex: 2.5.1(pg@8.11.5)(sqlite3@5.1.7) least-recent: 1.0.3 level-ts: 2.1.0 lodash.clonedeep: 4.5.0 mapmoize: 1.2.1 multiformats: 13.1.0 p-queue: 8.0.1 - pg: 8.11.3 + pg: 8.11.5 rxjs: 7.8.1 sqlite3: 5.1.7 uint8arrays: 5.0.3 @@ -1055,16 +912,15 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/http-client@5.6.0(typescript@5.4.4): + /@ceramicnetwork/http-client@5.6.0(typescript@5.4.5): resolution: {integrity: sha512-IRdB4Klm3xAnUB/Tuli/vTLi1Ul275RysMxrSEEDfEBru4GA/MG7cXomk4S1MsJ0flP+PD6aag7DyRQZmiYoLA==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@scarf/scarf': 1.3.0 query-string: 7.1.3 @@ -1076,49 +932,17 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/indexing@4.5.0(pg@8.11.3)(sqlite3@5.1.7)(typescript@5.4.4): - resolution: {integrity: sha512-VJ8ucG4XltdX6zWN35Qhb02u3QYwfJ5COPKp+W2OVY2MDtUJkQk/38YioZ4a3HtQAARYzvyVlkF41TResGX5HA==} - dependencies: - '@ceramicnetwork/anchor-listener': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/anchor-utils': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/job-queue': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - '@ethersproject/providers': 5.7.2 - knex: 2.5.1(pg@8.11.3)(sqlite3@5.1.7) - lodash.clonedeep: 4.5.0 - multiformats: 13.1.0 - p-queue: 8.0.1 - pg-boss: 8.4.2 - rxjs: 7.8.1 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - better-sqlite3 - - bufferutil - - encoding - - mysql - - mysql2 - - pg - - pg-native - - sqlite3 - - supports-color - - tedious - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/indexing@4.6.0(pg@8.11.3)(sqlite3@5.1.7)(typescript@5.4.4): + /@ceramicnetwork/indexing@4.6.0(pg@8.11.5)(sqlite3@5.1.7)(typescript@5.4.5): resolution: {integrity: sha512-e5afRrLfr4lh7nUbEzZz5CbSQr9fkinfTDHiYVCKpxYEVQLEVCo1qihDCVJ3vK1p0psk6eIUZ1CYKXdV6Js5Lg==} dependencies: - '@ceramicnetwork/anchor-listener': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/anchor-utils': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/job-queue': 4.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) + '@ceramicnetwork/anchor-listener': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/anchor-utils': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/job-queue': 4.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@ethersproject/providers': 5.7.2 - knex: 2.5.1(pg@8.11.3)(sqlite3@5.1.7) + knex: 2.5.1(pg@8.11.5)(sqlite3@5.1.7) lodash.clonedeep: 4.5.0 multiformats: 13.1.0 p-queue: 8.0.1 @@ -1139,14 +963,13 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/ipfs-daemon@5.6.0(typescript@5.4.4): + /@ceramicnetwork/ipfs-daemon@5.6.0(typescript@5.4.5): resolution: {integrity: sha512-vSthfsDITmbZAX/AfjGCOUcjV0i5WuQH3qVU+AEpNTb6rM+nB/drZzF9ev/yIkMErV81kIljyV7FIGl/rjgN6g==} hasBin: true dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/ipfs-topology': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/ipfs-topology': 5.5.0(typescript@5.4.5) express: 4.19.2 get-port: 7.1.0 go-ipfs: 0.18.1 @@ -1164,48 +987,21 @@ packages: - zod dev: false - /@ceramicnetwork/ipfs-topology@5.4.0(typescript@5.4.4): - resolution: {integrity: sha512-5B+ydp8nKXmw+tryicgIS9XN8cGTnfhob4tGBxJAWBK8D/RFA5BpcTITQ82gc7hnQYr79rpOE5auoni/Pp2dUA==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/ipfs-topology@5.5.0(typescript@5.4.4): + /@ceramicnetwork/ipfs-topology@5.5.0(typescript@5.4.5): resolution: {integrity: sha512-Pbk3TbdLNRM7/auC/PhDGiEeLMpk36dG9HxdHr3F/dl28ODJe6gEU9TSYlfw9n8IFJaf+DYtdHVLHHn4BaQ53Q==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) transitivePeerDependencies: - bufferutil - encoding - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/job-queue@4.5.0(typescript@5.4.4): - resolution: {integrity: sha512-966ksYktWhsSVaF5ZmFKr0wcAvUZ6P1Bdjj4eX+tz/LQ4xQIuf5alxuSfaB8SMBGLM310RDmYGhrc2emUSVVPQ==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - pg: 8.11.3 - pg-boss: 8.4.2 - rxjs: 7.8.1 - transitivePeerDependencies: - - bufferutil - - encoding - - pg-native - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/job-queue@4.6.0(typescript@5.4.4): + /@ceramicnetwork/job-queue@4.6.0(typescript@5.4.5): resolution: {integrity: sha512-YqAcD2yHArZnwU47h4mGYust5K2OmMa9pu9z46lIL2+WBpWrstT5I8Nbr9p+zpZ4JS5y1TZveKVsQFnk9c9iSw==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) pg: 8.11.5 pg-boss: 8.4.2 rxjs: 7.8.1 @@ -1216,7 +1012,6 @@ packages: - typescript - utf-8-validate - zod - dev: false /@ceramicnetwork/logger@5.0.0: resolution: {integrity: sha512-migKFIIWNSP8Tu09v8YNTDbxs0jtEMX4tiXqSkwySczmW/J/yMJWBGXbcasxQdmiphBoXFituTbW+jFVQkeTxg==} @@ -1224,12 +1019,12 @@ packages: rotating-file-stream: 3.2.1 dev: false - /@ceramicnetwork/model-metrics@1.2.5(typescript@5.4.4): + /@ceramicnetwork/model-metrics@1.2.5(typescript@5.4.5): resolution: {integrity: sha512-L2T0K57CWCyHzTkGmBdM3BNX35YRPX9KqRVkPSjBv2q3Cwwm9KkrBRYHLN6W+37eWVBmKOq57lSTiQsnuSskAw==} dependencies: - '@ceramicnetwork/stream-model-instance': 2.4.1(typescript@5.4.4) + '@ceramicnetwork/stream-model-instance': 2.4.1(typescript@5.4.5) '@ceramicnetwork/streamid': 3.4.1 - dids: 5.0.2(typescript@5.4.4) + dids: 5.0.2(typescript@5.4.5) fs: 0.0.1-security key-did-provider-ed25519: 3.0.2 key-did-resolver: 4.0.0 @@ -1240,7 +1035,6 @@ packages: - typescript - utf-8-validate - zod - dev: false /@ceramicnetwork/observability@1.4.4: resolution: {integrity: sha512-kHWnfq8SoTjO8qAU+ErXPa0iqFY3cXSQcA9CJJK40tyB6tIR+9zKNbfCDFwEF/UPZSiVQcO/pVsxTe5CcmHeEg==} @@ -1255,28 +1049,11 @@ packages: '@opentelemetry/semantic-conventions': 1.15.0 '@types/node': 20.12.7 - /@ceramicnetwork/pinning-aggregation@5.4.0: - resolution: {integrity: sha512-JMhsPEOMZVgFESooe5FenmOg32HK2338mNGFuwPgThJLLZWgwX1qC12J5/MQyPIaMeMXgydwT0JE+mAMsZVQqw==} - dependencies: - '@stablelib/sha256': 1.0.1 - uint8arrays: 5.0.3 - /@ceramicnetwork/pinning-aggregation@5.5.0: resolution: {integrity: sha512-6w03kdpuo7fGHu8WJxt/bEXa3M7W3xAb6HDQRNf6Iz8edGh/R3iKjgloVMZke+BLWn0e7RBaZFaVo5CpUtTlIg==} dependencies: '@stablelib/sha256': 1.0.1 uint8arrays: 5.0.3 - dev: false - - /@ceramicnetwork/pinning-ipfs-backend@5.4.0: - resolution: {integrity: sha512-sBOEhr3P5oCR2m1hJnSI9dazVcQenOxeMvoExiTv4g4VN8VAHfiZsQuorxCB8uXr1z505W2K7UzL8p49zDjRPg==} - dependencies: - '@stablelib/sha256': 1.0.1 - ipfs-http-client: 60.0.1 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - encoding - - supports-color /@ceramicnetwork/pinning-ipfs-backend@5.5.0: resolution: {integrity: sha512-2e47FvJGFmxjOomhj4dpTfb8OrvbOJA63rW2PYKwhA99FE0HBcbvSgRsejddYC1FsBYlnDsd7iR40wzhM8loyA==} @@ -1287,31 +1064,14 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: false - /@ceramicnetwork/stream-caip10-link-handler@5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4): - resolution: {integrity: sha512-2GiFBSZrc8tmKBSWWh2ZjzWMtQG1fHQCCPhHXd91Si5cx+FTh2T0qEqpg5JtIXrDRe/yIP2sq4ZHODlVeuslSw==} - dependencies: - '@ceramicnetwork/blockchain-utils-validation': 5.4.0(@polkadot/util@7.9.2)(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link': 5.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.4.0(typescript@5.4.4) - transitivePeerDependencies: - - '@polkadot/util' - - bufferutil - - debug - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/stream-caip10-link-handler@5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4): + /@ceramicnetwork/stream-caip10-link-handler@5.6.0(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-pKCipn3y6CflzY/K3oeRyHwDDhBSvFy+jvZPqSbMY5s+96vueBNPsaBcqMZEd2onjl+hMGqjukH+QtGk+S5faQ==} dependencies: - '@ceramicnetwork/blockchain-utils-validation': 5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.4) + '@ceramicnetwork/blockchain-utils-validation': 5.5.0(@polkadot/util@12.6.2)(typescript@5.4.5) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.5) transitivePeerDependencies: - '@polkadot/util' - bufferutil @@ -1320,27 +1080,11 @@ packages: - typescript - utf-8-validate - zod - dev: false - - /@ceramicnetwork/stream-caip10-link@5.4.0(typescript@5.4.4): - resolution: {integrity: sha512-SyrFi/MBX++jU0e8YyUs6o/Bz2jrB5JaVeIKSjbFURGHjfe61N3OLKvmQPiDpq/fCdRWU3Wgg1S9V6mjS2i+fw==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - caip: 1.1.1 - did-resolver: 4.1.0 - lodash.clonedeep: 4.5.0 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - /@ceramicnetwork/stream-caip10-link@5.5.0(typescript@5.4.4): + /@ceramicnetwork/stream-caip10-link@5.5.0(typescript@5.4.5): resolution: {integrity: sha512-X7HFHOuWlMBoZH3gSHbdXVjY8QYiDR5971uvhkNSpzxXV/Q9oqyRAULEFBuAKdH1+FUkaiaCxC2xaVh3ydC5Cg==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 caip: 1.1.1 did-resolver: 4.1.0 @@ -1352,23 +1096,10 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/stream-handler-common@4.4.0(typescript@5.4.4): - resolution: {integrity: sha512-1tBmfWZ1f1ZLfvdfl0Bz0n2UGsyxF+khtn47h5KYF/PhMQmA/Rojivg7PamJSH1i20VEDmpM0JTPluTsgJHRzg==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - lodash.clonedeep: 4.5.0 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/stream-handler-common@4.5.0(typescript@5.4.4): + /@ceramicnetwork/stream-handler-common@4.5.0(typescript@5.4.5): resolution: {integrity: sha512-WpvAuSEtrHviLj4AOV9muoNb6CfdqkBFWYE6Ph8xRHvL5Q9noBZprn5Mi0wt6XSCe8sydsFM+Cw0A2vhQ37bRw==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 lodash.clonedeep: 4.5.0 transitivePeerDependencies: @@ -1377,35 +1108,13 @@ packages: - typescript - utf-8-validate - zod - dev: false - - /@ceramicnetwork/stream-model-handler@4.5.0(typescript@5.4.4): - resolution: {integrity: sha512-bHB/+O1qSv0DZMmNdpNvu34JXRhLYVdS+52SAKSjlx4xX5YSQkO03JyvcehNC0hh4wF+mvopXZ9Ewvt2vRV+9w==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - fast-json-patch: 3.1.1 - json-ptr: 3.1.1 - lodash.clonedeep: 4.5.0 - lodash.ismatch: 4.4.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - /@ceramicnetwork/stream-model-handler@4.6.0(typescript@5.4.4): + /@ceramicnetwork/stream-model-handler@4.6.0(typescript@5.4.5): resolution: {integrity: sha512-+pP6xoBlOl4LIMAHEp4RXwk5DclnQ/TnE8dgBYWDI3OhGEsCzY911v+y1J2ldTic5UxakE/tNMm2a4Rh60PBQQ==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) @@ -1420,36 +1129,14 @@ packages: - typescript - utf-8-validate - zod - dev: false - - /@ceramicnetwork/stream-model-instance-handler@4.5.0(typescript@5.4.4): - resolution: {integrity: sha512-J5pMZHBFoMHVJePY0sIlowYCDmm40B4mONVsFQIHBokUW4y71S4mSz7dH0xKJgS67+VkZ0tvpFrKHlSAziAMIA==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - fast-json-patch: 3.1.1 - least-recent: 1.0.3 - lodash.clonedeep: 4.5.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - /@ceramicnetwork/stream-model-instance-handler@4.6.0(typescript@5.4.4): + /@ceramicnetwork/stream-model-instance-handler@4.6.0(typescript@5.4.5): resolution: {integrity: sha512-K4XnwsXFTfLIPUii9GaJDvJ369XFtJ7Ye8ZFZaaMPnmS6B0wb55k4fTNrAXWULUx7Rn4PoFjXgvxPcSm9nKCQA==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) @@ -1463,12 +1150,11 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/stream-model-instance@2.4.1(typescript@5.4.4): + /@ceramicnetwork/stream-model-instance@2.4.1(typescript@5.4.5): resolution: {integrity: sha512-vp+oY27BFM64pXN2l4riwK3/3rN1DCEZe/iBrWWJ79SC99S9jFsSnx2TB0RLkBF+n87IsWi+t1WA+FR1KNIe/Q==} dependencies: - '@ceramicnetwork/common': 3.4.1(typescript@5.4.4) + '@ceramicnetwork/common': 3.4.1(typescript@5.4.5) '@ceramicnetwork/streamid': 3.4.1 '@ipld/dag-cbor': 7.0.3 '@stablelib/random': 1.0.2 @@ -1481,29 +1167,11 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/stream-model-instance@4.5.0(typescript@5.4.4): - resolution: {integrity: sha512-m84XUzRK9D2kaa8jrqn7XS450jJPqYqlBmHkP+1qTtoRLQC5o1N6648PgkCqhb2FyvkhyBTvB12je86H3fkVsQ==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - '@ipld/dag-cbor': 7.0.3 - '@stablelib/random': 1.0.2 - fast-json-patch: 3.1.1 - object-sizeof: 2.6.4 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/stream-model-instance@4.6.0(typescript@5.4.4): + /@ceramicnetwork/stream-model-instance@4.6.0(typescript@5.4.5): resolution: {integrity: sha512-uksXGq4ytcR9bHgLm68t2unsk2QCOqEVOnGWmZH7G47XvbfV/Bm18NAO9cZagSRa5ogbCf4+N3AuZtLg/TDWKA==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@ipld/dag-cbor': 7.0.3 '@stablelib/random': 1.0.2 @@ -1517,33 +1185,11 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/stream-model@4.4.0(typescript@5.4.4): - resolution: {integrity: sha512-S+ulDr6g3HMJO+D8CCqnfpoIKXr5LbZwT3GLmOtx2zgjBWpgEeZ1WnbZz+zTcd0gXoDr8/Z3CtMi5wnbk4nOiA==} - dependencies: - '@ceramicnetwork/codecs': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - '@ipld/dag-cbor': 7.0.3 - '@stablelib/random': 1.0.2 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - codeco: 1.2.1 - fast-json-patch: 3.1.1 - json-schema-typed: 8.0.1 - multiformats: 13.1.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/stream-model@4.5.0(typescript@5.4.4): + /@ceramicnetwork/stream-model@4.5.0(typescript@5.4.5): resolution: {integrity: sha512-I0jYlptr4v31T3VlSwvYMggrx2DLahsC1u5ErVRBZeW8NeY/7VWUzKVQtuOfc5Wa2XdRJ7ODINyszWKb6nIneg==} dependencies: - '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@ipld/dag-cbor': 7.0.3 '@stablelib/random': 1.0.2 @@ -1561,32 +1207,12 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/stream-tile-handler@5.5.0(typescript@5.4.4): - resolution: {integrity: sha512-pMPwzo8GEQRq25iLCPJwyDrets0eq164BEqTbixkmx6Xl6X3T8Eion7F9AnEAU/3RtyVJwOWCwyg4QqWINeNgw==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile': 5.4.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - fast-json-patch: 3.1.1 - least-recent: 1.0.3 - lodash.clonedeep: 4.5.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/stream-tile-handler@5.6.0(typescript@5.4.4): + /@ceramicnetwork/stream-tile-handler@5.6.0(typescript@5.4.5): resolution: {integrity: sha512-wOkmvcSzGCbrU2SC0Q8wvCFc4P/gX6FM2y4MHmk6wziUovqFFcp+n2vD1X8CC5WZllpji4JRiLdphjZNRZSruw==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-tile': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) @@ -1600,34 +1226,15 @@ packages: - typescript - utf-8-validate - zod - dev: false - /@ceramicnetwork/stream-tile@5.4.0(typescript@5.4.4): - resolution: {integrity: sha512-z9OQ1+S0TPkwqcSqV3HGXKqQADeS792aQRPzeWvRzpj8jY9lUHYZt++obvkMhXIwsvh1GOaRiGHa5xD6eTIxJQ==} - dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/streamid': 5.0.0 - '@ipld/dag-cbor': 7.0.3 - '@stablelib/random': 1.0.2 - dids: 5.0.2(typescript@5.4.4) - fast-json-patch: 3.1.1 - lodash.clonedeep: 4.5.0 - uint8arrays: 5.0.3 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - - /@ceramicnetwork/stream-tile@5.5.0(typescript@5.4.4): + /@ceramicnetwork/stream-tile@5.5.0(typescript@5.4.5): resolution: {integrity: sha512-KhY5u553qh1Cl0R1BZbxvXpzDyW2p+lGzzDvQYO7et2D7KKqd9O0mkFSCzlsJC43xcOwY00JkbcRtHX3JhzabA==} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 '@ipld/dag-cbor': 7.0.3 '@stablelib/random': 1.0.2 - dids: 5.0.2(typescript@5.4.4) + dids: 5.0.2(typescript@5.4.5) fast-json-patch: 3.1.1 lodash.clonedeep: 4.5.0 uint8arrays: 5.0.3 @@ -1648,14 +1255,13 @@ packages: multiformats: 13.1.0 uint8arrays: 5.0.3 varint: 6.0.0 - dev: false /@ceramicnetwork/streamid@5.0.0: resolution: {integrity: sha512-BerENlA/dRIZNjCDeJSZfluCx69coZFbhmjzPwe8G1NZtdWGX/4NECq6a9xzrxxRJ3jNPcXFabYb94Mp1diMWA==} dependencies: '@ipld/dag-cbor': 7.0.3 '@stablelib/sha256': 1.0.1 - cborg: 4.1.4 + cborg: 4.2.0 mapmoize: 1.2.1 multiformats: 13.1.0 uint8arrays: 5.0.3 @@ -1672,22 +1278,22 @@ packages: dependencies: '@chainsafe/is-ip': 2.0.2 - /@composedb/client@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): + /@composedb/client@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-LUMnaiNUbBLqqifxAybAigG+n7F+u8xhLOPsPR0F0KHPtJkJ8sXm0lpcHQPx6B4Tm5Tlb6F7Tu27WvGp+7wVCA==} engines: {node: '>=20'} dependencies: - '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) + '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) '@composedb/constants': 0.7.1 - '@composedb/graphql-scalars': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composedb/runtime': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@composedb/graphql-scalars': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) + '@composedb/runtime': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1) - '@graphql-tools/stitch': 9.0.5(graphql@16.8.1) + '@graphql-tools/stitch': 9.1.0(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) dataloader: 2.2.2 graphql: 16.8.1 - graphql-relay: 0.10.0(graphql@16.8.1) + graphql-relay: 0.10.1(graphql@16.8.1) transitivePeerDependencies: - '@polkadot/util' - better-sqlite3 @@ -1710,17 +1316,17 @@ packages: engines: {node: '>=20'} dev: false - /@composedb/devtools-node@0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@7.9.2)(typescript@5.4.4): + /@composedb/devtools-node@0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-+7X7mM7JqIdXzIHnhpr6eD4TZ2a7sQgFeJUL7uIed2EB5qa/10qYFpCvd1OUivv+MVdGMwvw2jVXzM1DaamBnQ==} engines: {node: '>=20'} peerDependencies: '@composedb/devtools': ^0.7.1 dependencies: - '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) - '@composedb/client': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composedb/devtools': 0.7.1(@polkadot/util@7.9.2)(graphql@16.8.1)(typescript@5.4.4) - '@composedb/runtime': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composedb/server': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.5) + '@composedb/client': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) + '@composedb/devtools': 0.7.1(@polkadot/util@12.6.2)(graphql@16.8.1)(typescript@5.4.5) + '@composedb/runtime': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) + '@composedb/server': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) fs-extra: 11.2.0 transitivePeerDependencies: - '@polkadot/util' @@ -1739,15 +1345,15 @@ packages: - zod dev: false - /@composedb/devtools@0.7.1(@polkadot/util@7.9.2)(graphql@16.8.1)(typescript@5.4.4): + /@composedb/devtools@0.7.1(@polkadot/util@12.6.2)(graphql@16.8.1)(typescript@5.4.5): resolution: {integrity: sha512-J9IFquEmJL/0gwl3BUerXUR3tOm9v8dd3oucrRbuYDbZXLN803mptOQqQEDxzncfkF80CjVh0qtWZ6dTaYGVHQ==} engines: {node: '>=20'} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 - '@composedb/graphql-scalars': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@composedb/graphql-scalars': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@graphql-tools/schema': 10.0.3(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) change-case: 5.4.4 @@ -1775,12 +1381,12 @@ packages: - zod dev: false - /@composedb/graphql-scalars@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): + /@composedb/graphql-scalars@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-TX6f/1E3RZzWjDAKn3eRZ9z7zAPaE7BKWpOiomw9T3K787WPGmOIypnOOakdGE9dOf6ViYQ8eq4R6pzv0bbBpA==} engines: {node: '>=20'} dependencies: '@ceramicnetwork/streamid': 5.0.0 - '@composedb/types': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@composedb/types': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) caip: 1.1.1 graphql: 16.8.1 graphql-scalars: 1.23.0(graphql@16.8.1) @@ -1802,11 +1408,11 @@ packages: - zod dev: false - /@composedb/loader@0.7.1(typescript@5.4.4): + /@composedb/loader@0.7.1(typescript@5.4.5): resolution: {integrity: sha512-qmyWrNazJF/0Uc4rZqrttvbOnb0smjqTSF5i5aekThIWJtvBQ+a/GkoNjQvVQH3bWFfeRZS9TgNpD4SUpdFJpw==} engines: {node: '>=20'} dependencies: - '@ceramicnetwork/stream-model-instance': 4.5.0(typescript@5.4.4) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 dataloader: 2.2.2 transitivePeerDependencies: @@ -1817,18 +1423,18 @@ packages: - zod dev: false - /@composedb/runtime@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): + /@composedb/runtime@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-ijv1/jNWYAwhsnJYJbyGT8MrQgZoIhDGDoD6ggF5VbcC8bYZcK88yNwASxT3s9NxQTelKznidvk9V14MxN8RUA==} engines: {node: '>=20'} dependencies: - '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) + '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) '@ceramicnetwork/streamid': 5.0.0 - '@composedb/graphql-scalars': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) - '@composedb/loader': 0.7.1(typescript@5.4.4) + '@composedb/graphql-scalars': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) + '@composedb/loader': 0.7.1(typescript@5.4.5) graphql: 16.8.1 - graphql-relay: 0.10.0(graphql@16.8.1) + graphql-relay: 0.10.1(graphql@16.8.1) transitivePeerDependencies: - '@polkadot/util' - better-sqlite3 @@ -1846,16 +1452,16 @@ packages: - zod dev: false - /@composedb/server@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): + /@composedb/server@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-5sq73SM2zJeCiVRpAWbHvI6au2lPq+IiHUVElqrzJ2dGZmDxAOV0BOvCip0xlrW4KThiFuLNyJyiYwwlEwUO1w==} engines: {node: '>=20'} dependencies: - '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) + '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.5) '@composedb/constants': 0.7.1 - '@composedb/runtime': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@composedb/runtime': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5) get-port: 7.1.0 graphql: 16.8.1 - graphql-yoga: 5.2.0(graphql@16.8.1) + graphql-yoga: 5.3.0(graphql@16.8.1) transitivePeerDependencies: - '@polkadot/util' - better-sqlite3 @@ -1873,16 +1479,16 @@ packages: - zod dev: false - /@composedb/types@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): + /@composedb/types@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.5): resolution: {integrity: sha512-GtS3R06x1eU1NbBn5ZqewHk1VpvYLk9dwKV8YEzEXxnZvJa2WA8F5YD/TRItIfHgJjLNZ5O7obAK1fgDoCJxnQ==} engines: {node: '>=20'} dependencies: - '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/core': 5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4) - '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) - '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-model-instance': 4.5.0(typescript@5.4.4) - dids: 5.0.2(typescript@5.4.4) + '@ceramicnetwork/common': 5.5.0(typescript@5.4.5) + '@ceramicnetwork/core': 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.5) + '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.5) + '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.5) + '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.5) + dids: 5.0.2(typescript@5.4.5) json-schema-typed: 8.0.1 transitivePeerDependencies: - '@polkadot/util' @@ -1926,7 +1532,7 @@ packages: multiformats: 11.0.2 uint8arrays: 4.0.10 - /@didtools/cacao@3.0.1(typescript@5.4.4): + /@didtools/cacao@3.0.1(typescript@5.4.5): resolution: {integrity: sha512-vV1JirxqVsBf2dqdvoS/msNN8fabvMfseZB0kf1FG8TbosrHd81+hgDOlQMZit7zJbTk5g3CGkZg3b7iYKkynw==} engines: {node: '>=14.14'} dependencies: @@ -1936,7 +1542,7 @@ packages: caip: 1.1.1 multiformats: 13.1.0 uint8arrays: 5.0.3 - viem: 1.21.4(typescript@5.4.4) + viem: 1.21.4(typescript@5.4.5) transitivePeerDependencies: - bufferutil - typescript @@ -1977,13 +1583,12 @@ packages: '@noble/hashes': 1.4.0 '@stablelib/random': 1.0.2 caip: 1.1.1 - dev: false - /@didtools/pkh-ethereum@0.5.0(typescript@5.4.4): + /@didtools/pkh-ethereum@0.5.0(typescript@5.4.5): resolution: {integrity: sha512-2S+TS/I2jVTNnkgyslxQvSjCzzLsCabjXD2UWjJnVkAoxeJgPE9GvY1JhTDgvVLfxLPnYwTIP/O1WR9wJcDkFg==} engines: {node: '>=14.14'} dependencies: - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@noble/curves': 1.4.0 '@noble/hashes': 1.4.0 '@stablelib/random': 1.0.2 @@ -1994,11 +1599,11 @@ packages: - utf-8-validate - zod - /@didtools/pkh-solana@0.2.0(typescript@5.4.4): + /@didtools/pkh-solana@0.2.0(typescript@5.4.5): resolution: {integrity: sha512-wOfa+hbWo1ok8YnR8tq2mZKbcyEv9qrxtTR5jXOuhOqCkz30/qu9e2Wib/byx7Kx5/ik/2z1nd2YPL0vrA+TxQ==} engines: {node: '>=14.14'} dependencies: - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@noble/curves': 1.4.0 '@stablelib/random': 1.0.2 caip: 1.1.1 @@ -2009,11 +1614,11 @@ packages: - utf-8-validate - zod - /@didtools/pkh-stacks@0.2.0(typescript@5.4.4): + /@didtools/pkh-stacks@0.2.0(typescript@5.4.5): resolution: {integrity: sha512-lXe8ZURCYCDQXrjaM7A4p1RCKrVsQ+NbO7bI70pRfjven82BPLDiqEJbhRGnWKbjQD1CQe9MJXLy3AuStKc7qw==} engines: {node: '>=14.14'} dependencies: - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@stablelib/random': 1.0.2 '@stacks/common': 6.13.0 '@stacks/encryption': 6.13.1 @@ -2027,11 +1632,11 @@ packages: - utf-8-validate - zod - /@didtools/pkh-tezos@0.3.0(typescript@5.4.4): + /@didtools/pkh-tezos@0.3.0(typescript@5.4.5): resolution: {integrity: sha512-AB8drOnBkDSE9KolsiSShPwVOVbRXM2G5T//b+GgX9potVRTcRsD0z59x/6mU1e9g2kxpScOhjRrZsC0c+SQNw==} engines: {node: '>=14.14'} dependencies: - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@noble/curves': 1.4.0 '@noble/hashes': 1.4.0 '@stablelib/random': 1.0.2 @@ -2602,7 +2207,7 @@ packages: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1) - '@graphql-tools/executor': 1.2.4(graphql@16.8.1) + '@graphql-tools/executor': 1.2.6(graphql@16.8.1) '@graphql-tools/schema': 10.0.3(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) dataloader: 2.2.2 @@ -2610,8 +2215,8 @@ packages: tslib: 2.6.2 dev: false - /@graphql-tools/executor@1.2.4(graphql@16.8.1): - resolution: {integrity: sha512-aCO/5LEAwyTWObAAfpLlwAjaOjTxRX6YNXcGW62mglQhPBy+j0fTc4desci/4nJ49l8FWETaTG0MZ1G/PqQslg==} + /@graphql-tools/executor@1.2.6(graphql@16.8.1): + resolution: {integrity: sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -2648,15 +2253,15 @@ packages: value-or-promise: 1.0.12 dev: false - /@graphql-tools/stitch@9.0.5(graphql@16.8.1): - resolution: {integrity: sha512-sgeeuOv76HqATbYcRBDLr2Y/rN1ojRFrDg2t+IBn6u7ZBQO9ujks7mVplhd9J7d7IyMrsqh581K9oclPqKanYg==} + /@graphql-tools/stitch@9.1.0(graphql@16.8.1): + resolution: {integrity: sha512-EEZn2BcvuOX+7DOSROv+3Td0SvuC/YnJ5+ua2xjhThOU7q8QFqL+JxgT4BOdI829ZR+rQqaX6do3VEY4UNo1Yg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/batch-delegate': 9.0.1(graphql@16.8.1) '@graphql-tools/delegate': 10.0.4(graphql@16.8.1) - '@graphql-tools/executor': 1.2.4(graphql@16.8.1) + '@graphql-tools/executor': 1.2.6(graphql@16.8.1) '@graphql-tools/merge': 9.0.3(graphql@16.8.1) '@graphql-tools/schema': 10.0.3(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) @@ -2802,8 +2407,8 @@ packages: resolution: {integrity: sha512-w+lKW+yRrLhJu620jT3y+5g2mHqnKfepreykvdOcl9/6up8GrQQn+l3FRTsjHTKbkbfQFkuksHpdv2EcpKcJ4Q==} dev: false - /@hapi/hapi@21.3.8: - resolution: {integrity: sha512-2YGNQZTnWKAWiexoLxvsSFFpJvFBJKhtRzARNxR6G1dHbDfL1WPQBXF00rmMRJLdo+oi7d+Ntgdno6V+z+js7w==} + /@hapi/hapi@21.3.9: + resolution: {integrity: sha512-AT5m+Rb8iSOFG3zWaiEuTJazf4HDYl5UpRpyxMJ3yR+g8tOEmqDv6FmXrLHShdvDOStAAepHGnr1G7egkFSRdw==} engines: {node: '>=14.15.0'} dependencies: '@hapi/accept': 6.0.3 @@ -2920,7 +2525,7 @@ packages: '@hapi/file': 3.0.0 '@hapi/hoek': 11.0.4 '@hapi/pez': 6.1.0 - '@hapi/wreck': 18.0.1 + '@hapi/wreck': 18.1.0 dev: false /@hapi/teamwork@6.0.0: @@ -2953,8 +2558,8 @@ packages: '@hapi/hoek': 11.0.4 dev: false - /@hapi/wreck@18.0.1: - resolution: {integrity: sha512-OLHER70+rZxvDl75xq3xXOfd3e8XIvz8fWY0dqg92UvhZ29zo24vQgfqgHSYhB5ZiuFpSLeriOisAlxAo/1jWg==} + /@hapi/wreck@18.1.0: + resolution: {integrity: sha512-0z6ZRCmFEfV/MQqkQomJ7sl/hyxvcZM7LtuVqN3vdAO4vM9eBbowl0kaqQj9EJJQab+3Uuh1GxbGIBFy4NfJ4w==} dependencies: '@hapi/boom': 10.0.1 '@hapi/bourne': 3.0.0 @@ -2991,14 +2596,14 @@ packages: resolution: {integrity: sha512-N14oMy0q4gM6OuZkIpisKe0JBSjf1Jb39VI+7jMLiWX9124u1Z3Fdj/Tag1NA0cVxxqWDh0CqsjcVfOKtelPDA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: - cborg: 4.1.4 + cborg: 4.2.0 multiformats: 13.1.0 /@ipld/dag-json@10.2.0: resolution: {integrity: sha512-O9YLUrl3d3WbVz7v1WkajFkyfOLEe2Fep+wor4fgVe0ywxzrivrj437NiPcVyB+2EDdFn/Q7tCHFf8YVhDf8ZA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: - cborg: 4.1.4 + cborg: 4.2.0 multiformats: 13.1.0 /@ipld/dag-pb@4.1.0: @@ -3213,7 +2818,7 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -3348,8 +2953,8 @@ packages: it-pushable: 3.2.3 uint8arraylist: 2.4.8 - /@libp2p/interface@1.1.6: - resolution: {integrity: sha512-CLz6TAZf+Mw1PCIU8pjMIct1uh3A1fIene2/t+E57Tw4uJLCBJE9CLed/Opxliy5RH0e32Aa6bi4QSXtkJTK7A==} + /@libp2p/interface@1.2.0: + resolution: {integrity: sha512-ImnGNl3El/AukgaojACT8i9SNW1FOsrThcQU/qA3w5tEBR5p84Uwgzl/nxa4X5vGinItUJ9jLEJmtkQJENoiGQ==} dependencies: '@multiformats/multiaddr': 12.2.1 it-pushable: 3.2.3 @@ -3434,7 +3039,7 @@ packages: dependencies: '@chainsafe/is-ip': 2.0.2 '@chainsafe/netmask': 2.0.0 - '@libp2p/interface': 1.1.6 + '@libp2p/interface': 1.2.0 '@multiformats/dns': 1.0.6 multiformats: 13.1.0 uint8-varint: 2.0.4 @@ -3659,18 +3264,18 @@ packages: resolution: {integrity: sha512-4obI1RdW5/7TFwbwKA9oqw8aggVZ65JAUvIFMd2YmMC2T4+NiZLnok0WhRkhZkUnqjLIHXYNwq7Ho1i39dte0g==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.4 - /@polkadot/util-crypto@7.9.2(@polkadot/util@7.9.2): + /@polkadot/util-crypto@7.9.2(@polkadot/util@12.6.2): resolution: {integrity: sha512-nNwqUwP44eCH9jKKcPie+IHLKkg9LMe6H7hXo91hy3AtoslnNrT51tP3uAm5yllhLvswJfnAgnlHq7ybCgqeFw==} engines: {node: '>=14.0.0'} peerDependencies: '@polkadot/util': 7.9.2 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.4 '@polkadot/networks': 7.9.2 - '@polkadot/util': 7.9.2 - '@polkadot/wasm-crypto': 4.6.1(@polkadot/util@7.9.2)(@polkadot/x-randomvalues@7.9.2) + '@polkadot/util': 12.6.2 + '@polkadot/wasm-crypto': 4.6.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@7.9.2) '@polkadot/x-randomvalues': 7.9.2 blakejs: 1.2.1 bn.js: 4.12.0 @@ -3684,75 +3289,88 @@ packages: tweetnacl: 1.0.3 xxhashjs: 0.2.2 - /@polkadot/util@7.9.2: - resolution: {integrity: sha512-6ABY6ErgkCsM4C6+X+AJSY4pBGwbKlHZmUtHftaiTvbaj4XuA4nTo3GU28jw8wY0Jh2cJZJvt6/BJ5GVkm5tBA==} - engines: {node: '>=14.0.0'} + /@polkadot/util@12.6.2: + resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} + engines: {node: '>=18'} dependencies: - '@babel/runtime': 7.24.1 - '@polkadot/x-textdecoder': 7.9.2 - '@polkadot/x-textencoder': 7.9.2 - '@types/bn.js': 4.11.6 - bn.js: 4.12.0 - camelcase: 6.3.0 - ip-regex: 4.3.0 + '@polkadot/x-bigint': 12.6.2 + '@polkadot/x-global': 12.6.2 + '@polkadot/x-textdecoder': 12.6.2 + '@polkadot/x-textencoder': 12.6.2 + '@types/bn.js': 5.1.5 + bn.js: 5.2.1 + tslib: 2.6.2 - /@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@7.9.2): + /@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@12.6.2): resolution: {integrity: sha512-1oHQjz2oEO1kCIcQniOP+dZ9N2YXf2yCLHLsKaKSvfXiWaetVCaBNB8oIHIVYvuLnVc8qlMi66O6xc1UublHsw==} engines: {node: '>=14.0.0'} peerDependencies: '@polkadot/util': '*' dependencies: - '@babel/runtime': 7.24.1 - '@polkadot/util': 7.9.2 + '@babel/runtime': 7.24.4 + '@polkadot/util': 12.6.2 - /@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@7.9.2): + /@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@12.6.2): resolution: {integrity: sha512-NI3JVwmLjrSYpSVuhu0yeQYSlsZrdpK41UC48sY3kyxXC71pi6OVePbtHS1K3xh3FFmDd9srSchExi3IwzKzMw==} engines: {node: '>=14.0.0'} peerDependencies: '@polkadot/util': '*' dependencies: - '@babel/runtime': 7.24.1 - '@polkadot/util': 7.9.2 + '@babel/runtime': 7.24.4 + '@polkadot/util': 12.6.2 - /@polkadot/wasm-crypto@4.6.1(@polkadot/util@7.9.2)(@polkadot/x-randomvalues@7.9.2): + /@polkadot/wasm-crypto@4.6.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@7.9.2): resolution: {integrity: sha512-2wEftBDxDG+TN8Ah6ogtvzjdZdcF0mAjU4UNNOfpmkBCxQYZOrAHB8HXhzo3noSsKkLX7PDX57NxvJ9OhoTAjw==} engines: {node: '>=14.0.0'} peerDependencies: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' dependencies: - '@babel/runtime': 7.24.1 - '@polkadot/util': 7.9.2 - '@polkadot/wasm-crypto-asmjs': 4.6.1(@polkadot/util@7.9.2) - '@polkadot/wasm-crypto-wasm': 4.6.1(@polkadot/util@7.9.2) + '@babel/runtime': 7.24.4 + '@polkadot/util': 12.6.2 + '@polkadot/wasm-crypto-asmjs': 4.6.1(@polkadot/util@12.6.2) + '@polkadot/wasm-crypto-wasm': 4.6.1(@polkadot/util@12.6.2) '@polkadot/x-randomvalues': 7.9.2 + /@polkadot/x-bigint@12.6.2: + resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} + engines: {node: '>=18'} + dependencies: + '@polkadot/x-global': 12.6.2 + tslib: 2.6.2 + + /@polkadot/x-global@12.6.2: + resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} + engines: {node: '>=18'} + dependencies: + tslib: 2.6.2 + /@polkadot/x-global@7.9.2: resolution: {integrity: sha512-JX5CrGWckHf1P9xKXq4vQCAuMUbL81l2hOWX7xeP8nv4caHEpmf5T1wD1iMdQBL5PFifo6Pg0V6/oZBB+bts7A==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.4 /@polkadot/x-randomvalues@7.9.2: resolution: {integrity: sha512-svQfG31yCXf6yVyIgP0NgCzEy7oc3Lw054ZspkaqjOivxYdrXaf5w3JSSUyM/MRjI2+nk+B/EyJoMYcfSwTfsQ==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.4 '@polkadot/x-global': 7.9.2 - /@polkadot/x-textdecoder@7.9.2: - resolution: {integrity: sha512-wfwbSHXPhrOAl12QvlIOGNkMH/N/h8PId2ytIjvM/8zPPFB5Il6DWSFLtVapOGEpIFjEWbd5t8Td4pHBVXIEbg==} - engines: {node: '>=14.0.0'} + /@polkadot/x-textdecoder@12.6.2: + resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} + engines: {node: '>=18'} dependencies: - '@babel/runtime': 7.24.1 - '@polkadot/x-global': 7.9.2 + '@polkadot/x-global': 12.6.2 + tslib: 2.6.2 - /@polkadot/x-textencoder@7.9.2: - resolution: {integrity: sha512-A19wwYINuZwU2dUyQ/mMzB0ISjyfc4cISfL4zCMUAVgj7xVoXMYV2GfjNdMpA8Wsjch3su6pxLbtJ2wU03sRTQ==} - engines: {node: '>=14.0.0'} + /@polkadot/x-textencoder@12.6.2: + resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} + engines: {node: '>=18'} dependencies: - '@babel/runtime': 7.24.1 - '@polkadot/x-global': 7.9.2 + '@polkadot/x-global': 12.6.2 + tslib: 2.6.2 /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -3867,10 +3485,6 @@ packages: transitivePeerDependencies: - encoding - /@stablelib/aead@1.0.1: - resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==} - dev: true - /@stablelib/binary@1.0.1: resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==} dependencies: @@ -3883,32 +3497,6 @@ packages: '@stablelib/hash': 1.0.1 '@stablelib/wipe': 1.0.1 - /@stablelib/bytes@1.0.1: - resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==} - dev: true - - /@stablelib/chacha20poly1305@1.0.1: - resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==} - dependencies: - '@stablelib/aead': 1.0.1 - '@stablelib/binary': 1.0.1 - '@stablelib/chacha': 1.0.1 - '@stablelib/constant-time': 1.0.1 - '@stablelib/poly1305': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: true - - /@stablelib/chacha@1.0.1: - resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: true - - /@stablelib/constant-time@1.0.1: - resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==} - dev: true - /@stablelib/ed25519@1.0.3: resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==} dependencies: @@ -3925,19 +3513,6 @@ packages: /@stablelib/int@1.0.1: resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==} - /@stablelib/keyagreement@1.0.1: - resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==} - dependencies: - '@stablelib/bytes': 1.0.1 - dev: true - - /@stablelib/poly1305@1.0.1: - resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==} - dependencies: - '@stablelib/constant-time': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: true - /@stablelib/random@1.0.2: resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==} dependencies: @@ -3968,32 +3543,6 @@ packages: /@stablelib/wipe@1.0.1: resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==} - /@stablelib/x25519@1.0.3: - resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==} - dependencies: - '@stablelib/keyagreement': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/wipe': 1.0.1 - dev: true - - /@stablelib/xchacha20@1.0.1: - resolution: {integrity: sha512-1YkiZnFF4veUwBVhDnDYwo6EHeKzQK4FnLiO7ezCl/zu64uG0bCCAUROJaBkaLH+5BEsO3W7BTXTguMbSLlWSw==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/chacha': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: true - - /@stablelib/xchacha20poly1305@1.0.1: - resolution: {integrity: sha512-B1Abj0sMJ8h3HNmGnJ7vHBrAvxuNka6cJJoZ1ILN7iuacXp7sUYcgOVEOTLWj+rtQMpspY9tXSCRLPmN1mQNWg==} - dependencies: - '@stablelib/aead': 1.0.1 - '@stablelib/chacha20poly1305': 1.0.1 - '@stablelib/constant-time': 1.0.1 - '@stablelib/wipe': 1.0.1 - '@stablelib/xchacha20': 1.0.1 - dev: true - /@stacks/common@6.13.0: resolution: {integrity: sha512-wwzyihjaSdmL6NxKvDeayy3dqM0L0Q2sawmdNtzJDi0FnXuJGm5PeapJj7bEfcI9XwI7Bw5jZoC6mCn9nc5YIw==} dependencies: @@ -4033,7 +3582,7 @@ packages: transitivePeerDependencies: - encoding - /@swc/cli@0.3.12(@swc/core@1.4.13): + /@swc/cli@0.3.12(@swc/core@1.4.14): resolution: {integrity: sha512-h7bvxT+4+UDrLWJLFHt6V+vNAcUNii2G4aGSSotKz1ECEk4MyEh5CWxmeSscwuz5K3i+4DWTgm4+4EyMCQKn+g==} engines: {node: '>= 16.14.0'} hasBin: true @@ -4045,7 +3594,7 @@ packages: optional: true dependencies: '@mole-inc/bin-wrapper': 8.0.1 - '@swc/core': 1.4.13 + '@swc/core': 1.4.14 '@swc/counter': 0.1.3 commander: 8.3.0 fast-glob: 3.3.2 @@ -4056,8 +3605,8 @@ packages: source-map: 0.7.4 dev: true - /@swc/core-darwin-arm64@1.4.13: - resolution: {integrity: sha512-36P72FLpm5iq85IvoEjBvi22DiqkkEIanJ1M0E8bkxcFHUbjBrYfPY9T6cpPyK5oQqkaTBvNAc3j1BlVD6IH6w==} + /@swc/core-darwin-arm64@1.4.14: + resolution: {integrity: sha512-8iPfLhYNspBl836YYsfv6ErXwDUqJ7IMieddV3Ey/t/97JAEAdNDUdtTKDtbyP0j/Ebyqyn+fKcqwSq7rAof0g==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -4065,8 +3614,8 @@ packages: dev: true optional: true - /@swc/core-darwin-x64@1.4.13: - resolution: {integrity: sha512-ye7OgKpDdyA8AMIVVdmD1ICDaFXgoEXORnVO8bBHyul0WN71yUBZMX+YxEx2lpWtiftA2vY/1MAuOR80vHkBCw==} + /@swc/core-darwin-x64@1.4.14: + resolution: {integrity: sha512-9CqSj8uRZ92cnlgAlVaWMaJJBdxtNvCzJxaGj5KuIseeG6Q0l1g+qk8JcU7h9dAsH9saHTNwNFBVGKQo0W0ujg==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -4074,8 +3623,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf@1.4.13: - resolution: {integrity: sha512-+x593Jlmu4c3lJtZUKRejWpV2MAij1Js5nmQLLdjo6ChR2D4B2rzj3iMiKn5gITew7fraF9t3fvXALdWh7HmUg==} + /@swc/core-linux-arm-gnueabihf@1.4.14: + resolution: {integrity: sha512-mfd5JArPITTzMjcezH4DwMw+BdjBV1y25Khp8itEIpdih9ei+fvxOOrDYTN08b466NuE2dF2XuhKtRLA7fXArQ==} engines: {node: '>=10'} cpu: [arm] os: [linux] @@ -4083,8 +3632,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-gnu@1.4.13: - resolution: {integrity: sha512-0x8OVw4dfyNerrs/9eZX9wNnmvwbwXSMCi+LbE6Xt1pXOIwvoLtFIXcV3NsrlkFboO3sr5UAQIwDxKqbIZA9pQ==} + /@swc/core-linux-arm64-gnu@1.4.14: + resolution: {integrity: sha512-3Lqlhlmy8MVRS9xTShMaPAp0oyUt0KFhDs4ixJsjdxKecE0NJSV/MInuDmrkij1C8/RQ2wySRlV9np5jK86oWw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -4092,8 +3641,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl@1.4.13: - resolution: {integrity: sha512-Z9c4JiequtZvngPcxbCuAOkmWBxi2vInZbjjhD5I+Q9oiJdXUz1t2USGwsGPS41Xvk1BOA3ecK2Sn1ilY3titg==} + /@swc/core-linux-arm64-musl@1.4.14: + resolution: {integrity: sha512-n0YoCa64TUcJrbcXIHIHDWQjdUPdaXeMHNEu7yyBtOpm01oMGTKP3frsUXIABLBmAVWtKvqit4/W1KVKn5gJzg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -4101,8 +3650,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu@1.4.13: - resolution: {integrity: sha512-ChatHtk+vX0Ke5QG+jO+rIapw/KwZsi9MedCBHFXHH6iWF4z8d51cJeN68ykcn+vAXzjNeFNdlNy5Vbkd1zAqg==} + /@swc/core-linux-x64-gnu@1.4.14: + resolution: {integrity: sha512-CGmlwLWbfG1dB4jZBJnp2IWlK5xBMNLjN7AR5kKA3sEpionoccEnChOEvfux1UdVJQjLRKuHNV9yGyqGBTpxfQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -4110,8 +3659,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl@1.4.13: - resolution: {integrity: sha512-0Pz39YR530mXpsztwQkmEKdkkZy4fY4Smdh4pkm6Ly8Nndyo0te/l4bcAGqN24Jp7aVwF/QSy14SAtw4HRjU9g==} + /@swc/core-linux-x64-musl@1.4.14: + resolution: {integrity: sha512-xq4npk8YKYmNwmr8fbvF2KP3kUVdZYfXZMQnW425gP3/sn+yFQO8Nd0bGH40vOVQn41kEesSe0Z5O/JDor2TgQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -4119,8 +3668,8 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc@1.4.13: - resolution: {integrity: sha512-LVZfhlD+jHcAbz5NN+gAJ1BEasB0WpcvUzcsJt0nQSRsojgzPzFjJ+fzEBnvT7SMtqKkrnVJ0OmDYeh88bDRpw==} + /@swc/core-win32-arm64-msvc@1.4.14: + resolution: {integrity: sha512-imq0X+gU9uUe6FqzOQot5gpKoaC00aCUiN58NOzwp0QXEupn8CDuZpdBN93HiZswfLruu5jA1tsc15x6v9p0Yg==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -4128,8 +3677,8 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc@1.4.13: - resolution: {integrity: sha512-78hxHWUvUZtWsnhcf8DKwhBcNFJw+j4y4fN2B9ioXmBWX2tIyw+BqUHOrismOtjPihaZmwe/Ok2e4qmkawE2fw==} + /@swc/core-win32-ia32-msvc@1.4.14: + resolution: {integrity: sha512-cH6QpXMw5D3t+lpx6SkErHrxN0yFzmQ0lgNAJxoDRiaAdDbqA6Col8UqUJwUS++Ul6aCWgNhCdiEYehPaoyDPA==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -4137,8 +3686,8 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc@1.4.13: - resolution: {integrity: sha512-WSfy1u2Xde6jU7UpHIInCUMW98Zw9iZglddKUAvmr1obkZji5U6EX0Oca3asEJdZPFb+2lMLjt0Mh5a1YisROg==} + /@swc/core-win32-x64-msvc@1.4.14: + resolution: {integrity: sha512-FmZ4Tby4wW65K/36BKzmuu7mlq7cW5XOxzvufaSNVvQ5PN4OodAlqPjToe029oma4Av+ykJiif64scMttyNAzg==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -4146,8 +3695,8 @@ packages: dev: true optional: true - /@swc/core@1.4.13: - resolution: {integrity: sha512-rOtusBE+2gaeRkAJn5E4zp5yzZekZOypzSOz5ZG6P1hFbd+Cc26fWEdK6sUSnrkkvTd0Oj33KXLB/4UkbK/UHA==} + /@swc/core@1.4.14: + resolution: {integrity: sha512-tHXg6OxboUsqa/L7DpsCcFnxhLkqN/ht5pCwav1HnvfthbiNIJypr86rNx4cUnQDJepETviSqBTIjxa7pSpGDQ==} engines: {node: '>=10'} requiresBuild: true peerDependencies: @@ -4159,30 +3708,30 @@ packages: '@swc/counter': 0.1.3 '@swc/types': 0.1.6 optionalDependencies: - '@swc/core-darwin-arm64': 1.4.13 - '@swc/core-darwin-x64': 1.4.13 - '@swc/core-linux-arm-gnueabihf': 1.4.13 - '@swc/core-linux-arm64-gnu': 1.4.13 - '@swc/core-linux-arm64-musl': 1.4.13 - '@swc/core-linux-x64-gnu': 1.4.13 - '@swc/core-linux-x64-musl': 1.4.13 - '@swc/core-win32-arm64-msvc': 1.4.13 - '@swc/core-win32-ia32-msvc': 1.4.13 - '@swc/core-win32-x64-msvc': 1.4.13 + '@swc/core-darwin-arm64': 1.4.14 + '@swc/core-darwin-x64': 1.4.14 + '@swc/core-linux-arm-gnueabihf': 1.4.14 + '@swc/core-linux-arm64-gnu': 1.4.14 + '@swc/core-linux-arm64-musl': 1.4.14 + '@swc/core-linux-x64-gnu': 1.4.14 + '@swc/core-linux-x64-musl': 1.4.14 + '@swc/core-win32-arm64-msvc': 1.4.14 + '@swc/core-win32-ia32-msvc': 1.4.14 + '@swc/core-win32-x64-msvc': 1.4.14 dev: true /@swc/counter@0.1.3: resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} dev: true - /@swc/jest@0.2.36(@swc/core@1.4.13): + /@swc/jest@0.2.36(@swc/core@1.4.14): resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==} engines: {npm: '>= 7.0.0'} peerDependencies: '@swc/core': '*' dependencies: '@jest/create-cache-key-function': 29.7.0 - '@swc/core': 1.4.13 + '@swc/core': 1.4.14 '@swc/counter': 0.1.3 jsonc-parser: 3.2.1 dev: true @@ -4267,7 +3816,7 @@ packages: /@types/babel__core@7.20.5: resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 @@ -4283,7 +3832,7 @@ packages: /@types/babel__template@7.4.4: resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 dev: true @@ -4293,11 +3842,6 @@ packages: '@babel/types': 7.24.0 dev: true - /@types/bn.js@4.11.6: - resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} - dependencies: - '@types/node': 20.12.7 - /@types/bn.js@5.1.5: resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} dependencies: @@ -4327,8 +3871,8 @@ packages: dependencies: '@types/node': 20.12.7 - /@types/cors@2.8.15: - resolution: {integrity: sha512-n91JxbNLD8eQIuXDIChAN1tCKNWCEgpceU9b7ZMbFA+P+Q4yIeh80jizFLEvolRPc1ES0VdwFlGv+kJTSirogw==} + /@types/cors@2.8.17: + resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} dependencies: '@types/node': 20.12.7 dev: true @@ -4478,7 +4022,7 @@ packages: '@types/yargs-parser': 21.0.3 dev: true - /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -4490,10 +4034,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 @@ -4501,13 +4045,13 @@ packages: ignore: 5.3.1 natural-compare: 1.4.0 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.4) - typescript: 5.4.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-gKmTNwZnblUdnTIJu3e9kmeRRzV2j1a/LUO27KNNAnIC5zjy1aSvXSRp4rVNlmAoHlQ7HzX42NbKpcSr4jF80A==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -4519,10 +4063,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/scope-manager': 7.6.0 - '@typescript-eslint/type-utils': 7.6.0(eslint@8.57.0)(typescript@5.4.4) - '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/type-utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/visitor-keys': 7.6.0 debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 @@ -4530,13 +4074,13 @@ packages: ignore: 5.3.1 natural-compare: 1.4.0 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.4) - typescript: 5.4.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -4548,16 +4092,16 @@ packages: dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 - typescript: 5.4.4 + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-usPMPHcwX3ZoPWnBnhhorc14NJw9J4HpSXQX4urF2TPKG0au0XhJoZyX62fmvdHONUkmyUe74Hzm1//XA+BoYg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -4569,11 +4113,11 @@ packages: dependencies: '@typescript-eslint/scope-manager': 7.6.0 '@typescript-eslint/types': 7.6.0 - '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 7.6.0 debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 - typescript: 5.4.4 + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true @@ -4602,7 +4146,7 @@ packages: '@typescript-eslint/visitor-keys': 7.6.0 dev: true - /@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -4612,17 +4156,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.4) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.4) - typescript: 5.4.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils@7.6.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/type-utils@7.6.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-NxAfqAPNLG6LTmy7uZgpK8KcuiS2NZD/HlThPXQRGwz6u7MDBWRVliEEl1Gj6U7++kVJTpehkhZzCJLMK66Scw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -4632,12 +4176,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.4) - '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.4) - typescript: 5.4.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true @@ -4657,7 +4201,7 @@ packages: engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.4): + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4672,13 +4216,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.0 - tsutils: 3.21.0(typescript@5.4.4) - typescript: 5.4.4 + tsutils: 3.21.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.4): + /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5): resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -4694,13 +4238,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.4) - typescript: 5.4.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.6.0(typescript@5.4.4): + /@typescript-eslint/typescript-estree@7.6.0(typescript@5.4.5): resolution: {integrity: sha512-+7Y/GP9VuYibecrCQWSKgl3GvUM5cILRttpWtnAu8GNL9j11e4tbuGZmZjJ8ejnKYyBRb2ddGQ3rEFCq3QjMJw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -4716,13 +4260,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.4 semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.4) - typescript: 5.4.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4733,7 +4277,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.0 @@ -4742,7 +4286,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -4753,7 +4297,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -4761,7 +4305,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@7.6.0(eslint@8.57.0)(typescript@5.4.4): + /@typescript-eslint/utils@7.6.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-x54gaSsRRI+Nwz59TXpCsr6harB98qjXYzsRxGqvA5Ue3kQH+FxS7FYU81g/omn22ML2pZJkisy6Q+ElK8pBCA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -4772,7 +4316,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 7.6.0 '@typescript-eslint/types': 7.6.0 - '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.4) + '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: @@ -4858,9 +4402,8 @@ packages: /abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - requiresBuild: true - /abitype@0.9.8(typescript@5.4.4): + /abitype@0.9.8(typescript@5.4.5): resolution: {integrity: sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==} peerDependencies: typescript: '>=5.0.4' @@ -4871,7 +4414,7 @@ packages: zod: optional: true dependencies: - typescript: 5.4.4 + typescript: 5.4.5 /abstract-leveldown@6.0.3: resolution: {integrity: sha512-jzewKKpZbaYUa6HTThnrl+GrJhzjEAeuc7hTVpZdzg7kupXZFoqQDFwyOwLNbmJKJlmzw8yiipMPkDiuKkT06Q==} @@ -5101,7 +4644,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-object-atoms: 1.0.0 get-intrinsic: 1.2.4 is-string: 1.0.7 @@ -5118,7 +4661,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 @@ -5130,7 +4673,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 @@ -5142,7 +4685,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 dev: true @@ -5152,7 +4695,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 dev: true @@ -5161,7 +4704,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 dev: true @@ -5170,7 +4713,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 es-shim-unscopables: 1.0.2 dev: true @@ -5182,7 +4725,7 @@ packages: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 get-intrinsic: 1.2.4 is-array-buffer: 3.0.4 @@ -5203,8 +4746,8 @@ packages: /await-semaphore@0.1.3: resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} - /aws-sdk@2.1594.0: - resolution: {integrity: sha512-ZvJ63Vm/ZuygGuO19n1PjPkyo4OcKQzgK62kAhsp4SUBDMYuemOXHpIH+ORFOjO8Js7exoqHtNS4p9fHt6cW2Q==} + /aws-sdk@2.1599.0: + resolution: {integrity: sha512-jPb1LAN+s1TLTK+VR3TTJLr//sb3AhhT60Bm9jxB5G/fVeeRczXtBtixNpQ00gksQdkstILYLc9S6MuKMsksxA==} engines: {node: '>= 10.0.0'} requiresBuild: true dependencies: @@ -5227,17 +4770,17 @@ packages: transitivePeerDependencies: - debug - /babel-jest@29.7.0(@babel/core@7.24.3): + /babel-jest@29.7.0(@babel/core@7.24.4): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.24.3) + babel-preset-jest: 29.6.3(@babel/core@7.24.4) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -5268,35 +4811,35 @@ packages: '@types/babel__traverse': 7.20.5 dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) - dev: true - - /babel-preset-jest@29.6.3(@babel/core@7.24.3): + '@babel/core': 7.24.4 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) + dev: true + + /babel-preset-jest@29.6.3(@babel/core@7.24.4): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4) dev: true /balanced-match@1.0.2: @@ -5331,18 +4874,9 @@ packages: /bech32@1.1.4: resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} - /bech32@2.0.0: - resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} - dev: true - /bigi@1.4.2: resolution: {integrity: sha512-ddkU+dFIuEIW8lE7ZwdIAf2UPoM90eaprg5m3YXAVVTmKlqV/9BX4A2M8BOK2yOq6/VgZFVhK6QAxJebhlbhzw==} - /bigint-mod-arith@3.3.1: - resolution: {integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==} - engines: {node: '>=10.4.0'} - dev: true - /bin-check@4.1.0: resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} engines: {node: '>=4'} @@ -5469,7 +5003,7 @@ packages: /borsh@0.6.0: resolution: {integrity: sha512-sl5k89ViqsThXQpYa9XDtz1sBl3l1lI313cFUY1HKr+wvMILnb+58xpkqTNrYbelh99dY7K8usxoCusQmqix9Q==} dependencies: - bn.js: 5.2.1 + bn.js: 5.2.0 bs58: 4.0.1 text-encoding-utf-8: 1.0.2 @@ -5521,8 +5055,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001600 - electron-to-chromium: 1.4.719 + caniuse-lite: 1.0.30001610 + electron-to-chromium: 1.4.736 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) dev: true @@ -5558,10 +5092,6 @@ packages: dependencies: safe-buffer: 5.2.1 - /buffer-writer@2.0.0: - resolution: {integrity: sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==} - engines: {node: '>=4'} - /buffer-xor@1.0.3: resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} @@ -5705,9 +5235,10 @@ packages: /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} + dev: true - /caniuse-lite@1.0.30001600: - resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==} + /caniuse-lite@1.0.30001610: + resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} dev: true /canonicalize@2.0.0: @@ -5733,8 +5264,8 @@ packages: resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} hasBin: true - /cborg@4.1.4: - resolution: {integrity: sha512-cCw4IuvCnwjsrgrCQoreyLZDETsfw+AtFz+OFwWbWgA1yALo4nHC3Vv+zhgcVB2bor6GFRZVxrZ7Yt/3hBFAkA==} + /cborg@4.2.0: + resolution: {integrity: sha512-q6cFW5m3KxfP/9xGI3yGLaC1l5DP6DWM9IvjiJojnIwohL5CQDl02EXViPV852mOfQo+7PJGPN01MI87vFGzyA==} hasBin: true /chainsaw@0.1.0: @@ -6045,7 +5576,6 @@ packages: dependencies: '@ipld/dag-cbor': 7.0.3 multiformats: 11.0.2 - dev: false /dag-jose-utils@4.0.0: resolution: {integrity: sha512-bmmXtVdEKp/zYH8El4GGkMREJioUztz8fzOErfy5dTbyKIVOF61C5sfsZLYCB/wiT/I9+SPNrQeo/Cx6Ik3wJQ==} @@ -6152,8 +5682,8 @@ packages: dependencies: mimic-response: 3.1.0 - /dedent@1.5.1: - resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} + /dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -6264,23 +5794,6 @@ packages: engines: {node: '>=8'} dev: true - /did-jwt@6.11.6: - resolution: {integrity: sha512-OfbWknRxJuUqH6Lk0x+H1FsuelGugLbBDEwsoJnicFOntIG/A4y19fn0a8RLxaQbWQ5gXg0yDq5E2huSBiiXzw==} - dependencies: - '@stablelib/ed25519': 1.0.3 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/x25519': 1.0.3 - '@stablelib/xchacha20poly1305': 1.0.1 - bech32: 2.0.0 - canonicalize: 2.0.0 - did-resolver: 4.1.0 - elliptic: 6.5.5 - js-sha3: 0.8.0 - multiformats: 9.9.0 - uint8arrays: 3.1.1 - dev: true - /did-jwt@7.4.7: resolution: {integrity: sha512-Apz7nIfIHSKWIMaEP5L/K8xkwByvjezjTG0xiqwKdnNj1x8M0+Yasury5Dm/KPltxi2PlGfRPf3IejRKZrT8mQ==} dependencies: @@ -6312,15 +5825,14 @@ packages: multiformats: 11.0.2 rpc-utils: 0.6.2 uint8arrays: 4.0.10 - dev: false - /dids@5.0.2(typescript@5.4.4): + /dids@5.0.2(typescript@5.4.5): resolution: {integrity: sha512-sxTgrvJtatqdm7dukGbquk23BVvbiaxf3nTKywWaY9AUqwC2IYEo6FG0En2cMl3J1fqMMQXrGg9luh2xDmYOmw==} engines: {node: '>=14.14'} dependencies: - '@didtools/cacao': 3.0.1(typescript@5.4.4) + '@didtools/cacao': 3.0.1(typescript@5.4.5) '@didtools/codecs': 3.0.0 - '@didtools/pkh-ethereum': 0.5.0(typescript@5.4.4) + '@didtools/pkh-ethereum': 0.5.0(typescript@5.4.5) '@stablelib/random': 1.0.2 codeco: 1.2.1 dag-jose-utils: 4.0.0 @@ -6382,8 +5894,8 @@ packages: esutils: 2.0.3 dev: true - /dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} + /dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} engines: {node: '>=12'} dev: false @@ -6421,8 +5933,8 @@ packages: dependencies: encoding: 0.1.13 - /electron-to-chromium@1.4.719: - resolution: {integrity: sha512-FbWy2Q2YgdFzkFUW/W5jBjE9dj+804+98E4Pup78JBPnbdb3pv6IneY2JCPKdeKLh3AOKHQeYf+KwLr7mxGh6Q==} + /electron-to-chromium@1.4.736: + resolution: {integrity: sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q==} dev: true /elliptic@6.5.4: @@ -6532,8 +6044,8 @@ packages: o3: 1.0.3 u3: 0.1.1 - /es-abstract@1.23.2: - resolution: {integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==} + /es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 @@ -6600,7 +6112,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 es-set-tostringtag: 2.0.3 function-bind: 1.1.2 @@ -6703,15 +6215,15 @@ packages: engines: {node: '>=12'} dev: true - /eslint-config-3box@1.0.0(eslint@8.57.0)(jest@29.7.0)(prettier@3.2.5)(typescript@5.4.4): + /eslint-config-3box@1.0.0(eslint@8.57.0)(jest@29.7.0)(prettier@3.2.5)(typescript@5.4.5): resolution: {integrity: sha512-3lf+RTeaz9ddwYquysWs0U+1PSWQtSv+3QHTUT9RASPA40ZfsSq8+Ki4/ZG+ybaKf6GnTXQlSIuQe00jxbB5zA==} dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.4) - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) eslint-config-prettier: 8.10.0(eslint@8.57.0) eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.4) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.5) eslint-plugin-prettier: 5.1.3(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@3.2.5) eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) @@ -6756,7 +6268,7 @@ packages: enhanced-resolve: 5.16.0 eslint: 8.57.0 eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0) fast-glob: 3.3.2 get-tsconfig: 4.7.3 is-core-module: 2.13.1 @@ -6789,7 +6301,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) debug: 3.2.7 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 @@ -6798,7 +6310,36 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): + /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.6.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5) + debug: 3.2.7 + eslint: 8.57.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0): resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: @@ -6808,7 +6349,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 @@ -6817,7 +6358,7 @@ packages: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.6.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -6833,7 +6374,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.4): + /eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.5): resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -6846,8 +6387,8 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.4) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 jest: 29.7.0 transitivePeerDependencies: @@ -6855,7 +6396,7 @@ packages: - typescript dev: true - /eslint-plugin-jest@28.2.0(@typescript-eslint/eslint-plugin@7.6.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.4): + /eslint-plugin-jest@28.2.0(@typescript-eslint/eslint-plugin@7.6.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.5): resolution: {integrity: sha512-yRDti/a+f+SMSmNTiT9/M/MzXGkitl8CfzUxnpoQcTyfq8gUrXMriVcWU36W1X6BZSUoyUCJrDAWWUA2N4hE5g==} engines: {node: ^16.10.0 || ^18.12.0 || >=20.0.0} peerDependencies: @@ -6868,8 +6409,8 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.4) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@7.6.0)(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 jest: 29.7.0 transitivePeerDependencies: @@ -7427,7 +6968,6 @@ packages: /fs@0.0.1-security: resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - dev: false /fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} @@ -7445,7 +6985,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 functions-have-names: 1.2.3 dev: true @@ -7644,8 +7184,8 @@ packages: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true - /graphql-relay@0.10.0(graphql@16.8.1): - resolution: {integrity: sha512-44yBuw2/DLNEiMypbNZBt1yMDbBmyVPVesPywnteGGALiBmdyy1JP8jSg8ClLePg8ZZxk0O4BLhd1a6U/1jDOQ==} + /graphql-relay@0.10.1(graphql@16.8.1): + resolution: {integrity: sha512-8AtwSe6B0/b4+YzynHr38PP7S+zX5Vs5LEo0BEzGCPq/THAiHa5H5ZLf3bRbKbok15ADxDQSsGJmlqXeJDDPIw==} engines: {node: ^12.20.0 || ^14.15.0 || >= 15.9.0} peerDependencies: graphql: ^16.2.0 @@ -7663,14 +7203,14 @@ packages: tslib: 2.6.2 dev: false - /graphql-yoga@5.2.0(graphql@16.8.1): - resolution: {integrity: sha512-wazpTEK0B6fSgcGge1EDpP69Oet5Gdp4VmzhqKJD7Uu9S1tP9vUR7AoeuWcrURoCWP2WTv/3dWTQWVt9RxmB1Q==} + /graphql-yoga@5.3.0(graphql@16.8.1): + resolution: {integrity: sha512-6mXoGE5AMN6YNugJvjBFIQ0dFUiOMloN0dAzLL8GFt4iJ5WlWRgjdzGHod2zZz7yWQokEVD42DHgrc7NY3Dm0w==} engines: {node: '>=18.0.0'} peerDependencies: graphql: ^15.2.0 || ^16.0.0 dependencies: '@envelop/core': 5.0.0 - '@graphql-tools/executor': 1.2.4(graphql@16.8.1) + '@graphql-tools/executor': 1.2.6(graphql@16.8.1) '@graphql-tools/schema': 10.0.3(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) '@graphql-yoga/logger': 2.0.0 @@ -8004,10 +7544,6 @@ packages: sprintf-js: 1.1.3 optional: true - /ip-regex@4.3.0: - resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} - engines: {node: '>=8'} - /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -8123,7 +7659,7 @@ packages: engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: '@hapi/boom': 10.0.1 - '@hapi/hapi': 21.3.8 + '@hapi/hapi': 21.3.9 '@libp2p/interface-peer-id': 2.0.2 '@libp2p/logger': 2.1.1 '@multiformats/multiaddr': 11.6.1 @@ -8417,8 +7953,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 + '@babel/core': 7.24.4 + '@babel/parser': 7.24.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 @@ -8430,8 +7966,8 @@ packages: resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 + '@babel/core': 7.24.4 + '@babel/parser': 7.24.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.0 @@ -8558,7 +8094,7 @@ packages: '@types/node': 20.12.7 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.1 + dedent: 1.5.3 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -8616,11 +8152,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 '@types/node': 20.12.7 - babel-jest: 29.7.0(@babel/core@7.24.3) + babel-jest: 29.7.0(@babel/core@7.24.4) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -8855,15 +8391,15 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/generator': 7.24.4 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4) '@babel/types': 7.24.0 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -9074,17 +8610,6 @@ packages: object.values: 1.2.0 dev: true - /key-did-provider-ed25519@2.0.1: - resolution: {integrity: sha512-FaB2g7zUAeN/bLaFl2YSNQx9NsxgDd/3TR1YGvoXLhENsvZBdyA2V7hX8/MZhZ5jm82wL5lRw3O4UXuz/pJANQ==} - engines: {node: '>=14.14'} - dependencies: - '@stablelib/ed25519': 1.0.3 - did-jwt: 6.11.6 - fast-json-stable-stringify: 2.1.0 - rpc-utils: 0.6.2 - uint8arrays: 3.1.1 - dev: true - /key-did-provider-ed25519@3.0.2: resolution: {integrity: sha512-4Yw0CeO1hKRaUsh9NIz4tn4Ysr09CdoJItyT0vHjd5iedJ+FvVt7pTbNr7IY0/+8mWvYslutAK5LFrwu5agpsA==} engines: {node: '>=14.14'} @@ -9095,15 +8620,14 @@ packages: fast-json-stable-stringify: 2.1.0 rpc-utils: 0.6.2 uint8arrays: 4.0.10 - dev: false - /key-did-provider-ed25519@4.0.2(typescript@5.4.4): + /key-did-provider-ed25519@4.0.2(typescript@5.4.5): resolution: {integrity: sha512-bnnRGuuUtylKGMVmgXVSoGccBg87roFi6xy5dQmTgNqnCmrxBBUatYoVimcnA+SGCFqi2qk6B9dD10Ed4rTZPg==} engines: {node: '>=14.14'} dependencies: '@noble/curves': 1.4.0 did-jwt: 7.4.7 - dids: 5.0.2(typescript@5.4.4) + dids: 5.0.2(typescript@5.4.5) fast-json-stable-stringify: 2.1.0 rpc-utils: 0.6.2 uint8arrays: 5.0.3 @@ -9112,17 +8636,6 @@ packages: - typescript - utf-8-validate - zod - dev: false - - /key-did-resolver@2.1.3: - resolution: {integrity: sha512-zEDHuM9mictWyj8lKO72uqjvsgz7Eu2hioI4gvAEA4IbB9ojBiBcshMt0ptOmFKV6WqBnxW2gTH4eO5Zj4LUMQ==} - dependencies: - '@stablelib/ed25519': 1.0.3 - bigint-mod-arith: 3.3.1 - multiformats: 9.9.0 - uint8arrays: 3.1.1 - varint: 6.0.0 - dev: true /key-did-resolver@4.0.0: resolution: {integrity: sha512-+U2nd/0rjO4Yqe2hnHBD7ygcLRfT43Oje9IIjv1BlBi0lopwxZpIFQ7GekguOHK02r+JGdl8mpJVNHs5lvXVOA==} @@ -9132,7 +8645,6 @@ packages: multiformats: 13.1.0 uint8arrays: 5.0.3 varint: 6.0.0 - dev: false /keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} @@ -9154,7 +8666,7 @@ packages: engines: {node: '>=6'} dev: true - /knex@2.5.1(pg@8.11.3)(sqlite3@5.1.7): + /knex@2.5.1(pg@8.11.5)(sqlite3@5.1.7): resolution: {integrity: sha512-z78DgGKUr4SE/6cm7ku+jHvFT0X97aERh/f0MUKAKgFnwCYBEW4TFBqtHWFYiJFid7fMrtpZ/gxJthvz5mEByA==} engines: {node: '>=12'} hasBin: true @@ -9191,7 +8703,7 @@ packages: getopts: 2.3.0 interpret: 2.2.0 lodash: 4.17.21 - pg: 8.11.3 + pg: 8.11.5 pg-connection-string: 2.6.1 rechoir: 0.8.0 resolve-from: 5.0.0 @@ -9919,8 +9431,8 @@ packages: dev: true optional: true - /node-abi@3.56.0: - resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==} + /node-abi@3.57.0: + resolution: {integrity: sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==} engines: {node: '>=10'} dependencies: semver: 7.6.0 @@ -10127,7 +9639,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-object-atoms: 1.0.0 dev: true @@ -10137,7 +9649,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 dev: true /object.hasown@1.1.4: @@ -10145,7 +9657,7 @@ packages: engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-object-atoms: 1.0.0 dev: true @@ -10311,9 +9823,6 @@ packages: p-timeout: 6.1.2 dev: false - /packet-reader@1.0.0: - resolution: {integrity: sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==} - /pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: false @@ -10422,7 +9931,7 @@ packages: delay: 5.0.0 lodash.debounce: 4.0.8 p-map: 4.0.0 - pg: 8.11.3 + pg: 8.11.5 serialize-error: 8.1.0 uuid: 9.0.1 transitivePeerDependencies: @@ -10436,38 +9945,22 @@ packages: /pg-connection-string@2.6.1: resolution: {integrity: sha512-w6ZzNu6oMmIzEAYVw+RLK0+nqHPt8K3ZnknKi+g48Ak2pr3dtljJW3o+D/n2zzCG07Zoe9VOX3aiKpj+BN0pjg==} - /pg-connection-string@2.6.2: - resolution: {integrity: sha512-ch6OwaeaPYcova4kKZ15sbJ2hKb/VP48ZD2gE7i1J+L4MspCtBMAx8nMgz7bksc7IojCIIWuEhHibSMFH8m8oA==} - /pg-connection-string@2.6.4: resolution: {integrity: sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==} - dev: false /pg-int8@1.0.1: resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} engines: {node: '>=4.0.0'} - /pg-pool@3.6.1(pg@8.11.3): - resolution: {integrity: sha512-jizsIzhkIitxCGfPRzJn1ZdcosIt3pz9Sh3V01fm1vZnbnCMgmGl5wvGGdNN2EL9Rmb0EcFoCkixH4Pu+sP9Og==} - peerDependencies: - pg: '>=8.0' - dependencies: - pg: 8.11.3 - /pg-pool@3.6.2(pg@8.11.5): resolution: {integrity: sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==} peerDependencies: pg: '>=8.0' dependencies: pg: 8.11.5 - dev: false - - /pg-protocol@1.6.0: - resolution: {integrity: sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q==} /pg-protocol@1.6.1: resolution: {integrity: sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==} - dev: false /pg-types@2.2.0: resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} @@ -10479,25 +9972,6 @@ packages: postgres-date: 1.0.7 postgres-interval: 1.2.0 - /pg@8.11.3: - resolution: {integrity: sha512-+9iuvG8QfaaUrrph+kpF24cXkH1YOOUeArRNYIxq1viYHZagBxrTno7cecY1Fa44tJeZvaoG+Djpkc3JwehN5g==} - engines: {node: '>= 8.0.0'} - peerDependencies: - pg-native: '>=3.0.1' - peerDependenciesMeta: - pg-native: - optional: true - dependencies: - buffer-writer: 2.0.0 - packet-reader: 1.0.0 - pg-connection-string: 2.6.2 - pg-pool: 3.6.1(pg@8.11.3) - pg-protocol: 1.6.0 - pg-types: 2.2.0 - pgpass: 1.0.5 - optionalDependencies: - pg-cloudflare: 1.1.1 - /pg@8.11.5: resolution: {integrity: sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==} engines: {node: '>= 8.0.0'} @@ -10514,7 +9988,6 @@ packages: pgpass: 1.0.5 optionalDependencies: pg-cloudflare: 1.1.1 - dev: false /pgpass@1.0.5: resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==} @@ -10604,7 +10077,7 @@ packages: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 - node-abi: 3.56.0 + node-abi: 3.57.0 pump: 3.0.0 rc: 1.2.8 simple-get: 4.0.1 @@ -10921,7 +10394,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 get-intrinsic: 1.2.4 globalthis: 1.0.3 @@ -11053,7 +10526,7 @@ packages: dependencies: tslib: 2.6.2 - /s3leveldown@2.2.2(aws-sdk@2.1594.0)(levelup@5.1.1): + /s3leveldown@2.2.2(aws-sdk@2.1599.0)(levelup@5.1.1): resolution: {integrity: sha512-pTzJ8Pi5eTJGy8AsiNrdM0AltccbKSaIeaXvxXzAPqBED1JdmQDr2zkVn6rRYFYYgLQayysko2Es5DjL5TEOrw==} engines: {node: '>=6'} peerDependencies: @@ -11062,7 +10535,7 @@ packages: dependencies: '@types/abstract-leveldown': 5.0.2 abstract-leveldown: 6.3.0 - aws-sdk: 2.1594.0 + aws-sdk: 2.1599.0 debug: 4.3.4(supports-color@5.5.0) inherits: 2.0.4 levelup: 5.1.1 @@ -11313,13 +10786,13 @@ packages: dependencies: agent-base: 6.0.2 debug: 4.3.4(supports-color@5.5.0) - socks: 2.8.1 + socks: 2.8.3 transitivePeerDependencies: - supports-color optional: true - /socks@2.8.1: - resolution: {integrity: sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==} + /socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} requiresBuild: true dependencies: @@ -11405,9 +10878,6 @@ packages: /sqlite3@5.1.7: resolution: {integrity: sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==} requiresBuild: true - peerDependenciesMeta: - node-gyp: - optional: true dependencies: bindings: 1.5.0 node-addon-api: 7.1.0 @@ -11498,7 +10968,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-errors: 1.3.0 es-object-atoms: 1.0.0 get-intrinsic: 1.2.4 @@ -11516,7 +10986,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.23.2 + es-abstract: 1.23.3 es-object-atoms: 1.0.0 dev: true @@ -11805,17 +11275,17 @@ packages: escape-string-regexp: 5.0.0 dev: true - /ts-api-utils@1.3.0(typescript@5.4.4): + /ts-api-utils@1.3.0(typescript@5.4.5): resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} peerDependencies: typescript: '>=4.2.0' dependencies: - typescript: 5.4.4 + typescript: 5.4.5 dev: true - /ts-node@10.9.1(@swc/core@1.4.13)(@types/node@20.12.7)(typescript@5.4.4): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + /ts-node@10.9.2(@swc/core@1.4.14)(@types/node@20.12.7)(typescript@5.4.5): + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -11829,7 +11299,7 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.4.13 + '@swc/core': 1.4.14 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 @@ -11841,7 +11311,7 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.4.4 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -11862,14 +11332,14 @@ packages: /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tsutils@3.21.0(typescript@5.4.4): + /tsutils@3.21.0(typescript@5.4.5): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.4.4 + typescript: 5.4.5 dev: true /tsx@4.7.2: @@ -12063,10 +11533,10 @@ packages: typedoc: '>=0.24.0' dependencies: handlebars: 4.7.8 - typedoc: 0.25.13(typescript@5.4.4) + typedoc: 0.25.13(typescript@5.4.5) dev: true - /typedoc@0.25.13(typescript@5.4.4): + /typedoc@0.25.13(typescript@5.4.5): resolution: {integrity: sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==} engines: {node: '>= 16'} hasBin: true @@ -12077,14 +11547,14 @@ packages: marked: 4.3.0 minimatch: 9.0.4 shiki: 0.14.7 - typescript: 5.4.4 + typescript: 5.4.5 dev: true /typeforce@1.18.0: resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} - /typescript@5.4.4: - resolution: {integrity: sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==} + /typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} engines: {node: '>=14.17'} hasBin: true @@ -12278,7 +11748,7 @@ packages: engines: {node: '>= 0.8'} dev: false - /viem@1.21.4(typescript@5.4.4): + /viem@1.21.4(typescript@5.4.5): resolution: {integrity: sha512-BNVYdSaUjeS2zKQgPs+49e5JKocfo60Ib2yiXOWBT6LuVxY1I/6fFX3waEtpXvL1Xn4qu+BVitVtMh9lyThyhQ==} peerDependencies: typescript: '>=5.0.4' @@ -12291,9 +11761,9 @@ packages: '@noble/hashes': 1.3.2 '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 - abitype: 0.9.8(typescript@5.4.4) + abitype: 0.9.8(typescript@5.4.5) isows: 1.0.3(ws@8.13.0) - typescript: 5.4.4 + typescript: 5.4.5 ws: 8.13.0 transitivePeerDependencies: - bufferutil diff --git a/utils/ceramic/package.json b/utils/ceramic/package.json index 535e565..2c94476 100644 --- a/utils/ceramic/package.json +++ b/utils/ceramic/package.json @@ -1,12 +1,12 @@ { - "name": "@composexp/ceramic-utils", + "name": "@ceramic-solutions/ceramic-utils", "version": "0.1.0", "private": true, "author": "3Box Labs", "license": "(Apache-2.0 OR MIT)", "repository": { "type": "git", - "url": "https://github.com/ceramicstudio/solutions", + "url": "https://github.com/ceramicstudio/solutions-sdk", "directory": "utils/ceramic" }, "type": "module", @@ -35,7 +35,7 @@ "@ceramicnetwork/cli": "^5.6.0", "@ceramicnetwork/core": "^5.6.0", "@ceramicnetwork/ipfs-daemon": "^5.6.0", - "@composexp/did-utils": "workspace:^", + "@ceramic-solutions/did-utils": "workspace:^", "tmp-promise": "^3.0.3" }, "devDependencies": { diff --git a/utils/ceramic/src/index.ts b/utils/ceramic/src/index.ts index a65fd3f..8a0e818 100644 --- a/utils/ceramic/src/index.ts +++ b/utils/ceramic/src/index.ts @@ -4,7 +4,7 @@ import { CeramicDaemon, DaemonConfig } from '@ceramicnetwork/cli' import type { IpfsApi } from '@ceramicnetwork/common' import { Ceramic } from '@ceramicnetwork/core' import { createIPFS } from '@ceramicnetwork/ipfs-daemon' -import { getAuthenticatedDID } from '@composexp/did-utils' +import { getAuthenticatedDID } from '@ceramic-solutions/did-utils' import type { DID } from 'dids' import { dir } from 'tmp-promise' diff --git a/utils/composite/package.json b/utils/composite/package.json index 9b6e200..63b9314 100644 --- a/utils/composite/package.json +++ b/utils/composite/package.json @@ -1,12 +1,12 @@ { - "name": "@composexp/composite-utils", + "name": "@ceramic-solutions/composite-utils", "version": "0.1.0", "private": true, "author": "3Box Labs", "license": "(Apache-2.0 OR MIT)", "repository": { "type": "git", - "url": "https://github.com/ceramicstudio/solutions", + "url": "https://github.com/ceramicstudio/solutions-sdk", "directory": "utils/composite" }, "type": "module", @@ -33,7 +33,7 @@ }, "dependencies": { "@composedb/devtools-node": "^0.7.1", - "@composexp/ceramic-utils": "workspace:^" + "@ceramic-solutions/ceramic-utils": "workspace:^" }, "devDependencies": { "@composedb/types": "^0.7.1", diff --git a/utils/composite/src/index.ts b/utils/composite/src/index.ts index db2450f..064f9e0 100644 --- a/utils/composite/src/index.ts +++ b/utils/composite/src/index.ts @@ -7,7 +7,7 @@ import { writeGraphQLSchema, } from '@composedb/devtools-node' import type { CeramicAPI } from '@composedb/types' -import { getEphemeralCeramic } from '@composexp/ceramic-utils' +import { getEphemeralCeramic } from '@ceramic-solutions/ceramic-utils' export type WriteCompositeParams = { schemaPath: PathInput diff --git a/utils/did/package.json b/utils/did/package.json index d594c44..20e281a 100644 --- a/utils/did/package.json +++ b/utils/did/package.json @@ -1,12 +1,12 @@ { - "name": "@composexp/did-utils", + "name": "@ceramic-solutions/did-utils", "version": "0.1.0", "private": true, "author": "3Box Labs", "license": "(Apache-2.0 OR MIT)", "repository": { "type": "git", - "url": "https://github.com/ceramicstudio/solutions", + "url": "https://github.com/ceramicstudio/solutions-sdk", "directory": "utils/did" }, "type": "module",