@caido/sdk-frontend 0.48.2-beta.8 → 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.8",
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",
@@ -21429,6 +21429,16 @@ export type UpdatedViewerProfileSubscription = {
21429
21429
  };
21430
21430
  };
21431
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
+ };
21432
21442
  export type WorkflowQueryVariables = Exact<{
21433
21443
  id: Scalars["ID"]["input"];
21434
21444
  }>;
@@ -22366,6 +22376,7 @@ export declare const UpdateViewerSettingsDocument = "\n mutation updateViewer
22366
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 ";
22367
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 ";
22368
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 ";
22369
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 ";
22370
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 ";
22371
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 ";
@@ -22670,6 +22681,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
22670
22681
  userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
22671
22682
  userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
22672
22683
  updatedViewerProfile(variables?: UpdatedViewerProfileSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerProfileSubscription>;
22684
+ updatedViewerSettings(variables?: UpdatedViewerSettingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerSettingsSubscription>;
22673
22685
  workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
22674
22686
  workflowsState(variables?: WorkflowsStateQueryVariables, options?: C): Promise<WorkflowsStateQuery>;
22675
22687
  createdWorkflow(variables?: CreatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<CreatedWorkflowSubscription>;