diff --git a/clients/js/src/generated/accounts/addressLookupTable.ts b/clients/js/src/generated/accounts/addressLookupTable.ts index 652c9d2..6e9e5fa 100644 --- a/clients/js/src/generated/accounts/addressLookupTable.ts +++ b/clients/js/src/generated/accounts/addressLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/accounts/index.ts b/clients/js/src/generated/accounts/index.ts index d589fd9..e58fe30 100644 --- a/clients/js/src/generated/accounts/index.ts +++ b/clients/js/src/generated/accounts/index.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/index.ts b/clients/js/src/generated/index.ts index 1002b82..1b1236d 100644 --- a/clients/js/src/generated/index.ts +++ b/clients/js/src/generated/index.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/instructions/closeLookupTable.ts b/clients/js/src/generated/instructions/closeLookupTable.ts index 35bae91..53886f6 100644 --- a/clients/js/src/generated/instructions/closeLookupTable.ts +++ b/clients/js/src/generated/instructions/closeLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ @@ -129,22 +129,20 @@ export function getCloseLookupTableInstruction< >; const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); - const instruction = { + return Object.freeze({ accounts: [ getAccountMeta(accounts.address), getAccountMeta(accounts.authority), getAccountMeta(accounts.recipient), ], - programAddress, data: getCloseLookupTableInstructionDataEncoder().encode({}), + programAddress, } as CloseLookupTableInstruction< TProgramAddress, TAccountAddress, TAccountAuthority, TAccountRecipient - >; - - return instruction; + >); } export type ParsedCloseLookupTableInstruction< diff --git a/clients/js/src/generated/instructions/createLookupTable.ts b/clients/js/src/generated/instructions/createLookupTable.ts index 2e0ea6b..b8014b6 100644 --- a/clients/js/src/generated/instructions/createLookupTable.ts +++ b/clients/js/src/generated/instructions/createLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ @@ -202,26 +202,26 @@ export async function getCreateLookupTableInstructionAsync< const byteDelta: number = [56 + BASE_ACCOUNT_SIZE].reduce((a, b) => a + b, 0); const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); - const instruction = { + return Object.freeze({ accounts: [ getAccountMeta(accounts.address), getAccountMeta(accounts.authority), getAccountMeta(accounts.payer), getAccountMeta(accounts.systemProgram), ], - programAddress, + byteDelta, data: getCreateLookupTableInstructionDataEncoder().encode( args as CreateLookupTableInstructionDataArgs ), + programAddress, } as CreateLookupTableInstruction< TProgramAddress, TAccountAddress, TAccountAuthority, TAccountPayer, TAccountSystemProgram - >; - - return Object.freeze({ ...instruction, byteDelta }); + > & + InstructionWithByteDelta); } export type CreateLookupTableInput< @@ -295,26 +295,26 @@ export function getCreateLookupTableInstruction< const byteDelta: number = [56 + BASE_ACCOUNT_SIZE].reduce((a, b) => a + b, 0); const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); - const instruction = { + return Object.freeze({ accounts: [ getAccountMeta(accounts.address), getAccountMeta(accounts.authority), getAccountMeta(accounts.payer), getAccountMeta(accounts.systemProgram), ], - programAddress, + byteDelta, data: getCreateLookupTableInstructionDataEncoder().encode( args as CreateLookupTableInstructionDataArgs ), + programAddress, } as CreateLookupTableInstruction< TProgramAddress, TAccountAddress, TAccountAuthority, TAccountPayer, TAccountSystemProgram - >; - - return Object.freeze({ ...instruction, byteDelta }); + > & + InstructionWithByteDelta); } export type ParsedCreateLookupTableInstruction< diff --git a/clients/js/src/generated/instructions/deactivateLookupTable.ts b/clients/js/src/generated/instructions/deactivateLookupTable.ts index faca784..a31ad59 100644 --- a/clients/js/src/generated/instructions/deactivateLookupTable.ts +++ b/clients/js/src/generated/instructions/deactivateLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ @@ -119,20 +119,18 @@ export function getDeactivateLookupTableInstruction< >; const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); - const instruction = { + return Object.freeze({ accounts: [ getAccountMeta(accounts.address), getAccountMeta(accounts.authority), ], - programAddress, data: getDeactivateLookupTableInstructionDataEncoder().encode({}), + programAddress, } as DeactivateLookupTableInstruction< TProgramAddress, TAccountAddress, TAccountAuthority - >; - - return instruction; + >); } export type ParsedDeactivateLookupTableInstruction< @@ -167,10 +165,7 @@ export function parseDeactivateLookupTableInstruction< }; return { programAddress: instruction.programAddress, - accounts: { - address: getNextAccount(), - authority: getNextAccount(), - }, + accounts: { address: getNextAccount(), authority: getNextAccount() }, data: getDeactivateLookupTableInstructionDataDecoder().decode( instruction.data ), diff --git a/clients/js/src/generated/instructions/extendLookupTable.ts b/clients/js/src/generated/instructions/extendLookupTable.ts index eb3e788..112f40c 100644 --- a/clients/js/src/generated/instructions/extendLookupTable.ts +++ b/clients/js/src/generated/instructions/extendLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ @@ -191,26 +191,26 @@ export function getExtendLookupTableInstruction< ].reduce((a, b) => a + b, 0); const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); - const instruction = { + return Object.freeze({ accounts: [ getAccountMeta(accounts.address), getAccountMeta(accounts.authority), getAccountMeta(accounts.payer), getAccountMeta(accounts.systemProgram), ], - programAddress, + byteDelta, data: getExtendLookupTableInstructionDataEncoder().encode( args as ExtendLookupTableInstructionDataArgs ), + programAddress, } as ExtendLookupTableInstruction< TProgramAddress, TAccountAddress, TAccountAuthority, TAccountPayer, TAccountSystemProgram - >; - - return Object.freeze({ ...instruction, byteDelta }); + > & + InstructionWithByteDelta); } export type ParsedExtendLookupTableInstruction< diff --git a/clients/js/src/generated/instructions/freezeLookupTable.ts b/clients/js/src/generated/instructions/freezeLookupTable.ts index 95d3993..aa07d2e 100644 --- a/clients/js/src/generated/instructions/freezeLookupTable.ts +++ b/clients/js/src/generated/instructions/freezeLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ @@ -116,20 +116,18 @@ export function getFreezeLookupTableInstruction< >; const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); - const instruction = { + return Object.freeze({ accounts: [ getAccountMeta(accounts.address), getAccountMeta(accounts.authority), ], - programAddress, data: getFreezeLookupTableInstructionDataEncoder().encode({}), + programAddress, } as FreezeLookupTableInstruction< TProgramAddress, TAccountAddress, TAccountAuthority - >; - - return instruction; + >); } export type ParsedFreezeLookupTableInstruction< @@ -164,10 +162,7 @@ export function parseFreezeLookupTableInstruction< }; return { programAddress: instruction.programAddress, - accounts: { - address: getNextAccount(), - authority: getNextAccount(), - }, + accounts: { address: getNextAccount(), authority: getNextAccount() }, data: getFreezeLookupTableInstructionDataDecoder().decode(instruction.data), }; } diff --git a/clients/js/src/generated/instructions/index.ts b/clients/js/src/generated/instructions/index.ts index 4316ab1..ada8f97 100644 --- a/clients/js/src/generated/instructions/index.ts +++ b/clients/js/src/generated/instructions/index.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/pdas/addressLookupTable.ts b/clients/js/src/generated/pdas/addressLookupTable.ts index 9580a6e..0cf94fa 100644 --- a/clients/js/src/generated/pdas/addressLookupTable.ts +++ b/clients/js/src/generated/pdas/addressLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/pdas/index.ts b/clients/js/src/generated/pdas/index.ts index d589fd9..e58fe30 100644 --- a/clients/js/src/generated/pdas/index.ts +++ b/clients/js/src/generated/pdas/index.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/programs/addressLookupTable.ts b/clients/js/src/generated/programs/addressLookupTable.ts index 2c7c938..a03fb5a 100644 --- a/clients/js/src/generated/programs/addressLookupTable.ts +++ b/clients/js/src/generated/programs/addressLookupTable.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/programs/index.ts b/clients/js/src/generated/programs/index.ts index d589fd9..e58fe30 100644 --- a/clients/js/src/generated/programs/index.ts +++ b/clients/js/src/generated/programs/index.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/clients/js/src/generated/shared/index.ts b/clients/js/src/generated/shared/index.ts index 8841a27..83a3183 100644 --- a/clients/js/src/generated/shared/index.ts +++ b/clients/js/src/generated/shared/index.ts @@ -1,7 +1,7 @@ /** - * This code was AUTOGENERATED using the codama library. + * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors - * to add features, then rerun codama to update it. + * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ diff --git a/package.json b/package.json index adc9c7d..7ab34fa 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "generate:clients": "zx ./scripts/generate-clients.mjs" }, "devDependencies": { - "@codama/renderers-js": "^1.3", + "@codama/renderers-js": "^1.4", "@codama/renderers-rust": "~1.0", "@iarna/toml": "^2.2.5", "codama": "^1.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c66403d..3d37d5c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: devDependencies: '@codama/renderers-js': - specifier: ^1.3 - version: 1.3.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + specifier: ^1.4 + version: 1.4.2(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) '@codama/renderers-rust': specifier: ~1.0 version: 1.0.22(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) @@ -37,10 +37,6 @@ packages: resolution: {integrity: sha512-pYp/gOi1c/9btrybWvH2iK5jj7SOpMmyLm9EqbxrivV+lqzfEogU8IG+BLch9sqnuhPgg/PzCaB4sYd438UC/Q==} hasBin: true - '@codama/errors@1.3.3': - resolution: {integrity: sha512-iyo5qEW/rgNTTtcZnGqahcnUtMHRRTlTzeTZo6SLpuNistbEn2itOssnklNZVClhXR/4Td0riHwGedP3AjwgJA==} - hasBin: true - '@codama/errors@1.3.7': resolution: {integrity: sha512-96BF8agDVc2vAgL4qw1lZZfuJ7XBefdzTBk2VOUnOhdMQiLb0QhJCC4BH88OcL+rZXQdet4pk7Qwarj1I1GFKg==} hasBin: true @@ -48,29 +44,24 @@ packages: '@codama/node-types@1.3.0': resolution: {integrity: sha512-3dPbMXR/QgKUqXMMxc6PUi2f8Dq6eZ9P/v6+ChTQFLGhSQmqC1PsCbL77PuM7mf4IK9np1RXFqbC/EVpgLvbgA==} - '@codama/node-types@1.3.3': - resolution: {integrity: sha512-41GdFy/OPRemXTAmptDSi/wDXHPimy40mx9v0z2EdIMNYEyKAYZDcvr2jzSei8meeCV9j4PgKF5snwBQK7HaSg==} - '@codama/node-types@1.3.7': resolution: {integrity: sha512-L9UTFfoeki5t+BYJAa4OMsqBPpbMbx8YJQar+55mYcjwGlJsKJW7mRfLYvwEFkCUYyLdNva40OVmTf88jccZCA==} '@codama/nodes@1.3.0': resolution: {integrity: sha512-Spf+Whm4jBLFxGPtJuDGmteGe+avoIDnh6rsByU1iJlYmcJJLjZayexFkvW8+1IeDclUMPQYBSj6SjuQEItLqQ==} - '@codama/nodes@1.3.3': - resolution: {integrity: sha512-CgxGfH6ndcZpvf+RfVwSyIOyq8cNejbqY9TRr4SqVMIEbE1Wpqx+GPrEGRKtwHgB8KqsWCz7Pve8BCGhsPkr2g==} - '@codama/nodes@1.3.7': resolution: {integrity: sha512-3OV6SIBcqsIDARyzZVGdfnffNlnKSYcb0aGp/9Liz5/EID0oBTIyuh/Cmj5Ww6RX4WPb+GNAxABAGW94zbcfQg==} '@codama/renderers-core@1.0.16': resolution: {integrity: sha512-IJshH6JsX7GUaYmC6KlOd5pLLyW1Yqd0I8B0pVWvvv9BfPNosC4t4RfusHSkYQePkIvs7CJ7YlwUywwW36Vt8A==} - '@codama/renderers-core@1.0.19': - resolution: {integrity: sha512-ARvgw8ObOMiIbeahcKBpWKl2N4lYaywDOAsbYDjr/zV8jpPll39TVidgQt0lP4JjdGz7xZTBCmQmtxW5hqr9pA==} + '@codama/renderers-core@1.2.2': + resolution: {integrity: sha512-dPyHgn5L45G+tWP17ITvOlpX3+s2FcJHMjAhFZlmUHAJpH/wl+UsUwuWg698iSb56Er2jUwqX7srw5iZf7XHjQ==} - '@codama/renderers-js@1.3.4': - resolution: {integrity: sha512-srcHHCc7l2FXTlUEoPOolw0bmxBkdyqpzOGtBNc7eeF9sOCE3mlR84qXzxoqCKx4T26wl+QHihI0wby0bMlfrA==} + '@codama/renderers-js@1.4.2': + resolution: {integrity: sha512-emYJEPNDQ/DjHYDBNPt/HEr+97ClpEQT7LPPNZ44DRSEG4Qj9ti/aBvtgOrIyESyyTOaKrUzu7Ew6S+TBB/eFg==} + engines: {node: '>=20.18.0'} '@codama/renderers-rust@1.0.22': resolution: {integrity: sha512-ovK1UyFYt/oWW8W2B6ghe/nc1kvITakVQqVIlK21l2VHGo6yEFcdWvBRYn5VXMuwW0nMwPuC7Hv0eZmGLRR7xg==} @@ -81,9 +72,6 @@ packages: '@codama/visitors-core@1.3.0': resolution: {integrity: sha512-Lldy0aOc882QYDa1IhjXhwpDsQE7oirBaebRddggXYFQs4+cvFROibHXBqG2npHPvQM4Mot6dJHQqffB/QL4iQ==} - '@codama/visitors-core@1.3.3': - resolution: {integrity: sha512-Kuz2we5iDhq0Y9bPwEjEGGSueBPJkLxoDkJ+Z3NuHlqo/k2aHvDNl9NaoOOUPwNzPVbntfpJW9Ga3pP9oc/PQQ==} - '@codama/visitors-core@1.3.7': resolution: {integrity: sha512-B1JnzhRDJiLxewha/F3YzeEp8Zrtd7eKiGNJFJHSPufAnIVm2lQUDaKS+OrAOHnSRmRKIAVdzfpFpdz6EM0N6Q==} @@ -99,8 +87,8 @@ packages: peerDependencies: typescript: '>=5' - '@solana/codecs-core@2.3.0': - resolution: {integrity: sha512-oG+VZzN6YhBHIoSKgS5ESM9VIGzhWjEHEGNPSibiDTxFhsFWxNaz8LbMDPjBUE69r9wmdGLkrQ+wVPbnJcZPvw==} + '@solana/codecs-core@3.0.3': + resolution: {integrity: sha512-emKykJ3h1DmnDOY29Uv9eJXP8E/FHzvlUBJ6te+5EbKdFjj7vdlKYPfDxOI6iGdXTY+YC/ELtbNBh6QwF2uEDQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: '>=5.3.3' @@ -111,8 +99,8 @@ packages: peerDependencies: typescript: '>=5' - '@solana/codecs-numbers@2.3.0': - resolution: {integrity: sha512-jFvvwKJKffvG7Iz9dmN51OGB7JBcy2CJ6Xf3NqD/VP90xak66m/Lg48T01u5IQ/hc15mChVHiBm+HHuOFDUrQg==} + '@solana/codecs-numbers@3.0.3': + resolution: {integrity: sha512-pfXkH9J0glrM8qj6389GAn30+cJOxzXLR2FsPOHCUMXrqLhGjMMZAWhsQkpOQ37SGc/7EiQsT/gmyGC7gxHqJQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: '>=5.3.3' @@ -124,8 +112,8 @@ packages: fastestsmallesttextencoderdecoder: ^1.0.22 typescript: '>=5' - '@solana/codecs-strings@2.3.0': - resolution: {integrity: sha512-y5pSBYwzVziXu521hh+VxqUtp0hYGTl1eWGoc1W+8mdvBdC1kTqm/X7aYQw33J42hw03JjryvYOvmGgk3Qz/Ug==} + '@solana/codecs-strings@3.0.3': + resolution: {integrity: sha512-VHBXnnTVtcQ1j+7Vrz+qSYo38no+jiHRdGnhFspRXEHNJbllzwKqgBE7YN3qoIXH+MKxgJUcwO5KHmdzf8Wn2A==} engines: {node: '>=20.18.0'} peerDependencies: fastestsmallesttextencoderdecoder: ^1.0.22 @@ -138,8 +126,8 @@ packages: peerDependencies: typescript: '>=5' - '@solana/errors@2.3.0': - resolution: {integrity: sha512-66RI9MAbwYV0UtP7kGcTBVLxJgUxoZGm8Fbc0ah+lGiAw17Gugco6+9GrJCV83VyF2mDWyYnYM9qdI3yjgpnaQ==} + '@solana/errors@3.0.3': + resolution: {integrity: sha512-1l84xJlHNva6io62PcYfUamwWlc0eM95nHgCrKX0g0cLoC6D6QHYPCEbEVkR+C5UtP9JDgyQM8MFiv+Ei5tO9Q==} engines: {node: '>=20.18.0'} hasBin: true peerDependencies: @@ -167,10 +155,6 @@ packages: resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - chalk@5.6.0: - resolution: {integrity: sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - chalk@5.6.2: resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} @@ -326,12 +310,6 @@ snapshots: chalk: 5.4.1 commander: 13.1.0 - '@codama/errors@1.3.3': - dependencies: - '@codama/node-types': 1.3.3 - chalk: 5.6.0 - commander: 14.0.0 - '@codama/errors@1.3.7': dependencies: '@codama/node-types': 1.3.7 @@ -340,8 +318,6 @@ snapshots: '@codama/node-types@1.3.0': {} - '@codama/node-types@1.3.3': {} - '@codama/node-types@1.3.7': {} '@codama/nodes@1.3.0': @@ -349,11 +325,6 @@ snapshots: '@codama/errors': 1.3.0 '@codama/node-types': 1.3.0 - '@codama/nodes@1.3.3': - dependencies: - '@codama/errors': 1.3.3 - '@codama/node-types': 1.3.3 - '@codama/nodes@1.3.7': dependencies: '@codama/errors': 1.3.7 @@ -365,23 +336,21 @@ snapshots: '@codama/nodes': 1.3.0 '@codama/visitors-core': 1.3.0 - '@codama/renderers-core@1.0.19': + '@codama/renderers-core@1.2.2': dependencies: - '@codama/errors': 1.3.3 - '@codama/nodes': 1.3.3 - '@codama/visitors-core': 1.3.3 + '@codama/errors': 1.3.7 + '@codama/nodes': 1.3.7 + '@codama/visitors-core': 1.3.7 - '@codama/renderers-js@1.3.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@codama/renderers-js@1.4.2(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@codama/errors': 1.3.3 - '@codama/nodes': 1.3.3 - '@codama/renderers-core': 1.0.19 - '@codama/visitors-core': 1.3.3 - '@solana/codecs-strings': 2.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - nunjucks: 3.2.4 + '@codama/errors': 1.3.7 + '@codama/nodes': 1.3.7 + '@codama/renderers-core': 1.2.2 + '@codama/visitors-core': 1.3.7 + '@solana/codecs-strings': 3.0.3(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) prettier: 3.6.2 transitivePeerDependencies: - - chokidar - fastestsmallesttextencoderdecoder - typescript @@ -410,12 +379,6 @@ snapshots: '@codama/nodes': 1.3.0 json-stable-stringify: 1.3.0 - '@codama/visitors-core@1.3.3': - dependencies: - '@codama/errors': 1.3.3 - '@codama/nodes': 1.3.3 - json-stable-stringify: 1.3.0 - '@codama/visitors-core@1.3.7': dependencies: '@codama/errors': 1.3.7 @@ -435,9 +398,9 @@ snapshots: '@solana/errors': 2.0.0-rc.4(typescript@5.9.3) typescript: 5.9.3 - '@solana/codecs-core@2.3.0(typescript@5.9.3)': + '@solana/codecs-core@3.0.3(typescript@5.9.3)': dependencies: - '@solana/errors': 2.3.0(typescript@5.9.3) + '@solana/errors': 3.0.3(typescript@5.9.3) typescript: 5.9.3 '@solana/codecs-numbers@2.0.0-rc.4(typescript@5.9.3)': @@ -446,10 +409,10 @@ snapshots: '@solana/errors': 2.0.0-rc.4(typescript@5.9.3) typescript: 5.9.3 - '@solana/codecs-numbers@2.3.0(typescript@5.9.3)': + '@solana/codecs-numbers@3.0.3(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 2.3.0(typescript@5.9.3) - '@solana/errors': 2.3.0(typescript@5.9.3) + '@solana/codecs-core': 3.0.3(typescript@5.9.3) + '@solana/errors': 3.0.3(typescript@5.9.3) typescript: 5.9.3 '@solana/codecs-strings@2.0.0-rc.4(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': @@ -460,11 +423,11 @@ snapshots: fastestsmallesttextencoderdecoder: 1.0.22 typescript: 5.9.3 - '@solana/codecs-strings@2.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/codecs-strings@3.0.3(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 2.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 2.3.0(typescript@5.9.3) - '@solana/errors': 2.3.0(typescript@5.9.3) + '@solana/codecs-core': 3.0.3(typescript@5.9.3) + '@solana/codecs-numbers': 3.0.3(typescript@5.9.3) + '@solana/errors': 3.0.3(typescript@5.9.3) fastestsmallesttextencoderdecoder: 1.0.22 typescript: 5.9.3 @@ -474,10 +437,10 @@ snapshots: commander: 12.1.0 typescript: 5.9.3 - '@solana/errors@2.3.0(typescript@5.9.3)': + '@solana/errors@3.0.3(typescript@5.9.3)': dependencies: - chalk: 5.4.1 - commander: 14.0.1 + chalk: 5.6.2 + commander: 14.0.0 typescript: 5.9.3 a-sync-waterfall@1.0.1: {} @@ -503,8 +466,6 @@ snapshots: chalk@5.4.1: {} - chalk@5.6.0: {} - chalk@5.6.2: {} codama@1.3.7: