@caido/sdk-frontend 0.51.2-beta.9 → 0.52.1-beta.0
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 +719 -45
- package/src/types/index.d.ts +5 -2
- package/src/types/sdks/commandPalette.d.ts +14 -0
- package/src/types/sdks/index.d.ts +5 -0
- package/src/types/sdks/intercept.d.ts +6 -0
- package/src/types/sdks/navigation.d.ts +26 -3
- package/src/types/sdks/projects.d.ts +24 -0
- package/src/types/sdks/replay.d.ts +24 -2
- package/src/types/types/matchReplace.d.ts +15 -1
- package/src/types/types/navigation.d.ts +33 -0
- package/src/types/types/projects.d.ts +8 -0
- package/src/types/types/replay.d.ts +10 -0
- package/src/types/types/slots.d.ts +3 -3
|
@@ -152,9 +152,11 @@ export type AiProviderGoogleInput = {
|
|
|
152
152
|
};
|
|
153
153
|
export type AiProviderOpenAi = {
|
|
154
154
|
apiKey: Scalars["Sensitive"]["output"];
|
|
155
|
+
url?: Maybe<Scalars["Url"]["output"]>;
|
|
155
156
|
};
|
|
156
157
|
export type AiProviderOpenAiInput = {
|
|
157
158
|
apiKey: Scalars["Sensitive"]["input"];
|
|
159
|
+
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
158
160
|
};
|
|
159
161
|
export type AiProviderOpenRouter = {
|
|
160
162
|
apiKey: Scalars["Sensitive"]["output"];
|
|
@@ -1212,6 +1214,7 @@ export type DeletedAutomateTaskPayload = {
|
|
|
1212
1214
|
deletedAutomateTaskId: Scalars["ID"]["output"];
|
|
1213
1215
|
error?: Maybe<DeletedAutomateTaskError>;
|
|
1214
1216
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1217
|
+
status: TaskStatus;
|
|
1215
1218
|
};
|
|
1216
1219
|
export type DeletedBackupPayload = {
|
|
1217
1220
|
deletedBackupId: Scalars["ID"]["output"];
|
|
@@ -1422,6 +1425,7 @@ export type FinishedRestoreBackupTaskSuccess = {
|
|
|
1422
1425
|
};
|
|
1423
1426
|
export type FinishedTaskPayload = {
|
|
1424
1427
|
error?: Maybe<UserError>;
|
|
1428
|
+
status: TaskStatus;
|
|
1425
1429
|
task: Task;
|
|
1426
1430
|
};
|
|
1427
1431
|
export type ForwardInterceptMessageInput = {
|
|
@@ -3647,6 +3651,18 @@ export type TamperMatcherValue = {
|
|
|
3647
3651
|
export type TamperMatcherValueInput = {
|
|
3648
3652
|
value: Scalars["String"]["input"];
|
|
3649
3653
|
};
|
|
3654
|
+
export type TamperOperationAll = TamperOperationAllRaw;
|
|
3655
|
+
export type TamperOperationAllInput = {
|
|
3656
|
+
raw: TamperOperationAllRawInput;
|
|
3657
|
+
};
|
|
3658
|
+
export type TamperOperationAllRaw = {
|
|
3659
|
+
matcher: TamperMatcherRaw;
|
|
3660
|
+
replacer: TamperReplacer;
|
|
3661
|
+
};
|
|
3662
|
+
export type TamperOperationAllRawInput = {
|
|
3663
|
+
matcher: TamperMatcherRawInput;
|
|
3664
|
+
replacer: TamperReplacerInput;
|
|
3665
|
+
};
|
|
3650
3666
|
export type TamperOperationBody = TamperOperationBodyRaw;
|
|
3651
3667
|
export type TamperOperationBodyInput = {
|
|
3652
3668
|
raw: TamperOperationBodyRawInput;
|
|
@@ -3850,118 +3866,170 @@ export type TamperRuleCollectionEdge = {
|
|
|
3850
3866
|
export type TamperRuleEnable = {
|
|
3851
3867
|
rank: Scalars["Rank"]["output"];
|
|
3852
3868
|
};
|
|
3853
|
-
export type TamperSection = TamperSectionRequestBody | TamperSectionRequestFirstLine | TamperSectionRequestHeader | TamperSectionRequestMethod | TamperSectionRequestPath | TamperSectionRequestQuery | TamperSectionResponseBody | TamperSectionResponseFirstLine | TamperSectionResponseHeader | TamperSectionResponseStatusCode;
|
|
3869
|
+
export type TamperSection = TamperSectionRequestAll | TamperSectionRequestBody | TamperSectionRequestFirstLine | TamperSectionRequestHeader | TamperSectionRequestMethod | TamperSectionRequestPath | TamperSectionRequestQuery | TamperSectionResponseAll | TamperSectionResponseBody | TamperSectionResponseFirstLine | TamperSectionResponseHeader | TamperSectionResponseStatusCode;
|
|
3854
3870
|
export type TamperSectionInput = {
|
|
3871
|
+
requestAll: TamperSectionRequestAllInput;
|
|
3872
|
+
requestBody?: never;
|
|
3873
|
+
requestFirstLine?: never;
|
|
3874
|
+
requestHeader?: never;
|
|
3875
|
+
requestMethod?: never;
|
|
3876
|
+
requestPath?: never;
|
|
3877
|
+
requestQuery?: never;
|
|
3878
|
+
responseAll?: never;
|
|
3879
|
+
responseBody?: never;
|
|
3880
|
+
responseFirstLine?: never;
|
|
3881
|
+
responseHeader?: never;
|
|
3882
|
+
responseStatusCode?: never;
|
|
3883
|
+
} | {
|
|
3884
|
+
requestAll?: never;
|
|
3855
3885
|
requestBody: TamperSectionRequestBodyInput;
|
|
3856
3886
|
requestFirstLine?: never;
|
|
3857
3887
|
requestHeader?: never;
|
|
3858
3888
|
requestMethod?: never;
|
|
3859
3889
|
requestPath?: never;
|
|
3860
3890
|
requestQuery?: never;
|
|
3891
|
+
responseAll?: never;
|
|
3861
3892
|
responseBody?: never;
|
|
3862
3893
|
responseFirstLine?: never;
|
|
3863
3894
|
responseHeader?: never;
|
|
3864
3895
|
responseStatusCode?: never;
|
|
3865
3896
|
} | {
|
|
3897
|
+
requestAll?: never;
|
|
3866
3898
|
requestBody?: never;
|
|
3867
3899
|
requestFirstLine: TamperSectionRequestFirstLineInput;
|
|
3868
3900
|
requestHeader?: never;
|
|
3869
3901
|
requestMethod?: never;
|
|
3870
3902
|
requestPath?: never;
|
|
3871
3903
|
requestQuery?: never;
|
|
3904
|
+
responseAll?: never;
|
|
3872
3905
|
responseBody?: never;
|
|
3873
3906
|
responseFirstLine?: never;
|
|
3874
3907
|
responseHeader?: never;
|
|
3875
3908
|
responseStatusCode?: never;
|
|
3876
3909
|
} | {
|
|
3910
|
+
requestAll?: never;
|
|
3877
3911
|
requestBody?: never;
|
|
3878
3912
|
requestFirstLine?: never;
|
|
3879
3913
|
requestHeader: TamperSectionRequestHeaderInput;
|
|
3880
3914
|
requestMethod?: never;
|
|
3881
3915
|
requestPath?: never;
|
|
3882
3916
|
requestQuery?: never;
|
|
3917
|
+
responseAll?: never;
|
|
3883
3918
|
responseBody?: never;
|
|
3884
3919
|
responseFirstLine?: never;
|
|
3885
3920
|
responseHeader?: never;
|
|
3886
3921
|
responseStatusCode?: never;
|
|
3887
3922
|
} | {
|
|
3923
|
+
requestAll?: never;
|
|
3888
3924
|
requestBody?: never;
|
|
3889
3925
|
requestFirstLine?: never;
|
|
3890
3926
|
requestHeader?: never;
|
|
3891
3927
|
requestMethod: TamperSectionRequestMethodInput;
|
|
3892
3928
|
requestPath?: never;
|
|
3893
3929
|
requestQuery?: never;
|
|
3930
|
+
responseAll?: never;
|
|
3894
3931
|
responseBody?: never;
|
|
3895
3932
|
responseFirstLine?: never;
|
|
3896
3933
|
responseHeader?: never;
|
|
3897
3934
|
responseStatusCode?: never;
|
|
3898
3935
|
} | {
|
|
3936
|
+
requestAll?: never;
|
|
3899
3937
|
requestBody?: never;
|
|
3900
3938
|
requestFirstLine?: never;
|
|
3901
3939
|
requestHeader?: never;
|
|
3902
3940
|
requestMethod?: never;
|
|
3903
3941
|
requestPath: TamperSectionRequestPathInput;
|
|
3904
3942
|
requestQuery?: never;
|
|
3943
|
+
responseAll?: never;
|
|
3905
3944
|
responseBody?: never;
|
|
3906
3945
|
responseFirstLine?: never;
|
|
3907
3946
|
responseHeader?: never;
|
|
3908
3947
|
responseStatusCode?: never;
|
|
3909
3948
|
} | {
|
|
3949
|
+
requestAll?: never;
|
|
3910
3950
|
requestBody?: never;
|
|
3911
3951
|
requestFirstLine?: never;
|
|
3912
3952
|
requestHeader?: never;
|
|
3913
3953
|
requestMethod?: never;
|
|
3914
3954
|
requestPath?: never;
|
|
3915
3955
|
requestQuery: TamperSectionRequestQueryInput;
|
|
3956
|
+
responseAll?: never;
|
|
3957
|
+
responseBody?: never;
|
|
3958
|
+
responseFirstLine?: never;
|
|
3959
|
+
responseHeader?: never;
|
|
3960
|
+
responseStatusCode?: never;
|
|
3961
|
+
} | {
|
|
3962
|
+
requestAll?: never;
|
|
3963
|
+
requestBody?: never;
|
|
3964
|
+
requestFirstLine?: never;
|
|
3965
|
+
requestHeader?: never;
|
|
3966
|
+
requestMethod?: never;
|
|
3967
|
+
requestPath?: never;
|
|
3968
|
+
requestQuery?: never;
|
|
3969
|
+
responseAll: TamperSectionResponseAllInput;
|
|
3916
3970
|
responseBody?: never;
|
|
3917
3971
|
responseFirstLine?: never;
|
|
3918
3972
|
responseHeader?: never;
|
|
3919
3973
|
responseStatusCode?: never;
|
|
3920
3974
|
} | {
|
|
3975
|
+
requestAll?: never;
|
|
3921
3976
|
requestBody?: never;
|
|
3922
3977
|
requestFirstLine?: never;
|
|
3923
3978
|
requestHeader?: never;
|
|
3924
3979
|
requestMethod?: never;
|
|
3925
3980
|
requestPath?: never;
|
|
3926
3981
|
requestQuery?: never;
|
|
3982
|
+
responseAll?: never;
|
|
3927
3983
|
responseBody: TamperSectionResponseBodyInput;
|
|
3928
3984
|
responseFirstLine?: never;
|
|
3929
3985
|
responseHeader?: never;
|
|
3930
3986
|
responseStatusCode?: never;
|
|
3931
3987
|
} | {
|
|
3988
|
+
requestAll?: never;
|
|
3932
3989
|
requestBody?: never;
|
|
3933
3990
|
requestFirstLine?: never;
|
|
3934
3991
|
requestHeader?: never;
|
|
3935
3992
|
requestMethod?: never;
|
|
3936
3993
|
requestPath?: never;
|
|
3937
3994
|
requestQuery?: never;
|
|
3995
|
+
responseAll?: never;
|
|
3938
3996
|
responseBody?: never;
|
|
3939
3997
|
responseFirstLine: TamperSectionResponseFirstLineInput;
|
|
3940
3998
|
responseHeader?: never;
|
|
3941
3999
|
responseStatusCode?: never;
|
|
3942
4000
|
} | {
|
|
4001
|
+
requestAll?: never;
|
|
3943
4002
|
requestBody?: never;
|
|
3944
4003
|
requestFirstLine?: never;
|
|
3945
4004
|
requestHeader?: never;
|
|
3946
4005
|
requestMethod?: never;
|
|
3947
4006
|
requestPath?: never;
|
|
3948
4007
|
requestQuery?: never;
|
|
4008
|
+
responseAll?: never;
|
|
3949
4009
|
responseBody?: never;
|
|
3950
4010
|
responseFirstLine?: never;
|
|
3951
4011
|
responseHeader: TamperSectionResponseHeaderInput;
|
|
3952
4012
|
responseStatusCode?: never;
|
|
3953
4013
|
} | {
|
|
4014
|
+
requestAll?: never;
|
|
3954
4015
|
requestBody?: never;
|
|
3955
4016
|
requestFirstLine?: never;
|
|
3956
4017
|
requestHeader?: never;
|
|
3957
4018
|
requestMethod?: never;
|
|
3958
4019
|
requestPath?: never;
|
|
3959
4020
|
requestQuery?: never;
|
|
4021
|
+
responseAll?: never;
|
|
3960
4022
|
responseBody?: never;
|
|
3961
4023
|
responseFirstLine?: never;
|
|
3962
4024
|
responseHeader?: never;
|
|
3963
4025
|
responseStatusCode: TamperSectionResponseStatusCodeInput;
|
|
3964
4026
|
};
|
|
4027
|
+
export type TamperSectionRequestAll = {
|
|
4028
|
+
operation: TamperOperationAll;
|
|
4029
|
+
};
|
|
4030
|
+
export type TamperSectionRequestAllInput = {
|
|
4031
|
+
operation: TamperOperationAllInput;
|
|
4032
|
+
};
|
|
3965
4033
|
export type TamperSectionRequestBody = {
|
|
3966
4034
|
operation: TamperOperationBody;
|
|
3967
4035
|
};
|
|
@@ -3998,6 +4066,12 @@ export type TamperSectionRequestQuery = {
|
|
|
3998
4066
|
export type TamperSectionRequestQueryInput = {
|
|
3999
4067
|
operation: TamperOperationQueryInput;
|
|
4000
4068
|
};
|
|
4069
|
+
export type TamperSectionResponseAll = {
|
|
4070
|
+
operation: TamperOperationAll;
|
|
4071
|
+
};
|
|
4072
|
+
export type TamperSectionResponseAllInput = {
|
|
4073
|
+
operation: TamperOperationAllInput;
|
|
4074
|
+
};
|
|
4001
4075
|
export type TamperSectionResponseBody = {
|
|
4002
4076
|
operation: TamperOperationBody;
|
|
4003
4077
|
};
|
|
@@ -4030,6 +4104,12 @@ export type TaskInProgressUserError = UserError & {
|
|
|
4030
4104
|
code: Scalars["String"]["output"];
|
|
4031
4105
|
taskId: Scalars["ID"]["output"];
|
|
4032
4106
|
};
|
|
4107
|
+
export declare const TaskStatus: {
|
|
4108
|
+
readonly Cancelled: "CANCELLED";
|
|
4109
|
+
readonly Done: "DONE";
|
|
4110
|
+
readonly Error: "ERROR";
|
|
4111
|
+
};
|
|
4112
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
4033
4113
|
export type TestAiProviderError = AiUserError | OtherUserError;
|
|
4034
4114
|
export type TestAiProviderInput = {
|
|
4035
4115
|
anthropic: AiProviderAnthropicInput;
|
|
@@ -6677,6 +6757,7 @@ export type DeletedAutomateTaskSubscription = {
|
|
|
6677
6757
|
deletedAutomateTask: {
|
|
6678
6758
|
deletedAutomateTaskId: string;
|
|
6679
6759
|
snapshot: number;
|
|
6760
|
+
status: TaskStatus;
|
|
6680
6761
|
};
|
|
6681
6762
|
};
|
|
6682
6763
|
export type UpdatedAutomateTaskSubscriptionVariables = Exact<{
|
|
@@ -10159,6 +10240,7 @@ export type InstanceSettingsFullFragment = {
|
|
|
10159
10240
|
} | undefined | null;
|
|
10160
10241
|
openai?: {
|
|
10161
10242
|
apiKey: string;
|
|
10243
|
+
url?: string | undefined | null;
|
|
10162
10244
|
} | undefined | null;
|
|
10163
10245
|
openrouter?: {
|
|
10164
10246
|
apiKey: string;
|
|
@@ -10191,6 +10273,7 @@ export type SetInstanceSettingsMutation = {
|
|
|
10191
10273
|
} | undefined | null;
|
|
10192
10274
|
openai?: {
|
|
10193
10275
|
apiKey: string;
|
|
10276
|
+
url?: string | undefined | null;
|
|
10194
10277
|
} | undefined | null;
|
|
10195
10278
|
openrouter?: {
|
|
10196
10279
|
apiKey: string;
|
|
@@ -10229,6 +10312,7 @@ export type InstanceSettingsQuery = {
|
|
|
10229
10312
|
} | undefined | null;
|
|
10230
10313
|
openai?: {
|
|
10231
10314
|
apiKey: string;
|
|
10315
|
+
url?: string | undefined | null;
|
|
10232
10316
|
} | undefined | null;
|
|
10233
10317
|
openrouter?: {
|
|
10234
10318
|
apiKey: string;
|
|
@@ -10252,6 +10336,7 @@ export type UpdatedInstanceSettingsSubscription = {
|
|
|
10252
10336
|
} | undefined | null;
|
|
10253
10337
|
openai?: {
|
|
10254
10338
|
apiKey: string;
|
|
10339
|
+
url?: string | undefined | null;
|
|
10255
10340
|
} | undefined | null;
|
|
10256
10341
|
openrouter?: {
|
|
10257
10342
|
apiKey: string;
|
|
@@ -11212,6 +11297,44 @@ type TamperMatcherRawFull_TamperMatcherValue_Fragment = {
|
|
|
11212
11297
|
value: string;
|
|
11213
11298
|
};
|
|
11214
11299
|
export type TamperMatcherRawFullFragment = TamperMatcherRawFull_TamperMatcherFull_Fragment | TamperMatcherRawFull_TamperMatcherRegex_Fragment | TamperMatcherRawFull_TamperMatcherValue_Fragment;
|
|
11300
|
+
export type TamperOperationAllRawFullFragment = {
|
|
11301
|
+
__typename: "TamperOperationAllRaw";
|
|
11302
|
+
matcher: {
|
|
11303
|
+
__typename: "TamperMatcherFull";
|
|
11304
|
+
} | {
|
|
11305
|
+
__typename: "TamperMatcherRegex";
|
|
11306
|
+
regex: string;
|
|
11307
|
+
} | {
|
|
11308
|
+
__typename: "TamperMatcherValue";
|
|
11309
|
+
value: string;
|
|
11310
|
+
};
|
|
11311
|
+
replacer: {
|
|
11312
|
+
__typename: "TamperReplacerTerm";
|
|
11313
|
+
term: string;
|
|
11314
|
+
} | {
|
|
11315
|
+
__typename: "TamperReplacerWorkflow";
|
|
11316
|
+
id: string;
|
|
11317
|
+
};
|
|
11318
|
+
};
|
|
11319
|
+
export type TamperOperationAllFullFragment = {
|
|
11320
|
+
__typename: "TamperOperationAllRaw";
|
|
11321
|
+
matcher: {
|
|
11322
|
+
__typename: "TamperMatcherFull";
|
|
11323
|
+
} | {
|
|
11324
|
+
__typename: "TamperMatcherRegex";
|
|
11325
|
+
regex: string;
|
|
11326
|
+
} | {
|
|
11327
|
+
__typename: "TamperMatcherValue";
|
|
11328
|
+
value: string;
|
|
11329
|
+
};
|
|
11330
|
+
replacer: {
|
|
11331
|
+
__typename: "TamperReplacerTerm";
|
|
11332
|
+
term: string;
|
|
11333
|
+
} | {
|
|
11334
|
+
__typename: "TamperReplacerWorkflow";
|
|
11335
|
+
id: string;
|
|
11336
|
+
};
|
|
11337
|
+
};
|
|
11215
11338
|
export type TamperOperationPathRawFullFragment = {
|
|
11216
11339
|
__typename: "TamperOperationPathRaw";
|
|
11217
11340
|
matcher: {
|
|
@@ -11584,6 +11707,28 @@ export type TamperOperationStatusCodeFullFragment = {
|
|
|
11584
11707
|
id: string;
|
|
11585
11708
|
};
|
|
11586
11709
|
};
|
|
11710
|
+
type TamperSectionFull_TamperSectionRequestAll_Fragment = {
|
|
11711
|
+
__typename: "TamperSectionRequestAll";
|
|
11712
|
+
operation: {
|
|
11713
|
+
__typename: "TamperOperationAllRaw";
|
|
11714
|
+
matcher: {
|
|
11715
|
+
__typename: "TamperMatcherFull";
|
|
11716
|
+
} | {
|
|
11717
|
+
__typename: "TamperMatcherRegex";
|
|
11718
|
+
regex: string;
|
|
11719
|
+
} | {
|
|
11720
|
+
__typename: "TamperMatcherValue";
|
|
11721
|
+
value: string;
|
|
11722
|
+
};
|
|
11723
|
+
replacer: {
|
|
11724
|
+
__typename: "TamperReplacerTerm";
|
|
11725
|
+
term: string;
|
|
11726
|
+
} | {
|
|
11727
|
+
__typename: "TamperReplacerWorkflow";
|
|
11728
|
+
id: string;
|
|
11729
|
+
};
|
|
11730
|
+
};
|
|
11731
|
+
};
|
|
11587
11732
|
type TamperSectionFull_TamperSectionRequestBody_Fragment = {
|
|
11588
11733
|
__typename: "TamperSectionRequestBody";
|
|
11589
11734
|
operation: {
|
|
@@ -11771,6 +11916,28 @@ type TamperSectionFull_TamperSectionRequestQuery_Fragment = {
|
|
|
11771
11916
|
};
|
|
11772
11917
|
};
|
|
11773
11918
|
};
|
|
11919
|
+
type TamperSectionFull_TamperSectionResponseAll_Fragment = {
|
|
11920
|
+
__typename: "TamperSectionResponseAll";
|
|
11921
|
+
operation: {
|
|
11922
|
+
__typename: "TamperOperationAllRaw";
|
|
11923
|
+
matcher: {
|
|
11924
|
+
__typename: "TamperMatcherFull";
|
|
11925
|
+
} | {
|
|
11926
|
+
__typename: "TamperMatcherRegex";
|
|
11927
|
+
regex: string;
|
|
11928
|
+
} | {
|
|
11929
|
+
__typename: "TamperMatcherValue";
|
|
11930
|
+
value: string;
|
|
11931
|
+
};
|
|
11932
|
+
replacer: {
|
|
11933
|
+
__typename: "TamperReplacerTerm";
|
|
11934
|
+
term: string;
|
|
11935
|
+
} | {
|
|
11936
|
+
__typename: "TamperReplacerWorkflow";
|
|
11937
|
+
id: string;
|
|
11938
|
+
};
|
|
11939
|
+
};
|
|
11940
|
+
};
|
|
11774
11941
|
type TamperSectionFull_TamperSectionResponseBody_Fragment = {
|
|
11775
11942
|
__typename: "TamperSectionResponseBody";
|
|
11776
11943
|
operation: {
|
|
@@ -11882,7 +12049,7 @@ type TamperSectionFull_TamperSectionResponseStatusCode_Fragment = {
|
|
|
11882
12049
|
};
|
|
11883
12050
|
};
|
|
11884
12051
|
};
|
|
11885
|
-
export type TamperSectionFullFragment = TamperSectionFull_TamperSectionRequestBody_Fragment | TamperSectionFull_TamperSectionRequestFirstLine_Fragment | TamperSectionFull_TamperSectionRequestHeader_Fragment | TamperSectionFull_TamperSectionRequestMethod_Fragment | TamperSectionFull_TamperSectionRequestPath_Fragment | TamperSectionFull_TamperSectionRequestQuery_Fragment | TamperSectionFull_TamperSectionResponseBody_Fragment | TamperSectionFull_TamperSectionResponseFirstLine_Fragment | TamperSectionFull_TamperSectionResponseHeader_Fragment | TamperSectionFull_TamperSectionResponseStatusCode_Fragment;
|
|
12052
|
+
export type TamperSectionFullFragment = TamperSectionFull_TamperSectionRequestAll_Fragment | TamperSectionFull_TamperSectionRequestBody_Fragment | TamperSectionFull_TamperSectionRequestFirstLine_Fragment | TamperSectionFull_TamperSectionRequestHeader_Fragment | TamperSectionFull_TamperSectionRequestMethod_Fragment | TamperSectionFull_TamperSectionRequestPath_Fragment | TamperSectionFull_TamperSectionRequestQuery_Fragment | TamperSectionFull_TamperSectionResponseAll_Fragment | TamperSectionFull_TamperSectionResponseBody_Fragment | TamperSectionFull_TamperSectionResponseFirstLine_Fragment | TamperSectionFull_TamperSectionResponseHeader_Fragment | TamperSectionFull_TamperSectionResponseStatusCode_Fragment;
|
|
11886
12053
|
export type TamperRuleCollectionFullFragment = {
|
|
11887
12054
|
__typename: "TamperRuleCollection";
|
|
11888
12055
|
id: string;
|
|
@@ -11893,6 +12060,27 @@ export type TamperRuleCollectionFullFragment = {
|
|
|
11893
12060
|
name: string;
|
|
11894
12061
|
condition?: string | undefined | null;
|
|
11895
12062
|
section: {
|
|
12063
|
+
__typename: "TamperSectionRequestAll";
|
|
12064
|
+
operation: {
|
|
12065
|
+
__typename: "TamperOperationAllRaw";
|
|
12066
|
+
matcher: {
|
|
12067
|
+
__typename: "TamperMatcherFull";
|
|
12068
|
+
} | {
|
|
12069
|
+
__typename: "TamperMatcherRegex";
|
|
12070
|
+
regex: string;
|
|
12071
|
+
} | {
|
|
12072
|
+
__typename: "TamperMatcherValue";
|
|
12073
|
+
value: string;
|
|
12074
|
+
};
|
|
12075
|
+
replacer: {
|
|
12076
|
+
__typename: "TamperReplacerTerm";
|
|
12077
|
+
term: string;
|
|
12078
|
+
} | {
|
|
12079
|
+
__typename: "TamperReplacerWorkflow";
|
|
12080
|
+
id: string;
|
|
12081
|
+
};
|
|
12082
|
+
};
|
|
12083
|
+
} | {
|
|
11896
12084
|
__typename: "TamperSectionRequestBody";
|
|
11897
12085
|
operation: {
|
|
11898
12086
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12073,6 +12261,27 @@ export type TamperRuleCollectionFullFragment = {
|
|
|
12073
12261
|
id: string;
|
|
12074
12262
|
};
|
|
12075
12263
|
};
|
|
12264
|
+
} | {
|
|
12265
|
+
__typename: "TamperSectionResponseAll";
|
|
12266
|
+
operation: {
|
|
12267
|
+
__typename: "TamperOperationAllRaw";
|
|
12268
|
+
matcher: {
|
|
12269
|
+
__typename: "TamperMatcherFull";
|
|
12270
|
+
} | {
|
|
12271
|
+
__typename: "TamperMatcherRegex";
|
|
12272
|
+
regex: string;
|
|
12273
|
+
} | {
|
|
12274
|
+
__typename: "TamperMatcherValue";
|
|
12275
|
+
value: string;
|
|
12276
|
+
};
|
|
12277
|
+
replacer: {
|
|
12278
|
+
__typename: "TamperReplacerTerm";
|
|
12279
|
+
term: string;
|
|
12280
|
+
} | {
|
|
12281
|
+
__typename: "TamperReplacerWorkflow";
|
|
12282
|
+
id: string;
|
|
12283
|
+
};
|
|
12284
|
+
};
|
|
12076
12285
|
} | {
|
|
12077
12286
|
__typename: "TamperSectionResponseBody";
|
|
12078
12287
|
operation: {
|
|
@@ -12195,6 +12404,27 @@ export type TamperRuleFullFragment = {
|
|
|
12195
12404
|
name: string;
|
|
12196
12405
|
condition?: string | undefined | null;
|
|
12197
12406
|
section: {
|
|
12407
|
+
__typename: "TamperSectionRequestAll";
|
|
12408
|
+
operation: {
|
|
12409
|
+
__typename: "TamperOperationAllRaw";
|
|
12410
|
+
matcher: {
|
|
12411
|
+
__typename: "TamperMatcherFull";
|
|
12412
|
+
} | {
|
|
12413
|
+
__typename: "TamperMatcherRegex";
|
|
12414
|
+
regex: string;
|
|
12415
|
+
} | {
|
|
12416
|
+
__typename: "TamperMatcherValue";
|
|
12417
|
+
value: string;
|
|
12418
|
+
};
|
|
12419
|
+
replacer: {
|
|
12420
|
+
__typename: "TamperReplacerTerm";
|
|
12421
|
+
term: string;
|
|
12422
|
+
} | {
|
|
12423
|
+
__typename: "TamperReplacerWorkflow";
|
|
12424
|
+
id: string;
|
|
12425
|
+
};
|
|
12426
|
+
};
|
|
12427
|
+
} | {
|
|
12198
12428
|
__typename: "TamperSectionRequestBody";
|
|
12199
12429
|
operation: {
|
|
12200
12430
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12375,6 +12605,27 @@ export type TamperRuleFullFragment = {
|
|
|
12375
12605
|
id: string;
|
|
12376
12606
|
};
|
|
12377
12607
|
};
|
|
12608
|
+
} | {
|
|
12609
|
+
__typename: "TamperSectionResponseAll";
|
|
12610
|
+
operation: {
|
|
12611
|
+
__typename: "TamperOperationAllRaw";
|
|
12612
|
+
matcher: {
|
|
12613
|
+
__typename: "TamperMatcherFull";
|
|
12614
|
+
} | {
|
|
12615
|
+
__typename: "TamperMatcherRegex";
|
|
12616
|
+
regex: string;
|
|
12617
|
+
} | {
|
|
12618
|
+
__typename: "TamperMatcherValue";
|
|
12619
|
+
value: string;
|
|
12620
|
+
};
|
|
12621
|
+
replacer: {
|
|
12622
|
+
__typename: "TamperReplacerTerm";
|
|
12623
|
+
term: string;
|
|
12624
|
+
} | {
|
|
12625
|
+
__typename: "TamperReplacerWorkflow";
|
|
12626
|
+
id: string;
|
|
12627
|
+
};
|
|
12628
|
+
};
|
|
12378
12629
|
} | {
|
|
12379
12630
|
__typename: "TamperSectionResponseBody";
|
|
12380
12631
|
operation: {
|
|
@@ -12504,6 +12755,27 @@ export type TamperRuleCollectionsQuery = {
|
|
|
12504
12755
|
name: string;
|
|
12505
12756
|
condition?: string | undefined | null;
|
|
12506
12757
|
section: {
|
|
12758
|
+
__typename: "TamperSectionRequestAll";
|
|
12759
|
+
operation: {
|
|
12760
|
+
__typename: "TamperOperationAllRaw";
|
|
12761
|
+
matcher: {
|
|
12762
|
+
__typename: "TamperMatcherFull";
|
|
12763
|
+
} | {
|
|
12764
|
+
__typename: "TamperMatcherRegex";
|
|
12765
|
+
regex: string;
|
|
12766
|
+
} | {
|
|
12767
|
+
__typename: "TamperMatcherValue";
|
|
12768
|
+
value: string;
|
|
12769
|
+
};
|
|
12770
|
+
replacer: {
|
|
12771
|
+
__typename: "TamperReplacerTerm";
|
|
12772
|
+
term: string;
|
|
12773
|
+
} | {
|
|
12774
|
+
__typename: "TamperReplacerWorkflow";
|
|
12775
|
+
id: string;
|
|
12776
|
+
};
|
|
12777
|
+
};
|
|
12778
|
+
} | {
|
|
12507
12779
|
__typename: "TamperSectionRequestBody";
|
|
12508
12780
|
operation: {
|
|
12509
12781
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12684,6 +12956,27 @@ export type TamperRuleCollectionsQuery = {
|
|
|
12684
12956
|
id: string;
|
|
12685
12957
|
};
|
|
12686
12958
|
};
|
|
12959
|
+
} | {
|
|
12960
|
+
__typename: "TamperSectionResponseAll";
|
|
12961
|
+
operation: {
|
|
12962
|
+
__typename: "TamperOperationAllRaw";
|
|
12963
|
+
matcher: {
|
|
12964
|
+
__typename: "TamperMatcherFull";
|
|
12965
|
+
} | {
|
|
12966
|
+
__typename: "TamperMatcherRegex";
|
|
12967
|
+
regex: string;
|
|
12968
|
+
} | {
|
|
12969
|
+
__typename: "TamperMatcherValue";
|
|
12970
|
+
value: string;
|
|
12971
|
+
};
|
|
12972
|
+
replacer: {
|
|
12973
|
+
__typename: "TamperReplacerTerm";
|
|
12974
|
+
term: string;
|
|
12975
|
+
} | {
|
|
12976
|
+
__typename: "TamperReplacerWorkflow";
|
|
12977
|
+
id: string;
|
|
12978
|
+
};
|
|
12979
|
+
};
|
|
12687
12980
|
} | {
|
|
12688
12981
|
__typename: "TamperSectionResponseBody";
|
|
12689
12982
|
operation: {
|
|
@@ -12817,6 +13110,27 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
12817
13110
|
name: string;
|
|
12818
13111
|
condition?: string | undefined | null;
|
|
12819
13112
|
section: {
|
|
13113
|
+
__typename: "TamperSectionRequestAll";
|
|
13114
|
+
operation: {
|
|
13115
|
+
__typename: "TamperOperationAllRaw";
|
|
13116
|
+
matcher: {
|
|
13117
|
+
__typename: "TamperMatcherFull";
|
|
13118
|
+
} | {
|
|
13119
|
+
__typename: "TamperMatcherRegex";
|
|
13120
|
+
regex: string;
|
|
13121
|
+
} | {
|
|
13122
|
+
__typename: "TamperMatcherValue";
|
|
13123
|
+
value: string;
|
|
13124
|
+
};
|
|
13125
|
+
replacer: {
|
|
13126
|
+
__typename: "TamperReplacerTerm";
|
|
13127
|
+
term: string;
|
|
13128
|
+
} | {
|
|
13129
|
+
__typename: "TamperReplacerWorkflow";
|
|
13130
|
+
id: string;
|
|
13131
|
+
};
|
|
13132
|
+
};
|
|
13133
|
+
} | {
|
|
12820
13134
|
__typename: "TamperSectionRequestBody";
|
|
12821
13135
|
operation: {
|
|
12822
13136
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12998,9 +13312,9 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
12998
13312
|
};
|
|
12999
13313
|
};
|
|
13000
13314
|
} | {
|
|
13001
|
-
__typename: "
|
|
13315
|
+
__typename: "TamperSectionResponseAll";
|
|
13002
13316
|
operation: {
|
|
13003
|
-
__typename: "
|
|
13317
|
+
__typename: "TamperOperationAllRaw";
|
|
13004
13318
|
matcher: {
|
|
13005
13319
|
__typename: "TamperMatcherFull";
|
|
13006
13320
|
} | {
|
|
@@ -13019,9 +13333,9 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
13019
13333
|
};
|
|
13020
13334
|
};
|
|
13021
13335
|
} | {
|
|
13022
|
-
__typename: "
|
|
13336
|
+
__typename: "TamperSectionResponseBody";
|
|
13023
13337
|
operation: {
|
|
13024
|
-
__typename: "
|
|
13338
|
+
__typename: "TamperOperationBodyRaw";
|
|
13025
13339
|
matcher: {
|
|
13026
13340
|
__typename: "TamperMatcherFull";
|
|
13027
13341
|
} | {
|
|
@@ -13040,12 +13354,33 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
13040
13354
|
};
|
|
13041
13355
|
};
|
|
13042
13356
|
} | {
|
|
13043
|
-
__typename: "
|
|
13357
|
+
__typename: "TamperSectionResponseFirstLine";
|
|
13044
13358
|
operation: {
|
|
13045
|
-
__typename: "
|
|
13359
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
13046
13360
|
matcher: {
|
|
13047
|
-
__typename: "
|
|
13048
|
-
|
|
13361
|
+
__typename: "TamperMatcherFull";
|
|
13362
|
+
} | {
|
|
13363
|
+
__typename: "TamperMatcherRegex";
|
|
13364
|
+
regex: string;
|
|
13365
|
+
} | {
|
|
13366
|
+
__typename: "TamperMatcherValue";
|
|
13367
|
+
value: string;
|
|
13368
|
+
};
|
|
13369
|
+
replacer: {
|
|
13370
|
+
__typename: "TamperReplacerTerm";
|
|
13371
|
+
term: string;
|
|
13372
|
+
} | {
|
|
13373
|
+
__typename: "TamperReplacerWorkflow";
|
|
13374
|
+
id: string;
|
|
13375
|
+
};
|
|
13376
|
+
};
|
|
13377
|
+
} | {
|
|
13378
|
+
__typename: "TamperSectionResponseHeader";
|
|
13379
|
+
operation: {
|
|
13380
|
+
__typename: "TamperOperationHeaderAdd";
|
|
13381
|
+
matcher: {
|
|
13382
|
+
__typename: "TamperMatcherName";
|
|
13383
|
+
name: string;
|
|
13049
13384
|
};
|
|
13050
13385
|
replacer: {
|
|
13051
13386
|
__typename: "TamperReplacerTerm";
|
|
@@ -13130,6 +13465,27 @@ export type CreateTamperRuleCollectionMutation = {
|
|
|
13130
13465
|
name: string;
|
|
13131
13466
|
condition?: string | undefined | null;
|
|
13132
13467
|
section: {
|
|
13468
|
+
__typename: "TamperSectionRequestAll";
|
|
13469
|
+
operation: {
|
|
13470
|
+
__typename: "TamperOperationAllRaw";
|
|
13471
|
+
matcher: {
|
|
13472
|
+
__typename: "TamperMatcherFull";
|
|
13473
|
+
} | {
|
|
13474
|
+
__typename: "TamperMatcherRegex";
|
|
13475
|
+
regex: string;
|
|
13476
|
+
} | {
|
|
13477
|
+
__typename: "TamperMatcherValue";
|
|
13478
|
+
value: string;
|
|
13479
|
+
};
|
|
13480
|
+
replacer: {
|
|
13481
|
+
__typename: "TamperReplacerTerm";
|
|
13482
|
+
term: string;
|
|
13483
|
+
} | {
|
|
13484
|
+
__typename: "TamperReplacerWorkflow";
|
|
13485
|
+
id: string;
|
|
13486
|
+
};
|
|
13487
|
+
};
|
|
13488
|
+
} | {
|
|
13133
13489
|
__typename: "TamperSectionRequestBody";
|
|
13134
13490
|
operation: {
|
|
13135
13491
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -13310,6 +13666,27 @@ export type CreateTamperRuleCollectionMutation = {
|
|
|
13310
13666
|
id: string;
|
|
13311
13667
|
};
|
|
13312
13668
|
};
|
|
13669
|
+
} | {
|
|
13670
|
+
__typename: "TamperSectionResponseAll";
|
|
13671
|
+
operation: {
|
|
13672
|
+
__typename: "TamperOperationAllRaw";
|
|
13673
|
+
matcher: {
|
|
13674
|
+
__typename: "TamperMatcherFull";
|
|
13675
|
+
} | {
|
|
13676
|
+
__typename: "TamperMatcherRegex";
|
|
13677
|
+
regex: string;
|
|
13678
|
+
} | {
|
|
13679
|
+
__typename: "TamperMatcherValue";
|
|
13680
|
+
value: string;
|
|
13681
|
+
};
|
|
13682
|
+
replacer: {
|
|
13683
|
+
__typename: "TamperReplacerTerm";
|
|
13684
|
+
term: string;
|
|
13685
|
+
} | {
|
|
13686
|
+
__typename: "TamperReplacerWorkflow";
|
|
13687
|
+
id: string;
|
|
13688
|
+
};
|
|
13689
|
+
};
|
|
13313
13690
|
} | {
|
|
13314
13691
|
__typename: "TamperSectionResponseBody";
|
|
13315
13692
|
operation: {
|
|
@@ -13459,6 +13836,27 @@ export type CreateTamperRuleMutation = {
|
|
|
13459
13836
|
name: string;
|
|
13460
13837
|
condition?: string | undefined | null;
|
|
13461
13838
|
section: {
|
|
13839
|
+
__typename: "TamperSectionRequestAll";
|
|
13840
|
+
operation: {
|
|
13841
|
+
__typename: "TamperOperationAllRaw";
|
|
13842
|
+
matcher: {
|
|
13843
|
+
__typename: "TamperMatcherFull";
|
|
13844
|
+
} | {
|
|
13845
|
+
__typename: "TamperMatcherRegex";
|
|
13846
|
+
regex: string;
|
|
13847
|
+
} | {
|
|
13848
|
+
__typename: "TamperMatcherValue";
|
|
13849
|
+
value: string;
|
|
13850
|
+
};
|
|
13851
|
+
replacer: {
|
|
13852
|
+
__typename: "TamperReplacerTerm";
|
|
13853
|
+
term: string;
|
|
13854
|
+
} | {
|
|
13855
|
+
__typename: "TamperReplacerWorkflow";
|
|
13856
|
+
id: string;
|
|
13857
|
+
};
|
|
13858
|
+
};
|
|
13859
|
+
} | {
|
|
13462
13860
|
__typename: "TamperSectionRequestBody";
|
|
13463
13861
|
operation: {
|
|
13464
13862
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -13639,6 +14037,27 @@ export type CreateTamperRuleMutation = {
|
|
|
13639
14037
|
id: string;
|
|
13640
14038
|
};
|
|
13641
14039
|
};
|
|
14040
|
+
} | {
|
|
14041
|
+
__typename: "TamperSectionResponseAll";
|
|
14042
|
+
operation: {
|
|
14043
|
+
__typename: "TamperOperationAllRaw";
|
|
14044
|
+
matcher: {
|
|
14045
|
+
__typename: "TamperMatcherFull";
|
|
14046
|
+
} | {
|
|
14047
|
+
__typename: "TamperMatcherRegex";
|
|
14048
|
+
regex: string;
|
|
14049
|
+
} | {
|
|
14050
|
+
__typename: "TamperMatcherValue";
|
|
14051
|
+
value: string;
|
|
14052
|
+
};
|
|
14053
|
+
replacer: {
|
|
14054
|
+
__typename: "TamperReplacerTerm";
|
|
14055
|
+
term: string;
|
|
14056
|
+
} | {
|
|
14057
|
+
__typename: "TamperReplacerWorkflow";
|
|
14058
|
+
id: string;
|
|
14059
|
+
};
|
|
14060
|
+
};
|
|
13642
14061
|
} | {
|
|
13643
14062
|
__typename: "TamperSectionResponseBody";
|
|
13644
14063
|
operation: {
|
|
@@ -13792,6 +14211,27 @@ export type UpdateTamperRuleMutation = {
|
|
|
13792
14211
|
name: string;
|
|
13793
14212
|
condition?: string | undefined | null;
|
|
13794
14213
|
section: {
|
|
14214
|
+
__typename: "TamperSectionRequestAll";
|
|
14215
|
+
operation: {
|
|
14216
|
+
__typename: "TamperOperationAllRaw";
|
|
14217
|
+
matcher: {
|
|
14218
|
+
__typename: "TamperMatcherFull";
|
|
14219
|
+
} | {
|
|
14220
|
+
__typename: "TamperMatcherRegex";
|
|
14221
|
+
regex: string;
|
|
14222
|
+
} | {
|
|
14223
|
+
__typename: "TamperMatcherValue";
|
|
14224
|
+
value: string;
|
|
14225
|
+
};
|
|
14226
|
+
replacer: {
|
|
14227
|
+
__typename: "TamperReplacerTerm";
|
|
14228
|
+
term: string;
|
|
14229
|
+
} | {
|
|
14230
|
+
__typename: "TamperReplacerWorkflow";
|
|
14231
|
+
id: string;
|
|
14232
|
+
};
|
|
14233
|
+
};
|
|
14234
|
+
} | {
|
|
13795
14235
|
__typename: "TamperSectionRequestBody";
|
|
13796
14236
|
operation: {
|
|
13797
14237
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -13972,6 +14412,27 @@ export type UpdateTamperRuleMutation = {
|
|
|
13972
14412
|
id: string;
|
|
13973
14413
|
};
|
|
13974
14414
|
};
|
|
14415
|
+
} | {
|
|
14416
|
+
__typename: "TamperSectionResponseAll";
|
|
14417
|
+
operation: {
|
|
14418
|
+
__typename: "TamperOperationAllRaw";
|
|
14419
|
+
matcher: {
|
|
14420
|
+
__typename: "TamperMatcherFull";
|
|
14421
|
+
} | {
|
|
14422
|
+
__typename: "TamperMatcherRegex";
|
|
14423
|
+
regex: string;
|
|
14424
|
+
} | {
|
|
14425
|
+
__typename: "TamperMatcherValue";
|
|
14426
|
+
value: string;
|
|
14427
|
+
};
|
|
14428
|
+
replacer: {
|
|
14429
|
+
__typename: "TamperReplacerTerm";
|
|
14430
|
+
term: string;
|
|
14431
|
+
} | {
|
|
14432
|
+
__typename: "TamperReplacerWorkflow";
|
|
14433
|
+
id: string;
|
|
14434
|
+
};
|
|
14435
|
+
};
|
|
13975
14436
|
} | {
|
|
13976
14437
|
__typename: "TamperSectionResponseBody";
|
|
13977
14438
|
operation: {
|
|
@@ -14101,6 +14562,27 @@ export type RenameTamperRuleMutation = {
|
|
|
14101
14562
|
name: string;
|
|
14102
14563
|
condition?: string | undefined | null;
|
|
14103
14564
|
section: {
|
|
14565
|
+
__typename: "TamperSectionRequestAll";
|
|
14566
|
+
operation: {
|
|
14567
|
+
__typename: "TamperOperationAllRaw";
|
|
14568
|
+
matcher: {
|
|
14569
|
+
__typename: "TamperMatcherFull";
|
|
14570
|
+
} | {
|
|
14571
|
+
__typename: "TamperMatcherRegex";
|
|
14572
|
+
regex: string;
|
|
14573
|
+
} | {
|
|
14574
|
+
__typename: "TamperMatcherValue";
|
|
14575
|
+
value: string;
|
|
14576
|
+
};
|
|
14577
|
+
replacer: {
|
|
14578
|
+
__typename: "TamperReplacerTerm";
|
|
14579
|
+
term: string;
|
|
14580
|
+
} | {
|
|
14581
|
+
__typename: "TamperReplacerWorkflow";
|
|
14582
|
+
id: string;
|
|
14583
|
+
};
|
|
14584
|
+
};
|
|
14585
|
+
} | {
|
|
14104
14586
|
__typename: "TamperSectionRequestBody";
|
|
14105
14587
|
operation: {
|
|
14106
14588
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -14281,6 +14763,27 @@ export type RenameTamperRuleMutation = {
|
|
|
14281
14763
|
id: string;
|
|
14282
14764
|
};
|
|
14283
14765
|
};
|
|
14766
|
+
} | {
|
|
14767
|
+
__typename: "TamperSectionResponseAll";
|
|
14768
|
+
operation: {
|
|
14769
|
+
__typename: "TamperOperationAllRaw";
|
|
14770
|
+
matcher: {
|
|
14771
|
+
__typename: "TamperMatcherFull";
|
|
14772
|
+
} | {
|
|
14773
|
+
__typename: "TamperMatcherRegex";
|
|
14774
|
+
regex: string;
|
|
14775
|
+
} | {
|
|
14776
|
+
__typename: "TamperMatcherValue";
|
|
14777
|
+
value: string;
|
|
14778
|
+
};
|
|
14779
|
+
replacer: {
|
|
14780
|
+
__typename: "TamperReplacerTerm";
|
|
14781
|
+
term: string;
|
|
14782
|
+
} | {
|
|
14783
|
+
__typename: "TamperReplacerWorkflow";
|
|
14784
|
+
id: string;
|
|
14785
|
+
};
|
|
14786
|
+
};
|
|
14284
14787
|
} | {
|
|
14285
14788
|
__typename: "TamperSectionResponseBody";
|
|
14286
14789
|
operation: {
|
|
@@ -14426,6 +14929,27 @@ export type ToggleTamperRuleMutation = {
|
|
|
14426
14929
|
name: string;
|
|
14427
14930
|
condition?: string | undefined | null;
|
|
14428
14931
|
section: {
|
|
14932
|
+
__typename: "TamperSectionRequestAll";
|
|
14933
|
+
operation: {
|
|
14934
|
+
__typename: "TamperOperationAllRaw";
|
|
14935
|
+
matcher: {
|
|
14936
|
+
__typename: "TamperMatcherFull";
|
|
14937
|
+
} | {
|
|
14938
|
+
__typename: "TamperMatcherRegex";
|
|
14939
|
+
regex: string;
|
|
14940
|
+
} | {
|
|
14941
|
+
__typename: "TamperMatcherValue";
|
|
14942
|
+
value: string;
|
|
14943
|
+
};
|
|
14944
|
+
replacer: {
|
|
14945
|
+
__typename: "TamperReplacerTerm";
|
|
14946
|
+
term: string;
|
|
14947
|
+
} | {
|
|
14948
|
+
__typename: "TamperReplacerWorkflow";
|
|
14949
|
+
id: string;
|
|
14950
|
+
};
|
|
14951
|
+
};
|
|
14952
|
+
} | {
|
|
14429
14953
|
__typename: "TamperSectionRequestBody";
|
|
14430
14954
|
operation: {
|
|
14431
14955
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -14606,6 +15130,27 @@ export type ToggleTamperRuleMutation = {
|
|
|
14606
15130
|
id: string;
|
|
14607
15131
|
};
|
|
14608
15132
|
};
|
|
15133
|
+
} | {
|
|
15134
|
+
__typename: "TamperSectionResponseAll";
|
|
15135
|
+
operation: {
|
|
15136
|
+
__typename: "TamperOperationAllRaw";
|
|
15137
|
+
matcher: {
|
|
15138
|
+
__typename: "TamperMatcherFull";
|
|
15139
|
+
} | {
|
|
15140
|
+
__typename: "TamperMatcherRegex";
|
|
15141
|
+
regex: string;
|
|
15142
|
+
} | {
|
|
15143
|
+
__typename: "TamperMatcherValue";
|
|
15144
|
+
value: string;
|
|
15145
|
+
};
|
|
15146
|
+
replacer: {
|
|
15147
|
+
__typename: "TamperReplacerTerm";
|
|
15148
|
+
term: string;
|
|
15149
|
+
} | {
|
|
15150
|
+
__typename: "TamperReplacerWorkflow";
|
|
15151
|
+
id: string;
|
|
15152
|
+
};
|
|
15153
|
+
};
|
|
14609
15154
|
} | {
|
|
14610
15155
|
__typename: "TamperSectionResponseBody";
|
|
14611
15156
|
operation: {
|
|
@@ -14735,6 +15280,27 @@ export type RankTamperRuleMutation = {
|
|
|
14735
15280
|
name: string;
|
|
14736
15281
|
condition?: string | undefined | null;
|
|
14737
15282
|
section: {
|
|
15283
|
+
__typename: "TamperSectionRequestAll";
|
|
15284
|
+
operation: {
|
|
15285
|
+
__typename: "TamperOperationAllRaw";
|
|
15286
|
+
matcher: {
|
|
15287
|
+
__typename: "TamperMatcherFull";
|
|
15288
|
+
} | {
|
|
15289
|
+
__typename: "TamperMatcherRegex";
|
|
15290
|
+
regex: string;
|
|
15291
|
+
} | {
|
|
15292
|
+
__typename: "TamperMatcherValue";
|
|
15293
|
+
value: string;
|
|
15294
|
+
};
|
|
15295
|
+
replacer: {
|
|
15296
|
+
__typename: "TamperReplacerTerm";
|
|
15297
|
+
term: string;
|
|
15298
|
+
} | {
|
|
15299
|
+
__typename: "TamperReplacerWorkflow";
|
|
15300
|
+
id: string;
|
|
15301
|
+
};
|
|
15302
|
+
};
|
|
15303
|
+
} | {
|
|
14738
15304
|
__typename: "TamperSectionRequestBody";
|
|
14739
15305
|
operation: {
|
|
14740
15306
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -14915,6 +15481,27 @@ export type RankTamperRuleMutation = {
|
|
|
14915
15481
|
id: string;
|
|
14916
15482
|
};
|
|
14917
15483
|
};
|
|
15484
|
+
} | {
|
|
15485
|
+
__typename: "TamperSectionResponseAll";
|
|
15486
|
+
operation: {
|
|
15487
|
+
__typename: "TamperOperationAllRaw";
|
|
15488
|
+
matcher: {
|
|
15489
|
+
__typename: "TamperMatcherFull";
|
|
15490
|
+
} | {
|
|
15491
|
+
__typename: "TamperMatcherRegex";
|
|
15492
|
+
regex: string;
|
|
15493
|
+
} | {
|
|
15494
|
+
__typename: "TamperMatcherValue";
|
|
15495
|
+
value: string;
|
|
15496
|
+
};
|
|
15497
|
+
replacer: {
|
|
15498
|
+
__typename: "TamperReplacerTerm";
|
|
15499
|
+
term: string;
|
|
15500
|
+
} | {
|
|
15501
|
+
__typename: "TamperReplacerWorkflow";
|
|
15502
|
+
id: string;
|
|
15503
|
+
};
|
|
15504
|
+
};
|
|
14918
15505
|
} | {
|
|
14919
15506
|
__typename: "TamperSectionResponseBody";
|
|
14920
15507
|
operation: {
|
|
@@ -15044,6 +15631,27 @@ export type MoveTamperRuleMutation = {
|
|
|
15044
15631
|
name: string;
|
|
15045
15632
|
condition?: string | undefined | null;
|
|
15046
15633
|
section: {
|
|
15634
|
+
__typename: "TamperSectionRequestAll";
|
|
15635
|
+
operation: {
|
|
15636
|
+
__typename: "TamperOperationAllRaw";
|
|
15637
|
+
matcher: {
|
|
15638
|
+
__typename: "TamperMatcherFull";
|
|
15639
|
+
} | {
|
|
15640
|
+
__typename: "TamperMatcherRegex";
|
|
15641
|
+
regex: string;
|
|
15642
|
+
} | {
|
|
15643
|
+
__typename: "TamperMatcherValue";
|
|
15644
|
+
value: string;
|
|
15645
|
+
};
|
|
15646
|
+
replacer: {
|
|
15647
|
+
__typename: "TamperReplacerTerm";
|
|
15648
|
+
term: string;
|
|
15649
|
+
} | {
|
|
15650
|
+
__typename: "TamperReplacerWorkflow";
|
|
15651
|
+
id: string;
|
|
15652
|
+
};
|
|
15653
|
+
};
|
|
15654
|
+
} | {
|
|
15047
15655
|
__typename: "TamperSectionRequestBody";
|
|
15048
15656
|
operation: {
|
|
15049
15657
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -15224,6 +15832,27 @@ export type MoveTamperRuleMutation = {
|
|
|
15224
15832
|
id: string;
|
|
15225
15833
|
};
|
|
15226
15834
|
};
|
|
15835
|
+
} | {
|
|
15836
|
+
__typename: "TamperSectionResponseAll";
|
|
15837
|
+
operation: {
|
|
15838
|
+
__typename: "TamperOperationAllRaw";
|
|
15839
|
+
matcher: {
|
|
15840
|
+
__typename: "TamperMatcherFull";
|
|
15841
|
+
} | {
|
|
15842
|
+
__typename: "TamperMatcherRegex";
|
|
15843
|
+
regex: string;
|
|
15844
|
+
} | {
|
|
15845
|
+
__typename: "TamperMatcherValue";
|
|
15846
|
+
value: string;
|
|
15847
|
+
};
|
|
15848
|
+
replacer: {
|
|
15849
|
+
__typename: "TamperReplacerTerm";
|
|
15850
|
+
term: string;
|
|
15851
|
+
} | {
|
|
15852
|
+
__typename: "TamperReplacerWorkflow";
|
|
15853
|
+
id: string;
|
|
15854
|
+
};
|
|
15855
|
+
};
|
|
15227
15856
|
} | {
|
|
15228
15857
|
__typename: "TamperSectionResponseBody";
|
|
15229
15858
|
operation: {
|
|
@@ -16363,6 +16992,7 @@ export type ReplayEntryMetaFragment = {
|
|
|
16363
16992
|
__typename: "ReplayEntry";
|
|
16364
16993
|
id: string;
|
|
16365
16994
|
error?: string | undefined | null;
|
|
16995
|
+
createdAt: Date;
|
|
16366
16996
|
connection: {
|
|
16367
16997
|
__typename: "ConnectionInfo";
|
|
16368
16998
|
host: string;
|
|
@@ -16414,6 +17044,7 @@ export type ReplayEntryFullFragment = {
|
|
|
16414
17044
|
raw: string;
|
|
16415
17045
|
id: string;
|
|
16416
17046
|
error?: string | undefined | null;
|
|
17047
|
+
createdAt: Date;
|
|
16417
17048
|
settings: {
|
|
16418
17049
|
placeholders: Array<{
|
|
16419
17050
|
__typename: "ReplayPlaceholder";
|
|
@@ -16537,6 +17168,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
16537
17168
|
__typename: "ReplayEntry";
|
|
16538
17169
|
id: string;
|
|
16539
17170
|
error?: string | undefined | null;
|
|
17171
|
+
createdAt: Date;
|
|
16540
17172
|
connection: {
|
|
16541
17173
|
__typename: "ConnectionInfo";
|
|
16542
17174
|
host: string;
|
|
@@ -16591,6 +17223,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
16591
17223
|
__typename: "ReplayEntry";
|
|
16592
17224
|
id: string;
|
|
16593
17225
|
error?: string | undefined | null;
|
|
17226
|
+
createdAt: Date;
|
|
16594
17227
|
connection: {
|
|
16595
17228
|
__typename: "ConnectionInfo";
|
|
16596
17229
|
host: string;
|
|
@@ -16651,6 +17284,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
16651
17284
|
__typename: "ReplayEntry";
|
|
16652
17285
|
id: string;
|
|
16653
17286
|
error?: string | undefined | null;
|
|
17287
|
+
createdAt: Date;
|
|
16654
17288
|
connection: {
|
|
16655
17289
|
__typename: "ConnectionInfo";
|
|
16656
17290
|
host: string;
|
|
@@ -16705,6 +17339,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
16705
17339
|
__typename: "ReplayEntry";
|
|
16706
17340
|
id: string;
|
|
16707
17341
|
error?: string | undefined | null;
|
|
17342
|
+
createdAt: Date;
|
|
16708
17343
|
connection: {
|
|
16709
17344
|
__typename: "ConnectionInfo";
|
|
16710
17345
|
host: string;
|
|
@@ -16763,6 +17398,7 @@ export type ReplayTaskMetaFragment = {
|
|
|
16763
17398
|
raw: string;
|
|
16764
17399
|
id: string;
|
|
16765
17400
|
error?: string | undefined | null;
|
|
17401
|
+
createdAt: Date;
|
|
16766
17402
|
settings: {
|
|
16767
17403
|
placeholders: Array<{
|
|
16768
17404
|
__typename: "ReplayPlaceholder";
|
|
@@ -16960,6 +17596,7 @@ export type ReplayEntryQuery = {
|
|
|
16960
17596
|
raw: string;
|
|
16961
17597
|
id: string;
|
|
16962
17598
|
error?: string | undefined | null;
|
|
17599
|
+
createdAt: Date;
|
|
16963
17600
|
settings: {
|
|
16964
17601
|
placeholders: Array<{
|
|
16965
17602
|
__typename: "ReplayPlaceholder";
|
|
@@ -17088,6 +17725,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
17088
17725
|
__typename: "ReplayEntry";
|
|
17089
17726
|
id: string;
|
|
17090
17727
|
error?: string | undefined | null;
|
|
17728
|
+
createdAt: Date;
|
|
17091
17729
|
connection: {
|
|
17092
17730
|
__typename: "ConnectionInfo";
|
|
17093
17731
|
host: string;
|
|
@@ -17142,6 +17780,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
17142
17780
|
__typename: "ReplayEntry";
|
|
17143
17781
|
id: string;
|
|
17144
17782
|
error?: string | undefined | null;
|
|
17783
|
+
createdAt: Date;
|
|
17145
17784
|
connection: {
|
|
17146
17785
|
__typename: "ConnectionInfo";
|
|
17147
17786
|
host: string;
|
|
@@ -17206,6 +17845,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
17206
17845
|
__typename: "ReplayEntry";
|
|
17207
17846
|
id: string;
|
|
17208
17847
|
error?: string | undefined | null;
|
|
17848
|
+
createdAt: Date;
|
|
17209
17849
|
connection: {
|
|
17210
17850
|
__typename: "ConnectionInfo";
|
|
17211
17851
|
host: string;
|
|
@@ -17269,6 +17909,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
17269
17909
|
__typename: "ReplayEntry";
|
|
17270
17910
|
id: string;
|
|
17271
17911
|
error?: string | undefined | null;
|
|
17912
|
+
createdAt: Date;
|
|
17272
17913
|
connection: {
|
|
17273
17914
|
__typename: "ConnectionInfo";
|
|
17274
17915
|
host: string;
|
|
@@ -17320,6 +17961,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
17320
17961
|
__typename: "ReplayEntry";
|
|
17321
17962
|
id: string;
|
|
17322
17963
|
error?: string | undefined | null;
|
|
17964
|
+
createdAt: Date;
|
|
17323
17965
|
connection: {
|
|
17324
17966
|
__typename: "ConnectionInfo";
|
|
17325
17967
|
host: string;
|
|
@@ -17380,6 +18022,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
17380
18022
|
__typename: "ReplayEntry";
|
|
17381
18023
|
id: string;
|
|
17382
18024
|
error?: string | undefined | null;
|
|
18025
|
+
createdAt: Date;
|
|
17383
18026
|
connection: {
|
|
17384
18027
|
__typename: "ConnectionInfo";
|
|
17385
18028
|
host: string;
|
|
@@ -17433,6 +18076,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
17433
18076
|
__typename: "ReplayEntry";
|
|
17434
18077
|
id: string;
|
|
17435
18078
|
error?: string | undefined | null;
|
|
18079
|
+
createdAt: Date;
|
|
17436
18080
|
connection: {
|
|
17437
18081
|
__typename: "ConnectionInfo";
|
|
17438
18082
|
host: string;
|
|
@@ -17513,6 +18157,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
17513
18157
|
__typename: "ReplayEntry";
|
|
17514
18158
|
id: string;
|
|
17515
18159
|
error?: string | undefined | null;
|
|
18160
|
+
createdAt: Date;
|
|
17516
18161
|
connection: {
|
|
17517
18162
|
__typename: "ConnectionInfo";
|
|
17518
18163
|
host: string;
|
|
@@ -17567,6 +18212,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
17567
18212
|
__typename: "ReplayEntry";
|
|
17568
18213
|
id: string;
|
|
17569
18214
|
error?: string | undefined | null;
|
|
18215
|
+
createdAt: Date;
|
|
17570
18216
|
connection: {
|
|
17571
18217
|
__typename: "ConnectionInfo";
|
|
17572
18218
|
host: string;
|
|
@@ -17637,6 +18283,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
17637
18283
|
__typename: "ReplayEntry";
|
|
17638
18284
|
id: string;
|
|
17639
18285
|
error?: string | undefined | null;
|
|
18286
|
+
createdAt: Date;
|
|
17640
18287
|
connection: {
|
|
17641
18288
|
__typename: "ConnectionInfo";
|
|
17642
18289
|
host: string;
|
|
@@ -17691,6 +18338,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
17691
18338
|
__typename: "ReplayEntry";
|
|
17692
18339
|
id: string;
|
|
17693
18340
|
error?: string | undefined | null;
|
|
18341
|
+
createdAt: Date;
|
|
17694
18342
|
connection: {
|
|
17695
18343
|
__typename: "ConnectionInfo";
|
|
17696
18344
|
host: string;
|
|
@@ -17759,6 +18407,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
17759
18407
|
__typename: "ReplayEntry";
|
|
17760
18408
|
id: string;
|
|
17761
18409
|
error?: string | undefined | null;
|
|
18410
|
+
createdAt: Date;
|
|
17762
18411
|
connection: {
|
|
17763
18412
|
__typename: "ConnectionInfo";
|
|
17764
18413
|
host: string;
|
|
@@ -17813,6 +18462,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
17813
18462
|
__typename: "ReplayEntry";
|
|
17814
18463
|
id: string;
|
|
17815
18464
|
error?: string | undefined | null;
|
|
18465
|
+
createdAt: Date;
|
|
17816
18466
|
connection: {
|
|
17817
18467
|
__typename: "ConnectionInfo";
|
|
17818
18468
|
host: string;
|
|
@@ -17886,6 +18536,7 @@ export type RenameReplaySessionMutation = {
|
|
|
17886
18536
|
__typename: "ReplayEntry";
|
|
17887
18537
|
id: string;
|
|
17888
18538
|
error?: string | undefined | null;
|
|
18539
|
+
createdAt: Date;
|
|
17889
18540
|
connection: {
|
|
17890
18541
|
__typename: "ConnectionInfo";
|
|
17891
18542
|
host: string;
|
|
@@ -17940,6 +18591,7 @@ export type RenameReplaySessionMutation = {
|
|
|
17940
18591
|
__typename: "ReplayEntry";
|
|
17941
18592
|
id: string;
|
|
17942
18593
|
error?: string | undefined | null;
|
|
18594
|
+
createdAt: Date;
|
|
17943
18595
|
connection: {
|
|
17944
18596
|
__typename: "ConnectionInfo";
|
|
17945
18597
|
host: string;
|
|
@@ -18004,6 +18656,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
18004
18656
|
__typename: "ReplayEntry";
|
|
18005
18657
|
id: string;
|
|
18006
18658
|
error?: string | undefined | null;
|
|
18659
|
+
createdAt: Date;
|
|
18007
18660
|
connection: {
|
|
18008
18661
|
__typename: "ConnectionInfo";
|
|
18009
18662
|
host: string;
|
|
@@ -18058,6 +18711,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
18058
18711
|
__typename: "ReplayEntry";
|
|
18059
18712
|
id: string;
|
|
18060
18713
|
error?: string | undefined | null;
|
|
18714
|
+
createdAt: Date;
|
|
18061
18715
|
connection: {
|
|
18062
18716
|
__typename: "ConnectionInfo";
|
|
18063
18717
|
host: string;
|
|
@@ -18137,6 +18791,7 @@ export type CreateReplaySessionMutation = {
|
|
|
18137
18791
|
__typename: "ReplayEntry";
|
|
18138
18792
|
id: string;
|
|
18139
18793
|
error?: string | undefined | null;
|
|
18794
|
+
createdAt: Date;
|
|
18140
18795
|
connection: {
|
|
18141
18796
|
__typename: "ConnectionInfo";
|
|
18142
18797
|
host: string;
|
|
@@ -18191,6 +18846,7 @@ export type CreateReplaySessionMutation = {
|
|
|
18191
18846
|
__typename: "ReplayEntry";
|
|
18192
18847
|
id: string;
|
|
18193
18848
|
error?: string | undefined | null;
|
|
18849
|
+
createdAt: Date;
|
|
18194
18850
|
connection: {
|
|
18195
18851
|
__typename: "ConnectionInfo";
|
|
18196
18852
|
host: string;
|
|
@@ -18244,6 +18900,7 @@ export type CreateReplaySessionMutation = {
|
|
|
18244
18900
|
__typename: "ReplayEntry";
|
|
18245
18901
|
id: string;
|
|
18246
18902
|
error?: string | undefined | null;
|
|
18903
|
+
createdAt: Date;
|
|
18247
18904
|
connection: {
|
|
18248
18905
|
__typename: "ConnectionInfo";
|
|
18249
18906
|
host: string;
|
|
@@ -18295,6 +18952,7 @@ export type CreateReplaySessionMutation = {
|
|
|
18295
18952
|
__typename: "ReplayEntry";
|
|
18296
18953
|
id: string;
|
|
18297
18954
|
error?: string | undefined | null;
|
|
18955
|
+
createdAt: Date;
|
|
18298
18956
|
connection: {
|
|
18299
18957
|
__typename: "ConnectionInfo";
|
|
18300
18958
|
host: string;
|
|
@@ -18359,6 +19017,7 @@ export type MoveReplaySessionMutation = {
|
|
|
18359
19017
|
__typename: "ReplayEntry";
|
|
18360
19018
|
id: string;
|
|
18361
19019
|
error?: string | undefined | null;
|
|
19020
|
+
createdAt: Date;
|
|
18362
19021
|
connection: {
|
|
18363
19022
|
__typename: "ConnectionInfo";
|
|
18364
19023
|
host: string;
|
|
@@ -18413,6 +19072,7 @@ export type MoveReplaySessionMutation = {
|
|
|
18413
19072
|
__typename: "ReplayEntry";
|
|
18414
19073
|
id: string;
|
|
18415
19074
|
error?: string | undefined | null;
|
|
19075
|
+
createdAt: Date;
|
|
18416
19076
|
connection: {
|
|
18417
19077
|
__typename: "ConnectionInfo";
|
|
18418
19078
|
host: string;
|
|
@@ -18478,6 +19138,7 @@ export type StartReplayTaskMutation = {
|
|
|
18478
19138
|
raw: string;
|
|
18479
19139
|
id: string;
|
|
18480
19140
|
error?: string | undefined | null;
|
|
19141
|
+
createdAt: Date;
|
|
18481
19142
|
settings: {
|
|
18482
19143
|
placeholders: Array<{
|
|
18483
19144
|
__typename: "ReplayPlaceholder";
|
|
@@ -18626,6 +19287,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
18626
19287
|
__typename: "ReplayEntry";
|
|
18627
19288
|
id: string;
|
|
18628
19289
|
error?: string | undefined | null;
|
|
19290
|
+
createdAt: Date;
|
|
18629
19291
|
connection: {
|
|
18630
19292
|
__typename: "ConnectionInfo";
|
|
18631
19293
|
host: string;
|
|
@@ -18680,6 +19342,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
18680
19342
|
__typename: "ReplayEntry";
|
|
18681
19343
|
id: string;
|
|
18682
19344
|
error?: string | undefined | null;
|
|
19345
|
+
createdAt: Date;
|
|
18683
19346
|
connection: {
|
|
18684
19347
|
__typename: "ConnectionInfo";
|
|
18685
19348
|
host: string;
|
|
@@ -18746,6 +19409,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
18746
19409
|
__typename: "ReplayEntry";
|
|
18747
19410
|
id: string;
|
|
18748
19411
|
error?: string | undefined | null;
|
|
19412
|
+
createdAt: Date;
|
|
18749
19413
|
connection: {
|
|
18750
19414
|
__typename: "ConnectionInfo";
|
|
18751
19415
|
host: string;
|
|
@@ -18800,6 +19464,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
18800
19464
|
__typename: "ReplayEntry";
|
|
18801
19465
|
id: string;
|
|
18802
19466
|
error?: string | undefined | null;
|
|
19467
|
+
createdAt: Date;
|
|
18803
19468
|
connection: {
|
|
18804
19469
|
__typename: "ConnectionInfo";
|
|
18805
19470
|
host: string;
|
|
@@ -18877,6 +19542,7 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
18877
19542
|
__typename: "ReplayEntry";
|
|
18878
19543
|
id: string;
|
|
18879
19544
|
error?: string | undefined | null;
|
|
19545
|
+
createdAt: Date;
|
|
18880
19546
|
connection: {
|
|
18881
19547
|
__typename: "ConnectionInfo";
|
|
18882
19548
|
host: string;
|
|
@@ -18931,6 +19597,7 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
18931
19597
|
__typename: "ReplayEntry";
|
|
18932
19598
|
id: string;
|
|
18933
19599
|
error?: string | undefined | null;
|
|
19600
|
+
createdAt: Date;
|
|
18934
19601
|
connection: {
|
|
18935
19602
|
__typename: "ConnectionInfo";
|
|
18936
19603
|
host: string;
|
|
@@ -19001,6 +19668,7 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
19001
19668
|
__typename: "ReplayEntry";
|
|
19002
19669
|
id: string;
|
|
19003
19670
|
error?: string | undefined | null;
|
|
19671
|
+
createdAt: Date;
|
|
19004
19672
|
connection: {
|
|
19005
19673
|
__typename: "ConnectionInfo";
|
|
19006
19674
|
host: string;
|
|
@@ -19055,6 +19723,7 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
19055
19723
|
__typename: "ReplayEntry";
|
|
19056
19724
|
id: string;
|
|
19057
19725
|
error?: string | undefined | null;
|
|
19726
|
+
createdAt: Date;
|
|
19058
19727
|
connection: {
|
|
19059
19728
|
__typename: "ConnectionInfo";
|
|
19060
19729
|
host: string;
|
|
@@ -20833,6 +21502,7 @@ export type GetTasksQuery = {
|
|
|
20833
21502
|
raw: string;
|
|
20834
21503
|
id: string;
|
|
20835
21504
|
error?: string | undefined | null;
|
|
21505
|
+
createdAt: Date;
|
|
20836
21506
|
settings: {
|
|
20837
21507
|
placeholders: Array<{
|
|
20838
21508
|
__typename: "ReplayPlaceholder";
|
|
@@ -21012,6 +21682,7 @@ export type StartedTaskSubscription = {
|
|
|
21012
21682
|
raw: string;
|
|
21013
21683
|
id: string;
|
|
21014
21684
|
error?: string | undefined | null;
|
|
21685
|
+
createdAt: Date;
|
|
21015
21686
|
settings: {
|
|
21016
21687
|
placeholders: Array<{
|
|
21017
21688
|
__typename: "ReplayPlaceholder";
|
|
@@ -21176,6 +21847,7 @@ export type FinishedTaskSubscription = {
|
|
|
21176
21847
|
raw: string;
|
|
21177
21848
|
id: string;
|
|
21178
21849
|
error?: string | undefined | null;
|
|
21850
|
+
createdAt: Date;
|
|
21179
21851
|
settings: {
|
|
21180
21852
|
placeholders: Array<{
|
|
21181
21853
|
__typename: "ReplayPlaceholder";
|
|
@@ -22482,7 +23154,7 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
|
|
|
22482
23154
|
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
22483
23155
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
22484
23156
|
export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
22485
|
-
export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
23157
|
+
export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
22486
23158
|
export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
|
|
22487
23159
|
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
22488
23160
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
@@ -22503,6 +23175,8 @@ export declare const TamperMatcherRawFullFragmentDoc = "\n fragment tamperMat
|
|
|
22503
23175
|
export declare const TamperReplacerTermFullFragmentDoc = "\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n ";
|
|
22504
23176
|
export declare const TamperReplacerWorkflowFullFragmentDoc = "\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n ";
|
|
22505
23177
|
export declare const TamperReplacerFullFragmentDoc = "\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n ";
|
|
23178
|
+
export declare const TamperOperationAllRawFullFragmentDoc = "\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23179
|
+
export declare const TamperOperationAllFullFragmentDoc = "\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n ";
|
|
22506
23180
|
export declare const TamperOperationPathRawFullFragmentDoc = "\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22507
23181
|
export declare const TamperOperationPathFullFragmentDoc = "\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n ";
|
|
22508
23182
|
export declare const TamperOperationMethodUpdateFullFragmentDoc = "\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
@@ -22524,7 +23198,7 @@ export declare const TamperOperationBodyRawFullFragmentDoc = "\n fragment tam
|
|
|
22524
23198
|
export declare const TamperOperationBodyFullFragmentDoc = "\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n ";
|
|
22525
23199
|
export declare const TamperOperationStatusCodeUpdateFullFragmentDoc = "\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22526
23200
|
export declare const TamperOperationStatusCodeFullFragmentDoc = "\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n ";
|
|
22527
|
-
export declare const TamperSectionFullFragmentDoc = "\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n ";
|
|
23201
|
+
export declare const TamperSectionFullFragmentDoc = "\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n ";
|
|
22528
23202
|
export declare const TamperRuleFullFragmentDoc = "\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n ";
|
|
22529
23203
|
export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
|
|
22530
23204
|
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -22543,7 +23217,7 @@ export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePl
|
|
|
22543
23217
|
export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22544
23218
|
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
22545
23219
|
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
22546
|
-
export declare const ReplayEntryMetaFragmentDoc = "\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 ";
|
|
23220
|
+
export declare const ReplayEntryMetaFragmentDoc = "\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
22547
23221
|
export declare const ReplaySessionMetaFragmentDoc = "\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 }\n}\n ";
|
|
22548
23222
|
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
22549
23223
|
export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
|
|
@@ -22613,7 +23287,7 @@ export declare const ResumeAutomateTaskDocument = "\n mutation resumeAutomate
|
|
|
22613
23287
|
export declare const StartAutomateTaskDocument = "\n mutation startAutomateTask($automateSessionId: ID!) {\n startAutomateTask(automateSessionId: $automateSessionId) {\n automateTask {\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 ";
|
|
22614
23288
|
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 sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
22615
23289
|
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 ";
|
|
22616
|
-
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
|
|
23290
|
+
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n status\n }\n}\n ";
|
|
22617
23291
|
export declare const UpdatedAutomateTaskDocument = "\n subscription updatedAutomateTask {\n updatedAutomateTask {\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 ";
|
|
22618
23292
|
export declare const CreatedAutomateEntryDocument = "\n subscription createdAutomateEntry {\n createdAutomateEntry {\n automateEntryEdge {\n ...automateEntryEdgeMeta\n }\n }\n}\n \n fragment automateEntryEdgeMeta on AutomateEntryEdge {\n node {\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 ";
|
|
22619
23293
|
export declare const UpdatedAutomateEntryDocument = "\n subscription updatedAutomateEntry {\n updatedAutomateEntry {\n automateEntryEdge {\n ...automateEntryEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryEdgeMeta on AutomateEntryEdge {\n node {\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 ";
|
|
@@ -22722,10 +23396,10 @@ export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile
|
|
|
22722
23396
|
export declare const RenameHostedFileDocument = "\n mutation renameHostedFile($id: ID!, $name: String!) {\n renameHostedFile(id: $id, name: $name) {\n hostedFile {\n ...hostedFileFull\n }\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
22723
23397
|
export declare const UploadHostedFileDocument = "\n mutation uploadHostedFile($input: UploadHostedFileInput!) {\n uploadHostedFile(input: $input) {\n hostedFile {\n ...hostedFileFull\n }\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
22724
23398
|
export declare const HostedFilesDocument = "\n query hostedFiles {\n hostedFiles {\n ...hostedFileFull\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
22725
|
-
export declare const SetInstanceSettingsDocument = "\n mutation setInstanceSettings($input: SetInstanceSettingsInput!) {\n setInstanceSettings(input: $input) {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
23399
|
+
export declare const SetInstanceSettingsDocument = "\n mutation setInstanceSettings($input: SetInstanceSettingsInput!) {\n setInstanceSettings(input: $input) {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
22726
23400
|
export declare const TestAiProviderDocument = "\n mutation testAiProvider($input: TestAIProviderInput!) {\n testAiProvider(input: $input) {\n ...testAiProviderPayloadFull\n }\n}\n \n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
|
|
22727
|
-
export declare const InstanceSettingsDocument = "\n query instanceSettings {\n instanceSettings {\n ...instanceSettingsFull\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
22728
|
-
export declare const UpdatedInstanceSettingsDocument = "\n subscription updatedInstanceSettings {\n updatedInstanceSettings {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
23401
|
+
export declare const InstanceSettingsDocument = "\n query instanceSettings {\n instanceSettings {\n ...instanceSettingsFull\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
23402
|
+
export declare const UpdatedInstanceSettingsDocument = "\n subscription updatedInstanceSettings {\n updatedInstanceSettings {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
22729
23403
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
22730
23404
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
22731
23405
|
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
@@ -22740,18 +23414,18 @@ export declare const UpdatedInterceptStatusDocument = "\n subscription update
|
|
|
22740
23414
|
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
22741
23415
|
export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
22742
23416
|
export declare const DeletedInterceptMessageDocument = "\n subscription deletedInterceptMessage {\n deletedInterceptMessage {\n deletedMessageId\n }\n}\n ";
|
|
22743
|
-
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n ...tamperRuleCollectionFull\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22744
|
-
export declare const RenameTamperRuleCollectionDocument = "\n mutation renameTamperRuleCollection($id: ID!, $name: String!) {\n renameTamperRuleCollection(id: $id, name: $name) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22745
|
-
export declare const CreateTamperRuleCollectionDocument = "\n mutation createTamperRuleCollection($input: CreateTamperRuleCollectionInput!) {\n createTamperRuleCollection(input: $input) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23417
|
+
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n ...tamperRuleCollectionFull\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23418
|
+
export declare const RenameTamperRuleCollectionDocument = "\n mutation renameTamperRuleCollection($id: ID!, $name: String!) {\n renameTamperRuleCollection(id: $id, name: $name) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23419
|
+
export declare const CreateTamperRuleCollectionDocument = "\n mutation createTamperRuleCollection($input: CreateTamperRuleCollectionInput!) {\n createTamperRuleCollection(input: $input) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22746
23420
|
export declare const DeleteTamperRuleCollectionDocument = "\n mutation deleteTamperRuleCollection($id: ID!) {\n deleteTamperRuleCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
22747
|
-
export declare const CreateTamperRuleDocument = "\n mutation createTamperRule($input: CreateTamperRuleInput!) {\n createTamperRule(input: $input) {\n error {\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23421
|
+
export declare const CreateTamperRuleDocument = "\n mutation createTamperRule($input: CreateTamperRuleInput!) {\n createTamperRule(input: $input) {\n error {\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22748
23422
|
export declare const DeleteTamperRuleDocument = "\n mutation deleteTamperRule($id: ID!) {\n deleteTamperRule(id: $id) {\n deletedId\n }\n}\n ";
|
|
22749
|
-
export declare const UpdateTamperRuleDocument = "\n mutation updateTamperRule($id: ID!, $input: UpdateTamperRuleInput!) {\n updateTamperRule(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\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 invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22750
|
-
export declare const RenameTamperRuleDocument = "\n mutation renameTamperRule($id: ID!, $name: String!) {\n renameTamperRule(id: $id, name: $name) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23423
|
+
export declare const UpdateTamperRuleDocument = "\n mutation updateTamperRule($id: ID!, $input: UpdateTamperRuleInput!) {\n updateTamperRule(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\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 invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23424
|
+
export declare const RenameTamperRuleDocument = "\n mutation renameTamperRule($id: ID!, $name: String!) {\n renameTamperRule(id: $id, name: $name) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22751
23425
|
export declare const TestTamperRuleDocument = "\n mutation testTamperRule($input: TestTamperRuleInput!) {\n testTamperRule(input: $input) {\n raw\n error {\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22752
|
-
export declare const ToggleTamperRuleDocument = "\n mutation toggleTamperRule($id: ID!, $enabled: Boolean!) {\n toggleTamperRule(id: $id, enabled: $enabled) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22753
|
-
export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22754
|
-
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23426
|
+
export declare const ToggleTamperRuleDocument = "\n mutation toggleTamperRule($id: ID!, $enabled: Boolean!) {\n toggleTamperRule(id: $id, enabled: $enabled) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23427
|
+
export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23428
|
+
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22755
23429
|
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
22756
23430
|
export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n official\n}\n ";
|
|
22757
23431
|
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
@@ -22773,25 +23447,25 @@ export declare const PersistProjectDocument = "\n mutation persistProject($id
|
|
|
22773
23447
|
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...currentProjectFull\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22774
23448
|
export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22775
23449
|
export declare const SetProjectConfigStreamDocument = "\n mutation setProjectConfigStream($input: ProjectConfigStreamInput!) {\n setProjectConfigStream(input: $input) {\n config {\n ...projectConfigStreamFull\n }\n }\n}\n \n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22776
|
-
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 ";
|
|
22777
|
-
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22778
|
-
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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
22779
|
-
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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
22780
|
-
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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22781
|
-
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22782
|
-
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23450
|
+
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 ";
|
|
23451
|
+
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23452
|
+
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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
23453
|
+
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 createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
23454
|
+
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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23455
|
+
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23456
|
+
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22783
23457
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
22784
|
-
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22785
|
-
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23458
|
+
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23459
|
+
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22786
23460
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
22787
|
-
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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
22788
|
-
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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22789
|
-
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 CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 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 cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22790
|
-
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22791
|
-
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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23461
|
+
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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
23462
|
+
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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23463
|
+
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 CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 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 cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
23464
|
+
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23465
|
+
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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22792
23466
|
export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
|
|
22793
|
-
export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22794
|
-
export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\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 }\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23467
|
+
export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
23468
|
+
export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\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 }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22795
23469
|
export declare const DeletedReplaySessionCollectionDocument = "\n subscription deletedReplaySessionCollection {\n deletedReplaySessionCollection {\n deletedCollectionId\n }\n}\n ";
|
|
22796
23470
|
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 sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22797
23471
|
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 ";
|
|
@@ -22841,10 +23515,10 @@ export declare const WebsocketMessageEditDocument = "\n query websocketMessag
|
|
|
22841
23515
|
export declare const CreatedWsStreamDocument = "\n subscription createdWsStream($scopeId: ID, $order: StreamOrderInput!) {\n createdStream(protocol: WS, scopeId: $scopeId) {\n snapshot\n streamEdge(order: $order) {\n ...streamEdgeMeta\n }\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n ";
|
|
22842
23516
|
export declare const CreatedStreamWsMessageDocument = "\n subscription createdStreamWsMessage($order: StreamWsMessageOrderInput!) {\n createdStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
22843
23517
|
export declare const UpdatedStreamWsMessageDocument = "\n subscription updatedStreamWsMessage($order: StreamWsMessageOrderInput!) {\n updatedStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
22844
|
-
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
23518
|
+
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
22845
23519
|
export declare const CancelTaskDocument = "\n mutation cancelTask($id: ID!) {\n cancelTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22846
|
-
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\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 createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 ";
|
|
22847
|
-
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 ";
|
|
23520
|
+
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\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 createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 ";
|
|
23521
|
+
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\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 SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\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 ";
|
|
22848
23522
|
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
22849
23523
|
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
22850
23524
|
export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|