@caido/sdk-frontend 0.50.3-beta.2 → 0.50.3-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
|
@@ -1278,6 +1278,9 @@ export declare const EnvironmentVariableKind: {
|
|
|
1278
1278
|
readonly Secret: "SECRET";
|
|
1279
1279
|
};
|
|
1280
1280
|
export type EnvironmentVariableKind = (typeof EnvironmentVariableKind)[keyof typeof EnvironmentVariableKind];
|
|
1281
|
+
export type ExpiredViewerProfilePayload = {
|
|
1282
|
+
expiredAt: Scalars["Timestamp"]["output"];
|
|
1283
|
+
};
|
|
1281
1284
|
export type ExportFindingsError = OtherUserError | PermissionDeniedUserError;
|
|
1282
1285
|
export type ExportFindingsInput = {
|
|
1283
1286
|
filter: FilterClauseFindingInput;
|
|
@@ -3256,6 +3259,7 @@ export type StorePluginPackage = {
|
|
|
3256
3259
|
license: Scalars["String"]["output"];
|
|
3257
3260
|
manifestId: Scalars["ID"]["output"];
|
|
3258
3261
|
name?: Maybe<Scalars["String"]["output"]>;
|
|
3262
|
+
official: Scalars["Boolean"]["output"];
|
|
3259
3263
|
repository: Scalars["Url"]["output"];
|
|
3260
3264
|
version: Scalars["Version"]["output"];
|
|
3261
3265
|
};
|
|
@@ -3429,6 +3433,7 @@ export type SubscriptionRoot = {
|
|
|
3429
3433
|
deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
|
|
3430
3434
|
deletedUpstreamProxySocks: DeletedUpstreamProxySocksPayload;
|
|
3431
3435
|
deletedWorkflow: DeletedWorkflowPayload;
|
|
3436
|
+
expiredViewerProfile: ExpiredViewerProfilePayload;
|
|
3432
3437
|
finishedBackupTask: FinishedBackupTaskPayload;
|
|
3433
3438
|
finishedDeleteInterceptEntriesTask: FinishedDeleteInterceptEntriesTaskPayload;
|
|
3434
3439
|
finishedRestoreBackupTask: FinishedRestoreBackupTaskPayload;
|
|
@@ -21494,6 +21499,14 @@ export type UpdatedViewerSettingsSubscription = {
|
|
|
21494
21499
|
};
|
|
21495
21500
|
};
|
|
21496
21501
|
};
|
|
21502
|
+
export type ExpiredViewerProfileSubscriptionVariables = Exact<{
|
|
21503
|
+
[key: string]: never;
|
|
21504
|
+
}>;
|
|
21505
|
+
export type ExpiredViewerProfileSubscription = {
|
|
21506
|
+
expiredViewerProfile: {
|
|
21507
|
+
expiredAt: Date;
|
|
21508
|
+
};
|
|
21509
|
+
};
|
|
21497
21510
|
export type WorkflowQueryVariables = Exact<{
|
|
21498
21511
|
id: Scalars["ID"]["input"];
|
|
21499
21512
|
}>;
|
|
@@ -22435,6 +22448,7 @@ export declare const UserProfileDocument = "\n query userProfile {\n viewer
|
|
|
22435
22448
|
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n __typename\n ... on CloudUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
22436
22449
|
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 ";
|
|
22437
22450
|
export declare const UpdatedViewerSettingsDocument = "\n subscription updatedViewerSettings {\n updatedViewerSettings {\n settings {\n data\n }\n }\n}\n ";
|
|
22451
|
+
export declare const ExpiredViewerProfileDocument = "\n subscription expiredViewerProfile {\n expiredViewerProfile {\n expiredAt\n }\n}\n ";
|
|
22438
22452
|
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 ";
|
|
22439
22453
|
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 ";
|
|
22440
22454
|
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 ";
|
|
@@ -22738,6 +22752,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22738
22752
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|
|
22739
22753
|
updatedViewerProfile(variables?: UpdatedViewerProfileSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerProfileSubscription>;
|
|
22740
22754
|
updatedViewerSettings(variables?: UpdatedViewerSettingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerSettingsSubscription>;
|
|
22755
|
+
expiredViewerProfile(variables?: ExpiredViewerProfileSubscriptionVariables, options?: C): AsyncIterable<ExpiredViewerProfileSubscription>;
|
|
22741
22756
|
workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
|
|
22742
22757
|
workflowsState(variables?: WorkflowsStateQueryVariables, options?: C): Promise<WorkflowsStateQuery>;
|
|
22743
22758
|
createdWorkflow(variables?: CreatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<CreatedWorkflowSubscription>;
|