@caido/sdk-frontend 0.47.2-beta.0 → 0.47.2-beta.10
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.
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
type JSONPrimitive = string | number | boolean | null | undefined;
|
|
2
|
-
type JSONValue = JSONPrimitive | JSONValue[] | {
|
|
3
|
-
[key: string]: JSONValue;
|
|
4
|
-
};
|
|
5
1
|
export type Maybe<T> = T | undefined | null;
|
|
6
2
|
export type InputMaybe<T> = T | undefined | null;
|
|
7
3
|
export type Exact<T extends {
|
|
@@ -83,8 +79,8 @@ export type Scalars = {
|
|
|
83
79
|
};
|
|
84
80
|
/** A scalar that can represent any JSON value. */
|
|
85
81
|
JSON: {
|
|
86
|
-
input:
|
|
87
|
-
output:
|
|
82
|
+
input: unknown;
|
|
83
|
+
output: unknown;
|
|
88
84
|
};
|
|
89
85
|
JsonObject: {
|
|
90
86
|
input: Record<string, unknown>;
|
|
@@ -226,6 +222,9 @@ export declare const AuthenticationScope: {
|
|
|
226
222
|
readonly ProfileRead: "PROFILE_READ";
|
|
227
223
|
};
|
|
228
224
|
export type AuthenticationScope = (typeof AuthenticationScope)[keyof typeof AuthenticationScope];
|
|
225
|
+
export type AuthenticationState = {
|
|
226
|
+
allowGuests: Scalars["Boolean"]["output"];
|
|
227
|
+
};
|
|
229
228
|
export type AuthenticationToken = {
|
|
230
229
|
accessToken: Scalars["Token"]["output"];
|
|
231
230
|
expiresAt: Scalars["DateTime"]["output"];
|
|
@@ -346,9 +345,13 @@ export type AutomateNullPayloadInput = {
|
|
|
346
345
|
quantity: Scalars["Int"]["input"];
|
|
347
346
|
};
|
|
348
347
|
export type AutomateNumberPayload = {
|
|
348
|
+
increments: Scalars["Int"]["output"];
|
|
349
|
+
minLength: Scalars["Int"]["output"];
|
|
349
350
|
range: Range;
|
|
350
351
|
};
|
|
351
352
|
export type AutomateNumberPayloadInput = {
|
|
353
|
+
increments: Scalars["Int"]["input"];
|
|
354
|
+
minLength: Scalars["Int"]["input"];
|
|
352
355
|
range: RangeInput;
|
|
353
356
|
};
|
|
354
357
|
export type AutomatePayload = {
|
|
@@ -638,11 +641,21 @@ export type CertificateUserError = UserError & {
|
|
|
638
641
|
code: Scalars["String"]["output"];
|
|
639
642
|
reason: CertificateErrorReason;
|
|
640
643
|
};
|
|
644
|
+
export type ClearSitemapEntriesPayload = {
|
|
645
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
646
|
+
};
|
|
641
647
|
export declare const CloudErrorReason: {
|
|
642
648
|
readonly Unavailable: "UNAVAILABLE";
|
|
643
649
|
readonly Unexpected: "UNEXPECTED";
|
|
644
650
|
};
|
|
645
651
|
export type CloudErrorReason = (typeof CloudErrorReason)[keyof typeof CloudErrorReason];
|
|
652
|
+
export type CloudUser = {
|
|
653
|
+
assistantUsage: AssistantUsage;
|
|
654
|
+
id: Scalars["ID"]["output"];
|
|
655
|
+
plugins: Array<PluginFrontend>;
|
|
656
|
+
profile: UserProfile;
|
|
657
|
+
settings?: Maybe<UserSettings>;
|
|
658
|
+
};
|
|
646
659
|
export type CloudUserError = UserError & {
|
|
647
660
|
code: Scalars["String"]["output"];
|
|
648
661
|
reason: CloudErrorReason;
|
|
@@ -732,6 +745,7 @@ export type CreateFindingPayload = {
|
|
|
732
745
|
};
|
|
733
746
|
export type CreateProjectInput = {
|
|
734
747
|
name: Scalars["String"]["input"];
|
|
748
|
+
temporary: Scalars["Boolean"]["input"];
|
|
735
749
|
};
|
|
736
750
|
export type CreateProjectPayload = {
|
|
737
751
|
error?: Maybe<CreateProjectPayloadError>;
|
|
@@ -931,6 +945,7 @@ export type CreatedSitemapEntryPayloadRequestEdgeArgs = {
|
|
|
931
945
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
932
946
|
};
|
|
933
947
|
export type CreatedStreamPayload = {
|
|
948
|
+
requestIds: Array<Scalars["ID"]["output"]>;
|
|
934
949
|
snapshot: Scalars["Snapshot"]["output"];
|
|
935
950
|
streamEdge: StreamEdge;
|
|
936
951
|
};
|
|
@@ -1115,6 +1130,11 @@ export type DeleteReplaySessionsPayload = {
|
|
|
1115
1130
|
export type DeleteScopePayload = {
|
|
1116
1131
|
deletedId: Scalars["ID"]["output"];
|
|
1117
1132
|
};
|
|
1133
|
+
export type DeleteSitemapEntriesError = OtherUserError | UnknownIdUserError;
|
|
1134
|
+
export type DeleteSitemapEntriesPayload = {
|
|
1135
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1136
|
+
errors: Array<DeleteSitemapEntriesError>;
|
|
1137
|
+
};
|
|
1118
1138
|
export type DeleteTamperRuleCollectionPayload = {
|
|
1119
1139
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1120
1140
|
};
|
|
@@ -1209,6 +1229,10 @@ export type DeletedScopePayload = {
|
|
|
1209
1229
|
deletedScopeId: Scalars["ID"]["output"];
|
|
1210
1230
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1211
1231
|
};
|
|
1232
|
+
export type DeletedSitemapEntriesPayload = {
|
|
1233
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1234
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
1235
|
+
};
|
|
1212
1236
|
export type DeletedTamperRuleCollectionPayload = {
|
|
1213
1237
|
deletedCollectionId: Scalars["ID"]["output"];
|
|
1214
1238
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1347,9 +1371,15 @@ export type FinishedTaskPayload = {
|
|
|
1347
1371
|
export type ForwardInterceptMessageInput = {
|
|
1348
1372
|
request: ForwardInterceptRequestMessageInput;
|
|
1349
1373
|
response?: never;
|
|
1374
|
+
streamWs?: never;
|
|
1350
1375
|
} | {
|
|
1351
1376
|
request?: never;
|
|
1352
1377
|
response: ForwardInterceptResponseMessageInput;
|
|
1378
|
+
streamWs?: never;
|
|
1379
|
+
} | {
|
|
1380
|
+
request?: never;
|
|
1381
|
+
response?: never;
|
|
1382
|
+
streamWs: ForwardInterceptStreamWsMessageInput;
|
|
1353
1383
|
};
|
|
1354
1384
|
export type ForwardInterceptMessagePayload = {
|
|
1355
1385
|
forwardedId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -1362,6 +1392,9 @@ export type ForwardInterceptResponseMessageInput = {
|
|
|
1362
1392
|
updateContentLength: Scalars["Boolean"]["input"];
|
|
1363
1393
|
updateRaw: Scalars["Blob"]["input"];
|
|
1364
1394
|
};
|
|
1395
|
+
export type ForwardInterceptStreamWsMessageInput = {
|
|
1396
|
+
updateRaw: Scalars["Blob"]["input"];
|
|
1397
|
+
};
|
|
1365
1398
|
export type GlobalConfig = {
|
|
1366
1399
|
address: Scalars["String"]["output"];
|
|
1367
1400
|
onboarding: OnboardingState;
|
|
@@ -1376,6 +1409,16 @@ export type GlobalizeWorkflowPayload = {
|
|
|
1376
1409
|
error?: Maybe<GlobalizeWorkflowError>;
|
|
1377
1410
|
workflow?: Maybe<Workflow>;
|
|
1378
1411
|
};
|
|
1412
|
+
export type GuestAuthenticationError = OtherUserError | PermissionDeniedUserError;
|
|
1413
|
+
export type GuestAuthenticationPayload = {
|
|
1414
|
+
error?: Maybe<GuestAuthenticationError>;
|
|
1415
|
+
token?: Maybe<AuthenticationToken>;
|
|
1416
|
+
};
|
|
1417
|
+
export type GuestUser = {
|
|
1418
|
+
id: Scalars["ID"]["output"];
|
|
1419
|
+
plugins: Array<PluginFrontend>;
|
|
1420
|
+
settings?: Maybe<UserSettings>;
|
|
1421
|
+
};
|
|
1379
1422
|
export type HostedFile = {
|
|
1380
1423
|
createdAt: Scalars["DateTime"]["output"];
|
|
1381
1424
|
id: Scalars["ID"]["output"];
|
|
@@ -1445,6 +1488,7 @@ export type InterceptEntryOrderInput = {
|
|
|
1445
1488
|
export declare const InterceptKind: {
|
|
1446
1489
|
readonly Request: "REQUEST";
|
|
1447
1490
|
readonly Response: "RESPONSE";
|
|
1491
|
+
readonly StreamWs: "STREAM_WS";
|
|
1448
1492
|
};
|
|
1449
1493
|
export type InterceptKind = (typeof InterceptKind)[keyof typeof InterceptKind];
|
|
1450
1494
|
export type InterceptMessage = {
|
|
@@ -1471,11 +1515,13 @@ export type InterceptOptions = {
|
|
|
1471
1515
|
request: InterceptRequestOptions;
|
|
1472
1516
|
response: InterceptResponseOptions;
|
|
1473
1517
|
scope?: Maybe<InterceptScopeOptions>;
|
|
1518
|
+
streamWs: InterceptStreamWsOptions;
|
|
1474
1519
|
};
|
|
1475
1520
|
export type InterceptOptionsInput = {
|
|
1476
1521
|
request: InterceptRequestOptionsInput;
|
|
1477
1522
|
response: InterceptResponseOptionsInput;
|
|
1478
1523
|
scope?: InputMaybe<InterceptScopeOptionsInput>;
|
|
1524
|
+
streamWs: InterceptStreamWsOptionsInput;
|
|
1479
1525
|
};
|
|
1480
1526
|
export type InterceptRequestMessage = InterceptMessage & {
|
|
1481
1527
|
id: Scalars["ID"]["output"];
|
|
@@ -1513,6 +1559,16 @@ export declare const InterceptStatus: {
|
|
|
1513
1559
|
readonly Running: "RUNNING";
|
|
1514
1560
|
};
|
|
1515
1561
|
export type InterceptStatus = (typeof InterceptStatus)[keyof typeof InterceptStatus];
|
|
1562
|
+
export type InterceptStreamWsMessage = InterceptMessage & {
|
|
1563
|
+
id: Scalars["ID"]["output"];
|
|
1564
|
+
message: StreamWsMessage;
|
|
1565
|
+
};
|
|
1566
|
+
export type InterceptStreamWsOptions = {
|
|
1567
|
+
enabled: Scalars["Boolean"]["output"];
|
|
1568
|
+
};
|
|
1569
|
+
export type InterceptStreamWsOptionsInput = {
|
|
1570
|
+
enabled: Scalars["Boolean"]["input"];
|
|
1571
|
+
};
|
|
1516
1572
|
export type InternalUserError = UserError & {
|
|
1517
1573
|
code: Scalars["String"]["output"];
|
|
1518
1574
|
message: Scalars["String"]["output"];
|
|
@@ -1565,6 +1621,7 @@ export type MutationRoot = {
|
|
|
1565
1621
|
cancelDataExportTask: CancelDataExportTaskPayload;
|
|
1566
1622
|
cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
|
|
1567
1623
|
cancelTask: CancelTaskPayload;
|
|
1624
|
+
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
1568
1625
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
1569
1626
|
createAutomateSession: CreateAutomateSessionPayload;
|
|
1570
1627
|
createBackup: CreateBackupPayload;
|
|
@@ -1601,6 +1658,7 @@ export type MutationRoot = {
|
|
|
1601
1658
|
deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
|
|
1602
1659
|
deleteReplaySessions: DeleteReplaySessionsPayload;
|
|
1603
1660
|
deleteScope: DeleteScopePayload;
|
|
1661
|
+
deleteSitemapEntries: DeleteSitemapEntriesPayload;
|
|
1604
1662
|
deleteTamperRule: DeleteTamperRulePayload;
|
|
1605
1663
|
deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
|
|
1606
1664
|
deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
|
|
@@ -1614,11 +1672,13 @@ export type MutationRoot = {
|
|
|
1614
1672
|
installBrowser: InstallBrowserPayload;
|
|
1615
1673
|
installPluginPackage: InstallPluginPackagePayload;
|
|
1616
1674
|
localizeWorkflow: LocalizeWorkflowPayload;
|
|
1675
|
+
loginAsGuest: GuestAuthenticationPayload;
|
|
1617
1676
|
logout: LogoutPayload;
|
|
1618
1677
|
moveReplaySession: MoveReplaySessionPayload;
|
|
1619
1678
|
moveTamperRule: MoveTamperRulePayload;
|
|
1620
1679
|
pauseAutomateTask: PauseAutomateTaskPayload;
|
|
1621
1680
|
pauseIntercept: PauseInterceptPayload;
|
|
1681
|
+
persistProject: PersistProjectPayload;
|
|
1622
1682
|
rankDnsRewrite: RankDnsRewritePayload;
|
|
1623
1683
|
rankTamperRule: RankTamperRulePayload;
|
|
1624
1684
|
rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
|
|
@@ -1809,6 +1869,9 @@ export type MutationRootDeleteReplaySessionsArgs = {
|
|
|
1809
1869
|
export type MutationRootDeleteScopeArgs = {
|
|
1810
1870
|
id: Scalars["ID"]["input"];
|
|
1811
1871
|
};
|
|
1872
|
+
export type MutationRootDeleteSitemapEntriesArgs = {
|
|
1873
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1874
|
+
};
|
|
1812
1875
|
export type MutationRootDeleteTamperRuleArgs = {
|
|
1813
1876
|
id: Scalars["ID"]["input"];
|
|
1814
1877
|
};
|
|
@@ -1857,6 +1920,9 @@ export type MutationRootMoveTamperRuleArgs = {
|
|
|
1857
1920
|
export type MutationRootPauseAutomateTaskArgs = {
|
|
1858
1921
|
id: Scalars["ID"]["input"];
|
|
1859
1922
|
};
|
|
1923
|
+
export type MutationRootPersistProjectArgs = {
|
|
1924
|
+
id: Scalars["ID"]["input"];
|
|
1925
|
+
};
|
|
1860
1926
|
export type MutationRootRankDnsRewriteArgs = {
|
|
1861
1927
|
id: Scalars["ID"]["input"];
|
|
1862
1928
|
input: RankInput;
|
|
@@ -2126,12 +2192,18 @@ export type PauseInterceptPayload = {
|
|
|
2126
2192
|
};
|
|
2127
2193
|
export declare const PermissionDeniedErrorReason: {
|
|
2128
2194
|
readonly Entitlement: "ENTITLEMENT";
|
|
2195
|
+
readonly GuestUser: "GUEST_USER";
|
|
2129
2196
|
};
|
|
2130
2197
|
export type PermissionDeniedErrorReason = (typeof PermissionDeniedErrorReason)[keyof typeof PermissionDeniedErrorReason];
|
|
2131
2198
|
export type PermissionDeniedUserError = UserError & {
|
|
2132
2199
|
code: Scalars["String"]["output"];
|
|
2133
2200
|
reason: PermissionDeniedErrorReason;
|
|
2134
2201
|
};
|
|
2202
|
+
export type PersistProjectPayload = {
|
|
2203
|
+
error?: Maybe<PersistProjectPayloadError>;
|
|
2204
|
+
project?: Maybe<Project>;
|
|
2205
|
+
};
|
|
2206
|
+
export type PersistProjectPayloadError = OtherUserError | PermissionDeniedUserError | UnknownIdUserError;
|
|
2135
2207
|
export type Plugin = {
|
|
2136
2208
|
enabled: Scalars["Boolean"]["output"];
|
|
2137
2209
|
id: Scalars["ID"]["output"];
|
|
@@ -2142,7 +2214,7 @@ export type Plugin = {
|
|
|
2142
2214
|
export type PluginAuthor = {
|
|
2143
2215
|
email?: Maybe<Scalars["String"]["output"]>;
|
|
2144
2216
|
name?: Maybe<Scalars["String"]["output"]>;
|
|
2145
|
-
url?: Maybe<Scalars["
|
|
2217
|
+
url?: Maybe<Scalars["String"]["output"]>;
|
|
2146
2218
|
};
|
|
2147
2219
|
export type PluginBackend = Plugin & {
|
|
2148
2220
|
enabled: Scalars["Boolean"]["output"];
|
|
@@ -2222,6 +2294,7 @@ export type Project = {
|
|
|
2222
2294
|
path: Scalars["String"]["output"];
|
|
2223
2295
|
size: Scalars["Int"]["output"];
|
|
2224
2296
|
status: ProjectStatus;
|
|
2297
|
+
temporary: Scalars["Boolean"]["output"];
|
|
2225
2298
|
updatedAt: Scalars["DateTime"]["output"];
|
|
2226
2299
|
version: Scalars["String"]["output"];
|
|
2227
2300
|
};
|
|
@@ -2262,6 +2335,7 @@ export type QueryRoot = {
|
|
|
2262
2335
|
assistantModels: Array<AssistantModel>;
|
|
2263
2336
|
assistantSession?: Maybe<AssistantSession>;
|
|
2264
2337
|
assistantSessions: Array<AssistantSession>;
|
|
2338
|
+
authenticationState: AuthenticationState;
|
|
2265
2339
|
automateEntry?: Maybe<AutomateEntry>;
|
|
2266
2340
|
automateSession?: Maybe<AutomateSession>;
|
|
2267
2341
|
automateSessions: AutomateSessionConnection;
|
|
@@ -2313,6 +2387,7 @@ export type QueryRoot = {
|
|
|
2313
2387
|
store: Store;
|
|
2314
2388
|
stream?: Maybe<Stream>;
|
|
2315
2389
|
streamWsMessage?: Maybe<StreamWsMessage>;
|
|
2390
|
+
streamWsMessageEdit?: Maybe<StreamWsMessageEdit>;
|
|
2316
2391
|
streamWsMessages: StreamWsMessageConnection;
|
|
2317
2392
|
streamWsMessagesByOffset: StreamWsMessageConnection;
|
|
2318
2393
|
streams: StreamConnection;
|
|
@@ -2463,6 +2538,9 @@ export type QueryRootStreamArgs = {
|
|
|
2463
2538
|
export type QueryRootStreamWsMessageArgs = {
|
|
2464
2539
|
id: Scalars["ID"]["input"];
|
|
2465
2540
|
};
|
|
2541
|
+
export type QueryRootStreamWsMessageEditArgs = {
|
|
2542
|
+
id: Scalars["ID"]["input"];
|
|
2543
|
+
};
|
|
2466
2544
|
export type QueryRootStreamWsMessagesArgs = {
|
|
2467
2545
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2468
2546
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -2585,7 +2663,7 @@ export type RenameProjectPayload = {
|
|
|
2585
2663
|
error?: Maybe<RenameProjectPayloadError>;
|
|
2586
2664
|
project?: Maybe<Project>;
|
|
2587
2665
|
};
|
|
2588
|
-
export type RenameProjectPayloadError = NameTakenUserError | OtherUserError;
|
|
2666
|
+
export type RenameProjectPayloadError = NameTakenUserError | OtherUserError | UnknownIdUserError;
|
|
2589
2667
|
export type RenameReplaySessionCollectionPayload = {
|
|
2590
2668
|
collection?: Maybe<ReplaySessionCollection>;
|
|
2591
2669
|
};
|
|
@@ -3181,15 +3259,10 @@ export declare const StreamProtocol: {
|
|
|
3181
3259
|
};
|
|
3182
3260
|
export type StreamProtocol = (typeof StreamProtocol)[keyof typeof StreamProtocol];
|
|
3183
3261
|
export type StreamWsMessage = {
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
direction: StreamMessageDirection;
|
|
3187
|
-
edited: Scalars["Boolean"]["output"];
|
|
3188
|
-
format: StreamWsMessageFormat;
|
|
3262
|
+
edits: Array<StreamWsMessageEditRef>;
|
|
3263
|
+
head: StreamWsMessageEdit;
|
|
3189
3264
|
id: Scalars["ID"]["output"];
|
|
3190
|
-
|
|
3191
|
-
raw: Scalars["Blob"]["output"];
|
|
3192
|
-
streamId: Scalars["ID"]["output"];
|
|
3265
|
+
stream: Stream;
|
|
3193
3266
|
};
|
|
3194
3267
|
export type StreamWsMessageConnection = {
|
|
3195
3268
|
count: Count;
|
|
@@ -3208,6 +3281,19 @@ export type StreamWsMessageEdge = {
|
|
|
3208
3281
|
/** The item at the end of the edge */
|
|
3209
3282
|
node: StreamWsMessage;
|
|
3210
3283
|
};
|
|
3284
|
+
export type StreamWsMessageEdit = {
|
|
3285
|
+
alteration: Alteration;
|
|
3286
|
+
createdAt: Scalars["Timestamp"]["output"];
|
|
3287
|
+
direction: StreamMessageDirection;
|
|
3288
|
+
format: StreamWsMessageFormat;
|
|
3289
|
+
id: Scalars["ID"]["output"];
|
|
3290
|
+
length: Scalars["Int"]["output"];
|
|
3291
|
+
raw: Scalars["Blob"]["output"];
|
|
3292
|
+
};
|
|
3293
|
+
export type StreamWsMessageEditRef = {
|
|
3294
|
+
alteration: Alteration;
|
|
3295
|
+
id: Scalars["ID"]["output"];
|
|
3296
|
+
};
|
|
3211
3297
|
export declare const StreamWsMessageFormat: {
|
|
3212
3298
|
readonly Binary: "BINARY";
|
|
3213
3299
|
readonly Text: "TEXT";
|
|
@@ -3277,6 +3363,7 @@ export type SubscriptionRoot = {
|
|
|
3277
3363
|
deletedReplaySession: DeletedReplaySessionPayload;
|
|
3278
3364
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
3279
3365
|
deletedScope: DeletedScopePayload;
|
|
3366
|
+
deletedSitemapEntry: DeletedSitemapEntriesPayload;
|
|
3280
3367
|
deletedTamperRule: DeletedTamperRulePayload;
|
|
3281
3368
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
|
|
3282
3369
|
deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
|
|
@@ -3318,6 +3405,7 @@ export type SubscriptionRoot = {
|
|
|
3318
3405
|
updatedRequestMetadata: UpdatedRequestMetadataPayload;
|
|
3319
3406
|
updatedScope: UpdatedScopePayload;
|
|
3320
3407
|
updatedSitemapEntry: UpdatedSitemapEntryPayload;
|
|
3408
|
+
updatedStreamWsMessage: UpdatedStreamWsMessagePayload;
|
|
3321
3409
|
updatedTamperRule: UpdatedTamperRulePayload;
|
|
3322
3410
|
updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload;
|
|
3323
3411
|
updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
|
|
@@ -4095,6 +4183,13 @@ export type UpdatedSitemapEntryPayload = {
|
|
|
4095
4183
|
export type UpdatedSitemapEntryPayloadRequestEdgeArgs = {
|
|
4096
4184
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
4097
4185
|
};
|
|
4186
|
+
export type UpdatedStreamWsMessagePayload = {
|
|
4187
|
+
messageEdge: StreamWsMessageEdge;
|
|
4188
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
4189
|
+
};
|
|
4190
|
+
export type UpdatedStreamWsMessagePayloadMessageEdgeArgs = {
|
|
4191
|
+
order?: InputMaybe<StreamWsMessageOrderInput>;
|
|
4192
|
+
};
|
|
4098
4193
|
export type UpdatedTamperRuleCollectionPayload = {
|
|
4099
4194
|
collectionEdge: TamperRuleCollectionEdge;
|
|
4100
4195
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -4162,13 +4257,7 @@ export type UpstreamProxySocks = {
|
|
|
4162
4257
|
includeDns: Scalars["Boolean"]["output"];
|
|
4163
4258
|
rank: Scalars["Rank"]["output"];
|
|
4164
4259
|
};
|
|
4165
|
-
export type User =
|
|
4166
|
-
assistantUsage: AssistantUsage;
|
|
4167
|
-
id: Scalars["ID"]["output"];
|
|
4168
|
-
plugins: Array<PluginFrontend>;
|
|
4169
|
-
profile: UserProfile;
|
|
4170
|
-
settings?: Maybe<UserSettings>;
|
|
4171
|
-
};
|
|
4260
|
+
export type User = CloudUser | GuestUser;
|
|
4172
4261
|
export type UserEntitlement = {
|
|
4173
4262
|
name: Scalars["String"]["output"];
|
|
4174
4263
|
};
|
|
@@ -4361,11 +4450,14 @@ export type AssistantCloudStateQueryVariables = Exact<{
|
|
|
4361
4450
|
}>;
|
|
4362
4451
|
export type AssistantCloudStateQuery = {
|
|
4363
4452
|
viewer: {
|
|
4453
|
+
__typename: "CloudUser";
|
|
4364
4454
|
id: string;
|
|
4365
4455
|
assistantUsage: {
|
|
4366
4456
|
__typename: "AssistantUsage";
|
|
4367
4457
|
balance: number;
|
|
4368
4458
|
};
|
|
4459
|
+
} | {
|
|
4460
|
+
__typename: "GuestUser";
|
|
4369
4461
|
};
|
|
4370
4462
|
assistantModels: Array<{
|
|
4371
4463
|
__typename: "AssistantModel";
|
|
@@ -4619,6 +4711,14 @@ export type AuthenticationTokenFullFragment = {
|
|
|
4619
4711
|
refreshToken?: string | undefined | null;
|
|
4620
4712
|
scopes: Array<AuthenticationScope>;
|
|
4621
4713
|
};
|
|
4714
|
+
export type AuthenticationStateQueryVariables = Exact<{
|
|
4715
|
+
[key: string]: never;
|
|
4716
|
+
}>;
|
|
4717
|
+
export type AuthenticationStateQuery = {
|
|
4718
|
+
authenticationState: {
|
|
4719
|
+
allowGuests: boolean;
|
|
4720
|
+
};
|
|
4721
|
+
};
|
|
4622
4722
|
export type StartAuthenticationFlowMutationVariables = Exact<{
|
|
4623
4723
|
[key: string]: never;
|
|
4624
4724
|
}>;
|
|
@@ -4691,6 +4791,28 @@ export type LogoutMutation = {
|
|
|
4691
4791
|
} | undefined | null;
|
|
4692
4792
|
};
|
|
4693
4793
|
};
|
|
4794
|
+
export type LoginAsGuestMutationVariables = Exact<{
|
|
4795
|
+
[key: string]: never;
|
|
4796
|
+
}>;
|
|
4797
|
+
export type LoginAsGuestMutation = {
|
|
4798
|
+
loginAsGuest: {
|
|
4799
|
+
token?: {
|
|
4800
|
+
__typename: "AuthenticationToken";
|
|
4801
|
+
accessToken: string;
|
|
4802
|
+
expiresAt: Date;
|
|
4803
|
+
refreshToken?: string | undefined | null;
|
|
4804
|
+
scopes: Array<AuthenticationScope>;
|
|
4805
|
+
} | undefined | null;
|
|
4806
|
+
error?: {
|
|
4807
|
+
__typename: "OtherUserError";
|
|
4808
|
+
code: string;
|
|
4809
|
+
} | {
|
|
4810
|
+
__typename: "PermissionDeniedUserError";
|
|
4811
|
+
code: string;
|
|
4812
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
4813
|
+
} | undefined | null;
|
|
4814
|
+
};
|
|
4815
|
+
};
|
|
4694
4816
|
export type CreatedAuthenticationTokenSubscriptionVariables = Exact<{
|
|
4695
4817
|
requestId: Scalars["ID"]["input"];
|
|
4696
4818
|
}>;
|
|
@@ -4768,6 +4890,8 @@ export type AutomateEntryFullFragment = {
|
|
|
4768
4890
|
quantity: number;
|
|
4769
4891
|
} | {
|
|
4770
4892
|
__typename: "AutomateNumberPayload";
|
|
4893
|
+
increments: number;
|
|
4894
|
+
minLength: number;
|
|
4771
4895
|
range: {
|
|
4772
4896
|
start: number;
|
|
4773
4897
|
end: number;
|
|
@@ -4976,6 +5100,8 @@ export type AutomateSessionFullFragment = {
|
|
|
4976
5100
|
quantity: number;
|
|
4977
5101
|
} | {
|
|
4978
5102
|
__typename: "AutomateNumberPayload";
|
|
5103
|
+
increments: number;
|
|
5104
|
+
minLength: number;
|
|
4979
5105
|
range: {
|
|
4980
5106
|
start: number;
|
|
4981
5107
|
end: number;
|
|
@@ -5044,6 +5170,8 @@ export type AutomateSettingsFullFragment = {
|
|
|
5044
5170
|
quantity: number;
|
|
5045
5171
|
} | {
|
|
5046
5172
|
__typename: "AutomateNumberPayload";
|
|
5173
|
+
increments: number;
|
|
5174
|
+
minLength: number;
|
|
5047
5175
|
range: {
|
|
5048
5176
|
start: number;
|
|
5049
5177
|
end: number;
|
|
@@ -5097,6 +5225,8 @@ export type AutomatePayloadFullFragment = {
|
|
|
5097
5225
|
quantity: number;
|
|
5098
5226
|
} | {
|
|
5099
5227
|
__typename: "AutomateNumberPayload";
|
|
5228
|
+
increments: number;
|
|
5229
|
+
minLength: number;
|
|
5100
5230
|
range: {
|
|
5101
5231
|
start: number;
|
|
5102
5232
|
end: number;
|
|
@@ -5177,6 +5307,8 @@ export type NullPayloadOptionsFullFragment = {
|
|
|
5177
5307
|
};
|
|
5178
5308
|
export type NumberPayloadOptionsFullFragment = {
|
|
5179
5309
|
__typename: "AutomateNumberPayload";
|
|
5310
|
+
increments: number;
|
|
5311
|
+
minLength: number;
|
|
5180
5312
|
range: {
|
|
5181
5313
|
start: number;
|
|
5182
5314
|
end: number;
|
|
@@ -5245,6 +5377,8 @@ export type AutomateEntryQuery = {
|
|
|
5245
5377
|
quantity: number;
|
|
5246
5378
|
} | {
|
|
5247
5379
|
__typename: "AutomateNumberPayload";
|
|
5380
|
+
increments: number;
|
|
5381
|
+
minLength: number;
|
|
5248
5382
|
range: {
|
|
5249
5383
|
start: number;
|
|
5250
5384
|
end: number;
|
|
@@ -5376,6 +5510,8 @@ export type AutomateEntryRequestsQuery = {
|
|
|
5376
5510
|
quantity: number;
|
|
5377
5511
|
} | {
|
|
5378
5512
|
__typename: "AutomateNumberPayload";
|
|
5513
|
+
increments: number;
|
|
5514
|
+
minLength: number;
|
|
5379
5515
|
range: {
|
|
5380
5516
|
start: number;
|
|
5381
5517
|
end: number;
|
|
@@ -5505,6 +5641,8 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
5505
5641
|
quantity: number;
|
|
5506
5642
|
} | {
|
|
5507
5643
|
__typename: "AutomateNumberPayload";
|
|
5644
|
+
increments: number;
|
|
5645
|
+
minLength: number;
|
|
5508
5646
|
range: {
|
|
5509
5647
|
start: number;
|
|
5510
5648
|
end: number;
|
|
@@ -5585,6 +5723,8 @@ export type AutomateEntryRequestsCountQuery = {
|
|
|
5585
5723
|
quantity: number;
|
|
5586
5724
|
} | {
|
|
5587
5725
|
__typename: "AutomateNumberPayload";
|
|
5726
|
+
increments: number;
|
|
5727
|
+
minLength: number;
|
|
5588
5728
|
range: {
|
|
5589
5729
|
start: number;
|
|
5590
5730
|
end: number;
|
|
@@ -5713,6 +5853,8 @@ export type AutomateSessionQuery = {
|
|
|
5713
5853
|
quantity: number;
|
|
5714
5854
|
} | {
|
|
5715
5855
|
__typename: "AutomateNumberPayload";
|
|
5856
|
+
increments: number;
|
|
5857
|
+
minLength: number;
|
|
5716
5858
|
range: {
|
|
5717
5859
|
start: number;
|
|
5718
5860
|
end: number;
|
|
@@ -5809,6 +5951,8 @@ export type RenameAutomateEntryMutation = {
|
|
|
5809
5951
|
quantity: number;
|
|
5810
5952
|
} | {
|
|
5811
5953
|
__typename: "AutomateNumberPayload";
|
|
5954
|
+
increments: number;
|
|
5955
|
+
minLength: number;
|
|
5812
5956
|
range: {
|
|
5813
5957
|
start: number;
|
|
5814
5958
|
end: number;
|
|
@@ -5891,6 +6035,8 @@ export type CreateAutomateSessionMutation = {
|
|
|
5891
6035
|
quantity: number;
|
|
5892
6036
|
} | {
|
|
5893
6037
|
__typename: "AutomateNumberPayload";
|
|
6038
|
+
increments: number;
|
|
6039
|
+
minLength: number;
|
|
5894
6040
|
range: {
|
|
5895
6041
|
start: number;
|
|
5896
6042
|
end: number;
|
|
@@ -5988,6 +6134,8 @@ export type RenameAutomateSessionMutation = {
|
|
|
5988
6134
|
quantity: number;
|
|
5989
6135
|
} | {
|
|
5990
6136
|
__typename: "AutomateNumberPayload";
|
|
6137
|
+
increments: number;
|
|
6138
|
+
minLength: number;
|
|
5991
6139
|
range: {
|
|
5992
6140
|
start: number;
|
|
5993
6141
|
end: number;
|
|
@@ -6077,6 +6225,8 @@ export type UpdateAutomateSessionMutation = {
|
|
|
6077
6225
|
quantity: number;
|
|
6078
6226
|
} | {
|
|
6079
6227
|
__typename: "AutomateNumberPayload";
|
|
6228
|
+
increments: number;
|
|
6229
|
+
minLength: number;
|
|
6080
6230
|
range: {
|
|
6081
6231
|
start: number;
|
|
6082
6232
|
end: number;
|
|
@@ -6494,6 +6644,7 @@ export type RestoreBackupTaskMetaFragment = {
|
|
|
6494
6644
|
path: string;
|
|
6495
6645
|
version: string;
|
|
6496
6646
|
status: ProjectStatus;
|
|
6647
|
+
temporary: boolean;
|
|
6497
6648
|
size: number;
|
|
6498
6649
|
createdAt: Date;
|
|
6499
6650
|
updatedAt: Date;
|
|
@@ -6567,6 +6718,7 @@ export type FinishedRestoreBackupTaskSuccessFullFragment = {
|
|
|
6567
6718
|
path: string;
|
|
6568
6719
|
version: string;
|
|
6569
6720
|
status: ProjectStatus;
|
|
6721
|
+
temporary: boolean;
|
|
6570
6722
|
size: number;
|
|
6571
6723
|
createdAt: Date;
|
|
6572
6724
|
updatedAt: Date;
|
|
@@ -6671,6 +6823,7 @@ export type RestoreBackupTasksQuery = {
|
|
|
6671
6823
|
path: string;
|
|
6672
6824
|
version: string;
|
|
6673
6825
|
status: ProjectStatus;
|
|
6826
|
+
temporary: boolean;
|
|
6674
6827
|
size: number;
|
|
6675
6828
|
createdAt: Date;
|
|
6676
6829
|
updatedAt: Date;
|
|
@@ -6798,6 +6951,7 @@ export type RestoreBackupFromFileMutation = {
|
|
|
6798
6951
|
path: string;
|
|
6799
6952
|
version: string;
|
|
6800
6953
|
status: ProjectStatus;
|
|
6954
|
+
temporary: boolean;
|
|
6801
6955
|
size: number;
|
|
6802
6956
|
createdAt: Date;
|
|
6803
6957
|
updatedAt: Date;
|
|
@@ -6849,6 +7003,7 @@ export type RestoreBackupMutation = {
|
|
|
6849
7003
|
path: string;
|
|
6850
7004
|
version: string;
|
|
6851
7005
|
status: ProjectStatus;
|
|
7006
|
+
temporary: boolean;
|
|
6852
7007
|
size: number;
|
|
6853
7008
|
createdAt: Date;
|
|
6854
7009
|
updatedAt: Date;
|
|
@@ -7034,6 +7189,7 @@ export type StartedRestoreBackupTaskSubscription = {
|
|
|
7034
7189
|
path: string;
|
|
7035
7190
|
version: string;
|
|
7036
7191
|
status: ProjectStatus;
|
|
7192
|
+
temporary: boolean;
|
|
7037
7193
|
size: number;
|
|
7038
7194
|
createdAt: Date;
|
|
7039
7195
|
updatedAt: Date;
|
|
@@ -7091,6 +7247,7 @@ export type FinishedRetoreBackupTaskSubscription = {
|
|
|
7091
7247
|
path: string;
|
|
7092
7248
|
version: string;
|
|
7093
7249
|
status: ProjectStatus;
|
|
7250
|
+
temporary: boolean;
|
|
7094
7251
|
size: number;
|
|
7095
7252
|
createdAt: Date;
|
|
7096
7253
|
updatedAt: Date;
|
|
@@ -9685,6 +9842,28 @@ export type InterceptResponseMessageMetaFragment = {
|
|
|
9685
9842
|
} | undefined | null;
|
|
9686
9843
|
};
|
|
9687
9844
|
};
|
|
9845
|
+
export type InterceptStreamWsMessageMetaFragment = {
|
|
9846
|
+
__typename: "InterceptStreamWsMessage";
|
|
9847
|
+
id: string;
|
|
9848
|
+
message: {
|
|
9849
|
+
id: string;
|
|
9850
|
+
stream: {
|
|
9851
|
+
id: string;
|
|
9852
|
+
};
|
|
9853
|
+
edits: Array<{
|
|
9854
|
+
id: string;
|
|
9855
|
+
alteration: Alteration;
|
|
9856
|
+
}>;
|
|
9857
|
+
head: {
|
|
9858
|
+
id: string;
|
|
9859
|
+
length: number;
|
|
9860
|
+
alteration: Alteration;
|
|
9861
|
+
direction: StreamMessageDirection;
|
|
9862
|
+
format: StreamWsMessageFormat;
|
|
9863
|
+
createdAt: Date;
|
|
9864
|
+
};
|
|
9865
|
+
};
|
|
9866
|
+
};
|
|
9688
9867
|
type InterceptMessageMeta_InterceptRequestMessage_Fragment = {
|
|
9689
9868
|
__typename: "InterceptRequestMessage";
|
|
9690
9869
|
id: string;
|
|
@@ -9773,7 +9952,29 @@ type InterceptMessageMeta_InterceptResponseMessage_Fragment = {
|
|
|
9773
9952
|
} | undefined | null;
|
|
9774
9953
|
};
|
|
9775
9954
|
};
|
|
9776
|
-
|
|
9955
|
+
type InterceptMessageMeta_InterceptStreamWsMessage_Fragment = {
|
|
9956
|
+
__typename: "InterceptStreamWsMessage";
|
|
9957
|
+
id: string;
|
|
9958
|
+
message: {
|
|
9959
|
+
id: string;
|
|
9960
|
+
stream: {
|
|
9961
|
+
id: string;
|
|
9962
|
+
};
|
|
9963
|
+
edits: Array<{
|
|
9964
|
+
id: string;
|
|
9965
|
+
alteration: Alteration;
|
|
9966
|
+
}>;
|
|
9967
|
+
head: {
|
|
9968
|
+
id: string;
|
|
9969
|
+
length: number;
|
|
9970
|
+
alteration: Alteration;
|
|
9971
|
+
direction: StreamMessageDirection;
|
|
9972
|
+
format: StreamWsMessageFormat;
|
|
9973
|
+
createdAt: Date;
|
|
9974
|
+
};
|
|
9975
|
+
};
|
|
9976
|
+
};
|
|
9977
|
+
export type InterceptMessageMetaFragment = InterceptMessageMeta_InterceptRequestMessage_Fragment | InterceptMessageMeta_InterceptResponseMessage_Fragment | InterceptMessageMeta_InterceptStreamWsMessage_Fragment;
|
|
9777
9978
|
export type InterceptOptionsMetaFragment = {
|
|
9778
9979
|
request: {
|
|
9779
9980
|
enabled: boolean;
|
|
@@ -9783,6 +9984,9 @@ export type InterceptOptionsMetaFragment = {
|
|
|
9783
9984
|
enabled: boolean;
|
|
9784
9985
|
filter?: string | undefined | null;
|
|
9785
9986
|
};
|
|
9987
|
+
streamWs: {
|
|
9988
|
+
enabled: boolean;
|
|
9989
|
+
};
|
|
9786
9990
|
scope?: {
|
|
9787
9991
|
scopeId: string;
|
|
9788
9992
|
} | undefined | null;
|
|
@@ -9795,6 +9999,9 @@ export type InterceptResponseOptionsMetaFragment = {
|
|
|
9795
9999
|
enabled: boolean;
|
|
9796
10000
|
filter?: string | undefined | null;
|
|
9797
10001
|
};
|
|
10002
|
+
export type InterceptStreamWsOptionsMetaFragment = {
|
|
10003
|
+
enabled: boolean;
|
|
10004
|
+
};
|
|
9798
10005
|
export type InterceptScopeOptionsMetaFragment = {
|
|
9799
10006
|
scopeId: string;
|
|
9800
10007
|
};
|
|
@@ -9829,6 +10036,9 @@ export type SetInterceptOptionsMutation = {
|
|
|
9829
10036
|
enabled: boolean;
|
|
9830
10037
|
filter?: string | undefined | null;
|
|
9831
10038
|
};
|
|
10039
|
+
streamWs: {
|
|
10040
|
+
enabled: boolean;
|
|
10041
|
+
};
|
|
9832
10042
|
scope?: {
|
|
9833
10043
|
scopeId: string;
|
|
9834
10044
|
} | undefined | null;
|
|
@@ -9942,6 +10152,27 @@ export type InterceptRequestMessagesQuery = {
|
|
|
9942
10152
|
id: string;
|
|
9943
10153
|
} | undefined | null;
|
|
9944
10154
|
};
|
|
10155
|
+
} | {
|
|
10156
|
+
__typename: "InterceptStreamWsMessage";
|
|
10157
|
+
id: string;
|
|
10158
|
+
message: {
|
|
10159
|
+
id: string;
|
|
10160
|
+
stream: {
|
|
10161
|
+
id: string;
|
|
10162
|
+
};
|
|
10163
|
+
edits: Array<{
|
|
10164
|
+
id: string;
|
|
10165
|
+
alteration: Alteration;
|
|
10166
|
+
}>;
|
|
10167
|
+
head: {
|
|
10168
|
+
id: string;
|
|
10169
|
+
length: number;
|
|
10170
|
+
alteration: Alteration;
|
|
10171
|
+
direction: StreamMessageDirection;
|
|
10172
|
+
format: StreamWsMessageFormat;
|
|
10173
|
+
createdAt: Date;
|
|
10174
|
+
};
|
|
10175
|
+
};
|
|
9945
10176
|
}>;
|
|
9946
10177
|
};
|
|
9947
10178
|
};
|
|
@@ -10036,6 +10267,142 @@ export type InterceptResponseMessagesQuery = {
|
|
|
10036
10267
|
id: string;
|
|
10037
10268
|
} | undefined | null;
|
|
10038
10269
|
};
|
|
10270
|
+
} | {
|
|
10271
|
+
__typename: "InterceptStreamWsMessage";
|
|
10272
|
+
id: string;
|
|
10273
|
+
message: {
|
|
10274
|
+
id: string;
|
|
10275
|
+
stream: {
|
|
10276
|
+
id: string;
|
|
10277
|
+
};
|
|
10278
|
+
edits: Array<{
|
|
10279
|
+
id: string;
|
|
10280
|
+
alteration: Alteration;
|
|
10281
|
+
}>;
|
|
10282
|
+
head: {
|
|
10283
|
+
id: string;
|
|
10284
|
+
length: number;
|
|
10285
|
+
alteration: Alteration;
|
|
10286
|
+
direction: StreamMessageDirection;
|
|
10287
|
+
format: StreamWsMessageFormat;
|
|
10288
|
+
createdAt: Date;
|
|
10289
|
+
};
|
|
10290
|
+
};
|
|
10291
|
+
}>;
|
|
10292
|
+
};
|
|
10293
|
+
};
|
|
10294
|
+
export type InterceptStreamWsMessagesQueryVariables = Exact<{
|
|
10295
|
+
first: Scalars["Int"]["input"];
|
|
10296
|
+
}>;
|
|
10297
|
+
export type InterceptStreamWsMessagesQuery = {
|
|
10298
|
+
interceptMessages: {
|
|
10299
|
+
nodes: Array<{
|
|
10300
|
+
__typename: "InterceptRequestMessage";
|
|
10301
|
+
id: string;
|
|
10302
|
+
request: {
|
|
10303
|
+
__typename: "Request";
|
|
10304
|
+
id: string;
|
|
10305
|
+
host: string;
|
|
10306
|
+
port: number;
|
|
10307
|
+
path: string;
|
|
10308
|
+
query: string;
|
|
10309
|
+
method: string;
|
|
10310
|
+
edited: boolean;
|
|
10311
|
+
isTls: boolean;
|
|
10312
|
+
sni?: string | undefined | null;
|
|
10313
|
+
length: number;
|
|
10314
|
+
alteration: Alteration;
|
|
10315
|
+
fileExtension?: string | undefined | null;
|
|
10316
|
+
source: Source;
|
|
10317
|
+
createdAt: Date;
|
|
10318
|
+
metadata: {
|
|
10319
|
+
__typename: "RequestMetadata";
|
|
10320
|
+
id: string;
|
|
10321
|
+
color?: string | undefined | null;
|
|
10322
|
+
};
|
|
10323
|
+
response?: {
|
|
10324
|
+
__typename: "Response";
|
|
10325
|
+
id: string;
|
|
10326
|
+
statusCode: number;
|
|
10327
|
+
roundtripTime: number;
|
|
10328
|
+
length: number;
|
|
10329
|
+
createdAt: Date;
|
|
10330
|
+
alteration: Alteration;
|
|
10331
|
+
edited: boolean;
|
|
10332
|
+
} | undefined | null;
|
|
10333
|
+
stream?: {
|
|
10334
|
+
id: string;
|
|
10335
|
+
} | undefined | null;
|
|
10336
|
+
};
|
|
10337
|
+
} | {
|
|
10338
|
+
__typename: "InterceptResponseMessage";
|
|
10339
|
+
id: string;
|
|
10340
|
+
response: {
|
|
10341
|
+
__typename: "Response";
|
|
10342
|
+
id: string;
|
|
10343
|
+
statusCode: number;
|
|
10344
|
+
roundtripTime: number;
|
|
10345
|
+
length: number;
|
|
10346
|
+
createdAt: Date;
|
|
10347
|
+
alteration: Alteration;
|
|
10348
|
+
edited: boolean;
|
|
10349
|
+
};
|
|
10350
|
+
request: {
|
|
10351
|
+
__typename: "Request";
|
|
10352
|
+
id: string;
|
|
10353
|
+
host: string;
|
|
10354
|
+
port: number;
|
|
10355
|
+
path: string;
|
|
10356
|
+
query: string;
|
|
10357
|
+
method: string;
|
|
10358
|
+
edited: boolean;
|
|
10359
|
+
isTls: boolean;
|
|
10360
|
+
sni?: string | undefined | null;
|
|
10361
|
+
length: number;
|
|
10362
|
+
alteration: Alteration;
|
|
10363
|
+
fileExtension?: string | undefined | null;
|
|
10364
|
+
source: Source;
|
|
10365
|
+
createdAt: Date;
|
|
10366
|
+
metadata: {
|
|
10367
|
+
__typename: "RequestMetadata";
|
|
10368
|
+
id: string;
|
|
10369
|
+
color?: string | undefined | null;
|
|
10370
|
+
};
|
|
10371
|
+
response?: {
|
|
10372
|
+
__typename: "Response";
|
|
10373
|
+
id: string;
|
|
10374
|
+
statusCode: number;
|
|
10375
|
+
roundtripTime: number;
|
|
10376
|
+
length: number;
|
|
10377
|
+
createdAt: Date;
|
|
10378
|
+
alteration: Alteration;
|
|
10379
|
+
edited: boolean;
|
|
10380
|
+
} | undefined | null;
|
|
10381
|
+
stream?: {
|
|
10382
|
+
id: string;
|
|
10383
|
+
} | undefined | null;
|
|
10384
|
+
};
|
|
10385
|
+
} | {
|
|
10386
|
+
__typename: "InterceptStreamWsMessage";
|
|
10387
|
+
id: string;
|
|
10388
|
+
message: {
|
|
10389
|
+
id: string;
|
|
10390
|
+
stream: {
|
|
10391
|
+
id: string;
|
|
10392
|
+
};
|
|
10393
|
+
edits: Array<{
|
|
10394
|
+
id: string;
|
|
10395
|
+
alteration: Alteration;
|
|
10396
|
+
}>;
|
|
10397
|
+
head: {
|
|
10398
|
+
id: string;
|
|
10399
|
+
length: number;
|
|
10400
|
+
alteration: Alteration;
|
|
10401
|
+
direction: StreamMessageDirection;
|
|
10402
|
+
format: StreamWsMessageFormat;
|
|
10403
|
+
createdAt: Date;
|
|
10404
|
+
};
|
|
10405
|
+
};
|
|
10039
10406
|
}>;
|
|
10040
10407
|
};
|
|
10041
10408
|
};
|
|
@@ -10052,6 +10419,9 @@ export type InterceptOptionsQuery = {
|
|
|
10052
10419
|
enabled: boolean;
|
|
10053
10420
|
filter?: string | undefined | null;
|
|
10054
10421
|
};
|
|
10422
|
+
streamWs: {
|
|
10423
|
+
enabled: boolean;
|
|
10424
|
+
};
|
|
10055
10425
|
scope?: {
|
|
10056
10426
|
scopeId: string;
|
|
10057
10427
|
} | undefined | null;
|
|
@@ -10063,6 +10433,14 @@ export type InterceptStatusQueryVariables = Exact<{
|
|
|
10063
10433
|
export type InterceptStatusQuery = {
|
|
10064
10434
|
interceptStatus: InterceptStatus;
|
|
10065
10435
|
};
|
|
10436
|
+
export type UpdatedInterceptStatusSubscriptionVariables = Exact<{
|
|
10437
|
+
[key: string]: never;
|
|
10438
|
+
}>;
|
|
10439
|
+
export type UpdatedInterceptStatusSubscription = {
|
|
10440
|
+
updatedInterceptStatus: {
|
|
10441
|
+
status: InterceptStatus;
|
|
10442
|
+
};
|
|
10443
|
+
};
|
|
10066
10444
|
export type CreatedInterceptMessageSubscriptionVariables = Exact<{
|
|
10067
10445
|
[key: string]: never;
|
|
10068
10446
|
}>;
|
|
@@ -10156,6 +10534,27 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
10156
10534
|
id: string;
|
|
10157
10535
|
} | undefined | null;
|
|
10158
10536
|
};
|
|
10537
|
+
} | {
|
|
10538
|
+
__typename: "InterceptStreamWsMessage";
|
|
10539
|
+
id: string;
|
|
10540
|
+
message: {
|
|
10541
|
+
id: string;
|
|
10542
|
+
stream: {
|
|
10543
|
+
id: string;
|
|
10544
|
+
};
|
|
10545
|
+
edits: Array<{
|
|
10546
|
+
id: string;
|
|
10547
|
+
alteration: Alteration;
|
|
10548
|
+
}>;
|
|
10549
|
+
head: {
|
|
10550
|
+
id: string;
|
|
10551
|
+
length: number;
|
|
10552
|
+
alteration: Alteration;
|
|
10553
|
+
direction: StreamMessageDirection;
|
|
10554
|
+
format: StreamWsMessageFormat;
|
|
10555
|
+
createdAt: Date;
|
|
10556
|
+
};
|
|
10557
|
+
};
|
|
10159
10558
|
};
|
|
10160
10559
|
};
|
|
10161
10560
|
};
|
|
@@ -10174,6 +10573,9 @@ export type UpdatedInterceptOptionsSubscription = {
|
|
|
10174
10573
|
enabled: boolean;
|
|
10175
10574
|
filter?: string | undefined | null;
|
|
10176
10575
|
};
|
|
10576
|
+
streamWs: {
|
|
10577
|
+
enabled: boolean;
|
|
10578
|
+
};
|
|
10177
10579
|
scope?: {
|
|
10178
10580
|
scopeId: string;
|
|
10179
10581
|
} | undefined | null;
|
|
@@ -14416,7 +14818,7 @@ export type PluginFrontendFullFragment = {
|
|
|
14416
14818
|
__typename: "PluginFrontend";
|
|
14417
14819
|
entrypoint?: string | undefined | null;
|
|
14418
14820
|
style?: string | undefined | null;
|
|
14419
|
-
data?:
|
|
14821
|
+
data?: unknown | undefined | null;
|
|
14420
14822
|
id: string;
|
|
14421
14823
|
name?: string | undefined | null;
|
|
14422
14824
|
enabled: boolean;
|
|
@@ -14497,7 +14899,7 @@ export type PluginPackageFullFragment = {
|
|
|
14497
14899
|
__typename: "PluginFrontend";
|
|
14498
14900
|
entrypoint?: string | undefined | null;
|
|
14499
14901
|
style?: string | undefined | null;
|
|
14500
|
-
data?:
|
|
14902
|
+
data?: unknown | undefined | null;
|
|
14501
14903
|
id: string;
|
|
14502
14904
|
name?: string | undefined | null;
|
|
14503
14905
|
enabled: boolean;
|
|
@@ -14580,7 +14982,7 @@ export type PluginPackagesQuery = {
|
|
|
14580
14982
|
__typename: "PluginFrontend";
|
|
14581
14983
|
entrypoint?: string | undefined | null;
|
|
14582
14984
|
style?: string | undefined | null;
|
|
14583
|
-
data?:
|
|
14985
|
+
data?: unknown | undefined | null;
|
|
14584
14986
|
id: string;
|
|
14585
14987
|
name?: string | undefined | null;
|
|
14586
14988
|
enabled: boolean;
|
|
@@ -14672,7 +15074,7 @@ export type InstallPluginPackageMutation = {
|
|
|
14672
15074
|
__typename: "PluginFrontend";
|
|
14673
15075
|
entrypoint?: string | undefined | null;
|
|
14674
15076
|
style?: string | undefined | null;
|
|
14675
|
-
data?:
|
|
15077
|
+
data?: unknown | undefined | null;
|
|
14676
15078
|
id: string;
|
|
14677
15079
|
name?: string | undefined | null;
|
|
14678
15080
|
enabled: boolean;
|
|
@@ -14770,7 +15172,7 @@ export type TogglePluginMutation = {
|
|
|
14770
15172
|
__typename: "PluginFrontend";
|
|
14771
15173
|
entrypoint?: string | undefined | null;
|
|
14772
15174
|
style?: string | undefined | null;
|
|
14773
|
-
data?:
|
|
15175
|
+
data?: unknown | undefined | null;
|
|
14774
15176
|
id: string;
|
|
14775
15177
|
name?: string | undefined | null;
|
|
14776
15178
|
enabled: boolean;
|
|
@@ -14839,7 +15241,7 @@ export type SetPluginDataMutation = {
|
|
|
14839
15241
|
__typename: "PluginFrontend";
|
|
14840
15242
|
entrypoint?: string | undefined | null;
|
|
14841
15243
|
style?: string | undefined | null;
|
|
14842
|
-
data?:
|
|
15244
|
+
data?: unknown | undefined | null;
|
|
14843
15245
|
id: string;
|
|
14844
15246
|
name?: string | undefined | null;
|
|
14845
15247
|
enabled: boolean;
|
|
@@ -14914,7 +15316,7 @@ export type CreatedPluginPackageSubscription = {
|
|
|
14914
15316
|
__typename: "PluginFrontend";
|
|
14915
15317
|
entrypoint?: string | undefined | null;
|
|
14916
15318
|
style?: string | undefined | null;
|
|
14917
|
-
data?:
|
|
15319
|
+
data?: unknown | undefined | null;
|
|
14918
15320
|
id: string;
|
|
14919
15321
|
name?: string | undefined | null;
|
|
14920
15322
|
enabled: boolean;
|
|
@@ -14987,7 +15389,7 @@ export type UpdatedPluginSubscription = {
|
|
|
14987
15389
|
__typename: "PluginFrontend";
|
|
14988
15390
|
entrypoint?: string | undefined | null;
|
|
14989
15391
|
style?: string | undefined | null;
|
|
14990
|
-
data?:
|
|
15392
|
+
data?: unknown | undefined | null;
|
|
14991
15393
|
id: string;
|
|
14992
15394
|
name?: string | undefined | null;
|
|
14993
15395
|
enabled: boolean;
|
|
@@ -15037,6 +15439,7 @@ export type ProjectFullFragment = {
|
|
|
15037
15439
|
path: string;
|
|
15038
15440
|
version: string;
|
|
15039
15441
|
status: ProjectStatus;
|
|
15442
|
+
temporary: boolean;
|
|
15040
15443
|
size: number;
|
|
15041
15444
|
createdAt: Date;
|
|
15042
15445
|
updatedAt: Date;
|
|
@@ -15052,6 +15455,7 @@ export type CurrentProjectFullFragment = {
|
|
|
15052
15455
|
path: string;
|
|
15053
15456
|
version: string;
|
|
15054
15457
|
status: ProjectStatus;
|
|
15458
|
+
temporary: boolean;
|
|
15055
15459
|
size: number;
|
|
15056
15460
|
createdAt: Date;
|
|
15057
15461
|
updatedAt: Date;
|
|
@@ -15077,6 +15481,7 @@ export type CreatedProjectSubscription = {
|
|
|
15077
15481
|
path: string;
|
|
15078
15482
|
version: string;
|
|
15079
15483
|
status: ProjectStatus;
|
|
15484
|
+
temporary: boolean;
|
|
15080
15485
|
size: number;
|
|
15081
15486
|
createdAt: Date;
|
|
15082
15487
|
updatedAt: Date;
|
|
@@ -15098,6 +15503,7 @@ export type UpdatedProjectSubscription = {
|
|
|
15098
15503
|
path: string;
|
|
15099
15504
|
version: string;
|
|
15100
15505
|
status: ProjectStatus;
|
|
15506
|
+
temporary: boolean;
|
|
15101
15507
|
size: number;
|
|
15102
15508
|
createdAt: Date;
|
|
15103
15509
|
updatedAt: Date;
|
|
@@ -15127,6 +15533,7 @@ export type CreateProjectMutation = {
|
|
|
15127
15533
|
path: string;
|
|
15128
15534
|
version: string;
|
|
15129
15535
|
status: ProjectStatus;
|
|
15536
|
+
temporary: boolean;
|
|
15130
15537
|
size: number;
|
|
15131
15538
|
createdAt: Date;
|
|
15132
15539
|
updatedAt: Date;
|
|
@@ -15165,6 +15572,7 @@ export type SelectProjectMutation = {
|
|
|
15165
15572
|
path: string;
|
|
15166
15573
|
version: string;
|
|
15167
15574
|
status: ProjectStatus;
|
|
15575
|
+
temporary: boolean;
|
|
15168
15576
|
size: number;
|
|
15169
15577
|
createdAt: Date;
|
|
15170
15578
|
updatedAt: Date;
|
|
@@ -15225,6 +15633,7 @@ export type RenameProjectMutation = {
|
|
|
15225
15633
|
path: string;
|
|
15226
15634
|
version: string;
|
|
15227
15635
|
status: ProjectStatus;
|
|
15636
|
+
temporary: boolean;
|
|
15228
15637
|
size: number;
|
|
15229
15638
|
createdAt: Date;
|
|
15230
15639
|
updatedAt: Date;
|
|
@@ -15239,6 +15648,44 @@ export type RenameProjectMutation = {
|
|
|
15239
15648
|
} | {
|
|
15240
15649
|
__typename: "OtherUserError";
|
|
15241
15650
|
code: string;
|
|
15651
|
+
} | {
|
|
15652
|
+
__typename: "UnknownIdUserError";
|
|
15653
|
+
id: string;
|
|
15654
|
+
code: string;
|
|
15655
|
+
} | undefined | null;
|
|
15656
|
+
};
|
|
15657
|
+
};
|
|
15658
|
+
export type PersistProjectMutationVariables = Exact<{
|
|
15659
|
+
id: Scalars["ID"]["input"];
|
|
15660
|
+
}>;
|
|
15661
|
+
export type PersistProjectMutation = {
|
|
15662
|
+
persistProject: {
|
|
15663
|
+
project?: {
|
|
15664
|
+
__typename: "Project";
|
|
15665
|
+
id: string;
|
|
15666
|
+
name: string;
|
|
15667
|
+
path: string;
|
|
15668
|
+
version: string;
|
|
15669
|
+
status: ProjectStatus;
|
|
15670
|
+
temporary: boolean;
|
|
15671
|
+
size: number;
|
|
15672
|
+
createdAt: Date;
|
|
15673
|
+
updatedAt: Date;
|
|
15674
|
+
backups: Array<{
|
|
15675
|
+
id: string;
|
|
15676
|
+
}>;
|
|
15677
|
+
} | undefined | null;
|
|
15678
|
+
error?: {
|
|
15679
|
+
__typename: "OtherUserError";
|
|
15680
|
+
code: string;
|
|
15681
|
+
} | {
|
|
15682
|
+
__typename: "PermissionDeniedUserError";
|
|
15683
|
+
code: string;
|
|
15684
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
15685
|
+
} | {
|
|
15686
|
+
__typename: "UnknownIdUserError";
|
|
15687
|
+
id: string;
|
|
15688
|
+
code: string;
|
|
15242
15689
|
} | undefined | null;
|
|
15243
15690
|
};
|
|
15244
15691
|
};
|
|
@@ -15254,6 +15701,7 @@ export type CurrentProjectQuery = {
|
|
|
15254
15701
|
path: string;
|
|
15255
15702
|
version: string;
|
|
15256
15703
|
status: ProjectStatus;
|
|
15704
|
+
temporary: boolean;
|
|
15257
15705
|
size: number;
|
|
15258
15706
|
createdAt: Date;
|
|
15259
15707
|
updatedAt: Date;
|
|
@@ -15279,6 +15727,7 @@ export type ProjectsQuery = {
|
|
|
15279
15727
|
path: string;
|
|
15280
15728
|
version: string;
|
|
15281
15729
|
status: ProjectStatus;
|
|
15730
|
+
temporary: boolean;
|
|
15282
15731
|
size: number;
|
|
15283
15732
|
createdAt: Date;
|
|
15284
15733
|
updatedAt: Date;
|
|
@@ -19062,6 +19511,30 @@ export type SitemapEntryRequestsQuery = {
|
|
|
19062
19511
|
} | undefined | null;
|
|
19063
19512
|
} | undefined | null;
|
|
19064
19513
|
};
|
|
19514
|
+
export type DeleteSitemapEntriesMutationVariables = Exact<{
|
|
19515
|
+
ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
19516
|
+
}>;
|
|
19517
|
+
export type DeleteSitemapEntriesMutation = {
|
|
19518
|
+
deleteSitemapEntries: {
|
|
19519
|
+
deletedIds: Array<string>;
|
|
19520
|
+
errors: Array<{
|
|
19521
|
+
__typename: "OtherUserError";
|
|
19522
|
+
code: string;
|
|
19523
|
+
} | {
|
|
19524
|
+
__typename: "UnknownIdUserError";
|
|
19525
|
+
id: string;
|
|
19526
|
+
code: string;
|
|
19527
|
+
}>;
|
|
19528
|
+
};
|
|
19529
|
+
};
|
|
19530
|
+
export type ClearSitemapEntriesMutationVariables = Exact<{
|
|
19531
|
+
[key: string]: never;
|
|
19532
|
+
}>;
|
|
19533
|
+
export type ClearSitemapEntriesMutation = {
|
|
19534
|
+
clearSitemapEntries: {
|
|
19535
|
+
deletedIds: Array<string>;
|
|
19536
|
+
};
|
|
19537
|
+
};
|
|
19065
19538
|
export type CreatedSitemapEntrySubscriptionVariables = Exact<{
|
|
19066
19539
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
19067
19540
|
}>;
|
|
@@ -19193,6 +19666,15 @@ export type UpdatedSitemapEntrySubscription = {
|
|
|
19193
19666
|
};
|
|
19194
19667
|
};
|
|
19195
19668
|
};
|
|
19669
|
+
export type DeletedSitemapEntrySubscriptionVariables = Exact<{
|
|
19670
|
+
[key: string]: never;
|
|
19671
|
+
}>;
|
|
19672
|
+
export type DeletedSitemapEntrySubscription = {
|
|
19673
|
+
deletedSitemapEntry: {
|
|
19674
|
+
deletedIds: Array<string>;
|
|
19675
|
+
snapshot: number;
|
|
19676
|
+
};
|
|
19677
|
+
};
|
|
19196
19678
|
export type StreamMetaFragment = {
|
|
19197
19679
|
__typename: "Stream";
|
|
19198
19680
|
id: string;
|
|
@@ -19222,38 +19704,64 @@ export type StreamEdgeMetaFragment = {
|
|
|
19222
19704
|
};
|
|
19223
19705
|
};
|
|
19224
19706
|
export type StreamWsMessageMetaFragment = {
|
|
19707
|
+
id: string;
|
|
19708
|
+
stream: {
|
|
19709
|
+
id: string;
|
|
19710
|
+
};
|
|
19711
|
+
edits: Array<{
|
|
19712
|
+
id: string;
|
|
19713
|
+
alteration: Alteration;
|
|
19714
|
+
}>;
|
|
19715
|
+
head: {
|
|
19716
|
+
id: string;
|
|
19717
|
+
length: number;
|
|
19718
|
+
alteration: Alteration;
|
|
19719
|
+
direction: StreamMessageDirection;
|
|
19720
|
+
format: StreamWsMessageFormat;
|
|
19721
|
+
createdAt: Date;
|
|
19722
|
+
};
|
|
19723
|
+
};
|
|
19724
|
+
export type StreamWsMessageEditRefFragment = {
|
|
19725
|
+
id: string;
|
|
19726
|
+
alteration: Alteration;
|
|
19727
|
+
};
|
|
19728
|
+
export type StreamWsMessageEditMetaFragment = {
|
|
19225
19729
|
id: string;
|
|
19226
19730
|
length: number;
|
|
19227
|
-
createdAt: Date;
|
|
19228
|
-
direction: StreamMessageDirection;
|
|
19229
|
-
edited: boolean;
|
|
19230
19731
|
alteration: Alteration;
|
|
19732
|
+
direction: StreamMessageDirection;
|
|
19231
19733
|
format: StreamWsMessageFormat;
|
|
19232
|
-
|
|
19734
|
+
createdAt: Date;
|
|
19233
19735
|
};
|
|
19234
|
-
export type
|
|
19736
|
+
export type StreamWsMessageEditFullFragment = {
|
|
19235
19737
|
raw: string;
|
|
19236
19738
|
id: string;
|
|
19237
19739
|
length: number;
|
|
19238
|
-
createdAt: Date;
|
|
19239
|
-
direction: StreamMessageDirection;
|
|
19240
|
-
edited: boolean;
|
|
19241
19740
|
alteration: Alteration;
|
|
19741
|
+
direction: StreamMessageDirection;
|
|
19242
19742
|
format: StreamWsMessageFormat;
|
|
19243
|
-
|
|
19743
|
+
createdAt: Date;
|
|
19244
19744
|
};
|
|
19245
19745
|
export type StreamWsMessageEdgeMetaFragment = {
|
|
19246
19746
|
__typename: "StreamWsMessageEdge";
|
|
19247
19747
|
cursor: string;
|
|
19248
19748
|
node: {
|
|
19249
19749
|
id: string;
|
|
19250
|
-
|
|
19251
|
-
|
|
19252
|
-
|
|
19253
|
-
|
|
19254
|
-
|
|
19255
|
-
|
|
19256
|
-
|
|
19750
|
+
stream: {
|
|
19751
|
+
id: string;
|
|
19752
|
+
};
|
|
19753
|
+
edits: Array<{
|
|
19754
|
+
id: string;
|
|
19755
|
+
alteration: Alteration;
|
|
19756
|
+
}>;
|
|
19757
|
+
head: {
|
|
19758
|
+
id: string;
|
|
19759
|
+
length: number;
|
|
19760
|
+
alteration: Alteration;
|
|
19761
|
+
direction: StreamMessageDirection;
|
|
19762
|
+
format: StreamWsMessageFormat;
|
|
19763
|
+
createdAt: Date;
|
|
19764
|
+
};
|
|
19257
19765
|
};
|
|
19258
19766
|
};
|
|
19259
19767
|
export type WebsocketStreamsBeforeQueryVariables = Exact<{
|
|
@@ -19384,13 +19892,21 @@ export type WebsocketMessagesAfterQuery = {
|
|
|
19384
19892
|
cursor: string;
|
|
19385
19893
|
node: {
|
|
19386
19894
|
id: string;
|
|
19387
|
-
|
|
19388
|
-
|
|
19389
|
-
|
|
19390
|
-
|
|
19391
|
-
|
|
19392
|
-
|
|
19393
|
-
|
|
19895
|
+
stream: {
|
|
19896
|
+
id: string;
|
|
19897
|
+
};
|
|
19898
|
+
edits: Array<{
|
|
19899
|
+
id: string;
|
|
19900
|
+
alteration: Alteration;
|
|
19901
|
+
}>;
|
|
19902
|
+
head: {
|
|
19903
|
+
id: string;
|
|
19904
|
+
length: number;
|
|
19905
|
+
alteration: Alteration;
|
|
19906
|
+
direction: StreamMessageDirection;
|
|
19907
|
+
format: StreamWsMessageFormat;
|
|
19908
|
+
createdAt: Date;
|
|
19909
|
+
};
|
|
19394
19910
|
};
|
|
19395
19911
|
}>;
|
|
19396
19912
|
pageInfo: {
|
|
@@ -19416,13 +19932,21 @@ export type WebsocketMessagesBeforeQuery = {
|
|
|
19416
19932
|
cursor: string;
|
|
19417
19933
|
node: {
|
|
19418
19934
|
id: string;
|
|
19419
|
-
|
|
19420
|
-
|
|
19421
|
-
|
|
19422
|
-
|
|
19423
|
-
|
|
19424
|
-
|
|
19425
|
-
|
|
19935
|
+
stream: {
|
|
19936
|
+
id: string;
|
|
19937
|
+
};
|
|
19938
|
+
edits: Array<{
|
|
19939
|
+
id: string;
|
|
19940
|
+
alteration: Alteration;
|
|
19941
|
+
}>;
|
|
19942
|
+
head: {
|
|
19943
|
+
id: string;
|
|
19944
|
+
length: number;
|
|
19945
|
+
alteration: Alteration;
|
|
19946
|
+
direction: StreamMessageDirection;
|
|
19947
|
+
format: StreamWsMessageFormat;
|
|
19948
|
+
createdAt: Date;
|
|
19949
|
+
};
|
|
19426
19950
|
};
|
|
19427
19951
|
}>;
|
|
19428
19952
|
pageInfo: {
|
|
@@ -19448,13 +19972,21 @@ export type WebsocketMessagesByOffsetQuery = {
|
|
|
19448
19972
|
cursor: string;
|
|
19449
19973
|
node: {
|
|
19450
19974
|
id: string;
|
|
19451
|
-
|
|
19452
|
-
|
|
19453
|
-
|
|
19454
|
-
|
|
19455
|
-
|
|
19456
|
-
|
|
19457
|
-
|
|
19975
|
+
stream: {
|
|
19976
|
+
id: string;
|
|
19977
|
+
};
|
|
19978
|
+
edits: Array<{
|
|
19979
|
+
id: string;
|
|
19980
|
+
alteration: Alteration;
|
|
19981
|
+
}>;
|
|
19982
|
+
head: {
|
|
19983
|
+
id: string;
|
|
19984
|
+
length: number;
|
|
19985
|
+
alteration: Alteration;
|
|
19986
|
+
direction: StreamMessageDirection;
|
|
19987
|
+
format: StreamWsMessageFormat;
|
|
19988
|
+
createdAt: Date;
|
|
19989
|
+
};
|
|
19458
19990
|
};
|
|
19459
19991
|
}>;
|
|
19460
19992
|
pageInfo: {
|
|
@@ -19483,15 +20015,36 @@ export type WebsocketMessageQueryVariables = Exact<{
|
|
|
19483
20015
|
}>;
|
|
19484
20016
|
export type WebsocketMessageQuery = {
|
|
19485
20017
|
streamWsMessage?: {
|
|
20018
|
+
id: string;
|
|
20019
|
+
stream: {
|
|
20020
|
+
id: string;
|
|
20021
|
+
};
|
|
20022
|
+
edits: Array<{
|
|
20023
|
+
id: string;
|
|
20024
|
+
alteration: Alteration;
|
|
20025
|
+
}>;
|
|
20026
|
+
head: {
|
|
20027
|
+
id: string;
|
|
20028
|
+
length: number;
|
|
20029
|
+
alteration: Alteration;
|
|
20030
|
+
direction: StreamMessageDirection;
|
|
20031
|
+
format: StreamWsMessageFormat;
|
|
20032
|
+
createdAt: Date;
|
|
20033
|
+
};
|
|
20034
|
+
} | undefined | null;
|
|
20035
|
+
};
|
|
20036
|
+
export type WebsocketMessageEditQueryVariables = Exact<{
|
|
20037
|
+
id: Scalars["ID"]["input"];
|
|
20038
|
+
}>;
|
|
20039
|
+
export type WebsocketMessageEditQuery = {
|
|
20040
|
+
streamWsMessageEdit?: {
|
|
19486
20041
|
raw: string;
|
|
19487
20042
|
id: string;
|
|
19488
20043
|
length: number;
|
|
19489
|
-
createdAt: Date;
|
|
19490
|
-
direction: StreamMessageDirection;
|
|
19491
|
-
edited: boolean;
|
|
19492
20044
|
alteration: Alteration;
|
|
20045
|
+
direction: StreamMessageDirection;
|
|
19493
20046
|
format: StreamWsMessageFormat;
|
|
19494
|
-
|
|
20047
|
+
createdAt: Date;
|
|
19495
20048
|
} | undefined | null;
|
|
19496
20049
|
};
|
|
19497
20050
|
export type CreatedWsStreamSubscriptionVariables = Exact<{
|
|
@@ -19530,13 +20083,51 @@ export type CreatedStreamWsMessageSubscription = {
|
|
|
19530
20083
|
cursor: string;
|
|
19531
20084
|
node: {
|
|
19532
20085
|
id: string;
|
|
19533
|
-
|
|
19534
|
-
|
|
19535
|
-
|
|
19536
|
-
|
|
19537
|
-
|
|
19538
|
-
|
|
19539
|
-
|
|
20086
|
+
stream: {
|
|
20087
|
+
id: string;
|
|
20088
|
+
};
|
|
20089
|
+
edits: Array<{
|
|
20090
|
+
id: string;
|
|
20091
|
+
alteration: Alteration;
|
|
20092
|
+
}>;
|
|
20093
|
+
head: {
|
|
20094
|
+
id: string;
|
|
20095
|
+
length: number;
|
|
20096
|
+
alteration: Alteration;
|
|
20097
|
+
direction: StreamMessageDirection;
|
|
20098
|
+
format: StreamWsMessageFormat;
|
|
20099
|
+
createdAt: Date;
|
|
20100
|
+
};
|
|
20101
|
+
};
|
|
20102
|
+
};
|
|
20103
|
+
};
|
|
20104
|
+
};
|
|
20105
|
+
export type UpdatedStreamWsMessageSubscriptionVariables = Exact<{
|
|
20106
|
+
order: StreamWsMessageOrderInput;
|
|
20107
|
+
}>;
|
|
20108
|
+
export type UpdatedStreamWsMessageSubscription = {
|
|
20109
|
+
updatedStreamWsMessage: {
|
|
20110
|
+
snapshot: number;
|
|
20111
|
+
messageEdge: {
|
|
20112
|
+
__typename: "StreamWsMessageEdge";
|
|
20113
|
+
cursor: string;
|
|
20114
|
+
node: {
|
|
20115
|
+
id: string;
|
|
20116
|
+
stream: {
|
|
20117
|
+
id: string;
|
|
20118
|
+
};
|
|
20119
|
+
edits: Array<{
|
|
20120
|
+
id: string;
|
|
20121
|
+
alteration: Alteration;
|
|
20122
|
+
}>;
|
|
20123
|
+
head: {
|
|
20124
|
+
id: string;
|
|
20125
|
+
length: number;
|
|
20126
|
+
alteration: Alteration;
|
|
20127
|
+
direction: StreamMessageDirection;
|
|
20128
|
+
format: StreamWsMessageFormat;
|
|
20129
|
+
createdAt: Date;
|
|
20130
|
+
};
|
|
19540
20131
|
};
|
|
19541
20132
|
};
|
|
19542
20133
|
};
|
|
@@ -20284,8 +20875,8 @@ export type UserProfileFullFragment = {
|
|
|
20284
20875
|
};
|
|
20285
20876
|
export type UserSettingsFullFragment = {
|
|
20286
20877
|
__typename: "UserSettings";
|
|
20287
|
-
data:
|
|
20288
|
-
migrations:
|
|
20878
|
+
data: unknown;
|
|
20879
|
+
migrations: unknown;
|
|
20289
20880
|
};
|
|
20290
20881
|
export type UpdateViewerSettingsMutationVariables = Exact<{
|
|
20291
20882
|
input: UpdateViewerSettingsInput;
|
|
@@ -20294,8 +20885,8 @@ export type UpdateViewerSettingsMutation = {
|
|
|
20294
20885
|
updateViewerSettings: {
|
|
20295
20886
|
settings?: {
|
|
20296
20887
|
__typename: "UserSettings";
|
|
20297
|
-
data:
|
|
20298
|
-
migrations:
|
|
20888
|
+
data: unknown;
|
|
20889
|
+
migrations: unknown;
|
|
20299
20890
|
} | undefined | null;
|
|
20300
20891
|
};
|
|
20301
20892
|
};
|
|
@@ -20304,6 +20895,7 @@ export type UserProfileQueryVariables = Exact<{
|
|
|
20304
20895
|
}>;
|
|
20305
20896
|
export type UserProfileQuery = {
|
|
20306
20897
|
viewer: {
|
|
20898
|
+
__typename: "CloudUser";
|
|
20307
20899
|
id: string;
|
|
20308
20900
|
profile: {
|
|
20309
20901
|
__typename: "UserProfile";
|
|
@@ -20324,6 +20916,8 @@ export type UserProfileQuery = {
|
|
|
20324
20916
|
};
|
|
20325
20917
|
};
|
|
20326
20918
|
};
|
|
20919
|
+
} | {
|
|
20920
|
+
__typename: "GuestUser";
|
|
20327
20921
|
};
|
|
20328
20922
|
};
|
|
20329
20923
|
export type UserSettingsQueryVariables = Exact<{
|
|
@@ -20331,11 +20925,20 @@ export type UserSettingsQueryVariables = Exact<{
|
|
|
20331
20925
|
}>;
|
|
20332
20926
|
export type UserSettingsQuery = {
|
|
20333
20927
|
viewer: {
|
|
20928
|
+
__typename: "CloudUser";
|
|
20929
|
+
id: string;
|
|
20930
|
+
settings?: {
|
|
20931
|
+
__typename: "UserSettings";
|
|
20932
|
+
data: unknown;
|
|
20933
|
+
migrations: unknown;
|
|
20934
|
+
} | undefined | null;
|
|
20935
|
+
} | {
|
|
20936
|
+
__typename: "GuestUser";
|
|
20334
20937
|
id: string;
|
|
20335
20938
|
settings?: {
|
|
20336
20939
|
__typename: "UserSettings";
|
|
20337
|
-
data:
|
|
20338
|
-
migrations:
|
|
20940
|
+
data: unknown;
|
|
20941
|
+
migrations: unknown;
|
|
20339
20942
|
} | undefined | null;
|
|
20340
20943
|
};
|
|
20341
20944
|
};
|
|
@@ -20820,7 +21423,7 @@ export declare const SimpleListPayloadOptionsFullFragmentDoc = "\n fragment s
|
|
|
20820
21423
|
export declare const HostedFilePayloadOptionsFullFragmentDoc = "\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n ";
|
|
20821
21424
|
export declare const NullPayloadOptionsFullFragmentDoc = "\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n ";
|
|
20822
21425
|
export declare const RangeFullFragmentDoc = "\n fragment rangeFull on Range {\n start\n end\n}\n ";
|
|
20823
|
-
export declare const NumberPayloadOptionsFullFragmentDoc = "\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n ";
|
|
21426
|
+
export declare const NumberPayloadOptionsFullFragmentDoc = "\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n ";
|
|
20824
21427
|
export declare const AutomatePrefixPreprocessorFullFragmentDoc = "\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
20825
21428
|
export declare const AutomateSuffixPreprocessorFullFragmentDoc = "\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
20826
21429
|
export declare const AutomateWorkflowPreprocessorFullFragmentDoc = "\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n ";
|
|
@@ -20849,7 +21452,7 @@ export declare const FinishedBackupTaskCancelledFullFragmentDoc = "\n fragmen
|
|
|
20849
21452
|
export declare const InternalUserErrorFullFragmentDoc = "\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n ";
|
|
20850
21453
|
export declare const BackupUserErrorFullFragmentDoc = "\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
20851
21454
|
export declare const FinishedBackupTaskErrorFullFragmentDoc = "\n fragment finishedBackupTaskErrorFull on FinishedBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n ";
|
|
20852
|
-
export declare const ProjectFullFragmentDoc = "\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21455
|
+
export declare const ProjectFullFragmentDoc = "\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 backups {\n id\n }\n}\n ";
|
|
20853
21456
|
export declare const RestoreBackupTaskMetaFragmentDoc = "\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n ";
|
|
20854
21457
|
export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n ";
|
|
20855
21458
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
@@ -20900,11 +21503,16 @@ export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment
|
|
|
20900
21503
|
export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n updatedAt\n createdAt\n}\n ";
|
|
20901
21504
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
20902
21505
|
export declare const InterceptResponseMessageMetaFragmentDoc = "\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
20903
|
-
export declare const
|
|
21506
|
+
export declare const StreamWsMessageEditRefFragmentDoc = "\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n ";
|
|
21507
|
+
export declare const StreamWsMessageEditMetaFragmentDoc = "\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21508
|
+
export declare const StreamWsMessageMetaFragmentDoc = "\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n ";
|
|
21509
|
+
export declare const InterceptStreamWsMessageMetaFragmentDoc = "\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
21510
|
+
export declare const InterceptMessageMetaFragmentDoc = "\n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n ";
|
|
20904
21511
|
export declare const InterceptRequestOptionsMetaFragmentDoc = "\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n ";
|
|
20905
21512
|
export declare const InterceptResponseOptionsMetaFragmentDoc = "\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n ";
|
|
21513
|
+
export declare const InterceptStreamWsOptionsMetaFragmentDoc = "\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n ";
|
|
20906
21514
|
export declare const InterceptScopeOptionsMetaFragmentDoc = "\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
20907
|
-
export declare const InterceptOptionsMetaFragmentDoc = "\n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n ";
|
|
21515
|
+
export declare const InterceptOptionsMetaFragmentDoc = "\n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n ";
|
|
20908
21516
|
export declare const TamperMatcherValueFullFragmentDoc = "\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n ";
|
|
20909
21517
|
export declare const TamperMatcherRegexFullFragmentDoc = "\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n ";
|
|
20910
21518
|
export declare const TamperMatcherRawFullFragmentDoc = "\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n ";
|
|
@@ -20974,8 +21582,7 @@ export declare const SitemapEntryMetaFragmentDoc = "\n fragment sitemapEntryM
|
|
|
20974
21582
|
export declare const SitemapEntryEdgeMetaFragmentDoc = "\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n ";
|
|
20975
21583
|
export declare const StreamMetaFragmentDoc = "\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 ";
|
|
20976
21584
|
export declare const StreamEdgeMetaFragmentDoc = "\n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n ";
|
|
20977
|
-
export declare const
|
|
20978
|
-
export declare const StreamWsMessageFullFragmentDoc = "\n fragment streamWsMessageFull on StreamWsMessage {\n ...streamWsMessageMeta\n raw\n}\n ";
|
|
21585
|
+
export declare const StreamWsMessageEditFullFragmentDoc = "\n fragment streamWsMessageEditFull on StreamWsMessageEdit {\n ...streamWsMessageEditMeta\n raw\n}\n ";
|
|
20979
21586
|
export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
20980
21587
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
20981
21588
|
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 ";
|
|
@@ -20988,7 +21595,7 @@ export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment wor
|
|
|
20988
21595
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
20989
21596
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
20990
21597
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
20991
|
-
export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n id\n
|
|
21598
|
+
export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n ... on CloudUser {\n __typename\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n ... on GuestUser {\n __typename\n }\n }\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n \n\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
20992
21599
|
export declare const SendAssistantMessageDocument = "\n mutation sendAssistantMessage($sessionId: ID!, $message: String) {\n sendAssistantMessage(sessionId: $sessionId, message: $message) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
20993
21600
|
export declare const CreateAssistantSessionDocument = "\n mutation createAssistantSession($input: CreateAssistantSessionInput!) {\n createAssistantSession(input: $input) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
20994
21601
|
export declare const DeleteAssistantSessionDocument = "\n mutation deleteAssistantSession($id: ID!) {\n deleteAssistantSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -20997,22 +21604,24 @@ export declare const CreatedAssistantMessageDocument = "\n subscription creat
|
|
|
20997
21604
|
export declare const CreatedAssistantMessageTaskDocument = "\n subscription createdAssistantMessageTask {\n createdAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
20998
21605
|
export declare const UpdatedAssistantMessageTaskDocument = "\n subscription updatedAssistantMessageTask {\n updatedAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
20999
21606
|
export declare const UpdatedViewerAssistantUsageDocument = "\n subscription updatedViewerAssistantUsage {\n updatedViewerAssistantUsage {\n usage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
21607
|
+
export declare const AuthenticationStateDocument = "\n query authenticationState {\n authenticationState {\n allowGuests\n }\n}\n ";
|
|
21000
21608
|
export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21001
21609
|
export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21002
21610
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21611
|
+
export declare const LoginAsGuestDocument = "\n mutation loginAsGuest {\n loginAsGuest {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21003
21612
|
export declare const CreatedAuthenticationTokenDocument = "\n subscription createdAuthenticationToken($requestId: ID!) {\n createdAuthenticationToken(requestId: $requestId) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21004
|
-
export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21005
|
-
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21006
|
-
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21007
|
-
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21613
|
+
export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21614
|
+
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21615
|
+
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21616
|
+
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21008
21617
|
export declare const AutomateSessionsStateDocument = "\n query automateSessionsState {\n automateSessions {\n edges {\n ...automateSessionEdgeMeta\n }\n }\n automateTasks {\n edges {\n ...automateTaskEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateSessionEdgeMeta on AutomateSessionEdge {\n node {\n ...automateSessionMeta\n }\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21009
|
-
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21618
|
+
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21010
21619
|
export declare const DeleteAutomateEntriesDocument = "\n mutation deleteAutomateEntries($ids: [ID!]!) {\n deleteAutomateEntries(ids: $ids) {\n deletedIds\n errors {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21011
|
-
export declare const RenameAutomateEntryDocument = "\n mutation renameAutomateEntry($id: ID!, $name: String!) {\n renameAutomateEntry(id: $id, name: $name) {\n entry {\n ...automateEntryFull\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21012
|
-
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21620
|
+
export declare const RenameAutomateEntryDocument = "\n mutation renameAutomateEntry($id: ID!, $name: String!) {\n renameAutomateEntry(id: $id, name: $name) {\n entry {\n ...automateEntryFull\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21621
|
+
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21013
21622
|
export declare const DeleteAutomateSessionDocument = "\n mutation deleteAutomateSession($id: ID!) {\n deleteAutomateSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
21014
|
-
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21015
|
-
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
21623
|
+
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
21624
|
+
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
21016
21625
|
export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomateTask($id: ID!) {\n cancelAutomateTask(id: $id) {\n cancelledId\n userError {\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 ";
|
|
21017
21626
|
export declare const PauseAutomateTaskDocument = "\n mutation pauseAutomateTask($id: ID!) {\n pauseAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \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 ";
|
|
21018
21627
|
export declare const ResumeAutomateTaskDocument = "\n mutation resumeAutomateTask($id: ID!) {\n resumeAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \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 ";
|
|
@@ -21030,12 +21639,12 @@ export declare const DeletedAutomateSessionDocument = "\n subscription delete
|
|
|
21030
21639
|
export declare const BackupsDocument = "\n query backups {\n backups {\n ...backupMeta\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
21031
21640
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
21032
21641
|
export declare const BackupTasksDocument = "\n query backupTasks {\n backupTasks {\n ...backupTaskMeta\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
21033
|
-
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21642
|
+
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21034
21643
|
export declare const CreateBackupDocument = "\n mutation createBackup($id: ID!) {\n createBackup(projectId: $id) {\n task {\n ...backupTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\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 ";
|
|
21035
21644
|
export declare const DeleteBackupDocument = "\n mutation deleteBackup($id: ID!) {\n deleteBackup(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n ";
|
|
21036
21645
|
export declare const RenameBackupDocument = "\n mutation renameBackup($id: ID!, $name: String!) {\n renameBackup(id: $id, name: $name) {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
21037
|
-
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21038
|
-
export declare const RestoreBackupDocument = "\n mutation restoreBackup($name: String!, $id: ID!) {\n restoreBackup(input: {name: $name, source: {backupId: $id}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21646
|
+
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21647
|
+
export declare const RestoreBackupDocument = "\n mutation restoreBackup($name: String!, $id: ID!) {\n restoreBackup(input: {name: $name, source: {backupId: $id}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21039
21648
|
export declare const CancelBackupTaskDocument = "\n mutation cancelBackupTask($id: ID!) {\n cancelBackupTask(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 ";
|
|
21040
21649
|
export declare const CancelRestoreBackupTaskDocument = "\n mutation cancelRestoreBackupTask($id: ID!) {\n cancelRestoreBackupTask(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 ";
|
|
21041
21650
|
export declare const CreatedBackupDocument = "\n subscription createdBackup {\n createdBackup {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
@@ -21043,8 +21652,8 @@ export declare const UpdatedBackupDocument = "\n subscription updatedBackup {
|
|
|
21043
21652
|
export declare const DeletedBackupDocument = "\n subscription deletedBackup {\n deletedBackup {\n deletedBackupId\n }\n}\n ";
|
|
21044
21653
|
export declare const StartedBackupTaskDocument = "\n subscription startedBackupTask {\n startedBackupTask {\n task {\n ...backupTaskMeta\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
21045
21654
|
export declare const FinishedBackupTaskDocument = "\n subscription finishedBackupTask {\n finishedBackupTask {\n ... on FinishedBackupTaskSuccess {\n ...finishedBackupTaskSuccessFull\n }\n ... on FinishedBackupTaskCancelled {\n ...finishedBackupTaskCancelledFull\n }\n ... on FinishedBackupTaskError {\n ...finishedBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedBackupTaskSuccessFull on FinishedBackupTaskSuccess {\n __typename\n task {\n ...backupTaskMeta\n }\n}\n \n\n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment finishedBackupTaskCancelledFull on FinishedBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedBackupTaskErrorFull on FinishedBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
21046
|
-
export declare const StartedRestoreBackupTaskDocument = "\n subscription startedRestoreBackupTask {\n startedRestoreBackupTask {\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21047
|
-
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedRestoreBackupTaskErrorFull on FinishedRestoreBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
21655
|
+
export declare const StartedRestoreBackupTaskDocument = "\n subscription startedRestoreBackupTask {\n startedRestoreBackupTask {\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21656
|
+
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedRestoreBackupTaskErrorFull on FinishedRestoreBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
21048
21657
|
export declare const BrowserDocument = "\n query browser {\n browser {\n ...browserFull\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
21049
21658
|
export declare const DeleteBrowserDocument = "\n mutation deleteBrowser {\n deleteBrowser {\n deletedId\n }\n}\n ";
|
|
21050
21659
|
export declare const InstallBrowserDocument = "\n mutation installBrowser {\n installBrowser {\n browser {\n ...browserFull\n }\n error {\n ... on UnsupportedPlatformUserError {\n ...unsupportedPlatformUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n \n\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
@@ -21129,15 +21738,17 @@ export declare const UploadHostedFileDocument = "\n mutation uploadHostedFile
|
|
|
21129
21738
|
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 updatedAt\n createdAt\n}\n ";
|
|
21130
21739
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
21131
21740
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
21132
|
-
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
21741
|
+
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
21133
21742
|
export declare const PauseInterceptDocument = "\n mutation pauseIntercept {\n pauseIntercept {\n status\n }\n}\n ";
|
|
21134
21743
|
export declare const ResumeInterceptDocument = "\n mutation resumeIntercept {\n resumeIntercept {\n status\n }\n}\n ";
|
|
21135
|
-
export declare const InterceptRequestMessagesDocument = "\n query interceptRequestMessages($first: Int!) {\n interceptMessages(first: $first, kind: REQUEST) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
21136
|
-
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
21137
|
-
export declare const
|
|
21744
|
+
export declare const InterceptRequestMessagesDocument = "\n query interceptRequestMessages($first: Int!) {\n interceptMessages(first: $first, kind: REQUEST) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21745
|
+
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21746
|
+
export declare const InterceptStreamWsMessagesDocument = "\n query interceptStreamWsMessages($first: Int!) {\n interceptMessages(first: $first, kind: STREAM_WS) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21747
|
+
export declare const InterceptOptionsDocument = "\n query interceptOptions {\n interceptOptions {\n ...interceptOptionsMeta\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
21138
21748
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
21139
|
-
export declare const
|
|
21140
|
-
export declare const
|
|
21749
|
+
export declare const UpdatedInterceptStatusDocument = "\n subscription updatedInterceptStatus {\n updatedInterceptStatus {\n status\n }\n}\n ";
|
|
21750
|
+
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21751
|
+
export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
21141
21752
|
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n ...tamperRuleCollectionFull\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
21142
21753
|
export declare const RenameTamperRuleCollectionDocument = "\n mutation renameTamperRuleCollection($id: ID!, $name: String!) {\n renameTamperRuleCollection(id: $id, name: $name) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
21143
21754
|
export declare const CreateTamperRuleCollectionDocument = "\n mutation createTamperRuleCollection($input: CreateTamperRuleCollectionInput!) {\n createTamperRuleCollection(input: $input) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
@@ -21160,15 +21771,16 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
21160
21771
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
21161
21772
|
export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
21162
21773
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
21163
|
-
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21164
|
-
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21774
|
+
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21775
|
+
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21165
21776
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
21166
|
-
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
21167
|
-
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n currentProject {\n ...currentProjectFull\n }\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n \n\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21777
|
+
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
21778
|
+
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n currentProject {\n ...currentProjectFull\n }\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n \n\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21168
21779
|
export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21169
|
-
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21170
|
-
export declare const
|
|
21171
|
-
export declare const
|
|
21780
|
+
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21781
|
+
export declare const PersistProjectDocument = "\n mutation persistProject($id: ID!) {\n persistProject(id: $id) {\n project {\n ...projectFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21782
|
+
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...currentProjectFull\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
21783
|
+
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 backups {\n id\n }\n}\n ";
|
|
21172
21784
|
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 ";
|
|
21173
21785
|
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}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n ";
|
|
21174
21786
|
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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
@@ -21219,19 +21831,24 @@ export declare const DeletedScopeDocument = "\n subscription deletedScope {\n
|
|
|
21219
21831
|
export declare const SitemapRootEntriesDocument = "\n query sitemapRootEntries($scopeId: ID) {\n sitemapRootEntries(scopeId: $scopeId) {\n edges {\n ...sitemapEntryEdgeMeta\n }\n }\n}\n \n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21220
21832
|
export declare const SitemapEntryChildrenDocument = "\n query sitemapEntryChildren($id: ID!) {\n sitemapDescendantEntries(parentId: $id, depth: DIRECT) {\n edges {\n cursor\n node {\n ...sitemapEntryMeta\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21221
21833
|
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21834
|
+
export declare const DeleteSitemapEntriesDocument = "\n mutation deleteSitemapEntries($ids: [ID!]!) {\n deleteSitemapEntries(ids: $ids) {\n deletedIds\n errors {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21835
|
+
export declare const ClearSitemapEntriesDocument = "\n mutation clearSitemapEntries {\n clearSitemapEntries {\n deletedIds\n }\n}\n ";
|
|
21222
21836
|
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21223
21837
|
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21838
|
+
export declare const DeletedSitemapEntryDocument = "\n subscription deletedSitemapEntry {\n deletedSitemapEntry {\n deletedIds\n snapshot\n }\n}\n ";
|
|
21224
21839
|
export declare const WebsocketStreamsBeforeDocument = "\n query websocketStreamsBefore($before: String, $last: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n before: $before\n last: $last\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21225
21840
|
export declare const WebsocketStreamsAfterDocument = "\n query websocketStreamsAfter($after: String, $first: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n after: $after\n first: $first\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21226
21841
|
export declare const WebsocketStreamsByOffsetDocument = "\n query websocketStreamsByOffset($offset: Int!, $limit: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streamsByOffset(\n offset: $offset\n limit: $limit\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21227
21842
|
export declare const WebsocketStreamCountDocument = "\n query websocketStreamCount($scopeId: ID) {\n streams(first: 0, scopeId: $scopeId, protocol: WS) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21228
|
-
export declare const WebsocketMessagesAfterDocument = "\n query websocketMessagesAfter($after: String, $first: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n after: $after\n first: $first\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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
|
|
21229
|
-
export declare const WebsocketMessagesBeforeDocument = "\n query websocketMessagesBefore($before: String, $last: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n before: $before\n last: $last\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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
|
|
21230
|
-
export declare const WebsocketMessagesByOffsetDocument = "\n query websocketMessagesByOffset($offset: Int!, $limit: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessagesByOffset(\n offset: $offset\n limit: $limit\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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
|
|
21843
|
+
export declare const WebsocketMessagesAfterDocument = "\n query websocketMessagesAfter($after: String, $first: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n after: $after\n first: $first\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21844
|
+
export declare const WebsocketMessagesBeforeDocument = "\n query websocketMessagesBefore($before: String, $last: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n before: $before\n last: $last\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21845
|
+
export declare const WebsocketMessagesByOffsetDocument = "\n query websocketMessagesByOffset($offset: Int!, $limit: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessagesByOffset(\n offset: $offset\n limit: $limit\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21231
21846
|
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 ";
|
|
21232
|
-
export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...
|
|
21847
|
+
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 ";
|
|
21848
|
+
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 ";
|
|
21233
21849
|
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 ";
|
|
21234
|
-
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
|
|
21850
|
+
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 ";
|
|
21851
|
+
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 ";
|
|
21235
21852
|
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n 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 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 ";
|
|
21236
21853
|
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 ";
|
|
21237
21854
|
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\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 ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
@@ -21254,8 +21871,8 @@ export declare const CreatedUpstreamProxySocksDocument = "\n subscription cre
|
|
|
21254
21871
|
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
21255
21872
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
21256
21873
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
21257
|
-
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n id\n
|
|
21258
|
-
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n id\n
|
|
21874
|
+
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n ... on CloudUser {\n __typename\n id\n profile {\n ...userProfileFull\n }\n }\n ... on GuestUser {\n __typename\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
21875
|
+
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n ... on CloudUser {\n __typename\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n __typename\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
21259
21876
|
export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
21260
21877
|
export declare const WorkflowsStateDocument = "\n query workflowsState {\n workflows {\n ...workflowFull\n }\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
21261
21878
|
export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n ...workflowEdgeFull\n }\n }\n}\n \n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
@@ -21286,9 +21903,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21286
21903
|
createdAssistantMessageTask(variables?: CreatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAssistantMessageTaskSubscription>;
|
|
21287
21904
|
updatedAssistantMessageTask(variables?: UpdatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedAssistantMessageTaskSubscription>;
|
|
21288
21905
|
updatedViewerAssistantUsage(variables?: UpdatedViewerAssistantUsageSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerAssistantUsageSubscription>;
|
|
21906
|
+
authenticationState(variables?: AuthenticationStateQueryVariables, options?: C): Promise<AuthenticationStateQuery>;
|
|
21289
21907
|
startAuthenticationFlow(variables?: StartAuthenticationFlowMutationVariables, options?: C): Promise<StartAuthenticationFlowMutation>;
|
|
21290
21908
|
refreshAuthenticationToken(variables: RefreshAuthenticationTokenMutationVariables, options?: C): Promise<RefreshAuthenticationTokenMutation>;
|
|
21291
21909
|
logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
|
|
21910
|
+
loginAsGuest(variables?: LoginAsGuestMutationVariables, options?: C): Promise<LoginAsGuestMutation>;
|
|
21292
21911
|
createdAuthenticationToken(variables: CreatedAuthenticationTokenSubscriptionVariables, options?: C): AsyncIterable<CreatedAuthenticationTokenSubscription>;
|
|
21293
21912
|
automateEntry(variables: AutomateEntryQueryVariables, options?: C): Promise<AutomateEntryQuery>;
|
|
21294
21913
|
automateEntryRequests(variables: AutomateEntryRequestsQueryVariables, options?: C): Promise<AutomateEntryRequestsQuery>;
|
|
@@ -21423,8 +22042,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21423
22042
|
resumeIntercept(variables?: ResumeInterceptMutationVariables, options?: C): Promise<ResumeInterceptMutation>;
|
|
21424
22043
|
interceptRequestMessages(variables: InterceptRequestMessagesQueryVariables, options?: C): Promise<InterceptRequestMessagesQuery>;
|
|
21425
22044
|
interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
|
|
22045
|
+
interceptStreamWsMessages(variables: InterceptStreamWsMessagesQueryVariables, options?: C): Promise<InterceptStreamWsMessagesQuery>;
|
|
21426
22046
|
interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
|
|
21427
22047
|
interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
|
|
22048
|
+
updatedInterceptStatus(variables?: UpdatedInterceptStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptStatusSubscription>;
|
|
21428
22049
|
createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
|
|
21429
22050
|
updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
|
|
21430
22051
|
tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
|
|
@@ -21456,6 +22077,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21456
22077
|
selectProject(variables: SelectProjectMutationVariables, options?: C): Promise<SelectProjectMutation>;
|
|
21457
22078
|
deleteProject(variables: DeleteProjectMutationVariables, options?: C): Promise<DeleteProjectMutation>;
|
|
21458
22079
|
renameProject(variables: RenameProjectMutationVariables, options?: C): Promise<RenameProjectMutation>;
|
|
22080
|
+
persistProject(variables: PersistProjectMutationVariables, options?: C): Promise<PersistProjectMutation>;
|
|
21459
22081
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
21460
22082
|
projects(variables?: ProjectsQueryVariables, options?: C): Promise<ProjectsQuery>;
|
|
21461
22083
|
setProjectConfigStream(variables: SetProjectConfigStreamMutationVariables, options?: C): Promise<SetProjectConfigStreamMutation>;
|
|
@@ -21508,8 +22130,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21508
22130
|
sitemapRootEntries(variables?: SitemapRootEntriesQueryVariables, options?: C): Promise<SitemapRootEntriesQuery>;
|
|
21509
22131
|
sitemapEntryChildren(variables: SitemapEntryChildrenQueryVariables, options?: C): Promise<SitemapEntryChildrenQuery>;
|
|
21510
22132
|
sitemapEntryRequests(variables: SitemapEntryRequestsQueryVariables, options?: C): Promise<SitemapEntryRequestsQuery>;
|
|
22133
|
+
deleteSitemapEntries(variables: DeleteSitemapEntriesMutationVariables, options?: C): Promise<DeleteSitemapEntriesMutation>;
|
|
22134
|
+
clearSitemapEntries(variables?: ClearSitemapEntriesMutationVariables, options?: C): Promise<ClearSitemapEntriesMutation>;
|
|
21511
22135
|
createdSitemapEntry(variables?: CreatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedSitemapEntrySubscription>;
|
|
21512
22136
|
updatedSitemapEntry(variables?: UpdatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<UpdatedSitemapEntrySubscription>;
|
|
22137
|
+
deletedSitemapEntry(variables?: DeletedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<DeletedSitemapEntrySubscription>;
|
|
21513
22138
|
websocketStreamsBefore(variables: WebsocketStreamsBeforeQueryVariables, options?: C): Promise<WebsocketStreamsBeforeQuery>;
|
|
21514
22139
|
websocketStreamsAfter(variables: WebsocketStreamsAfterQueryVariables, options?: C): Promise<WebsocketStreamsAfterQuery>;
|
|
21515
22140
|
websocketStreamsByOffset(variables: WebsocketStreamsByOffsetQueryVariables, options?: C): Promise<WebsocketStreamsByOffsetQuery>;
|
|
@@ -21519,8 +22144,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21519
22144
|
websocketMessagesByOffset(variables: WebsocketMessagesByOffsetQueryVariables, options?: C): Promise<WebsocketMessagesByOffsetQuery>;
|
|
21520
22145
|
websocketMessageCount(variables: WebsocketMessageCountQueryVariables, options?: C): Promise<WebsocketMessageCountQuery>;
|
|
21521
22146
|
websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
|
|
22147
|
+
websocketMessageEdit(variables: WebsocketMessageEditQueryVariables, options?: C): Promise<WebsocketMessageEditQuery>;
|
|
21522
22148
|
createdWsStream(variables: CreatedWsStreamSubscriptionVariables, options?: C): AsyncIterable<CreatedWsStreamSubscription>;
|
|
21523
22149
|
createdStreamWsMessage(variables: CreatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedStreamWsMessageSubscription>;
|
|
22150
|
+
updatedStreamWsMessage(variables: UpdatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<UpdatedStreamWsMessageSubscription>;
|
|
21524
22151
|
getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
|
|
21525
22152
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
21526
22153
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|