@caido/sdk-frontend 0.57.2-beta.2 → 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.2",
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
  };
@@ -1468,6 +1486,14 @@ export type ExportFindingsPayload = {
1468
1486
  error?: Maybe<ExportFindingsError>;
1469
1487
  export?: Maybe<DataExportOnDemand>;
1470
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
+ };
1471
1497
  export type ExportSitemapEntriesError = OtherUserError | PermissionDeniedUserError;
1472
1498
  export type ExportSitemapEntriesFilter = {
1473
1499
  ids: Array<Scalars["ID"]["input"]>;
@@ -1678,14 +1704,23 @@ export type ImportCertificatePayload = {
1678
1704
  };
1679
1705
  export type ImportDataInput = {
1680
1706
  findings: ImportFindingsInput;
1707
+ pluginPackageData?: never;
1708
+ tamper?: never;
1709
+ } | {
1710
+ findings?: never;
1711
+ pluginPackageData: ImportPluginPackageDataInput;
1681
1712
  tamper?: never;
1682
1713
  } | {
1683
1714
  findings?: never;
1715
+ pluginPackageData?: never;
1684
1716
  tamper: ImportTamperRuleInput;
1685
1717
  };
1686
1718
  export type ImportFindingsInput = {
1687
1719
  file: Scalars["Upload"]["input"];
1688
1720
  };
1721
+ export type ImportPluginPackageDataInput = {
1722
+ file: Scalars["Upload"]["input"];
1723
+ };
1689
1724
  export type ImportTamperRuleInput = {
1690
1725
  file: Scalars["Upload"]["input"];
1691
1726
  };
@@ -1926,6 +1961,7 @@ export type MutationRoot = {
1926
1961
  createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
1927
1962
  createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
1928
1963
  createWorkflow: CreateWorkflowPayload;
1964
+ definePluginPackageData: DefinePluginPackageDataPayload;
1929
1965
  deleteAIProvider: DeleteAiProviderPayload;
1930
1966
  deleteAssistantSession: DeleteAssistantSessionPayload;
1931
1967
  deleteAutomateEntries: DeleteAutomateEntriesPayload;
@@ -1941,6 +1977,7 @@ export type MutationRoot = {
1941
1977
  deleteHostedFile: DeleteHostedFilePayload;
1942
1978
  deleteInterceptEntries: DeleteInterceptEntriesPayload;
1943
1979
  deleteInterceptEntry: DeleteInterceptEntryPayload;
1980
+ deletePluginPackageData: DeletePluginPackageDataPayload;
1944
1981
  deleteProject: DeleteProjectPayload;
1945
1982
  deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
1946
1983
  deleteReplaySessions: DeleteReplaySessionsPayload;
@@ -1956,6 +1993,7 @@ export type MutationRoot = {
1956
1993
  duplicateAutomateSession: DuplicateAutomateSessionPayload;
1957
1994
  exportAutomateEntries: ExportAutomateEntriesPayload;
1958
1995
  exportFindings: ExportFindingsPayload;
1996
+ exportPluginPackageData: ExportPluginPackageDataPayload;
1959
1997
  exportSitemapEntries: ExportSitemapEntriesPayload;
1960
1998
  exportTamper: ExportTamperPayload;
1961
1999
  forwardInterceptMessage: ForwardInterceptMessagePayload;
@@ -2016,6 +2054,7 @@ export type MutationRoot = {
2016
2054
  setInterceptOptions: SetInterceptOptionsPayload;
2017
2055
  setPassthroughOptions: SetPassthroughOptionsPayload;
2018
2056
  setPluginData: SetPluginDataPayload;
2057
+ setPluginPackageData: SetPluginPackageDataPayload;
2019
2058
  setProjectConfigStream: SetProjectConfigStreamPayload;
2020
2059
  startAuthenticationFlow: StartAuthenticationFlowPayload;
2021
2060
  startAutomateTask: StartAutomateTaskPayload;
@@ -2145,6 +2184,10 @@ export type MutationRootCreateUpstreamProxySocksArgs = {
2145
2184
  export type MutationRootCreateWorkflowArgs = {
2146
2185
  input: CreateWorkflowInput;
2147
2186
  };
2187
+ export type MutationRootDefinePluginPackageDataArgs = {
2188
+ id: Scalars["ID"]["input"];
2189
+ input: DefinePluginPackageDataInput;
2190
+ };
2148
2191
  export type MutationRootDeleteAiProviderArgs = {
2149
2192
  id: Scalars["ID"]["input"];
2150
2193
  };
@@ -2188,6 +2231,10 @@ export type MutationRootDeleteInterceptEntriesArgs = {
2188
2231
  export type MutationRootDeleteInterceptEntryArgs = {
2189
2232
  id: Scalars["ID"]["input"];
2190
2233
  };
2234
+ export type MutationRootDeletePluginPackageDataArgs = {
2235
+ id: Scalars["ID"]["input"];
2236
+ key: Scalars["String"]["input"];
2237
+ };
2191
2238
  export type MutationRootDeleteProjectArgs = {
2192
2239
  id: Scalars["ID"]["input"];
2193
2240
  };
@@ -2233,6 +2280,9 @@ export type MutationRootExportAutomateEntriesArgs = {
2233
2280
  export type MutationRootExportFindingsArgs = {
2234
2281
  input: ExportFindingsInput;
2235
2282
  };
2283
+ export type MutationRootExportPluginPackageDataArgs = {
2284
+ input: ExportPluginPackageDataInput;
2285
+ };
2236
2286
  export type MutationRootExportSitemapEntriesArgs = {
2237
2287
  input: ExportSitemapEntriesInput;
2238
2288
  };
@@ -2423,6 +2473,11 @@ export type MutationRootSetPluginDataArgs = {
2423
2473
  data: Scalars["JSON"]["input"];
2424
2474
  id: Scalars["ID"]["input"];
2425
2475
  };
2476
+ export type MutationRootSetPluginPackageDataArgs = {
2477
+ data: Scalars["JSON"]["input"];
2478
+ id: Scalars["ID"]["input"];
2479
+ key: Scalars["String"]["input"];
2480
+ };
2426
2481
  export type MutationRootSetProjectConfigStreamArgs = {
2427
2482
  input: ProjectConfigStreamInput;
2428
2483
  };
@@ -2724,6 +2779,24 @@ export type PluginPackage = {
2724
2779
  plugins: Array<Plugin>;
2725
2780
  version: Scalars["String"]["output"];
2726
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
+ };
2727
2800
  export declare const PluginPackageOrigin: {
2728
2801
  readonly File: "FILE";
2729
2802
  readonly Store: "STORE";
@@ -2857,6 +2930,9 @@ export type QueryRoot = {
2857
2930
  interceptOptions: InterceptOptions;
2858
2931
  interceptStatus: InterceptStatus;
2859
2932
  passthroughOptions: PassthroughOptions;
2933
+ pluginPackage?: Maybe<PluginPackage>;
2934
+ pluginPackageByManifest?: Maybe<PluginPackage>;
2935
+ pluginPackageData?: Maybe<PluginPackageData>;
2860
2936
  pluginPackages: Array<PluginPackage>;
2861
2937
  projects: Array<Project>;
2862
2938
  replayEntry?: Maybe<ReplayEntry>;
@@ -2978,6 +3054,16 @@ export type QueryRootInterceptMessagesArgs = {
2978
3054
  kind: InterceptKind;
2979
3055
  last?: InputMaybe<Scalars["Int"]["input"]>;
2980
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
+ };
2981
3067
  export type QueryRootReplayEntryArgs = {
2982
3068
  id: Scalars["ID"]["input"];
2983
3069
  sessionKind: ReplaySessionKind;
@@ -3765,6 +3851,11 @@ export type SetPluginDataPayload = {
3765
3851
  error?: Maybe<SetPluginDataError>;
3766
3852
  plugin?: Maybe<Plugin>;
3767
3853
  };
3854
+ export type SetPluginPackageDataError = OtherUserError | UnknownIdUserError;
3855
+ export type SetPluginPackageDataPayload = {
3856
+ error?: Maybe<SetPluginPackageDataError>;
3857
+ success: Scalars["Boolean"]["output"];
3858
+ };
3768
3859
  export type SetProjectConfigStreamPayload = {
3769
3860
  config: ProjectConfigStream;
3770
3861
  };
@@ -4094,6 +4185,7 @@ export type SubscriptionRoot = {
4094
4185
  deletedInterceptEntry: DeletedInterceptEntryPayload;
4095
4186
  deletedInterceptMessage: DeletedInterceptMessagePayload;
4096
4187
  deletedPluginPackage: DeletedPluginPackagePayload;
4188
+ deletedPluginPackageData: DeletedPluginPackageDataPayload;
4097
4189
  deletedProject: DeletedProjectPayload;
4098
4190
  deletedReplaySession: DeletedReplaySessionPayload;
4099
4191
  deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
@@ -4142,6 +4234,7 @@ export type SubscriptionRoot = {
4142
4234
  updatedPassthroughOptions: UpdatedPassthroughOptionsPayload;
4143
4235
  updatedPlugin: UpdatedPluginPayload;
4144
4236
  updatedPluginPackage: UpdatedPluginPackagePayload;
4237
+ updatedPluginPackageData: UpdatedPluginPackageDataPayload;
4145
4238
  updatedProject: UpdatedProjectPayload;
4146
4239
  updatedReplayEntryDraft: UpdatedReplayEntryDraftPayload;
4147
4240
  updatedReplayEntryWs: UpdatedReplayEntryWsPayload;
@@ -4190,10 +4283,16 @@ export type SubscriptionRootCreatedStreamArgs = {
4190
4283
  export type SubscriptionRootCreatedStreamWsMessageArgs = {
4191
4284
  filter?: InputMaybe<StreamQlInput>;
4192
4285
  };
4286
+ export type SubscriptionRootDeletedPluginPackageDataArgs = {
4287
+ packageId?: InputMaybe<Scalars["ID"]["input"]>;
4288
+ };
4193
4289
  export type SubscriptionRootUpdatedInterceptEntryArgs = {
4194
4290
  filter?: InputMaybe<HttpqlInput>;
4195
4291
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
4196
4292
  };
4293
+ export type SubscriptionRootUpdatedPluginPackageDataArgs = {
4294
+ packageId?: InputMaybe<Scalars["ID"]["input"]>;
4295
+ };
4197
4296
  export type SubscriptionRootUpdatedRequestArgs = {
4198
4297
  filter?: InputMaybe<HttpqlInput>;
4199
4298
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
@@ -5235,6 +5334,9 @@ export type UpdatedInterceptStatusPayload = {
5235
5334
  export type UpdatedPassthroughOptionsPayload = {
5236
5335
  options: PassthroughOptions;
5237
5336
  };
5337
+ export type UpdatedPluginPackageDataPayload = {
5338
+ packageData: PluginPackageData;
5339
+ };
5238
5340
  export type UpdatedPluginPackagePayload = {
5239
5341
  package: PluginPackage;
5240
5342
  };
@@ -5472,10 +5574,12 @@ export type AiProviderFullFragment = {
5472
5574
  export type TestAiProviderPayloadFullFragment = {
5473
5575
  success?: boolean | undefined | null;
5474
5576
  error?: {
5475
- code: string;
5577
+ __typename: "AIUserError";
5476
5578
  message: string;
5477
5579
  reason: AiErrorReason;
5580
+ code: string;
5478
5581
  } | {
5582
+ __typename: "OtherUserError";
5479
5583
  code: string;
5480
5584
  } | undefined | null;
5481
5585
  };
@@ -5558,10 +5662,12 @@ export type TestAiProviderMutation = {
5558
5662
  testAIProvider: {
5559
5663
  success?: boolean | undefined | null;
5560
5664
  error?: {
5561
- code: string;
5665
+ __typename: "AIUserError";
5562
5666
  message: string;
5563
5667
  reason: AiErrorReason;
5668
+ code: string;
5564
5669
  } | {
5670
+ __typename: "OtherUserError";
5565
5671
  code: string;
5566
5672
  } | undefined | null;
5567
5673
  };
@@ -9485,6 +9591,12 @@ export type UpdatedEnvironmentContextSubscription = {
9485
9591
  };
9486
9592
  };
9487
9593
  };
9594
+ export type AiUserErrorFullFragment = {
9595
+ __typename: "AIUserError";
9596
+ message: string;
9597
+ reason: AiErrorReason;
9598
+ code: string;
9599
+ };
9488
9600
  export type WsUserErrorFullFragment = {
9489
9601
  __typename: "WSUserError";
9490
9602
  message: string;
@@ -123598,15 +123710,16 @@ export type TestWorkflowPassiveMutation = {
123598
123710
  };
123599
123711
  };
123600
123712
  export declare const AiProviderFullFragmentDoc = "\n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n api\n apiKey\n url\n}\n ";
123601
- 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 ";
123602
123717
  export declare const AssistantModelFullFragmentDoc = "\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
123603
123718
  export declare const AssistantSessionMetaFragmentDoc = "\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
123604
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 ";
123605
123720
  export declare const AssistantSessionFullFragmentDoc = "\n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n ";
123606
- export declare const UserErrorFullFragmentDoc = "\n fragment userErrorFull on UserError {\n __typename\n code\n}\n ";
123607
123721
  export declare const AssistantUserErrorFullFragmentDoc = "\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n ";
123608
123722
  export declare const AuthenticationUserErrorFullFragmentDoc = "\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
123609
- export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
123610
123723
  export declare const CloudUserErrorFullFragmentDoc = "\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
123611
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 ";
123612
123725
  export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
@@ -123829,7 +123942,7 @@ export declare const AiProvidersDocument = "\n query aiProviders {\n aiProvi
123829
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 ";
123830
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 ";
123831
123944
  export declare const DeleteAiProviderDocument = "\n mutation deleteAIProvider($id: ID!) {\n deleteAIProvider(id: $id) {\n deletedId\n }\n}\n ";
123832
- 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 ";
123833
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 ";
123834
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 ";
123835
123948
  export declare const DeletedAiProviderDocument = "\n subscription deletedAIProvider {\n deletedAIProvider {\n deletedProviderId\n }\n}\n ";