drama-pm-client 0.4.8 → 0.4.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/idl.d.ts CHANGED
@@ -90,6 +90,82 @@ export declare const IDL: {
90
90
  };
91
91
  };
92
92
  }[];
93
+ } | {
94
+ name: string;
95
+ docs: string[];
96
+ discriminator: number[];
97
+ accounts: ({
98
+ name: string;
99
+ writable: boolean;
100
+ pda: {
101
+ seeds: ({
102
+ kind: string;
103
+ value: number[];
104
+ path?: undefined;
105
+ account?: undefined;
106
+ } | {
107
+ kind: string;
108
+ path: string;
109
+ account: string;
110
+ value?: undefined;
111
+ })[];
112
+ };
113
+ docs?: undefined;
114
+ optional?: undefined;
115
+ signer?: undefined;
116
+ address?: undefined;
117
+ } | {
118
+ name: string;
119
+ writable: boolean;
120
+ pda: {
121
+ seeds: ({
122
+ kind: string;
123
+ value: number[];
124
+ path?: undefined;
125
+ } | {
126
+ kind: string;
127
+ path: string;
128
+ value?: undefined;
129
+ })[];
130
+ };
131
+ docs?: undefined;
132
+ optional?: undefined;
133
+ signer?: undefined;
134
+ address?: undefined;
135
+ } | {
136
+ name: string;
137
+ docs: string[];
138
+ writable: boolean;
139
+ optional: boolean;
140
+ pda?: undefined;
141
+ signer?: undefined;
142
+ address?: undefined;
143
+ } | {
144
+ name: string;
145
+ docs: string[];
146
+ writable: boolean;
147
+ pda?: undefined;
148
+ optional?: undefined;
149
+ signer?: undefined;
150
+ address?: undefined;
151
+ } | {
152
+ name: string;
153
+ writable: boolean;
154
+ signer: boolean;
155
+ pda?: undefined;
156
+ docs?: undefined;
157
+ optional?: undefined;
158
+ address?: undefined;
159
+ } | {
160
+ name: string;
161
+ address: string;
162
+ writable?: undefined;
163
+ pda?: undefined;
164
+ docs?: undefined;
165
+ optional?: undefined;
166
+ signer?: undefined;
167
+ })[];
168
+ args: never[];
93
169
  } | {
94
170
  name: string;
95
171
  discriminator: number[];
@@ -278,35 +354,6 @@ export declare const IDL: {
278
354
  };
279
355
  }[];
280
356
  docs?: undefined;
281
- } | {
282
- name: string;
283
- docs: string[];
284
- discriminator: number[];
285
- accounts: ({
286
- name: string;
287
- writable: boolean;
288
- pda: {
289
- seeds: {
290
- kind: string;
291
- value: number[];
292
- }[];
293
- };
294
- signer?: undefined;
295
- address?: undefined;
296
- } | {
297
- name: string;
298
- writable: boolean;
299
- signer: boolean;
300
- pda?: undefined;
301
- address?: undefined;
302
- } | {
303
- name: string;
304
- address: string;
305
- writable?: undefined;
306
- pda?: undefined;
307
- signer?: undefined;
308
- })[];
309
- args: never[];
310
357
  } | {
311
358
  name: string;
312
359
  discriminator: number[];