Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/xmtp.chat-api-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"@types/cors": "^2.8.19",
"@types/express": "^5.0.4",
"@types/node": "^24.9.1",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}
8 changes: 4 additions & 4 deletions apps/xmtp.chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"@vitejs/plugin-react": "^5.1.2",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
}
}
10 changes: 5 additions & 5 deletions content-types/content-type-group-updated/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ export const ContentTypeGroupUpdated = new ContentTypeId({

export type GroupUpdated = mlsTranscriptMessages.GroupUpdated;

export class GroupUpdatedCodec
implements ContentCodec<GroupUpdated, Record<string, never>>
{
export class GroupUpdatedCodec implements ContentCodec<
GroupUpdated,
Record<string, never>
> {
get contentType(): ContentTypeId {
return ContentTypeGroupUpdated;
}
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-primitives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-reaction/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"@xmtp/node-sdk": "workspace:^",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"viem": "^2.38.4",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
8 changes: 4 additions & 4 deletions content-types/content-type-reaction/src/Reaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ export type LegacyReactionParameters = Pick<
encoding: "UTF-8";
};

export class ReactionCodec
implements
ContentCodec<Reaction, LegacyReactionParameters | Record<string, never>>
{
export class ReactionCodec implements ContentCodec<
Reaction,
LegacyReactionParameters | Record<string, never>
> {
get contentType(): ContentTypeId {
return ContentTypeReaction;
}
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-read-receipt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"@xmtp/node-sdk": "workspace:^",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
7 changes: 4 additions & 3 deletions content-types/content-type-read-receipt/src/ReadReceipt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ export type ReadReceipt = Record<string, never>;

export type ReadReceiptParameters = Record<string, never>;

export class ReadReceiptCodec
implements ContentCodec<ReadReceipt, ReadReceiptParameters>
{
export class ReadReceiptCodec implements ContentCodec<
ReadReceipt,
ReadReceiptParameters
> {
get contentType(): ContentTypeId {
return ContentTypeReadReceipt;
}
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-remote-attachment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
"@types/node": "^24.9.1",
"@xmtp/node-sdk": "workspace:^",
"@xmtp/rollup-plugin-resolve-extensions": "^1.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ export type AttachmentParameters = {
mimeType: string;
};

export class AttachmentCodec
implements ContentCodec<Attachment, AttachmentParameters>
{
export class AttachmentCodec implements ContentCodec<
Attachment,
AttachmentParameters
> {
get contentType(): ContentTypeId {
return ContentTypeAttachment;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ export type RemoteAttachmentParameters = {
filename: string;
};

export class RemoteAttachmentCodec
implements ContentCodec<RemoteAttachment, RemoteAttachmentParameters>
{
export class RemoteAttachmentCodec implements ContentCodec<
RemoteAttachment,
RemoteAttachmentParameters
> {
static async load<T = unknown>(
remoteAttachment: RemoteAttachment,
codecRegistry: CodecRegistry,
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-reply/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
"@xmtp/content-type-remote-attachment": "workspace:^",
"@xmtp/content-type-text": "workspace:^",
"@xmtp/node-sdk": "workspace:^",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-transaction-reference/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"@xmtp/node-sdk": "workspace:^",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ export type TransactionReference = {
};
};

export class TransactionReferenceCodec
implements ContentCodec<TransactionReference>
{
export class TransactionReferenceCodec implements ContentCodec<TransactionReference> {
get contentType(): ContentTypeId {
return ContentTypeTransactionReference;
}
Expand Down
10 changes: 5 additions & 5 deletions content-types/content-type-wallet-send-calls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"@xmtp/node-sdk": "workspace:^",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export type WalletSendCallsParams = {
capabilities?: Record<string, string>;
};

export class WalletSendCallsCodec
implements ContentCodec<WalletSendCallsParams>
{
export class WalletSendCallsCodec implements ContentCodec<WalletSendCallsParams> {
get contentType(): ContentTypeId {
return ContentTypeWalletSendCalls;
}
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@
},
"dependencies": {
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.29.7"
"@changesets/cli": "^2.29.8"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.38.0",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"rimraf": "^6.0.1",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"prettier-plugin-packagejson": "^2.5.20",
"rimraf": "^6.1.2",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
"typescript-eslint": "^8.51.0"
},
"packageManager": "[email protected]",
"engines": {
Expand Down
10 changes: 5 additions & 5 deletions packages/xmtp-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"@types/yargs": "^17.0.33",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
"vitest": "^4.0.16"
},
"engines": {
"node": ">=22"
Expand Down
10 changes: 5 additions & 5 deletions sdks/agent-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^4.0.3",
"@vitest/coverage-v8": "^4.0.16",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.3"
"vite": "^7.3.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=22"
Expand Down
Loading
Loading