@caido/sdk-frontend 0.42.1-beta.4 → 0.42.1-beta.6
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 +1 -1
- package/src/types/__generated__/graphql-sdk.d.ts +1448 -1448
- package/src/types/files.d.ts +60 -0
- package/src/types/index.d.ts +6 -0
|
@@ -3515,216 +3515,303 @@ export type AssistantUsageFullFragment = {
|
|
|
3515
3515
|
__typename: "AssistantUsage";
|
|
3516
3516
|
balance: number;
|
|
3517
3517
|
};
|
|
3518
|
-
export type
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
expiresAt: Date;
|
|
3529
|
-
refreshToken?: string | undefined | null;
|
|
3530
|
-
scopes: Array<AuthenticationScope>;
|
|
3518
|
+
export type AssistantModelsQueryVariables = Exact<{
|
|
3519
|
+
[key: string]: never;
|
|
3520
|
+
}>;
|
|
3521
|
+
export type AssistantModelsQuery = {
|
|
3522
|
+
assistantModels: Array<{
|
|
3523
|
+
__typename: "AssistantModel";
|
|
3524
|
+
id: string;
|
|
3525
|
+
name: string;
|
|
3526
|
+
tokenCredit: number;
|
|
3527
|
+
}>;
|
|
3531
3528
|
};
|
|
3532
|
-
export type
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3529
|
+
export type AssistantSessionsQueryVariables = Exact<{
|
|
3530
|
+
[key: string]: never;
|
|
3531
|
+
}>;
|
|
3532
|
+
export type AssistantSessionsQuery = {
|
|
3533
|
+
assistantSessions: Array<{
|
|
3534
|
+
__typename: "AssistantSession";
|
|
3538
3535
|
id: string;
|
|
3539
|
-
|
|
3536
|
+
modelId: string;
|
|
3537
|
+
name: string;
|
|
3538
|
+
updatedAt: Date;
|
|
3539
|
+
createdAt: Date;
|
|
3540
|
+
}>;
|
|
3540
3541
|
};
|
|
3541
|
-
export type
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
backoff: number;
|
|
3559
|
-
maximumRetries: number;
|
|
3560
|
-
};
|
|
3561
|
-
payloads: Array<{
|
|
3562
|
-
__typename: "AutomatePayload";
|
|
3563
|
-
options: {
|
|
3564
|
-
__typename: "AutomateHostedFilePayload";
|
|
3542
|
+
export type AssistantSessionQueryVariables = Exact<{
|
|
3543
|
+
id: Scalars["ID"]["input"];
|
|
3544
|
+
}>;
|
|
3545
|
+
export type AssistantSessionQuery = {
|
|
3546
|
+
assistantSession?: {
|
|
3547
|
+
__typename: "AssistantSession";
|
|
3548
|
+
id: string;
|
|
3549
|
+
modelId: string;
|
|
3550
|
+
name: string;
|
|
3551
|
+
updatedAt: Date;
|
|
3552
|
+
createdAt: Date;
|
|
3553
|
+
messages: Array<{
|
|
3554
|
+
__typename: "AssistantMessage";
|
|
3555
|
+
id: string;
|
|
3556
|
+
content: string;
|
|
3557
|
+
role: AssistantMessageRole;
|
|
3558
|
+
session: {
|
|
3565
3559
|
id: string;
|
|
3566
|
-
delimiter?: string | undefined | null;
|
|
3567
|
-
} | {
|
|
3568
|
-
__typename: "AutomateNullPayload";
|
|
3569
|
-
quantity: number;
|
|
3570
|
-
} | {
|
|
3571
|
-
__typename: "AutomateNumberPayload";
|
|
3572
|
-
range: {
|
|
3573
|
-
start: number;
|
|
3574
|
-
end: number;
|
|
3575
|
-
};
|
|
3576
|
-
} | {
|
|
3577
|
-
__typename: "AutomateSimpleListPayload";
|
|
3578
|
-
list: Array<string>;
|
|
3579
3560
|
};
|
|
3580
|
-
preprocessors: Array<{
|
|
3581
|
-
__typename: "AutomatePreprocessor";
|
|
3582
|
-
options: {
|
|
3583
|
-
__typename: "AutomatePrefixPreprocessor";
|
|
3584
|
-
value: string;
|
|
3585
|
-
} | {
|
|
3586
|
-
__typename: "AutomateSuffixPreprocessor";
|
|
3587
|
-
value: string;
|
|
3588
|
-
} | {
|
|
3589
|
-
__typename: "AutomateUrlEncodePreprocessor";
|
|
3590
|
-
charset?: string | undefined | null;
|
|
3591
|
-
nonAscii: boolean;
|
|
3592
|
-
} | {
|
|
3593
|
-
__typename: "AutomateWorkflowPreprocessor";
|
|
3594
|
-
id: string;
|
|
3595
|
-
};
|
|
3596
|
-
}>;
|
|
3597
3561
|
}>;
|
|
3598
|
-
|
|
3599
|
-
__typename: "AutomatePlaceholder";
|
|
3600
|
-
start: number;
|
|
3601
|
-
end: number;
|
|
3602
|
-
}>;
|
|
3603
|
-
};
|
|
3604
|
-
session: {
|
|
3605
|
-
id: string;
|
|
3606
|
-
};
|
|
3607
|
-
};
|
|
3608
|
-
export type AutomateEntryRequestPayloadFullFragment = {
|
|
3609
|
-
__typename: "AutomateEntryRequestPayload";
|
|
3610
|
-
position?: number | undefined | null;
|
|
3611
|
-
raw?: string | undefined | null;
|
|
3562
|
+
} | undefined | null;
|
|
3612
3563
|
};
|
|
3613
|
-
export type
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
request: {
|
|
3619
|
-
__typename: "Request";
|
|
3564
|
+
export type AssistantUsageQueryVariables = Exact<{
|
|
3565
|
+
[key: string]: never;
|
|
3566
|
+
}>;
|
|
3567
|
+
export type AssistantUsageQuery = {
|
|
3568
|
+
viewer: {
|
|
3620
3569
|
id: string;
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
query: string;
|
|
3625
|
-
method: string;
|
|
3626
|
-
edited: boolean;
|
|
3627
|
-
isTls: boolean;
|
|
3628
|
-
length: number;
|
|
3629
|
-
alteration: Alteration;
|
|
3630
|
-
fileExtension?: string | undefined | null;
|
|
3631
|
-
source: Source;
|
|
3632
|
-
createdAt: Date;
|
|
3633
|
-
metadata: {
|
|
3634
|
-
__typename: "RequestMetadata";
|
|
3635
|
-
id: string;
|
|
3636
|
-
color?: string | undefined | null;
|
|
3570
|
+
assistantUsage: {
|
|
3571
|
+
__typename: "AssistantUsage";
|
|
3572
|
+
balance: number;
|
|
3637
3573
|
};
|
|
3638
|
-
response?: {
|
|
3639
|
-
__typename: "Response";
|
|
3640
|
-
id: string;
|
|
3641
|
-
statusCode: number;
|
|
3642
|
-
roundtripTime: number;
|
|
3643
|
-
length: number;
|
|
3644
|
-
createdAt: Date;
|
|
3645
|
-
alteration: Alteration;
|
|
3646
|
-
edited: boolean;
|
|
3647
|
-
} | undefined | null;
|
|
3648
3574
|
};
|
|
3649
|
-
payloads: Array<{
|
|
3650
|
-
__typename: "AutomateEntryRequestPayload";
|
|
3651
|
-
position?: number | undefined | null;
|
|
3652
|
-
raw?: string | undefined | null;
|
|
3653
|
-
}>;
|
|
3654
3575
|
};
|
|
3655
|
-
export type
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3576
|
+
export type SendAssistantMessageMutationVariables = Exact<{
|
|
3577
|
+
sessionId: Scalars["ID"]["input"];
|
|
3578
|
+
message?: InputMaybe<Scalars["String"]["input"]>;
|
|
3579
|
+
}>;
|
|
3580
|
+
export type SendAssistantMessageMutation = {
|
|
3581
|
+
sendAssistantMessage: {
|
|
3582
|
+
error?: {
|
|
3583
|
+
__typename: "OtherUserError";
|
|
3584
|
+
code: string;
|
|
3585
|
+
} | {
|
|
3586
|
+
__typename: "PermissionDeniedUserError";
|
|
3587
|
+
code: string;
|
|
3588
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
3589
|
+
} | {
|
|
3590
|
+
__typename: "TaskInProgressUserError";
|
|
3591
|
+
taskId: string;
|
|
3592
|
+
code: string;
|
|
3593
|
+
} | undefined | null;
|
|
3594
|
+
task?: {
|
|
3595
|
+
__typename: "AssistantMessageTask";
|
|
3665
3596
|
id: string;
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
path: string;
|
|
3669
|
-
query: string;
|
|
3670
|
-
method: string;
|
|
3671
|
-
edited: boolean;
|
|
3672
|
-
isTls: boolean;
|
|
3673
|
-
length: number;
|
|
3674
|
-
alteration: Alteration;
|
|
3675
|
-
fileExtension?: string | undefined | null;
|
|
3676
|
-
source: Source;
|
|
3677
|
-
createdAt: Date;
|
|
3678
|
-
metadata: {
|
|
3679
|
-
__typename: "RequestMetadata";
|
|
3597
|
+
message?: {
|
|
3598
|
+
__typename: "AssistantMessage";
|
|
3680
3599
|
id: string;
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3600
|
+
content: string;
|
|
3601
|
+
role: AssistantMessageRole;
|
|
3602
|
+
session: {
|
|
3603
|
+
id: string;
|
|
3604
|
+
};
|
|
3605
|
+
} | undefined | null;
|
|
3606
|
+
session: {
|
|
3607
|
+
__typename: "AssistantSession";
|
|
3685
3608
|
id: string;
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3609
|
+
modelId: string;
|
|
3610
|
+
name: string;
|
|
3611
|
+
updatedAt: Date;
|
|
3689
3612
|
createdAt: Date;
|
|
3690
|
-
|
|
3691
|
-
|
|
3613
|
+
};
|
|
3614
|
+
error?: {
|
|
3615
|
+
__typename: "AssistantUserError";
|
|
3616
|
+
code: string;
|
|
3617
|
+
assistantReason: AssistantErrorReason;
|
|
3618
|
+
} | {
|
|
3619
|
+
__typename: "AuthenticationUserError";
|
|
3620
|
+
reason: AuthenticationErrorReason;
|
|
3621
|
+
code: string;
|
|
3622
|
+
} | {
|
|
3623
|
+
__typename: "OtherUserError";
|
|
3624
|
+
code: string;
|
|
3692
3625
|
} | undefined | null;
|
|
3693
|
-
};
|
|
3694
|
-
payloads: Array<{
|
|
3695
|
-
__typename: "AutomateEntryRequestPayload";
|
|
3696
|
-
position?: number | undefined | null;
|
|
3697
|
-
raw?: string | undefined | null;
|
|
3698
|
-
}>;
|
|
3626
|
+
} | undefined | null;
|
|
3699
3627
|
};
|
|
3700
3628
|
};
|
|
3701
|
-
export type
|
|
3702
|
-
|
|
3629
|
+
export type CreateAssistantSessionMutationVariables = Exact<{
|
|
3630
|
+
input: CreateAssistantSessionInput;
|
|
3631
|
+
}>;
|
|
3632
|
+
export type CreateAssistantSessionMutation = {
|
|
3633
|
+
createAssistantSession: {
|
|
3634
|
+
error?: {
|
|
3635
|
+
__typename: "OtherUserError";
|
|
3636
|
+
code: string;
|
|
3637
|
+
} | {
|
|
3638
|
+
__typename: "PermissionDeniedUserError";
|
|
3639
|
+
code: string;
|
|
3640
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
3641
|
+
} | undefined | null;
|
|
3642
|
+
session?: {
|
|
3643
|
+
__typename: "AssistantSession";
|
|
3644
|
+
id: string;
|
|
3645
|
+
modelId: string;
|
|
3646
|
+
name: string;
|
|
3647
|
+
updatedAt: Date;
|
|
3648
|
+
createdAt: Date;
|
|
3649
|
+
} | undefined | null;
|
|
3650
|
+
};
|
|
3651
|
+
};
|
|
3652
|
+
export type DeleteAssistantSessionMutationVariables = Exact<{
|
|
3653
|
+
id: Scalars["ID"]["input"];
|
|
3654
|
+
}>;
|
|
3655
|
+
export type DeleteAssistantSessionMutation = {
|
|
3656
|
+
deleteAssistantSession: {
|
|
3657
|
+
deletedId?: string | undefined | null;
|
|
3658
|
+
};
|
|
3659
|
+
};
|
|
3660
|
+
export type RenameAssistantSessionMutationVariables = Exact<{
|
|
3661
|
+
id: Scalars["ID"]["input"];
|
|
3662
|
+
name: Scalars["String"]["input"];
|
|
3663
|
+
}>;
|
|
3664
|
+
export type RenameAssistantSessionMutation = {
|
|
3665
|
+
renameAssistantSession: {
|
|
3666
|
+
session?: {
|
|
3667
|
+
__typename: "AssistantSession";
|
|
3668
|
+
id: string;
|
|
3669
|
+
modelId: string;
|
|
3670
|
+
name: string;
|
|
3671
|
+
updatedAt: Date;
|
|
3672
|
+
createdAt: Date;
|
|
3673
|
+
} | undefined | null;
|
|
3674
|
+
};
|
|
3675
|
+
};
|
|
3676
|
+
export type CreatedAssistantMessageSubscriptionVariables = Exact<{
|
|
3677
|
+
[key: string]: never;
|
|
3678
|
+
}>;
|
|
3679
|
+
export type CreatedAssistantMessageSubscription = {
|
|
3680
|
+
createdAssistantMessage: {
|
|
3681
|
+
snapshot: number;
|
|
3682
|
+
messageEdge: {
|
|
3683
|
+
cursor: string;
|
|
3684
|
+
node: {
|
|
3685
|
+
__typename: "AssistantMessage";
|
|
3686
|
+
id: string;
|
|
3687
|
+
content: string;
|
|
3688
|
+
role: AssistantMessageRole;
|
|
3689
|
+
session: {
|
|
3690
|
+
id: string;
|
|
3691
|
+
};
|
|
3692
|
+
};
|
|
3693
|
+
};
|
|
3694
|
+
};
|
|
3695
|
+
};
|
|
3696
|
+
export type CreatedAssistantMessageTaskSubscriptionVariables = Exact<{
|
|
3697
|
+
[key: string]: never;
|
|
3698
|
+
}>;
|
|
3699
|
+
export type CreatedAssistantMessageTaskSubscription = {
|
|
3700
|
+
createdAssistantMessageTask: {
|
|
3701
|
+
task: {
|
|
3702
|
+
__typename: "AssistantMessageTask";
|
|
3703
|
+
id: string;
|
|
3704
|
+
message?: {
|
|
3705
|
+
__typename: "AssistantMessage";
|
|
3706
|
+
id: string;
|
|
3707
|
+
content: string;
|
|
3708
|
+
role: AssistantMessageRole;
|
|
3709
|
+
session: {
|
|
3710
|
+
id: string;
|
|
3711
|
+
};
|
|
3712
|
+
} | undefined | null;
|
|
3713
|
+
session: {
|
|
3714
|
+
__typename: "AssistantSession";
|
|
3715
|
+
id: string;
|
|
3716
|
+
modelId: string;
|
|
3717
|
+
name: string;
|
|
3718
|
+
updatedAt: Date;
|
|
3719
|
+
createdAt: Date;
|
|
3720
|
+
};
|
|
3721
|
+
error?: {
|
|
3722
|
+
__typename: "AssistantUserError";
|
|
3723
|
+
code: string;
|
|
3724
|
+
assistantReason: AssistantErrorReason;
|
|
3725
|
+
} | {
|
|
3726
|
+
__typename: "AuthenticationUserError";
|
|
3727
|
+
reason: AuthenticationErrorReason;
|
|
3728
|
+
code: string;
|
|
3729
|
+
} | {
|
|
3730
|
+
__typename: "OtherUserError";
|
|
3731
|
+
code: string;
|
|
3732
|
+
} | undefined | null;
|
|
3733
|
+
};
|
|
3734
|
+
};
|
|
3735
|
+
};
|
|
3736
|
+
export type UpdatedAssistantMessageTaskSubscriptionVariables = Exact<{
|
|
3737
|
+
[key: string]: never;
|
|
3738
|
+
}>;
|
|
3739
|
+
export type UpdatedAssistantMessageTaskSubscription = {
|
|
3740
|
+
updatedAssistantMessageTask: {
|
|
3741
|
+
task: {
|
|
3742
|
+
__typename: "AssistantMessageTask";
|
|
3743
|
+
id: string;
|
|
3744
|
+
message?: {
|
|
3745
|
+
__typename: "AssistantMessage";
|
|
3746
|
+
id: string;
|
|
3747
|
+
content: string;
|
|
3748
|
+
role: AssistantMessageRole;
|
|
3749
|
+
session: {
|
|
3750
|
+
id: string;
|
|
3751
|
+
};
|
|
3752
|
+
} | undefined | null;
|
|
3753
|
+
session: {
|
|
3754
|
+
__typename: "AssistantSession";
|
|
3755
|
+
id: string;
|
|
3756
|
+
modelId: string;
|
|
3757
|
+
name: string;
|
|
3758
|
+
updatedAt: Date;
|
|
3759
|
+
createdAt: Date;
|
|
3760
|
+
};
|
|
3761
|
+
error?: {
|
|
3762
|
+
__typename: "AssistantUserError";
|
|
3763
|
+
code: string;
|
|
3764
|
+
assistantReason: AssistantErrorReason;
|
|
3765
|
+
} | {
|
|
3766
|
+
__typename: "AuthenticationUserError";
|
|
3767
|
+
reason: AuthenticationErrorReason;
|
|
3768
|
+
code: string;
|
|
3769
|
+
} | {
|
|
3770
|
+
__typename: "OtherUserError";
|
|
3771
|
+
code: string;
|
|
3772
|
+
} | undefined | null;
|
|
3773
|
+
};
|
|
3774
|
+
};
|
|
3775
|
+
};
|
|
3776
|
+
export type UpdatedViewerAssistantUsageSubscriptionVariables = Exact<{
|
|
3777
|
+
[key: string]: never;
|
|
3778
|
+
}>;
|
|
3779
|
+
export type UpdatedViewerAssistantUsageSubscription = {
|
|
3780
|
+
updatedViewerAssistantUsage: {
|
|
3781
|
+
usage: {
|
|
3782
|
+
__typename: "AssistantUsage";
|
|
3783
|
+
balance: number;
|
|
3784
|
+
};
|
|
3785
|
+
};
|
|
3786
|
+
};
|
|
3787
|
+
export type AuthenticationRequestFullFragment = {
|
|
3788
|
+
__typename: "AuthenticationRequest";
|
|
3789
|
+
id: string;
|
|
3790
|
+
expiresAt: Date;
|
|
3791
|
+
userCode: string;
|
|
3792
|
+
verificationUrl: string;
|
|
3793
|
+
};
|
|
3794
|
+
export type AuthenticationTokenFullFragment = {
|
|
3795
|
+
__typename: "AuthenticationToken";
|
|
3796
|
+
accessToken: string;
|
|
3797
|
+
expiresAt: Date;
|
|
3798
|
+
refreshToken?: string | undefined | null;
|
|
3799
|
+
scopes: Array<AuthenticationScope>;
|
|
3800
|
+
};
|
|
3801
|
+
export type AutomateEntryMetaFragment = {
|
|
3802
|
+
__typename: "AutomateEntry";
|
|
3703
3803
|
id: string;
|
|
3704
3804
|
name: string;
|
|
3705
3805
|
createdAt: Date;
|
|
3706
|
-
|
|
3707
|
-
__typename: "AutomateEntry";
|
|
3806
|
+
session: {
|
|
3708
3807
|
id: string;
|
|
3709
|
-
|
|
3710
|
-
createdAt: Date;
|
|
3711
|
-
session: {
|
|
3712
|
-
id: string;
|
|
3713
|
-
};
|
|
3714
|
-
}>;
|
|
3808
|
+
};
|
|
3715
3809
|
};
|
|
3716
|
-
export type
|
|
3717
|
-
__typename: "
|
|
3718
|
-
raw: string;
|
|
3810
|
+
export type AutomateEntryFullFragment = {
|
|
3811
|
+
__typename: "AutomateEntry";
|
|
3719
3812
|
id: string;
|
|
3720
3813
|
name: string;
|
|
3721
3814
|
createdAt: Date;
|
|
3722
|
-
connection: {
|
|
3723
|
-
__typename: "ConnectionInfo";
|
|
3724
|
-
host: string;
|
|
3725
|
-
port: number;
|
|
3726
|
-
isTls: boolean;
|
|
3727
|
-
};
|
|
3728
3815
|
settings: {
|
|
3729
3816
|
__typename: "AutomateSettings";
|
|
3730
3817
|
closeConnection: boolean;
|
|
@@ -3783,24 +3870,206 @@ export type AutomateSessionFullFragment = {
|
|
|
3783
3870
|
end: number;
|
|
3784
3871
|
}>;
|
|
3785
3872
|
};
|
|
3786
|
-
|
|
3787
|
-
__typename: "AutomateEntry";
|
|
3873
|
+
session: {
|
|
3788
3874
|
id: string;
|
|
3789
|
-
|
|
3875
|
+
};
|
|
3876
|
+
};
|
|
3877
|
+
export type AutomateEntryRequestPayloadFullFragment = {
|
|
3878
|
+
__typename: "AutomateEntryRequestPayload";
|
|
3879
|
+
position?: number | undefined | null;
|
|
3880
|
+
raw?: string | undefined | null;
|
|
3881
|
+
};
|
|
3882
|
+
export type AutomateEntryRequestMetaFragment = {
|
|
3883
|
+
__typename: "AutomateEntryRequest";
|
|
3884
|
+
sequenceId: string;
|
|
3885
|
+
automateEntryId: string;
|
|
3886
|
+
error?: string | undefined | null;
|
|
3887
|
+
request: {
|
|
3888
|
+
__typename: "Request";
|
|
3889
|
+
id: string;
|
|
3890
|
+
host: string;
|
|
3891
|
+
port: number;
|
|
3892
|
+
path: string;
|
|
3893
|
+
query: string;
|
|
3894
|
+
method: string;
|
|
3895
|
+
edited: boolean;
|
|
3896
|
+
isTls: boolean;
|
|
3897
|
+
length: number;
|
|
3898
|
+
alteration: Alteration;
|
|
3899
|
+
fileExtension?: string | undefined | null;
|
|
3900
|
+
source: Source;
|
|
3790
3901
|
createdAt: Date;
|
|
3791
|
-
|
|
3902
|
+
metadata: {
|
|
3903
|
+
__typename: "RequestMetadata";
|
|
3792
3904
|
id: string;
|
|
3905
|
+
color?: string | undefined | null;
|
|
3793
3906
|
};
|
|
3907
|
+
response?: {
|
|
3908
|
+
__typename: "Response";
|
|
3909
|
+
id: string;
|
|
3910
|
+
statusCode: number;
|
|
3911
|
+
roundtripTime: number;
|
|
3912
|
+
length: number;
|
|
3913
|
+
createdAt: Date;
|
|
3914
|
+
alteration: Alteration;
|
|
3915
|
+
edited: boolean;
|
|
3916
|
+
} | undefined | null;
|
|
3917
|
+
};
|
|
3918
|
+
payloads: Array<{
|
|
3919
|
+
__typename: "AutomateEntryRequestPayload";
|
|
3920
|
+
position?: number | undefined | null;
|
|
3921
|
+
raw?: string | undefined | null;
|
|
3794
3922
|
}>;
|
|
3795
3923
|
};
|
|
3796
|
-
export type
|
|
3797
|
-
__typename: "
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3924
|
+
export type AutomateEntryRequestEdgeMetaFragment = {
|
|
3925
|
+
__typename: "AutomateEntryRequestEdge";
|
|
3926
|
+
cursor: string;
|
|
3927
|
+
node: {
|
|
3928
|
+
__typename: "AutomateEntryRequest";
|
|
3929
|
+
sequenceId: string;
|
|
3930
|
+
automateEntryId: string;
|
|
3931
|
+
error?: string | undefined | null;
|
|
3932
|
+
request: {
|
|
3933
|
+
__typename: "Request";
|
|
3934
|
+
id: string;
|
|
3935
|
+
host: string;
|
|
3936
|
+
port: number;
|
|
3937
|
+
path: string;
|
|
3938
|
+
query: string;
|
|
3939
|
+
method: string;
|
|
3940
|
+
edited: boolean;
|
|
3941
|
+
isTls: boolean;
|
|
3942
|
+
length: number;
|
|
3943
|
+
alteration: Alteration;
|
|
3944
|
+
fileExtension?: string | undefined | null;
|
|
3945
|
+
source: Source;
|
|
3946
|
+
createdAt: Date;
|
|
3947
|
+
metadata: {
|
|
3948
|
+
__typename: "RequestMetadata";
|
|
3949
|
+
id: string;
|
|
3950
|
+
color?: string | undefined | null;
|
|
3951
|
+
};
|
|
3952
|
+
response?: {
|
|
3953
|
+
__typename: "Response";
|
|
3954
|
+
id: string;
|
|
3955
|
+
statusCode: number;
|
|
3956
|
+
roundtripTime: number;
|
|
3957
|
+
length: number;
|
|
3958
|
+
createdAt: Date;
|
|
3959
|
+
alteration: Alteration;
|
|
3960
|
+
edited: boolean;
|
|
3961
|
+
} | undefined | null;
|
|
3962
|
+
};
|
|
3963
|
+
payloads: Array<{
|
|
3964
|
+
__typename: "AutomateEntryRequestPayload";
|
|
3965
|
+
position?: number | undefined | null;
|
|
3966
|
+
raw?: string | undefined | null;
|
|
3967
|
+
}>;
|
|
3968
|
+
};
|
|
3969
|
+
};
|
|
3970
|
+
export type AutomateSessionMetaFragment = {
|
|
3971
|
+
__typename: "AutomateSession";
|
|
3972
|
+
id: string;
|
|
3973
|
+
name: string;
|
|
3974
|
+
createdAt: Date;
|
|
3975
|
+
entries: Array<{
|
|
3976
|
+
__typename: "AutomateEntry";
|
|
3977
|
+
id: string;
|
|
3978
|
+
name: string;
|
|
3979
|
+
createdAt: Date;
|
|
3980
|
+
session: {
|
|
3981
|
+
id: string;
|
|
3982
|
+
};
|
|
3983
|
+
}>;
|
|
3984
|
+
};
|
|
3985
|
+
export type AutomateSessionFullFragment = {
|
|
3986
|
+
__typename: "AutomateSession";
|
|
3987
|
+
raw: string;
|
|
3988
|
+
id: string;
|
|
3989
|
+
name: string;
|
|
3990
|
+
createdAt: Date;
|
|
3991
|
+
connection: {
|
|
3992
|
+
__typename: "ConnectionInfo";
|
|
3993
|
+
host: string;
|
|
3994
|
+
port: number;
|
|
3995
|
+
isTls: boolean;
|
|
3996
|
+
};
|
|
3997
|
+
settings: {
|
|
3998
|
+
__typename: "AutomateSettings";
|
|
3999
|
+
closeConnection: boolean;
|
|
4000
|
+
updateContentLength: boolean;
|
|
4001
|
+
strategy: AutomatePayloadStrategy;
|
|
4002
|
+
concurrency: {
|
|
4003
|
+
__typename: "AutomateConcurrencySetting";
|
|
4004
|
+
delay: number;
|
|
4005
|
+
workers: number;
|
|
4006
|
+
};
|
|
4007
|
+
retryOnFailure: {
|
|
4008
|
+
__typename: "AutomateRetryOnFailureSetting";
|
|
4009
|
+
backoff: number;
|
|
4010
|
+
maximumRetries: number;
|
|
4011
|
+
};
|
|
4012
|
+
payloads: Array<{
|
|
4013
|
+
__typename: "AutomatePayload";
|
|
4014
|
+
options: {
|
|
4015
|
+
__typename: "AutomateHostedFilePayload";
|
|
4016
|
+
id: string;
|
|
4017
|
+
delimiter?: string | undefined | null;
|
|
4018
|
+
} | {
|
|
4019
|
+
__typename: "AutomateNullPayload";
|
|
4020
|
+
quantity: number;
|
|
4021
|
+
} | {
|
|
4022
|
+
__typename: "AutomateNumberPayload";
|
|
4023
|
+
range: {
|
|
4024
|
+
start: number;
|
|
4025
|
+
end: number;
|
|
4026
|
+
};
|
|
4027
|
+
} | {
|
|
4028
|
+
__typename: "AutomateSimpleListPayload";
|
|
4029
|
+
list: Array<string>;
|
|
4030
|
+
};
|
|
4031
|
+
preprocessors: Array<{
|
|
4032
|
+
__typename: "AutomatePreprocessor";
|
|
4033
|
+
options: {
|
|
4034
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
4035
|
+
value: string;
|
|
4036
|
+
} | {
|
|
4037
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
4038
|
+
value: string;
|
|
4039
|
+
} | {
|
|
4040
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
4041
|
+
charset?: string | undefined | null;
|
|
4042
|
+
nonAscii: boolean;
|
|
4043
|
+
} | {
|
|
4044
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
4045
|
+
id: string;
|
|
4046
|
+
};
|
|
4047
|
+
}>;
|
|
4048
|
+
}>;
|
|
4049
|
+
placeholders: Array<{
|
|
4050
|
+
__typename: "AutomatePlaceholder";
|
|
4051
|
+
start: number;
|
|
4052
|
+
end: number;
|
|
4053
|
+
}>;
|
|
4054
|
+
};
|
|
4055
|
+
entries: Array<{
|
|
4056
|
+
__typename: "AutomateEntry";
|
|
4057
|
+
id: string;
|
|
4058
|
+
name: string;
|
|
4059
|
+
createdAt: Date;
|
|
4060
|
+
session: {
|
|
4061
|
+
id: string;
|
|
4062
|
+
};
|
|
4063
|
+
}>;
|
|
4064
|
+
};
|
|
4065
|
+
export type AutomateSettingsFullFragment = {
|
|
4066
|
+
__typename: "AutomateSettings";
|
|
4067
|
+
closeConnection: boolean;
|
|
4068
|
+
updateContentLength: boolean;
|
|
4069
|
+
strategy: AutomatePayloadStrategy;
|
|
4070
|
+
concurrency: {
|
|
4071
|
+
__typename: "AutomateConcurrencySetting";
|
|
4072
|
+
delay: number;
|
|
3804
4073
|
workers: number;
|
|
3805
4074
|
};
|
|
3806
4075
|
retryOnFailure: {
|
|
@@ -5528,424 +5797,196 @@ export type ReplayPlaceholderFullFragment = {
|
|
|
5528
5797
|
};
|
|
5529
5798
|
}>;
|
|
5530
5799
|
};
|
|
5531
|
-
export type
|
|
5532
|
-
__typename: "
|
|
5533
|
-
|
|
5800
|
+
export type RuntimeFullFragment = {
|
|
5801
|
+
__typename: "Runtime";
|
|
5802
|
+
version: string;
|
|
5803
|
+
platform: string;
|
|
5804
|
+
availableUpdate?: {
|
|
5805
|
+
__typename: "Release";
|
|
5806
|
+
releasedAt: Date;
|
|
5807
|
+
version: string;
|
|
5808
|
+
links: Array<{
|
|
5809
|
+
__typename: "ReleaseLink";
|
|
5810
|
+
display: string;
|
|
5811
|
+
link: string;
|
|
5812
|
+
platform: string;
|
|
5813
|
+
}>;
|
|
5814
|
+
} | undefined | null;
|
|
5815
|
+
};
|
|
5816
|
+
export type ReleaseFullFragment = {
|
|
5817
|
+
__typename: "Release";
|
|
5818
|
+
releasedAt: Date;
|
|
5819
|
+
version: string;
|
|
5820
|
+
links: Array<{
|
|
5821
|
+
__typename: "ReleaseLink";
|
|
5822
|
+
display: string;
|
|
5823
|
+
link: string;
|
|
5824
|
+
platform: string;
|
|
5825
|
+
}>;
|
|
5826
|
+
};
|
|
5827
|
+
export type ScopeFullFragment = {
|
|
5828
|
+
__typename: "Scope";
|
|
5829
|
+
id: string;
|
|
5830
|
+
name: string;
|
|
5831
|
+
allowlist: Array<string>;
|
|
5832
|
+
denylist: Array<string>;
|
|
5833
|
+
indexed: boolean;
|
|
5834
|
+
};
|
|
5835
|
+
export type SitemapEntryEdgeMetaFragment = {
|
|
5836
|
+
__typename: "SitemapEntryEdge";
|
|
5837
|
+
cursor: string;
|
|
5838
|
+
node: {
|
|
5839
|
+
__typename: "SitemapEntry";
|
|
5840
|
+
id: string;
|
|
5841
|
+
label: string;
|
|
5842
|
+
kind: SitemapEntryKind;
|
|
5843
|
+
parentId?: string | undefined | null;
|
|
5844
|
+
hasDescendants: boolean;
|
|
5845
|
+
metadata?: {
|
|
5846
|
+
isTls: boolean;
|
|
5847
|
+
port: number;
|
|
5848
|
+
} | undefined | null;
|
|
5849
|
+
};
|
|
5850
|
+
};
|
|
5851
|
+
export type SitemapEntryMetaFragment = {
|
|
5852
|
+
__typename: "SitemapEntry";
|
|
5853
|
+
id: string;
|
|
5854
|
+
label: string;
|
|
5855
|
+
kind: SitemapEntryKind;
|
|
5856
|
+
parentId?: string | undefined | null;
|
|
5857
|
+
hasDescendants: boolean;
|
|
5858
|
+
metadata?: {
|
|
5859
|
+
isTls: boolean;
|
|
5860
|
+
port: number;
|
|
5861
|
+
} | undefined | null;
|
|
5862
|
+
};
|
|
5863
|
+
export type StreamMetaFragment = {
|
|
5864
|
+
__typename: "Stream";
|
|
5534
5865
|
id: string;
|
|
5866
|
+
createdAt: Date;
|
|
5867
|
+
direction: StreamDirection;
|
|
5535
5868
|
host: string;
|
|
5536
|
-
port: number;
|
|
5537
|
-
path: string;
|
|
5538
|
-
query: string;
|
|
5539
|
-
method: string;
|
|
5540
|
-
edited: boolean;
|
|
5541
5869
|
isTls: boolean;
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5870
|
+
path: string;
|
|
5871
|
+
port: number;
|
|
5872
|
+
protocol: StreamProtocol;
|
|
5545
5873
|
source: Source;
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5874
|
+
};
|
|
5875
|
+
export type StreamEdgeMetaFragment = {
|
|
5876
|
+
__typename: "StreamEdge";
|
|
5877
|
+
cursor: string;
|
|
5878
|
+
node: {
|
|
5879
|
+
__typename: "Stream";
|
|
5549
5880
|
id: string;
|
|
5881
|
+
createdAt: Date;
|
|
5882
|
+
direction: StreamDirection;
|
|
5550
5883
|
host: string;
|
|
5551
|
-
port: number;
|
|
5552
|
-
path: string;
|
|
5553
|
-
query: string;
|
|
5554
|
-
method: string;
|
|
5555
|
-
edited: boolean;
|
|
5556
5884
|
isTls: boolean;
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5885
|
+
path: string;
|
|
5886
|
+
port: number;
|
|
5887
|
+
protocol: StreamProtocol;
|
|
5560
5888
|
source: Source;
|
|
5561
|
-
createdAt: Date;
|
|
5562
|
-
metadata: {
|
|
5563
|
-
__typename: "RequestMetadata";
|
|
5564
|
-
id: string;
|
|
5565
|
-
color?: string | undefined | null;
|
|
5566
|
-
};
|
|
5567
|
-
response?: {
|
|
5568
|
-
__typename: "Response";
|
|
5569
|
-
id: string;
|
|
5570
|
-
statusCode: number;
|
|
5571
|
-
roundtripTime: number;
|
|
5572
|
-
length: number;
|
|
5573
|
-
createdAt: Date;
|
|
5574
|
-
alteration: Alteration;
|
|
5575
|
-
edited: boolean;
|
|
5576
|
-
} | undefined | null;
|
|
5577
|
-
}>;
|
|
5578
|
-
metadata: {
|
|
5579
|
-
__typename: "RequestMetadata";
|
|
5580
|
-
id: string;
|
|
5581
|
-
color?: string | undefined | null;
|
|
5582
5889
|
};
|
|
5583
|
-
response?: {
|
|
5584
|
-
__typename: "Response";
|
|
5585
|
-
id: string;
|
|
5586
|
-
statusCode: number;
|
|
5587
|
-
roundtripTime: number;
|
|
5588
|
-
length: number;
|
|
5589
|
-
createdAt: Date;
|
|
5590
|
-
alteration: Alteration;
|
|
5591
|
-
edited: boolean;
|
|
5592
|
-
} | undefined | null;
|
|
5593
5890
|
};
|
|
5594
|
-
export type
|
|
5595
|
-
__typename: "Request";
|
|
5596
|
-
raw: string;
|
|
5891
|
+
export type StreamWsMessageMetaFragment = {
|
|
5597
5892
|
id: string;
|
|
5598
|
-
host: string;
|
|
5599
|
-
port: number;
|
|
5600
|
-
path: string;
|
|
5601
|
-
query: string;
|
|
5602
|
-
method: string;
|
|
5603
|
-
edited: boolean;
|
|
5604
|
-
isTls: boolean;
|
|
5605
5893
|
length: number;
|
|
5606
|
-
alteration: Alteration;
|
|
5607
|
-
fileExtension?: string | undefined | null;
|
|
5608
|
-
source: Source;
|
|
5609
5894
|
createdAt: Date;
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
path: string;
|
|
5616
|
-
query: string;
|
|
5617
|
-
method: string;
|
|
5618
|
-
edited: boolean;
|
|
5619
|
-
isTls: boolean;
|
|
5620
|
-
length: number;
|
|
5621
|
-
alteration: Alteration;
|
|
5622
|
-
fileExtension?: string | undefined | null;
|
|
5623
|
-
source: Source;
|
|
5624
|
-
createdAt: Date;
|
|
5625
|
-
metadata: {
|
|
5626
|
-
__typename: "RequestMetadata";
|
|
5627
|
-
id: string;
|
|
5628
|
-
color?: string | undefined | null;
|
|
5629
|
-
};
|
|
5630
|
-
response?: {
|
|
5631
|
-
__typename: "Response";
|
|
5632
|
-
id: string;
|
|
5633
|
-
statusCode: number;
|
|
5634
|
-
roundtripTime: number;
|
|
5635
|
-
length: number;
|
|
5636
|
-
createdAt: Date;
|
|
5637
|
-
alteration: Alteration;
|
|
5638
|
-
edited: boolean;
|
|
5639
|
-
} | undefined | null;
|
|
5640
|
-
}>;
|
|
5641
|
-
metadata: {
|
|
5642
|
-
__typename: "RequestMetadata";
|
|
5643
|
-
id: string;
|
|
5644
|
-
color?: string | undefined | null;
|
|
5645
|
-
};
|
|
5646
|
-
response?: {
|
|
5647
|
-
__typename: "Response";
|
|
5648
|
-
id: string;
|
|
5649
|
-
statusCode: number;
|
|
5650
|
-
roundtripTime: number;
|
|
5651
|
-
length: number;
|
|
5652
|
-
createdAt: Date;
|
|
5653
|
-
alteration: Alteration;
|
|
5654
|
-
edited: boolean;
|
|
5655
|
-
} | undefined | null;
|
|
5895
|
+
direction: StreamMessageDirection;
|
|
5896
|
+
edited: boolean;
|
|
5897
|
+
alteration: Alteration;
|
|
5898
|
+
format: StreamWsMessageFormat;
|
|
5899
|
+
streamId: string;
|
|
5656
5900
|
};
|
|
5657
|
-
export type
|
|
5658
|
-
|
|
5901
|
+
export type StreamWsMessageFullFragment = {
|
|
5902
|
+
raw: string;
|
|
5659
5903
|
id: string;
|
|
5660
|
-
host: string;
|
|
5661
|
-
port: number;
|
|
5662
|
-
path: string;
|
|
5663
|
-
query: string;
|
|
5664
|
-
method: string;
|
|
5665
|
-
edited: boolean;
|
|
5666
|
-
isTls: boolean;
|
|
5667
5904
|
length: number;
|
|
5668
|
-
alteration: Alteration;
|
|
5669
|
-
fileExtension?: string | undefined | null;
|
|
5670
|
-
source: Source;
|
|
5671
5905
|
createdAt: Date;
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
response?: {
|
|
5678
|
-
__typename: "Response";
|
|
5679
|
-
id: string;
|
|
5680
|
-
statusCode: number;
|
|
5681
|
-
roundtripTime: number;
|
|
5682
|
-
length: number;
|
|
5683
|
-
createdAt: Date;
|
|
5684
|
-
alteration: Alteration;
|
|
5685
|
-
edited: boolean;
|
|
5686
|
-
} | undefined | null;
|
|
5906
|
+
direction: StreamMessageDirection;
|
|
5907
|
+
edited: boolean;
|
|
5908
|
+
alteration: Alteration;
|
|
5909
|
+
format: StreamWsMessageFormat;
|
|
5910
|
+
streamId: string;
|
|
5687
5911
|
};
|
|
5688
|
-
export type
|
|
5689
|
-
__typename: "
|
|
5912
|
+
export type StreamWsMessageEdgeMetaFragment = {
|
|
5913
|
+
__typename: "StreamWsMessageEdge";
|
|
5690
5914
|
cursor: string;
|
|
5691
5915
|
node: {
|
|
5692
|
-
__typename: "Request";
|
|
5693
5916
|
id: string;
|
|
5694
|
-
host: string;
|
|
5695
|
-
port: number;
|
|
5696
|
-
path: string;
|
|
5697
|
-
query: string;
|
|
5698
|
-
method: string;
|
|
5699
|
-
edited: boolean;
|
|
5700
|
-
isTls: boolean;
|
|
5701
5917
|
length: number;
|
|
5702
|
-
alteration: Alteration;
|
|
5703
|
-
fileExtension?: string | undefined | null;
|
|
5704
|
-
source: Source;
|
|
5705
5918
|
createdAt: Date;
|
|
5706
|
-
|
|
5707
|
-
|
|
5919
|
+
direction: StreamMessageDirection;
|
|
5920
|
+
edited: boolean;
|
|
5921
|
+
alteration: Alteration;
|
|
5922
|
+
format: StreamWsMessageFormat;
|
|
5923
|
+
streamId: string;
|
|
5924
|
+
};
|
|
5925
|
+
};
|
|
5926
|
+
export type TamperRuleCollectionFullFragment = {
|
|
5927
|
+
__typename: "TamperRuleCollection";
|
|
5928
|
+
id: string;
|
|
5929
|
+
name: string;
|
|
5930
|
+
rules: Array<{
|
|
5931
|
+
__typename: "TamperRule";
|
|
5932
|
+
id: string;
|
|
5933
|
+
isEnabled: boolean;
|
|
5934
|
+
isRegex: boolean;
|
|
5935
|
+
name: string;
|
|
5936
|
+
matchTerm: string;
|
|
5937
|
+
replaceTerm: string;
|
|
5938
|
+
strategy: TamperStrategy;
|
|
5939
|
+
rank: string;
|
|
5940
|
+
condition?: string | undefined | null;
|
|
5941
|
+
collection: {
|
|
5708
5942
|
id: string;
|
|
5709
|
-
color?: string | undefined | null;
|
|
5710
5943
|
};
|
|
5711
|
-
|
|
5712
|
-
__typename: "Response";
|
|
5713
|
-
id: string;
|
|
5714
|
-
statusCode: number;
|
|
5715
|
-
roundtripTime: number;
|
|
5716
|
-
length: number;
|
|
5717
|
-
createdAt: Date;
|
|
5718
|
-
alteration: Alteration;
|
|
5719
|
-
edited: boolean;
|
|
5720
|
-
} | undefined | null;
|
|
5721
|
-
};
|
|
5944
|
+
}>;
|
|
5722
5945
|
};
|
|
5723
|
-
export type
|
|
5724
|
-
__typename: "
|
|
5946
|
+
export type TamperRuleFullFragment = {
|
|
5947
|
+
__typename: "TamperRule";
|
|
5725
5948
|
id: string;
|
|
5726
|
-
|
|
5949
|
+
isEnabled: boolean;
|
|
5950
|
+
isRegex: boolean;
|
|
5951
|
+
name: string;
|
|
5952
|
+
matchTerm: string;
|
|
5953
|
+
replaceTerm: string;
|
|
5954
|
+
strategy: TamperStrategy;
|
|
5955
|
+
rank: string;
|
|
5956
|
+
condition?: string | undefined | null;
|
|
5957
|
+
collection: {
|
|
5958
|
+
id: string;
|
|
5959
|
+
};
|
|
5727
5960
|
};
|
|
5728
|
-
|
|
5729
|
-
__typename: "
|
|
5961
|
+
type TaskMeta_ReplayTask_Fragment = {
|
|
5962
|
+
__typename: "ReplayTask";
|
|
5730
5963
|
id: string;
|
|
5731
|
-
statusCode: number;
|
|
5732
|
-
roundtripTime: number;
|
|
5733
|
-
length: number;
|
|
5734
5964
|
createdAt: Date;
|
|
5735
|
-
alteration: Alteration;
|
|
5736
|
-
edited: boolean;
|
|
5737
5965
|
};
|
|
5738
|
-
|
|
5739
|
-
__typename: "
|
|
5740
|
-
raw: string;
|
|
5966
|
+
type TaskMeta_WorkflowTask_Fragment = {
|
|
5967
|
+
__typename: "WorkflowTask";
|
|
5741
5968
|
id: string;
|
|
5742
|
-
statusCode: number;
|
|
5743
|
-
roundtripTime: number;
|
|
5744
|
-
length: number;
|
|
5745
5969
|
createdAt: Date;
|
|
5746
|
-
alteration: Alteration;
|
|
5747
|
-
edited: boolean;
|
|
5748
|
-
edits: Array<{
|
|
5749
|
-
__typename: "Response";
|
|
5750
|
-
id: string;
|
|
5751
|
-
statusCode: number;
|
|
5752
|
-
roundtripTime: number;
|
|
5753
|
-
length: number;
|
|
5754
|
-
createdAt: Date;
|
|
5755
|
-
alteration: Alteration;
|
|
5756
|
-
edited: boolean;
|
|
5757
|
-
}>;
|
|
5758
5970
|
};
|
|
5759
|
-
export type
|
|
5760
|
-
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
platform: string;
|
|
5772
|
-
}>;
|
|
5971
|
+
export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
5972
|
+
export type UpstreamProxyHttpFullFragment = {
|
|
5973
|
+
__typename: "UpstreamProxyHttp";
|
|
5974
|
+
id: string;
|
|
5975
|
+
allowlist: Array<string>;
|
|
5976
|
+
denylist: Array<string>;
|
|
5977
|
+
enabled: boolean;
|
|
5978
|
+
rank: string;
|
|
5979
|
+
auth?: {
|
|
5980
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
5981
|
+
username: string;
|
|
5982
|
+
password: string;
|
|
5773
5983
|
} | undefined | null;
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
|
|
5777
|
-
|
|
5778
|
-
|
|
5779
|
-
|
|
5780
|
-
__typename: "ReleaseLink";
|
|
5781
|
-
display: string;
|
|
5782
|
-
link: string;
|
|
5783
|
-
platform: string;
|
|
5784
|
-
}>;
|
|
5785
|
-
};
|
|
5786
|
-
export type ScopeFullFragment = {
|
|
5787
|
-
__typename: "Scope";
|
|
5788
|
-
id: string;
|
|
5789
|
-
name: string;
|
|
5790
|
-
allowlist: Array<string>;
|
|
5791
|
-
denylist: Array<string>;
|
|
5792
|
-
indexed: boolean;
|
|
5793
|
-
};
|
|
5794
|
-
export type SitemapEntryEdgeMetaFragment = {
|
|
5795
|
-
__typename: "SitemapEntryEdge";
|
|
5796
|
-
cursor: string;
|
|
5797
|
-
node: {
|
|
5798
|
-
__typename: "SitemapEntry";
|
|
5799
|
-
id: string;
|
|
5800
|
-
label: string;
|
|
5801
|
-
kind: SitemapEntryKind;
|
|
5802
|
-
parentId?: string | undefined | null;
|
|
5803
|
-
hasDescendants: boolean;
|
|
5804
|
-
metadata?: {
|
|
5805
|
-
isTls: boolean;
|
|
5806
|
-
port: number;
|
|
5807
|
-
} | undefined | null;
|
|
5808
|
-
};
|
|
5809
|
-
};
|
|
5810
|
-
export type SitemapEntryMetaFragment = {
|
|
5811
|
-
__typename: "SitemapEntry";
|
|
5812
|
-
id: string;
|
|
5813
|
-
label: string;
|
|
5814
|
-
kind: SitemapEntryKind;
|
|
5815
|
-
parentId?: string | undefined | null;
|
|
5816
|
-
hasDescendants: boolean;
|
|
5817
|
-
metadata?: {
|
|
5818
|
-
isTls: boolean;
|
|
5819
|
-
port: number;
|
|
5820
|
-
} | undefined | null;
|
|
5821
|
-
};
|
|
5822
|
-
export type StreamMetaFragment = {
|
|
5823
|
-
__typename: "Stream";
|
|
5824
|
-
id: string;
|
|
5825
|
-
createdAt: Date;
|
|
5826
|
-
direction: StreamDirection;
|
|
5827
|
-
host: string;
|
|
5828
|
-
isTls: boolean;
|
|
5829
|
-
path: string;
|
|
5830
|
-
port: number;
|
|
5831
|
-
protocol: StreamProtocol;
|
|
5832
|
-
source: Source;
|
|
5833
|
-
};
|
|
5834
|
-
export type StreamEdgeMetaFragment = {
|
|
5835
|
-
__typename: "StreamEdge";
|
|
5836
|
-
cursor: string;
|
|
5837
|
-
node: {
|
|
5838
|
-
__typename: "Stream";
|
|
5839
|
-
id: string;
|
|
5840
|
-
createdAt: Date;
|
|
5841
|
-
direction: StreamDirection;
|
|
5842
|
-
host: string;
|
|
5843
|
-
isTls: boolean;
|
|
5844
|
-
path: string;
|
|
5845
|
-
port: number;
|
|
5846
|
-
protocol: StreamProtocol;
|
|
5847
|
-
source: Source;
|
|
5848
|
-
};
|
|
5849
|
-
};
|
|
5850
|
-
export type StreamWsMessageMetaFragment = {
|
|
5851
|
-
id: string;
|
|
5852
|
-
length: number;
|
|
5853
|
-
createdAt: Date;
|
|
5854
|
-
direction: StreamMessageDirection;
|
|
5855
|
-
edited: boolean;
|
|
5856
|
-
alteration: Alteration;
|
|
5857
|
-
format: StreamWsMessageFormat;
|
|
5858
|
-
streamId: string;
|
|
5859
|
-
};
|
|
5860
|
-
export type StreamWsMessageFullFragment = {
|
|
5861
|
-
raw: string;
|
|
5862
|
-
id: string;
|
|
5863
|
-
length: number;
|
|
5864
|
-
createdAt: Date;
|
|
5865
|
-
direction: StreamMessageDirection;
|
|
5866
|
-
edited: boolean;
|
|
5867
|
-
alteration: Alteration;
|
|
5868
|
-
format: StreamWsMessageFormat;
|
|
5869
|
-
streamId: string;
|
|
5870
|
-
};
|
|
5871
|
-
export type StreamWsMessageEdgeMetaFragment = {
|
|
5872
|
-
__typename: "StreamWsMessageEdge";
|
|
5873
|
-
cursor: string;
|
|
5874
|
-
node: {
|
|
5875
|
-
id: string;
|
|
5876
|
-
length: number;
|
|
5877
|
-
createdAt: Date;
|
|
5878
|
-
direction: StreamMessageDirection;
|
|
5879
|
-
edited: boolean;
|
|
5880
|
-
alteration: Alteration;
|
|
5881
|
-
format: StreamWsMessageFormat;
|
|
5882
|
-
streamId: string;
|
|
5883
|
-
};
|
|
5884
|
-
};
|
|
5885
|
-
export type TamperRuleCollectionFullFragment = {
|
|
5886
|
-
__typename: "TamperRuleCollection";
|
|
5887
|
-
id: string;
|
|
5888
|
-
name: string;
|
|
5889
|
-
rules: Array<{
|
|
5890
|
-
__typename: "TamperRule";
|
|
5891
|
-
id: string;
|
|
5892
|
-
isEnabled: boolean;
|
|
5893
|
-
isRegex: boolean;
|
|
5894
|
-
name: string;
|
|
5895
|
-
matchTerm: string;
|
|
5896
|
-
replaceTerm: string;
|
|
5897
|
-
strategy: TamperStrategy;
|
|
5898
|
-
rank: string;
|
|
5899
|
-
condition?: string | undefined | null;
|
|
5900
|
-
collection: {
|
|
5901
|
-
id: string;
|
|
5902
|
-
};
|
|
5903
|
-
}>;
|
|
5904
|
-
};
|
|
5905
|
-
export type TamperRuleFullFragment = {
|
|
5906
|
-
__typename: "TamperRule";
|
|
5907
|
-
id: string;
|
|
5908
|
-
isEnabled: boolean;
|
|
5909
|
-
isRegex: boolean;
|
|
5910
|
-
name: string;
|
|
5911
|
-
matchTerm: string;
|
|
5912
|
-
replaceTerm: string;
|
|
5913
|
-
strategy: TamperStrategy;
|
|
5914
|
-
rank: string;
|
|
5915
|
-
condition?: string | undefined | null;
|
|
5916
|
-
collection: {
|
|
5917
|
-
id: string;
|
|
5918
|
-
};
|
|
5919
|
-
};
|
|
5920
|
-
type TaskMeta_ReplayTask_Fragment = {
|
|
5921
|
-
__typename: "ReplayTask";
|
|
5922
|
-
id: string;
|
|
5923
|
-
createdAt: Date;
|
|
5924
|
-
};
|
|
5925
|
-
type TaskMeta_WorkflowTask_Fragment = {
|
|
5926
|
-
__typename: "WorkflowTask";
|
|
5927
|
-
id: string;
|
|
5928
|
-
createdAt: Date;
|
|
5929
|
-
};
|
|
5930
|
-
export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
5931
|
-
export type UpstreamProxyHttpFullFragment = {
|
|
5932
|
-
__typename: "UpstreamProxyHttp";
|
|
5933
|
-
id: string;
|
|
5934
|
-
allowlist: Array<string>;
|
|
5935
|
-
denylist: Array<string>;
|
|
5936
|
-
enabled: boolean;
|
|
5937
|
-
rank: string;
|
|
5938
|
-
auth?: {
|
|
5939
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
5940
|
-
username: string;
|
|
5941
|
-
password: string;
|
|
5942
|
-
} | undefined | null;
|
|
5943
|
-
connection: {
|
|
5944
|
-
__typename: "ConnectionInfo";
|
|
5945
|
-
host: string;
|
|
5946
|
-
port: number;
|
|
5947
|
-
isTls: boolean;
|
|
5948
|
-
};
|
|
5984
|
+
connection: {
|
|
5985
|
+
__typename: "ConnectionInfo";
|
|
5986
|
+
host: string;
|
|
5987
|
+
port: number;
|
|
5988
|
+
isTls: boolean;
|
|
5989
|
+
};
|
|
5949
5990
|
};
|
|
5950
5991
|
export type UpstreamProxySocksFullFragment = {
|
|
5951
5992
|
__typename: "UpstreamProxySocks";
|
|
@@ -6033,124 +6074,24 @@ export type WorkflowTaskMetaFragment = {
|
|
|
6033
6074
|
readOnly: boolean;
|
|
6034
6075
|
};
|
|
6035
6076
|
};
|
|
6036
|
-
export type
|
|
6037
|
-
|
|
6038
|
-
message?: InputMaybe<Scalars["String"]["input"]>;
|
|
6077
|
+
export type StartAuthenticationFlowMutationVariables = Exact<{
|
|
6078
|
+
[key: string]: never;
|
|
6039
6079
|
}>;
|
|
6040
|
-
export type
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
__typename: "
|
|
6044
|
-
code: string;
|
|
6045
|
-
} | {
|
|
6046
|
-
__typename: "PermissionDeniedUserError";
|
|
6047
|
-
code: string;
|
|
6048
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
6049
|
-
} | {
|
|
6050
|
-
__typename: "TaskInProgressUserError";
|
|
6051
|
-
taskId: string;
|
|
6052
|
-
code: string;
|
|
6053
|
-
} | undefined | null;
|
|
6054
|
-
task?: {
|
|
6055
|
-
__typename: "AssistantMessageTask";
|
|
6080
|
+
export type StartAuthenticationFlowMutation = {
|
|
6081
|
+
startAuthenticationFlow: {
|
|
6082
|
+
request?: {
|
|
6083
|
+
__typename: "AuthenticationRequest";
|
|
6056
6084
|
id: string;
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
content: string;
|
|
6061
|
-
role: AssistantMessageRole;
|
|
6062
|
-
session: {
|
|
6063
|
-
id: string;
|
|
6064
|
-
};
|
|
6065
|
-
} | undefined | null;
|
|
6066
|
-
session: {
|
|
6067
|
-
__typename: "AssistantSession";
|
|
6068
|
-
id: string;
|
|
6069
|
-
modelId: string;
|
|
6070
|
-
name: string;
|
|
6071
|
-
updatedAt: Date;
|
|
6072
|
-
createdAt: Date;
|
|
6073
|
-
};
|
|
6074
|
-
error?: {
|
|
6075
|
-
__typename: "AssistantUserError";
|
|
6076
|
-
code: string;
|
|
6077
|
-
assistantReason: AssistantErrorReason;
|
|
6078
|
-
} | {
|
|
6079
|
-
__typename: "AuthenticationUserError";
|
|
6080
|
-
reason: AuthenticationErrorReason;
|
|
6081
|
-
code: string;
|
|
6082
|
-
} | {
|
|
6083
|
-
__typename: "OtherUserError";
|
|
6084
|
-
code: string;
|
|
6085
|
-
} | undefined | null;
|
|
6085
|
+
expiresAt: Date;
|
|
6086
|
+
userCode: string;
|
|
6087
|
+
verificationUrl: string;
|
|
6086
6088
|
} | undefined | null;
|
|
6087
|
-
};
|
|
6088
|
-
};
|
|
6089
|
-
export type CreateAssistantSessionMutationVariables = Exact<{
|
|
6090
|
-
input: CreateAssistantSessionInput;
|
|
6091
|
-
}>;
|
|
6092
|
-
export type CreateAssistantSessionMutation = {
|
|
6093
|
-
createAssistantSession: {
|
|
6094
6089
|
error?: {
|
|
6095
|
-
__typename: "
|
|
6090
|
+
__typename: "AuthenticationUserError";
|
|
6091
|
+
reason: AuthenticationErrorReason;
|
|
6096
6092
|
code: string;
|
|
6097
6093
|
} | {
|
|
6098
|
-
__typename: "
|
|
6099
|
-
code: string;
|
|
6100
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
6101
|
-
} | undefined | null;
|
|
6102
|
-
session?: {
|
|
6103
|
-
__typename: "AssistantSession";
|
|
6104
|
-
id: string;
|
|
6105
|
-
modelId: string;
|
|
6106
|
-
name: string;
|
|
6107
|
-
updatedAt: Date;
|
|
6108
|
-
createdAt: Date;
|
|
6109
|
-
} | undefined | null;
|
|
6110
|
-
};
|
|
6111
|
-
};
|
|
6112
|
-
export type DeleteAssistantSessionMutationVariables = Exact<{
|
|
6113
|
-
id: Scalars["ID"]["input"];
|
|
6114
|
-
}>;
|
|
6115
|
-
export type DeleteAssistantSessionMutation = {
|
|
6116
|
-
deleteAssistantSession: {
|
|
6117
|
-
deletedId?: string | undefined | null;
|
|
6118
|
-
};
|
|
6119
|
-
};
|
|
6120
|
-
export type RenameAssistantSessionMutationVariables = Exact<{
|
|
6121
|
-
id: Scalars["ID"]["input"];
|
|
6122
|
-
name: Scalars["String"]["input"];
|
|
6123
|
-
}>;
|
|
6124
|
-
export type RenameAssistantSessionMutation = {
|
|
6125
|
-
renameAssistantSession: {
|
|
6126
|
-
session?: {
|
|
6127
|
-
__typename: "AssistantSession";
|
|
6128
|
-
id: string;
|
|
6129
|
-
modelId: string;
|
|
6130
|
-
name: string;
|
|
6131
|
-
updatedAt: Date;
|
|
6132
|
-
createdAt: Date;
|
|
6133
|
-
} | undefined | null;
|
|
6134
|
-
};
|
|
6135
|
-
};
|
|
6136
|
-
export type StartAuthenticationFlowMutationVariables = Exact<{
|
|
6137
|
-
[key: string]: never;
|
|
6138
|
-
}>;
|
|
6139
|
-
export type StartAuthenticationFlowMutation = {
|
|
6140
|
-
startAuthenticationFlow: {
|
|
6141
|
-
request?: {
|
|
6142
|
-
__typename: "AuthenticationRequest";
|
|
6143
|
-
id: string;
|
|
6144
|
-
expiresAt: Date;
|
|
6145
|
-
userCode: string;
|
|
6146
|
-
verificationUrl: string;
|
|
6147
|
-
} | undefined | null;
|
|
6148
|
-
error?: {
|
|
6149
|
-
__typename: "AuthenticationUserError";
|
|
6150
|
-
reason: AuthenticationErrorReason;
|
|
6151
|
-
code: string;
|
|
6152
|
-
} | {
|
|
6153
|
-
__typename: "OtherUserError";
|
|
6094
|
+
__typename: "OtherUserError";
|
|
6154
6095
|
code: string;
|
|
6155
6096
|
} | undefined | null;
|
|
6156
6097
|
};
|
|
@@ -8499,67 +8440,6 @@ export type StartReplayTaskMutation = {
|
|
|
8499
8440
|
} | undefined | null;
|
|
8500
8441
|
};
|
|
8501
8442
|
};
|
|
8502
|
-
export type UpdateRequestMetadataMutationVariables = Exact<{
|
|
8503
|
-
id: Scalars["ID"]["input"];
|
|
8504
|
-
input: UpdateRequestMetadataInput;
|
|
8505
|
-
}>;
|
|
8506
|
-
export type UpdateRequestMetadataMutation = {
|
|
8507
|
-
updateRequestMetadata: {
|
|
8508
|
-
snapshot?: number | undefined | null;
|
|
8509
|
-
metadata?: {
|
|
8510
|
-
__typename: "RequestMetadata";
|
|
8511
|
-
id: string;
|
|
8512
|
-
color?: string | undefined | null;
|
|
8513
|
-
} | undefined | null;
|
|
8514
|
-
};
|
|
8515
|
-
};
|
|
8516
|
-
export type StartExportRequestsTaskMutationVariables = Exact<{
|
|
8517
|
-
input: StartExportRequestsTaskInput;
|
|
8518
|
-
}>;
|
|
8519
|
-
export type StartExportRequestsTaskMutation = {
|
|
8520
|
-
startExportRequestsTask: {
|
|
8521
|
-
task?: {
|
|
8522
|
-
__typename: "DataExportTask";
|
|
8523
|
-
id: string;
|
|
8524
|
-
export: {
|
|
8525
|
-
__typename: "DataExport";
|
|
8526
|
-
id: string;
|
|
8527
|
-
name: string;
|
|
8528
|
-
path: string;
|
|
8529
|
-
size: number;
|
|
8530
|
-
status: DataExportStatus;
|
|
8531
|
-
format: DataExportFormat;
|
|
8532
|
-
error?: string | undefined | null;
|
|
8533
|
-
createdAt: Date;
|
|
8534
|
-
};
|
|
8535
|
-
} | undefined | null;
|
|
8536
|
-
error?: {
|
|
8537
|
-
__typename: "OtherUserError";
|
|
8538
|
-
code: string;
|
|
8539
|
-
} | {
|
|
8540
|
-
__typename: "PermissionDeniedUserError";
|
|
8541
|
-
code: string;
|
|
8542
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
8543
|
-
} | undefined | null;
|
|
8544
|
-
};
|
|
8545
|
-
};
|
|
8546
|
-
export type RenderRequestMutationVariables = Exact<{
|
|
8547
|
-
id: Scalars["ID"]["input"];
|
|
8548
|
-
input: RenderRequestInput;
|
|
8549
|
-
}>;
|
|
8550
|
-
export type RenderRequestMutation = {
|
|
8551
|
-
renderRequest: {
|
|
8552
|
-
render?: string | undefined | null;
|
|
8553
|
-
error?: {
|
|
8554
|
-
__typename: "OtherUserError";
|
|
8555
|
-
code: string;
|
|
8556
|
-
} | {
|
|
8557
|
-
__typename: "RenderFailedUserError";
|
|
8558
|
-
reason: RenderFailedErrorReason;
|
|
8559
|
-
code: string;
|
|
8560
|
-
} | undefined | null;
|
|
8561
|
-
};
|
|
8562
|
-
};
|
|
8563
8443
|
export type CreateScopeMutationVariables = Exact<{
|
|
8564
8444
|
input: CreateScopeInput;
|
|
8565
8445
|
}>;
|
|
@@ -9372,64 +9252,6 @@ export type LocalizeWorkflowMutation = {
|
|
|
9372
9252
|
} | undefined | null;
|
|
9373
9253
|
};
|
|
9374
9254
|
};
|
|
9375
|
-
export type AssistantModelsQueryVariables = Exact<{
|
|
9376
|
-
[key: string]: never;
|
|
9377
|
-
}>;
|
|
9378
|
-
export type AssistantModelsQuery = {
|
|
9379
|
-
assistantModels: Array<{
|
|
9380
|
-
__typename: "AssistantModel";
|
|
9381
|
-
id: string;
|
|
9382
|
-
name: string;
|
|
9383
|
-
tokenCredit: number;
|
|
9384
|
-
}>;
|
|
9385
|
-
};
|
|
9386
|
-
export type AssistantSessionsQueryVariables = Exact<{
|
|
9387
|
-
[key: string]: never;
|
|
9388
|
-
}>;
|
|
9389
|
-
export type AssistantSessionsQuery = {
|
|
9390
|
-
assistantSessions: Array<{
|
|
9391
|
-
__typename: "AssistantSession";
|
|
9392
|
-
id: string;
|
|
9393
|
-
modelId: string;
|
|
9394
|
-
name: string;
|
|
9395
|
-
updatedAt: Date;
|
|
9396
|
-
createdAt: Date;
|
|
9397
|
-
}>;
|
|
9398
|
-
};
|
|
9399
|
-
export type AssistantSessionQueryVariables = Exact<{
|
|
9400
|
-
id: Scalars["ID"]["input"];
|
|
9401
|
-
}>;
|
|
9402
|
-
export type AssistantSessionQuery = {
|
|
9403
|
-
assistantSession?: {
|
|
9404
|
-
__typename: "AssistantSession";
|
|
9405
|
-
id: string;
|
|
9406
|
-
modelId: string;
|
|
9407
|
-
name: string;
|
|
9408
|
-
updatedAt: Date;
|
|
9409
|
-
createdAt: Date;
|
|
9410
|
-
messages: Array<{
|
|
9411
|
-
__typename: "AssistantMessage";
|
|
9412
|
-
id: string;
|
|
9413
|
-
content: string;
|
|
9414
|
-
role: AssistantMessageRole;
|
|
9415
|
-
session: {
|
|
9416
|
-
id: string;
|
|
9417
|
-
};
|
|
9418
|
-
}>;
|
|
9419
|
-
} | undefined | null;
|
|
9420
|
-
};
|
|
9421
|
-
export type AssistantUsageQueryVariables = Exact<{
|
|
9422
|
-
[key: string]: never;
|
|
9423
|
-
}>;
|
|
9424
|
-
export type AssistantUsageQuery = {
|
|
9425
|
-
viewer: {
|
|
9426
|
-
id: string;
|
|
9427
|
-
assistantUsage: {
|
|
9428
|
-
__typename: "AssistantUsage";
|
|
9429
|
-
balance: number;
|
|
9430
|
-
};
|
|
9431
|
-
};
|
|
9432
|
-
};
|
|
9433
9255
|
export type AutomateEntryQueryVariables = Exact<{
|
|
9434
9256
|
id: Scalars["ID"]["input"];
|
|
9435
9257
|
}>;
|
|
@@ -11504,214 +11326,22 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
11504
11326
|
}>;
|
|
11505
11327
|
};
|
|
11506
11328
|
};
|
|
11507
|
-
export type
|
|
11508
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
11509
|
-
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
11510
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11511
|
-
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11512
|
-
order?: InputMaybe<RequestResponseOrderInput>;
|
|
11513
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
11514
|
-
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
11515
|
-
}>;
|
|
11516
|
-
export type RequestsQuery = {
|
|
11517
|
-
requests: {
|
|
11518
|
-
snapshot: number;
|
|
11519
|
-
edges: Array<{
|
|
11520
|
-
__typename: "RequestEdge";
|
|
11521
|
-
cursor: string;
|
|
11522
|
-
node: {
|
|
11523
|
-
__typename: "Request";
|
|
11524
|
-
id: string;
|
|
11525
|
-
host: string;
|
|
11526
|
-
port: number;
|
|
11527
|
-
path: string;
|
|
11528
|
-
query: string;
|
|
11529
|
-
method: string;
|
|
11530
|
-
edited: boolean;
|
|
11531
|
-
isTls: boolean;
|
|
11532
|
-
length: number;
|
|
11533
|
-
alteration: Alteration;
|
|
11534
|
-
fileExtension?: string | undefined | null;
|
|
11535
|
-
source: Source;
|
|
11536
|
-
createdAt: Date;
|
|
11537
|
-
metadata: {
|
|
11538
|
-
__typename: "RequestMetadata";
|
|
11539
|
-
id: string;
|
|
11540
|
-
color?: string | undefined | null;
|
|
11541
|
-
};
|
|
11542
|
-
response?: {
|
|
11543
|
-
__typename: "Response";
|
|
11544
|
-
id: string;
|
|
11545
|
-
statusCode: number;
|
|
11546
|
-
roundtripTime: number;
|
|
11547
|
-
length: number;
|
|
11548
|
-
createdAt: Date;
|
|
11549
|
-
alteration: Alteration;
|
|
11550
|
-
edited: boolean;
|
|
11551
|
-
} | undefined | null;
|
|
11552
|
-
};
|
|
11553
|
-
}>;
|
|
11554
|
-
pageInfo: {
|
|
11555
|
-
__typename: "PageInfo";
|
|
11556
|
-
hasPreviousPage: boolean;
|
|
11557
|
-
hasNextPage: boolean;
|
|
11558
|
-
startCursor?: string | undefined | null;
|
|
11559
|
-
endCursor?: string | undefined | null;
|
|
11560
|
-
};
|
|
11561
|
-
};
|
|
11562
|
-
};
|
|
11563
|
-
export type RequestCountQueryVariables = Exact<{
|
|
11564
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
11565
|
-
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
11566
|
-
}>;
|
|
11567
|
-
export type RequestCountQuery = {
|
|
11568
|
-
requests: {
|
|
11569
|
-
snapshot: number;
|
|
11570
|
-
count: {
|
|
11571
|
-
__typename: "Count";
|
|
11572
|
-
value: number;
|
|
11573
|
-
snapshot: number;
|
|
11574
|
-
};
|
|
11575
|
-
};
|
|
11576
|
-
};
|
|
11577
|
-
export type RequestQueryVariables = Exact<{
|
|
11329
|
+
export type ResponseQueryVariables = Exact<{
|
|
11578
11330
|
id: Scalars["ID"]["input"];
|
|
11579
11331
|
}>;
|
|
11580
|
-
export type
|
|
11581
|
-
|
|
11582
|
-
__typename: "
|
|
11332
|
+
export type ResponseQuery = {
|
|
11333
|
+
response?: {
|
|
11334
|
+
__typename: "Response";
|
|
11583
11335
|
raw: string;
|
|
11584
11336
|
id: string;
|
|
11585
|
-
|
|
11586
|
-
|
|
11587
|
-
path: string;
|
|
11588
|
-
query: string;
|
|
11589
|
-
method: string;
|
|
11590
|
-
edited: boolean;
|
|
11591
|
-
isTls: boolean;
|
|
11337
|
+
statusCode: number;
|
|
11338
|
+
roundtripTime: number;
|
|
11592
11339
|
length: number;
|
|
11593
|
-
alteration: Alteration;
|
|
11594
|
-
fileExtension?: string | undefined | null;
|
|
11595
|
-
source: Source;
|
|
11596
11340
|
createdAt: Date;
|
|
11341
|
+
alteration: Alteration;
|
|
11342
|
+
edited: boolean;
|
|
11597
11343
|
edits: Array<{
|
|
11598
|
-
__typename: "
|
|
11599
|
-
id: string;
|
|
11600
|
-
host: string;
|
|
11601
|
-
port: number;
|
|
11602
|
-
path: string;
|
|
11603
|
-
query: string;
|
|
11604
|
-
method: string;
|
|
11605
|
-
edited: boolean;
|
|
11606
|
-
isTls: boolean;
|
|
11607
|
-
length: number;
|
|
11608
|
-
alteration: Alteration;
|
|
11609
|
-
fileExtension?: string | undefined | null;
|
|
11610
|
-
source: Source;
|
|
11611
|
-
createdAt: Date;
|
|
11612
|
-
metadata: {
|
|
11613
|
-
__typename: "RequestMetadata";
|
|
11614
|
-
id: string;
|
|
11615
|
-
color?: string | undefined | null;
|
|
11616
|
-
};
|
|
11617
|
-
response?: {
|
|
11618
|
-
__typename: "Response";
|
|
11619
|
-
id: string;
|
|
11620
|
-
statusCode: number;
|
|
11621
|
-
roundtripTime: number;
|
|
11622
|
-
length: number;
|
|
11623
|
-
createdAt: Date;
|
|
11624
|
-
alteration: Alteration;
|
|
11625
|
-
edited: boolean;
|
|
11626
|
-
} | undefined | null;
|
|
11627
|
-
}>;
|
|
11628
|
-
metadata: {
|
|
11629
|
-
__typename: "RequestMetadata";
|
|
11630
|
-
id: string;
|
|
11631
|
-
color?: string | undefined | null;
|
|
11632
|
-
};
|
|
11633
|
-
response?: {
|
|
11634
|
-
__typename: "Response";
|
|
11635
|
-
id: string;
|
|
11636
|
-
statusCode: number;
|
|
11637
|
-
roundtripTime: number;
|
|
11638
|
-
length: number;
|
|
11639
|
-
createdAt: Date;
|
|
11640
|
-
alteration: Alteration;
|
|
11641
|
-
edited: boolean;
|
|
11642
|
-
} | undefined | null;
|
|
11643
|
-
} | undefined | null;
|
|
11644
|
-
};
|
|
11645
|
-
export type RequestsByOffsetQueryVariables = Exact<{
|
|
11646
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11647
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11648
|
-
order?: InputMaybe<RequestResponseOrderInput>;
|
|
11649
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
11650
|
-
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
11651
|
-
}>;
|
|
11652
|
-
export type RequestsByOffsetQuery = {
|
|
11653
|
-
requestsByOffset: {
|
|
11654
|
-
snapshot: number;
|
|
11655
|
-
edges: Array<{
|
|
11656
|
-
__typename: "RequestEdge";
|
|
11657
|
-
cursor: string;
|
|
11658
|
-
node: {
|
|
11659
|
-
__typename: "Request";
|
|
11660
|
-
id: string;
|
|
11661
|
-
host: string;
|
|
11662
|
-
port: number;
|
|
11663
|
-
path: string;
|
|
11664
|
-
query: string;
|
|
11665
|
-
method: string;
|
|
11666
|
-
edited: boolean;
|
|
11667
|
-
isTls: boolean;
|
|
11668
|
-
length: number;
|
|
11669
|
-
alteration: Alteration;
|
|
11670
|
-
fileExtension?: string | undefined | null;
|
|
11671
|
-
source: Source;
|
|
11672
|
-
createdAt: Date;
|
|
11673
|
-
metadata: {
|
|
11674
|
-
__typename: "RequestMetadata";
|
|
11675
|
-
id: string;
|
|
11676
|
-
color?: string | undefined | null;
|
|
11677
|
-
};
|
|
11678
|
-
response?: {
|
|
11679
|
-
__typename: "Response";
|
|
11680
|
-
id: string;
|
|
11681
|
-
statusCode: number;
|
|
11682
|
-
roundtripTime: number;
|
|
11683
|
-
length: number;
|
|
11684
|
-
createdAt: Date;
|
|
11685
|
-
alteration: Alteration;
|
|
11686
|
-
edited: boolean;
|
|
11687
|
-
} | undefined | null;
|
|
11688
|
-
};
|
|
11689
|
-
}>;
|
|
11690
|
-
pageInfo: {
|
|
11691
|
-
__typename: "PageInfo";
|
|
11692
|
-
hasPreviousPage: boolean;
|
|
11693
|
-
hasNextPage: boolean;
|
|
11694
|
-
startCursor?: string | undefined | null;
|
|
11695
|
-
endCursor?: string | undefined | null;
|
|
11696
|
-
};
|
|
11697
|
-
};
|
|
11698
|
-
};
|
|
11699
|
-
export type ResponseQueryVariables = Exact<{
|
|
11700
|
-
id: Scalars["ID"]["input"];
|
|
11701
|
-
}>;
|
|
11702
|
-
export type ResponseQuery = {
|
|
11703
|
-
response?: {
|
|
11704
|
-
__typename: "Response";
|
|
11705
|
-
raw: string;
|
|
11706
|
-
id: string;
|
|
11707
|
-
statusCode: number;
|
|
11708
|
-
roundtripTime: number;
|
|
11709
|
-
length: number;
|
|
11710
|
-
createdAt: Date;
|
|
11711
|
-
alteration: Alteration;
|
|
11712
|
-
edited: boolean;
|
|
11713
|
-
edits: Array<{
|
|
11714
|
-
__typename: "Response";
|
|
11344
|
+
__typename: "Response";
|
|
11715
11345
|
id: string;
|
|
11716
11346
|
statusCode: number;
|
|
11717
11347
|
roundtripTime: number;
|
|
@@ -12044,27 +11674,534 @@ export type WebsocketMessagesBeforeQuery = {
|
|
|
12044
11674
|
};
|
|
12045
11675
|
};
|
|
12046
11676
|
};
|
|
12047
|
-
export type WebsocketMessagesByOffsetQueryVariables = Exact<{
|
|
12048
|
-
offset: Scalars["Int"]["input"];
|
|
12049
|
-
limit: Scalars["Int"]["input"];
|
|
12050
|
-
order: StreamWsMessageOrderInput;
|
|
12051
|
-
streamId: Scalars["ID"]["input"];
|
|
11677
|
+
export type WebsocketMessagesByOffsetQueryVariables = Exact<{
|
|
11678
|
+
offset: Scalars["Int"]["input"];
|
|
11679
|
+
limit: Scalars["Int"]["input"];
|
|
11680
|
+
order: StreamWsMessageOrderInput;
|
|
11681
|
+
streamId: Scalars["ID"]["input"];
|
|
11682
|
+
}>;
|
|
11683
|
+
export type WebsocketMessagesByOffsetQuery = {
|
|
11684
|
+
streamWsMessagesByOffset: {
|
|
11685
|
+
snapshot: number;
|
|
11686
|
+
edges: Array<{
|
|
11687
|
+
__typename: "StreamWsMessageEdge";
|
|
11688
|
+
cursor: string;
|
|
11689
|
+
node: {
|
|
11690
|
+
id: string;
|
|
11691
|
+
length: number;
|
|
11692
|
+
createdAt: Date;
|
|
11693
|
+
direction: StreamMessageDirection;
|
|
11694
|
+
edited: boolean;
|
|
11695
|
+
alteration: Alteration;
|
|
11696
|
+
format: StreamWsMessageFormat;
|
|
11697
|
+
streamId: string;
|
|
11698
|
+
};
|
|
11699
|
+
}>;
|
|
11700
|
+
pageInfo: {
|
|
11701
|
+
__typename: "PageInfo";
|
|
11702
|
+
hasPreviousPage: boolean;
|
|
11703
|
+
hasNextPage: boolean;
|
|
11704
|
+
startCursor?: string | undefined | null;
|
|
11705
|
+
endCursor?: string | undefined | null;
|
|
11706
|
+
};
|
|
11707
|
+
};
|
|
11708
|
+
};
|
|
11709
|
+
export type WebsocketMessageCountQueryVariables = Exact<{
|
|
11710
|
+
streamId: Scalars["ID"]["input"];
|
|
11711
|
+
}>;
|
|
11712
|
+
export type WebsocketMessageCountQuery = {
|
|
11713
|
+
streamWsMessages: {
|
|
11714
|
+
count: {
|
|
11715
|
+
__typename: "Count";
|
|
11716
|
+
value: number;
|
|
11717
|
+
snapshot: number;
|
|
11718
|
+
};
|
|
11719
|
+
};
|
|
11720
|
+
};
|
|
11721
|
+
export type WebsocketMessageQueryVariables = Exact<{
|
|
11722
|
+
id: Scalars["ID"]["input"];
|
|
11723
|
+
}>;
|
|
11724
|
+
export type WebsocketMessageQuery = {
|
|
11725
|
+
streamWsMessage?: {
|
|
11726
|
+
raw: string;
|
|
11727
|
+
id: string;
|
|
11728
|
+
length: number;
|
|
11729
|
+
createdAt: Date;
|
|
11730
|
+
direction: StreamMessageDirection;
|
|
11731
|
+
edited: boolean;
|
|
11732
|
+
alteration: Alteration;
|
|
11733
|
+
format: StreamWsMessageFormat;
|
|
11734
|
+
streamId: string;
|
|
11735
|
+
} | undefined | null;
|
|
11736
|
+
};
|
|
11737
|
+
export type TamperRuleCollectionsQueryVariables = Exact<{
|
|
11738
|
+
[key: string]: never;
|
|
11739
|
+
}>;
|
|
11740
|
+
export type TamperRuleCollectionsQuery = {
|
|
11741
|
+
tamperRuleCollections: {
|
|
11742
|
+
snapshot: number;
|
|
11743
|
+
nodes: Array<{
|
|
11744
|
+
__typename: "TamperRuleCollection";
|
|
11745
|
+
id: string;
|
|
11746
|
+
name: string;
|
|
11747
|
+
rules: Array<{
|
|
11748
|
+
__typename: "TamperRule";
|
|
11749
|
+
id: string;
|
|
11750
|
+
isEnabled: boolean;
|
|
11751
|
+
isRegex: boolean;
|
|
11752
|
+
name: string;
|
|
11753
|
+
matchTerm: string;
|
|
11754
|
+
replaceTerm: string;
|
|
11755
|
+
strategy: TamperStrategy;
|
|
11756
|
+
rank: string;
|
|
11757
|
+
condition?: string | undefined | null;
|
|
11758
|
+
collection: {
|
|
11759
|
+
id: string;
|
|
11760
|
+
};
|
|
11761
|
+
}>;
|
|
11762
|
+
}>;
|
|
11763
|
+
pageInfo: {
|
|
11764
|
+
__typename: "PageInfo";
|
|
11765
|
+
hasPreviousPage: boolean;
|
|
11766
|
+
hasNextPage: boolean;
|
|
11767
|
+
startCursor?: string | undefined | null;
|
|
11768
|
+
endCursor?: string | undefined | null;
|
|
11769
|
+
};
|
|
11770
|
+
};
|
|
11771
|
+
};
|
|
11772
|
+
export type GetTasksQueryVariables = Exact<{
|
|
11773
|
+
[key: string]: never;
|
|
11774
|
+
}>;
|
|
11775
|
+
export type GetTasksQuery = {
|
|
11776
|
+
tasks: Array<{
|
|
11777
|
+
__typename: "ReplayTask";
|
|
11778
|
+
id: string;
|
|
11779
|
+
createdAt: Date;
|
|
11780
|
+
replayEntry: {
|
|
11781
|
+
__typename: "ReplayEntry";
|
|
11782
|
+
id: string;
|
|
11783
|
+
error?: string | undefined | null;
|
|
11784
|
+
connection: {
|
|
11785
|
+
__typename: "ConnectionInfo";
|
|
11786
|
+
host: string;
|
|
11787
|
+
port: number;
|
|
11788
|
+
isTls: boolean;
|
|
11789
|
+
};
|
|
11790
|
+
session: {
|
|
11791
|
+
id: string;
|
|
11792
|
+
};
|
|
11793
|
+
request?: {
|
|
11794
|
+
__typename: "Request";
|
|
11795
|
+
id: string;
|
|
11796
|
+
host: string;
|
|
11797
|
+
port: number;
|
|
11798
|
+
path: string;
|
|
11799
|
+
query: string;
|
|
11800
|
+
method: string;
|
|
11801
|
+
edited: boolean;
|
|
11802
|
+
isTls: boolean;
|
|
11803
|
+
length: number;
|
|
11804
|
+
alteration: Alteration;
|
|
11805
|
+
fileExtension?: string | undefined | null;
|
|
11806
|
+
source: Source;
|
|
11807
|
+
createdAt: Date;
|
|
11808
|
+
metadata: {
|
|
11809
|
+
__typename: "RequestMetadata";
|
|
11810
|
+
id: string;
|
|
11811
|
+
color?: string | undefined | null;
|
|
11812
|
+
};
|
|
11813
|
+
response?: {
|
|
11814
|
+
__typename: "Response";
|
|
11815
|
+
id: string;
|
|
11816
|
+
statusCode: number;
|
|
11817
|
+
roundtripTime: number;
|
|
11818
|
+
length: number;
|
|
11819
|
+
createdAt: Date;
|
|
11820
|
+
alteration: Alteration;
|
|
11821
|
+
edited: boolean;
|
|
11822
|
+
} | undefined | null;
|
|
11823
|
+
} | undefined | null;
|
|
11824
|
+
};
|
|
11825
|
+
} | {
|
|
11826
|
+
__typename: "WorkflowTask";
|
|
11827
|
+
id: string;
|
|
11828
|
+
createdAt: Date;
|
|
11829
|
+
workflow: {
|
|
11830
|
+
__typename: "Workflow";
|
|
11831
|
+
id: string;
|
|
11832
|
+
kind: WorkflowKind;
|
|
11833
|
+
name: string;
|
|
11834
|
+
enabled: boolean;
|
|
11835
|
+
global: boolean;
|
|
11836
|
+
readOnly: boolean;
|
|
11837
|
+
};
|
|
11838
|
+
}>;
|
|
11839
|
+
};
|
|
11840
|
+
export type UpstreamProxiesQueryVariables = Exact<{
|
|
11841
|
+
[key: string]: never;
|
|
11842
|
+
}>;
|
|
11843
|
+
export type UpstreamProxiesQuery = {
|
|
11844
|
+
upstreamProxiesHttp: Array<{
|
|
11845
|
+
__typename: "UpstreamProxyHttp";
|
|
11846
|
+
id: string;
|
|
11847
|
+
allowlist: Array<string>;
|
|
11848
|
+
denylist: Array<string>;
|
|
11849
|
+
enabled: boolean;
|
|
11850
|
+
rank: string;
|
|
11851
|
+
auth?: {
|
|
11852
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
11853
|
+
username: string;
|
|
11854
|
+
password: string;
|
|
11855
|
+
} | undefined | null;
|
|
11856
|
+
connection: {
|
|
11857
|
+
__typename: "ConnectionInfo";
|
|
11858
|
+
host: string;
|
|
11859
|
+
port: number;
|
|
11860
|
+
isTls: boolean;
|
|
11861
|
+
};
|
|
11862
|
+
}>;
|
|
11863
|
+
upstreamProxiesSocks: Array<{
|
|
11864
|
+
__typename: "UpstreamProxySocks";
|
|
11865
|
+
id: string;
|
|
11866
|
+
allowlist: Array<string>;
|
|
11867
|
+
denylist: Array<string>;
|
|
11868
|
+
enabled: boolean;
|
|
11869
|
+
includeDns: boolean;
|
|
11870
|
+
rank: string;
|
|
11871
|
+
auth?: {
|
|
11872
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
11873
|
+
username: string;
|
|
11874
|
+
password: string;
|
|
11875
|
+
} | undefined | null;
|
|
11876
|
+
connection: {
|
|
11877
|
+
__typename: "ConnectionInfo";
|
|
11878
|
+
host: string;
|
|
11879
|
+
port: number;
|
|
11880
|
+
isTls: boolean;
|
|
11881
|
+
};
|
|
11882
|
+
}>;
|
|
11883
|
+
};
|
|
11884
|
+
export type UserProfileQueryVariables = Exact<{
|
|
11885
|
+
[key: string]: never;
|
|
11886
|
+
}>;
|
|
11887
|
+
export type UserProfileQuery = {
|
|
11888
|
+
viewer: {
|
|
11889
|
+
id: string;
|
|
11890
|
+
profile: {
|
|
11891
|
+
__typename: "UserProfile";
|
|
11892
|
+
identity: {
|
|
11893
|
+
__typename: "UserIdentity";
|
|
11894
|
+
name: string;
|
|
11895
|
+
email: string;
|
|
11896
|
+
};
|
|
11897
|
+
subscription: {
|
|
11898
|
+
__typename: "UserSubscription";
|
|
11899
|
+
entitlements: Array<{
|
|
11900
|
+
__typename: "UserEntitlement";
|
|
11901
|
+
name: string;
|
|
11902
|
+
}>;
|
|
11903
|
+
plan: {
|
|
11904
|
+
__typename: "UserSubscriptionPlan";
|
|
11905
|
+
name: string;
|
|
11906
|
+
};
|
|
11907
|
+
};
|
|
11908
|
+
};
|
|
11909
|
+
};
|
|
11910
|
+
};
|
|
11911
|
+
export type UserSettingsQueryVariables = Exact<{
|
|
11912
|
+
[key: string]: never;
|
|
11913
|
+
}>;
|
|
11914
|
+
export type UserSettingsQuery = {
|
|
11915
|
+
viewer: {
|
|
11916
|
+
id: string;
|
|
11917
|
+
settings?: {
|
|
11918
|
+
__typename: "UserSettings";
|
|
11919
|
+
data: JSONValue;
|
|
11920
|
+
migrations: JSONValue;
|
|
11921
|
+
} | undefined | null;
|
|
11922
|
+
};
|
|
11923
|
+
};
|
|
11924
|
+
export type WorkflowQueryVariables = Exact<{
|
|
11925
|
+
id: Scalars["ID"]["input"];
|
|
11926
|
+
}>;
|
|
11927
|
+
export type WorkflowQuery = {
|
|
11928
|
+
workflow?: {
|
|
11929
|
+
__typename: "Workflow";
|
|
11930
|
+
definition: JSONValue;
|
|
11931
|
+
id: string;
|
|
11932
|
+
kind: WorkflowKind;
|
|
11933
|
+
name: string;
|
|
11934
|
+
enabled: boolean;
|
|
11935
|
+
global: boolean;
|
|
11936
|
+
readOnly: boolean;
|
|
11937
|
+
} | undefined | null;
|
|
11938
|
+
};
|
|
11939
|
+
export type WorkflowsQueryVariables = Exact<{
|
|
11940
|
+
[key: string]: never;
|
|
11941
|
+
}>;
|
|
11942
|
+
export type WorkflowsQuery = {
|
|
11943
|
+
workflows: Array<{
|
|
11944
|
+
__typename: "Workflow";
|
|
11945
|
+
definition: JSONValue;
|
|
11946
|
+
id: string;
|
|
11947
|
+
kind: WorkflowKind;
|
|
11948
|
+
name: string;
|
|
11949
|
+
enabled: boolean;
|
|
11950
|
+
global: boolean;
|
|
11951
|
+
readOnly: boolean;
|
|
11952
|
+
}>;
|
|
11953
|
+
};
|
|
11954
|
+
export type WorkflowNodeDefinitionsQueryVariables = Exact<{
|
|
11955
|
+
[key: string]: never;
|
|
11956
|
+
}>;
|
|
11957
|
+
export type WorkflowNodeDefinitionsQuery = {
|
|
11958
|
+
workflowNodeDefinitions: Array<{
|
|
11959
|
+
__typename: "WorkflowNodeDefinition";
|
|
11960
|
+
raw: JSONValue;
|
|
11961
|
+
}>;
|
|
11962
|
+
};
|
|
11963
|
+
export type RequestFullFragment = {
|
|
11964
|
+
__typename: "Request";
|
|
11965
|
+
raw: string;
|
|
11966
|
+
id: string;
|
|
11967
|
+
host: string;
|
|
11968
|
+
port: number;
|
|
11969
|
+
path: string;
|
|
11970
|
+
query: string;
|
|
11971
|
+
method: string;
|
|
11972
|
+
edited: boolean;
|
|
11973
|
+
isTls: boolean;
|
|
11974
|
+
length: number;
|
|
11975
|
+
alteration: Alteration;
|
|
11976
|
+
fileExtension?: string | undefined | null;
|
|
11977
|
+
source: Source;
|
|
11978
|
+
createdAt: Date;
|
|
11979
|
+
edits: Array<{
|
|
11980
|
+
__typename: "Request";
|
|
11981
|
+
id: string;
|
|
11982
|
+
host: string;
|
|
11983
|
+
port: number;
|
|
11984
|
+
path: string;
|
|
11985
|
+
query: string;
|
|
11986
|
+
method: string;
|
|
11987
|
+
edited: boolean;
|
|
11988
|
+
isTls: boolean;
|
|
11989
|
+
length: number;
|
|
11990
|
+
alteration: Alteration;
|
|
11991
|
+
fileExtension?: string | undefined | null;
|
|
11992
|
+
source: Source;
|
|
11993
|
+
createdAt: Date;
|
|
11994
|
+
metadata: {
|
|
11995
|
+
__typename: "RequestMetadata";
|
|
11996
|
+
id: string;
|
|
11997
|
+
color?: string | undefined | null;
|
|
11998
|
+
};
|
|
11999
|
+
response?: {
|
|
12000
|
+
__typename: "Response";
|
|
12001
|
+
id: string;
|
|
12002
|
+
statusCode: number;
|
|
12003
|
+
roundtripTime: number;
|
|
12004
|
+
length: number;
|
|
12005
|
+
createdAt: Date;
|
|
12006
|
+
alteration: Alteration;
|
|
12007
|
+
edited: boolean;
|
|
12008
|
+
} | undefined | null;
|
|
12009
|
+
}>;
|
|
12010
|
+
metadata: {
|
|
12011
|
+
__typename: "RequestMetadata";
|
|
12012
|
+
id: string;
|
|
12013
|
+
color?: string | undefined | null;
|
|
12014
|
+
};
|
|
12015
|
+
response?: {
|
|
12016
|
+
__typename: "Response";
|
|
12017
|
+
id: string;
|
|
12018
|
+
statusCode: number;
|
|
12019
|
+
roundtripTime: number;
|
|
12020
|
+
length: number;
|
|
12021
|
+
createdAt: Date;
|
|
12022
|
+
alteration: Alteration;
|
|
12023
|
+
edited: boolean;
|
|
12024
|
+
} | undefined | null;
|
|
12025
|
+
};
|
|
12026
|
+
export type RequestFullFieldsFragment = {
|
|
12027
|
+
__typename: "Request";
|
|
12028
|
+
raw: string;
|
|
12029
|
+
id: string;
|
|
12030
|
+
host: string;
|
|
12031
|
+
port: number;
|
|
12032
|
+
path: string;
|
|
12033
|
+
query: string;
|
|
12034
|
+
method: string;
|
|
12035
|
+
edited: boolean;
|
|
12036
|
+
isTls: boolean;
|
|
12037
|
+
length: number;
|
|
12038
|
+
alteration: Alteration;
|
|
12039
|
+
fileExtension?: string | undefined | null;
|
|
12040
|
+
source: Source;
|
|
12041
|
+
createdAt: Date;
|
|
12042
|
+
edits: Array<{
|
|
12043
|
+
__typename: "Request";
|
|
12044
|
+
id: string;
|
|
12045
|
+
host: string;
|
|
12046
|
+
port: number;
|
|
12047
|
+
path: string;
|
|
12048
|
+
query: string;
|
|
12049
|
+
method: string;
|
|
12050
|
+
edited: boolean;
|
|
12051
|
+
isTls: boolean;
|
|
12052
|
+
length: number;
|
|
12053
|
+
alteration: Alteration;
|
|
12054
|
+
fileExtension?: string | undefined | null;
|
|
12055
|
+
source: Source;
|
|
12056
|
+
createdAt: Date;
|
|
12057
|
+
metadata: {
|
|
12058
|
+
__typename: "RequestMetadata";
|
|
12059
|
+
id: string;
|
|
12060
|
+
color?: string | undefined | null;
|
|
12061
|
+
};
|
|
12062
|
+
response?: {
|
|
12063
|
+
__typename: "Response";
|
|
12064
|
+
id: string;
|
|
12065
|
+
statusCode: number;
|
|
12066
|
+
roundtripTime: number;
|
|
12067
|
+
length: number;
|
|
12068
|
+
createdAt: Date;
|
|
12069
|
+
alteration: Alteration;
|
|
12070
|
+
edited: boolean;
|
|
12071
|
+
} | undefined | null;
|
|
12072
|
+
}>;
|
|
12073
|
+
metadata: {
|
|
12074
|
+
__typename: "RequestMetadata";
|
|
12075
|
+
id: string;
|
|
12076
|
+
color?: string | undefined | null;
|
|
12077
|
+
};
|
|
12078
|
+
response?: {
|
|
12079
|
+
__typename: "Response";
|
|
12080
|
+
id: string;
|
|
12081
|
+
statusCode: number;
|
|
12082
|
+
roundtripTime: number;
|
|
12083
|
+
length: number;
|
|
12084
|
+
createdAt: Date;
|
|
12085
|
+
alteration: Alteration;
|
|
12086
|
+
edited: boolean;
|
|
12087
|
+
} | undefined | null;
|
|
12088
|
+
};
|
|
12089
|
+
export type RequestMetaFragment = {
|
|
12090
|
+
__typename: "Request";
|
|
12091
|
+
id: string;
|
|
12092
|
+
host: string;
|
|
12093
|
+
port: number;
|
|
12094
|
+
path: string;
|
|
12095
|
+
query: string;
|
|
12096
|
+
method: string;
|
|
12097
|
+
edited: boolean;
|
|
12098
|
+
isTls: boolean;
|
|
12099
|
+
length: number;
|
|
12100
|
+
alteration: Alteration;
|
|
12101
|
+
fileExtension?: string | undefined | null;
|
|
12102
|
+
source: Source;
|
|
12103
|
+
createdAt: Date;
|
|
12104
|
+
metadata: {
|
|
12105
|
+
__typename: "RequestMetadata";
|
|
12106
|
+
id: string;
|
|
12107
|
+
color?: string | undefined | null;
|
|
12108
|
+
};
|
|
12109
|
+
response?: {
|
|
12110
|
+
__typename: "Response";
|
|
12111
|
+
id: string;
|
|
12112
|
+
statusCode: number;
|
|
12113
|
+
roundtripTime: number;
|
|
12114
|
+
length: number;
|
|
12115
|
+
createdAt: Date;
|
|
12116
|
+
alteration: Alteration;
|
|
12117
|
+
edited: boolean;
|
|
12118
|
+
} | undefined | null;
|
|
12119
|
+
};
|
|
12120
|
+
export type RequestEdgeMetaFragment = {
|
|
12121
|
+
__typename: "RequestEdge";
|
|
12122
|
+
cursor: string;
|
|
12123
|
+
node: {
|
|
12124
|
+
__typename: "Request";
|
|
12125
|
+
id: string;
|
|
12126
|
+
host: string;
|
|
12127
|
+
port: number;
|
|
12128
|
+
path: string;
|
|
12129
|
+
query: string;
|
|
12130
|
+
method: string;
|
|
12131
|
+
edited: boolean;
|
|
12132
|
+
isTls: boolean;
|
|
12133
|
+
length: number;
|
|
12134
|
+
alteration: Alteration;
|
|
12135
|
+
fileExtension?: string | undefined | null;
|
|
12136
|
+
source: Source;
|
|
12137
|
+
createdAt: Date;
|
|
12138
|
+
metadata: {
|
|
12139
|
+
__typename: "RequestMetadata";
|
|
12140
|
+
id: string;
|
|
12141
|
+
color?: string | undefined | null;
|
|
12142
|
+
};
|
|
12143
|
+
response?: {
|
|
12144
|
+
__typename: "Response";
|
|
12145
|
+
id: string;
|
|
12146
|
+
statusCode: number;
|
|
12147
|
+
roundtripTime: number;
|
|
12148
|
+
length: number;
|
|
12149
|
+
createdAt: Date;
|
|
12150
|
+
alteration: Alteration;
|
|
12151
|
+
edited: boolean;
|
|
12152
|
+
} | undefined | null;
|
|
12153
|
+
};
|
|
12154
|
+
};
|
|
12155
|
+
export type RequestMetadataFullFragment = {
|
|
12156
|
+
__typename: "RequestMetadata";
|
|
12157
|
+
id: string;
|
|
12158
|
+
color?: string | undefined | null;
|
|
12159
|
+
};
|
|
12160
|
+
export type RequestsQueryVariables = Exact<{
|
|
12161
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
12162
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
12163
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12164
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12165
|
+
order?: InputMaybe<RequestResponseOrderInput>;
|
|
12166
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12167
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12052
12168
|
}>;
|
|
12053
|
-
export type
|
|
12054
|
-
|
|
12169
|
+
export type RequestsQuery = {
|
|
12170
|
+
requests: {
|
|
12055
12171
|
snapshot: number;
|
|
12056
12172
|
edges: Array<{
|
|
12057
|
-
__typename: "
|
|
12173
|
+
__typename: "RequestEdge";
|
|
12058
12174
|
cursor: string;
|
|
12059
12175
|
node: {
|
|
12176
|
+
__typename: "Request";
|
|
12060
12177
|
id: string;
|
|
12061
|
-
|
|
12062
|
-
|
|
12063
|
-
|
|
12178
|
+
host: string;
|
|
12179
|
+
port: number;
|
|
12180
|
+
path: string;
|
|
12181
|
+
query: string;
|
|
12182
|
+
method: string;
|
|
12064
12183
|
edited: boolean;
|
|
12184
|
+
isTls: boolean;
|
|
12185
|
+
length: number;
|
|
12065
12186
|
alteration: Alteration;
|
|
12066
|
-
|
|
12067
|
-
|
|
12187
|
+
fileExtension?: string | undefined | null;
|
|
12188
|
+
source: Source;
|
|
12189
|
+
createdAt: Date;
|
|
12190
|
+
metadata: {
|
|
12191
|
+
__typename: "RequestMetadata";
|
|
12192
|
+
id: string;
|
|
12193
|
+
color?: string | undefined | null;
|
|
12194
|
+
};
|
|
12195
|
+
response?: {
|
|
12196
|
+
__typename: "Response";
|
|
12197
|
+
id: string;
|
|
12198
|
+
statusCode: number;
|
|
12199
|
+
roundtripTime: number;
|
|
12200
|
+
length: number;
|
|
12201
|
+
createdAt: Date;
|
|
12202
|
+
alteration: Alteration;
|
|
12203
|
+
edited: boolean;
|
|
12204
|
+
} | undefined | null;
|
|
12068
12205
|
};
|
|
12069
12206
|
}>;
|
|
12070
12207
|
pageInfo: {
|
|
@@ -12076,11 +12213,13 @@ export type WebsocketMessagesByOffsetQuery = {
|
|
|
12076
12213
|
};
|
|
12077
12214
|
};
|
|
12078
12215
|
};
|
|
12079
|
-
export type
|
|
12080
|
-
|
|
12216
|
+
export type RequestCountQueryVariables = Exact<{
|
|
12217
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12218
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12081
12219
|
}>;
|
|
12082
|
-
export type
|
|
12083
|
-
|
|
12220
|
+
export type RequestCountQuery = {
|
|
12221
|
+
requests: {
|
|
12222
|
+
snapshot: number;
|
|
12084
12223
|
count: {
|
|
12085
12224
|
__typename: "Count";
|
|
12086
12225
|
value: number;
|
|
@@ -12088,47 +12227,118 @@ export type WebsocketMessageCountQuery = {
|
|
|
12088
12227
|
};
|
|
12089
12228
|
};
|
|
12090
12229
|
};
|
|
12091
|
-
export type
|
|
12230
|
+
export type RequestQueryVariables = Exact<{
|
|
12092
12231
|
id: Scalars["ID"]["input"];
|
|
12093
12232
|
}>;
|
|
12094
|
-
export type
|
|
12095
|
-
|
|
12233
|
+
export type RequestQuery = {
|
|
12234
|
+
request?: {
|
|
12235
|
+
__typename: "Request";
|
|
12096
12236
|
raw: string;
|
|
12097
12237
|
id: string;
|
|
12098
|
-
|
|
12099
|
-
|
|
12100
|
-
|
|
12238
|
+
host: string;
|
|
12239
|
+
port: number;
|
|
12240
|
+
path: string;
|
|
12241
|
+
query: string;
|
|
12242
|
+
method: string;
|
|
12101
12243
|
edited: boolean;
|
|
12244
|
+
isTls: boolean;
|
|
12245
|
+
length: number;
|
|
12102
12246
|
alteration: Alteration;
|
|
12103
|
-
|
|
12104
|
-
|
|
12247
|
+
fileExtension?: string | undefined | null;
|
|
12248
|
+
source: Source;
|
|
12249
|
+
createdAt: Date;
|
|
12250
|
+
edits: Array<{
|
|
12251
|
+
__typename: "Request";
|
|
12252
|
+
id: string;
|
|
12253
|
+
host: string;
|
|
12254
|
+
port: number;
|
|
12255
|
+
path: string;
|
|
12256
|
+
query: string;
|
|
12257
|
+
method: string;
|
|
12258
|
+
edited: boolean;
|
|
12259
|
+
isTls: boolean;
|
|
12260
|
+
length: number;
|
|
12261
|
+
alteration: Alteration;
|
|
12262
|
+
fileExtension?: string | undefined | null;
|
|
12263
|
+
source: Source;
|
|
12264
|
+
createdAt: Date;
|
|
12265
|
+
metadata: {
|
|
12266
|
+
__typename: "RequestMetadata";
|
|
12267
|
+
id: string;
|
|
12268
|
+
color?: string | undefined | null;
|
|
12269
|
+
};
|
|
12270
|
+
response?: {
|
|
12271
|
+
__typename: "Response";
|
|
12272
|
+
id: string;
|
|
12273
|
+
statusCode: number;
|
|
12274
|
+
roundtripTime: number;
|
|
12275
|
+
length: number;
|
|
12276
|
+
createdAt: Date;
|
|
12277
|
+
alteration: Alteration;
|
|
12278
|
+
edited: boolean;
|
|
12279
|
+
} | undefined | null;
|
|
12280
|
+
}>;
|
|
12281
|
+
metadata: {
|
|
12282
|
+
__typename: "RequestMetadata";
|
|
12283
|
+
id: string;
|
|
12284
|
+
color?: string | undefined | null;
|
|
12285
|
+
};
|
|
12286
|
+
response?: {
|
|
12287
|
+
__typename: "Response";
|
|
12288
|
+
id: string;
|
|
12289
|
+
statusCode: number;
|
|
12290
|
+
roundtripTime: number;
|
|
12291
|
+
length: number;
|
|
12292
|
+
createdAt: Date;
|
|
12293
|
+
alteration: Alteration;
|
|
12294
|
+
edited: boolean;
|
|
12295
|
+
} | undefined | null;
|
|
12105
12296
|
} | undefined | null;
|
|
12106
12297
|
};
|
|
12107
|
-
export type
|
|
12108
|
-
[
|
|
12298
|
+
export type RequestsByOffsetQueryVariables = Exact<{
|
|
12299
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12300
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12301
|
+
order?: InputMaybe<RequestResponseOrderInput>;
|
|
12302
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12303
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12109
12304
|
}>;
|
|
12110
|
-
export type
|
|
12111
|
-
|
|
12305
|
+
export type RequestsByOffsetQuery = {
|
|
12306
|
+
requestsByOffset: {
|
|
12112
12307
|
snapshot: number;
|
|
12113
|
-
|
|
12114
|
-
__typename: "
|
|
12115
|
-
|
|
12116
|
-
|
|
12117
|
-
|
|
12118
|
-
__typename: "TamperRule";
|
|
12308
|
+
edges: Array<{
|
|
12309
|
+
__typename: "RequestEdge";
|
|
12310
|
+
cursor: string;
|
|
12311
|
+
node: {
|
|
12312
|
+
__typename: "Request";
|
|
12119
12313
|
id: string;
|
|
12120
|
-
|
|
12121
|
-
|
|
12122
|
-
|
|
12123
|
-
|
|
12124
|
-
|
|
12125
|
-
|
|
12126
|
-
|
|
12127
|
-
|
|
12128
|
-
|
|
12314
|
+
host: string;
|
|
12315
|
+
port: number;
|
|
12316
|
+
path: string;
|
|
12317
|
+
query: string;
|
|
12318
|
+
method: string;
|
|
12319
|
+
edited: boolean;
|
|
12320
|
+
isTls: boolean;
|
|
12321
|
+
length: number;
|
|
12322
|
+
alteration: Alteration;
|
|
12323
|
+
fileExtension?: string | undefined | null;
|
|
12324
|
+
source: Source;
|
|
12325
|
+
createdAt: Date;
|
|
12326
|
+
metadata: {
|
|
12327
|
+
__typename: "RequestMetadata";
|
|
12129
12328
|
id: string;
|
|
12329
|
+
color?: string | undefined | null;
|
|
12130
12330
|
};
|
|
12131
|
-
|
|
12331
|
+
response?: {
|
|
12332
|
+
__typename: "Response";
|
|
12333
|
+
id: string;
|
|
12334
|
+
statusCode: number;
|
|
12335
|
+
roundtripTime: number;
|
|
12336
|
+
length: number;
|
|
12337
|
+
createdAt: Date;
|
|
12338
|
+
alteration: Alteration;
|
|
12339
|
+
edited: boolean;
|
|
12340
|
+
} | undefined | null;
|
|
12341
|
+
};
|
|
12132
12342
|
}>;
|
|
12133
12343
|
pageInfo: {
|
|
12134
12344
|
__typename: "PageInfo";
|
|
@@ -12139,28 +12349,79 @@ export type TamperRuleCollectionsQuery = {
|
|
|
12139
12349
|
};
|
|
12140
12350
|
};
|
|
12141
12351
|
};
|
|
12142
|
-
export type
|
|
12143
|
-
|
|
12352
|
+
export type UpdateRequestMetadataMutationVariables = Exact<{
|
|
12353
|
+
id: Scalars["ID"]["input"];
|
|
12354
|
+
input: UpdateRequestMetadataInput;
|
|
12355
|
+
}>;
|
|
12356
|
+
export type UpdateRequestMetadataMutation = {
|
|
12357
|
+
updateRequestMetadata: {
|
|
12358
|
+
snapshot?: number | undefined | null;
|
|
12359
|
+
metadata?: {
|
|
12360
|
+
__typename: "RequestMetadata";
|
|
12361
|
+
id: string;
|
|
12362
|
+
color?: string | undefined | null;
|
|
12363
|
+
} | undefined | null;
|
|
12364
|
+
};
|
|
12365
|
+
};
|
|
12366
|
+
export type StartExportRequestsTaskMutationVariables = Exact<{
|
|
12367
|
+
input: StartExportRequestsTaskInput;
|
|
12368
|
+
}>;
|
|
12369
|
+
export type StartExportRequestsTaskMutation = {
|
|
12370
|
+
startExportRequestsTask: {
|
|
12371
|
+
task?: {
|
|
12372
|
+
__typename: "DataExportTask";
|
|
12373
|
+
id: string;
|
|
12374
|
+
export: {
|
|
12375
|
+
__typename: "DataExport";
|
|
12376
|
+
id: string;
|
|
12377
|
+
name: string;
|
|
12378
|
+
path: string;
|
|
12379
|
+
size: number;
|
|
12380
|
+
status: DataExportStatus;
|
|
12381
|
+
format: DataExportFormat;
|
|
12382
|
+
error?: string | undefined | null;
|
|
12383
|
+
createdAt: Date;
|
|
12384
|
+
};
|
|
12385
|
+
} | undefined | null;
|
|
12386
|
+
error?: {
|
|
12387
|
+
__typename: "OtherUserError";
|
|
12388
|
+
code: string;
|
|
12389
|
+
} | {
|
|
12390
|
+
__typename: "PermissionDeniedUserError";
|
|
12391
|
+
code: string;
|
|
12392
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
12393
|
+
} | undefined | null;
|
|
12394
|
+
};
|
|
12395
|
+
};
|
|
12396
|
+
export type RenderRequestMutationVariables = Exact<{
|
|
12397
|
+
id: Scalars["ID"]["input"];
|
|
12398
|
+
input: RenderRequestInput;
|
|
12399
|
+
}>;
|
|
12400
|
+
export type RenderRequestMutation = {
|
|
12401
|
+
renderRequest: {
|
|
12402
|
+
render?: string | undefined | null;
|
|
12403
|
+
error?: {
|
|
12404
|
+
__typename: "OtherUserError";
|
|
12405
|
+
code: string;
|
|
12406
|
+
} | {
|
|
12407
|
+
__typename: "RenderFailedUserError";
|
|
12408
|
+
reason: RenderFailedErrorReason;
|
|
12409
|
+
code: string;
|
|
12410
|
+
} | undefined | null;
|
|
12411
|
+
};
|
|
12412
|
+
};
|
|
12413
|
+
export type CreatedRequestSubscriptionVariables = Exact<{
|
|
12414
|
+
order?: InputMaybe<RequestResponseOrderInput>;
|
|
12415
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12416
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12144
12417
|
}>;
|
|
12145
|
-
export type
|
|
12146
|
-
|
|
12147
|
-
|
|
12148
|
-
|
|
12149
|
-
|
|
12150
|
-
|
|
12151
|
-
|
|
12152
|
-
id: string;
|
|
12153
|
-
error?: string | undefined | null;
|
|
12154
|
-
connection: {
|
|
12155
|
-
__typename: "ConnectionInfo";
|
|
12156
|
-
host: string;
|
|
12157
|
-
port: number;
|
|
12158
|
-
isTls: boolean;
|
|
12159
|
-
};
|
|
12160
|
-
session: {
|
|
12161
|
-
id: string;
|
|
12162
|
-
};
|
|
12163
|
-
request?: {
|
|
12418
|
+
export type CreatedRequestSubscription = {
|
|
12419
|
+
createdRequest: {
|
|
12420
|
+
snapshot: number;
|
|
12421
|
+
requestEdge: {
|
|
12422
|
+
__typename: "RequestEdge";
|
|
12423
|
+
cursor: string;
|
|
12424
|
+
node: {
|
|
12164
12425
|
__typename: "Request";
|
|
12165
12426
|
id: string;
|
|
12166
12427
|
host: string;
|
|
@@ -12190,257 +12451,99 @@ export type GetTasksQuery = {
|
|
|
12190
12451
|
alteration: Alteration;
|
|
12191
12452
|
edited: boolean;
|
|
12192
12453
|
} | undefined | null;
|
|
12193
|
-
} | undefined | null;
|
|
12194
|
-
};
|
|
12195
|
-
} | {
|
|
12196
|
-
__typename: "WorkflowTask";
|
|
12197
|
-
id: string;
|
|
12198
|
-
createdAt: Date;
|
|
12199
|
-
workflow: {
|
|
12200
|
-
__typename: "Workflow";
|
|
12201
|
-
id: string;
|
|
12202
|
-
kind: WorkflowKind;
|
|
12203
|
-
name: string;
|
|
12204
|
-
enabled: boolean;
|
|
12205
|
-
global: boolean;
|
|
12206
|
-
readOnly: boolean;
|
|
12207
|
-
};
|
|
12208
|
-
}>;
|
|
12209
|
-
};
|
|
12210
|
-
export type UpstreamProxiesQueryVariables = Exact<{
|
|
12211
|
-
[key: string]: never;
|
|
12212
|
-
}>;
|
|
12213
|
-
export type UpstreamProxiesQuery = {
|
|
12214
|
-
upstreamProxiesHttp: Array<{
|
|
12215
|
-
__typename: "UpstreamProxyHttp";
|
|
12216
|
-
id: string;
|
|
12217
|
-
allowlist: Array<string>;
|
|
12218
|
-
denylist: Array<string>;
|
|
12219
|
-
enabled: boolean;
|
|
12220
|
-
rank: string;
|
|
12221
|
-
auth?: {
|
|
12222
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
12223
|
-
username: string;
|
|
12224
|
-
password: string;
|
|
12225
|
-
} | undefined | null;
|
|
12226
|
-
connection: {
|
|
12227
|
-
__typename: "ConnectionInfo";
|
|
12228
|
-
host: string;
|
|
12229
|
-
port: number;
|
|
12230
|
-
isTls: boolean;
|
|
12231
|
-
};
|
|
12232
|
-
}>;
|
|
12233
|
-
upstreamProxiesSocks: Array<{
|
|
12234
|
-
__typename: "UpstreamProxySocks";
|
|
12235
|
-
id: string;
|
|
12236
|
-
allowlist: Array<string>;
|
|
12237
|
-
denylist: Array<string>;
|
|
12238
|
-
enabled: boolean;
|
|
12239
|
-
includeDns: boolean;
|
|
12240
|
-
rank: string;
|
|
12241
|
-
auth?: {
|
|
12242
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
12243
|
-
username: string;
|
|
12244
|
-
password: string;
|
|
12245
|
-
} | undefined | null;
|
|
12246
|
-
connection: {
|
|
12247
|
-
__typename: "ConnectionInfo";
|
|
12248
|
-
host: string;
|
|
12249
|
-
port: number;
|
|
12250
|
-
isTls: boolean;
|
|
12251
|
-
};
|
|
12252
|
-
}>;
|
|
12253
|
-
};
|
|
12254
|
-
export type UserProfileQueryVariables = Exact<{
|
|
12255
|
-
[key: string]: never;
|
|
12256
|
-
}>;
|
|
12257
|
-
export type UserProfileQuery = {
|
|
12258
|
-
viewer: {
|
|
12259
|
-
id: string;
|
|
12260
|
-
profile: {
|
|
12261
|
-
__typename: "UserProfile";
|
|
12262
|
-
identity: {
|
|
12263
|
-
__typename: "UserIdentity";
|
|
12264
|
-
name: string;
|
|
12265
|
-
email: string;
|
|
12266
|
-
};
|
|
12267
|
-
subscription: {
|
|
12268
|
-
__typename: "UserSubscription";
|
|
12269
|
-
entitlements: Array<{
|
|
12270
|
-
__typename: "UserEntitlement";
|
|
12271
|
-
name: string;
|
|
12272
|
-
}>;
|
|
12273
|
-
plan: {
|
|
12274
|
-
__typename: "UserSubscriptionPlan";
|
|
12275
|
-
name: string;
|
|
12276
|
-
};
|
|
12277
12454
|
};
|
|
12278
12455
|
};
|
|
12279
12456
|
};
|
|
12280
12457
|
};
|
|
12281
|
-
export type
|
|
12282
|
-
|
|
12283
|
-
|
|
12284
|
-
|
|
12285
|
-
viewer: {
|
|
12286
|
-
id: string;
|
|
12287
|
-
settings?: {
|
|
12288
|
-
__typename: "UserSettings";
|
|
12289
|
-
data: JSONValue;
|
|
12290
|
-
migrations: JSONValue;
|
|
12291
|
-
} | undefined | null;
|
|
12292
|
-
};
|
|
12293
|
-
};
|
|
12294
|
-
export type WorkflowQueryVariables = Exact<{
|
|
12295
|
-
id: Scalars["ID"]["input"];
|
|
12296
|
-
}>;
|
|
12297
|
-
export type WorkflowQuery = {
|
|
12298
|
-
workflow?: {
|
|
12299
|
-
__typename: "Workflow";
|
|
12300
|
-
definition: JSONValue;
|
|
12301
|
-
id: string;
|
|
12302
|
-
kind: WorkflowKind;
|
|
12303
|
-
name: string;
|
|
12304
|
-
enabled: boolean;
|
|
12305
|
-
global: boolean;
|
|
12306
|
-
readOnly: boolean;
|
|
12307
|
-
} | undefined | null;
|
|
12308
|
-
};
|
|
12309
|
-
export type WorkflowsQueryVariables = Exact<{
|
|
12310
|
-
[key: string]: never;
|
|
12311
|
-
}>;
|
|
12312
|
-
export type WorkflowsQuery = {
|
|
12313
|
-
workflows: Array<{
|
|
12314
|
-
__typename: "Workflow";
|
|
12315
|
-
definition: JSONValue;
|
|
12316
|
-
id: string;
|
|
12317
|
-
kind: WorkflowKind;
|
|
12318
|
-
name: string;
|
|
12319
|
-
enabled: boolean;
|
|
12320
|
-
global: boolean;
|
|
12321
|
-
readOnly: boolean;
|
|
12322
|
-
}>;
|
|
12323
|
-
};
|
|
12324
|
-
export type WorkflowNodeDefinitionsQueryVariables = Exact<{
|
|
12325
|
-
[key: string]: never;
|
|
12326
|
-
}>;
|
|
12327
|
-
export type WorkflowNodeDefinitionsQuery = {
|
|
12328
|
-
workflowNodeDefinitions: Array<{
|
|
12329
|
-
__typename: "WorkflowNodeDefinition";
|
|
12330
|
-
raw: JSONValue;
|
|
12331
|
-
}>;
|
|
12332
|
-
};
|
|
12333
|
-
export type CreatedAssistantMessageSubscriptionVariables = Exact<{
|
|
12334
|
-
[key: string]: never;
|
|
12458
|
+
export type UpdatedRequestSubscriptionVariables = Exact<{
|
|
12459
|
+
order?: InputMaybe<RequestResponseOrderInput>;
|
|
12460
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12461
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12335
12462
|
}>;
|
|
12336
|
-
export type
|
|
12337
|
-
|
|
12463
|
+
export type UpdatedRequestSubscription = {
|
|
12464
|
+
updatedRequest: {
|
|
12338
12465
|
snapshot: number;
|
|
12339
|
-
|
|
12466
|
+
requestEdge: {
|
|
12467
|
+
__typename: "RequestEdge";
|
|
12340
12468
|
cursor: string;
|
|
12341
12469
|
node: {
|
|
12342
|
-
__typename: "
|
|
12343
|
-
id: string;
|
|
12344
|
-
content: string;
|
|
12345
|
-
role: AssistantMessageRole;
|
|
12346
|
-
session: {
|
|
12347
|
-
id: string;
|
|
12348
|
-
};
|
|
12349
|
-
};
|
|
12350
|
-
};
|
|
12351
|
-
};
|
|
12352
|
-
};
|
|
12353
|
-
export type CreatedAssistantMessageTaskSubscriptionVariables = Exact<{
|
|
12354
|
-
[key: string]: never;
|
|
12355
|
-
}>;
|
|
12356
|
-
export type CreatedAssistantMessageTaskSubscription = {
|
|
12357
|
-
createdAssistantMessageTask: {
|
|
12358
|
-
task: {
|
|
12359
|
-
__typename: "AssistantMessageTask";
|
|
12360
|
-
id: string;
|
|
12361
|
-
message?: {
|
|
12362
|
-
__typename: "AssistantMessage";
|
|
12363
|
-
id: string;
|
|
12364
|
-
content: string;
|
|
12365
|
-
role: AssistantMessageRole;
|
|
12366
|
-
session: {
|
|
12367
|
-
id: string;
|
|
12368
|
-
};
|
|
12369
|
-
} | undefined | null;
|
|
12370
|
-
session: {
|
|
12371
|
-
__typename: "AssistantSession";
|
|
12470
|
+
__typename: "Request";
|
|
12372
12471
|
id: string;
|
|
12373
|
-
|
|
12374
|
-
|
|
12375
|
-
|
|
12472
|
+
host: string;
|
|
12473
|
+
port: number;
|
|
12474
|
+
path: string;
|
|
12475
|
+
query: string;
|
|
12476
|
+
method: string;
|
|
12477
|
+
edited: boolean;
|
|
12478
|
+
isTls: boolean;
|
|
12479
|
+
length: number;
|
|
12480
|
+
alteration: Alteration;
|
|
12481
|
+
fileExtension?: string | undefined | null;
|
|
12482
|
+
source: Source;
|
|
12376
12483
|
createdAt: Date;
|
|
12377
|
-
|
|
12378
|
-
|
|
12379
|
-
__typename: "AssistantUserError";
|
|
12380
|
-
code: string;
|
|
12381
|
-
assistantReason: AssistantErrorReason;
|
|
12382
|
-
} | {
|
|
12383
|
-
__typename: "AuthenticationUserError";
|
|
12384
|
-
reason: AuthenticationErrorReason;
|
|
12385
|
-
code: string;
|
|
12386
|
-
} | {
|
|
12387
|
-
__typename: "OtherUserError";
|
|
12388
|
-
code: string;
|
|
12389
|
-
} | undefined | null;
|
|
12390
|
-
};
|
|
12391
|
-
};
|
|
12392
|
-
};
|
|
12393
|
-
export type UpdatedAssistantMessageTaskSubscriptionVariables = Exact<{
|
|
12394
|
-
[key: string]: never;
|
|
12395
|
-
}>;
|
|
12396
|
-
export type UpdatedAssistantMessageTaskSubscription = {
|
|
12397
|
-
updatedAssistantMessageTask: {
|
|
12398
|
-
task: {
|
|
12399
|
-
__typename: "AssistantMessageTask";
|
|
12400
|
-
id: string;
|
|
12401
|
-
message?: {
|
|
12402
|
-
__typename: "AssistantMessage";
|
|
12403
|
-
id: string;
|
|
12404
|
-
content: string;
|
|
12405
|
-
role: AssistantMessageRole;
|
|
12406
|
-
session: {
|
|
12484
|
+
metadata: {
|
|
12485
|
+
__typename: "RequestMetadata";
|
|
12407
12486
|
id: string;
|
|
12487
|
+
color?: string | undefined | null;
|
|
12408
12488
|
};
|
|
12409
|
-
|
|
12410
|
-
|
|
12411
|
-
|
|
12412
|
-
|
|
12413
|
-
|
|
12414
|
-
|
|
12415
|
-
|
|
12416
|
-
|
|
12489
|
+
response?: {
|
|
12490
|
+
__typename: "Response";
|
|
12491
|
+
id: string;
|
|
12492
|
+
statusCode: number;
|
|
12493
|
+
roundtripTime: number;
|
|
12494
|
+
length: number;
|
|
12495
|
+
createdAt: Date;
|
|
12496
|
+
alteration: Alteration;
|
|
12497
|
+
edited: boolean;
|
|
12498
|
+
} | undefined | null;
|
|
12417
12499
|
};
|
|
12418
|
-
error?: {
|
|
12419
|
-
__typename: "AssistantUserError";
|
|
12420
|
-
code: string;
|
|
12421
|
-
assistantReason: AssistantErrorReason;
|
|
12422
|
-
} | {
|
|
12423
|
-
__typename: "AuthenticationUserError";
|
|
12424
|
-
reason: AuthenticationErrorReason;
|
|
12425
|
-
code: string;
|
|
12426
|
-
} | {
|
|
12427
|
-
__typename: "OtherUserError";
|
|
12428
|
-
code: string;
|
|
12429
|
-
} | undefined | null;
|
|
12430
12500
|
};
|
|
12431
12501
|
};
|
|
12432
12502
|
};
|
|
12433
|
-
export type
|
|
12503
|
+
export type UpdatedRequestMetadataSubscriptionVariables = Exact<{
|
|
12434
12504
|
[key: string]: never;
|
|
12435
12505
|
}>;
|
|
12436
|
-
export type
|
|
12437
|
-
|
|
12438
|
-
|
|
12439
|
-
|
|
12440
|
-
|
|
12506
|
+
export type UpdatedRequestMetadataSubscription = {
|
|
12507
|
+
updatedRequestMetadata: {
|
|
12508
|
+
snapshot: number;
|
|
12509
|
+
metadata: {
|
|
12510
|
+
__typename: "RequestMetadata";
|
|
12511
|
+
id: string;
|
|
12512
|
+
color?: string | undefined | null;
|
|
12441
12513
|
};
|
|
12442
12514
|
};
|
|
12443
12515
|
};
|
|
12516
|
+
export type ResponseMetaFragment = {
|
|
12517
|
+
__typename: "Response";
|
|
12518
|
+
id: string;
|
|
12519
|
+
statusCode: number;
|
|
12520
|
+
roundtripTime: number;
|
|
12521
|
+
length: number;
|
|
12522
|
+
createdAt: Date;
|
|
12523
|
+
alteration: Alteration;
|
|
12524
|
+
edited: boolean;
|
|
12525
|
+
};
|
|
12526
|
+
export type ResponseFullFragment = {
|
|
12527
|
+
__typename: "Response";
|
|
12528
|
+
raw: string;
|
|
12529
|
+
id: string;
|
|
12530
|
+
statusCode: number;
|
|
12531
|
+
roundtripTime: number;
|
|
12532
|
+
length: number;
|
|
12533
|
+
createdAt: Date;
|
|
12534
|
+
alteration: Alteration;
|
|
12535
|
+
edited: boolean;
|
|
12536
|
+
edits: Array<{
|
|
12537
|
+
__typename: "Response";
|
|
12538
|
+
id: string;
|
|
12539
|
+
statusCode: number;
|
|
12540
|
+
roundtripTime: number;
|
|
12541
|
+
length: number;
|
|
12542
|
+
createdAt: Date;
|
|
12543
|
+
alteration: Alteration;
|
|
12544
|
+
edited: boolean;
|
|
12545
|
+
}>;
|
|
12546
|
+
};
|
|
12444
12547
|
export type CreatedAuthenticationTokenSubscriptionVariables = Exact<{
|
|
12445
12548
|
requestId: Scalars["ID"]["input"];
|
|
12446
12549
|
}>;
|
|
@@ -13585,109 +13688,6 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
13585
13688
|
};
|
|
13586
13689
|
};
|
|
13587
13690
|
};
|
|
13588
|
-
export type CreatedRequestSubscriptionVariables = Exact<{
|
|
13589
|
-
order?: InputMaybe<RequestResponseOrderInput>;
|
|
13590
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
13591
|
-
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
13592
|
-
}>;
|
|
13593
|
-
export type CreatedRequestSubscription = {
|
|
13594
|
-
createdRequest: {
|
|
13595
|
-
snapshot: number;
|
|
13596
|
-
requestEdge: {
|
|
13597
|
-
__typename: "RequestEdge";
|
|
13598
|
-
cursor: string;
|
|
13599
|
-
node: {
|
|
13600
|
-
__typename: "Request";
|
|
13601
|
-
id: string;
|
|
13602
|
-
host: string;
|
|
13603
|
-
port: number;
|
|
13604
|
-
path: string;
|
|
13605
|
-
query: string;
|
|
13606
|
-
method: string;
|
|
13607
|
-
edited: boolean;
|
|
13608
|
-
isTls: boolean;
|
|
13609
|
-
length: number;
|
|
13610
|
-
alteration: Alteration;
|
|
13611
|
-
fileExtension?: string | undefined | null;
|
|
13612
|
-
source: Source;
|
|
13613
|
-
createdAt: Date;
|
|
13614
|
-
metadata: {
|
|
13615
|
-
__typename: "RequestMetadata";
|
|
13616
|
-
id: string;
|
|
13617
|
-
color?: string | undefined | null;
|
|
13618
|
-
};
|
|
13619
|
-
response?: {
|
|
13620
|
-
__typename: "Response";
|
|
13621
|
-
id: string;
|
|
13622
|
-
statusCode: number;
|
|
13623
|
-
roundtripTime: number;
|
|
13624
|
-
length: number;
|
|
13625
|
-
createdAt: Date;
|
|
13626
|
-
alteration: Alteration;
|
|
13627
|
-
edited: boolean;
|
|
13628
|
-
} | undefined | null;
|
|
13629
|
-
};
|
|
13630
|
-
};
|
|
13631
|
-
};
|
|
13632
|
-
};
|
|
13633
|
-
export type UpdatedRequestSubscriptionVariables = Exact<{
|
|
13634
|
-
order?: InputMaybe<RequestResponseOrderInput>;
|
|
13635
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
13636
|
-
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
13637
|
-
}>;
|
|
13638
|
-
export type UpdatedRequestSubscription = {
|
|
13639
|
-
updatedRequest: {
|
|
13640
|
-
snapshot: number;
|
|
13641
|
-
requestEdge: {
|
|
13642
|
-
__typename: "RequestEdge";
|
|
13643
|
-
cursor: string;
|
|
13644
|
-
node: {
|
|
13645
|
-
__typename: "Request";
|
|
13646
|
-
id: string;
|
|
13647
|
-
host: string;
|
|
13648
|
-
port: number;
|
|
13649
|
-
path: string;
|
|
13650
|
-
query: string;
|
|
13651
|
-
method: string;
|
|
13652
|
-
edited: boolean;
|
|
13653
|
-
isTls: boolean;
|
|
13654
|
-
length: number;
|
|
13655
|
-
alteration: Alteration;
|
|
13656
|
-
fileExtension?: string | undefined | null;
|
|
13657
|
-
source: Source;
|
|
13658
|
-
createdAt: Date;
|
|
13659
|
-
metadata: {
|
|
13660
|
-
__typename: "RequestMetadata";
|
|
13661
|
-
id: string;
|
|
13662
|
-
color?: string | undefined | null;
|
|
13663
|
-
};
|
|
13664
|
-
response?: {
|
|
13665
|
-
__typename: "Response";
|
|
13666
|
-
id: string;
|
|
13667
|
-
statusCode: number;
|
|
13668
|
-
roundtripTime: number;
|
|
13669
|
-
length: number;
|
|
13670
|
-
createdAt: Date;
|
|
13671
|
-
alteration: Alteration;
|
|
13672
|
-
edited: boolean;
|
|
13673
|
-
} | undefined | null;
|
|
13674
|
-
};
|
|
13675
|
-
};
|
|
13676
|
-
};
|
|
13677
|
-
};
|
|
13678
|
-
export type UpdatedRequestMetadataSubscriptionVariables = Exact<{
|
|
13679
|
-
[key: string]: never;
|
|
13680
|
-
}>;
|
|
13681
|
-
export type UpdatedRequestMetadataSubscription = {
|
|
13682
|
-
updatedRequestMetadata: {
|
|
13683
|
-
snapshot: number;
|
|
13684
|
-
metadata: {
|
|
13685
|
-
__typename: "RequestMetadata";
|
|
13686
|
-
id: string;
|
|
13687
|
-
color?: string | undefined | null;
|
|
13688
|
-
};
|
|
13689
|
-
};
|
|
13690
|
-
};
|
|
13691
13691
|
export type CreatedScopeSubscriptionVariables = Exact<{
|
|
13692
13692
|
[key: string]: never;
|
|
13693
13693
|
}>;
|
|
@@ -14364,8 +14364,6 @@ export declare const ReplaySessionMetaFragmentDoc = "\n fragment replaySessio
|
|
|
14364
14364
|
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
14365
14365
|
export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
|
|
14366
14366
|
export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
|
|
14367
|
-
export declare const RequestEdgeMetaFragmentDoc = "\n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n ";
|
|
14368
|
-
export declare const ResponseFullFragmentDoc = "\n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\n}\n ";
|
|
14369
14367
|
export declare const ReleaseFullFragmentDoc = "\n fragment releaseFull on Release {\n __typename\n links {\n __typename\n display\n link\n platform\n }\n releasedAt\n version\n}\n ";
|
|
14370
14368
|
export declare const RuntimeFullFragmentDoc = "\n fragment runtimeFull on Runtime {\n __typename\n version\n platform\n availableUpdate {\n ...releaseFull\n }\n}\n ";
|
|
14371
14369
|
export declare const ScopeFullFragmentDoc = "\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
@@ -14386,10 +14384,20 @@ export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsF
|
|
|
14386
14384
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
14387
14385
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
14388
14386
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
14387
|
+
export declare const RequestEdgeMetaFragmentDoc = "\n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n ";
|
|
14388
|
+
export declare const ResponseFullFragmentDoc = "\n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\n}\n ";
|
|
14389
|
+
export declare const AssistantModelsDocument = "\n query assistantModels {\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
14390
|
+
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 ";
|
|
14391
|
+
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 ";
|
|
14392
|
+
export declare const AssistantUsageDocument = "\n query assistantUsage {\n viewer {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
14389
14393
|
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 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 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 }\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 ";
|
|
14390
14394
|
export declare const CreateAssistantSessionDocument = "\n mutation createAssistantSession($input: CreateAssistantSessionInput!) {\n createAssistantSession(input: $input) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\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 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 ";
|
|
14391
14395
|
export declare const DeleteAssistantSessionDocument = "\n mutation deleteAssistantSession($id: ID!) {\n deleteAssistantSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
14392
14396
|
export declare const RenameAssistantSessionDocument = "\n mutation renameAssistantSession($id: ID!, $name: String!) {\n renameAssistantSession(id: $id, name: $name) {\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
14397
|
+
export declare const CreatedAssistantMessageDocument = "\n subscription createdAssistantMessage {\n createdAssistantMessage {\n messageEdge {\n cursor\n node {\n ...assistantMessageFull\n }\n }\n snapshot\n }\n}\n \n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
14398
|
+
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 }\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 ";
|
|
14399
|
+
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 }\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 ";
|
|
14400
|
+
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 ";
|
|
14393
14401
|
export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14394
14402
|
export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
|
|
14395
14403
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
|
|
@@ -14449,9 +14457,6 @@ export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplay
|
|
|
14449
14457
|
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
14450
14458
|
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14451
14459
|
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14452
|
-
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
14453
|
-
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
14454
|
-
export declare const RenderRequestDocument = "\n mutation renderRequest($id: ID!, $input: RenderRequestInput!) {\n renderRequest(id: $id, input: $input) {\n render\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\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 ";
|
|
14455
14460
|
export declare const CreateScopeDocument = "\n mutation createScope($input: CreateScopeInput!) {\n createScope(input: $input) {\n error {\n ... on InvalidGlobTermsUserError {\n ...invalidGlobTermsUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n scope {\n ...scopeFull\n }\n }\n}\n \n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
14456
14461
|
export declare const UpdateScopeDocument = "\n mutation updateScope($id: ID!, $input: UpdateScopeInput!) {\n updateScope(id: $id, input: $input) {\n error {\n ... on InvalidGlobTermsUserError {\n ...invalidGlobTermsUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n scope {\n ...scopeFull\n }\n }\n}\n \n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
14457
14462
|
export declare const DeleteScopeDocument = "\n mutation deleteScope($id: ID!) {\n deleteScope(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -14488,10 +14493,6 @@ export declare const RunConvertWorkflowDocument = "\n mutation runConvertWork
|
|
|
14488
14493
|
export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14489
14494
|
export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\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 ";
|
|
14490
14495
|
export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\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 ";
|
|
14491
|
-
export declare const AssistantModelsDocument = "\n query assistantModels {\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
14492
|
-
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 ";
|
|
14493
|
-
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 ";
|
|
14494
|
-
export declare const AssistantUsageDocument = "\n query assistantUsage {\n viewer {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
14495
14496
|
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 ";
|
|
14496
14497
|
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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14497
14498
|
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
@@ -14533,10 +14534,6 @@ export declare const ActiveReplayEntryBySessionDocument = "\n query activeRep
|
|
|
14533
14534
|
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14534
14535
|
export declare const ReplaySessionEntriesDocument = "\n query replaySessionEntries($id: ID!) {\n replaySession(id: $id) {\n activeEntry {\n ...replayEntryMeta\n }\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14535
14536
|
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14536
|
-
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14537
|
-
export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: HTTPQL) {\n requests(first: 0, scopeId: $scopeId, filter: $filter) {\n count {\n ...countFull\n }\n snapshot\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14538
|
-
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 \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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14539
|
-
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14540
14537
|
export declare const ResponseDocument = "\n query response($id: ID!) {\n response(id: $id) {\n ...responseFull\n }\n}\n \n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\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 ";
|
|
14541
14538
|
export declare const GetRuntimeDocument = "\n query getRuntime {\n runtime {\n ...runtimeFull\n }\n}\n \n fragment runtimeFull on Runtime {\n __typename\n version\n platform\n availableUpdate {\n ...releaseFull\n }\n}\n \n\n fragment releaseFull on Release {\n __typename\n links {\n __typename\n display\n link\n platform\n }\n releasedAt\n version\n}\n ";
|
|
14542
14539
|
export declare const GetLogsDocument = "\n query getLogs {\n runtime {\n logs\n }\n}\n ";
|
|
@@ -14561,10 +14558,16 @@ export declare const UserSettingsDocument = "\n query userSettings {\n viewe
|
|
|
14561
14558
|
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 ";
|
|
14562
14559
|
export declare const WorkflowsDocument = "\n query workflows {\n workflows {\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 ";
|
|
14563
14560
|
export declare const WorkflowNodeDefinitionsDocument = "\n query workflowNodeDefinitions {\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\n }\n}\n \n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
14564
|
-
export declare const
|
|
14565
|
-
export declare const
|
|
14566
|
-
export declare const
|
|
14567
|
-
export declare const
|
|
14561
|
+
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14562
|
+
export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: HTTPQL) {\n requests(first: 0, scopeId: $scopeId, filter: $filter) {\n count {\n ...countFull\n }\n snapshot\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14563
|
+
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 \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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14564
|
+
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14565
|
+
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
14566
|
+
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
14567
|
+
export declare const RenderRequestDocument = "\n mutation renderRequest($id: ID!, $input: RenderRequestInput!) {\n renderRequest(id: $id, input: $input) {\n render\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\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 ";
|
|
14568
|
+
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14569
|
+
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14570
|
+
export declare const UpdatedRequestMetadataDocument = "\n subscription updatedRequestMetadata {\n updatedRequestMetadata {\n metadata {\n ...requestMetadataFull\n }\n snapshot\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
14568
14571
|
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 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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14569
14572
|
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14570
14573
|
export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
@@ -14606,9 +14609,6 @@ export declare const CreatedProjectDocument = "\n subscription createdProject
|
|
|
14606
14609
|
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
14607
14610
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
14608
14611
|
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14609
|
-
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14610
|
-
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
14611
|
-
export declare const UpdatedRequestMetadataDocument = "\n subscription updatedRequestMetadata {\n updatedRequestMetadata {\n metadata {\n ...requestMetadataFull\n }\n snapshot\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
14612
14612
|
export declare const CreatedScopeDocument = "\n subscription createdScope {\n createdScope {\n scopeEdge {\n node {\n ...scopeFull\n }\n }\n snapshot\n }\n}\n \n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
14613
14613
|
export declare const UpdatedScopeDocument = "\n subscription updatedScope {\n updatedScope {\n scopeEdge {\n node {\n ...scopeFull\n }\n }\n snapshot\n }\n}\n \n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
14614
14614
|
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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
@@ -14628,10 +14628,18 @@ export declare const DeletedWorkflowDocument = "\n subscription deletedWorkfl
|
|
|
14628
14628
|
export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\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 ";
|
|
14629
14629
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
14630
14630
|
export declare function getSdk<C>(requester: Requester<C>): {
|
|
14631
|
+
assistantModels(variables?: AssistantModelsQueryVariables, options?: C): Promise<AssistantModelsQuery>;
|
|
14632
|
+
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
14633
|
+
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
14634
|
+
assistantUsage(variables?: AssistantUsageQueryVariables, options?: C): Promise<AssistantUsageQuery>;
|
|
14631
14635
|
sendAssistantMessage(variables: SendAssistantMessageMutationVariables, options?: C): Promise<SendAssistantMessageMutation>;
|
|
14632
14636
|
createAssistantSession(variables: CreateAssistantSessionMutationVariables, options?: C): Promise<CreateAssistantSessionMutation>;
|
|
14633
14637
|
deleteAssistantSession(variables: DeleteAssistantSessionMutationVariables, options?: C): Promise<DeleteAssistantSessionMutation>;
|
|
14634
14638
|
renameAssistantSession(variables: RenameAssistantSessionMutationVariables, options?: C): Promise<RenameAssistantSessionMutation>;
|
|
14639
|
+
createdAssistantMessage(variables?: CreatedAssistantMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedAssistantMessageSubscription>;
|
|
14640
|
+
createdAssistantMessageTask(variables?: CreatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAssistantMessageTaskSubscription>;
|
|
14641
|
+
updatedAssistantMessageTask(variables?: UpdatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedAssistantMessageTaskSubscription>;
|
|
14642
|
+
updatedViewerAssistantUsage(variables?: UpdatedViewerAssistantUsageSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerAssistantUsageSubscription>;
|
|
14635
14643
|
startAuthenticationFlow(variables?: StartAuthenticationFlowMutationVariables, options?: C): Promise<StartAuthenticationFlowMutation>;
|
|
14636
14644
|
refreshAuthenticationToken(variables: RefreshAuthenticationTokenMutationVariables, options?: C): Promise<RefreshAuthenticationTokenMutation>;
|
|
14637
14645
|
logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
|
|
@@ -14691,9 +14699,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14691
14699
|
createReplaySession(variables: CreateReplaySessionMutationVariables, options?: C): Promise<CreateReplaySessionMutation>;
|
|
14692
14700
|
moveReplaySession(variables: MoveReplaySessionMutationVariables, options?: C): Promise<MoveReplaySessionMutation>;
|
|
14693
14701
|
startReplayTask(variables: StartReplayTaskMutationVariables, options?: C): Promise<StartReplayTaskMutation>;
|
|
14694
|
-
updateRequestMetadata(variables: UpdateRequestMetadataMutationVariables, options?: C): Promise<UpdateRequestMetadataMutation>;
|
|
14695
|
-
startExportRequestsTask(variables: StartExportRequestsTaskMutationVariables, options?: C): Promise<StartExportRequestsTaskMutation>;
|
|
14696
|
-
renderRequest(variables: RenderRequestMutationVariables, options?: C): Promise<RenderRequestMutation>;
|
|
14697
14702
|
createScope(variables: CreateScopeMutationVariables, options?: C): Promise<CreateScopeMutation>;
|
|
14698
14703
|
updateScope(variables: UpdateScopeMutationVariables, options?: C): Promise<UpdateScopeMutation>;
|
|
14699
14704
|
deleteScope(variables: DeleteScopeMutationVariables, options?: C): Promise<DeleteScopeMutation>;
|
|
@@ -14730,10 +14735,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14730
14735
|
runActiveWorkflow(variables: RunActiveWorkflowMutationVariables, options?: C): Promise<RunActiveWorkflowMutation>;
|
|
14731
14736
|
globalizeWorkflow(variables: GlobalizeWorkflowMutationVariables, options?: C): Promise<GlobalizeWorkflowMutation>;
|
|
14732
14737
|
localizeWorkflow(variables: LocalizeWorkflowMutationVariables, options?: C): Promise<LocalizeWorkflowMutation>;
|
|
14733
|
-
assistantModels(variables?: AssistantModelsQueryVariables, options?: C): Promise<AssistantModelsQuery>;
|
|
14734
|
-
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
14735
|
-
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
14736
|
-
assistantUsage(variables?: AssistantUsageQueryVariables, options?: C): Promise<AssistantUsageQuery>;
|
|
14737
14738
|
automateEntry(variables: AutomateEntryQueryVariables, options?: C): Promise<AutomateEntryQuery>;
|
|
14738
14739
|
automateEntryRequests(variables: AutomateEntryRequestsQueryVariables, options?: C): Promise<AutomateEntryRequestsQuery>;
|
|
14739
14740
|
automateEntryRequestsByOffset(variables: AutomateEntryRequestsByOffsetQueryVariables, options?: C): Promise<AutomateEntryRequestsByOffsetQuery>;
|
|
@@ -14775,10 +14776,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14775
14776
|
replayEntriesBySession(variables: ReplayEntriesBySessionQueryVariables, options?: C): Promise<ReplayEntriesBySessionQuery>;
|
|
14776
14777
|
replaySessionEntries(variables: ReplaySessionEntriesQueryVariables, options?: C): Promise<ReplaySessionEntriesQuery>;
|
|
14777
14778
|
replaySessionCollections(variables?: ReplaySessionCollectionsQueryVariables, options?: C): Promise<ReplaySessionCollectionsQuery>;
|
|
14778
|
-
requests(variables?: RequestsQueryVariables, options?: C): Promise<RequestsQuery>;
|
|
14779
|
-
requestCount(variables?: RequestCountQueryVariables, options?: C): Promise<RequestCountQuery>;
|
|
14780
|
-
request(variables: RequestQueryVariables, options?: C): Promise<RequestQuery>;
|
|
14781
|
-
requestsByOffset(variables?: RequestsByOffsetQueryVariables, options?: C): Promise<RequestsByOffsetQuery>;
|
|
14782
14779
|
response(variables: ResponseQueryVariables, options?: C): Promise<ResponseQuery>;
|
|
14783
14780
|
getRuntime(variables?: GetRuntimeQueryVariables, options?: C): Promise<GetRuntimeQuery>;
|
|
14784
14781
|
getLogs(variables?: GetLogsQueryVariables, options?: C): Promise<GetLogsQuery>;
|
|
@@ -14803,10 +14800,16 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14803
14800
|
workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
|
|
14804
14801
|
workflows(variables?: WorkflowsQueryVariables, options?: C): Promise<WorkflowsQuery>;
|
|
14805
14802
|
workflowNodeDefinitions(variables?: WorkflowNodeDefinitionsQueryVariables, options?: C): Promise<WorkflowNodeDefinitionsQuery>;
|
|
14806
|
-
|
|
14807
|
-
|
|
14808
|
-
|
|
14809
|
-
|
|
14803
|
+
requests(variables?: RequestsQueryVariables, options?: C): Promise<RequestsQuery>;
|
|
14804
|
+
requestCount(variables?: RequestCountQueryVariables, options?: C): Promise<RequestCountQuery>;
|
|
14805
|
+
request(variables: RequestQueryVariables, options?: C): Promise<RequestQuery>;
|
|
14806
|
+
requestsByOffset(variables?: RequestsByOffsetQueryVariables, options?: C): Promise<RequestsByOffsetQuery>;
|
|
14807
|
+
updateRequestMetadata(variables: UpdateRequestMetadataMutationVariables, options?: C): Promise<UpdateRequestMetadataMutation>;
|
|
14808
|
+
startExportRequestsTask(variables: StartExportRequestsTaskMutationVariables, options?: C): Promise<StartExportRequestsTaskMutation>;
|
|
14809
|
+
renderRequest(variables: RenderRequestMutationVariables, options?: C): Promise<RenderRequestMutation>;
|
|
14810
|
+
createdRequest(variables?: CreatedRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedRequestSubscription>;
|
|
14811
|
+
updatedRequest(variables?: UpdatedRequestSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestSubscription>;
|
|
14812
|
+
updatedRequestMetadata(variables?: UpdatedRequestMetadataSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestMetadataSubscription>;
|
|
14810
14813
|
createdAuthenticationToken(variables: CreatedAuthenticationTokenSubscriptionVariables, options?: C): AsyncIterable<CreatedAuthenticationTokenSubscription>;
|
|
14811
14814
|
createdAutomateEntryRequest(variables?: CreatedAutomateEntryRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntryRequestSubscription>;
|
|
14812
14815
|
createdAutomateTask(variables?: CreatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateTaskSubscription>;
|
|
@@ -14848,9 +14851,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14848
14851
|
updatedProject(variables?: UpdatedProjectSubscriptionVariables, options?: C): AsyncIterable<UpdatedProjectSubscription>;
|
|
14849
14852
|
deletedProject(variables?: DeletedProjectSubscriptionVariables, options?: C): AsyncIterable<DeletedProjectSubscription>;
|
|
14850
14853
|
updatedReplaySession(variables?: UpdatedReplaySessionSubscriptionVariables, options?: C): AsyncIterable<UpdatedReplaySessionSubscription>;
|
|
14851
|
-
createdRequest(variables?: CreatedRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedRequestSubscription>;
|
|
14852
|
-
updatedRequest(variables?: UpdatedRequestSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestSubscription>;
|
|
14853
|
-
updatedRequestMetadata(variables?: UpdatedRequestMetadataSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestMetadataSubscription>;
|
|
14854
14854
|
createdScope(variables?: CreatedScopeSubscriptionVariables, options?: C): AsyncIterable<CreatedScopeSubscription>;
|
|
14855
14855
|
updatedScope(variables?: UpdatedScopeSubscriptionVariables, options?: C): AsyncIterable<UpdatedScopeSubscription>;
|
|
14856
14856
|
createdSitemapEntry(variables?: CreatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedSitemapEntrySubscription>;
|