@@ -10,55 +10,80 @@ export type Scalars = {
1010 Boolean : boolean ;
1111 Int : number ;
1212 Float : number ;
13- Address : any ;
14- Version : any ;
1513 UUID : any ;
14+ Version : any ;
15+ Address : any ;
1616 ExecutionResultValue : any ;
1717 RawExecutionResult : any ;
1818} ;
1919
20+ export type Project = {
21+ __typename ?: 'Project' ;
22+ accounts ?: Maybe < Array < Account > > ;
23+ id : Scalars [ 'UUID' ] ;
24+ mutable ?: Maybe < Scalars [ 'Boolean' ] > ;
25+ parentId ?: Maybe < Scalars [ 'UUID' ] > ;
26+ persist ?: Maybe < Scalars [ 'Boolean' ] > ;
27+ publicId : Scalars [ 'UUID' ] ;
28+ scriptExecutions ?: Maybe < Array < ScriptExecution > > ;
29+ scriptTemplates ?: Maybe < Array < ScriptTemplate > > ;
30+ seed : Scalars [ 'Int' ] ;
31+ title : Scalars [ 'String' ] ;
32+ transactionExecutions ?: Maybe < Array < TransactionExecution > > ;
33+ transactionTemplates ?: Maybe < Array < TransactionTemplate > > ;
34+ version : Scalars [ 'Version' ] ;
35+ } ;
2036
21-
22- export type Query = {
23- __typename ?: 'Query' ;
24- account : Account ;
25- activeProject : Scalars [ 'Boolean' ] ;
26- activeProjectId ?: Maybe < Scalars [ 'Int' ] > ;
27- cachedExecutionResults : Array < Maybe < ExecutionResults > > ;
28- localProject ?: Maybe < Project > ;
29- playgroundInfo : PlaygroundInfo ;
30- project : Project ;
31- scriptTemplate : ScriptTemplate ;
32- transactionTemplate : TransactionTemplate ;
37+ export type ProgramError = {
38+ __typename ?: 'ProgramError' ;
39+ endPosition ?: Maybe < ProgramPosition > ;
40+ message : Scalars [ 'String' ] ;
41+ startPosition ?: Maybe < ProgramPosition > ;
3342} ;
3443
44+ export type NewProjectScriptTemplate = {
45+ script : Scalars [ 'String' ] ;
46+ title : Scalars [ 'String' ] ;
47+ } ;
3548
36- export type QueryAccountArgs = {
37- accountId ?: Maybe < Scalars [ 'String' ] > ;
38- id : Scalars [ 'UUID' ] ;
49+ export type NewTransactionExecution = {
50+ arguments ?: Maybe < Array < Scalars [ 'String' ] > > ;
3951 projectId : Scalars [ 'UUID' ] ;
52+ script : Scalars [ 'String' ] ;
53+ signers ?: Maybe < Array < Scalars [ 'Address' ] > > ;
4054} ;
4155
4256
43- export type QueryProjectArgs = {
57+ export type Account = {
58+ __typename ?: 'Account' ;
59+ address : Scalars [ 'Address' ] ;
60+ deployedCode : Scalars [ 'String' ] ;
61+ deployedContracts : Array < Scalars [ 'String' ] > ;
62+ draftCode : Scalars [ 'String' ] ;
4463 id : Scalars [ 'UUID' ] ;
64+ state : Scalars [ 'String' ] ;
4565} ;
4666
47-
48- export type QueryScriptTemplateArgs = {
67+ export type ScriptTemplate = {
68+ __typename ?: 'ScriptTemplate' ;
4969 id : Scalars [ 'UUID' ] ;
50- projectId : Scalars [ 'UUID' ] ;
70+ index : Scalars [ 'Int' ] ;
71+ script : Scalars [ 'String' ] ;
72+ title : Scalars [ 'String' ] ;
5173} ;
5274
5375
54- export type QueryTransactionTemplateArgs = {
55- id : Scalars [ 'UUID' ] ;
56- projectId : Scalars [ 'UUID' ] ;
76+ export type Event = {
77+ __typename ?: 'Event' ;
78+ type : Scalars [ 'String' ] ;
79+ values : Array < Scalars [ 'String' ] > ;
5780} ;
5881
59- export type NewProjectScriptTemplate = {
60- script : Scalars [ 'String' ] ;
61- title : Scalars [ 'String' ] ;
82+ export type UpdateAccount = {
83+ deployedCode ?: Maybe < Scalars [ 'String' ] > ;
84+ draftCode ?: Maybe < Scalars [ 'String' ] > ;
85+ id : Scalars [ 'UUID' ] ;
86+ projectId : Scalars [ 'UUID' ] ;
6287} ;
6388
6489export type NewScriptExecution = {
@@ -67,62 +92,50 @@ export type NewScriptExecution = {
6792 script : Scalars [ 'String' ] ;
6893} ;
6994
70- export type NewProjectTransactionTemplate = {
71- script : Scalars [ 'String' ] ;
72- title : Scalars [ 'String' ] ;
95+
96+ export type Query = {
97+ __typename ?: 'Query' ;
98+ account : Account ;
99+ activeProject : Scalars [ 'Boolean' ] ;
100+ activeProjectId ?: Maybe < Scalars [ 'Int' ] > ;
101+ cachedExecutionResults : Array < Maybe < ExecutionResults > > ;
102+ localProject ?: Maybe < Project > ;
103+ playgroundInfo : PlaygroundInfo ;
104+ project : Project ;
105+ scriptTemplate : ScriptTemplate ;
106+ transactionTemplate : TransactionTemplate ;
73107} ;
74108
75- export type NewTransactionTemplate = {
109+
110+ export type QueryAccountArgs = {
111+ accountId ?: Maybe < Scalars [ 'String' ] > ;
112+ id : Scalars [ 'UUID' ] ;
76113 projectId : Scalars [ 'UUID' ] ;
77- script : Scalars [ 'String' ] ;
78- title : Scalars [ 'String' ] ;
79114} ;
80115
81- export type Event = {
82- __typename ?: 'Event' ;
83- type : Scalars [ 'String' ] ;
84- values : Array < Scalars [ 'String' ] > ;
116+
117+ export type QueryProjectArgs = {
118+ id : Scalars [ 'UUID' ] ;
85119} ;
86120
87121
88- export type Project = {
89- __typename ?: 'Project' ;
90- accounts ?: Maybe < Array < Account > > ;
122+ export type QueryScriptTemplateArgs = {
91123 id : Scalars [ 'UUID' ] ;
92- mutable ?: Maybe < Scalars [ 'Boolean' ] > ;
93- parentId ?: Maybe < Scalars [ 'UUID' ] > ;
94- persist ?: Maybe < Scalars [ 'Boolean' ] > ;
95- publicId : Scalars [ 'UUID' ] ;
96- scriptExecutions ?: Maybe < Array < ScriptExecution > > ;
97- scriptTemplates ?: Maybe < Array < ScriptTemplate > > ;
98- seed : Scalars [ 'Int' ] ;
99- title : Scalars [ 'String' ] ;
100- transactionExecutions ?: Maybe < Array < TransactionExecution > > ;
101- transactionTemplates ?: Maybe < Array < TransactionTemplate > > ;
102- version : Scalars [ 'Version' ] ;
124+ projectId : Scalars [ 'UUID' ] ;
103125} ;
104126
105- export type ProgramPosition = {
106- __typename ?: 'ProgramPosition' ;
107- column : Scalars [ 'Int' ] ;
108- line : Scalars [ 'Int' ] ;
109- offset : Scalars [ 'Int' ] ;
110- } ;
111127
112- export type NewProject = {
113- accounts ?: Maybe < Array < Scalars [ 'String' ] > > ;
114- parentId ?: Maybe < Scalars [ 'UUID' ] > ;
115- scriptTemplates ?: Maybe < Array < NewProjectScriptTemplate > > ;
116- seed : Scalars [ 'Int' ] ;
117- title : Scalars [ 'String' ] ;
118- transactionTemplates ?: Maybe < Array < NewProjectTransactionTemplate > > ;
128+ export type QueryTransactionTemplateArgs = {
129+ id : Scalars [ 'UUID' ] ;
130+ projectId : Scalars [ 'UUID' ] ;
119131} ;
120132
121- export type UpdateAccount = {
122- deployedCode ?: Maybe < Scalars [ 'String' ] > ;
123- draftCode ?: Maybe < Scalars [ 'String' ] > ;
133+ export type UpdateScriptTemplate = {
124134 id : Scalars [ 'UUID' ] ;
135+ index ?: Maybe < Scalars [ 'Int' ] > ;
125136 projectId : Scalars [ 'UUID' ] ;
137+ script ?: Maybe < Scalars [ 'String' ] > ;
138+ title ?: Maybe < Scalars [ 'String' ] > ;
126139} ;
127140
128141export type TransactionTemplate = {
@@ -133,25 +146,6 @@ export type TransactionTemplate = {
133146 title : Scalars [ 'String' ] ;
134147} ;
135148
136- export type ScriptTemplate = {
137- __typename ?: 'ScriptTemplate' ;
138- id : Scalars [ 'UUID' ] ;
139- index : Scalars [ 'Int' ] ;
140- script : Scalars [ 'String' ] ;
141- title : Scalars [ 'String' ] ;
142- } ;
143-
144- export type TransactionExecution = {
145- __typename ?: 'TransactionExecution' ;
146- arguments ?: Maybe < Array < Scalars [ 'String' ] > > ;
147- errors ?: Maybe < Array < ProgramError > > ;
148- events : Array < Maybe < Event > > ;
149- id : Scalars [ 'UUID' ] ;
150- logs : Array < Scalars [ 'String' ] > ;
151- script : Scalars [ 'String' ] ;
152- signers : Array < Account > ;
153- } ;
154-
155149export type UpdateTransactionTemplate = {
156150 id : Scalars [ 'UUID' ] ;
157151 index ?: Maybe < Scalars [ 'Int' ] > ;
@@ -166,17 +160,21 @@ export type NewScriptTemplate = {
166160 title : Scalars [ 'String' ] ;
167161} ;
168162
169- export type PlaygroundInfo = {
170- __typename ?: 'PlaygroundInfo' ;
171- apiVersion : Scalars [ 'Version' ] ;
172- cadenceVersion : Scalars [ 'Version' ] ;
163+ export type UpdateProject = {
164+ id : Scalars [ 'UUID' ] ;
165+ persist ?: Maybe < Scalars [ 'Boolean' ] > ;
166+ title ?: Maybe < Scalars [ 'String' ] > ;
173167} ;
174168
175- export type ProgramError = {
176- __typename ?: 'ProgramError' ;
177- endPosition ?: Maybe < ProgramPosition > ;
178- message : Scalars [ 'String' ] ;
179- startPosition ?: Maybe < ProgramPosition > ;
169+ export type TransactionExecution = {
170+ __typename ?: 'TransactionExecution' ;
171+ arguments ?: Maybe < Array < Scalars [ 'String' ] > > ;
172+ errors ?: Maybe < Array < ProgramError > > ;
173+ events : Array < Maybe < Event > > ;
174+ id : Scalars [ 'UUID' ] ;
175+ logs : Array < Scalars [ 'String' ] > ;
176+ script : Scalars [ 'String' ] ;
177+ signers : Array < Account > ;
180178} ;
181179
182180export type ScriptExecution = {
@@ -189,35 +187,24 @@ export type ScriptExecution = {
189187 value : Scalars [ 'String' ] ;
190188} ;
191189
192- export type UpdateScriptTemplate = {
193- id : Scalars [ 'UUID' ] ;
194- index ?: Maybe < Scalars [ 'Int' ] > ;
195- projectId : Scalars [ 'UUID' ] ;
196- script ?: Maybe < Scalars [ 'String' ] > ;
197- title ?: Maybe < Scalars [ 'String' ] > ;
198- } ;
199-
200- export type Account = {
201- __typename ?: 'Account' ;
202- address : Scalars [ 'Address' ] ;
203- deployedCode : Scalars [ 'String' ] ;
204- deployedContracts : Array < Scalars [ 'String' ] > ;
205- draftCode : Scalars [ 'String' ] ;
206- id : Scalars [ 'UUID' ] ;
207- state : Scalars [ 'String' ] ;
190+ export type NewProject = {
191+ accounts ?: Maybe < Array < Scalars [ 'String' ] > > ;
192+ parentId ?: Maybe < Scalars [ 'UUID' ] > ;
193+ scriptTemplates ?: Maybe < Array < NewProjectScriptTemplate > > ;
194+ seed : Scalars [ 'Int' ] ;
195+ title : Scalars [ 'String' ] ;
196+ transactionTemplates ?: Maybe < Array < NewProjectTransactionTemplate > > ;
208197} ;
209198
210- export type UpdateProject = {
211- id : Scalars [ 'UUID' ] ;
212- persist ?: Maybe < Scalars [ 'Boolean' ] > ;
213- title ?: Maybe < Scalars [ 'String' ] > ;
199+ export type NewProjectTransactionTemplate = {
200+ script : Scalars [ 'String' ] ;
201+ title : Scalars [ 'String' ] ;
214202} ;
215203
216- export type NewTransactionExecution = {
217- arguments ?: Maybe < Array < Scalars [ 'String' ] > > ;
204+ export type NewTransactionTemplate = {
218205 projectId : Scalars [ 'UUID' ] ;
219206 script : Scalars [ 'String' ] ;
220- signers ?: Maybe < Array < Scalars [ 'Address' ] > > ;
207+ title : Scalars [ 'String' ] ;
221208} ;
222209
223210export type Mutation = {
@@ -312,6 +299,19 @@ export type MutationUpdateTransactionTemplateArgs = {
312299 input : UpdateTransactionTemplate ;
313300} ;
314301
302+ export type PlaygroundInfo = {
303+ __typename ?: 'PlaygroundInfo' ;
304+ apiVersion : Scalars [ 'Version' ] ;
305+ cadenceVersion : Scalars [ 'Version' ] ;
306+ } ;
307+
308+ export type ProgramPosition = {
309+ __typename ?: 'ProgramPosition' ;
310+ column : Scalars [ 'Int' ] ;
311+ line : Scalars [ 'Int' ] ;
312+ offset : Scalars [ 'Int' ] ;
313+ } ;
314+
315315
316316
317317export enum ResultType {
0 commit comments