@caido/sdk-frontend 0.41.1-beta.2 → 0.41.1-beta.4

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.
@@ -990,8 +990,10 @@ export type DeleteUpstreamProxyHttpPayload = {
990
990
  export type DeleteUpstreamProxySocksPayload = {
991
991
  deletedId?: Maybe<Scalars["ID"]["output"]>;
992
992
  };
993
+ export type DeleteWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError;
993
994
  export type DeleteWorkflowPayload = {
994
995
  deletedId?: Maybe<Scalars["ID"]["output"]>;
996
+ error?: Maybe<DeleteWorkflowError>;
995
997
  };
996
998
  export type DeletedAssistantSessionPayload = {
997
999
  deletedSessionId: Scalars["ID"]["output"];
@@ -1198,7 +1200,7 @@ export type GlobalConfig = {
1198
1200
  address: Scalars["String"]["output"];
1199
1201
  onboarding: OnboardingState;
1200
1202
  };
1201
- export type GlobalizeWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
1203
+ export type GlobalizeWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
1202
1204
  export type GlobalizeWorkflowPayload = {
1203
1205
  error?: Maybe<GlobalizeWorkflowError>;
1204
1206
  workflow?: Maybe<Workflow>;
@@ -1345,7 +1347,7 @@ export type InvalidRegexUserError = UserError & {
1345
1347
  code: Scalars["String"]["output"];
1346
1348
  term: Scalars["String"]["output"];
1347
1349
  };
1348
- export type LocalizeWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
1350
+ export type LocalizeWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
1349
1351
  export type LocalizeWorkflowPayload = {
1350
1352
  error?: Maybe<LocalizeWorkflowError>;
1351
1353
  workflow?: Maybe<Workflow>;
@@ -1922,6 +1924,14 @@ export type PluginUserError = UserError & {
1922
1924
  code: Scalars["String"]["output"];
1923
1925
  reason: PluginErrorReason;
1924
1926
  };
1927
+ export type PluginWorkflow = Plugin & {
1928
+ enabled: Scalars["Boolean"]["output"];
1929
+ id: Scalars["ID"]["output"];
1930
+ manifestId: Scalars["ID"]["output"];
1931
+ name?: Maybe<Scalars["String"]["output"]>;
1932
+ package: PluginPackage;
1933
+ workflow?: Maybe<Workflow>;
1934
+ };
1925
1935
  export type Project = {
1926
1936
  backups: Array<Backup>;
1927
1937
  createdAt: Scalars["DateTime"]["output"];
@@ -2220,6 +2230,9 @@ export type RankUpstreamProxySocksInput = {
2220
2230
  export type RankUpstreamProxySocksPayload = {
2221
2231
  proxy?: Maybe<UpstreamProxySocks>;
2222
2232
  };
2233
+ export type ReadOnlyUserError = UserError & {
2234
+ code: Scalars["String"]["output"];
2235
+ };
2223
2236
  export type RefreshAuthenticationTokenError = AuthenticationUserError | OtherUserError;
2224
2237
  export type RefreshAuthenticationTokenPayload = {
2225
2238
  error?: Maybe<RefreshAuthenticationTokenError>;
@@ -2273,7 +2286,7 @@ export type RenameTamperRuleCollectionPayload = {
2273
2286
  export type RenameTamperRulePayload = {
2274
2287
  rule?: Maybe<TamperRule>;
2275
2288
  };
2276
- export type RenameWorkflowError = OtherUserError | UnknownIdUserError;
2289
+ export type RenameWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError;
2277
2290
  export type RenameWorkflowPayload = {
2278
2291
  error?: Maybe<RenameWorkflowError>;
2279
2292
  workflow?: Maybe<Workflow>;
@@ -3177,7 +3190,7 @@ export type UpdateViewerSettingsInput = {
3177
3190
  export type UpdateViewerSettingsPayload = {
3178
3191
  settings?: Maybe<UserSettings>;
3179
3192
  };
3180
- export type UpdateWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
3193
+ export type UpdateWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
3181
3194
  export type UpdateWorkflowInput = {
3182
3195
  definition: Scalars["JsonObject"]["input"];
3183
3196
  };
@@ -3386,6 +3399,7 @@ export type Workflow = {
3386
3399
  id: Scalars["ID"]["output"];
3387
3400
  kind: WorkflowKind;
3388
3401
  name: Scalars["String"]["output"];
3402
+ readOnly: Scalars["Boolean"]["output"];
3389
3403
  updatedAt: Scalars["DateTime"]["output"];
3390
3404
  };
3391
3405
  /** An edge in a connection. */
@@ -3419,7 +3433,7 @@ export type WorkflowTask = Task & {
3419
3433
  export type WorkflowUserError = UserError & {
3420
3434
  code: Scalars["String"]["output"];
3421
3435
  message: Scalars["String"]["output"];
3422
- nodeId?: Maybe<Scalars["ID"]["output"]>;
3436
+ node?: Maybe<Scalars["String"]["output"]>;
3423
3437
  reason: WorkflowErrorReason;
3424
3438
  };
3425
3439
  export type AssistantMessageFullFragment = {
@@ -4202,9 +4216,13 @@ export type AssistantUserErrorFullFragment = {
4202
4216
  code: string;
4203
4217
  assistantReason: AssistantErrorReason;
4204
4218
  };
4219
+ export type ReadOnlyUserErrorFullFragment = {
4220
+ __typename: "ReadOnlyUserError";
4221
+ code: string;
4222
+ };
4205
4223
  export type WorkflowUserErrorFullFragment = {
4206
4224
  __typename: "WorkflowUserError";
4207
- nodeId?: string | undefined | null;
4225
+ node?: string | undefined | null;
4208
4226
  message: string;
4209
4227
  reason: WorkflowErrorReason;
4210
4228
  code: string;
@@ -4270,6 +4288,10 @@ type UserErrorFull_ProjectLockedUserError_Fragment = {
4270
4288
  __typename: "ProjectLockedUserError";
4271
4289
  code: string;
4272
4290
  };
4291
+ type UserErrorFull_ReadOnlyUserError_Fragment = {
4292
+ __typename: "ReadOnlyUserError";
4293
+ code: string;
4294
+ };
4273
4295
  type UserErrorFull_RenderFailedUserError_Fragment = {
4274
4296
  __typename: "RenderFailedUserError";
4275
4297
  code: string;
@@ -4294,7 +4316,7 @@ type UserErrorFull_WorkflowUserError_Fragment = {
4294
4316
  __typename: "WorkflowUserError";
4295
4317
  code: string;
4296
4318
  };
4297
- export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
4319
+ export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_ReadOnlyUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
4298
4320
  export type InvalidHttpqlUserErrorFullFragment = {
4299
4321
  __typename: "InvalidHTTPQLUserError";
4300
4322
  query: string;
@@ -4860,7 +4882,17 @@ type PluginMeta_PluginFrontend_Fragment = {
4860
4882
  id: string;
4861
4883
  };
4862
4884
  };
4863
- export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment;
4885
+ type PluginMeta_PluginWorkflow_Fragment = {
4886
+ __typename: "PluginWorkflow";
4887
+ id: string;
4888
+ name?: string | undefined | null;
4889
+ enabled: boolean;
4890
+ manifestId: string;
4891
+ package: {
4892
+ id: string;
4893
+ };
4894
+ };
4895
+ export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
4864
4896
  export type PluginBackendMetaFragment = {
4865
4897
  __typename: "PluginBackend";
4866
4898
  id: string;
@@ -4897,6 +4929,25 @@ export type PluginFrontendFullFragment = {
4897
4929
  id: string;
4898
4930
  };
4899
4931
  };
4932
+ export type PluginWorkflowFullFragment = {
4933
+ __typename: "PluginWorkflow";
4934
+ name?: string | undefined | null;
4935
+ id: string;
4936
+ enabled: boolean;
4937
+ manifestId: string;
4938
+ workflow?: {
4939
+ __typename: "Workflow";
4940
+ id: string;
4941
+ kind: WorkflowKind;
4942
+ name: string;
4943
+ enabled: boolean;
4944
+ global: boolean;
4945
+ readOnly: boolean;
4946
+ } | undefined | null;
4947
+ package: {
4948
+ id: string;
4949
+ };
4950
+ };
4900
4951
  export type PluginAuthorFullFragment = {
4901
4952
  name?: string | undefined | null;
4902
4953
  email?: string | undefined | null;
@@ -4952,6 +5003,24 @@ export type PluginPackageFullFragment = {
4952
5003
  package: {
4953
5004
  id: string;
4954
5005
  };
5006
+ } | {
5007
+ __typename: "PluginWorkflow";
5008
+ name?: string | undefined | null;
5009
+ id: string;
5010
+ enabled: boolean;
5011
+ manifestId: string;
5012
+ workflow?: {
5013
+ __typename: "Workflow";
5014
+ id: string;
5015
+ kind: WorkflowKind;
5016
+ name: string;
5017
+ enabled: boolean;
5018
+ global: boolean;
5019
+ readOnly: boolean;
5020
+ } | undefined | null;
5021
+ package: {
5022
+ id: string;
5023
+ };
4955
5024
  }>;
4956
5025
  author?: {
4957
5026
  name?: string | undefined | null;
@@ -5927,6 +5996,7 @@ export type WorkflowMetaFragment = {
5927
5996
  name: string;
5928
5997
  enabled: boolean;
5929
5998
  global: boolean;
5999
+ readOnly: boolean;
5930
6000
  };
5931
6001
  export type WorkflowFullFragment = {
5932
6002
  __typename: "Workflow";
@@ -5936,6 +6006,7 @@ export type WorkflowFullFragment = {
5936
6006
  name: string;
5937
6007
  enabled: boolean;
5938
6008
  global: boolean;
6009
+ readOnly: boolean;
5939
6010
  };
5940
6011
  export type WorkflowNodeDefinitionFullFragment = {
5941
6012
  __typename: "WorkflowNodeDefinition";
@@ -5952,6 +6023,7 @@ export type WorkflowTaskMetaFragment = {
5952
6023
  name: string;
5953
6024
  enabled: boolean;
5954
6025
  global: boolean;
6026
+ readOnly: boolean;
5955
6027
  };
5956
6028
  };
5957
6029
  export type SendAssistantMessageMutationVariables = Exact<{
@@ -7183,6 +7255,24 @@ export type InstallPluginPackageMutation = {
7183
7255
  package: {
7184
7256
  id: string;
7185
7257
  };
7258
+ } | {
7259
+ __typename: "PluginWorkflow";
7260
+ name?: string | undefined | null;
7261
+ id: string;
7262
+ enabled: boolean;
7263
+ manifestId: string;
7264
+ workflow?: {
7265
+ __typename: "Workflow";
7266
+ id: string;
7267
+ kind: WorkflowKind;
7268
+ name: string;
7269
+ enabled: boolean;
7270
+ global: boolean;
7271
+ readOnly: boolean;
7272
+ } | undefined | null;
7273
+ package: {
7274
+ id: string;
7275
+ };
7186
7276
  }>;
7187
7277
  author?: {
7188
7278
  name?: string | undefined | null;
@@ -7256,6 +7346,24 @@ export type TogglePluginMutation = {
7256
7346
  package: {
7257
7347
  id: string;
7258
7348
  };
7349
+ } | {
7350
+ __typename: "PluginWorkflow";
7351
+ name?: string | undefined | null;
7352
+ id: string;
7353
+ enabled: boolean;
7354
+ manifestId: string;
7355
+ workflow?: {
7356
+ __typename: "Workflow";
7357
+ id: string;
7358
+ kind: WorkflowKind;
7359
+ name: string;
7360
+ enabled: boolean;
7361
+ global: boolean;
7362
+ readOnly: boolean;
7363
+ } | undefined | null;
7364
+ package: {
7365
+ id: string;
7366
+ };
7259
7367
  } | undefined | null;
7260
7368
  error?: {
7261
7369
  __typename: "OtherUserError";
@@ -7307,6 +7415,24 @@ export type SetPluginDataMutation = {
7307
7415
  package: {
7308
7416
  id: string;
7309
7417
  };
7418
+ } | {
7419
+ __typename: "PluginWorkflow";
7420
+ name?: string | undefined | null;
7421
+ id: string;
7422
+ enabled: boolean;
7423
+ manifestId: string;
7424
+ workflow?: {
7425
+ __typename: "Workflow";
7426
+ id: string;
7427
+ kind: WorkflowKind;
7428
+ name: string;
7429
+ enabled: boolean;
7430
+ global: boolean;
7431
+ readOnly: boolean;
7432
+ } | undefined | null;
7433
+ package: {
7434
+ id: string;
7435
+ };
7310
7436
  } | undefined | null;
7311
7437
  error?: {
7312
7438
  __typename: "OtherUserError";
@@ -8964,7 +9090,7 @@ export type CreateWorkflowMutation = {
8964
9090
  code: string;
8965
9091
  } | {
8966
9092
  __typename: "WorkflowUserError";
8967
- nodeId?: string | undefined | null;
9093
+ node?: string | undefined | null;
8968
9094
  message: string;
8969
9095
  reason: WorkflowErrorReason;
8970
9096
  code: string;
@@ -8977,6 +9103,7 @@ export type CreateWorkflowMutation = {
8977
9103
  name: string;
8978
9104
  enabled: boolean;
8979
9105
  global: boolean;
9106
+ readOnly: boolean;
8980
9107
  } | undefined | null;
8981
9108
  };
8982
9109
  };
@@ -8986,6 +9113,17 @@ export type DeleteWorkflowMutationVariables = Exact<{
8986
9113
  export type DeleteWorkflowMutation = {
8987
9114
  deleteWorkflow: {
8988
9115
  deletedId?: string | undefined | null;
9116
+ error?: {
9117
+ __typename: "OtherUserError";
9118
+ code: string;
9119
+ } | {
9120
+ __typename: "ReadOnlyUserError";
9121
+ code: string;
9122
+ } | {
9123
+ __typename: "UnknownIdUserError";
9124
+ id: string;
9125
+ code: string;
9126
+ } | undefined | null;
8989
9127
  };
8990
9128
  };
8991
9129
  export type ToggleWorkflowMutationVariables = Exact<{
@@ -9010,6 +9148,7 @@ export type ToggleWorkflowMutation = {
9010
9148
  name: string;
9011
9149
  enabled: boolean;
9012
9150
  global: boolean;
9151
+ readOnly: boolean;
9013
9152
  } | undefined | null;
9014
9153
  };
9015
9154
  };
@@ -9022,6 +9161,9 @@ export type RenameWorkflowMutation = {
9022
9161
  error?: {
9023
9162
  __typename: "OtherUserError";
9024
9163
  code: string;
9164
+ } | {
9165
+ __typename: "ReadOnlyUserError";
9166
+ code: string;
9025
9167
  } | {
9026
9168
  __typename: "UnknownIdUserError";
9027
9169
  id: string;
@@ -9035,6 +9177,7 @@ export type RenameWorkflowMutation = {
9035
9177
  name: string;
9036
9178
  enabled: boolean;
9037
9179
  global: boolean;
9180
+ readOnly: boolean;
9038
9181
  } | undefined | null;
9039
9182
  };
9040
9183
  };
@@ -9047,13 +9190,16 @@ export type UpdateWorkflowMutation = {
9047
9190
  error?: {
9048
9191
  __typename: "OtherUserError";
9049
9192
  code: string;
9193
+ } | {
9194
+ __typename: "ReadOnlyUserError";
9195
+ code: string;
9050
9196
  } | {
9051
9197
  __typename: "UnknownIdUserError";
9052
9198
  id: string;
9053
9199
  code: string;
9054
9200
  } | {
9055
9201
  __typename: "WorkflowUserError";
9056
- nodeId?: string | undefined | null;
9202
+ node?: string | undefined | null;
9057
9203
  message: string;
9058
9204
  reason: WorkflowErrorReason;
9059
9205
  code: string;
@@ -9066,6 +9212,7 @@ export type UpdateWorkflowMutation = {
9066
9212
  name: string;
9067
9213
  enabled: boolean;
9068
9214
  global: boolean;
9215
+ readOnly: boolean;
9069
9216
  } | undefined | null;
9070
9217
  };
9071
9218
  };
@@ -9085,7 +9232,7 @@ export type RunConvertWorkflowMutation = {
9085
9232
  permissionDeniedReason: PermissionDeniedErrorReason;
9086
9233
  } | {
9087
9234
  __typename: "WorkflowUserError";
9088
- nodeId?: string | undefined | null;
9235
+ node?: string | undefined | null;
9089
9236
  message: string;
9090
9237
  reason: WorkflowErrorReason;
9091
9238
  code: string;
@@ -9121,6 +9268,7 @@ export type RunActiveWorkflowMutation = {
9121
9268
  name: string;
9122
9269
  enabled: boolean;
9123
9270
  global: boolean;
9271
+ readOnly: boolean;
9124
9272
  };
9125
9273
  } | undefined | null;
9126
9274
  };
@@ -9133,13 +9281,16 @@ export type GlobalizeWorkflowMutation = {
9133
9281
  error?: {
9134
9282
  __typename: "OtherUserError";
9135
9283
  code: string;
9284
+ } | {
9285
+ __typename: "ReadOnlyUserError";
9286
+ code: string;
9136
9287
  } | {
9137
9288
  __typename: "UnknownIdUserError";
9138
9289
  id: string;
9139
9290
  code: string;
9140
9291
  } | {
9141
9292
  __typename: "WorkflowUserError";
9142
- nodeId?: string | undefined | null;
9293
+ node?: string | undefined | null;
9143
9294
  message: string;
9144
9295
  reason: WorkflowErrorReason;
9145
9296
  code: string;
@@ -9152,6 +9303,7 @@ export type GlobalizeWorkflowMutation = {
9152
9303
  name: string;
9153
9304
  enabled: boolean;
9154
9305
  global: boolean;
9306
+ readOnly: boolean;
9155
9307
  } | undefined | null;
9156
9308
  };
9157
9309
  };
@@ -9163,13 +9315,16 @@ export type LocalizeWorkflowMutation = {
9163
9315
  error?: {
9164
9316
  __typename: "OtherUserError";
9165
9317
  code: string;
9318
+ } | {
9319
+ __typename: "ReadOnlyUserError";
9320
+ code: string;
9166
9321
  } | {
9167
9322
  __typename: "UnknownIdUserError";
9168
9323
  id: string;
9169
9324
  code: string;
9170
9325
  } | {
9171
9326
  __typename: "WorkflowUserError";
9172
- nodeId?: string | undefined | null;
9327
+ node?: string | undefined | null;
9173
9328
  message: string;
9174
9329
  reason: WorkflowErrorReason;
9175
9330
  code: string;
@@ -9182,6 +9337,7 @@ export type LocalizeWorkflowMutation = {
9182
9337
  name: string;
9183
9338
  enabled: boolean;
9184
9339
  global: boolean;
9340
+ readOnly: boolean;
9185
9341
  } | undefined | null;
9186
9342
  };
9187
9343
  };
@@ -10630,6 +10786,24 @@ export type PluginPackagesQuery = {
10630
10786
  package: {
10631
10787
  id: string;
10632
10788
  };
10789
+ } | {
10790
+ __typename: "PluginWorkflow";
10791
+ name?: string | undefined | null;
10792
+ id: string;
10793
+ enabled: boolean;
10794
+ manifestId: string;
10795
+ workflow?: {
10796
+ __typename: "Workflow";
10797
+ id: string;
10798
+ kind: WorkflowKind;
10799
+ name: string;
10800
+ enabled: boolean;
10801
+ global: boolean;
10802
+ readOnly: boolean;
10803
+ } | undefined | null;
10804
+ package: {
10805
+ id: string;
10806
+ };
10633
10807
  }>;
10634
10808
  author?: {
10635
10809
  name?: string | undefined | null;
@@ -11998,6 +12172,7 @@ export type GetTasksQuery = {
11998
12172
  name: string;
11999
12173
  enabled: boolean;
12000
12174
  global: boolean;
12175
+ readOnly: boolean;
12001
12176
  };
12002
12177
  }>;
12003
12178
  };
@@ -12097,6 +12272,7 @@ export type WorkflowQuery = {
12097
12272
  name: string;
12098
12273
  enabled: boolean;
12099
12274
  global: boolean;
12275
+ readOnly: boolean;
12100
12276
  } | undefined | null;
12101
12277
  };
12102
12278
  export type WorkflowsQueryVariables = Exact<{
@@ -12111,6 +12287,7 @@ export type WorkflowsQuery = {
12111
12287
  name: string;
12112
12288
  enabled: boolean;
12113
12289
  global: boolean;
12290
+ readOnly: boolean;
12114
12291
  }>;
12115
12292
  };
12116
12293
  export type WorkflowNodeDefinitionsQueryVariables = Exact<{
@@ -13104,6 +13281,24 @@ export type CreatedPluginPackageSubscription = {
13104
13281
  package: {
13105
13282
  id: string;
13106
13283
  };
13284
+ } | {
13285
+ __typename: "PluginWorkflow";
13286
+ name?: string | undefined | null;
13287
+ id: string;
13288
+ enabled: boolean;
13289
+ manifestId: string;
13290
+ workflow?: {
13291
+ __typename: "Workflow";
13292
+ id: string;
13293
+ kind: WorkflowKind;
13294
+ name: string;
13295
+ enabled: boolean;
13296
+ global: boolean;
13297
+ readOnly: boolean;
13298
+ } | undefined | null;
13299
+ package: {
13300
+ id: string;
13301
+ };
13107
13302
  }>;
13108
13303
  author?: {
13109
13304
  name?: string | undefined | null;
@@ -13156,6 +13351,24 @@ export type UpdatedPluginSubscription = {
13156
13351
  package: {
13157
13352
  id: string;
13158
13353
  };
13354
+ } | {
13355
+ __typename: "PluginWorkflow";
13356
+ name?: string | undefined | null;
13357
+ id: string;
13358
+ enabled: boolean;
13359
+ manifestId: string;
13360
+ workflow?: {
13361
+ __typename: "Workflow";
13362
+ id: string;
13363
+ kind: WorkflowKind;
13364
+ name: string;
13365
+ enabled: boolean;
13366
+ global: boolean;
13367
+ readOnly: boolean;
13368
+ } | undefined | null;
13369
+ package: {
13370
+ id: string;
13371
+ };
13159
13372
  };
13160
13373
  };
13161
13374
  };
@@ -13715,6 +13928,7 @@ export type StartedTaskSubscription = {
13715
13928
  name: string;
13716
13929
  enabled: boolean;
13717
13930
  global: boolean;
13931
+ readOnly: boolean;
13718
13932
  };
13719
13933
  };
13720
13934
  };
@@ -13784,6 +13998,7 @@ export type FinishedTaskSubscription = {
13784
13998
  name: string;
13785
13999
  enabled: boolean;
13786
14000
  global: boolean;
14001
+ readOnly: boolean;
13787
14002
  };
13788
14003
  };
13789
14004
  error?: {
@@ -13826,6 +14041,8 @@ export type FinishedTaskSubscription = {
13826
14041
  code: string;
13827
14042
  } | {
13828
14043
  code: string;
14044
+ } | {
14045
+ code: string;
13829
14046
  } | undefined | null;
13830
14047
  };
13831
14048
  };
@@ -13966,6 +14183,7 @@ export type CreatedWorkflowSubscription = {
13966
14183
  name: string;
13967
14184
  enabled: boolean;
13968
14185
  global: boolean;
14186
+ readOnly: boolean;
13969
14187
  };
13970
14188
  };
13971
14189
  };
@@ -13993,6 +14211,7 @@ export type UpdatedWorkflowSubscription = {
13993
14211
  name: string;
13994
14212
  enabled: boolean;
13995
14213
  global: boolean;
14214
+ readOnly: boolean;
13996
14215
  };
13997
14216
  };
13998
14217
  };
@@ -14058,7 +14277,8 @@ export declare const TaskInProgressUserErrorFullFragmentDoc = "\n fragment ta
14058
14277
  export declare const UnknownIdUserErrorFullFragmentDoc = "\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
14059
14278
  export declare const UnsupportedPlatformUserErrorFullFragmentDoc = "\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n ";
14060
14279
  export declare const PermissionDeniedUserErrorFullFragmentDoc = "\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
14061
- export declare const WorkflowUserErrorFullFragmentDoc = "\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n ";
14280
+ export declare const ReadOnlyUserErrorFullFragmentDoc = "\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n ";
14281
+ export declare const WorkflowUserErrorFullFragmentDoc = "\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n ";
14062
14282
  export declare const InvalidGlobTermsUserErrorFullFragmentDoc = "\n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n ";
14063
14283
  export declare const InvalidHttpqlUserErrorFullFragmentDoc = "\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n ";
14064
14284
  export declare const PluginUserErrorFullFragmentDoc = "\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
@@ -14094,7 +14314,9 @@ export declare const PluginMetaFragmentDoc = "\n fragment pluginMeta on Plugi
14094
14314
  export declare const PluginBackendMetaFragmentDoc = "\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n ";
14095
14315
  export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n ";
14096
14316
  export declare const PluginBackendFullFragmentDoc = "\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
14097
- export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n ";
14317
+ export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14318
+ export declare const PluginWorkflowFullFragmentDoc = "\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n ";
14319
+ export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n ";
14098
14320
  export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n license\n manifestId\n name\n repository\n version\n}\n ";
14099
14321
  export declare const ReplayEntryMetaFragmentDoc = "\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n ";
14100
14322
  export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
@@ -14129,7 +14351,6 @@ export declare const UpstreamProxyHttpFullFragmentDoc = "\n fragment upstream
14129
14351
  export declare const UpstreamProxySocksFullFragmentDoc = "\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
14130
14352
  export declare const UserProfileFullFragmentDoc = "\n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
14131
14353
  export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
14132
- export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14133
14354
  export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
14134
14355
  export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
14135
14356
  export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
@@ -14179,10 +14400,10 @@ export declare const DropInterceptMesageDocument = "\n mutation dropIntercept
14179
14400
  export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
14180
14401
  export declare const PauseInterceptDocument = "\n mutation pauseIntercept {\n pauseIntercept {\n status\n }\n}\n ";
14181
14402
  export declare const ResumeInterceptDocument = "\n mutation resumeIntercept {\n resumeIntercept {\n status\n }\n}\n ";
14182
- export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
14403
+ export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
14183
14404
  export declare const UninstallPluginPackageDocument = "\n mutation uninstallPluginPackage($id: ID!) {\n uninstallPluginPackage(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
14184
- export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
14185
- export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
14405
+ export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
14406
+ export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
14186
14407
  export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14187
14408
  export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
14188
14409
  export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n }\n}\n ";
@@ -14226,15 +14447,15 @@ export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUp
14226
14447
  export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
14227
14448
  export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankUpstreamProxySocksInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14228
14449
  export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
14229
- export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14230
- export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n }\n}\n ";
14231
- export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id: ID!, $enabled: Boolean!) {\n toggleWorkflow(id: $id, enabled: $enabled) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14232
- export declare const RenameWorkflowDocument = "\n mutation renameWorkflow($id: ID!, $name: String!) {\n renameWorkflow(id: $id, name: $name) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14233
- export declare const UpdateWorkflowDocument = "\n mutation updateWorkflow($id: ID!, $input: UpdateWorkflowInput!) {\n updateWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14234
- export declare const RunConvertWorkflowDocument = "\n mutation runConvertWorkflow($id: ID!, $input: Blob!) {\n runConvertWorkflow(id: $id, input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n output\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14235
- export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14236
- export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14237
- export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14450
+ export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14451
+ export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14452
+ export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id: ID!, $enabled: Boolean!) {\n toggleWorkflow(id: $id, enabled: $enabled) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14453
+ export declare const RenameWorkflowDocument = "\n mutation renameWorkflow($id: ID!, $name: String!) {\n renameWorkflow(id: $id, name: $name) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14454
+ export declare const UpdateWorkflowDocument = "\n mutation updateWorkflow($id: ID!, $input: UpdateWorkflowInput!) {\n updateWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14455
+ export declare const RunConvertWorkflowDocument = "\n mutation runConvertWorkflow($id: ID!, $input: Blob!) {\n runConvertWorkflow(id: $id, input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n output\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14456
+ export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14457
+ export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14458
+ export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14238
14459
  export declare const AssistantModelsDocument = "\n query assistantModels {\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
14239
14460
  export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
14240
14461
  export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
@@ -14271,7 +14492,7 @@ export declare const InterceptRequestMessagesDocument = "\n query interceptRe
14271
14492
  export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
14272
14493
  export declare const InterceptOptionsDocument = "\n query interceptOptions {\n interceptOptions {\n ...interceptOptionsMeta\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
14273
14494
  export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
14274
- export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
14495
+ export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14275
14496
  export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n license\n manifestId\n name\n repository\n version\n}\n ";
14276
14497
  export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
14277
14498
  export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
@@ -14301,12 +14522,12 @@ export declare const WebsocketMessagesByOffsetDocument = "\n query websocketM
14301
14522
  export declare const WebsocketMessageCountDocument = "\n query websocketMessageCount($streamId: ID!) {\n streamWsMessages(first: 0, streamId: $streamId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
14302
14523
  export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...streamWsMessageFull\n }\n}\n \n fragment streamWsMessageFull on StreamWsMessage {\n ...streamWsMessageMeta\n raw\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n length\n createdAt\n direction\n edited\n alteration\n format\n streamId\n}\n ";
14303
14524
  export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n nodes {\n ...tamperRuleCollectionFull\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
14304
- export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14525
+ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14305
14526
  export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
14306
14527
  export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n id\n profile {\n ...userProfileFull\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
14307
14528
  export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n id\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
14308
- export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14309
- export declare const WorkflowsDocument = "\n query workflows {\n workflows {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14529
+ export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14530
+ export declare const WorkflowsDocument = "\n query workflows {\n workflows {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14310
14531
  export declare const WorkflowNodeDefinitionsDocument = "\n query workflowNodeDefinitions {\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\n }\n}\n \n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
14311
14532
  export declare const CreatedAssistantMessageDocument = "\n subscription createdAssistantMessage {\n createdAssistantMessage {\n messageEdge {\n cursor\n node {\n ...assistantMessageFull\n }\n }\n snapshot\n }\n}\n \n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
14312
14533
  export declare const CreatedAssistantMessageTaskDocument = "\n subscription createdAssistantMessageTask {\n createdAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
@@ -14345,9 +14566,9 @@ export declare const UpdatedDeleteInterceptEntriesTaskDocument = "\n subscrip
14345
14566
  export declare const FinishedDeleteInterceptEntriesTaskDocument = "\n subscription finishedDeleteInterceptEntriesTask {\n finishedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error {\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14346
14567
  export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
14347
14568
  export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
14348
- export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
14569
+ export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14349
14570
  export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
14350
- export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
14571
+ export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14351
14572
  export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
14352
14573
  export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
14353
14574
  export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
@@ -14362,17 +14583,17 @@ export declare const CreatedSitemapEntryDocument = "\n subscription createdSi
14362
14583
  export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
14363
14584
  export declare const CreatedWsStreamDocument = "\n subscription createdWsStream($scopeId: ID, $order: StreamOrderInput!) {\n createdStream(protocol: WS, scopeId: $scopeId) {\n snapshot\n streamEdge(order: $order) {\n ...streamEdgeMeta\n }\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n ";
14364
14585
  export declare const CreatedStreamWsMessageDocument = "\n subscription createdStreamWsMessage($order: StreamWsMessageOrderInput!) {\n createdStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n length\n createdAt\n direction\n edited\n alteration\n format\n streamId\n}\n ";
14365
- export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
14366
- export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
14586
+ export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
14587
+ export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
14367
14588
  export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14368
14589
  export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14369
14590
  export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
14370
14591
  export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14371
14592
  export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14372
14593
  export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
14373
- export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14594
+ export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14374
14595
  export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
14375
- export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
14596
+ export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14376
14597
  export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
14377
14598
  export declare function getSdk<C>(requester: Requester<C>): {
14378
14599
  sendAssistantMessage(variables: SendAssistantMessageMutationVariables, options?: C): Promise<SendAssistantMessageMutation>;