Skip to content

Commit 411091a

Browse files
committed
Fix lint errors
1 parent 781c079 commit 411091a

File tree

19 files changed

+214
-214
lines changed

19 files changed

+214
-214
lines changed

packages/errors/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ To add a new error in Codama, follow these steps:
7575

7676
### Removing an error message
7777

78-
- Don't remove errors.
79-
- Don't change the meaning of an error message.
80-
- Don't change or reorder error codes.
81-
- Don't change or remove members of an error's context.
78+
- Don't remove errors.
79+
- Don't change the meaning of an error message.
80+
- Don't change or reorder error codes.
81+
- Don't change or remove members of an error's context.
8282

8383
When an older client throws an error, we want to make sure that they can always decode the error. If you make any of the changes above, old clients will, by definition, not have received your changes. This could make the errors that they throw impossible to decode going forward.

packages/library/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ pnpm install codama
1919

2020
This package includes the following packages. Note that some of them also re-export other packages.
2121

22-
- [`@codama/errors`](../errors)
23-
- [`@codama/nodes`](../nodes)
24-
- [`@codama/node-types`](../node-types)
25-
- [`@codama/validators`](../validators)
26-
- [`@codama/visitors`](../visitors)
27-
- [`@codama/visitor-core`](../visitor-core)
22+
- [`@codama/errors`](../errors)
23+
- [`@codama/nodes`](../nodes)
24+
- [`@codama/node-types`](../node-types)
25+
- [`@codama/validators`](../validators)
26+
- [`@codama/visitors`](../visitors)
27+
- [`@codama/visitor-core`](../visitor-core)
2828

2929
## The Codama helper
3030

