@caido/sdk-frontend 0.47.2-beta.3 → 0.47.2-beta.5
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
|
@@ -222,6 +222,9 @@ export declare const AuthenticationScope: {
|
|
|
222
222
|
readonly ProfileRead: "PROFILE_READ";
|
|
223
223
|
};
|
|
224
224
|
export type AuthenticationScope = (typeof AuthenticationScope)[keyof typeof AuthenticationScope];
|
|
225
|
+
export type AuthenticationState = {
|
|
226
|
+
allowGuests: Scalars["Boolean"]["output"];
|
|
227
|
+
};
|
|
225
228
|
export type AuthenticationToken = {
|
|
226
229
|
accessToken: Scalars["Token"]["output"];
|
|
227
230
|
expiresAt: Scalars["DateTime"]["output"];
|
|
@@ -634,11 +637,21 @@ export type CertificateUserError = UserError & {
|
|
|
634
637
|
code: Scalars["String"]["output"];
|
|
635
638
|
reason: CertificateErrorReason;
|
|
636
639
|
};
|
|
640
|
+
export type ClearSitemapEntriesPayload = {
|
|
641
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
642
|
+
};
|
|
637
643
|
export declare const CloudErrorReason: {
|
|
638
644
|
readonly Unavailable: "UNAVAILABLE";
|
|
639
645
|
readonly Unexpected: "UNEXPECTED";
|
|
640
646
|
};
|
|
641
647
|
export type CloudErrorReason = (typeof CloudErrorReason)[keyof typeof CloudErrorReason];
|
|
648
|
+
export type CloudUser = {
|
|
649
|
+
assistantUsage: AssistantUsage;
|
|
650
|
+
id: Scalars["ID"]["output"];
|
|
651
|
+
plugins: Array<PluginFrontend>;
|
|
652
|
+
profile: UserProfile;
|
|
653
|
+
settings?: Maybe<UserSettings>;
|
|
654
|
+
};
|
|
642
655
|
export type CloudUserError = UserError & {
|
|
643
656
|
code: Scalars["String"]["output"];
|
|
644
657
|
reason: CloudErrorReason;
|
|
@@ -1111,6 +1124,11 @@ export type DeleteReplaySessionsPayload = {
|
|
|
1111
1124
|
export type DeleteScopePayload = {
|
|
1112
1125
|
deletedId: Scalars["ID"]["output"];
|
|
1113
1126
|
};
|
|
1127
|
+
export type DeleteSitemapEntriesError = OtherUserError | UnknownIdUserError;
|
|
1128
|
+
export type DeleteSitemapEntriesPayload = {
|
|
1129
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1130
|
+
errors: Array<DeleteSitemapEntriesError>;
|
|
1131
|
+
};
|
|
1114
1132
|
export type DeleteTamperRuleCollectionPayload = {
|
|
1115
1133
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1116
1134
|
};
|
|
@@ -1205,6 +1223,10 @@ export type DeletedScopePayload = {
|
|
|
1205
1223
|
deletedScopeId: Scalars["ID"]["output"];
|
|
1206
1224
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1207
1225
|
};
|
|
1226
|
+
export type DeletedSitemapEntriesPayload = {
|
|
1227
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1228
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
1229
|
+
};
|
|
1208
1230
|
export type DeletedTamperRuleCollectionPayload = {
|
|
1209
1231
|
deletedCollectionId: Scalars["ID"]["output"];
|
|
1210
1232
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1381,6 +1403,16 @@ export type GlobalizeWorkflowPayload = {
|
|
|
1381
1403
|
error?: Maybe<GlobalizeWorkflowError>;
|
|
1382
1404
|
workflow?: Maybe<Workflow>;
|
|
1383
1405
|
};
|
|
1406
|
+
export type GuestAuthenticationError = OtherUserError | PermissionDeniedUserError;
|
|
1407
|
+
export type GuestAuthenticationPayload = {
|
|
1408
|
+
error?: Maybe<GuestAuthenticationError>;
|
|
1409
|
+
token?: Maybe<AuthenticationToken>;
|
|
1410
|
+
};
|
|
1411
|
+
export type GuestUser = {
|
|
1412
|
+
id: Scalars["ID"]["output"];
|
|
1413
|
+
plugins: Array<PluginFrontend>;
|
|
1414
|
+
settings?: Maybe<UserSettings>;
|
|
1415
|
+
};
|
|
1384
1416
|
export type HostedFile = {
|
|
1385
1417
|
createdAt: Scalars["DateTime"]["output"];
|
|
1386
1418
|
id: Scalars["ID"]["output"];
|
|
@@ -1583,6 +1615,7 @@ export type MutationRoot = {
|
|
|
1583
1615
|
cancelDataExportTask: CancelDataExportTaskPayload;
|
|
1584
1616
|
cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
|
|
1585
1617
|
cancelTask: CancelTaskPayload;
|
|
1618
|
+
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
1586
1619
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
1587
1620
|
createAutomateSession: CreateAutomateSessionPayload;
|
|
1588
1621
|
createBackup: CreateBackupPayload;
|
|
@@ -1619,6 +1652,7 @@ export type MutationRoot = {
|
|
|
1619
1652
|
deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
|
|
1620
1653
|
deleteReplaySessions: DeleteReplaySessionsPayload;
|
|
1621
1654
|
deleteScope: DeleteScopePayload;
|
|
1655
|
+
deleteSitemapEntries: DeleteSitemapEntriesPayload;
|
|
1622
1656
|
deleteTamperRule: DeleteTamperRulePayload;
|
|
1623
1657
|
deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
|
|
1624
1658
|
deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
|
|
@@ -1632,6 +1666,7 @@ export type MutationRoot = {
|
|
|
1632
1666
|
installBrowser: InstallBrowserPayload;
|
|
1633
1667
|
installPluginPackage: InstallPluginPackagePayload;
|
|
1634
1668
|
localizeWorkflow: LocalizeWorkflowPayload;
|
|
1669
|
+
loginAsGuest: GuestAuthenticationPayload;
|
|
1635
1670
|
logout: LogoutPayload;
|
|
1636
1671
|
moveReplaySession: MoveReplaySessionPayload;
|
|
1637
1672
|
moveTamperRule: MoveTamperRulePayload;
|
|
@@ -1827,6 +1862,9 @@ export type MutationRootDeleteReplaySessionsArgs = {
|
|
|
1827
1862
|
export type MutationRootDeleteScopeArgs = {
|
|
1828
1863
|
id: Scalars["ID"]["input"];
|
|
1829
1864
|
};
|
|
1865
|
+
export type MutationRootDeleteSitemapEntriesArgs = {
|
|
1866
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1867
|
+
};
|
|
1830
1868
|
export type MutationRootDeleteTamperRuleArgs = {
|
|
1831
1869
|
id: Scalars["ID"]["input"];
|
|
1832
1870
|
};
|
|
@@ -2144,6 +2182,7 @@ export type PauseInterceptPayload = {
|
|
|
2144
2182
|
};
|
|
2145
2183
|
export declare const PermissionDeniedErrorReason: {
|
|
2146
2184
|
readonly Entitlement: "ENTITLEMENT";
|
|
2185
|
+
readonly GuestUser: "GUEST_USER";
|
|
2147
2186
|
};
|
|
2148
2187
|
export type PermissionDeniedErrorReason = (typeof PermissionDeniedErrorReason)[keyof typeof PermissionDeniedErrorReason];
|
|
2149
2188
|
export type PermissionDeniedUserError = UserError & {
|
|
@@ -2280,6 +2319,7 @@ export type QueryRoot = {
|
|
|
2280
2319
|
assistantModels: Array<AssistantModel>;
|
|
2281
2320
|
assistantSession?: Maybe<AssistantSession>;
|
|
2282
2321
|
assistantSessions: Array<AssistantSession>;
|
|
2322
|
+
authenticationState: AuthenticationState;
|
|
2283
2323
|
automateEntry?: Maybe<AutomateEntry>;
|
|
2284
2324
|
automateSession?: Maybe<AutomateSession>;
|
|
2285
2325
|
automateSessions: AutomateSessionConnection;
|
|
@@ -3307,6 +3347,7 @@ export type SubscriptionRoot = {
|
|
|
3307
3347
|
deletedReplaySession: DeletedReplaySessionPayload;
|
|
3308
3348
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
3309
3349
|
deletedScope: DeletedScopePayload;
|
|
3350
|
+
deletedSitemapEntry: DeletedSitemapEntriesPayload;
|
|
3310
3351
|
deletedTamperRule: DeletedTamperRulePayload;
|
|
3311
3352
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
|
|
3312
3353
|
deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
|
|
@@ -4200,13 +4241,7 @@ export type UpstreamProxySocks = {
|
|
|
4200
4241
|
includeDns: Scalars["Boolean"]["output"];
|
|
4201
4242
|
rank: Scalars["Rank"]["output"];
|
|
4202
4243
|
};
|
|
4203
|
-
export type User =
|
|
4204
|
-
assistantUsage: AssistantUsage;
|
|
4205
|
-
id: Scalars["ID"]["output"];
|
|
4206
|
-
plugins: Array<PluginFrontend>;
|
|
4207
|
-
profile: UserProfile;
|
|
4208
|
-
settings?: Maybe<UserSettings>;
|
|
4209
|
-
};
|
|
4244
|
+
export type User = CloudUser | GuestUser;
|
|
4210
4245
|
export type UserEntitlement = {
|
|
4211
4246
|
name: Scalars["String"]["output"];
|
|
4212
4247
|
};
|
|
@@ -4399,11 +4434,14 @@ export type AssistantCloudStateQueryVariables = Exact<{
|
|
|
4399
4434
|
}>;
|
|
4400
4435
|
export type AssistantCloudStateQuery = {
|
|
4401
4436
|
viewer: {
|
|
4437
|
+
__typename: "CloudUser";
|
|
4402
4438
|
id: string;
|
|
4403
4439
|
assistantUsage: {
|
|
4404
4440
|
__typename: "AssistantUsage";
|
|
4405
4441
|
balance: number;
|
|
4406
4442
|
};
|
|
4443
|
+
} | {
|
|
4444
|
+
__typename: "GuestUser";
|
|
4407
4445
|
};
|
|
4408
4446
|
assistantModels: Array<{
|
|
4409
4447
|
__typename: "AssistantModel";
|
|
@@ -4657,6 +4695,14 @@ export type AuthenticationTokenFullFragment = {
|
|
|
4657
4695
|
refreshToken?: string | undefined | null;
|
|
4658
4696
|
scopes: Array<AuthenticationScope>;
|
|
4659
4697
|
};
|
|
4698
|
+
export type AuthenticationStateQueryVariables = Exact<{
|
|
4699
|
+
[key: string]: never;
|
|
4700
|
+
}>;
|
|
4701
|
+
export type AuthenticationStateQuery = {
|
|
4702
|
+
authenticationState: {
|
|
4703
|
+
allowGuests: boolean;
|
|
4704
|
+
};
|
|
4705
|
+
};
|
|
4660
4706
|
export type StartAuthenticationFlowMutationVariables = Exact<{
|
|
4661
4707
|
[key: string]: never;
|
|
4662
4708
|
}>;
|
|
@@ -4729,6 +4775,28 @@ export type LogoutMutation = {
|
|
|
4729
4775
|
} | undefined | null;
|
|
4730
4776
|
};
|
|
4731
4777
|
};
|
|
4778
|
+
export type LoginAsGuestMutationVariables = Exact<{
|
|
4779
|
+
[key: string]: never;
|
|
4780
|
+
}>;
|
|
4781
|
+
export type LoginAsGuestMutation = {
|
|
4782
|
+
loginAsGuest: {
|
|
4783
|
+
token?: {
|
|
4784
|
+
__typename: "AuthenticationToken";
|
|
4785
|
+
accessToken: string;
|
|
4786
|
+
expiresAt: Date;
|
|
4787
|
+
refreshToken?: string | undefined | null;
|
|
4788
|
+
scopes: Array<AuthenticationScope>;
|
|
4789
|
+
} | undefined | null;
|
|
4790
|
+
error?: {
|
|
4791
|
+
__typename: "OtherUserError";
|
|
4792
|
+
code: string;
|
|
4793
|
+
} | {
|
|
4794
|
+
__typename: "PermissionDeniedUserError";
|
|
4795
|
+
code: string;
|
|
4796
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
4797
|
+
} | undefined | null;
|
|
4798
|
+
};
|
|
4799
|
+
};
|
|
4732
4800
|
export type CreatedAuthenticationTokenSubscriptionVariables = Exact<{
|
|
4733
4801
|
requestId: Scalars["ID"]["input"];
|
|
4734
4802
|
}>;
|
|
@@ -19345,6 +19413,30 @@ export type SitemapEntryRequestsQuery = {
|
|
|
19345
19413
|
} | undefined | null;
|
|
19346
19414
|
} | undefined | null;
|
|
19347
19415
|
};
|
|
19416
|
+
export type DeleteSitemapEntriesMutationVariables = Exact<{
|
|
19417
|
+
ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
19418
|
+
}>;
|
|
19419
|
+
export type DeleteSitemapEntriesMutation = {
|
|
19420
|
+
deleteSitemapEntries: {
|
|
19421
|
+
deletedIds: Array<string>;
|
|
19422
|
+
errors: Array<{
|
|
19423
|
+
__typename: "OtherUserError";
|
|
19424
|
+
code: string;
|
|
19425
|
+
} | {
|
|
19426
|
+
__typename: "UnknownIdUserError";
|
|
19427
|
+
id: string;
|
|
19428
|
+
code: string;
|
|
19429
|
+
}>;
|
|
19430
|
+
};
|
|
19431
|
+
};
|
|
19432
|
+
export type ClearSitemapEntriesMutationVariables = Exact<{
|
|
19433
|
+
[key: string]: never;
|
|
19434
|
+
}>;
|
|
19435
|
+
export type ClearSitemapEntriesMutation = {
|
|
19436
|
+
clearSitemapEntries: {
|
|
19437
|
+
deletedIds: Array<string>;
|
|
19438
|
+
};
|
|
19439
|
+
};
|
|
19348
19440
|
export type CreatedSitemapEntrySubscriptionVariables = Exact<{
|
|
19349
19441
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
19350
19442
|
}>;
|
|
@@ -19476,6 +19568,15 @@ export type UpdatedSitemapEntrySubscription = {
|
|
|
19476
19568
|
};
|
|
19477
19569
|
};
|
|
19478
19570
|
};
|
|
19571
|
+
export type DeletedSitemapEntrySubscriptionVariables = Exact<{
|
|
19572
|
+
[key: string]: never;
|
|
19573
|
+
}>;
|
|
19574
|
+
export type DeletedSitemapEntrySubscription = {
|
|
19575
|
+
deletedSitemapEntry: {
|
|
19576
|
+
deletedIds: Array<string>;
|
|
19577
|
+
snapshot: number;
|
|
19578
|
+
};
|
|
19579
|
+
};
|
|
19479
19580
|
export type StreamMetaFragment = {
|
|
19480
19581
|
__typename: "Stream";
|
|
19481
19582
|
id: string;
|
|
@@ -20696,6 +20797,7 @@ export type UserProfileQueryVariables = Exact<{
|
|
|
20696
20797
|
}>;
|
|
20697
20798
|
export type UserProfileQuery = {
|
|
20698
20799
|
viewer: {
|
|
20800
|
+
__typename: "CloudUser";
|
|
20699
20801
|
id: string;
|
|
20700
20802
|
profile: {
|
|
20701
20803
|
__typename: "UserProfile";
|
|
@@ -20716,6 +20818,8 @@ export type UserProfileQuery = {
|
|
|
20716
20818
|
};
|
|
20717
20819
|
};
|
|
20718
20820
|
};
|
|
20821
|
+
} | {
|
|
20822
|
+
__typename: "GuestUser";
|
|
20719
20823
|
};
|
|
20720
20824
|
};
|
|
20721
20825
|
export type UserSettingsQueryVariables = Exact<{
|
|
@@ -20723,6 +20827,15 @@ export type UserSettingsQueryVariables = Exact<{
|
|
|
20723
20827
|
}>;
|
|
20724
20828
|
export type UserSettingsQuery = {
|
|
20725
20829
|
viewer: {
|
|
20830
|
+
__typename: "CloudUser";
|
|
20831
|
+
id: string;
|
|
20832
|
+
settings?: {
|
|
20833
|
+
__typename: "UserSettings";
|
|
20834
|
+
data: unknown;
|
|
20835
|
+
migrations: unknown;
|
|
20836
|
+
} | undefined | null;
|
|
20837
|
+
} | {
|
|
20838
|
+
__typename: "GuestUser";
|
|
20726
20839
|
id: string;
|
|
20727
20840
|
settings?: {
|
|
20728
20841
|
__typename: "UserSettings";
|
|
@@ -21384,7 +21497,7 @@ export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment wor
|
|
|
21384
21497
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
21385
21498
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
21386
21499
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
21387
|
-
export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n id\n
|
|
21500
|
+
export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n ... on CloudUser {\n __typename\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n ... on GuestUser {\n __typename\n }\n }\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n \n\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
21388
21501
|
export declare const SendAssistantMessageDocument = "\n mutation sendAssistantMessage($sessionId: ID!, $message: String) {\n sendAssistantMessage(sessionId: $sessionId, message: $message) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\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 \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
21389
21502
|
export declare const CreateAssistantSessionDocument = "\n mutation createAssistantSession($input: CreateAssistantSessionInput!) {\n createAssistantSession(input: $input) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
21390
21503
|
export declare const DeleteAssistantSessionDocument = "\n mutation deleteAssistantSession($id: ID!) {\n deleteAssistantSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -21393,9 +21506,11 @@ export declare const CreatedAssistantMessageDocument = "\n subscription creat
|
|
|
21393
21506
|
export declare const CreatedAssistantMessageTaskDocument = "\n subscription createdAssistantMessageTask {\n createdAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \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 \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
21394
21507
|
export declare const UpdatedAssistantMessageTaskDocument = "\n subscription updatedAssistantMessageTask {\n updatedAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \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 \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
21395
21508
|
export declare const UpdatedViewerAssistantUsageDocument = "\n subscription updatedViewerAssistantUsage {\n updatedViewerAssistantUsage {\n usage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
21509
|
+
export declare const AuthenticationStateDocument = "\n query authenticationState {\n authenticationState {\n allowGuests\n }\n}\n ";
|
|
21396
21510
|
export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21397
21511
|
export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21398
21512
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: 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 ";
|
|
21513
|
+
export declare const LoginAsGuestDocument = "\n mutation loginAsGuest {\n loginAsGuest {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: 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 ";
|
|
21399
21514
|
export declare const CreatedAuthenticationTokenDocument = "\n subscription createdAuthenticationToken($requestId: ID!) {\n createdAuthenticationToken(requestId: $requestId) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21400
21515
|
export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\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 automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21401
21516
|
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\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 automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\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}\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 ";
|
|
@@ -21617,8 +21732,11 @@ export declare const DeletedScopeDocument = "\n subscription deletedScope {\n
|
|
|
21617
21732
|
export declare const SitemapRootEntriesDocument = "\n query sitemapRootEntries($scopeId: ID) {\n sitemapRootEntries(scopeId: $scopeId) {\n edges {\n ...sitemapEntryEdgeMeta\n }\n }\n}\n \n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21618
21733
|
export declare const SitemapEntryChildrenDocument = "\n query sitemapEntryChildren($id: ID!) {\n sitemapDescendantEntries(parentId: $id, depth: DIRECT) {\n edges {\n cursor\n node {\n ...sitemapEntryMeta\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21619
21734
|
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\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 ";
|
|
21735
|
+
export declare const DeleteSitemapEntriesDocument = "\n mutation deleteSitemapEntries($ids: [ID!]!) {\n deleteSitemapEntries(ids: $ids) {\n deletedIds\n errors {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\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 ";
|
|
21736
|
+
export declare const ClearSitemapEntriesDocument = "\n mutation clearSitemapEntries {\n clearSitemapEntries {\n deletedIds\n }\n}\n ";
|
|
21620
21737
|
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21621
21738
|
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21739
|
+
export declare const DeletedSitemapEntryDocument = "\n subscription deletedSitemapEntry {\n deletedSitemapEntry {\n deletedIds\n snapshot\n }\n}\n ";
|
|
21622
21740
|
export declare const WebsocketStreamsBeforeDocument = "\n query websocketStreamsBefore($before: String, $last: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n before: $before\n last: $last\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21623
21741
|
export declare const WebsocketStreamsAfterDocument = "\n query websocketStreamsAfter($after: String, $first: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n after: $after\n first: $first\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21624
21742
|
export declare const WebsocketStreamsByOffsetDocument = "\n query websocketStreamsByOffset($offset: Int!, $limit: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streamsByOffset(\n offset: $offset\n limit: $limit\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -21654,8 +21772,8 @@ export declare const CreatedUpstreamProxySocksDocument = "\n subscription cre
|
|
|
21654
21772
|
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
21655
21773
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
21656
21774
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
21657
|
-
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n id\n
|
|
21658
|
-
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n id\n
|
|
21775
|
+
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 ";
|
|
21776
|
+
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 ";
|
|
21659
21777
|
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 ";
|
|
21660
21778
|
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 ";
|
|
21661
21779
|
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 ";
|
|
@@ -21686,9 +21804,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21686
21804
|
createdAssistantMessageTask(variables?: CreatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAssistantMessageTaskSubscription>;
|
|
21687
21805
|
updatedAssistantMessageTask(variables?: UpdatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedAssistantMessageTaskSubscription>;
|
|
21688
21806
|
updatedViewerAssistantUsage(variables?: UpdatedViewerAssistantUsageSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerAssistantUsageSubscription>;
|
|
21807
|
+
authenticationState(variables?: AuthenticationStateQueryVariables, options?: C): Promise<AuthenticationStateQuery>;
|
|
21689
21808
|
startAuthenticationFlow(variables?: StartAuthenticationFlowMutationVariables, options?: C): Promise<StartAuthenticationFlowMutation>;
|
|
21690
21809
|
refreshAuthenticationToken(variables: RefreshAuthenticationTokenMutationVariables, options?: C): Promise<RefreshAuthenticationTokenMutation>;
|
|
21691
21810
|
logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
|
|
21811
|
+
loginAsGuest(variables?: LoginAsGuestMutationVariables, options?: C): Promise<LoginAsGuestMutation>;
|
|
21692
21812
|
createdAuthenticationToken(variables: CreatedAuthenticationTokenSubscriptionVariables, options?: C): AsyncIterable<CreatedAuthenticationTokenSubscription>;
|
|
21693
21813
|
automateEntry(variables: AutomateEntryQueryVariables, options?: C): Promise<AutomateEntryQuery>;
|
|
21694
21814
|
automateEntryRequests(variables: AutomateEntryRequestsQueryVariables, options?: C): Promise<AutomateEntryRequestsQuery>;
|
|
@@ -21910,8 +22030,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21910
22030
|
sitemapRootEntries(variables?: SitemapRootEntriesQueryVariables, options?: C): Promise<SitemapRootEntriesQuery>;
|
|
21911
22031
|
sitemapEntryChildren(variables: SitemapEntryChildrenQueryVariables, options?: C): Promise<SitemapEntryChildrenQuery>;
|
|
21912
22032
|
sitemapEntryRequests(variables: SitemapEntryRequestsQueryVariables, options?: C): Promise<SitemapEntryRequestsQuery>;
|
|
22033
|
+
deleteSitemapEntries(variables: DeleteSitemapEntriesMutationVariables, options?: C): Promise<DeleteSitemapEntriesMutation>;
|
|
22034
|
+
clearSitemapEntries(variables?: ClearSitemapEntriesMutationVariables, options?: C): Promise<ClearSitemapEntriesMutation>;
|
|
21913
22035
|
createdSitemapEntry(variables?: CreatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedSitemapEntrySubscription>;
|
|
21914
22036
|
updatedSitemapEntry(variables?: UpdatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<UpdatedSitemapEntrySubscription>;
|
|
22037
|
+
deletedSitemapEntry(variables?: DeletedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<DeletedSitemapEntrySubscription>;
|
|
21915
22038
|
websocketStreamsBefore(variables: WebsocketStreamsBeforeQueryVariables, options?: C): Promise<WebsocketStreamsBeforeQuery>;
|
|
21916
22039
|
websocketStreamsAfter(variables: WebsocketStreamsAfterQueryVariables, options?: C): Promise<WebsocketStreamsAfterQuery>;
|
|
21917
22040
|
websocketStreamsByOffset(variables: WebsocketStreamsByOffsetQueryVariables, options?: C): Promise<WebsocketStreamsByOffsetQuery>;
|