@caido/sdk-frontend 0.48.2-beta.7 → 0.48.2-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.48.2-beta.7",
3
+ "version": "0.48.2-beta.9",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "license": "MIT",
@@ -1098,6 +1098,13 @@ export type DeleteEnvironmentPayload = {
1098
1098
  export type DeleteFilterPresetPayload = {
1099
1099
  deletedId?: Maybe<Scalars["ID"]["output"]>;
1100
1100
  };
1101
+ export type DeleteFindingsInput = {
1102
+ ids: Array<Scalars["ID"]["input"]>;
1103
+ reporter?: never;
1104
+ } | {
1105
+ ids?: never;
1106
+ reporter: Scalars["String"]["input"];
1107
+ };
1101
1108
  export type DeleteFindingsPayload = {
1102
1109
  deletedIds?: Maybe<Array<Scalars["ID"]["output"]>>;
1103
1110
  };
@@ -1304,6 +1311,7 @@ export type Finding = {
1304
1311
  createdAt: Scalars["Timestamp"]["output"];
1305
1312
  dedupeKey?: Maybe<Scalars["String"]["output"]>;
1306
1313
  description?: Maybe<Scalars["String"]["output"]>;
1314
+ hidden: Scalars["Boolean"]["output"];
1307
1315
  host: Scalars["String"]["output"];
1308
1316
  id: Scalars["ID"]["output"];
1309
1317
  path: Scalars["String"]["output"];
@@ -1422,6 +1430,16 @@ export type GuestUser = {
1422
1430
  plugins: Array<PluginFrontend>;
1423
1431
  settings?: Maybe<UserSettings>;
1424
1432
  };
1433
+ export type HideFindingsInput = {
1434
+ ids: Array<Scalars["ID"]["input"]>;
1435
+ reporter?: never;
1436
+ } | {
1437
+ ids?: never;
1438
+ reporter: Scalars["String"]["input"];
1439
+ };
1440
+ export type HideFindingsPayload = {
1441
+ findings?: Maybe<Array<Finding>>;
1442
+ };
1425
1443
  export type HostedFile = {
1426
1444
  createdAt: Scalars["DateTime"]["output"];
1427
1445
  id: Scalars["ID"]["output"];
@@ -1676,6 +1694,7 @@ export type MutationRoot = {
1676
1694
  duplicateAutomateSession: DuplicateAutomateSessionPayload;
1677
1695
  forwardInterceptMessage: ForwardInterceptMessagePayload;
1678
1696
  globalizeWorkflow: GlobalizeWorkflowPayload;
1697
+ hideFindings: HideFindingsPayload;
1679
1698
  importCertificate: ImportCertificatePayload;
1680
1699
  installBrowser: InstallBrowserPayload;
1681
1700
  installPluginPackage: InstallPluginPackagePayload;
@@ -1746,6 +1765,7 @@ export type MutationRoot = {
1746
1765
  updateDnsUpstream: UpdateDnsUpstreamPayload;
1747
1766
  updateEnvironment: UpdateEnvironmentPayload;
1748
1767
  updateFilterPreset: UpdateFilterPresetPayload;
1768
+ updateFinding: UpdateFindingPayload;
1749
1769
  updateRequestMetadata: UpdateRequestMetadataPayload;
1750
1770
  updateScope: UpdateScopePayload;
1751
1771
  updateTamperRule: UpdateTamperRulePayload;
@@ -1853,7 +1873,7 @@ export type MutationRootDeleteFilterPresetArgs = {
1853
1873
  id: Scalars["ID"]["input"];
1854
1874
  };
1855
1875
  export type MutationRootDeleteFindingsArgs = {
1856
- ids: Array<Scalars["ID"]["input"]>;
1876
+ input?: InputMaybe<DeleteFindingsInput>;
1857
1877
  };
1858
1878
  export type MutationRootDeleteHostedFileArgs = {
1859
1879
  id: Scalars["ID"]["input"];
@@ -1908,6 +1928,9 @@ export type MutationRootForwardInterceptMessageArgs = {
1908
1928
  export type MutationRootGlobalizeWorkflowArgs = {
1909
1929
  id: Scalars["ID"]["input"];
1910
1930
  };
1931
+ export type MutationRootHideFindingsArgs = {
1932
+ input?: InputMaybe<HideFindingsInput>;
1933
+ };
1911
1934
  export type MutationRootImportCertificateArgs = {
1912
1935
  input: ImportCertificateInput;
1913
1936
  };
@@ -2128,6 +2151,10 @@ export type MutationRootUpdateFilterPresetArgs = {
2128
2151
  id: Scalars["ID"]["input"];
2129
2152
  input: UpdateFilterPresetInput;
2130
2153
  };
2154
+ export type MutationRootUpdateFindingArgs = {
2155
+ id: Scalars["ID"]["input"];
2156
+ input: UpdateFindingInput;
2157
+ };
2131
2158
  export type MutationRootUpdateRequestMetadataArgs = {
2132
2159
  id: Scalars["ID"]["input"];
2133
2160
  input: UpdateRequestMetadataInput;
@@ -3419,6 +3446,7 @@ export type SubscriptionRoot = {
3419
3446
  updatedEnvironment: UpdatedEnvironmentPayload;
3420
3447
  updatedEnvironmentContext: UpdatedEnvironmentContextPayload;
3421
3448
  updatedFilterPreset: UpdatedFilterPresetPayload;
3449
+ updatedFindings: UpdatedFindingsPayload;
3422
3450
  updatedHostedFile: UpdatedHostedFilePayload;
3423
3451
  updatedInterceptEntry: UpdatedInterceptEntryPayload;
3424
3452
  updatedInterceptOptions: UpdatedInterceptOptionsPayload;
@@ -4041,6 +4069,16 @@ export type UpdateFilterPresetPayload = {
4041
4069
  error?: Maybe<UpdateFilterPresetError>;
4042
4070
  filter?: Maybe<FilterPreset>;
4043
4071
  };
4072
+ export type UpdateFindingError = OtherUserError | UnknownIdUserError;
4073
+ export type UpdateFindingInput = {
4074
+ description?: InputMaybe<Scalars["String"]["input"]>;
4075
+ hidden?: InputMaybe<Scalars["Boolean"]["input"]>;
4076
+ title?: InputMaybe<Scalars["String"]["input"]>;
4077
+ };
4078
+ export type UpdateFindingPayload = {
4079
+ error?: Maybe<UpdateFindingError>;
4080
+ finding?: Maybe<Finding>;
4081
+ };
4044
4082
  export type UpdateRequestMetadataInput = {
4045
4083
  color?: InputMaybe<Scalars["String"]["input"]>;
4046
4084
  };
@@ -4153,6 +4191,16 @@ export type UpdatedEnvironmentPayload = {
4153
4191
  export type UpdatedFilterPresetPayload = {
4154
4192
  filterEdge: FilterPresetEdge;
4155
4193
  };
4194
+ export type UpdatedFindingPayload = {
4195
+ findingEdge: FindingEdge;
4196
+ snapshot: Scalars["Snapshot"]["output"];
4197
+ };
4198
+ export type UpdatedFindingPayloadFindingEdgeArgs = {
4199
+ order?: InputMaybe<FindingOrderInput>;
4200
+ };
4201
+ export type UpdatedFindingsPayload = {
4202
+ findings: Array<UpdatedFindingPayload>;
4203
+ };
4156
4204
  export type UpdatedHostedFilePayload = {
4157
4205
  hostedFile: HostedFile;
4158
4206
  };
@@ -9075,6 +9123,63 @@ export type DeletedFindingsSubscription = {
9075
9123
  snapshot: number;
9076
9124
  };
9077
9125
  };
9126
+ export type UpdatedFindingsSubscriptionVariables = Exact<{
9127
+ order?: InputMaybe<FindingOrderInput>;
9128
+ }>;
9129
+ export type UpdatedFindingsSubscription = {
9130
+ updatedFindings: {
9131
+ findings: Array<{
9132
+ snapshot: number;
9133
+ findingEdge: {
9134
+ cursor: string;
9135
+ node: {
9136
+ id: string;
9137
+ title: string;
9138
+ description?: string | undefined | null;
9139
+ reporter: string;
9140
+ host: string;
9141
+ path: string;
9142
+ createdAt: Date;
9143
+ request: {
9144
+ __typename: "Request";
9145
+ id: string;
9146
+ host: string;
9147
+ port: number;
9148
+ path: string;
9149
+ query: string;
9150
+ method: string;
9151
+ edited: boolean;
9152
+ isTls: boolean;
9153
+ sni?: string | undefined | null;
9154
+ length: number;
9155
+ alteration: Alteration;
9156
+ fileExtension?: string | undefined | null;
9157
+ source: Source;
9158
+ createdAt: Date;
9159
+ metadata: {
9160
+ __typename: "RequestMetadata";
9161
+ id: string;
9162
+ color?: string | undefined | null;
9163
+ };
9164
+ response?: {
9165
+ __typename: "Response";
9166
+ id: string;
9167
+ statusCode: number;
9168
+ roundtripTime: number;
9169
+ length: number;
9170
+ createdAt: Date;
9171
+ alteration: Alteration;
9172
+ edited: boolean;
9173
+ } | undefined | null;
9174
+ stream?: {
9175
+ id: string;
9176
+ } | undefined | null;
9177
+ };
9178
+ };
9179
+ };
9180
+ }>;
9181
+ };
9182
+ };
9078
9183
  export type CreateFindingMutationVariables = Exact<{
9079
9184
  requestId: Scalars["ID"]["input"];
9080
9185
  input: CreateFindingInput;
@@ -9136,13 +9241,73 @@ export type CreateFindingMutation = {
9136
9241
  };
9137
9242
  };
9138
9243
  export type DeleteFindingsMutationVariables = Exact<{
9139
- ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
9244
+ input: DeleteFindingsInput;
9140
9245
  }>;
9141
9246
  export type DeleteFindingsMutation = {
9142
9247
  deleteFindings: {
9143
9248
  deletedIds?: Array<string> | undefined | null;
9144
9249
  };
9145
9250
  };
9251
+ export type UpdateFindingMutationVariables = Exact<{
9252
+ id: Scalars["ID"]["input"];
9253
+ input: UpdateFindingInput;
9254
+ }>;
9255
+ export type UpdateFindingMutation = {
9256
+ updateFinding: {
9257
+ finding?: {
9258
+ id: string;
9259
+ title: string;
9260
+ description?: string | undefined | null;
9261
+ reporter: string;
9262
+ host: string;
9263
+ path: string;
9264
+ createdAt: Date;
9265
+ request: {
9266
+ __typename: "Request";
9267
+ id: string;
9268
+ host: string;
9269
+ port: number;
9270
+ path: string;
9271
+ query: string;
9272
+ method: string;
9273
+ edited: boolean;
9274
+ isTls: boolean;
9275
+ sni?: string | undefined | null;
9276
+ length: number;
9277
+ alteration: Alteration;
9278
+ fileExtension?: string | undefined | null;
9279
+ source: Source;
9280
+ createdAt: Date;
9281
+ metadata: {
9282
+ __typename: "RequestMetadata";
9283
+ id: string;
9284
+ color?: string | undefined | null;
9285
+ };
9286
+ response?: {
9287
+ __typename: "Response";
9288
+ id: string;
9289
+ statusCode: number;
9290
+ roundtripTime: number;
9291
+ length: number;
9292
+ createdAt: Date;
9293
+ alteration: Alteration;
9294
+ edited: boolean;
9295
+ } | undefined | null;
9296
+ stream?: {
9297
+ id: string;
9298
+ } | undefined | null;
9299
+ };
9300
+ } | undefined | null;
9301
+ error?: {
9302
+ __typename: "OtherUserError";
9303
+ code: string;
9304
+ } | {
9305
+ __typename: "UnknownIdUserError";
9306
+ id: string;
9307
+ code: string;
9308
+ } | undefined | null;
9309
+ };
9310
+ };
9146
9311
  export type InterceptEntryFullFragment = {
9147
9312
  __typename: "InterceptEntry";
9148
9313
  id: string;
@@ -21264,6 +21429,16 @@ export type UpdatedViewerProfileSubscription = {
21264
21429
  };
21265
21430
  };
21266
21431
  };
21432
+ export type UpdatedViewerSettingsSubscriptionVariables = Exact<{
21433
+ [key: string]: never;
21434
+ }>;
21435
+ export type UpdatedViewerSettingsSubscription = {
21436
+ updatedViewerSettings: {
21437
+ settings: {
21438
+ data: unknown;
21439
+ };
21440
+ };
21441
+ };
21267
21442
  export type WorkflowQueryVariables = Exact<{
21268
21443
  id: Scalars["ID"]["input"];
21269
21444
  }>;
@@ -22041,8 +22216,10 @@ export declare const GetFindingsCountDocument = "\n query getFindingsCount($f
22041
22216
  export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
22042
22217
  export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\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 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 ";
22043
22218
  export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
22219
+ export declare const UpdatedFindingsDocument = "\n subscription updatedFindings($order: FindingOrderInput) {\n updatedFindings {\n findings {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\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 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 ";
22044
22220
  export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\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 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 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 ";
22045
- export declare const DeleteFindingsDocument = "\n mutation deleteFindings($ids: [ID!]!) {\n deleteFindings(ids: $ids) {\n deletedIds\n }\n}\n ";
22221
+ export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
22222
+ export declare const UpdateFindingDocument = "\n mutation updateFinding($id: ID!, $input: UpdateFindingInput!) {\n updateFinding(id: $id, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\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 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 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 ";
22046
22223
  export declare const InterceptEntriesDocument = "\n query interceptEntries($after: String, $first: Int, $before: String, $last: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntries(\n after: $after\n first: $first\n before: $before\n last: $last\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
22047
22224
  export declare const InterceptEntriesByOffsetDocument = "\n query interceptEntriesByOffset($limit: Int, $offset: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntriesByOffset(\n limit: $limit\n offset: $offset\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
22048
22225
  export declare const InterceptEntryDocument = "\n query interceptEntry($id: ID!) {\n interceptEntry(id: $id) {\n ...interceptEntryFull\n }\n}\n \n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 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 requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
@@ -22199,6 +22376,7 @@ export declare const UpdateViewerSettingsDocument = "\n mutation updateViewer
22199
22376
  export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n ... on CloudUser {\n __typename\n id\n profile {\n ...userProfileFull\n }\n }\n ... on GuestUser {\n __typename\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 ";
22200
22377
  export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n ... on CloudUser {\n __typename\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n __typename\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
22201
22378
  export declare const UpdatedViewerProfileDocument = "\n subscription updatedViewerProfile {\n updatedViewerProfile {\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 ";
22379
+ export declare const UpdatedViewerSettingsDocument = "\n subscription updatedViewerSettings {\n updatedViewerSettings {\n settings {\n data\n }\n }\n}\n ";
22202
22380
  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 ";
22203
22381
  export declare const WorkflowsStateDocument = "\n query workflowsState {\n workflows {\n ...workflowFull\n }\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\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 \n\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
22204
22382
  export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n ...workflowEdgeFull\n }\n }\n}\n \n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\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 ";
@@ -22343,8 +22521,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
22343
22521
  findingReporters(variables?: FindingReportersQueryVariables, options?: C): Promise<FindingReportersQuery>;
22344
22522
  createdFinding(variables?: CreatedFindingSubscriptionVariables, options?: C): AsyncIterable<CreatedFindingSubscription>;
22345
22523
  deletedFindings(variables?: DeletedFindingsSubscriptionVariables, options?: C): AsyncIterable<DeletedFindingsSubscription>;
22524
+ updatedFindings(variables?: UpdatedFindingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedFindingsSubscription>;
22346
22525
  createFinding(variables: CreateFindingMutationVariables, options?: C): Promise<CreateFindingMutation>;
22347
22526
  deleteFindings(variables: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
22527
+ updateFinding(variables: UpdateFindingMutationVariables, options?: C): Promise<UpdateFindingMutation>;
22348
22528
  interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
22349
22529
  interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
22350
22530
  interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
@@ -22501,6 +22681,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
22501
22681
  userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
22502
22682
  userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
22503
22683
  updatedViewerProfile(variables?: UpdatedViewerProfileSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerProfileSubscription>;
22684
+ updatedViewerSettings(variables?: UpdatedViewerSettingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerSettingsSubscription>;
22504
22685
  workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
22505
22686
  workflowsState(variables?: WorkflowsStateQueryVariables, options?: C): Promise<WorkflowsStateQuery>;
22506
22687
  createdWorkflow(variables?: CreatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<CreatedWorkflowSubscription>;