@@ -70,9 +70,9 @@ codama.update(
7070

7171
Other helper functions include:
7272

73-
- `clone()`: Creates a new instance of the `Codama` interface with a deep copy of the wrapped `RootNode`.
74-
- `getJson()`: Returns the JSON representation of the Codama IDL.
75-
- `getRoot()`: Returns the wrapped `RootNode`.
73+
- `clone()`: Creates a new instance of the `Codama` interface with a deep copy of the wrapped `RootNode`.
74+
- `getJson()`: Returns the JSON representation of the Codama IDL.
75+
- `getRoot()`: Returns the wrapped `RootNode`.
7676

7777
```ts
7878
const clonedCodama = codama.clone();

packages/nodes/README.md

Lines changed: 89 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -28,92 +28,92 @@ The Codama IDL is composed of various nodes that describe different aspects of a
2828
2929
Below are all of the available nodes and their documentation. Also note that you can refer to any node using the [`Node`](./docs/README.md) helper type.
3030
31-
- [`AccountNode`](./docs/AccountNode.md)
32-
- [`DefinedTypeNode`](./docs/DefinedTypeNode.md)
33-
- [`ErrorNode`](./docs/ErrorNode.md)
34-
- [`InstructionAccountNode`](./docs/InstructionAccountNode.md)
35-
- [`InstructionArgumentNode`](./docs/InstructionArgumentNode.md)
36-
- [`InstructionByteDeltaNode`](./docs/InstructionByteDeltaNode.md)
37-
- [`InstructionNode`](./docs/InstructionNode.md)
38-
- [`InstructionRemainingAccountsNode`](./docs/InstructionRemainingAccountsNode.md)
39-
- [`PdaNode`](./docs/PdaNode.md)
40-
- [`ProgramNode`](./docs/ProgramNode.md)
41-
- [`RootNode`](./docs/RootNode.md)
42-
- [`ContextualValueNode`](./docs/contextualValueNodes/README.md) (abstract)
43-
- [`AccountBumpValueNode`](./docs/contextualValueNodes/AccountBumpValueNode.md)
44-
- [`AccountValueNode`](./docs/contextualValueNodes/AccountValueNode.md)
45-
- [`ArgumentValueNode`](./docs/contextualValueNodes/ArgumentValueNode.md)
46-
- [`ConditionalValueNode`](./docs/contextualValueNodes/ConditionalValueNode.md)
47-
- [`IdentityValueNode`](./docs/contextualValueNodes/IdentityValueNode.md)
48-
- [`PayerValueNode`](./docs/contextualValueNodes/PayerValueNode.md)
49-
- [`PdaSeedValueNode`](./docs/contextualValueNodes/PdaSeedValueNode.md)
50-
- [`PdaValueNode`](./docs/contextualValueNodes/PdaValueNode.md)
51-
- [`ProgramIdValueNode`](./docs/contextualValueNodes/ProgramIdValueNode.md)
52-
- [`ResolverValueNode`](./docs/contextualValueNodes/ResolverValueNodemds)
53-
- [`CountNode`](./docs/countNodes/README.md) (abstract)
54-
- [`FixedCountNode`](./docs/countNodes/FixedCountNode.md)
55-
- [`PrefixedCountNode`](./docs/countNodes/PrefixedCountNode.md)
56-
- [`RemainderCountNode`](./docs/countNodes/RemainderCountNodemds)
57-
- [`DiscriminatorNode`](./docs/discriminatorNodes/README.md) (abstract)
58-
- [`ConstantDiscriminatorNode`](./docs/discriminatorNodes/ConstantDiscriminatorNode.md)
59-
- [`FieldDiscriminatorNode`](./docs/discriminatorNodes/FieldDiscriminatorNode.md)
60-
- [`SizeDiscriminatorNode`](./docs/discriminatorNodes/SizeDiscriminatorNodemds)
61-
- [`LinkNode`](./docs/linkNodes/README.md) (abstract)
62-
- [`AccountLinkNode`](./docs/linkNodes/AccountLinkNode.md)
63-
- [`DefinedTypeLinkNode`](./docs/linkNodes/DefinedTypeLinkNode.md)
64-
- [`InstructionAccountLinkNode`](./docs/linkNodes/InstructionAccountLinkNode.md)
65-
- [`InstructionArgumentLinkNode`](./docs/linkNodes/InstructionArgumentLinkNode.md)
66-
- [`InstructionLinkNode`](./docs/linkNodes/InstructionLinkNode.md)
67-
- [`PdaLinkNode`](./docs/linkNodes/PdaLinkNode.md)
68-
- [`ProgramLinkNode`](./docs/linkNodes/ProgramLinkNode.md)
69-
- [`PdaSeedNode`](./docs/pdaSeedNodes/README.md) (abstract)
70-
- [`ConstantPdaSeedNode`](./docs/pdaSeedNodes/ConstantPdaSeedNode.md)
71-
- [`VariablePdaSeedNode`](./docs/pdaSeedNodes/VariablePdaSeedNode.md)
72-
- [`TypeNode`](./docs/typeNodes/README.md) (abstract)
73-
- [`AmountTypeNode`](./docs/typeNodes/AmountTypeNode.md)
74-
- [`ArrayTypeNode`](./docs/typeNodes/ArrayTypeNode.md)
75-
- [`BooleanTypeNode`](./docs/typeNodes/BooleanTypeNode.md)
76-
- [`BytesTypeNode`](./docs/typeNodes/BytesTypeNode.md)
77-
- [`DateTimeTypeNode`](./docs/typeNodes/DateTimeTypeNode.md)
78-
- [`EnumEmptyVariantTypeNode`](./docs/typeNodes/EnumEmptyVariantTypeNode.md)
79-
- [`EnumStructVariantTypeNode`](./docs/typeNodes/EnumStructVariantTypeNode.md)
80-
- [`EnumTupleVariantTypeNode`](./docs/typeNodes/EnumTupleVariantTypeNode.md)
81-
- [`EnumTypeNode`](./docs/typeNodes/EnumTypeNode.md)
82-
- [`EnumVariantTypeNode`](./docs/typeNodes/EnumVariantTypeNode.md) (abstract)
83-
- [`FixedSizeTypeNode`](./docs/typeNodes/FixedSizeTypeNode.md)
84-
- [`HiddenPrefixTypeNode`](./docs/typeNodes/HiddenPrefixTypeNode.md)
85-
- [`HiddenSuffixTypeNode`](./docs/typeNodes/HiddenSuffixTypeNode.md)
86-
- [`MapTypeNode`](./docs/typeNodes/MapTypeNode.md)
87-
- [`NestedTypeNode`](./docs/typeNodes/NestedTypeNode.md) (helper)
88-
- [`NumberTypeNode`](./docs/typeNodes/NumberTypeNode.md)
89-
- [`OptionTypeNode`](./docs/typeNodes/OptionTypeNode.md)
90-
- [`PostOffsetTypeNode`](./docs/typeNodes/PostOffsetTypeNode.md)
91-
- [`PreOffsetTypeNode`](./docs/typeNodes/PreOffsetTypeNode.md)
92-
- [`PublicKeyTypeNode`](./docs/typeNodes/PublicKeyTypeNode.md)
93-
- [`RemainderOptionTypeNode`](./docs/typeNodes/RemainderOptionTypeNode.md)
94-
- [`SentinelTypeNode`](./docs/typeNodes/SentinelTypeNode.md)
95-
- [`SetTypeNode`](./docs/typeNodes/SetTypeNode.md)
96-
- [`SizePrefixTypeNode`](./docs/typeNodes/SizePrefixTypeNode.md)
97-
- [`SolAmountTypeNode`](./docs/typeNodes/SolAmountTypeNode.md)
98-
- [`StringTypeNode`](./docs/typeNodes/StringTypeNode.md)
99-
- [`StructFieldTypeNode`](./docs/typeNodes/StructFieldTypeNode.md)
100-
- [`StructTypeNode`](./docs/typeNodes/StructTypeNode.md)
101-
- [`TupleTypeNode`](./docs/typeNodes/TupleTypeNode.md)
102-
- [`ZeroableOptionTypeNod`](./docs/typeNodes/ZeroableOptionTypeNod.md)
103-
- [`ValueNode`](./docs/valueNodes/README.md) (abstract)
104-
- [`ArrayValueNode`](./docs/valueNodes/ArrayValueNode.md)
105-
- [`BooleanValueNode`](./docs/valueNodes/BooleanValueNode.md)
106-
- [`BytesValueNode`](./docs/valueNodes/BytesValueNode.md)
107-
- [`ConstantValueNode`](./docs/valueNodes/ConstantValueNode.md)
108-
- [`EnumValueNode`](./docs/valueNodes/EnumValueNode.md)
109-
- [`MapEntryValueNode`](./docs/valueNodes/MapEntryValueNode.md)
110-
- [`MapValueNode`](./docs/valueNodes/MapValueNode.md)
111-
- [`NoneValueNode`](./docs/valueNodes/NoneValueNode.md)
112-
- [`NumberValueNode`](./docs/valueNodes/NumberValueNode.md)
113-
- [`PublicKeyValueNode`](./docs/valueNodes/PublicKeyValueNode.md)
114-
- [`SetValueNode`](./docs/valueNodes/SetValueNode.md)
115-
- [`SomeValueNode`](./docs/valueNodes/SomeValueNode.md)
116-
- [`StringValueNode`](./docs/valueNodes/StringValueNode.md)
117-
- [`StructFieldValueNode`](./docs/valueNodes/StructFieldValueNode.md)
118-
- [`StructValueNode`](./docs/valueNodes/StructValueNode.md)
119-
- [`TupleValueNode`](./docs/valueNodes/TupleValueNode.md)
31+
- [`AccountNode`](./docs/AccountNode.md)
32+
- [`DefinedTypeNode`](./docs/DefinedTypeNode.md)
33+
- [`ErrorNode`](./docs/ErrorNode.md)
34+
- [`InstructionAccountNode`](./docs/InstructionAccountNode.md)
35+
- [`InstructionArgumentNode`](./docs/InstructionArgumentNode.md)
36+
- [`InstructionByteDeltaNode`](./docs/InstructionByteDeltaNode.md)
37+
- [`InstructionNode`](./docs/InstructionNode.md)
38+
- [`InstructionRemainingAccountsNode`](./docs/InstructionRemainingAccountsNode.md)
39+
- [`PdaNode`](./docs/PdaNode.md)
40+
- [`ProgramNode`](./docs/ProgramNode.md)
41+
- [`RootNode`](./docs/RootNode.md)
42+
- [`ContextualValueNode`](./docs/contextualValueNodes/README.md) (abstract)
43+
- [`AccountBumpValueNode`](./docs/contextualValueNodes/AccountBumpValueNode.md)
44+
- [`AccountValueNode`](./docs/contextualValueNodes/AccountValueNode.md)
45+
- [`ArgumentValueNode`](./docs/contextualValueNodes/ArgumentValueNode.md)
46+
- [`ConditionalValueNode`](./docs/contextualValueNodes/ConditionalValueNode.md)
47+
- [`IdentityValueNode`](./docs/contextualValueNodes/IdentityValueNode.md)
48+
- [`PayerValueNode`](./docs/contextualValueNodes/PayerValueNode.md)
49+
- [`PdaSeedValueNode`](./docs/contextualValueNodes/PdaSeedValueNode.md)
50+
- [`PdaValueNode`](./docs/contextualValueNodes/PdaValueNode.md)
51+
- [`ProgramIdValueNode`](./docs/contextualValueNodes/ProgramIdValueNode.md)
52+
- [`ResolverValueNode`](./docs/contextualValueNodes/ResolverValueNodemds)
53+
- [`CountNode`](./docs/countNodes/README.md) (abstract)
54+
- [`FixedCountNode`](./docs/countNodes/FixedCountNode.md)
55+
- [`PrefixedCountNode`](./docs/countNodes/PrefixedCountNode.md)
56+
- [`RemainderCountNode`](./docs/countNodes/RemainderCountNodemds)
57+
- [`DiscriminatorNode`](./docs/discriminatorNodes/README.md) (abstract)
58+
- [`ConstantDiscriminatorNode`](./docs/discriminatorNodes/ConstantDiscriminatorNode.md)
59+
- [`FieldDiscriminatorNode`](./docs/discriminatorNodes/FieldDiscriminatorNode.md)
60+
- [`SizeDiscriminatorNode`](./docs/discriminatorNodes/SizeDiscriminatorNodemds)
61+
- [`LinkNode`](./docs/linkNodes/README.md) (abstract)
62+
- [`AccountLinkNode`](./docs/linkNodes/AccountLinkNode.md)
63+
- [`DefinedTypeLinkNode`](./docs/linkNodes/DefinedTypeLinkNode.md)
64+
- [`InstructionAccountLinkNode`](./docs/linkNodes/InstructionAccountLinkNode.md)
65+
- [`InstructionArgumentLinkNode`](./docs/linkNodes/InstructionArgumentLinkNode.md)
66+
- [`InstructionLinkNode`](./docs/linkNodes/InstructionLinkNode.md)
67+
- [`PdaLinkNode`](./docs/linkNodes/PdaLinkNode.md)
68+
- [`ProgramLinkNode`](./docs/linkNodes/ProgramLinkNode.md)
69+
- [`PdaSeedNode`](./docs/pdaSeedNodes/README.md) (abstract)
70+
- [`ConstantPdaSeedNode`](./docs/pdaSeedNodes/ConstantPdaSeedNode.md)
71+
- [`VariablePdaSeedNode`](./docs/pdaSeedNodes/VariablePdaSeedNode.md)
72+
- [`TypeNode`](./docs/typeNodes/README.md) (abstract)
73+
- [`AmountTypeNode`](./docs/typeNodes/AmountTypeNode.md)
74+
- [`ArrayTypeNode`](./docs/typeNodes/ArrayTypeNode.md)
75+
- [`BooleanTypeNode`](./docs/typeNodes/BooleanTypeNode.md)
76+
- [`BytesTypeNode`](./docs/typeNodes/BytesTypeNode.md)
77+
- [`DateTimeTypeNode`](./docs/typeNodes/DateTimeTypeNode.md)
78+
- [`EnumEmptyVariantTypeNode`](./docs/typeNodes/EnumEmptyVariantTypeNode.md)
79+
- [`EnumStructVariantTypeNode`](./docs/typeNodes/EnumStructVariantTypeNode.md)
80+
- [`EnumTupleVariantTypeNode`](./docs/typeNodes/EnumTupleVariantTypeNode.md)
81+
- [`EnumTypeNode`](./docs/typeNodes/EnumTypeNode.md)
82+
- [`EnumVariantTypeNode`](./docs/typeNodes/EnumVariantTypeNode.md) (abstract)
83+
- [`FixedSizeTypeNode`](./docs/typeNodes/FixedSizeTypeNode.md)
84+
- [`HiddenPrefixTypeNode`](./docs/typeNodes/HiddenPrefixTypeNode.md)
85+
- [`HiddenSuffixTypeNode`](./docs/typeNodes/HiddenSuffixTypeNode.md)
86+
- [`MapTypeNode`](./docs/typeNodes/MapTypeNode.md)
87+
- [`NestedTypeNode`](./docs/typeNodes/NestedTypeNode.md) (helper)
88+
- [`NumberTypeNode`](./docs/typeNodes/NumberTypeNode.md)
89+
- [`OptionTypeNode`](./docs/typeNodes/OptionTypeNode.md)
90+
- [`PostOffsetTypeNode`](./docs/typeNodes/PostOffsetTypeNode.md)
91+
- [`PreOffsetTypeNode`](./docs/typeNodes/PreOffsetTypeNode.md)
92+
- [`PublicKeyTypeNode`](./docs/typeNodes/PublicKeyTypeNode.md)
93+
- [`RemainderOptionTypeNode`](./docs/typeNodes/RemainderOptionTypeNode.md)
94+
- [`SentinelTypeNode`](./docs/typeNodes/SentinelTypeNode.md)
95+
- [`SetTypeNode`](./docs/typeNodes/SetTypeNode.md)
96+
- [`SizePrefixTypeNode`](./docs/typeNodes/SizePrefixTypeNode.md)
97+
- [`SolAmountTypeNode`](./docs/typeNodes/SolAmountTypeNode.md)
98+
- [`StringTypeNode`](./docs/typeNodes/StringTypeNode.md)
99+
- [`StructFieldTypeNode`](./docs/typeNodes/StructFieldTypeNode.md)
100+
- [`StructTypeNode`](./docs/typeNodes/StructTypeNode.md)
101+
- [`TupleTypeNode`](./docs/typeNodes/TupleTypeNode.md)
102+
- [`ZeroableOptionTypeNod`](./docs/typeNodes/ZeroableOptionTypeNod.md)
103+
- [`ValueNode`](./docs/valueNodes/README.md) (abstract)
104+
- [`ArrayValueNode`](./docs/valueNodes/ArrayValueNode.md)
105+
- [`BooleanValueNode`](./docs/valueNodes/BooleanValueNode.md)
106+
- [`BytesValueNode`](./docs/valueNodes/BytesValueNode.md)
107+
- [`ConstantValueNode`](./docs/valueNodes/ConstantValueNode.md)
108+
- [`EnumValueNode`](./docs/valueNodes/EnumValueNode.md)
109+
- [`MapEntryValueNode`](./docs/valueNodes/MapEntryValueNode.md)
110+
- [`MapValueNode`](./docs/valueNodes/MapValueNode.md)
111+
- [`NoneValueNode`](./docs/valueNodes/NoneValueNode.md)
112+
- [`NumberValueNode`](./docs/valueNodes/NumberValueNode.md)
113+
- [`PublicKeyValueNode`](./docs/valueNodes/PublicKeyValueNode.md)
114+
- [`SetValueNode`](./docs/valueNodes/SetValueNode.md)
115+
- [`SomeValueNode`](./docs/valueNodes/SomeValueNode.md)
116+
- [`StringValueNode`](./docs/valueNodes/StringValueNode.md)
117+
- [`StructFieldValueNode`](./docs/valueNodes/StructFieldValueNode.md)
118+
- [`StructValueNode`](./docs/valueNodes/StructValueNode.md)
119+
- [`TupleValueNode`](./docs/valueNodes/TupleValueNode.md)

packages/nodes/docs/contextualValueNodes/InstructionInputValueNode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
The `InstructionInputValueNode` type helper represents all values that can be used as a default value for an instruction account or an instruction argument. Note that `InstructionInputValueNode` is a type alias and cannot be used directly as a node. Instead you may use one of the following nodes:
44

5-
- [`ContextualValueNode`](./README.md) (abstract)
6-
- [`ProgramLinkNode`](../linkNodes/ProgramLinkNode.md)
7-
- [`ValueNode`](../valueNodes/README.md) (abstract)
5+
- [`ContextualValueNode`](./README.md) (abstract)
6+
- [`ProgramLinkNode`](../linkNodes/ProgramLinkNode.md)
7+
- [`ValueNode`](../valueNodes/README.md) (abstract)

packages/nodes/docs/contextualValueNodes/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
The `ContextualValueNode` type helper represents all the available contextual value nodes. Note that `ContextualValueNode` is a type alias and cannot be used directly as a node. Instead you may use one of the following nodes:
44

5-
- [`AccountBumpValueNode`](./AccountBumpValueNode.md)
6-
- [`AccountValueNode`](./AccountValueNode.md)
7-
- [`ArgumentValueNode`](./ArgumentValueNode.md)
8-
- [`ConditionalValueNode`](./ConditionalValueNode.md)
9-
- [`IdentityValueNode`](./IdentityValueNode.md)
10-
- [`PayerValueNode`](./PayerValueNode.md)
11-
- [`PdaValueNode`](./PdaValueNode.md)
12-
- [`ProgramIdValueNode`](./ProgramIdValueNode.md)
13-
- [`ResolverValueNode`](./ResolverValueNode.md)
5+
- [`AccountBumpValueNode`](./AccountBumpValueNode.md)
6+
- [`AccountValueNode`](./AccountValueNode.md)
7+
- [`ArgumentValueNode`](./ArgumentValueNode.md)
8+
- [`ConditionalValueNode`](./ConditionalValueNode.md)
9+
- [`IdentityValueNode`](./IdentityValueNode.md)
10+
- [`PayerValueNode`](./PayerValueNode.md)
11+
- [`PdaValueNode`](./PdaValueNode.md)
12+
- [`ProgramIdValueNode`](./ProgramIdValueNode.md)
13+
- [`ResolverValueNode`](./ResolverValueNode.md)

packages/nodes/docs/countNodes/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
The `CountNode` type helper represents all available strategies that determine the size of a collection. Note that `CountNode` is a type alias and cannot be used directly as a node. Instead you may use one of the following nodes:
44

5-
- [`FixedCountNode`](./FixedCountNode.md)
6-
- [`PrefixedCountNode`](./PrefixedCountNode.md)
7-
- [`RemainderCountNode`](./RemainderCountNode.md)
5+
- [`FixedCountNode`](./FixedCountNode.md)
6+
- [`PrefixedCountNode`](./PrefixedCountNode.md)
7+
- [`RemainderCountNode`](./RemainderCountNode.md)

packages/nodes/docs/discriminatorNodes/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
The `DiscriminatorNode` type helper represents all available strategies that help distinguish blocks of data — such as accounts and instructions. Note that `DiscriminatorNode` is a type alias and cannot be used directly as a node. Instead you may use one of the following nodes:
44

5-
- [`ConstantDiscriminatorNode`](./ConstantDiscriminatorNode.md)
6-
- [`FieldDiscriminatorNode`](./FieldDiscriminatorNode.md)
7-
- [`SizeDiscriminatorNode`](./SizeDiscriminatorNode.md)
5+
- [`ConstantDiscriminatorNode`](./ConstantDiscriminatorNode.md)
6+
- [`FieldDiscriminatorNode`](./FieldDiscriminatorNode.md)
7+
- [`SizeDiscriminatorNode`](./SizeDiscriminatorNode.md)

packages/nodes/docs/linkNodes/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
The `LinkNode` type helper represents all nodes that link to other nodes. Note that `LinkNode` is a type alias and cannot be used directly as a node. Instead you may use one of the following nodes:
44

5-
- [`AccountLinkNode`](./AccountLinkNode.md)
6-
- [`DefinedTypeLinkNode`](./DefinedTypeLinkNode.md)
7-
- [`InstructionAccountLinkNode`](./InstructionAccountLinkNode.md)
8-
- [`InstructionArgumentLinkNode`](./InstructionArgumentLinkNode.md)
9-
- [`InstructionLinkNode`](./InstructionLinkNode.md)
10-
- [`PdaLinkNode`](./PdaLinkNode.md)
11-
- [`ProgramLinkNode`](./ProgramLinkNode.md)
5+
- [`AccountLinkNode`](./AccountLinkNode.md)
6+
- [`DefinedTypeLinkNode`](./DefinedTypeLinkNode.md)
7+
- [`InstructionAccountLinkNode`](./InstructionAccountLinkNode.md)
8+
- [`InstructionArgumentLinkNode`](./InstructionArgumentLinkNode.md)
9+
- [`InstructionLinkNode`](./InstructionLinkNode.md)
10+
- [`PdaLinkNode`](./PdaLinkNode.md)
11+
- [`ProgramLinkNode`](./ProgramLinkNode.md)

packages/nodes/docs/pdaSeedNodes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
The `PdaSeedNode` type helper represents all ways to define a PDA seed. Note that `PdaSeedNode` is a type alias and cannot be used directly as a node. Instead you may use one of the following nodes:
44

5-
- [`ConstantPdaSeedNode`](./ConstantPdaSeedNode.md)
6-
- [`VariablePdaSeedNode`](./VariablePdaSeedNode.md)
5+
- [`ConstantPdaSeedNode`](./ConstantPdaSeedNode.md)
6+
- [`VariablePdaSeedNode`](./VariablePdaSeedNode.md)

packages/nodes/docs/typeNodes/EnumVariantTypeNode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
The `EnumVariantTypeNode` type helper represents any of the available enum variant types. Note that it cannot be used directly as a node. Instead you may use one of the following types:
44

5-
- [`EnumEmptyVariantTypeNode`](./EnumEmptyVariantTypeNode.md)
6-
- [`EnumStructVariantTypeNode`](./EnumStructVariantTypeNode.md)
7-
- [`EnumTupleVariantTypeNode`](./EnumTupleVariantTypeNode.md)
5+
- [`EnumEmptyVariantTypeNode`](./EnumEmptyVariantTypeNode.md)
6+
- [`EnumStructVariantTypeNode`](./EnumStructVariantTypeNode.md)
7+
- [`EnumTupleVariantTypeNode`](./EnumTupleVariantTypeNode.md)

0 commit comments

Comments
 (0)