@caido/sdk-frontend 0.57.2-beta.1 → 0.57.2-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.57.2-beta.1",
3
+ "version": "0.57.2-beta.3",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "repository": "https://github.com/caido/sdk-js/",
@@ -1193,7 +1193,16 @@ export type DataImportResult = {
1193
1193
  id: Scalars["ID"]["output"];
1194
1194
  summary?: Maybe<DataImportSummary>;
1195
1195
  };
1196
- export type DataImportSummary = FindingsSummary | TamperSummary;
1196
+ export type DataImportSummary = FindingsSummary | PluginPackageDataSummary | TamperSummary;
1197
+ export type DefinePluginPackageDataError = OtherUserError | UnknownIdUserError;
1198
+ export type DefinePluginPackageDataInput = {
1199
+ flags: PluginPackageDataFlagsInput;
1200
+ key: Scalars["String"]["input"];
1201
+ };
1202
+ export type DefinePluginPackageDataPayload = {
1203
+ error?: Maybe<DefinePluginPackageDataError>;
1204
+ success: Scalars["Boolean"]["output"];
1205
+ };
1197
1206
  export type DeleteAiProviderError = OtherUserError | UnknownIdUserError;
1198
1207
  export type DeleteAiProviderPayload = {
1199
1208
  deletedId?: Maybe<Scalars["ID"]["output"]>;
@@ -1265,6 +1274,11 @@ export type DeleteInterceptEntryPayload = {
1265
1274
  deletedId?: Maybe<Scalars["ID"]["output"]>;
1266
1275
  userError?: Maybe<DeleteInterceptEntryError>;
1267
1276
  };
1277
+ export type DeletePluginPackageDataError = OtherUserError | UnknownIdUserError;
1278
+ export type DeletePluginPackageDataPayload = {
1279
+ error?: Maybe<DeletePluginPackageDataError>;
1280
+ success: Scalars["Boolean"]["output"];
1281
+ };
1268
1282
  export type DeleteProjectPayload = {
1269
1283
  deletedId?: Maybe<Scalars["ID"]["output"]>;
1270
1284
  error?: Maybe<DeleteProjectPayloadError>;
@@ -1368,6 +1382,10 @@ export type DeletedInterceptMessagePayload = {
1368
1382
  deletedMessageId: Scalars["ID"]["output"];
1369
1383
  snapshot: Scalars["Snapshot"]["output"];
1370
1384
  };
1385
+ export type DeletedPluginPackageDataPayload = {
1386
+ key: Scalars["String"]["output"];
1387
+ packageId: Scalars["ID"]["output"];
1388
+ };
1371
1389
  export type DeletedPluginPackagePayload = {
1372
1390
  deletedPackageId: Scalars["ID"]["output"];
1373
1391
  };
@@ -1447,6 +1465,15 @@ export type EnvironmentVariableKind = (typeof EnvironmentVariableKind)[keyof typ
1447
1465
  export type ExpiredViewerProfilePayload = {
1448
1466
  expiredAt: Scalars["Timestamp"]["output"];
1449
1467
  };
1468
+ export type ExportAutomateEntriesError = OtherUserError | PermissionDeniedUserError;
1469
+ export type ExportAutomateEntriesInput = {
1470
+ sessions: Array<Scalars["ID"]["input"]>;
1471
+ settings: DataExportSettingsInput;
1472
+ };
1473
+ export type ExportAutomateEntriesPayload = {
1474
+ error?: Maybe<ExportAutomateEntriesError>;
1475
+ export?: Maybe<DataExportOnDemand>;
1476
+ };
1450
1477
  export type ExportFindingsError = OtherUserError | PermissionDeniedUserError;
1451
1478
  export type ExportFindingsInput = {
1452
1479
  filter: FilterClauseFindingInput;
@@ -1459,6 +1486,14 @@ export type ExportFindingsPayload = {
1459
1486
  error?: Maybe<ExportFindingsError>;
1460
1487
  export?: Maybe<DataExportOnDemand>;
1461
1488
  };
1489
+ export type ExportPluginPackageDataError = OtherUserError | PermissionDeniedUserError;
1490
+ export type ExportPluginPackageDataInput = {
1491
+ filter: PluginPackageDataFilter;
1492
+ };
1493
+ export type ExportPluginPackageDataPayload = {
1494
+ error?: Maybe<ExportPluginPackageDataError>;
1495
+ export?: Maybe<DataExportOnDemand>;
1496
+ };
1462
1497
  export type ExportSitemapEntriesError = OtherUserError | PermissionDeniedUserError;
1463
1498
  export type ExportSitemapEntriesFilter = {
1464
1499
  ids: Array<Scalars["ID"]["input"]>;
@@ -1669,14 +1704,23 @@ export type ImportCertificatePayload = {
1669
1704
  };
1670
1705
  export type ImportDataInput = {
1671
1706
  findings: ImportFindingsInput;
1707
+ pluginPackageData?: never;
1708
+ tamper?: never;
1709
+ } | {
1710
+ findings?: never;
1711
+ pluginPackageData: ImportPluginPackageDataInput;
1672
1712
  tamper?: never;
1673
1713
  } | {
1674
1714
  findings?: never;
1715
+ pluginPackageData?: never;
1675
1716
  tamper: ImportTamperRuleInput;
1676
1717
  };
1677
1718
  export type ImportFindingsInput = {
1678
1719
  file: Scalars["Upload"]["input"];
1679
1720
  };
1721
+ export type ImportPluginPackageDataInput = {
1722
+ file: Scalars["Upload"]["input"];
1723
+ };
1680
1724
  export type ImportTamperRuleInput = {
1681
1725
  file: Scalars["Upload"]["input"];
1682
1726
  };
@@ -1917,6 +1961,7 @@ export type MutationRoot = {
1917
1961
  createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
1918
1962
  createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
1919
1963
  createWorkflow: CreateWorkflowPayload;
1964
+ definePluginPackageData: DefinePluginPackageDataPayload;
1920
1965
  deleteAIProvider: DeleteAiProviderPayload;
1921
1966
  deleteAssistantSession: DeleteAssistantSessionPayload;
1922
1967
  deleteAutomateEntries: DeleteAutomateEntriesPayload;
@@ -1932,6 +1977,7 @@ export type MutationRoot = {
1932
1977
  deleteHostedFile: DeleteHostedFilePayload;
1933
1978
  deleteInterceptEntries: DeleteInterceptEntriesPayload;
1934
1979
  deleteInterceptEntry: DeleteInterceptEntryPayload;
1980
+ deletePluginPackageData: DeletePluginPackageDataPayload;
1935
1981
  deleteProject: DeleteProjectPayload;
1936
1982
  deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
1937
1983
  deleteReplaySessions: DeleteReplaySessionsPayload;
@@ -1945,7 +1991,9 @@ export type MutationRoot = {
1945
1991
  deleteWorkflow: DeleteWorkflowPayload;
1946
1992
  dropInterceptMessage: DropInterceptMessagePayload;
1947
1993
  duplicateAutomateSession: DuplicateAutomateSessionPayload;
1994
+ exportAutomateEntries: ExportAutomateEntriesPayload;
1948
1995
  exportFindings: ExportFindingsPayload;
1996
+ exportPluginPackageData: ExportPluginPackageDataPayload;
1949
1997
  exportSitemapEntries: ExportSitemapEntriesPayload;
1950
1998
  exportTamper: ExportTamperPayload;
1951
1999
  forwardInterceptMessage: ForwardInterceptMessagePayload;
@@ -2006,6 +2054,7 @@ export type MutationRoot = {
2006
2054
  setInterceptOptions: SetInterceptOptionsPayload;
2007
2055
  setPassthroughOptions: SetPassthroughOptionsPayload;
2008
2056
  setPluginData: SetPluginDataPayload;
2057
+ setPluginPackageData: SetPluginPackageDataPayload;
2009
2058
  setProjectConfigStream: SetProjectConfigStreamPayload;
2010
2059
  startAuthenticationFlow: StartAuthenticationFlowPayload;
2011
2060
  startAutomateTask: StartAutomateTaskPayload;
@@ -2135,6 +2184,10 @@ export type MutationRootCreateUpstreamProxySocksArgs = {
2135
2184
  export type MutationRootCreateWorkflowArgs = {
2136
2185
  input: CreateWorkflowInput;
2137
2186
  };
2187
+ export type MutationRootDefinePluginPackageDataArgs = {
2188
+ id: Scalars["ID"]["input"];
2189
+ input: DefinePluginPackageDataInput;
2190
+ };
2138
2191
  export type MutationRootDeleteAiProviderArgs = {
2139
2192
  id: Scalars["ID"]["input"];
2140
2193
  };
@@ -2178,6 +2231,10 @@ export type MutationRootDeleteInterceptEntriesArgs = {
2178
2231
  export type MutationRootDeleteInterceptEntryArgs = {
2179
2232
  id: Scalars["ID"]["input"];
2180
2233
  };
2234
+ export type MutationRootDeletePluginPackageDataArgs = {
2235
+ id: Scalars["ID"]["input"];
2236
+ key: Scalars["String"]["input"];
2237
+ };
2181
2238
  export type MutationRootDeleteProjectArgs = {
2182
2239
  id: Scalars["ID"]["input"];
2183
2240
  };
@@ -2217,9 +2274,15 @@ export type MutationRootDropInterceptMessageArgs = {
2217
2274
  export type MutationRootDuplicateAutomateSessionArgs = {
2218
2275
  id: Scalars["ID"]["input"];
2219
2276
  };
2277
+ export type MutationRootExportAutomateEntriesArgs = {
2278
+ input: ExportAutomateEntriesInput;
2279
+ };
2220
2280
  export type MutationRootExportFindingsArgs = {
2221
2281
  input: ExportFindingsInput;
2222
2282
  };
2283
+ export type MutationRootExportPluginPackageDataArgs = {
2284
+ input: ExportPluginPackageDataInput;
2285
+ };
2223
2286
  export type MutationRootExportSitemapEntriesArgs = {
2224
2287
  input: ExportSitemapEntriesInput;
2225
2288
  };
@@ -2410,6 +2473,11 @@ export type MutationRootSetPluginDataArgs = {
2410
2473
  data: Scalars["JSON"]["input"];
2411
2474
  id: Scalars["ID"]["input"];
2412
2475
  };
2476
+ export type MutationRootSetPluginPackageDataArgs = {
2477
+ data: Scalars["JSON"]["input"];
2478
+ id: Scalars["ID"]["input"];
2479
+ key: Scalars["String"]["input"];
2480
+ };
2413
2481
  export type MutationRootSetProjectConfigStreamArgs = {
2414
2482
  input: ProjectConfigStreamInput;
2415
2483
  };
@@ -2711,6 +2779,24 @@ export type PluginPackage = {
2711
2779
  plugins: Array<Plugin>;
2712
2780
  version: Scalars["String"]["output"];
2713
2781
  };
2782
+ export type PluginPackageData = {
2783
+ flags: PluginPackageDataFlags;
2784
+ key: Scalars["String"]["output"];
2785
+ package: PluginPackage;
2786
+ value?: Maybe<Scalars["JSON"]["output"]>;
2787
+ };
2788
+ export type PluginPackageDataFilter = {
2789
+ ids: Array<Scalars["ID"]["input"]>;
2790
+ };
2791
+ export type PluginPackageDataFlags = {
2792
+ exportable: Scalars["Boolean"]["output"];
2793
+ };
2794
+ export type PluginPackageDataFlagsInput = {
2795
+ exportable?: InputMaybe<Scalars["Boolean"]["input"]>;
2796
+ };
2797
+ export type PluginPackageDataSummary = {
2798
+ packagesImported: Scalars["Int"]["output"];
2799
+ };
2714
2800
  export declare const PluginPackageOrigin: {
2715
2801
  readonly File: "FILE";
2716
2802
  readonly Store: "STORE";
@@ -2844,6 +2930,9 @@ export type QueryRoot = {
2844
2930
  interceptOptions: InterceptOptions;
2845
2931
  interceptStatus: InterceptStatus;
2846
2932
  passthroughOptions: PassthroughOptions;
2933
+ pluginPackage?: Maybe<PluginPackage>;
2934
+ pluginPackageByManifest?: Maybe<PluginPackage>;
2935
+ pluginPackageData?: Maybe<PluginPackageData>;
2847
2936
  pluginPackages: Array<PluginPackage>;
2848
2937
  projects: Array<Project>;
2849
2938
  replayEntry?: Maybe<ReplayEntry>;
@@ -2965,6 +3054,16 @@ export type QueryRootInterceptMessagesArgs = {
2965
3054
  kind: InterceptKind;
2966
3055
  last?: InputMaybe<Scalars["Int"]["input"]>;
2967
3056
  };
3057
+ export type QueryRootPluginPackageArgs = {
3058
+ id: Scalars["ID"]["input"];
3059
+ };
3060
+ export type QueryRootPluginPackageByManifestArgs = {
3061
+ manifestId: Scalars["ID"]["input"];
3062
+ };
3063
+ export type QueryRootPluginPackageDataArgs = {
3064
+ id: Scalars["ID"]["input"];
3065
+ key: Scalars["String"]["input"];
3066
+ };
2968
3067
  export type QueryRootReplayEntryArgs = {
2969
3068
  id: Scalars["ID"]["input"];
2970
3069
  sessionKind: ReplaySessionKind;
@@ -3752,6 +3851,11 @@ export type SetPluginDataPayload = {
3752
3851
  error?: Maybe<SetPluginDataError>;
3753
3852
  plugin?: Maybe<Plugin>;
3754
3853
  };
3854
+ export type SetPluginPackageDataError = OtherUserError | UnknownIdUserError;
3855
+ export type SetPluginPackageDataPayload = {
3856
+ error?: Maybe<SetPluginPackageDataError>;
3857
+ success: Scalars["Boolean"]["output"];
3858
+ };
3755
3859
  export type SetProjectConfigStreamPayload = {
3756
3860
  config: ProjectConfigStream;
3757
3861
  };
@@ -4081,6 +4185,7 @@ export type SubscriptionRoot = {
4081
4185
  deletedInterceptEntry: DeletedInterceptEntryPayload;
4082
4186
  deletedInterceptMessage: DeletedInterceptMessagePayload;
4083
4187
  deletedPluginPackage: DeletedPluginPackagePayload;
4188
+ deletedPluginPackageData: DeletedPluginPackageDataPayload;
4084
4189
  deletedProject: DeletedProjectPayload;
4085
4190
  deletedReplaySession: DeletedReplaySessionPayload;
4086
4191
  deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
@@ -4129,6 +4234,7 @@ export type SubscriptionRoot = {
4129
4234
  updatedPassthroughOptions: UpdatedPassthroughOptionsPayload;
4130
4235
  updatedPlugin: UpdatedPluginPayload;
4131
4236
  updatedPluginPackage: UpdatedPluginPackagePayload;
4237
+ updatedPluginPackageData: UpdatedPluginPackageDataPayload;
4132
4238
  updatedProject: UpdatedProjectPayload;
4133
4239
  updatedReplayEntryDraft: UpdatedReplayEntryDraftPayload;
4134
4240
  updatedReplayEntryWs: UpdatedReplayEntryWsPayload;
@@ -4177,10 +4283,16 @@ export type SubscriptionRootCreatedStreamArgs = {
4177
4283
  export type SubscriptionRootCreatedStreamWsMessageArgs = {
4178
4284
  filter?: InputMaybe<StreamQlInput>;
4179
4285
  };
4286
+ export type SubscriptionRootDeletedPluginPackageDataArgs = {
4287
+ packageId?: InputMaybe<Scalars["ID"]["input"]>;
4288
+ };
4180
4289
  export type SubscriptionRootUpdatedInterceptEntryArgs = {
4181
4290
  filter?: InputMaybe<HttpqlInput>;
4182
4291
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
4183
4292
  };
4293
+ export type SubscriptionRootUpdatedPluginPackageDataArgs = {
4294
+ packageId?: InputMaybe<Scalars["ID"]["input"]>;
4295
+ };
4184
4296
  export type SubscriptionRootUpdatedRequestArgs = {
4185
4297
  filter?: InputMaybe<HttpqlInput>;
4186
4298
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
@@ -5222,6 +5334,9 @@ export type UpdatedInterceptStatusPayload = {
5222
5334
  export type UpdatedPassthroughOptionsPayload = {
5223
5335
  options: PassthroughOptions;
5224
5336
  };
5337
+ export type UpdatedPluginPackageDataPayload = {
5338
+ packageData: PluginPackageData;
5339
+ };
5225
5340
  export type UpdatedPluginPackagePayload = {
5226
5341
  package: PluginPackage;
5227
5342
  };
@@ -5459,10 +5574,12 @@ export type AiProviderFullFragment = {
5459
5574
  export type TestAiProviderPayloadFullFragment = {
5460
5575
  success?: boolean | undefined | null;
5461
5576
  error?: {
5462
- code: string;
5577
+ __typename: "AIUserError";
5463
5578
  message: string;
5464
5579
  reason: AiErrorReason;
5580
+ code: string;
5465
5581
  } | {
5582
+ __typename: "OtherUserError";
5466
5583
  code: string;
5467
5584
  } | undefined | null;
5468
5585
  };
@@ -5545,10 +5662,12 @@ export type TestAiProviderMutation = {
5545
5662
  testAIProvider: {
5546
5663
  success?: boolean | undefined | null;
5547
5664
  error?: {
5548
- code: string;
5665
+ __typename: "AIUserError";
5549
5666
  message: string;
5550
5667
  reason: AiErrorReason;
5668
+ code: string;
5551
5669
  } | {
5670
+ __typename: "OtherUserError";
5552
5671
  code: string;
5553
5672
  } | undefined | null;
5554
5673
  };
@@ -7842,6 +7961,25 @@ export type StartAutomateTaskMutation = {
7842
7961
  } | undefined | null;
7843
7962
  };
7844
7963
  };
7964
+ export type ExportAutomateEntriesMutationVariables = Exact<{
7965
+ input: ExportAutomateEntriesInput;
7966
+ }>;
7967
+ export type ExportAutomateEntriesMutation = {
7968
+ exportAutomateEntries: {
7969
+ export?: {
7970
+ downloadUri: string;
7971
+ id: string;
7972
+ } | undefined | null;
7973
+ error?: {
7974
+ __typename: "OtherUserError";
7975
+ code: string;
7976
+ } | {
7977
+ __typename: "PermissionDeniedUserError";
7978
+ code: string;
7979
+ permissionDeniedReason: PermissionDeniedErrorReason;
7980
+ } | undefined | null;
7981
+ };
7982
+ };
7845
7983
  export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
7846
7984
  order?: InputMaybe<AutomateEntryRequestOrderInput>;
7847
7985
  filter?: InputMaybe<HttpqlInput>;
@@ -9453,6 +9591,12 @@ export type UpdatedEnvironmentContextSubscription = {
9453
9591
  };
9454
9592
  };
9455
9593
  };
9594
+ export type AiUserErrorFullFragment = {
9595
+ __typename: "AIUserError";
9596
+ message: string;
9597
+ reason: AiErrorReason;
9598
+ code: string;
9599
+ };
9456
9600
  export type WsUserErrorFullFragment = {
9457
9601
  __typename: "WSUserError";
9458
9602
  message: string;
@@ -123566,15 +123710,16 @@ export type TestWorkflowPassiveMutation = {
123566
123710
  };
123567
123711
  };
123568
123712
  export declare const AiProviderFullFragmentDoc = "\n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n api\n apiKey\n url\n}\n ";
123569
- export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAIProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
123713
+ export declare const UserErrorFullFragmentDoc = "\n fragment userErrorFull on UserError {\n __typename\n code\n}\n ";
123714
+ export declare const AiUserErrorFullFragmentDoc = "\n fragment aiUserErrorFull on AIUserError {\n ...userErrorFull\n message\n reason\n}\n ";
123715
+ export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
123716
+ export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAIProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n ...aiUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n success\n}\n ";
123570
123717
  export declare const AssistantModelFullFragmentDoc = "\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
123571
123718
  export declare const AssistantSessionMetaFragmentDoc = "\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
123572
123719
  export declare const AssistantMessageFullFragmentDoc = "\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
123573
123720
  export declare const AssistantSessionFullFragmentDoc = "\n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n ";
123574
- export declare const UserErrorFullFragmentDoc = "\n fragment userErrorFull on UserError {\n __typename\n code\n}\n ";
123575
123721
  export declare const AssistantUserErrorFullFragmentDoc = "\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n ";
123576
123722
  export declare const AuthenticationUserErrorFullFragmentDoc = "\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
123577
- export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
123578
123723
  export declare const CloudUserErrorFullFragmentDoc = "\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
123579
123724
  export declare const AssistantMessageTaskFullFragmentDoc = "\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 ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n ";
123580
123725
  export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
@@ -123797,7 +123942,7 @@ export declare const AiProvidersDocument = "\n query aiProviders {\n aiProvi
123797
123942
  export declare const CreateAiProviderDocument = "\n mutation createAIProvider($input: CreateAIProviderInput!) {\n createAIProvider(input: $input) {\n provider {\n ...aiProviderFull\n }\n error {\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n api\n apiKey\n url\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
123798
123943
  export declare const UpdateAiProviderDocument = "\n mutation updateAIProvider($id: ID!, $input: UpdateAIProviderInput!) {\n updateAIProvider(id: $id, input: $input) {\n provider {\n ...aiProviderFull\n }\n error {\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n api\n apiKey\n url\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
123799
123944
  export declare const DeleteAiProviderDocument = "\n mutation deleteAIProvider($id: ID!) {\n deleteAIProvider(id: $id) {\n deletedId\n }\n}\n ";
123800
- export declare const TestAiProviderDocument = "\n mutation testAIProvider($input: TestAIProviderInput!) {\n testAIProvider(input: $input) {\n ...testAIProviderPayloadFull\n }\n}\n \n fragment testAIProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
123945
+ export declare const TestAiProviderDocument = "\n mutation testAIProvider($input: TestAIProviderInput!) {\n testAIProvider(input: $input) {\n ...testAIProviderPayloadFull\n }\n}\n \n fragment testAIProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n ...aiUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n success\n}\n \n\n fragment aiUserErrorFull on AIUserError {\n ...userErrorFull\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 ";
123801
123946
  export declare const CreatedAiProviderDocument = "\n subscription createdAIProvider {\n createdAIProvider {\n provider {\n ...aiProviderFull\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n api\n apiKey\n url\n}\n ";
123802
123947
  export declare const UpdatedAiProviderDocument = "\n subscription updatedAIProvider {\n updatedAIProvider {\n provider {\n ...aiProviderFull\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n api\n apiKey\n url\n}\n ";
123803
123948
  export declare const DeletedAiProviderDocument = "\n subscription deletedAIProvider {\n deletedAIProvider {\n deletedProviderId\n }\n}\n ";
@@ -123837,6 +123982,7 @@ export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomate
123837
123982
  export declare const PauseAutomateTaskDocument = "\n mutation pauseAutomateTask($id: ID!) {\n pauseAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\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 ";
123838
123983
  export declare const ResumeAutomateTaskDocument = "\n mutation resumeAutomateTask($id: ID!) {\n resumeAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\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 ";
123839
123984
  export declare const StartAutomateTaskDocument = "\n mutation startAutomateTask($automateSessionId: ID!) {\n startAutomateTask(automateSessionId: $automateSessionId) {\n automateTask {\n ...automateTaskMeta\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
123985
+ export declare const ExportAutomateEntriesDocument = "\n mutation exportAutomateEntries($input: ExportAutomateEntriesInput!) {\n exportAutomateEntries(input: $input) {\n export {\n ...dataExportOnDemandMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
123840
123986
  export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n extracts {\n ...automateEntryRequestExtractFull\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 sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n \n\n fragment automateEntryRequestExtractFull on AutomateEntryExtract {\n __typename\n name\n raw\n}\n ";
123841
123987
  export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
123842
123988
  export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n status\n }\n}\n ";
@@ -124195,6 +124341,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
124195
124341
  pauseAutomateTask(variables: PauseAutomateTaskMutationVariables, options?: C): Promise<PauseAutomateTaskMutation>;
124196
124342
  resumeAutomateTask(variables: ResumeAutomateTaskMutationVariables, options?: C): Promise<ResumeAutomateTaskMutation>;
124197
124343
  startAutomateTask(variables: StartAutomateTaskMutationVariables, options?: C): Promise<StartAutomateTaskMutation>;
124344
+ exportAutomateEntries(variables: ExportAutomateEntriesMutationVariables, options?: C): Promise<ExportAutomateEntriesMutation>;
124198
124345
  createdAutomateEntryRequest(variables?: CreatedAutomateEntryRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntryRequestSubscription>;
124199
124346
  createdAutomateTask(variables?: CreatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateTaskSubscription>;
124200
124347
  deletedAutomateTask(variables?: DeletedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateTaskSubscription>;