@droz-js/sdk 0.6.7 → 0.6.9

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.
@@ -55,7 +55,7 @@ exports.SimpleConnectionSuggestionFragmentDoc = `
55
55
  ...appAndAppInstance
56
56
  }
57
57
  }
58
- ${exports.AppAndAppInstanceFragmentDoc}`;
58
+ `;
59
59
  exports.SimpleConnectionFragmentDoc = `
60
60
  fragment simpleConnection on SimpleConnection {
61
61
  id
@@ -71,7 +71,7 @@ exports.SimpleConnectionFragmentDoc = `
71
71
  createdAt
72
72
  updatedAt
73
73
  }
74
- ${exports.AppAndAppInstanceFragmentDoc}`;
74
+ `;
75
75
  exports.NodeFragmentDoc = `
76
76
  fragment node on Node {
77
77
  id
@@ -81,7 +81,7 @@ exports.NodeFragmentDoc = `
81
81
  }
82
82
  uidata
83
83
  }
84
- ${exports.AppAndAppInstanceFragmentDoc}`;
84
+ `;
85
85
  exports.EdgeFragmentDoc = `
86
86
  fragment edge on Edge {
87
87
  id
@@ -110,9 +110,7 @@ exports.FlowFragmentDoc = `
110
110
  createdAt
111
111
  updatedAt
112
112
  }
113
- ${exports.AppAndAppInstanceFragmentDoc}
114
- ${exports.NodeFragmentDoc}
115
- ${exports.EdgeFragmentDoc}`;
113
+ `;
116
114
  exports.GetUsageStatisticsDocument = `
117
115
  query getUsageStatistics {
118
116
  getUsageStatistics {
@@ -128,7 +126,10 @@ exports.GetFlowDocument = `
128
126
  ...flow
129
127
  }
130
128
  }
131
- ${exports.FlowFragmentDoc}`;
129
+ ${exports.FlowFragmentDoc}
130
+ ${exports.AppAndAppInstanceFragmentDoc}
131
+ ${exports.NodeFragmentDoc}
132
+ ${exports.EdgeFragmentDoc}`;
132
133
  exports.ListFlowsDocument = `
133
134
  query listFlows {
134
135
  listFlows {
@@ -141,14 +142,18 @@ exports.ListFlowsDocument = `
141
142
  }
142
143
  }
143
144
  }
144
- ${exports.FlowFragmentDoc}`;
145
+ ${exports.FlowFragmentDoc}
146
+ ${exports.AppAndAppInstanceFragmentDoc}
147
+ ${exports.NodeFragmentDoc}
148
+ ${exports.EdgeFragmentDoc}`;
145
149
  exports.ListSimpleSuggestionsDocument = `
146
150
  query listSimpleSuggestions {
147
151
  listSimpleConnectionSuggestions {
148
152
  ...simpleConnectionSuggestion
149
153
  }
150
154
  }
151
- ${exports.SimpleConnectionSuggestionFragmentDoc}`;
155
+ ${exports.SimpleConnectionSuggestionFragmentDoc}
156
+ ${exports.AppAndAppInstanceFragmentDoc}`;
152
157
  exports.ListSimpleConnectionsDocument = `
153
158
  query listSimpleConnections($next: Base64) {
154
159
  listSimpleConnections(next: $next) {
@@ -161,56 +166,74 @@ exports.ListSimpleConnectionsDocument = `
161
166
  }
162
167
  }
163
168
  }
164
- ${exports.SimpleConnectionFragmentDoc}`;
169
+ ${exports.SimpleConnectionFragmentDoc}
170
+ ${exports.AppAndAppInstanceFragmentDoc}`;
165
171
  exports.CreateFlowDocument = `
166
172
  mutation createFlow($input: CreateFlowInput!) {
167
173
  createFlow(input: $input) {
168
174
  ...flow
169
175
  }
170
176
  }
171
- ${exports.FlowFragmentDoc}`;
177
+ ${exports.FlowFragmentDoc}
178
+ ${exports.AppAndAppInstanceFragmentDoc}
179
+ ${exports.NodeFragmentDoc}
180
+ ${exports.EdgeFragmentDoc}`;
172
181
  exports.EditFlowDocument = `
173
182
  mutation editFlow($input: EditFlowInput!) {
174
183
  editFlow(input: $input) {
175
184
  ...flow
176
185
  }
177
186
  }
178
- ${exports.FlowFragmentDoc}`;
187
+ ${exports.FlowFragmentDoc}
188
+ ${exports.AppAndAppInstanceFragmentDoc}
189
+ ${exports.NodeFragmentDoc}
190
+ ${exports.EdgeFragmentDoc}`;
179
191
  exports.UpdateFlowDocument = `
180
192
  mutation updateFlow($input: UpdateFlowInput!) {
181
193
  updateFlow(input: $input) {
182
194
  ...flow
183
195
  }
184
196
  }
185
- ${exports.FlowFragmentDoc}`;
197
+ ${exports.FlowFragmentDoc}
198
+ ${exports.AppAndAppInstanceFragmentDoc}
199
+ ${exports.NodeFragmentDoc}
200
+ ${exports.EdgeFragmentDoc}`;
186
201
  exports.PublishFlowDocument = `
187
202
  mutation publishFlow($input: PublishFlowInput!) {
188
203
  publishFlow(input: $input) {
189
204
  ...flow
190
205
  }
191
206
  }
192
- ${exports.FlowFragmentDoc}`;
207
+ ${exports.FlowFragmentDoc}
208
+ ${exports.AppAndAppInstanceFragmentDoc}
209
+ ${exports.NodeFragmentDoc}
210
+ ${exports.EdgeFragmentDoc}`;
193
211
  exports.RemoveFlowDocument = `
194
212
  mutation removeFlow($input: RemoveFlowInput!) {
195
213
  removeFlow(input: $input) {
196
214
  ...flow
197
215
  }
198
216
  }
199
- ${exports.FlowFragmentDoc}`;
217
+ ${exports.FlowFragmentDoc}
218
+ ${exports.AppAndAppInstanceFragmentDoc}
219
+ ${exports.NodeFragmentDoc}
220
+ ${exports.EdgeFragmentDoc}`;
200
221
  exports.CreateSimpleConnectionDocument = `
201
222
  mutation createSimpleConnection($input: CreateSimpleConnectionInput!) {
202
223
  createSimpleConnection(input: $input) {
203
224
  ...simpleConnection
204
225
  }
205
226
  }
206
- ${exports.SimpleConnectionFragmentDoc}`;
227
+ ${exports.SimpleConnectionFragmentDoc}
228
+ ${exports.AppAndAppInstanceFragmentDoc}`;
207
229
  exports.RemoveSimpleConnectionDocument = `
208
230
  mutation removeSimpleConnection($input: RemoveSimpleConnectionInput!) {
209
231
  removeSimpleConnection(input: $input) {
210
232
  ...simpleConnection
211
233
  }
212
234
  }
213
- ${exports.SimpleConnectionFragmentDoc}`;
235
+ ${exports.SimpleConnectionFragmentDoc}
236
+ ${exports.AppAndAppInstanceFragmentDoc}`;
214
237
  function getSdk(requester) {
215
238
  return {
216
239
  getUsageStatistics(variables, options) {
@@ -149,7 +149,16 @@ export type MessageConnection = {
149
149
  export type Mutation = {
150
150
  version?: Maybe<Scalars['String']['output']>;
151
151
  };
152
- export type NumberFilterInput = {
152
+ export type NumberMatcher = {
153
+ btw?: Maybe<Array<Scalars['Float']['output']>>;
154
+ eq?: Maybe<Scalars['Float']['output']>;
155
+ gt?: Maybe<Scalars['Float']['output']>;
156
+ gte?: Maybe<Scalars['Float']['output']>;
157
+ lt?: Maybe<Scalars['Float']['output']>;
158
+ lte?: Maybe<Scalars['Float']['output']>;
159
+ ne?: Maybe<Scalars['Float']['output']>;
160
+ };
161
+ export type NumberMatcherInput = {
153
162
  btw?: InputMaybe<Array<Scalars['Float']['input']>>;
154
163
  eq?: InputMaybe<Scalars['Float']['input']>;
155
164
  gt?: InputMaybe<Scalars['Float']['input']>;
@@ -193,9 +202,30 @@ export type SearchResultsStats = {
193
202
  searchTime: Scalars['Float']['output'];
194
203
  totalPages: Scalars['Float']['output'];
195
204
  };
196
- export type StringFilterInput = {
205
+ export type StringMatcher = {
206
+ btw?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
207
+ ct?: Maybe<Scalars['String']['output']>;
208
+ cti?: Maybe<Scalars['String']['output']>;
209
+ eq?: Maybe<Scalars['String']['output']>;
210
+ eqi?: Maybe<Scalars['String']['output']>;
211
+ gt?: Maybe<Scalars['String']['output']>;
212
+ gte?: Maybe<Scalars['String']['output']>;
213
+ in?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
214
+ lt?: Maybe<Scalars['String']['output']>;
215
+ lte?: Maybe<Scalars['String']['output']>;
216
+ ne?: Maybe<Scalars['String']['output']>;
217
+ };
218
+ export type StringMatcherInput = {
219
+ btw?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
220
+ ct?: InputMaybe<Scalars['String']['input']>;
221
+ cti?: InputMaybe<Scalars['String']['input']>;
197
222
  eq?: InputMaybe<Scalars['String']['input']>;
198
- in?: InputMaybe<Array<Scalars['String']['input']>>;
223
+ eqi?: InputMaybe<Scalars['String']['input']>;
224
+ gt?: InputMaybe<Scalars['String']['input']>;
225
+ gte?: InputMaybe<Scalars['String']['input']>;
226
+ in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
227
+ lt?: InputMaybe<Scalars['String']['input']>;
228
+ lte?: InputMaybe<Scalars['String']['input']>;
199
229
  ne?: InputMaybe<Scalars['String']['input']>;
200
230
  };
201
231
  export declare enum Typenames {
@@ -513,7 +513,16 @@ export type MutationUpdateStateMachineConfigArgs = {
513
513
  export type MutationUpdateStateMachineConfigStateArgs = {
514
514
  input: UpdateStateMachineConfigStateInput;
515
515
  };
516
- export type NumberFilterInput = {
516
+ export type NumberMatcher = {
517
+ btw?: Maybe<Array<Scalars['Float']['output']>>;
518
+ eq?: Maybe<Scalars['Float']['output']>;
519
+ gt?: Maybe<Scalars['Float']['output']>;
520
+ gte?: Maybe<Scalars['Float']['output']>;
521
+ lt?: Maybe<Scalars['Float']['output']>;
522
+ lte?: Maybe<Scalars['Float']['output']>;
523
+ ne?: Maybe<Scalars['Float']['output']>;
524
+ };
525
+ export type NumberMatcherInput = {
517
526
  btw?: InputMaybe<Array<Scalars['Float']['input']>>;
518
527
  eq?: InputMaybe<Scalars['Float']['input']>;
519
528
  gt?: InputMaybe<Scalars['Float']['input']>;
@@ -575,6 +584,7 @@ export type Query = {
575
584
  countCredentials: Scalars['Int']['output'];
576
585
  countLiveStateMachineConfigs: Scalars['Int']['output'];
577
586
  getAgent?: Maybe<Agent>;
587
+ getAgents: Array<Agent>;
578
588
  getApp?: Maybe<App>;
579
589
  getAppInstance?: Maybe<AppInstance>;
580
590
  getAppInstances: Array<AppInstance>;
@@ -617,6 +627,9 @@ export type QueryCheckPermissionsArgs = {
617
627
  export type QueryGetAgentArgs = {
618
628
  id: Scalars['ID']['input'];
619
629
  };
630
+ export type QueryGetAgentsArgs = {
631
+ ids: Array<Scalars['ID']['input']>;
632
+ };
620
633
  export type QueryGetAppArgs = {
621
634
  appId: Scalars['ID']['input'];
622
635
  };
@@ -858,9 +871,30 @@ export type Storage = {
858
871
  updatedAt: Scalars['DateTime']['output'];
859
872
  versionId: Scalars['String']['output'];
860
873
  };
861
- export type StringFilterInput = {
874
+ export type StringMatcher = {
875
+ btw?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
876
+ ct?: Maybe<Scalars['String']['output']>;
877
+ cti?: Maybe<Scalars['String']['output']>;
878
+ eq?: Maybe<Scalars['String']['output']>;
879
+ eqi?: Maybe<Scalars['String']['output']>;
880
+ gt?: Maybe<Scalars['String']['output']>;
881
+ gte?: Maybe<Scalars['String']['output']>;
882
+ in?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
883
+ lt?: Maybe<Scalars['String']['output']>;
884
+ lte?: Maybe<Scalars['String']['output']>;
885
+ ne?: Maybe<Scalars['String']['output']>;
886
+ };
887
+ export type StringMatcherInput = {
888
+ btw?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
889
+ ct?: InputMaybe<Scalars['String']['input']>;
890
+ cti?: InputMaybe<Scalars['String']['input']>;
862
891
  eq?: InputMaybe<Scalars['String']['input']>;
863
- in?: InputMaybe<Array<Scalars['String']['input']>>;
892
+ eqi?: InputMaybe<Scalars['String']['input']>;
893
+ gt?: InputMaybe<Scalars['String']['input']>;
894
+ gte?: InputMaybe<Scalars['String']['input']>;
895
+ in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
896
+ lt?: InputMaybe<Scalars['String']['input']>;
897
+ lte?: InputMaybe<Scalars['String']['input']>;
864
898
  ne?: InputMaybe<Scalars['String']['input']>;
865
899
  };
866
900
  export declare enum Typenames {
@@ -945,6 +979,12 @@ export type GetAgentQueryVariables = Exact<{
945
979
  export type GetAgentQuery = {
946
980
  getAgent?: Maybe<AgentFragment>;
947
981
  };
982
+ export type GetAgentsQueryVariables = Exact<{
983
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
984
+ }>;
985
+ export type GetAgentsQuery = {
986
+ getAgents: Array<AgentFragment>;
987
+ };
948
988
  export type ListAgentsQueryVariables = Exact<{
949
989
  next?: InputMaybe<Scalars['Base64']['input']>;
950
990
  }>;
@@ -1402,34 +1442,35 @@ export type CreatePresignedUploadUrlMutation = {
1402
1442
  createPresignedUploadUrl: Pick<CreatePresignedUploadUrl, 'method' | 'url' | 'fields' | 'cdnUrl'>;
1403
1443
  };
1404
1444
  export declare const AgentFragmentDoc = "\n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1405
- export declare const ApiKeyFragmentDoc = "\n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1445
+ export declare const ApiKeyFragmentDoc = "\n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n ";
1406
1446
  export declare const AppFragmentDoc = "\n fragment app on App {\n id\n type\n name\n description\n color\n channels {\n id\n sources\n main\n readonly\n hidden\n }\n}\n ";
1407
1447
  export declare const AppInstanceFragmentDoc = "\n fragment appInstance on AppInstance {\n appId\n appType\n drn\n name\n transitions\n createdAt\n updatedAt\n}\n ";
1408
- export declare const AppWithInstancesFragmentDoc = "\n fragment appWithInstances on App {\n ...app\n instances {\n ...appInstance\n }\n}\n \n fragment app on App {\n id\n type\n name\n description\n color\n channels {\n id\n sources\n main\n readonly\n hidden\n }\n}\n \n\n fragment appInstance on AppInstance {\n appId\n appType\n drn\n name\n transitions\n createdAt\n updatedAt\n}\n ";
1448
+ export declare const AppWithInstancesFragmentDoc = "\n fragment appWithInstances on App {\n ...app\n instances {\n ...appInstance\n }\n}\n ";
1409
1449
  export declare const SafeCredentialsFragmentDoc = "\n fragment safeCredentials on SafeCredentials {\n id\n type\n description\n systemCredentials\n createdAt\n updatedAt\n}\n ";
1410
1450
  export declare const CredentialsWithSecretFragmentDoc = "\n fragment credentialsWithSecret on Credentials {\n ... on ICredentials {\n id\n type\n description\n systemCredentials\n createdAt\n updatedAt\n }\n ... on BasicCredentialsType {\n credentials {\n username\n password\n }\n }\n ... on ApiKeyCredentialsType {\n credentials {\n apiKey\n }\n }\n ... on OAuth2CredentialsType {\n credentials {\n clientId\n clientSecret\n }\n }\n ... on MetaCredentialsType {\n credentials {\n code\n accessToken\n }\n }\n}\n ";
1411
1451
  export declare const CustomerFragmentDoc = "\n fragment customer on Customer {\n id\n name\n alternateName\n email\n phone\n document\n externalId\n emails\n phones\n documents\n externalIds\n apps {\n id\n name\n }\n createdAt\n updatedAt\n}\n ";
1412
1452
  export declare const CronJobFragmentDoc = "\n fragment cronJob on CronJob {\n appId\n id\n description\n expression\n event\n payload\n status\n timestamp\n runs\n}\n ";
1413
1453
  export declare const PolicyFragmentDoc = "\n fragment policy on Policy {\n id\n action\n effect\n resource\n}\n ";
1414
- export declare const RoleFragmentDoc = "\n fragment role on Role {\n id\n name\n policies {\n ...policy\n }\n}\n \n fragment policy on Policy {\n id\n action\n effect\n resource\n}\n ";
1454
+ export declare const RoleFragmentDoc = "\n fragment role on Role {\n id\n name\n policies {\n ...policy\n }\n}\n ";
1415
1455
  export declare const SessionFragmentDoc = "\n fragment session on Session {\n sessionId\n customerId\n stateMachineId\n triggerDrn\n}\n ";
1416
1456
  export declare const SessionSchemaFragmentDoc = "\n fragment sessionSchema on AppSessionSchemaFields {\n name\n fields {\n name\n description\n }\n}\n ";
1417
1457
  export declare const StateMachineConfigStateOnFragmentDoc = "\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1418
- export declare const StateMachineConfigStateFragmentDoc = "\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1419
- export declare const StateMachineConfigFragmentDoc = "\n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1420
- export declare const StateMachineConfigConnectionFragmentDoc = "\n fragment stateMachineConfigConnection on StateMachineConfigConnection {\n nodes {\n ...stateMachineConfig\n }\n pageInfo {\n hasNext\n next\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1458
+ export declare const StateMachineConfigStateFragmentDoc = "\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n ";
1459
+ export declare const StateMachineConfigFragmentDoc = "\n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n ";
1460
+ export declare const StateMachineConfigConnectionFragmentDoc = "\n fragment stateMachineConfigConnection on StateMachineConfigConnection {\n nodes {\n ...stateMachineConfig\n }\n pageInfo {\n hasNext\n next\n }\n}\n ";
1421
1461
  export declare const StorageFragmentDoc = "\n fragment storage on Storage {\n key\n versionId\n name\n contentType\n size\n eTag\n cdnUrl\n createdAt\n updatedAt\n}\n ";
1422
1462
  export declare const GetMeDocument = "\n query getMe {\n getMe {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1423
1463
  export declare const GetAgentDocument = "\n query getAgent($id: ID!) {\n getAgent(id: $id) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1464
+ export declare const GetAgentsDocument = "\n query getAgents($ids: [ID!]!) {\n getAgents(ids: $ids) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1424
1465
  export declare const ListAgentsDocument = "\n query listAgents($next: Base64) {\n listAgents(next: $next) {\n nodes {\n ...agent\n }\n pageInfo {\n hasNext\n next\n }\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1425
1466
  export declare const ListApiKeyAgentsDocument = "\n query listApiKeyAgents($next: Base64) {\n listApiKeyAgents(next: $next) {\n nodes {\n ...agent\n }\n pageInfo {\n hasNext\n next\n }\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1426
1467
  export declare const UpdateMyProfileDocument = "\n mutation updateMyProfile($input: UpdateMyProfileInput!) {\n updateMyProfile(input: $input) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1427
1468
  export declare const CreateAgentDocument = "\n mutation createAgent($input: CreateAgentInput!) {\n createAgent(input: $input) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1428
- export declare const CreateApiKeyAgentDocument = "\n mutation createApiKeyAgent($input: CreateApiKeyAgentInput!) {\n createApiKeyAgent(input: $input) {\n ...apiKey\n }\n}\n \n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1429
- export declare const CreateSystemApiKeyAgentDocument = "\n mutation createSystemApiKeyAgent($input: CreateApiKeyAgentInput!) {\n createSystemApiKeyAgent(input: $input) {\n ...apiKey\n }\n}\n \n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1469
+ export declare const CreateApiKeyAgentDocument = "\n mutation createApiKeyAgent($input: CreateApiKeyAgentInput!) {\n createApiKeyAgent(input: $input) {\n ...apiKey\n }\n}\n \n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n\n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1470
+ export declare const CreateSystemApiKeyAgentDocument = "\n mutation createSystemApiKeyAgent($input: CreateApiKeyAgentInput!) {\n createSystemApiKeyAgent(input: $input) {\n ...apiKey\n }\n}\n \n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n\n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1430
1471
  export declare const UpdateAgentDocument = "\n mutation updateAgent($input: UpdateAgentInput!) {\n updateAgent(input: $input) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1431
1472
  export declare const RemoveAgentDocument = "\n mutation removeAgent($input: RemoveAgentInput!) {\n removeAgent(input: $input) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1432
- export declare const RemoveSystemApiKeyAgentDocument = "\n mutation removeSystemApiKeyAgent($input: RemoveAgentInput!) {\n removeSystemApiKeyAgent(input: $input) {\n ...apiKey\n }\n}\n \n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1473
+ export declare const RemoveSystemApiKeyAgentDocument = "\n mutation removeSystemApiKeyAgent($input: RemoveAgentInput!) {\n removeSystemApiKeyAgent(input: $input) {\n ...apiKey\n }\n}\n \n fragment apiKey on ApiKeyAgent {\n email\n password\n token\n user {\n ...agent\n }\n}\n \n\n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1433
1474
  export declare const AddRoleToAgentDocument = "\n mutation addRoleToAgent($input: AddRoleToAgentInput!) {\n addRoleToAgent(input: $input) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1434
1475
  export declare const RemoveRoleFromAgentDocument = "\n mutation removeRoleFromAgent($input: RemoveRoleFromAgentInput!) {\n removeRoleFromAgent(input: $input) {\n ...agent\n }\n}\n \n fragment agent on Agent {\n id\n name\n email\n emailVerified\n picture\n apps\n roles\n cognitoUserStatus\n systemAgent\n createdAt\n updatedAt\n}\n ";
1435
1476
  export declare const GetAppDocument = "\n query getApp($appId: ID!, $withInstances: Boolean = false) {\n getApp(appId: $appId) {\n ...app\n instances @include(if: $withInstances) {\n ...appInstance\n }\n }\n}\n \n fragment app on App {\n id\n type\n name\n description\n color\n channels {\n id\n sources\n main\n readonly\n hidden\n }\n}\n \n\n fragment appInstance on AppInstance {\n appId\n appType\n drn\n name\n transitions\n createdAt\n updatedAt\n}\n ";
@@ -1459,8 +1500,8 @@ export declare const ListCronJobsDocument = "\n query listCronJobs {\n listC
1459
1500
  export declare const CreateCronJobDocument = "\n mutation createCronJob($input: CreateCronJobInput!) {\n createCronJob(input: $input) {\n ...cronJob\n }\n}\n \n fragment cronJob on CronJob {\n appId\n id\n description\n expression\n event\n payload\n status\n timestamp\n runs\n}\n ";
1460
1501
  export declare const UpdateCronJobDocument = "\n mutation updateCronJob($input: UpdateCronJobInput!) {\n updateCronJob(input: $input) {\n ...cronJob\n }\n}\n \n fragment cronJob on CronJob {\n appId\n id\n description\n expression\n event\n payload\n status\n timestamp\n runs\n}\n ";
1461
1502
  export declare const RemoveCronJobDocument = "\n mutation removeCronJob($input: RemoveCronJobInput!) {\n removeCronJob(input: $input) {\n ...cronJob\n }\n}\n \n fragment cronJob on CronJob {\n appId\n id\n description\n expression\n event\n payload\n status\n timestamp\n runs\n}\n ";
1462
- export declare const ListSystemRolesDocument = "\n query listSystemRoles {\n listSystemRoles {\n ...role\n }\n}\n \n fragment role on Role {\n id\n name\n policies {\n ...policy\n }\n}\n \n fragment policy on Policy {\n id\n action\n effect\n resource\n}\n ";
1463
- export declare const GetSystemRoleDocument = "\n query getSystemRole($id: ID!) {\n getSystemRole(id: $id) {\n ...role\n }\n}\n \n fragment role on Role {\n id\n name\n policies {\n ...policy\n }\n}\n \n fragment policy on Policy {\n id\n action\n effect\n resource\n}\n ";
1503
+ export declare const ListSystemRolesDocument = "\n query listSystemRoles {\n listSystemRoles {\n ...role\n }\n}\n \n fragment role on Role {\n id\n name\n policies {\n ...policy\n }\n}\n \n\n fragment policy on Policy {\n id\n action\n effect\n resource\n}\n ";
1504
+ export declare const GetSystemRoleDocument = "\n query getSystemRole($id: ID!) {\n getSystemRole(id: $id) {\n ...role\n }\n}\n \n fragment role on Role {\n id\n name\n policies {\n ...policy\n }\n}\n \n\n fragment policy on Policy {\n id\n action\n effect\n resource\n}\n ";
1464
1505
  export declare const CheckPermissionsDocument = "\n query checkPermissions($can: Can!, $resources: [String!]!) {\n checkPermissions(can: $can, resources: $resources)\n}\n ";
1465
1506
  export declare const StartSessionDocument = "\n mutation startSession($input: StartSessionInput!, $withCustomer: Boolean = true) {\n startSession(input: $input) {\n sessionId\n customerId\n stateMachineId\n triggerDrn\n customer @include(if: $withCustomer) {\n ...customer\n }\n }\n}\n \n fragment customer on Customer {\n id\n name\n alternateName\n email\n phone\n document\n externalId\n emails\n phones\n documents\n externalIds\n apps {\n id\n name\n }\n createdAt\n updatedAt\n}\n ";
1466
1507
  export declare const GetSessionDocument = "\n query getSession($sessionId: ID!, $withCustomer: Boolean = true, $withAttributes: Boolean = true) {\n getSession(sessionId: $sessionId) {\n ...session\n customer @include(if: $withCustomer) {\n ...customer\n }\n attributes @include(if: $withAttributes)\n }\n}\n \n fragment session on Session {\n sessionId\n customerId\n stateMachineId\n triggerDrn\n}\n \n\n fragment customer on Customer {\n id\n name\n alternateName\n email\n phone\n document\n externalId\n emails\n phones\n documents\n externalIds\n apps {\n id\n name\n }\n createdAt\n updatedAt\n}\n ";
@@ -1470,27 +1511,28 @@ export declare const SetSessionAttributeDocument = "\n mutation setSessionAtt
1470
1511
  export declare const PatchSessionAttributesDocument = "\n mutation patchSessionAttributes($input: PatchSessionAttributesInput!) {\n patchSessionAttributes(input: $input)\n}\n ";
1471
1512
  export declare const AddTagsToSessionAttributesDocument = "\n mutation addTagsToSessionAttributes($input: AddTagsToSessionAttributesInput!) {\n addTagsToSessionAttributes(input: $input)\n}\n ";
1472
1513
  export declare const RemoveTagsFromSessionAttributesDocument = "\n mutation removeTagsFromSessionAttributes($input: RemoveTagsFromSessionAttributesInput!) {\n removeTagsFromSessionAttributes(input: $input)\n}\n ";
1473
- export declare const GetStateMachineDocument = "\n query getStateMachine($id: ID!, $versionId: ID!) {\n getStateMachineConfig(id: $id, versionId: $versionId) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1514
+ export declare const GetStateMachineDocument = "\n query getStateMachine($id: ID!, $versionId: ID!) {\n getStateMachineConfig(id: $id, versionId: $versionId) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1474
1515
  export declare const CountLiveStateMachineConfigsDocument = "\n query countLiveStateMachineConfigs {\n countLiveStateMachineConfigs\n}\n ";
1475
- export declare const ListLiveStateMachineConfigsDocument = "\n query listLiveStateMachineConfigs($createdByAppId: ID, $next: Base64) {\n listLiveStateMachineConfigs(createdByAppId: $createdByAppId, next: $next) {\n ...stateMachineConfigConnection\n }\n}\n \n fragment stateMachineConfigConnection on StateMachineConfigConnection {\n nodes {\n ...stateMachineConfig\n }\n pageInfo {\n hasNext\n next\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1476
- export declare const ListDraftStateMachineConfigsDocument = "\n query listDraftStateMachineConfigs($createdByAppId: ID, $next: Base64) {\n listDraftStateMachineConfigs(createdByAppId: $createdByAppId, next: $next) {\n ...stateMachineConfigConnection\n }\n}\n \n fragment stateMachineConfigConnection on StateMachineConfigConnection {\n nodes {\n ...stateMachineConfig\n }\n pageInfo {\n hasNext\n next\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1477
- export declare const ListStateMachineConfigVersionsDocument = "\n query listStateMachineConfigVersions($id: ID!) {\n listStateMachineConfigVersions(id: $id) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1516
+ export declare const ListLiveStateMachineConfigsDocument = "\n query listLiveStateMachineConfigs($createdByAppId: ID, $next: Base64) {\n listLiveStateMachineConfigs(createdByAppId: $createdByAppId, next: $next) {\n ...stateMachineConfigConnection\n }\n}\n \n fragment stateMachineConfigConnection on StateMachineConfigConnection {\n nodes {\n ...stateMachineConfig\n }\n pageInfo {\n hasNext\n next\n }\n}\n \n\n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1517
+ export declare const ListDraftStateMachineConfigsDocument = "\n query listDraftStateMachineConfigs($createdByAppId: ID, $next: Base64) {\n listDraftStateMachineConfigs(createdByAppId: $createdByAppId, next: $next) {\n ...stateMachineConfigConnection\n }\n}\n \n fragment stateMachineConfigConnection on StateMachineConfigConnection {\n nodes {\n ...stateMachineConfig\n }\n pageInfo {\n hasNext\n next\n }\n}\n \n\n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1518
+ export declare const ListStateMachineConfigVersionsDocument = "\n query listStateMachineConfigVersions($id: ID!) {\n listStateMachineConfigVersions(id: $id) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1478
1519
  export declare const GetXStateMachineConfigDocument = "\n query getXStateMachineConfig($id: ID!, $versionId: ID!) {\n getXStateMachineConfig(id: $id, versionId: $versionId)\n}\n ";
1479
1520
  export declare const IsAppInstanceInUseDocument = "\n query isAppInstanceInUse($drn: DRN!) {\n isAppInstanceInUse(drn: $drn)\n}\n ";
1480
- export declare const CreateStateMachineConfigDocument = "\n mutation createStateMachineConfig($input: CreateStateMachineConfigInput!) {\n createStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1481
- export declare const UpdateStateMachineConfigDocument = "\n mutation updateStateMachineConfig($input: UpdateStateMachineConfigInput!) {\n updateStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1482
- export declare const RemoveStateMachineConfigDocument = "\n mutation removeStateMachineConfig($input: RemoveStateMachineConfigInput!) {\n removeStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1483
- export declare const EditStateMachineConfigDocument = "\n mutation editStateMachineConfig($input: EditStateMachineConfigInput!) {\n editStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1484
- export declare const PublishStateMachineConfigDocument = "\n mutation publishStateMachineConfig($input: PublishStateMachineConfigInput!) {\n publishStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1485
- export declare const CreateStateMachineConfigStateDocument = "\n mutation createStateMachineConfigState($input: CreateStateMachineConfigStateInput!) {\n createStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1486
- export declare const UpdateStateMachineConfigStateDocument = "\n mutation updateStateMachineConfigState($input: UpdateStateMachineConfigStateInput!) {\n updateStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1487
- export declare const RemoveStateMachineConfigStateDocument = "\n mutation removeStateMachineConfigState($input: RemoveStateMachineConfigStateInput!) {\n removeStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1521
+ export declare const CreateStateMachineConfigDocument = "\n mutation createStateMachineConfig($input: CreateStateMachineConfigInput!) {\n createStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1522
+ export declare const UpdateStateMachineConfigDocument = "\n mutation updateStateMachineConfig($input: UpdateStateMachineConfigInput!) {\n updateStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1523
+ export declare const RemoveStateMachineConfigDocument = "\n mutation removeStateMachineConfig($input: RemoveStateMachineConfigInput!) {\n removeStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1524
+ export declare const EditStateMachineConfigDocument = "\n mutation editStateMachineConfig($input: EditStateMachineConfigInput!) {\n editStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1525
+ export declare const PublishStateMachineConfigDocument = "\n mutation publishStateMachineConfig($input: PublishStateMachineConfigInput!) {\n publishStateMachineConfig(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1526
+ export declare const CreateStateMachineConfigStateDocument = "\n mutation createStateMachineConfigState($input: CreateStateMachineConfigStateInput!) {\n createStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1527
+ export declare const UpdateStateMachineConfigStateDocument = "\n mutation updateStateMachineConfigState($input: UpdateStateMachineConfigStateInput!) {\n updateStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1528
+ export declare const RemoveStateMachineConfigStateDocument = "\n mutation removeStateMachineConfigState($input: RemoveStateMachineConfigStateInput!) {\n removeStateMachineConfigState(input: $input) {\n ...stateMachineConfig\n }\n}\n \n fragment stateMachineConfig on StateMachineConfig {\n id\n versionId\n stateMachineId\n title\n description\n status\n triggers\n states {\n ...stateMachineConfigState\n }\n createdAt\n updatedAt\n}\n \n\n fragment stateMachineConfigState on StateMachineConfigState {\n stateId\n on {\n ...stateMachineConfigStateOn\n }\n meta\n}\n \n\n fragment stateMachineConfigStateOn on StateMachineConfigStatesOn {\n event\n target\n}\n ";
1488
1529
  export declare const GetStorageDocument = "\n query getStorage($id: ID!) {\n getStorage(id: $id) {\n ...storage\n }\n}\n \n fragment storage on Storage {\n key\n versionId\n name\n contentType\n size\n eTag\n cdnUrl\n createdAt\n updatedAt\n}\n ";
1489
1530
  export declare const CreatePresignedUploadUrlDocument = "\n mutation createPresignedUploadUrl($input: CreatePresignedUploadUrlInput!) {\n createPresignedUploadUrl(input: $input) {\n method\n url\n fields\n cdnUrl\n }\n}\n ";
1490
1531
  export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterableIterator<R>;
1491
1532
  export declare function getSdk<C>(requester: Requester<C>): {
1492
1533
  getMe(variables?: GetMeQueryVariables, options?: C): Promise<GetMeQuery>;
1493
1534
  getAgent(variables: GetAgentQueryVariables, options?: C): Promise<GetAgentQuery>;
1535
+ getAgents(variables: GetAgentsQueryVariables, options?: C): Promise<GetAgentsQuery>;
1494
1536
  listAgents(variables?: ListAgentsQueryVariables, options?: C): Promise<ListAgentsQuery>;
1495
1537
  listApiKeyAgents(variables?: ListApiKeyAgentsQueryVariables, options?: C): Promise<ListApiKeyAgentsQuery>;
1496
1538
  updateMyProfile(variables: UpdateMyProfileMutationVariables, options?: C): Promise<UpdateMyProfileMutation>;