@caido/sdk-frontend 0.55.2 → 0.55.3-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
CHANGED
|
@@ -1214,6 +1214,10 @@ export type DeleteSitemapEntriesPayload = {
|
|
|
1214
1214
|
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1215
1215
|
errors: Array<DeleteSitemapEntriesError>;
|
|
1216
1216
|
};
|
|
1217
|
+
export type DeleteStreamWsMessageTask = Task & {
|
|
1218
|
+
createdAt: Scalars["DateTime"]["output"];
|
|
1219
|
+
id: Scalars["ID"]["output"];
|
|
1220
|
+
};
|
|
1217
1221
|
export type DeleteTamperRuleCollectionPayload = {
|
|
1218
1222
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1219
1223
|
};
|
|
@@ -1313,6 +1317,9 @@ export type DeletedSitemapEntriesPayload = {
|
|
|
1313
1317
|
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1314
1318
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1315
1319
|
};
|
|
1320
|
+
export type DeletedStreamWsMessagesPayload = {
|
|
1321
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1322
|
+
};
|
|
1316
1323
|
export type DeletedTamperRuleCollectionPayload = {
|
|
1317
1324
|
deletedCollectionId: Scalars["ID"]["output"];
|
|
1318
1325
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1834,6 +1841,8 @@ export type MutationRoot = {
|
|
|
1834
1841
|
pauseIntercept: PauseInterceptPayload;
|
|
1835
1842
|
persistProject: PersistProjectPayload;
|
|
1836
1843
|
rankDnsRewrite: RankDnsRewritePayload;
|
|
1844
|
+
rankReplaySession: RankReplaySessionPayload;
|
|
1845
|
+
rankReplaySessionCollection: RankReplaySessionCollectionPayload;
|
|
1837
1846
|
rankTamperRule: RankTamperRulePayload;
|
|
1838
1847
|
rankUpstreamPlugin: RankUpstreamPluginPayload;
|
|
1839
1848
|
rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
|
|
@@ -1872,6 +1881,7 @@ export type MutationRoot = {
|
|
|
1872
1881
|
setProjectConfigStream: SetProjectConfigStreamPayload;
|
|
1873
1882
|
startAuthenticationFlow: StartAuthenticationFlowPayload;
|
|
1874
1883
|
startAutomateTask: StartAutomateTaskPayload;
|
|
1884
|
+
startDeleteStreamWsMessageTask: StartDeleteStreamWsMessageTaskPayload;
|
|
1875
1885
|
startExportRequestsTask: StartExportRequestsTaskPayload;
|
|
1876
1886
|
startReplayTask: StartReplayTaskPayload;
|
|
1877
1887
|
testAiProvider: TestAiProviderPayload;
|
|
@@ -2102,6 +2112,14 @@ export type MutationRootRankDnsRewriteArgs = {
|
|
|
2102
2112
|
id: Scalars["ID"]["input"];
|
|
2103
2113
|
input: RankInput;
|
|
2104
2114
|
};
|
|
2115
|
+
export type MutationRootRankReplaySessionArgs = {
|
|
2116
|
+
id: Scalars["ID"]["input"];
|
|
2117
|
+
input: RankInput;
|
|
2118
|
+
};
|
|
2119
|
+
export type MutationRootRankReplaySessionCollectionArgs = {
|
|
2120
|
+
id: Scalars["ID"]["input"];
|
|
2121
|
+
input: RankInput;
|
|
2122
|
+
};
|
|
2105
2123
|
export type MutationRootRankTamperRuleArgs = {
|
|
2106
2124
|
id: Scalars["ID"]["input"];
|
|
2107
2125
|
input: RankTamperRuleInput;
|
|
@@ -2227,6 +2245,9 @@ export type MutationRootSetProjectConfigStreamArgs = {
|
|
|
2227
2245
|
export type MutationRootStartAutomateTaskArgs = {
|
|
2228
2246
|
automateSessionId: Scalars["ID"]["input"];
|
|
2229
2247
|
};
|
|
2248
|
+
export type MutationRootStartDeleteStreamWsMessageTaskArgs = {
|
|
2249
|
+
input: StartDeleteStreamWsMessageTaskInput;
|
|
2250
|
+
};
|
|
2230
2251
|
export type MutationRootStartExportRequestsTaskArgs = {
|
|
2231
2252
|
input: StartExportRequestsTaskInput;
|
|
2232
2253
|
};
|
|
@@ -2820,6 +2841,16 @@ export type RankInput = {
|
|
|
2820
2841
|
afterId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2821
2842
|
beforeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2822
2843
|
};
|
|
2844
|
+
export type RankReplaySessionCollectionPayload = {
|
|
2845
|
+
collection?: Maybe<ReplaySessionCollection>;
|
|
2846
|
+
error?: Maybe<RankSessionCollectionPayloadError>;
|
|
2847
|
+
};
|
|
2848
|
+
export type RankReplaySessionPayload = {
|
|
2849
|
+
error?: Maybe<RankSessionPayloadError>;
|
|
2850
|
+
session?: Maybe<ReplaySession>;
|
|
2851
|
+
};
|
|
2852
|
+
export type RankSessionCollectionPayloadError = OtherUserError | RankUserError | UnknownIdUserError;
|
|
2853
|
+
export type RankSessionPayloadError = OtherUserError | RankUserError | UnknownIdUserError;
|
|
2823
2854
|
export type RankTamperRuleError = OtherUserError | RankUserError | UnknownIdUserError;
|
|
2824
2855
|
export type RankTamperRuleInput = {
|
|
2825
2856
|
afterId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -3042,6 +3073,7 @@ export type ReplaySession = {
|
|
|
3042
3073
|
entries: ReplayEntryConnection;
|
|
3043
3074
|
id: Scalars["ID"]["output"];
|
|
3044
3075
|
name: Scalars["String"]["output"];
|
|
3076
|
+
rank: Scalars["Rank"]["output"];
|
|
3045
3077
|
};
|
|
3046
3078
|
export type ReplaySessionEntriesArgs = {
|
|
3047
3079
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -3053,6 +3085,7 @@ export type ReplaySessionEntriesArgs = {
|
|
|
3053
3085
|
export type ReplaySessionCollection = {
|
|
3054
3086
|
id: Scalars["ID"]["output"];
|
|
3055
3087
|
name: Scalars["String"]["output"];
|
|
3088
|
+
rank: Scalars["Rank"]["output"];
|
|
3056
3089
|
sessions: Array<ReplaySession>;
|
|
3057
3090
|
};
|
|
3058
3091
|
export type ReplaySessionCollectionConnection = {
|
|
@@ -3418,6 +3451,12 @@ export type StartAuthenticationFlowPayload = {
|
|
|
3418
3451
|
export type StartAutomateTaskPayload = {
|
|
3419
3452
|
automateTask?: Maybe<AutomateTask>;
|
|
3420
3453
|
};
|
|
3454
|
+
export type StartDeleteStreamWsMessageTaskInput = {
|
|
3455
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
3456
|
+
};
|
|
3457
|
+
export type StartDeleteStreamWsMessageTaskPayload = {
|
|
3458
|
+
task?: Maybe<DeleteStreamWsMessageTask>;
|
|
3459
|
+
};
|
|
3421
3460
|
export type StartExportRequestsTaskInput = {
|
|
3422
3461
|
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
3423
3462
|
format: DataExportFormat;
|
|
@@ -3639,6 +3678,7 @@ export type SubscriptionRoot = {
|
|
|
3639
3678
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
3640
3679
|
deletedScope: DeletedScopePayload;
|
|
3641
3680
|
deletedSitemapEntry: DeletedSitemapEntriesPayload;
|
|
3681
|
+
deletedStreamWsMessages: DeletedStreamWsMessagesPayload;
|
|
3642
3682
|
deletedTamperRule: DeletedTamperRulePayload;
|
|
3643
3683
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
|
|
3644
3684
|
deletedUpstreamPlugin: DeletedUpstreamPluginPayload;
|
|
@@ -8783,6 +8823,11 @@ export type AuthorizationUserErrorFullFragment = {
|
|
|
8783
8823
|
reason: AuthorizationErrorReason;
|
|
8784
8824
|
code: string;
|
|
8785
8825
|
};
|
|
8826
|
+
export type RankUserErrorFullFragment = {
|
|
8827
|
+
__typename: "RankUserError";
|
|
8828
|
+
reason: RankErrorReason;
|
|
8829
|
+
code: string;
|
|
8830
|
+
};
|
|
8786
8831
|
export type DataExportStoredMetaFragment = {
|
|
8787
8832
|
__typename: "DataExportStored";
|
|
8788
8833
|
id: string;
|
|
@@ -10500,6 +10545,48 @@ export type HostedFilesQuery = {
|
|
|
10500
10545
|
createdAt: Date;
|
|
10501
10546
|
}>;
|
|
10502
10547
|
};
|
|
10548
|
+
export type OnUploadedHostedFileSubscriptionVariables = Exact<{
|
|
10549
|
+
[key: string]: never;
|
|
10550
|
+
}>;
|
|
10551
|
+
export type OnUploadedHostedFileSubscription = {
|
|
10552
|
+
uploadedHostedFile: {
|
|
10553
|
+
hostedFile: {
|
|
10554
|
+
__typename: "HostedFile";
|
|
10555
|
+
id: string;
|
|
10556
|
+
name: string;
|
|
10557
|
+
path: string;
|
|
10558
|
+
size: number;
|
|
10559
|
+
status: HostedFileStatus;
|
|
10560
|
+
updatedAt: Date;
|
|
10561
|
+
createdAt: Date;
|
|
10562
|
+
};
|
|
10563
|
+
};
|
|
10564
|
+
};
|
|
10565
|
+
export type OnDeletedHostedFileSubscriptionVariables = Exact<{
|
|
10566
|
+
[key: string]: never;
|
|
10567
|
+
}>;
|
|
10568
|
+
export type OnDeletedHostedFileSubscription = {
|
|
10569
|
+
deletedHostedFile: {
|
|
10570
|
+
deletedHostedFileId: string;
|
|
10571
|
+
};
|
|
10572
|
+
};
|
|
10573
|
+
export type OnUpdatedHostedFileSubscriptionVariables = Exact<{
|
|
10574
|
+
[key: string]: never;
|
|
10575
|
+
}>;
|
|
10576
|
+
export type OnUpdatedHostedFileSubscription = {
|
|
10577
|
+
updatedHostedFile: {
|
|
10578
|
+
hostedFile: {
|
|
10579
|
+
__typename: "HostedFile";
|
|
10580
|
+
id: string;
|
|
10581
|
+
name: string;
|
|
10582
|
+
path: string;
|
|
10583
|
+
size: number;
|
|
10584
|
+
status: HostedFileStatus;
|
|
10585
|
+
updatedAt: Date;
|
|
10586
|
+
createdAt: Date;
|
|
10587
|
+
};
|
|
10588
|
+
};
|
|
10589
|
+
};
|
|
10503
10590
|
export type InstanceSettingsFullFragment = {
|
|
10504
10591
|
__typename: "InstanceSettings";
|
|
10505
10592
|
aiProviders: {
|
|
@@ -18419,6 +18506,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
18419
18506
|
__typename: "ReplaySession";
|
|
18420
18507
|
id: string;
|
|
18421
18508
|
name: string;
|
|
18509
|
+
rank: string;
|
|
18422
18510
|
activeEntry?: {
|
|
18423
18511
|
__typename: "ReplayEntry";
|
|
18424
18512
|
id: string;
|
|
@@ -18531,10 +18619,12 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
18531
18619
|
__typename: "ReplaySessionCollection";
|
|
18532
18620
|
id: string;
|
|
18533
18621
|
name: string;
|
|
18622
|
+
rank: string;
|
|
18534
18623
|
sessions: Array<{
|
|
18535
18624
|
__typename: "ReplaySession";
|
|
18536
18625
|
id: string;
|
|
18537
18626
|
name: string;
|
|
18627
|
+
rank: string;
|
|
18538
18628
|
activeEntry?: {
|
|
18539
18629
|
__typename: "ReplayEntry";
|
|
18540
18630
|
id: string;
|
|
@@ -18976,6 +19066,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
18976
19066
|
__typename: "ReplaySession";
|
|
18977
19067
|
id: string;
|
|
18978
19068
|
name: string;
|
|
19069
|
+
rank: string;
|
|
18979
19070
|
activeEntry?: {
|
|
18980
19071
|
__typename: "ReplayEntry";
|
|
18981
19072
|
id: string;
|
|
@@ -19093,6 +19184,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
19093
19184
|
__typename: "ReplaySession";
|
|
19094
19185
|
id: string;
|
|
19095
19186
|
name: string;
|
|
19187
|
+
rank: string;
|
|
19096
19188
|
entries: {
|
|
19097
19189
|
edges: Array<{
|
|
19098
19190
|
cursor: string;
|
|
@@ -19404,10 +19496,12 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
19404
19496
|
__typename: "ReplaySessionCollection";
|
|
19405
19497
|
id: string;
|
|
19406
19498
|
name: string;
|
|
19499
|
+
rank: string;
|
|
19407
19500
|
sessions: Array<{
|
|
19408
19501
|
__typename: "ReplaySession";
|
|
19409
19502
|
id: string;
|
|
19410
19503
|
name: string;
|
|
19504
|
+
rank: string;
|
|
19411
19505
|
activeEntry?: {
|
|
19412
19506
|
__typename: "ReplayEntry";
|
|
19413
19507
|
id: string;
|
|
@@ -19530,10 +19624,12 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
19530
19624
|
__typename: "ReplaySessionCollection";
|
|
19531
19625
|
id: string;
|
|
19532
19626
|
name: string;
|
|
19627
|
+
rank: string;
|
|
19533
19628
|
sessions: Array<{
|
|
19534
19629
|
__typename: "ReplaySession";
|
|
19535
19630
|
id: string;
|
|
19536
19631
|
name: string;
|
|
19632
|
+
rank: string;
|
|
19537
19633
|
activeEntry?: {
|
|
19538
19634
|
__typename: "ReplayEntry";
|
|
19539
19635
|
id: string;
|
|
@@ -19654,10 +19750,12 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
19654
19750
|
__typename: "ReplaySessionCollection";
|
|
19655
19751
|
id: string;
|
|
19656
19752
|
name: string;
|
|
19753
|
+
rank: string;
|
|
19657
19754
|
sessions: Array<{
|
|
19658
19755
|
__typename: "ReplaySession";
|
|
19659
19756
|
id: string;
|
|
19660
19757
|
name: string;
|
|
19758
|
+
rank: string;
|
|
19661
19759
|
activeEntry?: {
|
|
19662
19760
|
__typename: "ReplayEntry";
|
|
19663
19761
|
id: string;
|
|
@@ -19787,6 +19885,7 @@ export type RenameReplaySessionMutation = {
|
|
|
19787
19885
|
__typename: "ReplaySession";
|
|
19788
19886
|
id: string;
|
|
19789
19887
|
name: string;
|
|
19888
|
+
rank: string;
|
|
19790
19889
|
activeEntry?: {
|
|
19791
19890
|
__typename: "ReplayEntry";
|
|
19792
19891
|
id: string;
|
|
@@ -19907,6 +20006,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
19907
20006
|
__typename: "ReplaySession";
|
|
19908
20007
|
id: string;
|
|
19909
20008
|
name: string;
|
|
20009
|
+
rank: string;
|
|
19910
20010
|
activeEntry?: {
|
|
19911
20011
|
__typename: "ReplayEntry";
|
|
19912
20012
|
id: string;
|
|
@@ -20034,14 +20134,17 @@ export type CreateReplaySessionMutation = {
|
|
|
20034
20134
|
__typename: "ReplaySession";
|
|
20035
20135
|
id: string;
|
|
20036
20136
|
name: string;
|
|
20137
|
+
rank: string;
|
|
20037
20138
|
collection: {
|
|
20038
20139
|
__typename: "ReplaySessionCollection";
|
|
20039
20140
|
id: string;
|
|
20040
20141
|
name: string;
|
|
20142
|
+
rank: string;
|
|
20041
20143
|
sessions: Array<{
|
|
20042
20144
|
__typename: "ReplaySession";
|
|
20043
20145
|
id: string;
|
|
20044
20146
|
name: string;
|
|
20147
|
+
rank: string;
|
|
20045
20148
|
activeEntry?: {
|
|
20046
20149
|
__typename: "ReplayEntry";
|
|
20047
20150
|
id: string;
|
|
@@ -20268,6 +20371,7 @@ export type MoveReplaySessionMutation = {
|
|
|
20268
20371
|
__typename: "ReplaySession";
|
|
20269
20372
|
id: string;
|
|
20270
20373
|
name: string;
|
|
20374
|
+
rank: string;
|
|
20271
20375
|
activeEntry?: {
|
|
20272
20376
|
__typename: "ReplayEntry";
|
|
20273
20377
|
id: string;
|
|
@@ -20528,6 +20632,278 @@ export type StartReplayTaskMutation = {
|
|
|
20528
20632
|
} | undefined | null;
|
|
20529
20633
|
};
|
|
20530
20634
|
};
|
|
20635
|
+
export type RankReplaySessionMutationVariables = Exact<{
|
|
20636
|
+
id: Scalars["ID"]["input"];
|
|
20637
|
+
input: RankInput;
|
|
20638
|
+
}>;
|
|
20639
|
+
export type RankReplaySessionMutation = {
|
|
20640
|
+
rankReplaySession: {
|
|
20641
|
+
session?: {
|
|
20642
|
+
__typename: "ReplaySession";
|
|
20643
|
+
id: string;
|
|
20644
|
+
name: string;
|
|
20645
|
+
rank: string;
|
|
20646
|
+
activeEntry?: {
|
|
20647
|
+
__typename: "ReplayEntry";
|
|
20648
|
+
id: string;
|
|
20649
|
+
error?: string | undefined | null;
|
|
20650
|
+
createdAt: Date;
|
|
20651
|
+
connection: {
|
|
20652
|
+
__typename: "ConnectionInfo";
|
|
20653
|
+
host: string;
|
|
20654
|
+
port: number;
|
|
20655
|
+
isTLS: boolean;
|
|
20656
|
+
SNI?: string | undefined | null;
|
|
20657
|
+
};
|
|
20658
|
+
session: {
|
|
20659
|
+
id: string;
|
|
20660
|
+
};
|
|
20661
|
+
request?: {
|
|
20662
|
+
__typename: "Request";
|
|
20663
|
+
id: string;
|
|
20664
|
+
host: string;
|
|
20665
|
+
port: number;
|
|
20666
|
+
path: string;
|
|
20667
|
+
query: string;
|
|
20668
|
+
method: string;
|
|
20669
|
+
edited: boolean;
|
|
20670
|
+
isTls: boolean;
|
|
20671
|
+
sni?: string | undefined | null;
|
|
20672
|
+
length: number;
|
|
20673
|
+
alteration: Alteration;
|
|
20674
|
+
fileExtension?: string | undefined | null;
|
|
20675
|
+
source: Source;
|
|
20676
|
+
createdAt: Date;
|
|
20677
|
+
metadata: {
|
|
20678
|
+
__typename: "RequestMetadata";
|
|
20679
|
+
id: string;
|
|
20680
|
+
color?: string | undefined | null;
|
|
20681
|
+
};
|
|
20682
|
+
response?: {
|
|
20683
|
+
__typename: "Response";
|
|
20684
|
+
id: string;
|
|
20685
|
+
statusCode: number;
|
|
20686
|
+
roundtripTime: number;
|
|
20687
|
+
length: number;
|
|
20688
|
+
createdAt: Date;
|
|
20689
|
+
alteration: Alteration;
|
|
20690
|
+
edited: boolean;
|
|
20691
|
+
} | undefined | null;
|
|
20692
|
+
stream?: {
|
|
20693
|
+
id: string;
|
|
20694
|
+
} | undefined | null;
|
|
20695
|
+
} | undefined | null;
|
|
20696
|
+
} | undefined | null;
|
|
20697
|
+
collection: {
|
|
20698
|
+
id: string;
|
|
20699
|
+
};
|
|
20700
|
+
entries: {
|
|
20701
|
+
nodes: Array<{
|
|
20702
|
+
__typename: "ReplayEntry";
|
|
20703
|
+
id: string;
|
|
20704
|
+
error?: string | undefined | null;
|
|
20705
|
+
createdAt: Date;
|
|
20706
|
+
connection: {
|
|
20707
|
+
__typename: "ConnectionInfo";
|
|
20708
|
+
host: string;
|
|
20709
|
+
port: number;
|
|
20710
|
+
isTLS: boolean;
|
|
20711
|
+
SNI?: string | undefined | null;
|
|
20712
|
+
};
|
|
20713
|
+
session: {
|
|
20714
|
+
id: string;
|
|
20715
|
+
};
|
|
20716
|
+
request?: {
|
|
20717
|
+
__typename: "Request";
|
|
20718
|
+
id: string;
|
|
20719
|
+
host: string;
|
|
20720
|
+
port: number;
|
|
20721
|
+
path: string;
|
|
20722
|
+
query: string;
|
|
20723
|
+
method: string;
|
|
20724
|
+
edited: boolean;
|
|
20725
|
+
isTls: boolean;
|
|
20726
|
+
sni?: string | undefined | null;
|
|
20727
|
+
length: number;
|
|
20728
|
+
alteration: Alteration;
|
|
20729
|
+
fileExtension?: string | undefined | null;
|
|
20730
|
+
source: Source;
|
|
20731
|
+
createdAt: Date;
|
|
20732
|
+
metadata: {
|
|
20733
|
+
__typename: "RequestMetadata";
|
|
20734
|
+
id: string;
|
|
20735
|
+
color?: string | undefined | null;
|
|
20736
|
+
};
|
|
20737
|
+
response?: {
|
|
20738
|
+
__typename: "Response";
|
|
20739
|
+
id: string;
|
|
20740
|
+
statusCode: number;
|
|
20741
|
+
roundtripTime: number;
|
|
20742
|
+
length: number;
|
|
20743
|
+
createdAt: Date;
|
|
20744
|
+
alteration: Alteration;
|
|
20745
|
+
edited: boolean;
|
|
20746
|
+
} | undefined | null;
|
|
20747
|
+
stream?: {
|
|
20748
|
+
id: string;
|
|
20749
|
+
} | undefined | null;
|
|
20750
|
+
} | undefined | null;
|
|
20751
|
+
}>;
|
|
20752
|
+
};
|
|
20753
|
+
} | undefined | null;
|
|
20754
|
+
error?: {
|
|
20755
|
+
__typename: "OtherUserError";
|
|
20756
|
+
code: string;
|
|
20757
|
+
} | {
|
|
20758
|
+
__typename: "RankUserError";
|
|
20759
|
+
reason: RankErrorReason;
|
|
20760
|
+
code: string;
|
|
20761
|
+
} | {
|
|
20762
|
+
__typename: "UnknownIdUserError";
|
|
20763
|
+
id: string;
|
|
20764
|
+
code: string;
|
|
20765
|
+
} | undefined | null;
|
|
20766
|
+
};
|
|
20767
|
+
};
|
|
20768
|
+
export type RankReplaySessionCollectionMutationVariables = Exact<{
|
|
20769
|
+
id: Scalars["ID"]["input"];
|
|
20770
|
+
input: RankInput;
|
|
20771
|
+
}>;
|
|
20772
|
+
export type RankReplaySessionCollectionMutation = {
|
|
20773
|
+
rankReplaySessionCollection: {
|
|
20774
|
+
collection?: {
|
|
20775
|
+
__typename: "ReplaySessionCollection";
|
|
20776
|
+
id: string;
|
|
20777
|
+
name: string;
|
|
20778
|
+
rank: string;
|
|
20779
|
+
sessions: Array<{
|
|
20780
|
+
__typename: "ReplaySession";
|
|
20781
|
+
id: string;
|
|
20782
|
+
name: string;
|
|
20783
|
+
rank: string;
|
|
20784
|
+
activeEntry?: {
|
|
20785
|
+
__typename: "ReplayEntry";
|
|
20786
|
+
id: string;
|
|
20787
|
+
error?: string | undefined | null;
|
|
20788
|
+
createdAt: Date;
|
|
20789
|
+
connection: {
|
|
20790
|
+
__typename: "ConnectionInfo";
|
|
20791
|
+
host: string;
|
|
20792
|
+
port: number;
|
|
20793
|
+
isTLS: boolean;
|
|
20794
|
+
SNI?: string | undefined | null;
|
|
20795
|
+
};
|
|
20796
|
+
session: {
|
|
20797
|
+
id: string;
|
|
20798
|
+
};
|
|
20799
|
+
request?: {
|
|
20800
|
+
__typename: "Request";
|
|
20801
|
+
id: string;
|
|
20802
|
+
host: string;
|
|
20803
|
+
port: number;
|
|
20804
|
+
path: string;
|
|
20805
|
+
query: string;
|
|
20806
|
+
method: string;
|
|
20807
|
+
edited: boolean;
|
|
20808
|
+
isTls: boolean;
|
|
20809
|
+
sni?: string | undefined | null;
|
|
20810
|
+
length: number;
|
|
20811
|
+
alteration: Alteration;
|
|
20812
|
+
fileExtension?: string | undefined | null;
|
|
20813
|
+
source: Source;
|
|
20814
|
+
createdAt: Date;
|
|
20815
|
+
metadata: {
|
|
20816
|
+
__typename: "RequestMetadata";
|
|
20817
|
+
id: string;
|
|
20818
|
+
color?: string | undefined | null;
|
|
20819
|
+
};
|
|
20820
|
+
response?: {
|
|
20821
|
+
__typename: "Response";
|
|
20822
|
+
id: string;
|
|
20823
|
+
statusCode: number;
|
|
20824
|
+
roundtripTime: number;
|
|
20825
|
+
length: number;
|
|
20826
|
+
createdAt: Date;
|
|
20827
|
+
alteration: Alteration;
|
|
20828
|
+
edited: boolean;
|
|
20829
|
+
} | undefined | null;
|
|
20830
|
+
stream?: {
|
|
20831
|
+
id: string;
|
|
20832
|
+
} | undefined | null;
|
|
20833
|
+
} | undefined | null;
|
|
20834
|
+
} | undefined | null;
|
|
20835
|
+
collection: {
|
|
20836
|
+
id: string;
|
|
20837
|
+
};
|
|
20838
|
+
entries: {
|
|
20839
|
+
nodes: Array<{
|
|
20840
|
+
__typename: "ReplayEntry";
|
|
20841
|
+
id: string;
|
|
20842
|
+
error?: string | undefined | null;
|
|
20843
|
+
createdAt: Date;
|
|
20844
|
+
connection: {
|
|
20845
|
+
__typename: "ConnectionInfo";
|
|
20846
|
+
host: string;
|
|
20847
|
+
port: number;
|
|
20848
|
+
isTLS: boolean;
|
|
20849
|
+
SNI?: string | undefined | null;
|
|
20850
|
+
};
|
|
20851
|
+
session: {
|
|
20852
|
+
id: string;
|
|
20853
|
+
};
|
|
20854
|
+
request?: {
|
|
20855
|
+
__typename: "Request";
|
|
20856
|
+
id: string;
|
|
20857
|
+
host: string;
|
|
20858
|
+
port: number;
|
|
20859
|
+
path: string;
|
|
20860
|
+
query: string;
|
|
20861
|
+
method: string;
|
|
20862
|
+
edited: boolean;
|
|
20863
|
+
isTls: boolean;
|
|
20864
|
+
sni?: string | undefined | null;
|
|
20865
|
+
length: number;
|
|
20866
|
+
alteration: Alteration;
|
|
20867
|
+
fileExtension?: string | undefined | null;
|
|
20868
|
+
source: Source;
|
|
20869
|
+
createdAt: Date;
|
|
20870
|
+
metadata: {
|
|
20871
|
+
__typename: "RequestMetadata";
|
|
20872
|
+
id: string;
|
|
20873
|
+
color?: string | undefined | null;
|
|
20874
|
+
};
|
|
20875
|
+
response?: {
|
|
20876
|
+
__typename: "Response";
|
|
20877
|
+
id: string;
|
|
20878
|
+
statusCode: number;
|
|
20879
|
+
roundtripTime: number;
|
|
20880
|
+
length: number;
|
|
20881
|
+
createdAt: Date;
|
|
20882
|
+
alteration: Alteration;
|
|
20883
|
+
edited: boolean;
|
|
20884
|
+
} | undefined | null;
|
|
20885
|
+
stream?: {
|
|
20886
|
+
id: string;
|
|
20887
|
+
} | undefined | null;
|
|
20888
|
+
} | undefined | null;
|
|
20889
|
+
}>;
|
|
20890
|
+
};
|
|
20891
|
+
}>;
|
|
20892
|
+
} | undefined | null;
|
|
20893
|
+
error?: {
|
|
20894
|
+
__typename: "OtherUserError";
|
|
20895
|
+
code: string;
|
|
20896
|
+
} | {
|
|
20897
|
+
__typename: "RankUserError";
|
|
20898
|
+
reason: RankErrorReason;
|
|
20899
|
+
code: string;
|
|
20900
|
+
} | {
|
|
20901
|
+
__typename: "UnknownIdUserError";
|
|
20902
|
+
id: string;
|
|
20903
|
+
code: string;
|
|
20904
|
+
} | undefined | null;
|
|
20905
|
+
};
|
|
20906
|
+
};
|
|
20531
20907
|
export type CreatedReplaySessionSubscriptionVariables = Exact<{
|
|
20532
20908
|
[key: string]: never;
|
|
20533
20909
|
}>;
|
|
@@ -20538,6 +20914,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
20538
20914
|
__typename: "ReplaySession";
|
|
20539
20915
|
id: string;
|
|
20540
20916
|
name: string;
|
|
20917
|
+
rank: string;
|
|
20541
20918
|
activeEntry?: {
|
|
20542
20919
|
__typename: "ReplayEntry";
|
|
20543
20920
|
id: string;
|
|
@@ -20660,6 +21037,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
20660
21037
|
__typename: "ReplaySession";
|
|
20661
21038
|
id: string;
|
|
20662
21039
|
name: string;
|
|
21040
|
+
rank: string;
|
|
20663
21041
|
activeEntry?: {
|
|
20664
21042
|
__typename: "ReplayEntry";
|
|
20665
21043
|
id: string;
|
|
@@ -20789,10 +21167,12 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
20789
21167
|
__typename: "ReplaySessionCollection";
|
|
20790
21168
|
id: string;
|
|
20791
21169
|
name: string;
|
|
21170
|
+
rank: string;
|
|
20792
21171
|
sessions: Array<{
|
|
20793
21172
|
__typename: "ReplaySession";
|
|
20794
21173
|
id: string;
|
|
20795
21174
|
name: string;
|
|
21175
|
+
rank: string;
|
|
20796
21176
|
activeEntry?: {
|
|
20797
21177
|
__typename: "ReplayEntry";
|
|
20798
21178
|
id: string;
|
|
@@ -20915,10 +21295,12 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
20915
21295
|
__typename: "ReplaySessionCollection";
|
|
20916
21296
|
id: string;
|
|
20917
21297
|
name: string;
|
|
21298
|
+
rank: string;
|
|
20918
21299
|
sessions: Array<{
|
|
20919
21300
|
__typename: "ReplaySession";
|
|
20920
21301
|
id: string;
|
|
20921
21302
|
name: string;
|
|
21303
|
+
rank: string;
|
|
20922
21304
|
activeEntry?: {
|
|
20923
21305
|
__typename: "ReplayEntry";
|
|
20924
21306
|
id: string;
|
|
@@ -22352,6 +22734,11 @@ export type StreamWsMessageEdgeMetaFragment = {
|
|
|
22352
22734
|
};
|
|
22353
22735
|
};
|
|
22354
22736
|
};
|
|
22737
|
+
export type DeleteStreamWsMessageTaskFullFragment = {
|
|
22738
|
+
__typename: "DeleteStreamWsMessageTask";
|
|
22739
|
+
createdAt: Date;
|
|
22740
|
+
id: string;
|
|
22741
|
+
};
|
|
22355
22742
|
export type WebsocketStreamsBeforeQueryVariables = Exact<{
|
|
22356
22743
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
22357
22744
|
last: Scalars["Int"]["input"];
|
|
@@ -22635,6 +23022,18 @@ export type WebsocketMessageEditQuery = {
|
|
|
22635
23022
|
createdAt: Date;
|
|
22636
23023
|
} | undefined | null;
|
|
22637
23024
|
};
|
|
23025
|
+
export type StartDeleteStreamWsMessageTaskMutationVariables = Exact<{
|
|
23026
|
+
input: StartDeleteStreamWsMessageTaskInput;
|
|
23027
|
+
}>;
|
|
23028
|
+
export type StartDeleteStreamWsMessageTaskMutation = {
|
|
23029
|
+
startDeleteStreamWsMessageTask: {
|
|
23030
|
+
task?: {
|
|
23031
|
+
__typename: "DeleteStreamWsMessageTask";
|
|
23032
|
+
createdAt: Date;
|
|
23033
|
+
id: string;
|
|
23034
|
+
} | undefined | null;
|
|
23035
|
+
};
|
|
23036
|
+
};
|
|
22638
23037
|
export type CreatedWsStreamSubscriptionVariables = Exact<{
|
|
22639
23038
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
22640
23039
|
order: StreamOrderInput;
|
|
@@ -22720,11 +23119,24 @@ export type UpdatedStreamWsMessageSubscription = {
|
|
|
22720
23119
|
};
|
|
22721
23120
|
};
|
|
22722
23121
|
};
|
|
23122
|
+
export type DeletedStreamWsMessagesSubscriptionVariables = Exact<{
|
|
23123
|
+
[key: string]: never;
|
|
23124
|
+
}>;
|
|
23125
|
+
export type DeletedStreamWsMessagesSubscription = {
|
|
23126
|
+
deletedStreamWsMessages: {
|
|
23127
|
+
deletedIds: Array<string>;
|
|
23128
|
+
};
|
|
23129
|
+
};
|
|
22723
23130
|
type TaskMeta_DataExportTask_Fragment = {
|
|
22724
23131
|
__typename: "DataExportTask";
|
|
22725
23132
|
id: string;
|
|
22726
23133
|
createdAt: Date;
|
|
22727
23134
|
};
|
|
23135
|
+
type TaskMeta_DeleteStreamWsMessageTask_Fragment = {
|
|
23136
|
+
__typename: "DeleteStreamWsMessageTask";
|
|
23137
|
+
id: string;
|
|
23138
|
+
createdAt: Date;
|
|
23139
|
+
};
|
|
22728
23140
|
type TaskMeta_ReplayTask_Fragment = {
|
|
22729
23141
|
__typename: "ReplayTask";
|
|
22730
23142
|
id: string;
|
|
@@ -22735,7 +23147,7 @@ type TaskMeta_WorkflowTask_Fragment = {
|
|
|
22735
23147
|
id: string;
|
|
22736
23148
|
createdAt: Date;
|
|
22737
23149
|
};
|
|
22738
|
-
export type TaskMetaFragment = TaskMeta_DataExportTask_Fragment | TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
23150
|
+
export type TaskMetaFragment = TaskMeta_DataExportTask_Fragment | TaskMeta_DeleteStreamWsMessageTask_Fragment | TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
22739
23151
|
export type GetTasksQueryVariables = Exact<{
|
|
22740
23152
|
[key: string]: never;
|
|
22741
23153
|
}>;
|
|
@@ -22759,6 +23171,10 @@ export type GetTasksQuery = {
|
|
|
22759
23171
|
error?: string | undefined | null;
|
|
22760
23172
|
createdAt: Date;
|
|
22761
23173
|
};
|
|
23174
|
+
} | {
|
|
23175
|
+
__typename: "DeleteStreamWsMessageTask";
|
|
23176
|
+
createdAt: Date;
|
|
23177
|
+
id: string;
|
|
22762
23178
|
} | {
|
|
22763
23179
|
__typename: "ReplayTask";
|
|
22764
23180
|
id: string;
|
|
@@ -22939,6 +23355,10 @@ export type StartedTaskSubscription = {
|
|
|
22939
23355
|
error?: string | undefined | null;
|
|
22940
23356
|
createdAt: Date;
|
|
22941
23357
|
};
|
|
23358
|
+
} | {
|
|
23359
|
+
__typename: "DeleteStreamWsMessageTask";
|
|
23360
|
+
createdAt: Date;
|
|
23361
|
+
id: string;
|
|
22942
23362
|
} | {
|
|
22943
23363
|
__typename: "ReplayTask";
|
|
22944
23364
|
id: string;
|
|
@@ -23104,6 +23524,10 @@ export type FinishedTaskSubscription = {
|
|
|
23104
23524
|
error?: string | undefined | null;
|
|
23105
23525
|
createdAt: Date;
|
|
23106
23526
|
};
|
|
23527
|
+
} | {
|
|
23528
|
+
__typename: "DeleteStreamWsMessageTask";
|
|
23529
|
+
createdAt: Date;
|
|
23530
|
+
id: string;
|
|
23107
23531
|
} | {
|
|
23108
23532
|
__typename: "ReplayTask";
|
|
23109
23533
|
id: string;
|
|
@@ -24580,6 +25004,7 @@ export declare const ProjectUserErrorFullFragmentDoc = "\n fragment projectUs
|
|
|
24580
25004
|
export declare const CertificateUserErrorFullFragmentDoc = "\n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n ";
|
|
24581
25005
|
export declare const NewerVersionUserErrorFullFragmentDoc = "\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n ";
|
|
24582
25006
|
export declare const AuthorizationUserErrorFullFragmentDoc = "\n fragment authorizationUserErrorFull on AuthorizationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
25007
|
+
export declare const RankUserErrorFullFragmentDoc = "\n fragment rankUserErrorFull on RankUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
24583
25008
|
export declare const DataExportStoredMetaFieldsFragmentDoc = "\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 ";
|
|
24584
25009
|
export declare const DataExportStoredMetaFragmentDoc = "\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n ";
|
|
24585
25010
|
export declare const DataExportStoredFullFieldsFragmentDoc = "\n fragment dataExportStoredFullFields on DataExportStored {\n ...dataExportStoredMeta\n fileDownloadUrl: downloadUri\n}\n ";
|
|
@@ -24665,8 +25090,8 @@ export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projec
|
|
|
24665
25090
|
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
24666
25091
|
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
24667
25092
|
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 ";
|
|
24668
|
-
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 ";
|
|
24669
|
-
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
25093
|
+
export declare const ReplaySessionMetaFragmentDoc = "\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n ";
|
|
25094
|
+
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n rank\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
24670
25095
|
export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
|
|
24671
25096
|
export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
24672
25097
|
export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
@@ -24690,6 +25115,7 @@ export declare const StreamMetaFragmentDoc = "\n fragment streamMeta on Strea
|
|
|
24690
25115
|
export declare const StreamEdgeMetaFragmentDoc = "\n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n ";
|
|
24691
25116
|
export declare const StreamWsMessageEditFullFragmentDoc = "\n fragment streamWsMessageEditFull on StreamWsMessageEdit {\n ...streamWsMessageEditMeta\n raw\n}\n ";
|
|
24692
25117
|
export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
25118
|
+
export declare const DeleteStreamWsMessageTaskFullFragmentDoc = "\n fragment deleteStreamWsMessageTaskFull on DeleteStreamWsMessageTask {\n __typename\n createdAt\n id\n}\n ";
|
|
24693
25119
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
24694
25120
|
export declare const UpstreamProxyHttpFullFragmentDoc = "\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 ";
|
|
24695
25121
|
export declare const UpstreamProxySocksFullFragmentDoc = "\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 ";
|
|
@@ -24845,6 +25271,9 @@ export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile
|
|
|
24845
25271
|
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 ";
|
|
24846
25272
|
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 ";
|
|
24847
25273
|
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 ";
|
|
25274
|
+
export declare const OnUploadedHostedFileDocument = "\n subscription onUploadedHostedFile {\n uploadedHostedFile {\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 ";
|
|
25275
|
+
export declare const OnDeletedHostedFileDocument = "\n subscription onDeletedHostedFile {\n deletedHostedFile {\n deletedHostedFileId\n }\n}\n ";
|
|
25276
|
+
export declare const OnUpdatedHostedFileDocument = "\n subscription onUpdatedHostedFile {\n updatedHostedFile {\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 ";
|
|
24848
25277
|
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 onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n}\n ";
|
|
24849
25278
|
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 ";
|
|
24850
25279
|
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 onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n}\n ";
|
|
@@ -24901,24 +25330,26 @@ export declare const CurrentProjectDocument = "\n query currentProject {\n c
|
|
|
24901
25330
|
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 ";
|
|
24902
25331
|
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 ";
|
|
24903
25332
|
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 ";
|
|
24904
|
-
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 ";
|
|
24905
|
-
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 ";
|
|
25333
|
+
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 rank\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 ";
|
|
25334
|
+
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 rank\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 ";
|
|
24906
25335
|
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 ";
|
|
24907
|
-
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 ";
|
|
24908
|
-
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 ";
|
|
24909
|
-
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 ";
|
|
25336
|
+
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 rank\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 ";
|
|
25337
|
+
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 rank\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 ";
|
|
25338
|
+
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 rank\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 ";
|
|
24910
25339
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
24911
|
-
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 ";
|
|
24912
|
-
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 ";
|
|
25340
|
+
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 rank\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 ";
|
|
25341
|
+
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 rank\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 ";
|
|
24913
25342
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
24914
|
-
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 ";
|
|
24915
|
-
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 ";
|
|
25343
|
+
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 rank\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 rank\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
25344
|
+
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 rank\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 ";
|
|
24916
25345
|
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 ";
|
|
24917
|
-
export declare const
|
|
24918
|
-
export declare const
|
|
25346
|
+
export declare const RankReplaySessionDocument = "\n mutation rankReplaySession($id: ID!, $input: RankInput!) {\n rankReplaySession(id: $id, input: $input) {\n session {\n ...replaySessionMeta\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on RankUserError {\n ...rankUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment rankUserErrorFull on RankUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
25347
|
+
export declare const RankReplaySessionCollectionDocument = "\n mutation rankReplaySessionCollection($id: ID!, $input: RankInput!) {\n rankReplaySessionCollection(id: $id, input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on RankUserError {\n ...rankUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n rank\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment rankUserErrorFull on RankUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
25348
|
+
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 rank\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 ";
|
|
25349
|
+
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 rank\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 ";
|
|
24919
25350
|
export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
|
|
24920
|
-
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 ";
|
|
24921
|
-
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 ";
|
|
25351
|
+
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 rank\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 ";
|
|
25352
|
+
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 rank\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n rank\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 ";
|
|
24922
25353
|
export declare const DeletedReplaySessionCollectionDocument = "\n subscription deletedReplaySessionCollection {\n deletedReplaySessionCollection {\n deletedCollectionId\n }\n}\n ";
|
|
24923
25354
|
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 ";
|
|
24924
25355
|
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 ";
|
|
@@ -24966,13 +25397,15 @@ export declare const WebsocketMessagesByOffsetDocument = "\n query websocketM
|
|
|
24966
25397
|
export declare const WebsocketMessageCountDocument = "\n query websocketMessageCount($streamId: ID!) {\n streamWsMessages(first: 0, streamId: $streamId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
24967
25398
|
export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...streamWsMessageMeta\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 ";
|
|
24968
25399
|
export declare const WebsocketMessageEditDocument = "\n query websocketMessageEdit($id: ID!) {\n streamWsMessageEdit(id: $id) {\n ...streamWsMessageEditFull\n }\n}\n \n fragment streamWsMessageEditFull on StreamWsMessageEdit {\n ...streamWsMessageEditMeta\n raw\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
25400
|
+
export declare const StartDeleteStreamWsMessageTaskDocument = "\n mutation startDeleteStreamWsMessageTask($input: StartDeleteStreamWsMessageTaskInput!) {\n startDeleteStreamWsMessageTask(input: $input) {\n task {\n ...deleteStreamWsMessageTaskFull\n }\n }\n}\n \n fragment deleteStreamWsMessageTaskFull on DeleteStreamWsMessageTask {\n __typename\n createdAt\n id\n}\n ";
|
|
24969
25401
|
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 ";
|
|
24970
25402
|
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 ";
|
|
24971
25403
|
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 ";
|
|
24972
|
-
export declare const
|
|
25404
|
+
export declare const DeletedStreamWsMessagesDocument = "\n subscription deletedStreamWsMessages {\n deletedStreamWsMessages {\n deletedIds\n }\n}\n ";
|
|
25405
|
+
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 ... on DeleteStreamWsMessageTask {\n ...deleteStreamWsMessageTaskFull\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 \n\n fragment deleteStreamWsMessageTaskFull on DeleteStreamWsMessageTask {\n __typename\n createdAt\n id\n}\n ";
|
|
24973
25406
|
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 ";
|
|
24974
|
-
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 ";
|
|
24975
|
-
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 ";
|
|
25407
|
+
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 ... on DeleteStreamWsMessageTask {\n ...deleteStreamWsMessageTaskFull\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 \n\n fragment deleteStreamWsMessageTaskFull on DeleteStreamWsMessageTask {\n __typename\n createdAt\n id\n}\n ";
|
|
25408
|
+
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 ... on DeleteStreamWsMessageTask {\n ...deleteStreamWsMessageTaskFull\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 \n\n fragment deleteStreamWsMessageTaskFull on DeleteStreamWsMessageTask {\n __typename\n createdAt\n id\n}\n ";
|
|
24976
25409
|
export declare const UpstreamsDocument = "\n query upstreams {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n upstreamPlugins {\n ...upstreamPluginFull\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 \n\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
|
|
24977
25410
|
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 ";
|
|
24978
25411
|
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 ";
|
|
@@ -25167,6 +25600,9 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
25167
25600
|
renameHostedFile(variables: RenameHostedFileMutationVariables, options?: C): Promise<RenameHostedFileMutation>;
|
|
25168
25601
|
uploadHostedFile(variables: UploadHostedFileMutationVariables, options?: C): Promise<UploadHostedFileMutation>;
|
|
25169
25602
|
hostedFiles(variables?: HostedFilesQueryVariables, options?: C): Promise<HostedFilesQuery>;
|
|
25603
|
+
onUploadedHostedFile(variables?: OnUploadedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnUploadedHostedFileSubscription>;
|
|
25604
|
+
onDeletedHostedFile(variables?: OnDeletedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnDeletedHostedFileSubscription>;
|
|
25605
|
+
onUpdatedHostedFile(variables?: OnUpdatedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnUpdatedHostedFileSubscription>;
|
|
25170
25606
|
setInstanceSettings(variables: SetInstanceSettingsMutationVariables, options?: C): Promise<SetInstanceSettingsMutation>;
|
|
25171
25607
|
testAiProvider(variables: TestAiProviderMutationVariables, options?: C): Promise<TestAiProviderMutation>;
|
|
25172
25608
|
instanceSettings(variables?: InstanceSettingsQueryVariables, options?: C): Promise<InstanceSettingsQuery>;
|
|
@@ -25236,6 +25672,8 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
25236
25672
|
createReplaySession(variables: CreateReplaySessionMutationVariables, options?: C): Promise<CreateReplaySessionMutation>;
|
|
25237
25673
|
moveReplaySession(variables: MoveReplaySessionMutationVariables, options?: C): Promise<MoveReplaySessionMutation>;
|
|
25238
25674
|
startReplayTask(variables: StartReplayTaskMutationVariables, options?: C): Promise<StartReplayTaskMutation>;
|
|
25675
|
+
rankReplaySession(variables: RankReplaySessionMutationVariables, options?: C): Promise<RankReplaySessionMutation>;
|
|
25676
|
+
rankReplaySessionCollection(variables: RankReplaySessionCollectionMutationVariables, options?: C): Promise<RankReplaySessionCollectionMutation>;
|
|
25239
25677
|
createdReplaySession(variables?: CreatedReplaySessionSubscriptionVariables, options?: C): AsyncIterable<CreatedReplaySessionSubscription>;
|
|
25240
25678
|
updatedReplaySession(variables?: UpdatedReplaySessionSubscriptionVariables, options?: C): AsyncIterable<UpdatedReplaySessionSubscription>;
|
|
25241
25679
|
deletedReplaySession(variables?: DeletedReplaySessionSubscriptionVariables, options?: C): AsyncIterable<DeletedReplaySessionSubscription>;
|
|
@@ -25288,9 +25726,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
25288
25726
|
websocketMessageCount(variables: WebsocketMessageCountQueryVariables, options?: C): Promise<WebsocketMessageCountQuery>;
|
|
25289
25727
|
websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
|
|
25290
25728
|
websocketMessageEdit(variables: WebsocketMessageEditQueryVariables, options?: C): Promise<WebsocketMessageEditQuery>;
|
|
25729
|
+
startDeleteStreamWsMessageTask(variables: StartDeleteStreamWsMessageTaskMutationVariables, options?: C): Promise<StartDeleteStreamWsMessageTaskMutation>;
|
|
25291
25730
|
createdWsStream(variables: CreatedWsStreamSubscriptionVariables, options?: C): AsyncIterable<CreatedWsStreamSubscription>;
|
|
25292
25731
|
createdStreamWsMessage(variables: CreatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedStreamWsMessageSubscription>;
|
|
25293
25732
|
updatedStreamWsMessage(variables: UpdatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<UpdatedStreamWsMessageSubscription>;
|
|
25733
|
+
deletedStreamWsMessages(variables?: DeletedStreamWsMessagesSubscriptionVariables, options?: C): AsyncIterable<DeletedStreamWsMessagesSubscription>;
|
|
25294
25734
|
getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
|
|
25295
25735
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
25296
25736
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type ListenerHandle } from "src/types/utils";
|
|
1
2
|
import { type HostedFile } from "../types/files";
|
|
2
3
|
/**
|
|
3
4
|
* SDK for interacting with the Files page.
|
|
@@ -28,4 +29,46 @@ export type FilesSDK = {
|
|
|
28
29
|
* @returns The deleted file.
|
|
29
30
|
*/
|
|
30
31
|
delete: (id: string) => Promise<void>;
|
|
32
|
+
/**
|
|
33
|
+
* Listen for uploaded hosted files.
|
|
34
|
+
* @param callback The callback function that receives the hosted file.
|
|
35
|
+
* @returns A handle object with a `stop` method to stop listening.
|
|
36
|
+
* @example
|
|
37
|
+
*
|
|
38
|
+
* const handle = sdk.files.onUploadedHostedFile((hostedFile) => {
|
|
39
|
+
* console.log(`Hosted file uploaded:`, hostedFile);
|
|
40
|
+
* });
|
|
41
|
+
*
|
|
42
|
+
* // Later, stop listening
|
|
43
|
+
* handle.stop();
|
|
44
|
+
*/
|
|
45
|
+
onUploadedHostedFile: (callback: (event: HostedFile) => void) => ListenerHandle;
|
|
46
|
+
/**
|
|
47
|
+
* Listen for updated hosted files.
|
|
48
|
+
* @param callback The callback function that receives the hosted file.
|
|
49
|
+
* @returns A handle object with a `stop` method to stop listening.
|
|
50
|
+
* @example
|
|
51
|
+
*
|
|
52
|
+
* const handle = sdk.files.onUpdatedHostedFile((hostedFile) => {
|
|
53
|
+
* console.log(`Hosted file updated:`, hostedFile);
|
|
54
|
+
* });
|
|
55
|
+
*
|
|
56
|
+
* // Later, stop listening
|
|
57
|
+
* handle.stop();
|
|
58
|
+
*/
|
|
59
|
+
onUpdatedHostedFile: (callback: (event: HostedFile) => void) => ListenerHandle;
|
|
60
|
+
/**
|
|
61
|
+
* Listen for deleted hosted files.
|
|
62
|
+
* @param callback The callback function that receives the file ID.
|
|
63
|
+
* @returns A handle object with a `stop` method to stop listening.
|
|
64
|
+
* @example
|
|
65
|
+
*
|
|
66
|
+
* const handle = sdk.files.onDeletedHostedFile((fileId) => {
|
|
67
|
+
* console.log(`Hosted file deleted:`, fileId);
|
|
68
|
+
* });
|
|
69
|
+
*
|
|
70
|
+
* // Later, stop listening
|
|
71
|
+
* handle.stop();
|
|
72
|
+
*/
|
|
73
|
+
onDeletedHostedFile: (callback: (fileId: string) => void) => ListenerHandle;
|
|
31
74
|
};
|