@caido/sdk-frontend 0.36.1 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +1 -11
- package/src/index.js +0 -1
- package/src/types/__generated__/graphql-sdk.d.ts +1123 -582
- package/src/types/index.d.ts +2 -0
- package/src/types/storage.d.ts +14 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
type JSONPrimitive = string | number | boolean | null | undefined;
|
|
2
|
+
type JSONValue = JSONPrimitive | JSONValue[] | {
|
|
3
|
+
[key: string]: JSONValue;
|
|
4
|
+
};
|
|
1
5
|
export type Maybe<T> = T | undefined | null;
|
|
2
6
|
export type InputMaybe<T> = T | undefined | null;
|
|
3
7
|
export type Exact<T extends {
|
|
@@ -71,12 +75,12 @@ export type Scalars = {
|
|
|
71
75
|
};
|
|
72
76
|
/** A scalar that can represent any JSON value. */
|
|
73
77
|
JSON: {
|
|
74
|
-
input:
|
|
75
|
-
output:
|
|
78
|
+
input: JSONValue;
|
|
79
|
+
output: JSONValue;
|
|
76
80
|
};
|
|
77
81
|
JsonObject: {
|
|
78
|
-
input:
|
|
79
|
-
output:
|
|
82
|
+
input: JSONValue;
|
|
83
|
+
output: JSONValue;
|
|
80
84
|
};
|
|
81
85
|
Port: {
|
|
82
86
|
input: number;
|
|
@@ -317,28 +321,26 @@ export type AutomateNullPayloadInput = {
|
|
|
317
321
|
quantity: Scalars["Int"]["input"];
|
|
318
322
|
};
|
|
319
323
|
export type AutomatePayload = {
|
|
320
|
-
kind: AutomatePayloadKind;
|
|
321
324
|
options: AutomatePayloadOptions;
|
|
322
325
|
preprocessors: Array<AutomatePreprocessor>;
|
|
323
|
-
urlEncode: AutomateUrlEncodeOptions;
|
|
324
326
|
};
|
|
325
327
|
export type AutomatePayloadInput = {
|
|
326
|
-
kind: AutomatePayloadKind;
|
|
327
328
|
options: AutomatePayloadOptionsInput;
|
|
328
329
|
preprocessors: Array<AutomatePreprocessorInput>;
|
|
329
|
-
urlEncode: AutomateUrlEncodeOptionsInput;
|
|
330
|
-
};
|
|
331
|
-
export declare const AutomatePayloadKind: {
|
|
332
|
-
readonly HostedFile: "HOSTED_FILE";
|
|
333
|
-
readonly Null: "NULL";
|
|
334
|
-
readonly SimpleList: "SIMPLE_LIST";
|
|
335
330
|
};
|
|
336
|
-
export type AutomatePayloadKind = (typeof AutomatePayloadKind)[keyof typeof AutomatePayloadKind];
|
|
337
331
|
export type AutomatePayloadOptions = AutomateHostedFilePayload | AutomateNullPayload | AutomateSimpleListPayload;
|
|
338
332
|
export type AutomatePayloadOptionsInput = {
|
|
339
|
-
hostedFile
|
|
340
|
-
null?:
|
|
341
|
-
simpleList?:
|
|
333
|
+
hostedFile: AutomateHostedFilePayloadInput;
|
|
334
|
+
null?: never;
|
|
335
|
+
simpleList?: never;
|
|
336
|
+
} | {
|
|
337
|
+
hostedFile?: never;
|
|
338
|
+
null: AutomateNullPayloadInput;
|
|
339
|
+
simpleList?: never;
|
|
340
|
+
} | {
|
|
341
|
+
hostedFile?: never;
|
|
342
|
+
null?: never;
|
|
343
|
+
simpleList: AutomateSimpleListPayloadInput;
|
|
342
344
|
};
|
|
343
345
|
export declare const AutomatePayloadStrategy: {
|
|
344
346
|
readonly All: "ALL";
|
|
@@ -362,22 +364,32 @@ export type AutomatePrefixPreprocessorInput = {
|
|
|
362
364
|
value: Scalars["String"]["input"];
|
|
363
365
|
};
|
|
364
366
|
export type AutomatePreprocessor = {
|
|
365
|
-
kind: AutomatePreprocessorKind;
|
|
366
367
|
options: AutomatePreprocessorOptions;
|
|
367
368
|
};
|
|
368
369
|
export type AutomatePreprocessorInput = {
|
|
369
|
-
kind: AutomatePreprocessorKind;
|
|
370
370
|
options: AutomatePreprocessorOptionsInput;
|
|
371
371
|
};
|
|
372
|
-
export
|
|
373
|
-
readonly Prefix: "PREFIX";
|
|
374
|
-
readonly Suffix: "SUFFIX";
|
|
375
|
-
};
|
|
376
|
-
export type AutomatePreprocessorKind = (typeof AutomatePreprocessorKind)[keyof typeof AutomatePreprocessorKind];
|
|
377
|
-
export type AutomatePreprocessorOptions = AutomatePrefixPreprocessor | AutomateSuffixPreprocessor;
|
|
372
|
+
export type AutomatePreprocessorOptions = AutomatePrefixPreprocessor | AutomateSuffixPreprocessor | AutomateUrlEncodePreprocessor | AutomateWorkflowPreprocessor;
|
|
378
373
|
export type AutomatePreprocessorOptionsInput = {
|
|
379
|
-
prefix
|
|
380
|
-
suffix?:
|
|
374
|
+
prefix: AutomatePrefixPreprocessorInput;
|
|
375
|
+
suffix?: never;
|
|
376
|
+
urlEncode?: never;
|
|
377
|
+
workflow?: never;
|
|
378
|
+
} | {
|
|
379
|
+
prefix?: never;
|
|
380
|
+
suffix: AutomateSuffixPreprocessorInput;
|
|
381
|
+
urlEncode?: never;
|
|
382
|
+
workflow?: never;
|
|
383
|
+
} | {
|
|
384
|
+
prefix?: never;
|
|
385
|
+
suffix?: never;
|
|
386
|
+
urlEncode: AutomateUrlEncodePreprocessorInput;
|
|
387
|
+
workflow?: never;
|
|
388
|
+
} | {
|
|
389
|
+
prefix?: never;
|
|
390
|
+
suffix?: never;
|
|
391
|
+
urlEncode?: never;
|
|
392
|
+
workflow: AutomateWorkflowPreprocessorInput;
|
|
381
393
|
};
|
|
382
394
|
export type AutomateRetryOnFailureSetting = {
|
|
383
395
|
backoff: Scalars["Int"]["output"];
|
|
@@ -474,16 +486,20 @@ export type AutomateTaskUserError = UserError & {
|
|
|
474
486
|
code: Scalars["String"]["output"];
|
|
475
487
|
reason: AutomateTaskErrorReason;
|
|
476
488
|
};
|
|
477
|
-
export type
|
|
489
|
+
export type AutomateUrlEncodePreprocessor = {
|
|
478
490
|
charset?: Maybe<Scalars["String"]["output"]>;
|
|
479
|
-
enabled: Scalars["Boolean"]["output"];
|
|
480
491
|
nonAscii: Scalars["Boolean"]["output"];
|
|
481
492
|
};
|
|
482
|
-
export type
|
|
493
|
+
export type AutomateUrlEncodePreprocessorInput = {
|
|
483
494
|
charset?: InputMaybe<Scalars["String"]["input"]>;
|
|
484
|
-
enabled: Scalars["Boolean"]["input"];
|
|
485
495
|
nonAscii: Scalars["Boolean"]["input"];
|
|
486
496
|
};
|
|
497
|
+
export type AutomateWorkflowPreprocessor = {
|
|
498
|
+
id: Scalars["ID"]["output"];
|
|
499
|
+
};
|
|
500
|
+
export type AutomateWorkflowPreprocessorInput = {
|
|
501
|
+
id: Scalars["ID"]["input"];
|
|
502
|
+
};
|
|
487
503
|
export type Backup = {
|
|
488
504
|
createdAt: Scalars["DateTime"]["output"];
|
|
489
505
|
downloadUri?: Maybe<Scalars["Uri"]["output"]>;
|
|
@@ -745,6 +761,9 @@ export type CreatedInterceptMessagePayload = {
|
|
|
745
761
|
messageEdge: InterceptMessageEdge;
|
|
746
762
|
snapshot: Scalars["Snapshot"]["output"];
|
|
747
763
|
};
|
|
764
|
+
export type CreatedPluginPackagePayload = {
|
|
765
|
+
package: PluginPackage;
|
|
766
|
+
};
|
|
748
767
|
export type CreatedProjectPayload = {
|
|
749
768
|
project: Project;
|
|
750
769
|
};
|
|
@@ -968,6 +987,9 @@ export type DeletedInterceptMessagePayload = {
|
|
|
968
987
|
deletedMessageId: Scalars["ID"]["output"];
|
|
969
988
|
snapshot: Scalars["Snapshot"]["output"];
|
|
970
989
|
};
|
|
990
|
+
export type DeletedPluginPackagePayload = {
|
|
991
|
+
deletedPackageId: Scalars["ID"]["output"];
|
|
992
|
+
};
|
|
971
993
|
export type DeletedProjectPayload = {
|
|
972
994
|
deletedProjectId: Scalars["ID"]["output"];
|
|
973
995
|
};
|
|
@@ -1191,6 +1213,14 @@ export type InstallBrowserPayload = {
|
|
|
1191
1213
|
browser?: Maybe<Browser>;
|
|
1192
1214
|
error?: Maybe<InstallBrowserError>;
|
|
1193
1215
|
};
|
|
1216
|
+
export type InstallPluginPackageError = OtherUserError | PluginUserError;
|
|
1217
|
+
export type InstallPluginPackageInput = {
|
|
1218
|
+
source: PluginPackageSource;
|
|
1219
|
+
};
|
|
1220
|
+
export type InstallPluginPackagePayload = {
|
|
1221
|
+
error?: Maybe<InstallPluginPackageError>;
|
|
1222
|
+
package?: Maybe<PluginPackage>;
|
|
1223
|
+
};
|
|
1194
1224
|
export type InterceptEntry = {
|
|
1195
1225
|
id: Scalars["ID"]["output"];
|
|
1196
1226
|
request: Request;
|
|
@@ -1312,6 +1342,11 @@ export type InvalidRegexUserError = UserError & {
|
|
|
1312
1342
|
code: Scalars["String"]["output"];
|
|
1313
1343
|
term: Scalars["String"]["output"];
|
|
1314
1344
|
};
|
|
1345
|
+
export type LocalizeWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
|
|
1346
|
+
export type LocalizeWorkflowPayload = {
|
|
1347
|
+
error?: Maybe<LocalizeWorkflowError>;
|
|
1348
|
+
workflow?: Maybe<Workflow>;
|
|
1349
|
+
};
|
|
1315
1350
|
export type LogoutPayload = {
|
|
1316
1351
|
success: Scalars["Boolean"]["output"];
|
|
1317
1352
|
};
|
|
@@ -1367,6 +1402,8 @@ export type MutationRoot = {
|
|
|
1367
1402
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1368
1403
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
1369
1404
|
installBrowser: InstallBrowserPayload;
|
|
1405
|
+
installPluginPackage: InstallPluginPackagePayload;
|
|
1406
|
+
localizeWorkflow: LocalizeWorkflowPayload;
|
|
1370
1407
|
logout: LogoutPayload;
|
|
1371
1408
|
moveReplaySession: MoveReplaySessionPayload;
|
|
1372
1409
|
moveTamperRule: MoveTamperRulePayload;
|
|
@@ -1401,13 +1438,16 @@ export type MutationRoot = {
|
|
|
1401
1438
|
setGlobalConfigOnboarding: SetConfigOnboardingPayload;
|
|
1402
1439
|
setGlobalConfigPort: SetConfigPortPayload;
|
|
1403
1440
|
setInterceptOptions: SetInterceptOptionsPayload;
|
|
1441
|
+
setPluginData: SetPluginDataPayload;
|
|
1404
1442
|
startAuthenticationFlow: StartAuthenticationFlowPayload;
|
|
1405
1443
|
startAutomateTask: StartAutomateTaskPayload;
|
|
1406
1444
|
startExportRequestsTask: StartExportRequestsTaskPayload;
|
|
1407
1445
|
startReplayTask: StartReplayTaskPayload;
|
|
1408
1446
|
testTamperRule: TestTamperRulePayload;
|
|
1409
1447
|
testUpstreamProxy: TestUpstreamProxyPayload;
|
|
1448
|
+
togglePlugin: TogglePluginPayload;
|
|
1410
1449
|
toggleWorkflow: ToggleWorkflowPayload;
|
|
1450
|
+
uninstallPluginPackage: UninstallPluginPackagePayload;
|
|
1411
1451
|
updateAutomateSession: UpdateAutomateSessionPayload;
|
|
1412
1452
|
updateBrowser: UpdateBrowserPayload;
|
|
1413
1453
|
updateFilterPreset: UpdateFilterPresetPayload;
|
|
@@ -1550,6 +1590,12 @@ export type MutationRootForwardInterceptMessageArgs = {
|
|
|
1550
1590
|
export type MutationRootGlobalizeWorkflowArgs = {
|
|
1551
1591
|
id: Scalars["ID"]["input"];
|
|
1552
1592
|
};
|
|
1593
|
+
export type MutationRootInstallPluginPackageArgs = {
|
|
1594
|
+
input: InstallPluginPackageInput;
|
|
1595
|
+
};
|
|
1596
|
+
export type MutationRootLocalizeWorkflowArgs = {
|
|
1597
|
+
id: Scalars["ID"]["input"];
|
|
1598
|
+
};
|
|
1553
1599
|
export type MutationRootMoveReplaySessionArgs = {
|
|
1554
1600
|
collectionId: Scalars["ID"]["input"];
|
|
1555
1601
|
id: Scalars["ID"]["input"];
|
|
@@ -1662,6 +1708,10 @@ export type MutationRootSetGlobalConfigPortArgs = {
|
|
|
1662
1708
|
export type MutationRootSetInterceptOptionsArgs = {
|
|
1663
1709
|
input: InterceptOptionsInput;
|
|
1664
1710
|
};
|
|
1711
|
+
export type MutationRootSetPluginDataArgs = {
|
|
1712
|
+
data: Scalars["JSON"]["input"];
|
|
1713
|
+
id: Scalars["ID"]["input"];
|
|
1714
|
+
};
|
|
1665
1715
|
export type MutationRootStartAutomateTaskArgs = {
|
|
1666
1716
|
automateSessionId: Scalars["ID"]["input"];
|
|
1667
1717
|
};
|
|
@@ -1678,10 +1728,17 @@ export type MutationRootTestTamperRuleArgs = {
|
|
|
1678
1728
|
export type MutationRootTestUpstreamProxyArgs = {
|
|
1679
1729
|
input: TestUpstreamProxyInput;
|
|
1680
1730
|
};
|
|
1731
|
+
export type MutationRootTogglePluginArgs = {
|
|
1732
|
+
enabled: Scalars["Boolean"]["input"];
|
|
1733
|
+
id: Scalars["ID"]["input"];
|
|
1734
|
+
};
|
|
1681
1735
|
export type MutationRootToggleWorkflowArgs = {
|
|
1682
1736
|
enabled: Scalars["Boolean"]["input"];
|
|
1683
1737
|
id: Scalars["ID"]["input"];
|
|
1684
1738
|
};
|
|
1739
|
+
export type MutationRootUninstallPluginPackageArgs = {
|
|
1740
|
+
id: Scalars["ID"]["input"];
|
|
1741
|
+
};
|
|
1685
1742
|
export type MutationRootUpdateAutomateSessionArgs = {
|
|
1686
1743
|
id: Scalars["ID"]["input"];
|
|
1687
1744
|
input: UpdateAutomateSessionInput;
|
|
@@ -1760,6 +1817,52 @@ export type PermissionDeniedUserError = UserError & {
|
|
|
1760
1817
|
code: Scalars["String"]["output"];
|
|
1761
1818
|
reason: PermissionDeniedErrorReason;
|
|
1762
1819
|
};
|
|
1820
|
+
export type Plugin = {
|
|
1821
|
+
enabled: Scalars["Boolean"]["output"];
|
|
1822
|
+
id: Scalars["ID"]["output"];
|
|
1823
|
+
manifestId: Scalars["ID"]["output"];
|
|
1824
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
1825
|
+
package: PluginPackage;
|
|
1826
|
+
};
|
|
1827
|
+
export type PluginAuthor = {
|
|
1828
|
+
email?: Maybe<Scalars["String"]["output"]>;
|
|
1829
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
1830
|
+
url?: Maybe<Scalars["String"]["output"]>;
|
|
1831
|
+
};
|
|
1832
|
+
export declare const PluginErrorReason: {
|
|
1833
|
+
readonly AlreadyInstalled: "ALREADY_INSTALLED";
|
|
1834
|
+
readonly InvalidManifest: "INVALID_MANIFEST";
|
|
1835
|
+
readonly InvalidPackage: "INVALID_PACKAGE";
|
|
1836
|
+
readonly MissingFile: "MISSING_FILE";
|
|
1837
|
+
};
|
|
1838
|
+
export type PluginErrorReason = (typeof PluginErrorReason)[keyof typeof PluginErrorReason];
|
|
1839
|
+
export type PluginFrontend = Plugin & {
|
|
1840
|
+
data?: Maybe<Scalars["JSON"]["output"]>;
|
|
1841
|
+
enabled: Scalars["Boolean"]["output"];
|
|
1842
|
+
entrypoint?: Maybe<Scalars["String"]["output"]>;
|
|
1843
|
+
id: Scalars["ID"]["output"];
|
|
1844
|
+
manifestId: Scalars["ID"]["output"];
|
|
1845
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
1846
|
+
package: PluginPackage;
|
|
1847
|
+
style?: Maybe<Scalars["String"]["output"]>;
|
|
1848
|
+
};
|
|
1849
|
+
export type PluginPackage = {
|
|
1850
|
+
author?: Maybe<PluginAuthor>;
|
|
1851
|
+
description?: Maybe<Scalars["String"]["output"]>;
|
|
1852
|
+
id: Scalars["ID"]["output"];
|
|
1853
|
+
installedAt: Scalars["DateTime"]["output"];
|
|
1854
|
+
manifestId: Scalars["ID"]["output"];
|
|
1855
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
1856
|
+
plugins: Array<Plugin>;
|
|
1857
|
+
version: Scalars["String"]["output"];
|
|
1858
|
+
};
|
|
1859
|
+
export type PluginPackageSource = {
|
|
1860
|
+
file: Scalars["Upload"]["input"];
|
|
1861
|
+
};
|
|
1862
|
+
export type PluginUserError = UserError & {
|
|
1863
|
+
code: Scalars["String"]["output"];
|
|
1864
|
+
reason: PluginErrorReason;
|
|
1865
|
+
};
|
|
1763
1866
|
export type Project = {
|
|
1764
1867
|
backups: Array<Backup>;
|
|
1765
1868
|
createdAt: Scalars["DateTime"]["output"];
|
|
@@ -1817,6 +1920,7 @@ export type QueryRoot = {
|
|
|
1817
1920
|
interceptMessages: InterceptMessageConnection;
|
|
1818
1921
|
interceptOptions: InterceptOptions;
|
|
1819
1922
|
interceptStatus: InterceptStatus;
|
|
1923
|
+
pluginPackages: Array<PluginPackage>;
|
|
1820
1924
|
projects: Array<Project>;
|
|
1821
1925
|
replayEntry?: Maybe<ReplayEntry>;
|
|
1822
1926
|
replaySession?: Maybe<ReplaySession>;
|
|
@@ -2382,6 +2486,11 @@ export type SetConfigPortPayload = {
|
|
|
2382
2486
|
export type SetInterceptOptionsPayload = {
|
|
2383
2487
|
options: InterceptOptions;
|
|
2384
2488
|
};
|
|
2489
|
+
export type SetPluginDataError = OtherUserError | PluginUserError | UnknownIdUserError;
|
|
2490
|
+
export type SetPluginDataPayload = {
|
|
2491
|
+
error?: Maybe<SetPluginDataError>;
|
|
2492
|
+
plugin?: Maybe<Plugin>;
|
|
2493
|
+
};
|
|
2385
2494
|
export declare const SitemapDescendantsDepth: {
|
|
2386
2495
|
readonly All: "ALL";
|
|
2387
2496
|
readonly Direct: "DIRECT";
|
|
@@ -2590,6 +2699,7 @@ export type SubscriptionRoot = {
|
|
|
2590
2699
|
createdFinding: CreatedFindingPayload;
|
|
2591
2700
|
createdInterceptEntry: CreatedInterceptEntryPayload;
|
|
2592
2701
|
createdInterceptMessage: CreatedInterceptMessagePayload;
|
|
2702
|
+
createdPluginPackage: CreatedPluginPackagePayload;
|
|
2593
2703
|
createdProject: CreatedProjectPayload;
|
|
2594
2704
|
createdReplaySession: CreatedReplaySessionPayload;
|
|
2595
2705
|
createdReplaySessionCollection: CreatedReplaySessionCollectionPayload;
|
|
@@ -2614,6 +2724,7 @@ export type SubscriptionRoot = {
|
|
|
2614
2724
|
deletedHostedFile: DeletedHostedFilePayload;
|
|
2615
2725
|
deletedInterceptEntry: DeletedInterceptEntryPayload;
|
|
2616
2726
|
deletedInterceptMessage: DeletedInterceptMessagePayload;
|
|
2727
|
+
deletedPluginPackage: DeletedPluginPackagePayload;
|
|
2617
2728
|
deletedProject: DeletedProjectPayload;
|
|
2618
2729
|
deletedReplaySession: DeletedReplaySessionPayload;
|
|
2619
2730
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
@@ -2644,6 +2755,7 @@ export type SubscriptionRoot = {
|
|
|
2644
2755
|
updatedInterceptEntry: UpdatedInterceptEntryPayload;
|
|
2645
2756
|
updatedInterceptOptions: UpdatedInterceptOptionsPayload;
|
|
2646
2757
|
updatedInterceptStatus: UpdatedInterceptStatusPayload;
|
|
2758
|
+
updatedPlugin: UpdatedPluginPayload;
|
|
2647
2759
|
updatedProject: UpdatedProjectPayload;
|
|
2648
2760
|
updatedReplaySession: UpdatedReplaySessionPayload;
|
|
2649
2761
|
updatedReplaySessionCollection: UpdatedReplaySessionCollectionPayload;
|
|
@@ -2767,11 +2879,21 @@ export type TestUpstreamProxyInput = {
|
|
|
2767
2879
|
export type TestUpstreamProxyPayload = {
|
|
2768
2880
|
success?: Maybe<Scalars["Boolean"]["output"]>;
|
|
2769
2881
|
};
|
|
2882
|
+
export type TogglePluginError = OtherUserError | PluginUserError | UnknownIdUserError;
|
|
2883
|
+
export type TogglePluginPayload = {
|
|
2884
|
+
error?: Maybe<TogglePluginError>;
|
|
2885
|
+
plugin?: Maybe<Plugin>;
|
|
2886
|
+
};
|
|
2770
2887
|
export type ToggleWorkflowError = OtherUserError | UnknownIdUserError;
|
|
2771
2888
|
export type ToggleWorkflowPayload = {
|
|
2772
2889
|
error?: Maybe<ToggleWorkflowError>;
|
|
2773
2890
|
workflow?: Maybe<Workflow>;
|
|
2774
2891
|
};
|
|
2892
|
+
export type UninstallPluginPackageError = OtherUserError | UnknownIdUserError;
|
|
2893
|
+
export type UninstallPluginPackagePayload = {
|
|
2894
|
+
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
2895
|
+
error?: Maybe<UninstallPluginPackageError>;
|
|
2896
|
+
};
|
|
2775
2897
|
export type UnknownIdUserError = UserError & {
|
|
2776
2898
|
code: Scalars["String"]["output"];
|
|
2777
2899
|
id: Scalars["ID"]["output"];
|
|
@@ -2779,12 +2901,14 @@ export type UnknownIdUserError = UserError & {
|
|
|
2779
2901
|
export type UnsupportedPlatformUserError = UserError & {
|
|
2780
2902
|
code: Scalars["String"]["output"];
|
|
2781
2903
|
};
|
|
2904
|
+
export type UpdateAutomateSessionError = OtherUserError | PermissionDeniedUserError;
|
|
2782
2905
|
export type UpdateAutomateSessionInput = {
|
|
2783
2906
|
connection: ConnectionInfoInput;
|
|
2784
2907
|
raw: Scalars["Blob"]["input"];
|
|
2785
2908
|
settings: AutomateSettingsInput;
|
|
2786
2909
|
};
|
|
2787
2910
|
export type UpdateAutomateSessionPayload = {
|
|
2911
|
+
error?: Maybe<UpdateAutomateSessionError>;
|
|
2788
2912
|
session?: Maybe<AutomateSession>;
|
|
2789
2913
|
};
|
|
2790
2914
|
export type UpdateBrowserError = OtherUserError | RenderFailedUserError | UnsupportedPlatformUserError;
|
|
@@ -2912,6 +3036,9 @@ export type UpdatedInterceptOptionsPayload = {
|
|
|
2912
3036
|
export type UpdatedInterceptStatusPayload = {
|
|
2913
3037
|
status: InterceptStatus;
|
|
2914
3038
|
};
|
|
3039
|
+
export type UpdatedPluginPayload = {
|
|
3040
|
+
plugin: Plugin;
|
|
3041
|
+
};
|
|
2915
3042
|
export type UpdatedProjectPayload = {
|
|
2916
3043
|
project: Project;
|
|
2917
3044
|
};
|
|
@@ -3013,6 +3140,7 @@ export type UpstreamProxyKind = (typeof UpstreamProxyKind)[keyof typeof Upstream
|
|
|
3013
3140
|
export type User = {
|
|
3014
3141
|
assistantUsage: AssistantUsage;
|
|
3015
3142
|
id: Scalars["ID"]["output"];
|
|
3143
|
+
plugins: Array<PluginFrontend>;
|
|
3016
3144
|
profile: UserProfile;
|
|
3017
3145
|
settings?: Maybe<UserSettings>;
|
|
3018
3146
|
};
|
|
@@ -3207,7 +3335,6 @@ export type AutomateEntryFullFragment = {
|
|
|
3207
3335
|
};
|
|
3208
3336
|
payloads: Array<{
|
|
3209
3337
|
__typename: "AutomatePayload";
|
|
3210
|
-
kind: AutomatePayloadKind;
|
|
3211
3338
|
options: {
|
|
3212
3339
|
__typename: "AutomateHostedFilePayload";
|
|
3213
3340
|
id: string;
|
|
@@ -3221,19 +3348,21 @@ export type AutomateEntryFullFragment = {
|
|
|
3221
3348
|
};
|
|
3222
3349
|
preprocessors: Array<{
|
|
3223
3350
|
__typename: "AutomatePreprocessor";
|
|
3224
|
-
kind: AutomatePreprocessorKind;
|
|
3225
3351
|
options: {
|
|
3352
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
3226
3353
|
value: string;
|
|
3227
3354
|
} | {
|
|
3355
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
3228
3356
|
value: string;
|
|
3357
|
+
} | {
|
|
3358
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
3359
|
+
charset?: string | undefined | null;
|
|
3360
|
+
nonAscii: boolean;
|
|
3361
|
+
} | {
|
|
3362
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
3363
|
+
id: string;
|
|
3229
3364
|
};
|
|
3230
3365
|
}>;
|
|
3231
|
-
urlEncode: {
|
|
3232
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
3233
|
-
charset?: string | undefined | null;
|
|
3234
|
-
enabled: boolean;
|
|
3235
|
-
nonAscii: boolean;
|
|
3236
|
-
};
|
|
3237
3366
|
}>;
|
|
3238
3367
|
placeholders: Array<{
|
|
3239
3368
|
__typename: "AutomatePlaceholder";
|
|
@@ -3382,7 +3511,6 @@ export type AutomateSessionFullFragment = {
|
|
|
3382
3511
|
};
|
|
3383
3512
|
payloads: Array<{
|
|
3384
3513
|
__typename: "AutomatePayload";
|
|
3385
|
-
kind: AutomatePayloadKind;
|
|
3386
3514
|
options: {
|
|
3387
3515
|
__typename: "AutomateHostedFilePayload";
|
|
3388
3516
|
id: string;
|
|
@@ -3396,19 +3524,21 @@ export type AutomateSessionFullFragment = {
|
|
|
3396
3524
|
};
|
|
3397
3525
|
preprocessors: Array<{
|
|
3398
3526
|
__typename: "AutomatePreprocessor";
|
|
3399
|
-
kind: AutomatePreprocessorKind;
|
|
3400
3527
|
options: {
|
|
3528
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
3401
3529
|
value: string;
|
|
3402
3530
|
} | {
|
|
3531
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
3403
3532
|
value: string;
|
|
3533
|
+
} | {
|
|
3534
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
3535
|
+
charset?: string | undefined | null;
|
|
3536
|
+
nonAscii: boolean;
|
|
3537
|
+
} | {
|
|
3538
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
3539
|
+
id: string;
|
|
3404
3540
|
};
|
|
3405
3541
|
}>;
|
|
3406
|
-
urlEncode: {
|
|
3407
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
3408
|
-
charset?: string | undefined | null;
|
|
3409
|
-
enabled: boolean;
|
|
3410
|
-
nonAscii: boolean;
|
|
3411
|
-
};
|
|
3412
3542
|
}>;
|
|
3413
3543
|
placeholders: Array<{
|
|
3414
3544
|
__typename: "AutomatePlaceholder";
|
|
@@ -3443,7 +3573,6 @@ export type AutomateSettingsFullFragment = {
|
|
|
3443
3573
|
};
|
|
3444
3574
|
payloads: Array<{
|
|
3445
3575
|
__typename: "AutomatePayload";
|
|
3446
|
-
kind: AutomatePayloadKind;
|
|
3447
3576
|
options: {
|
|
3448
3577
|
__typename: "AutomateHostedFilePayload";
|
|
3449
3578
|
id: string;
|
|
@@ -3457,19 +3586,21 @@ export type AutomateSettingsFullFragment = {
|
|
|
3457
3586
|
};
|
|
3458
3587
|
preprocessors: Array<{
|
|
3459
3588
|
__typename: "AutomatePreprocessor";
|
|
3460
|
-
kind: AutomatePreprocessorKind;
|
|
3461
3589
|
options: {
|
|
3590
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
3462
3591
|
value: string;
|
|
3463
3592
|
} | {
|
|
3593
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
3464
3594
|
value: string;
|
|
3595
|
+
} | {
|
|
3596
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
3597
|
+
charset?: string | undefined | null;
|
|
3598
|
+
nonAscii: boolean;
|
|
3599
|
+
} | {
|
|
3600
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
3601
|
+
id: string;
|
|
3465
3602
|
};
|
|
3466
3603
|
}>;
|
|
3467
|
-
urlEncode: {
|
|
3468
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
3469
|
-
charset?: string | undefined | null;
|
|
3470
|
-
enabled: boolean;
|
|
3471
|
-
nonAscii: boolean;
|
|
3472
|
-
};
|
|
3473
3604
|
}>;
|
|
3474
3605
|
placeholders: Array<{
|
|
3475
3606
|
__typename: "AutomatePlaceholder";
|
|
@@ -3489,7 +3620,6 @@ export type RetryOnFailureSettingFullFragment = {
|
|
|
3489
3620
|
};
|
|
3490
3621
|
export type AutomatePayloadFullFragment = {
|
|
3491
3622
|
__typename: "AutomatePayload";
|
|
3492
|
-
kind: AutomatePayloadKind;
|
|
3493
3623
|
options: {
|
|
3494
3624
|
__typename: "AutomateHostedFilePayload";
|
|
3495
3625
|
id: string;
|
|
@@ -3503,20 +3633,56 @@ export type AutomatePayloadFullFragment = {
|
|
|
3503
3633
|
};
|
|
3504
3634
|
preprocessors: Array<{
|
|
3505
3635
|
__typename: "AutomatePreprocessor";
|
|
3506
|
-
kind: AutomatePreprocessorKind;
|
|
3507
3636
|
options: {
|
|
3637
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
3508
3638
|
value: string;
|
|
3509
3639
|
} | {
|
|
3640
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
3510
3641
|
value: string;
|
|
3642
|
+
} | {
|
|
3643
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
3644
|
+
charset?: string | undefined | null;
|
|
3645
|
+
nonAscii: boolean;
|
|
3646
|
+
} | {
|
|
3647
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
3648
|
+
id: string;
|
|
3511
3649
|
};
|
|
3512
3650
|
}>;
|
|
3513
|
-
|
|
3514
|
-
|
|
3651
|
+
};
|
|
3652
|
+
export type AutomatePreprocessorFullFragment = {
|
|
3653
|
+
__typename: "AutomatePreprocessor";
|
|
3654
|
+
options: {
|
|
3655
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
3656
|
+
value: string;
|
|
3657
|
+
} | {
|
|
3658
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
3659
|
+
value: string;
|
|
3660
|
+
} | {
|
|
3661
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
3515
3662
|
charset?: string | undefined | null;
|
|
3516
|
-
enabled: boolean;
|
|
3517
3663
|
nonAscii: boolean;
|
|
3664
|
+
} | {
|
|
3665
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
3666
|
+
id: string;
|
|
3518
3667
|
};
|
|
3519
3668
|
};
|
|
3669
|
+
export type AutomatePrefixPreprocessorFullFragment = {
|
|
3670
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
3671
|
+
value: string;
|
|
3672
|
+
};
|
|
3673
|
+
export type AutomateSuffixPreprocessorFullFragment = {
|
|
3674
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
3675
|
+
value: string;
|
|
3676
|
+
};
|
|
3677
|
+
export type AutomateWorkflowPreprocessorFullFragment = {
|
|
3678
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
3679
|
+
id: string;
|
|
3680
|
+
};
|
|
3681
|
+
export type AutomateUrlEncodePreprocessorFullFragment = {
|
|
3682
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
3683
|
+
charset?: string | undefined | null;
|
|
3684
|
+
nonAscii: boolean;
|
|
3685
|
+
};
|
|
3520
3686
|
export type AutomatePlaceholderFullFragment = {
|
|
3521
3687
|
__typename: "AutomatePlaceholder";
|
|
3522
3688
|
start: number;
|
|
@@ -3856,6 +4022,10 @@ type UserErrorFull_PermissionDeniedUserError_Fragment = {
|
|
|
3856
4022
|
__typename: "PermissionDeniedUserError";
|
|
3857
4023
|
code: string;
|
|
3858
4024
|
};
|
|
4025
|
+
type UserErrorFull_PluginUserError_Fragment = {
|
|
4026
|
+
__typename: "PluginUserError";
|
|
4027
|
+
code: string;
|
|
4028
|
+
};
|
|
3859
4029
|
type UserErrorFull_ProjectLockedUserError_Fragment = {
|
|
3860
4030
|
__typename: "ProjectLockedUserError";
|
|
3861
4031
|
code: string;
|
|
@@ -3880,12 +4050,17 @@ type UserErrorFull_WorkflowUserError_Fragment = {
|
|
|
3880
4050
|
__typename: "WorkflowUserError";
|
|
3881
4051
|
code: string;
|
|
3882
4052
|
};
|
|
3883
|
-
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
4053
|
+
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
3884
4054
|
export type InvalidHttpqlUserErrorFullFragment = {
|
|
3885
4055
|
__typename: "InvalidHTTPQLUserError";
|
|
3886
4056
|
query: string;
|
|
3887
4057
|
code: string;
|
|
3888
4058
|
};
|
|
4059
|
+
export type PluginUserErrorFullFragment = {
|
|
4060
|
+
__typename: "PluginUserError";
|
|
4061
|
+
reason: PluginErrorReason;
|
|
4062
|
+
code: string;
|
|
4063
|
+
};
|
|
3889
4064
|
export type DataExportMetaFragment = {
|
|
3890
4065
|
__typename: "DataExport";
|
|
3891
4066
|
id: string;
|
|
@@ -4437,6 +4612,85 @@ export type PageInfoFullFragment = {
|
|
|
4437
4612
|
startCursor?: string | undefined | null;
|
|
4438
4613
|
endCursor?: string | undefined | null;
|
|
4439
4614
|
};
|
|
4615
|
+
export type PluginMetaFragment = {
|
|
4616
|
+
__typename: "PluginFrontend";
|
|
4617
|
+
id: string;
|
|
4618
|
+
name?: string | undefined | null;
|
|
4619
|
+
enabled: boolean;
|
|
4620
|
+
manifestId: string;
|
|
4621
|
+
package: {
|
|
4622
|
+
id: string;
|
|
4623
|
+
};
|
|
4624
|
+
};
|
|
4625
|
+
export type PluginFrontendMetaFragment = {
|
|
4626
|
+
__typename: "PluginFrontend";
|
|
4627
|
+
entrypoint?: string | undefined | null;
|
|
4628
|
+
style?: string | undefined | null;
|
|
4629
|
+
id: string;
|
|
4630
|
+
name?: string | undefined | null;
|
|
4631
|
+
enabled: boolean;
|
|
4632
|
+
manifestId: string;
|
|
4633
|
+
package: {
|
|
4634
|
+
id: string;
|
|
4635
|
+
};
|
|
4636
|
+
};
|
|
4637
|
+
export type PluginFrontendFullFragment = {
|
|
4638
|
+
__typename: "PluginFrontend";
|
|
4639
|
+
data?: JSONValue | undefined | null;
|
|
4640
|
+
entrypoint?: string | undefined | null;
|
|
4641
|
+
style?: string | undefined | null;
|
|
4642
|
+
id: string;
|
|
4643
|
+
name?: string | undefined | null;
|
|
4644
|
+
enabled: boolean;
|
|
4645
|
+
manifestId: string;
|
|
4646
|
+
package: {
|
|
4647
|
+
id: string;
|
|
4648
|
+
};
|
|
4649
|
+
};
|
|
4650
|
+
export type PluginAuthorFullFragment = {
|
|
4651
|
+
name?: string | undefined | null;
|
|
4652
|
+
email?: string | undefined | null;
|
|
4653
|
+
url?: string | undefined | null;
|
|
4654
|
+
};
|
|
4655
|
+
export type PluginPackageMetaFragment = {
|
|
4656
|
+
id: string;
|
|
4657
|
+
name?: string | undefined | null;
|
|
4658
|
+
description?: string | undefined | null;
|
|
4659
|
+
version: string;
|
|
4660
|
+
installedAt: Date;
|
|
4661
|
+
manifestId: string;
|
|
4662
|
+
author?: {
|
|
4663
|
+
name?: string | undefined | null;
|
|
4664
|
+
email?: string | undefined | null;
|
|
4665
|
+
url?: string | undefined | null;
|
|
4666
|
+
} | undefined | null;
|
|
4667
|
+
};
|
|
4668
|
+
export type PluginPackageFullFragment = {
|
|
4669
|
+
id: string;
|
|
4670
|
+
name?: string | undefined | null;
|
|
4671
|
+
description?: string | undefined | null;
|
|
4672
|
+
version: string;
|
|
4673
|
+
installedAt: Date;
|
|
4674
|
+
manifestId: string;
|
|
4675
|
+
plugins: Array<{
|
|
4676
|
+
__typename: "PluginFrontend";
|
|
4677
|
+
data?: JSONValue | undefined | null;
|
|
4678
|
+
entrypoint?: string | undefined | null;
|
|
4679
|
+
style?: string | undefined | null;
|
|
4680
|
+
id: string;
|
|
4681
|
+
name?: string | undefined | null;
|
|
4682
|
+
enabled: boolean;
|
|
4683
|
+
manifestId: string;
|
|
4684
|
+
package: {
|
|
4685
|
+
id: string;
|
|
4686
|
+
};
|
|
4687
|
+
}>;
|
|
4688
|
+
author?: {
|
|
4689
|
+
name?: string | undefined | null;
|
|
4690
|
+
email?: string | undefined | null;
|
|
4691
|
+
url?: string | undefined | null;
|
|
4692
|
+
} | undefined | null;
|
|
4693
|
+
};
|
|
4440
4694
|
export type ProjectFullFragment = {
|
|
4441
4695
|
__typename: "Project";
|
|
4442
4696
|
id: string;
|
|
@@ -4533,44 +4787,41 @@ export type ReplaySessionMetaFragment = {
|
|
|
4533
4787
|
id: string;
|
|
4534
4788
|
};
|
|
4535
4789
|
entries: {
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4790
|
+
nodes: Array<{
|
|
4791
|
+
__typename: "ReplayEntry";
|
|
4792
|
+
id: string;
|
|
4793
|
+
error?: string | undefined | null;
|
|
4794
|
+
sessionId: string;
|
|
4795
|
+
request: {
|
|
4796
|
+
__typename: "Request";
|
|
4540
4797
|
id: string;
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4798
|
+
host: string;
|
|
4799
|
+
port: number;
|
|
4800
|
+
path: string;
|
|
4801
|
+
query: string;
|
|
4802
|
+
method: string;
|
|
4803
|
+
edited: boolean;
|
|
4804
|
+
isTls: boolean;
|
|
4805
|
+
length: number;
|
|
4806
|
+
alteration: Alteration;
|
|
4807
|
+
fileExtension?: string | undefined | null;
|
|
4808
|
+
source: Source;
|
|
4809
|
+
createdAt: Date;
|
|
4810
|
+
metadata: {
|
|
4811
|
+
__typename: "RequestMetadata";
|
|
4545
4812
|
id: string;
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4813
|
+
color?: string | undefined | null;
|
|
4814
|
+
};
|
|
4815
|
+
response?: {
|
|
4816
|
+
__typename: "Response";
|
|
4817
|
+
id: string;
|
|
4818
|
+
statusCode: number;
|
|
4819
|
+
roundtripTime: number;
|
|
4553
4820
|
length: number;
|
|
4554
|
-
alteration: Alteration;
|
|
4555
|
-
fileExtension?: string | undefined | null;
|
|
4556
|
-
source: Source;
|
|
4557
4821
|
createdAt: Date;
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
color?: string | undefined | null;
|
|
4562
|
-
};
|
|
4563
|
-
response?: {
|
|
4564
|
-
__typename: "Response";
|
|
4565
|
-
id: string;
|
|
4566
|
-
statusCode: number;
|
|
4567
|
-
roundtripTime: number;
|
|
4568
|
-
length: number;
|
|
4569
|
-
createdAt: Date;
|
|
4570
|
-
alteration: Alteration;
|
|
4571
|
-
edited: boolean;
|
|
4572
|
-
} | undefined | null;
|
|
4573
|
-
};
|
|
4822
|
+
alteration: Alteration;
|
|
4823
|
+
edited: boolean;
|
|
4824
|
+
} | undefined | null;
|
|
4574
4825
|
};
|
|
4575
4826
|
}>;
|
|
4576
4827
|
pageInfo: {
|
|
@@ -4636,44 +4887,41 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
4636
4887
|
id: string;
|
|
4637
4888
|
};
|
|
4638
4889
|
entries: {
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4890
|
+
nodes: Array<{
|
|
4891
|
+
__typename: "ReplayEntry";
|
|
4892
|
+
id: string;
|
|
4893
|
+
error?: string | undefined | null;
|
|
4894
|
+
sessionId: string;
|
|
4895
|
+
request: {
|
|
4896
|
+
__typename: "Request";
|
|
4643
4897
|
id: string;
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4898
|
+
host: string;
|
|
4899
|
+
port: number;
|
|
4900
|
+
path: string;
|
|
4901
|
+
query: string;
|
|
4902
|
+
method: string;
|
|
4903
|
+
edited: boolean;
|
|
4904
|
+
isTls: boolean;
|
|
4905
|
+
length: number;
|
|
4906
|
+
alteration: Alteration;
|
|
4907
|
+
fileExtension?: string | undefined | null;
|
|
4908
|
+
source: Source;
|
|
4909
|
+
createdAt: Date;
|
|
4910
|
+
metadata: {
|
|
4911
|
+
__typename: "RequestMetadata";
|
|
4648
4912
|
id: string;
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4913
|
+
color?: string | undefined | null;
|
|
4914
|
+
};
|
|
4915
|
+
response?: {
|
|
4916
|
+
__typename: "Response";
|
|
4917
|
+
id: string;
|
|
4918
|
+
statusCode: number;
|
|
4919
|
+
roundtripTime: number;
|
|
4656
4920
|
length: number;
|
|
4657
|
-
alteration: Alteration;
|
|
4658
|
-
fileExtension?: string | undefined | null;
|
|
4659
|
-
source: Source;
|
|
4660
4921
|
createdAt: Date;
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
color?: string | undefined | null;
|
|
4665
|
-
};
|
|
4666
|
-
response?: {
|
|
4667
|
-
__typename: "Response";
|
|
4668
|
-
id: string;
|
|
4669
|
-
statusCode: number;
|
|
4670
|
-
roundtripTime: number;
|
|
4671
|
-
length: number;
|
|
4672
|
-
createdAt: Date;
|
|
4673
|
-
alteration: Alteration;
|
|
4674
|
-
edited: boolean;
|
|
4675
|
-
} | undefined | null;
|
|
4676
|
-
};
|
|
4922
|
+
alteration: Alteration;
|
|
4923
|
+
edited: boolean;
|
|
4924
|
+
} | undefined | null;
|
|
4677
4925
|
};
|
|
4678
4926
|
}>;
|
|
4679
4927
|
pageInfo: {
|
|
@@ -5193,8 +5441,8 @@ export type UserProfileFullFragment = {
|
|
|
5193
5441
|
};
|
|
5194
5442
|
export type UserSettingsFullFragment = {
|
|
5195
5443
|
__typename: "UserSettings";
|
|
5196
|
-
data:
|
|
5197
|
-
migrations:
|
|
5444
|
+
data: JSONValue;
|
|
5445
|
+
migrations: JSONValue;
|
|
5198
5446
|
};
|
|
5199
5447
|
export type WorkflowMetaFragment = {
|
|
5200
5448
|
__typename: "Workflow";
|
|
@@ -5206,7 +5454,7 @@ export type WorkflowMetaFragment = {
|
|
|
5206
5454
|
};
|
|
5207
5455
|
export type WorkflowFullFragment = {
|
|
5208
5456
|
__typename: "Workflow";
|
|
5209
|
-
definition:
|
|
5457
|
+
definition: JSONValue;
|
|
5210
5458
|
id: string;
|
|
5211
5459
|
kind: WorkflowKind;
|
|
5212
5460
|
name: string;
|
|
@@ -5215,7 +5463,7 @@ export type WorkflowFullFragment = {
|
|
|
5215
5463
|
};
|
|
5216
5464
|
export type WorkflowNodeDefinitionFullFragment = {
|
|
5217
5465
|
__typename: "WorkflowNodeDefinition";
|
|
5218
|
-
raw:
|
|
5466
|
+
raw: JSONValue;
|
|
5219
5467
|
};
|
|
5220
5468
|
export type WorkflowTaskMetaFragment = {
|
|
5221
5469
|
id: string;
|
|
@@ -5417,7 +5665,6 @@ export type RenameAutomateEntryMutation = {
|
|
|
5417
5665
|
};
|
|
5418
5666
|
payloads: Array<{
|
|
5419
5667
|
__typename: "AutomatePayload";
|
|
5420
|
-
kind: AutomatePayloadKind;
|
|
5421
5668
|
options: {
|
|
5422
5669
|
__typename: "AutomateHostedFilePayload";
|
|
5423
5670
|
id: string;
|
|
@@ -5431,19 +5678,21 @@ export type RenameAutomateEntryMutation = {
|
|
|
5431
5678
|
};
|
|
5432
5679
|
preprocessors: Array<{
|
|
5433
5680
|
__typename: "AutomatePreprocessor";
|
|
5434
|
-
kind: AutomatePreprocessorKind;
|
|
5435
5681
|
options: {
|
|
5682
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
5436
5683
|
value: string;
|
|
5437
5684
|
} | {
|
|
5685
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
5438
5686
|
value: string;
|
|
5687
|
+
} | {
|
|
5688
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
5689
|
+
charset?: string | undefined | null;
|
|
5690
|
+
nonAscii: boolean;
|
|
5691
|
+
} | {
|
|
5692
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
5693
|
+
id: string;
|
|
5439
5694
|
};
|
|
5440
5695
|
}>;
|
|
5441
|
-
urlEncode: {
|
|
5442
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
5443
|
-
charset?: string | undefined | null;
|
|
5444
|
-
enabled: boolean;
|
|
5445
|
-
nonAscii: boolean;
|
|
5446
|
-
};
|
|
5447
5696
|
}>;
|
|
5448
5697
|
placeholders: Array<{
|
|
5449
5698
|
__typename: "AutomatePlaceholder";
|
|
@@ -5491,7 +5740,6 @@ export type CreateAutomateSessionMutation = {
|
|
|
5491
5740
|
};
|
|
5492
5741
|
payloads: Array<{
|
|
5493
5742
|
__typename: "AutomatePayload";
|
|
5494
|
-
kind: AutomatePayloadKind;
|
|
5495
5743
|
options: {
|
|
5496
5744
|
__typename: "AutomateHostedFilePayload";
|
|
5497
5745
|
id: string;
|
|
@@ -5505,19 +5753,21 @@ export type CreateAutomateSessionMutation = {
|
|
|
5505
5753
|
};
|
|
5506
5754
|
preprocessors: Array<{
|
|
5507
5755
|
__typename: "AutomatePreprocessor";
|
|
5508
|
-
kind: AutomatePreprocessorKind;
|
|
5509
5756
|
options: {
|
|
5757
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
5510
5758
|
value: string;
|
|
5511
5759
|
} | {
|
|
5760
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
5512
5761
|
value: string;
|
|
5762
|
+
} | {
|
|
5763
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
5764
|
+
charset?: string | undefined | null;
|
|
5765
|
+
nonAscii: boolean;
|
|
5766
|
+
} | {
|
|
5767
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
5768
|
+
id: string;
|
|
5513
5769
|
};
|
|
5514
5770
|
}>;
|
|
5515
|
-
urlEncode: {
|
|
5516
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
5517
|
-
charset?: string | undefined | null;
|
|
5518
|
-
enabled: boolean;
|
|
5519
|
-
nonAscii: boolean;
|
|
5520
|
-
};
|
|
5521
5771
|
}>;
|
|
5522
5772
|
placeholders: Array<{
|
|
5523
5773
|
__typename: "AutomatePlaceholder";
|
|
@@ -5580,7 +5830,6 @@ export type RenameAutomateSessionMutation = {
|
|
|
5580
5830
|
};
|
|
5581
5831
|
payloads: Array<{
|
|
5582
5832
|
__typename: "AutomatePayload";
|
|
5583
|
-
kind: AutomatePayloadKind;
|
|
5584
5833
|
options: {
|
|
5585
5834
|
__typename: "AutomateHostedFilePayload";
|
|
5586
5835
|
id: string;
|
|
@@ -5594,19 +5843,21 @@ export type RenameAutomateSessionMutation = {
|
|
|
5594
5843
|
};
|
|
5595
5844
|
preprocessors: Array<{
|
|
5596
5845
|
__typename: "AutomatePreprocessor";
|
|
5597
|
-
kind: AutomatePreprocessorKind;
|
|
5598
5846
|
options: {
|
|
5847
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
5599
5848
|
value: string;
|
|
5600
5849
|
} | {
|
|
5850
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
5601
5851
|
value: string;
|
|
5852
|
+
} | {
|
|
5853
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
5854
|
+
charset?: string | undefined | null;
|
|
5855
|
+
nonAscii: boolean;
|
|
5856
|
+
} | {
|
|
5857
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
5858
|
+
id: string;
|
|
5602
5859
|
};
|
|
5603
5860
|
}>;
|
|
5604
|
-
urlEncode: {
|
|
5605
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
5606
|
-
charset?: string | undefined | null;
|
|
5607
|
-
enabled: boolean;
|
|
5608
|
-
nonAscii: boolean;
|
|
5609
|
-
};
|
|
5610
5861
|
}>;
|
|
5611
5862
|
placeholders: Array<{
|
|
5612
5863
|
__typename: "AutomatePlaceholder";
|
|
@@ -5661,7 +5912,6 @@ export type UpdateAutomateSessionMutation = {
|
|
|
5661
5912
|
};
|
|
5662
5913
|
payloads: Array<{
|
|
5663
5914
|
__typename: "AutomatePayload";
|
|
5664
|
-
kind: AutomatePayloadKind;
|
|
5665
5915
|
options: {
|
|
5666
5916
|
__typename: "AutomateHostedFilePayload";
|
|
5667
5917
|
id: string;
|
|
@@ -5675,19 +5925,21 @@ export type UpdateAutomateSessionMutation = {
|
|
|
5675
5925
|
};
|
|
5676
5926
|
preprocessors: Array<{
|
|
5677
5927
|
__typename: "AutomatePreprocessor";
|
|
5678
|
-
kind: AutomatePreprocessorKind;
|
|
5679
5928
|
options: {
|
|
5929
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
5680
5930
|
value: string;
|
|
5681
5931
|
} | {
|
|
5932
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
5682
5933
|
value: string;
|
|
5934
|
+
} | {
|
|
5935
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
5936
|
+
charset?: string | undefined | null;
|
|
5937
|
+
nonAscii: boolean;
|
|
5938
|
+
} | {
|
|
5939
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
5940
|
+
id: string;
|
|
5683
5941
|
};
|
|
5684
5942
|
}>;
|
|
5685
|
-
urlEncode: {
|
|
5686
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
5687
|
-
charset?: string | undefined | null;
|
|
5688
|
-
enabled: boolean;
|
|
5689
|
-
nonAscii: boolean;
|
|
5690
|
-
};
|
|
5691
5943
|
}>;
|
|
5692
5944
|
placeholders: Array<{
|
|
5693
5945
|
__typename: "AutomatePlaceholder";
|
|
@@ -6419,6 +6671,129 @@ export type RankUpstreamProxyMutation = {
|
|
|
6419
6671
|
} | undefined | null;
|
|
6420
6672
|
};
|
|
6421
6673
|
};
|
|
6674
|
+
export type InstallPluginPackageMutationVariables = Exact<{
|
|
6675
|
+
input: InstallPluginPackageInput;
|
|
6676
|
+
}>;
|
|
6677
|
+
export type InstallPluginPackageMutation = {
|
|
6678
|
+
installPluginPackage: {
|
|
6679
|
+
package?: {
|
|
6680
|
+
id: string;
|
|
6681
|
+
name?: string | undefined | null;
|
|
6682
|
+
description?: string | undefined | null;
|
|
6683
|
+
version: string;
|
|
6684
|
+
installedAt: Date;
|
|
6685
|
+
manifestId: string;
|
|
6686
|
+
plugins: Array<{
|
|
6687
|
+
__typename: "PluginFrontend";
|
|
6688
|
+
data?: JSONValue | undefined | null;
|
|
6689
|
+
entrypoint?: string | undefined | null;
|
|
6690
|
+
style?: string | undefined | null;
|
|
6691
|
+
id: string;
|
|
6692
|
+
name?: string | undefined | null;
|
|
6693
|
+
enabled: boolean;
|
|
6694
|
+
manifestId: string;
|
|
6695
|
+
package: {
|
|
6696
|
+
id: string;
|
|
6697
|
+
};
|
|
6698
|
+
}>;
|
|
6699
|
+
author?: {
|
|
6700
|
+
name?: string | undefined | null;
|
|
6701
|
+
email?: string | undefined | null;
|
|
6702
|
+
url?: string | undefined | null;
|
|
6703
|
+
} | undefined | null;
|
|
6704
|
+
} | undefined | null;
|
|
6705
|
+
error?: {
|
|
6706
|
+
__typename: "OtherUserError";
|
|
6707
|
+
code: string;
|
|
6708
|
+
} | {
|
|
6709
|
+
__typename: "PluginUserError";
|
|
6710
|
+
reason: PluginErrorReason;
|
|
6711
|
+
code: string;
|
|
6712
|
+
} | undefined | null;
|
|
6713
|
+
};
|
|
6714
|
+
};
|
|
6715
|
+
export type UninstallPluginPackageMutationVariables = Exact<{
|
|
6716
|
+
id: Scalars["ID"]["input"];
|
|
6717
|
+
}>;
|
|
6718
|
+
export type UninstallPluginPackageMutation = {
|
|
6719
|
+
uninstallPluginPackage: {
|
|
6720
|
+
deletedId?: string | undefined | null;
|
|
6721
|
+
error?: {
|
|
6722
|
+
__typename: "OtherUserError";
|
|
6723
|
+
code: string;
|
|
6724
|
+
} | {
|
|
6725
|
+
__typename: "UnknownIdUserError";
|
|
6726
|
+
id: string;
|
|
6727
|
+
code: string;
|
|
6728
|
+
} | undefined | null;
|
|
6729
|
+
};
|
|
6730
|
+
};
|
|
6731
|
+
export type TogglePluginMutationVariables = Exact<{
|
|
6732
|
+
id: Scalars["ID"]["input"];
|
|
6733
|
+
enabled: Scalars["Boolean"]["input"];
|
|
6734
|
+
}>;
|
|
6735
|
+
export type TogglePluginMutation = {
|
|
6736
|
+
togglePlugin: {
|
|
6737
|
+
plugin?: {
|
|
6738
|
+
__typename: "PluginFrontend";
|
|
6739
|
+
data?: JSONValue | undefined | null;
|
|
6740
|
+
entrypoint?: string | undefined | null;
|
|
6741
|
+
style?: string | undefined | null;
|
|
6742
|
+
id: string;
|
|
6743
|
+
name?: string | undefined | null;
|
|
6744
|
+
enabled: boolean;
|
|
6745
|
+
manifestId: string;
|
|
6746
|
+
package: {
|
|
6747
|
+
id: string;
|
|
6748
|
+
};
|
|
6749
|
+
} | undefined | null;
|
|
6750
|
+
error?: {
|
|
6751
|
+
__typename: "OtherUserError";
|
|
6752
|
+
code: string;
|
|
6753
|
+
} | {
|
|
6754
|
+
__typename: "PluginUserError";
|
|
6755
|
+
reason: PluginErrorReason;
|
|
6756
|
+
code: string;
|
|
6757
|
+
} | {
|
|
6758
|
+
__typename: "UnknownIdUserError";
|
|
6759
|
+
id: string;
|
|
6760
|
+
code: string;
|
|
6761
|
+
} | undefined | null;
|
|
6762
|
+
};
|
|
6763
|
+
};
|
|
6764
|
+
export type SetPluginDataMutationVariables = Exact<{
|
|
6765
|
+
id: Scalars["ID"]["input"];
|
|
6766
|
+
data: Scalars["JSON"]["input"];
|
|
6767
|
+
}>;
|
|
6768
|
+
export type SetPluginDataMutation = {
|
|
6769
|
+
setPluginData: {
|
|
6770
|
+
plugin?: {
|
|
6771
|
+
__typename: "PluginFrontend";
|
|
6772
|
+
data?: JSONValue | undefined | null;
|
|
6773
|
+
entrypoint?: string | undefined | null;
|
|
6774
|
+
style?: string | undefined | null;
|
|
6775
|
+
id: string;
|
|
6776
|
+
name?: string | undefined | null;
|
|
6777
|
+
enabled: boolean;
|
|
6778
|
+
manifestId: string;
|
|
6779
|
+
package: {
|
|
6780
|
+
id: string;
|
|
6781
|
+
};
|
|
6782
|
+
} | undefined | null;
|
|
6783
|
+
error?: {
|
|
6784
|
+
__typename: "OtherUserError";
|
|
6785
|
+
code: string;
|
|
6786
|
+
} | {
|
|
6787
|
+
__typename: "PluginUserError";
|
|
6788
|
+
reason: PluginErrorReason;
|
|
6789
|
+
code: string;
|
|
6790
|
+
} | {
|
|
6791
|
+
__typename: "UnknownIdUserError";
|
|
6792
|
+
id: string;
|
|
6793
|
+
code: string;
|
|
6794
|
+
} | undefined | null;
|
|
6795
|
+
};
|
|
6796
|
+
};
|
|
6422
6797
|
export type CreateProjectMutationVariables = Exact<{
|
|
6423
6798
|
input: CreateProjectInput;
|
|
6424
6799
|
}>;
|
|
@@ -6566,44 +6941,41 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
6566
6941
|
id: string;
|
|
6567
6942
|
};
|
|
6568
6943
|
entries: {
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6944
|
+
nodes: Array<{
|
|
6945
|
+
__typename: "ReplayEntry";
|
|
6946
|
+
id: string;
|
|
6947
|
+
error?: string | undefined | null;
|
|
6948
|
+
sessionId: string;
|
|
6949
|
+
request: {
|
|
6950
|
+
__typename: "Request";
|
|
6573
6951
|
id: string;
|
|
6574
|
-
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6952
|
+
host: string;
|
|
6953
|
+
port: number;
|
|
6954
|
+
path: string;
|
|
6955
|
+
query: string;
|
|
6956
|
+
method: string;
|
|
6957
|
+
edited: boolean;
|
|
6958
|
+
isTls: boolean;
|
|
6959
|
+
length: number;
|
|
6960
|
+
alteration: Alteration;
|
|
6961
|
+
fileExtension?: string | undefined | null;
|
|
6962
|
+
source: Source;
|
|
6963
|
+
createdAt: Date;
|
|
6964
|
+
metadata: {
|
|
6965
|
+
__typename: "RequestMetadata";
|
|
6578
6966
|
id: string;
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6967
|
+
color?: string | undefined | null;
|
|
6968
|
+
};
|
|
6969
|
+
response?: {
|
|
6970
|
+
__typename: "Response";
|
|
6971
|
+
id: string;
|
|
6972
|
+
statusCode: number;
|
|
6973
|
+
roundtripTime: number;
|
|
6586
6974
|
length: number;
|
|
6587
|
-
alteration: Alteration;
|
|
6588
|
-
fileExtension?: string | undefined | null;
|
|
6589
|
-
source: Source;
|
|
6590
6975
|
createdAt: Date;
|
|
6591
|
-
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
color?: string | undefined | null;
|
|
6595
|
-
};
|
|
6596
|
-
response?: {
|
|
6597
|
-
__typename: "Response";
|
|
6598
|
-
id: string;
|
|
6599
|
-
statusCode: number;
|
|
6600
|
-
roundtripTime: number;
|
|
6601
|
-
length: number;
|
|
6602
|
-
createdAt: Date;
|
|
6603
|
-
alteration: Alteration;
|
|
6604
|
-
edited: boolean;
|
|
6605
|
-
} | undefined | null;
|
|
6606
|
-
};
|
|
6976
|
+
alteration: Alteration;
|
|
6977
|
+
edited: boolean;
|
|
6978
|
+
} | undefined | null;
|
|
6607
6979
|
};
|
|
6608
6980
|
}>;
|
|
6609
6981
|
pageInfo: {
|
|
@@ -6677,44 +7049,41 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
6677
7049
|
id: string;
|
|
6678
7050
|
};
|
|
6679
7051
|
entries: {
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
7052
|
+
nodes: Array<{
|
|
7053
|
+
__typename: "ReplayEntry";
|
|
7054
|
+
id: string;
|
|
7055
|
+
error?: string | undefined | null;
|
|
7056
|
+
sessionId: string;
|
|
7057
|
+
request: {
|
|
7058
|
+
__typename: "Request";
|
|
6684
7059
|
id: string;
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
7060
|
+
host: string;
|
|
7061
|
+
port: number;
|
|
7062
|
+
path: string;
|
|
7063
|
+
query: string;
|
|
7064
|
+
method: string;
|
|
7065
|
+
edited: boolean;
|
|
7066
|
+
isTls: boolean;
|
|
7067
|
+
length: number;
|
|
7068
|
+
alteration: Alteration;
|
|
7069
|
+
fileExtension?: string | undefined | null;
|
|
7070
|
+
source: Source;
|
|
7071
|
+
createdAt: Date;
|
|
7072
|
+
metadata: {
|
|
7073
|
+
__typename: "RequestMetadata";
|
|
6689
7074
|
id: string;
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
7075
|
+
color?: string | undefined | null;
|
|
7076
|
+
};
|
|
7077
|
+
response?: {
|
|
7078
|
+
__typename: "Response";
|
|
7079
|
+
id: string;
|
|
7080
|
+
statusCode: number;
|
|
7081
|
+
roundtripTime: number;
|
|
6697
7082
|
length: number;
|
|
6698
|
-
alteration: Alteration;
|
|
6699
|
-
fileExtension?: string | undefined | null;
|
|
6700
|
-
source: Source;
|
|
6701
7083
|
createdAt: Date;
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
color?: string | undefined | null;
|
|
6706
|
-
};
|
|
6707
|
-
response?: {
|
|
6708
|
-
__typename: "Response";
|
|
6709
|
-
id: string;
|
|
6710
|
-
statusCode: number;
|
|
6711
|
-
roundtripTime: number;
|
|
6712
|
-
length: number;
|
|
6713
|
-
createdAt: Date;
|
|
6714
|
-
alteration: Alteration;
|
|
6715
|
-
edited: boolean;
|
|
6716
|
-
} | undefined | null;
|
|
6717
|
-
};
|
|
7084
|
+
alteration: Alteration;
|
|
7085
|
+
edited: boolean;
|
|
7086
|
+
} | undefined | null;
|
|
6718
7087
|
};
|
|
6719
7088
|
}>;
|
|
6720
7089
|
pageInfo: {
|
|
@@ -6793,44 +7162,41 @@ export type RenameReplaySessionMutation = {
|
|
|
6793
7162
|
id: string;
|
|
6794
7163
|
};
|
|
6795
7164
|
entries: {
|
|
6796
|
-
|
|
6797
|
-
|
|
6798
|
-
|
|
6799
|
-
|
|
7165
|
+
nodes: Array<{
|
|
7166
|
+
__typename: "ReplayEntry";
|
|
7167
|
+
id: string;
|
|
7168
|
+
error?: string | undefined | null;
|
|
7169
|
+
sessionId: string;
|
|
7170
|
+
request: {
|
|
7171
|
+
__typename: "Request";
|
|
6800
7172
|
id: string;
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
7173
|
+
host: string;
|
|
7174
|
+
port: number;
|
|
7175
|
+
path: string;
|
|
7176
|
+
query: string;
|
|
7177
|
+
method: string;
|
|
7178
|
+
edited: boolean;
|
|
7179
|
+
isTls: boolean;
|
|
7180
|
+
length: number;
|
|
7181
|
+
alteration: Alteration;
|
|
7182
|
+
fileExtension?: string | undefined | null;
|
|
7183
|
+
source: Source;
|
|
7184
|
+
createdAt: Date;
|
|
7185
|
+
metadata: {
|
|
7186
|
+
__typename: "RequestMetadata";
|
|
6805
7187
|
id: string;
|
|
6806
|
-
|
|
6807
|
-
port: number;
|
|
6808
|
-
path: string;
|
|
6809
|
-
query: string;
|
|
6810
|
-
method: string;
|
|
6811
|
-
edited: boolean;
|
|
6812
|
-
isTls: boolean;
|
|
6813
|
-
length: number;
|
|
6814
|
-
alteration: Alteration;
|
|
6815
|
-
fileExtension?: string | undefined | null;
|
|
6816
|
-
source: Source;
|
|
6817
|
-
createdAt: Date;
|
|
6818
|
-
metadata: {
|
|
6819
|
-
__typename: "RequestMetadata";
|
|
6820
|
-
id: string;
|
|
6821
|
-
color?: string | undefined | null;
|
|
6822
|
-
};
|
|
6823
|
-
response?: {
|
|
6824
|
-
__typename: "Response";
|
|
6825
|
-
id: string;
|
|
6826
|
-
statusCode: number;
|
|
6827
|
-
roundtripTime: number;
|
|
6828
|
-
length: number;
|
|
6829
|
-
createdAt: Date;
|
|
6830
|
-
alteration: Alteration;
|
|
6831
|
-
edited: boolean;
|
|
6832
|
-
} | undefined | null;
|
|
7188
|
+
color?: string | undefined | null;
|
|
6833
7189
|
};
|
|
7190
|
+
response?: {
|
|
7191
|
+
__typename: "Response";
|
|
7192
|
+
id: string;
|
|
7193
|
+
statusCode: number;
|
|
7194
|
+
roundtripTime: number;
|
|
7195
|
+
length: number;
|
|
7196
|
+
createdAt: Date;
|
|
7197
|
+
alteration: Alteration;
|
|
7198
|
+
edited: boolean;
|
|
7199
|
+
} | undefined | null;
|
|
6834
7200
|
};
|
|
6835
7201
|
}>;
|
|
6836
7202
|
pageInfo: {
|
|
@@ -6900,44 +7266,41 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
6900
7266
|
id: string;
|
|
6901
7267
|
};
|
|
6902
7268
|
entries: {
|
|
6903
|
-
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
7269
|
+
nodes: Array<{
|
|
7270
|
+
__typename: "ReplayEntry";
|
|
7271
|
+
id: string;
|
|
7272
|
+
error?: string | undefined | null;
|
|
7273
|
+
sessionId: string;
|
|
7274
|
+
request: {
|
|
7275
|
+
__typename: "Request";
|
|
6907
7276
|
id: string;
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
6911
|
-
|
|
7277
|
+
host: string;
|
|
7278
|
+
port: number;
|
|
7279
|
+
path: string;
|
|
7280
|
+
query: string;
|
|
7281
|
+
method: string;
|
|
7282
|
+
edited: boolean;
|
|
7283
|
+
isTls: boolean;
|
|
7284
|
+
length: number;
|
|
7285
|
+
alteration: Alteration;
|
|
7286
|
+
fileExtension?: string | undefined | null;
|
|
7287
|
+
source: Source;
|
|
7288
|
+
createdAt: Date;
|
|
7289
|
+
metadata: {
|
|
7290
|
+
__typename: "RequestMetadata";
|
|
6912
7291
|
id: string;
|
|
6913
|
-
|
|
6914
|
-
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
|
|
6919
|
-
|
|
7292
|
+
color?: string | undefined | null;
|
|
7293
|
+
};
|
|
7294
|
+
response?: {
|
|
7295
|
+
__typename: "Response";
|
|
7296
|
+
id: string;
|
|
7297
|
+
statusCode: number;
|
|
7298
|
+
roundtripTime: number;
|
|
6920
7299
|
length: number;
|
|
6921
|
-
alteration: Alteration;
|
|
6922
|
-
fileExtension?: string | undefined | null;
|
|
6923
|
-
source: Source;
|
|
6924
7300
|
createdAt: Date;
|
|
6925
|
-
|
|
6926
|
-
|
|
6927
|
-
|
|
6928
|
-
color?: string | undefined | null;
|
|
6929
|
-
};
|
|
6930
|
-
response?: {
|
|
6931
|
-
__typename: "Response";
|
|
6932
|
-
id: string;
|
|
6933
|
-
statusCode: number;
|
|
6934
|
-
roundtripTime: number;
|
|
6935
|
-
length: number;
|
|
6936
|
-
createdAt: Date;
|
|
6937
|
-
alteration: Alteration;
|
|
6938
|
-
edited: boolean;
|
|
6939
|
-
} | undefined | null;
|
|
6940
|
-
};
|
|
7301
|
+
alteration: Alteration;
|
|
7302
|
+
edited: boolean;
|
|
7303
|
+
} | undefined | null;
|
|
6941
7304
|
};
|
|
6942
7305
|
}>;
|
|
6943
7306
|
pageInfo: {
|
|
@@ -7022,44 +7385,41 @@ export type CreateReplaySessionMutation = {
|
|
|
7022
7385
|
id: string;
|
|
7023
7386
|
};
|
|
7024
7387
|
entries: {
|
|
7025
|
-
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7388
|
+
nodes: Array<{
|
|
7389
|
+
__typename: "ReplayEntry";
|
|
7390
|
+
id: string;
|
|
7391
|
+
error?: string | undefined | null;
|
|
7392
|
+
sessionId: string;
|
|
7393
|
+
request: {
|
|
7394
|
+
__typename: "Request";
|
|
7029
7395
|
id: string;
|
|
7030
|
-
|
|
7031
|
-
|
|
7032
|
-
|
|
7033
|
-
|
|
7396
|
+
host: string;
|
|
7397
|
+
port: number;
|
|
7398
|
+
path: string;
|
|
7399
|
+
query: string;
|
|
7400
|
+
method: string;
|
|
7401
|
+
edited: boolean;
|
|
7402
|
+
isTls: boolean;
|
|
7403
|
+
length: number;
|
|
7404
|
+
alteration: Alteration;
|
|
7405
|
+
fileExtension?: string | undefined | null;
|
|
7406
|
+
source: Source;
|
|
7407
|
+
createdAt: Date;
|
|
7408
|
+
metadata: {
|
|
7409
|
+
__typename: "RequestMetadata";
|
|
7034
7410
|
id: string;
|
|
7035
|
-
|
|
7036
|
-
|
|
7037
|
-
|
|
7038
|
-
|
|
7039
|
-
|
|
7040
|
-
|
|
7041
|
-
|
|
7411
|
+
color?: string | undefined | null;
|
|
7412
|
+
};
|
|
7413
|
+
response?: {
|
|
7414
|
+
__typename: "Response";
|
|
7415
|
+
id: string;
|
|
7416
|
+
statusCode: number;
|
|
7417
|
+
roundtripTime: number;
|
|
7042
7418
|
length: number;
|
|
7043
|
-
alteration: Alteration;
|
|
7044
|
-
fileExtension?: string | undefined | null;
|
|
7045
|
-
source: Source;
|
|
7046
7419
|
createdAt: Date;
|
|
7047
|
-
|
|
7048
|
-
|
|
7049
|
-
|
|
7050
|
-
color?: string | undefined | null;
|
|
7051
|
-
};
|
|
7052
|
-
response?: {
|
|
7053
|
-
__typename: "Response";
|
|
7054
|
-
id: string;
|
|
7055
|
-
statusCode: number;
|
|
7056
|
-
roundtripTime: number;
|
|
7057
|
-
length: number;
|
|
7058
|
-
createdAt: Date;
|
|
7059
|
-
alteration: Alteration;
|
|
7060
|
-
edited: boolean;
|
|
7061
|
-
} | undefined | null;
|
|
7062
|
-
};
|
|
7420
|
+
alteration: Alteration;
|
|
7421
|
+
edited: boolean;
|
|
7422
|
+
} | undefined | null;
|
|
7063
7423
|
};
|
|
7064
7424
|
}>;
|
|
7065
7425
|
pageInfo: {
|
|
@@ -7115,44 +7475,41 @@ export type CreateReplaySessionMutation = {
|
|
|
7115
7475
|
};
|
|
7116
7476
|
} | undefined | null;
|
|
7117
7477
|
entries: {
|
|
7118
|
-
|
|
7119
|
-
|
|
7120
|
-
|
|
7121
|
-
|
|
7478
|
+
nodes: Array<{
|
|
7479
|
+
__typename: "ReplayEntry";
|
|
7480
|
+
id: string;
|
|
7481
|
+
error?: string | undefined | null;
|
|
7482
|
+
sessionId: string;
|
|
7483
|
+
request: {
|
|
7484
|
+
__typename: "Request";
|
|
7122
7485
|
id: string;
|
|
7123
|
-
|
|
7124
|
-
|
|
7125
|
-
|
|
7126
|
-
|
|
7486
|
+
host: string;
|
|
7487
|
+
port: number;
|
|
7488
|
+
path: string;
|
|
7489
|
+
query: string;
|
|
7490
|
+
method: string;
|
|
7491
|
+
edited: boolean;
|
|
7492
|
+
isTls: boolean;
|
|
7493
|
+
length: number;
|
|
7494
|
+
alteration: Alteration;
|
|
7495
|
+
fileExtension?: string | undefined | null;
|
|
7496
|
+
source: Source;
|
|
7497
|
+
createdAt: Date;
|
|
7498
|
+
metadata: {
|
|
7499
|
+
__typename: "RequestMetadata";
|
|
7127
7500
|
id: string;
|
|
7128
|
-
|
|
7129
|
-
|
|
7130
|
-
|
|
7131
|
-
|
|
7132
|
-
|
|
7133
|
-
|
|
7134
|
-
|
|
7501
|
+
color?: string | undefined | null;
|
|
7502
|
+
};
|
|
7503
|
+
response?: {
|
|
7504
|
+
__typename: "Response";
|
|
7505
|
+
id: string;
|
|
7506
|
+
statusCode: number;
|
|
7507
|
+
roundtripTime: number;
|
|
7135
7508
|
length: number;
|
|
7136
|
-
alteration: Alteration;
|
|
7137
|
-
fileExtension?: string | undefined | null;
|
|
7138
|
-
source: Source;
|
|
7139
7509
|
createdAt: Date;
|
|
7140
|
-
|
|
7141
|
-
|
|
7142
|
-
|
|
7143
|
-
color?: string | undefined | null;
|
|
7144
|
-
};
|
|
7145
|
-
response?: {
|
|
7146
|
-
__typename: "Response";
|
|
7147
|
-
id: string;
|
|
7148
|
-
statusCode: number;
|
|
7149
|
-
roundtripTime: number;
|
|
7150
|
-
length: number;
|
|
7151
|
-
createdAt: Date;
|
|
7152
|
-
alteration: Alteration;
|
|
7153
|
-
edited: boolean;
|
|
7154
|
-
} | undefined | null;
|
|
7155
|
-
};
|
|
7510
|
+
alteration: Alteration;
|
|
7511
|
+
edited: boolean;
|
|
7512
|
+
} | undefined | null;
|
|
7156
7513
|
};
|
|
7157
7514
|
}>;
|
|
7158
7515
|
pageInfo: {
|
|
@@ -7222,44 +7579,41 @@ export type MoveReplaySessionMutation = {
|
|
|
7222
7579
|
id: string;
|
|
7223
7580
|
};
|
|
7224
7581
|
entries: {
|
|
7225
|
-
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7582
|
+
nodes: Array<{
|
|
7583
|
+
__typename: "ReplayEntry";
|
|
7584
|
+
id: string;
|
|
7585
|
+
error?: string | undefined | null;
|
|
7586
|
+
sessionId: string;
|
|
7587
|
+
request: {
|
|
7588
|
+
__typename: "Request";
|
|
7229
7589
|
id: string;
|
|
7230
|
-
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
|
|
7590
|
+
host: string;
|
|
7591
|
+
port: number;
|
|
7592
|
+
path: string;
|
|
7593
|
+
query: string;
|
|
7594
|
+
method: string;
|
|
7595
|
+
edited: boolean;
|
|
7596
|
+
isTls: boolean;
|
|
7597
|
+
length: number;
|
|
7598
|
+
alteration: Alteration;
|
|
7599
|
+
fileExtension?: string | undefined | null;
|
|
7600
|
+
source: Source;
|
|
7601
|
+
createdAt: Date;
|
|
7602
|
+
metadata: {
|
|
7603
|
+
__typename: "RequestMetadata";
|
|
7234
7604
|
id: string;
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
7240
|
-
|
|
7241
|
-
|
|
7605
|
+
color?: string | undefined | null;
|
|
7606
|
+
};
|
|
7607
|
+
response?: {
|
|
7608
|
+
__typename: "Response";
|
|
7609
|
+
id: string;
|
|
7610
|
+
statusCode: number;
|
|
7611
|
+
roundtripTime: number;
|
|
7242
7612
|
length: number;
|
|
7243
|
-
alteration: Alteration;
|
|
7244
|
-
fileExtension?: string | undefined | null;
|
|
7245
|
-
source: Source;
|
|
7246
7613
|
createdAt: Date;
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
color?: string | undefined | null;
|
|
7251
|
-
};
|
|
7252
|
-
response?: {
|
|
7253
|
-
__typename: "Response";
|
|
7254
|
-
id: string;
|
|
7255
|
-
statusCode: number;
|
|
7256
|
-
roundtripTime: number;
|
|
7257
|
-
length: number;
|
|
7258
|
-
createdAt: Date;
|
|
7259
|
-
alteration: Alteration;
|
|
7260
|
-
edited: boolean;
|
|
7261
|
-
} | undefined | null;
|
|
7262
|
-
};
|
|
7614
|
+
alteration: Alteration;
|
|
7615
|
+
edited: boolean;
|
|
7616
|
+
} | undefined | null;
|
|
7263
7617
|
};
|
|
7264
7618
|
}>;
|
|
7265
7619
|
pageInfo: {
|
|
@@ -7732,8 +8086,8 @@ export type UpdateViewerSettingsMutation = {
|
|
|
7732
8086
|
updateViewerSettings: {
|
|
7733
8087
|
settings?: {
|
|
7734
8088
|
__typename: "UserSettings";
|
|
7735
|
-
data:
|
|
7736
|
-
migrations:
|
|
8089
|
+
data: JSONValue;
|
|
8090
|
+
migrations: JSONValue;
|
|
7737
8091
|
} | undefined | null;
|
|
7738
8092
|
};
|
|
7739
8093
|
};
|
|
@@ -7754,7 +8108,7 @@ export type CreateWorkflowMutation = {
|
|
|
7754
8108
|
} | undefined | null;
|
|
7755
8109
|
workflow?: {
|
|
7756
8110
|
__typename: "Workflow";
|
|
7757
|
-
definition:
|
|
8111
|
+
definition: JSONValue;
|
|
7758
8112
|
id: string;
|
|
7759
8113
|
kind: WorkflowKind;
|
|
7760
8114
|
name: string;
|
|
@@ -7787,7 +8141,7 @@ export type ToggleWorkflowMutation = {
|
|
|
7787
8141
|
} | undefined | null;
|
|
7788
8142
|
workflow?: {
|
|
7789
8143
|
__typename: "Workflow";
|
|
7790
|
-
definition:
|
|
8144
|
+
definition: JSONValue;
|
|
7791
8145
|
id: string;
|
|
7792
8146
|
kind: WorkflowKind;
|
|
7793
8147
|
name: string;
|
|
@@ -7812,7 +8166,7 @@ export type RenameWorkflowMutation = {
|
|
|
7812
8166
|
} | undefined | null;
|
|
7813
8167
|
workflow?: {
|
|
7814
8168
|
__typename: "Workflow";
|
|
7815
|
-
definition:
|
|
8169
|
+
definition: JSONValue;
|
|
7816
8170
|
id: string;
|
|
7817
8171
|
kind: WorkflowKind;
|
|
7818
8172
|
name: string;
|
|
@@ -7843,7 +8197,7 @@ export type UpdateWorkflowMutation = {
|
|
|
7843
8197
|
} | undefined | null;
|
|
7844
8198
|
workflow?: {
|
|
7845
8199
|
__typename: "Workflow";
|
|
7846
|
-
definition:
|
|
8200
|
+
definition: JSONValue;
|
|
7847
8201
|
id: string;
|
|
7848
8202
|
kind: WorkflowKind;
|
|
7849
8203
|
name: string;
|
|
@@ -7928,7 +8282,37 @@ export type GlobalizeWorkflowMutation = {
|
|
|
7928
8282
|
} | undefined | null;
|
|
7929
8283
|
workflow?: {
|
|
7930
8284
|
__typename: "Workflow";
|
|
7931
|
-
definition:
|
|
8285
|
+
definition: JSONValue;
|
|
8286
|
+
id: string;
|
|
8287
|
+
kind: WorkflowKind;
|
|
8288
|
+
name: string;
|
|
8289
|
+
enabled: boolean;
|
|
8290
|
+
global: boolean;
|
|
8291
|
+
} | undefined | null;
|
|
8292
|
+
};
|
|
8293
|
+
};
|
|
8294
|
+
export type LocalizeWorkflowMutationVariables = Exact<{
|
|
8295
|
+
id: Scalars["ID"]["input"];
|
|
8296
|
+
}>;
|
|
8297
|
+
export type LocalizeWorkflowMutation = {
|
|
8298
|
+
localizeWorkflow: {
|
|
8299
|
+
error?: {
|
|
8300
|
+
__typename: "OtherUserError";
|
|
8301
|
+
code: string;
|
|
8302
|
+
} | {
|
|
8303
|
+
__typename: "UnknownIdUserError";
|
|
8304
|
+
id: string;
|
|
8305
|
+
code: string;
|
|
8306
|
+
} | {
|
|
8307
|
+
__typename: "WorkflowUserError";
|
|
8308
|
+
nodeId?: string | undefined | null;
|
|
8309
|
+
message: string;
|
|
8310
|
+
reason: WorkflowErrorReason;
|
|
8311
|
+
code: string;
|
|
8312
|
+
} | undefined | null;
|
|
8313
|
+
workflow?: {
|
|
8314
|
+
__typename: "Workflow";
|
|
8315
|
+
definition: JSONValue;
|
|
7932
8316
|
id: string;
|
|
7933
8317
|
kind: WorkflowKind;
|
|
7934
8318
|
name: string;
|
|
@@ -8021,7 +8405,6 @@ export type AutomateEntryQuery = {
|
|
|
8021
8405
|
};
|
|
8022
8406
|
payloads: Array<{
|
|
8023
8407
|
__typename: "AutomatePayload";
|
|
8024
|
-
kind: AutomatePayloadKind;
|
|
8025
8408
|
options: {
|
|
8026
8409
|
__typename: "AutomateHostedFilePayload";
|
|
8027
8410
|
id: string;
|
|
@@ -8035,19 +8418,21 @@ export type AutomateEntryQuery = {
|
|
|
8035
8418
|
};
|
|
8036
8419
|
preprocessors: Array<{
|
|
8037
8420
|
__typename: "AutomatePreprocessor";
|
|
8038
|
-
kind: AutomatePreprocessorKind;
|
|
8039
8421
|
options: {
|
|
8422
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
8040
8423
|
value: string;
|
|
8041
8424
|
} | {
|
|
8425
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
8042
8426
|
value: string;
|
|
8427
|
+
} | {
|
|
8428
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
8429
|
+
charset?: string | undefined | null;
|
|
8430
|
+
nonAscii: boolean;
|
|
8431
|
+
} | {
|
|
8432
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
8433
|
+
id: string;
|
|
8043
8434
|
};
|
|
8044
8435
|
}>;
|
|
8045
|
-
urlEncode: {
|
|
8046
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
8047
|
-
charset?: string | undefined | null;
|
|
8048
|
-
enabled: boolean;
|
|
8049
|
-
nonAscii: boolean;
|
|
8050
|
-
};
|
|
8051
8436
|
}>;
|
|
8052
8437
|
placeholders: Array<{
|
|
8053
8438
|
__typename: "AutomatePlaceholder";
|
|
@@ -8140,7 +8525,6 @@ export type AutomateEntryRequestsQuery = {
|
|
|
8140
8525
|
};
|
|
8141
8526
|
payloads: Array<{
|
|
8142
8527
|
__typename: "AutomatePayload";
|
|
8143
|
-
kind: AutomatePayloadKind;
|
|
8144
8528
|
options: {
|
|
8145
8529
|
__typename: "AutomateHostedFilePayload";
|
|
8146
8530
|
id: string;
|
|
@@ -8154,19 +8538,21 @@ export type AutomateEntryRequestsQuery = {
|
|
|
8154
8538
|
};
|
|
8155
8539
|
preprocessors: Array<{
|
|
8156
8540
|
__typename: "AutomatePreprocessor";
|
|
8157
|
-
kind: AutomatePreprocessorKind;
|
|
8158
8541
|
options: {
|
|
8542
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
8159
8543
|
value: string;
|
|
8160
8544
|
} | {
|
|
8545
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
8161
8546
|
value: string;
|
|
8547
|
+
} | {
|
|
8548
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
8549
|
+
charset?: string | undefined | null;
|
|
8550
|
+
nonAscii: boolean;
|
|
8551
|
+
} | {
|
|
8552
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
8553
|
+
id: string;
|
|
8162
8554
|
};
|
|
8163
8555
|
}>;
|
|
8164
|
-
urlEncode: {
|
|
8165
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
8166
|
-
charset?: string | undefined | null;
|
|
8167
|
-
enabled: boolean;
|
|
8168
|
-
nonAscii: boolean;
|
|
8169
|
-
};
|
|
8170
8556
|
}>;
|
|
8171
8557
|
placeholders: Array<{
|
|
8172
8558
|
__typename: "AutomatePlaceholder";
|
|
@@ -8257,7 +8643,6 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
8257
8643
|
};
|
|
8258
8644
|
payloads: Array<{
|
|
8259
8645
|
__typename: "AutomatePayload";
|
|
8260
|
-
kind: AutomatePayloadKind;
|
|
8261
8646
|
options: {
|
|
8262
8647
|
__typename: "AutomateHostedFilePayload";
|
|
8263
8648
|
id: string;
|
|
@@ -8271,19 +8656,21 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
8271
8656
|
};
|
|
8272
8657
|
preprocessors: Array<{
|
|
8273
8658
|
__typename: "AutomatePreprocessor";
|
|
8274
|
-
kind: AutomatePreprocessorKind;
|
|
8275
8659
|
options: {
|
|
8660
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
8276
8661
|
value: string;
|
|
8277
8662
|
} | {
|
|
8278
|
-
|
|
8663
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
8664
|
+
value: string;
|
|
8665
|
+
} | {
|
|
8666
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
8667
|
+
charset?: string | undefined | null;
|
|
8668
|
+
nonAscii: boolean;
|
|
8669
|
+
} | {
|
|
8670
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
8671
|
+
id: string;
|
|
8279
8672
|
};
|
|
8280
8673
|
}>;
|
|
8281
|
-
urlEncode: {
|
|
8282
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
8283
|
-
charset?: string | undefined | null;
|
|
8284
|
-
enabled: boolean;
|
|
8285
|
-
nonAscii: boolean;
|
|
8286
|
-
};
|
|
8287
8674
|
}>;
|
|
8288
8675
|
placeholders: Array<{
|
|
8289
8676
|
__typename: "AutomatePlaceholder";
|
|
@@ -8329,7 +8716,6 @@ export type AutomateEntryRequestsCountQuery = {
|
|
|
8329
8716
|
};
|
|
8330
8717
|
payloads: Array<{
|
|
8331
8718
|
__typename: "AutomatePayload";
|
|
8332
|
-
kind: AutomatePayloadKind;
|
|
8333
8719
|
options: {
|
|
8334
8720
|
__typename: "AutomateHostedFilePayload";
|
|
8335
8721
|
id: string;
|
|
@@ -8343,19 +8729,21 @@ export type AutomateEntryRequestsCountQuery = {
|
|
|
8343
8729
|
};
|
|
8344
8730
|
preprocessors: Array<{
|
|
8345
8731
|
__typename: "AutomatePreprocessor";
|
|
8346
|
-
kind: AutomatePreprocessorKind;
|
|
8347
8732
|
options: {
|
|
8733
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
8348
8734
|
value: string;
|
|
8349
8735
|
} | {
|
|
8736
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
8350
8737
|
value: string;
|
|
8738
|
+
} | {
|
|
8739
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
8740
|
+
charset?: string | undefined | null;
|
|
8741
|
+
nonAscii: boolean;
|
|
8742
|
+
} | {
|
|
8743
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
8744
|
+
id: string;
|
|
8351
8745
|
};
|
|
8352
8746
|
}>;
|
|
8353
|
-
urlEncode: {
|
|
8354
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
8355
|
-
charset?: string | undefined | null;
|
|
8356
|
-
enabled: boolean;
|
|
8357
|
-
nonAscii: boolean;
|
|
8358
|
-
};
|
|
8359
8747
|
}>;
|
|
8360
8748
|
placeholders: Array<{
|
|
8361
8749
|
__typename: "AutomatePlaceholder";
|
|
@@ -8425,7 +8813,6 @@ export type AutomateSessionQuery = {
|
|
|
8425
8813
|
};
|
|
8426
8814
|
payloads: Array<{
|
|
8427
8815
|
__typename: "AutomatePayload";
|
|
8428
|
-
kind: AutomatePayloadKind;
|
|
8429
8816
|
options: {
|
|
8430
8817
|
__typename: "AutomateHostedFilePayload";
|
|
8431
8818
|
id: string;
|
|
@@ -8439,19 +8826,21 @@ export type AutomateSessionQuery = {
|
|
|
8439
8826
|
};
|
|
8440
8827
|
preprocessors: Array<{
|
|
8441
8828
|
__typename: "AutomatePreprocessor";
|
|
8442
|
-
kind: AutomatePreprocessorKind;
|
|
8443
8829
|
options: {
|
|
8830
|
+
__typename: "AutomatePrefixPreprocessor";
|
|
8444
8831
|
value: string;
|
|
8445
8832
|
} | {
|
|
8833
|
+
__typename: "AutomateSuffixPreprocessor";
|
|
8446
8834
|
value: string;
|
|
8835
|
+
} | {
|
|
8836
|
+
__typename: "AutomateUrlEncodePreprocessor";
|
|
8837
|
+
charset?: string | undefined | null;
|
|
8838
|
+
nonAscii: boolean;
|
|
8839
|
+
} | {
|
|
8840
|
+
__typename: "AutomateWorkflowPreprocessor";
|
|
8841
|
+
id: string;
|
|
8447
8842
|
};
|
|
8448
8843
|
}>;
|
|
8449
|
-
urlEncode: {
|
|
8450
|
-
__typename: "AutomateUrlEncodeOptions";
|
|
8451
|
-
charset?: string | undefined | null;
|
|
8452
|
-
enabled: boolean;
|
|
8453
|
-
nonAscii: boolean;
|
|
8454
|
-
};
|
|
8455
8844
|
}>;
|
|
8456
8845
|
placeholders: Array<{
|
|
8457
8846
|
__typename: "AutomatePlaceholder";
|
|
@@ -9324,6 +9713,37 @@ export type UpstreamProxiesQuery = {
|
|
|
9324
9713
|
} | undefined | null;
|
|
9325
9714
|
}>;
|
|
9326
9715
|
};
|
|
9716
|
+
export type PluginPackagesQueryVariables = Exact<{
|
|
9717
|
+
[key: string]: never;
|
|
9718
|
+
}>;
|
|
9719
|
+
export type PluginPackagesQuery = {
|
|
9720
|
+
pluginPackages: Array<{
|
|
9721
|
+
id: string;
|
|
9722
|
+
name?: string | undefined | null;
|
|
9723
|
+
description?: string | undefined | null;
|
|
9724
|
+
version: string;
|
|
9725
|
+
installedAt: Date;
|
|
9726
|
+
manifestId: string;
|
|
9727
|
+
plugins: Array<{
|
|
9728
|
+
__typename: "PluginFrontend";
|
|
9729
|
+
data?: JSONValue | undefined | null;
|
|
9730
|
+
entrypoint?: string | undefined | null;
|
|
9731
|
+
style?: string | undefined | null;
|
|
9732
|
+
id: string;
|
|
9733
|
+
name?: string | undefined | null;
|
|
9734
|
+
enabled: boolean;
|
|
9735
|
+
manifestId: string;
|
|
9736
|
+
package: {
|
|
9737
|
+
id: string;
|
|
9738
|
+
};
|
|
9739
|
+
}>;
|
|
9740
|
+
author?: {
|
|
9741
|
+
name?: string | undefined | null;
|
|
9742
|
+
email?: string | undefined | null;
|
|
9743
|
+
url?: string | undefined | null;
|
|
9744
|
+
} | undefined | null;
|
|
9745
|
+
}>;
|
|
9746
|
+
};
|
|
9327
9747
|
export type CurrentProjectQueryVariables = Exact<{
|
|
9328
9748
|
[key: string]: never;
|
|
9329
9749
|
}>;
|
|
@@ -9453,44 +9873,41 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
9453
9873
|
id: string;
|
|
9454
9874
|
};
|
|
9455
9875
|
entries: {
|
|
9456
|
-
|
|
9457
|
-
|
|
9458
|
-
|
|
9459
|
-
|
|
9876
|
+
nodes: Array<{
|
|
9877
|
+
__typename: "ReplayEntry";
|
|
9878
|
+
id: string;
|
|
9879
|
+
error?: string | undefined | null;
|
|
9880
|
+
sessionId: string;
|
|
9881
|
+
request: {
|
|
9882
|
+
__typename: "Request";
|
|
9460
9883
|
id: string;
|
|
9461
|
-
|
|
9462
|
-
|
|
9463
|
-
|
|
9464
|
-
|
|
9884
|
+
host: string;
|
|
9885
|
+
port: number;
|
|
9886
|
+
path: string;
|
|
9887
|
+
query: string;
|
|
9888
|
+
method: string;
|
|
9889
|
+
edited: boolean;
|
|
9890
|
+
isTls: boolean;
|
|
9891
|
+
length: number;
|
|
9892
|
+
alteration: Alteration;
|
|
9893
|
+
fileExtension?: string | undefined | null;
|
|
9894
|
+
source: Source;
|
|
9895
|
+
createdAt: Date;
|
|
9896
|
+
metadata: {
|
|
9897
|
+
__typename: "RequestMetadata";
|
|
9465
9898
|
id: string;
|
|
9466
|
-
|
|
9467
|
-
|
|
9468
|
-
|
|
9469
|
-
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
|
|
9899
|
+
color?: string | undefined | null;
|
|
9900
|
+
};
|
|
9901
|
+
response?: {
|
|
9902
|
+
__typename: "Response";
|
|
9903
|
+
id: string;
|
|
9904
|
+
statusCode: number;
|
|
9905
|
+
roundtripTime: number;
|
|
9473
9906
|
length: number;
|
|
9474
|
-
alteration: Alteration;
|
|
9475
|
-
fileExtension?: string | undefined | null;
|
|
9476
|
-
source: Source;
|
|
9477
9907
|
createdAt: Date;
|
|
9478
|
-
|
|
9479
|
-
|
|
9480
|
-
|
|
9481
|
-
color?: string | undefined | null;
|
|
9482
|
-
};
|
|
9483
|
-
response?: {
|
|
9484
|
-
__typename: "Response";
|
|
9485
|
-
id: string;
|
|
9486
|
-
statusCode: number;
|
|
9487
|
-
roundtripTime: number;
|
|
9488
|
-
length: number;
|
|
9489
|
-
createdAt: Date;
|
|
9490
|
-
alteration: Alteration;
|
|
9491
|
-
edited: boolean;
|
|
9492
|
-
} | undefined | null;
|
|
9493
|
-
};
|
|
9908
|
+
alteration: Alteration;
|
|
9909
|
+
edited: boolean;
|
|
9910
|
+
} | undefined | null;
|
|
9494
9911
|
};
|
|
9495
9912
|
}>;
|
|
9496
9913
|
pageInfo: {
|
|
@@ -9569,6 +9986,43 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
9569
9986
|
value: number;
|
|
9570
9987
|
snapshot: number;
|
|
9571
9988
|
};
|
|
9989
|
+
nodes: Array<{
|
|
9990
|
+
__typename: "ReplayEntry";
|
|
9991
|
+
id: string;
|
|
9992
|
+
error?: string | undefined | null;
|
|
9993
|
+
sessionId: string;
|
|
9994
|
+
request: {
|
|
9995
|
+
__typename: "Request";
|
|
9996
|
+
id: string;
|
|
9997
|
+
host: string;
|
|
9998
|
+
port: number;
|
|
9999
|
+
path: string;
|
|
10000
|
+
query: string;
|
|
10001
|
+
method: string;
|
|
10002
|
+
edited: boolean;
|
|
10003
|
+
isTls: boolean;
|
|
10004
|
+
length: number;
|
|
10005
|
+
alteration: Alteration;
|
|
10006
|
+
fileExtension?: string | undefined | null;
|
|
10007
|
+
source: Source;
|
|
10008
|
+
createdAt: Date;
|
|
10009
|
+
metadata: {
|
|
10010
|
+
__typename: "RequestMetadata";
|
|
10011
|
+
id: string;
|
|
10012
|
+
color?: string | undefined | null;
|
|
10013
|
+
};
|
|
10014
|
+
response?: {
|
|
10015
|
+
__typename: "Response";
|
|
10016
|
+
id: string;
|
|
10017
|
+
statusCode: number;
|
|
10018
|
+
roundtripTime: number;
|
|
10019
|
+
length: number;
|
|
10020
|
+
createdAt: Date;
|
|
10021
|
+
alteration: Alteration;
|
|
10022
|
+
edited: boolean;
|
|
10023
|
+
} | undefined | null;
|
|
10024
|
+
};
|
|
10025
|
+
}>;
|
|
9572
10026
|
};
|
|
9573
10027
|
activeEntry?: {
|
|
9574
10028
|
__typename: "ReplayEntry";
|
|
@@ -9765,44 +10219,41 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
9765
10219
|
id: string;
|
|
9766
10220
|
};
|
|
9767
10221
|
entries: {
|
|
9768
|
-
|
|
9769
|
-
|
|
9770
|
-
|
|
9771
|
-
|
|
10222
|
+
nodes: Array<{
|
|
10223
|
+
__typename: "ReplayEntry";
|
|
10224
|
+
id: string;
|
|
10225
|
+
error?: string | undefined | null;
|
|
10226
|
+
sessionId: string;
|
|
10227
|
+
request: {
|
|
10228
|
+
__typename: "Request";
|
|
9772
10229
|
id: string;
|
|
9773
|
-
|
|
9774
|
-
|
|
9775
|
-
|
|
9776
|
-
|
|
10230
|
+
host: string;
|
|
10231
|
+
port: number;
|
|
10232
|
+
path: string;
|
|
10233
|
+
query: string;
|
|
10234
|
+
method: string;
|
|
10235
|
+
edited: boolean;
|
|
10236
|
+
isTls: boolean;
|
|
10237
|
+
length: number;
|
|
10238
|
+
alteration: Alteration;
|
|
10239
|
+
fileExtension?: string | undefined | null;
|
|
10240
|
+
source: Source;
|
|
10241
|
+
createdAt: Date;
|
|
10242
|
+
metadata: {
|
|
10243
|
+
__typename: "RequestMetadata";
|
|
9777
10244
|
id: string;
|
|
9778
|
-
|
|
9779
|
-
|
|
9780
|
-
|
|
9781
|
-
|
|
9782
|
-
|
|
9783
|
-
|
|
9784
|
-
|
|
10245
|
+
color?: string | undefined | null;
|
|
10246
|
+
};
|
|
10247
|
+
response?: {
|
|
10248
|
+
__typename: "Response";
|
|
10249
|
+
id: string;
|
|
10250
|
+
statusCode: number;
|
|
10251
|
+
roundtripTime: number;
|
|
9785
10252
|
length: number;
|
|
9786
|
-
alteration: Alteration;
|
|
9787
|
-
fileExtension?: string | undefined | null;
|
|
9788
|
-
source: Source;
|
|
9789
10253
|
createdAt: Date;
|
|
9790
|
-
|
|
9791
|
-
|
|
9792
|
-
|
|
9793
|
-
color?: string | undefined | null;
|
|
9794
|
-
};
|
|
9795
|
-
response?: {
|
|
9796
|
-
__typename: "Response";
|
|
9797
|
-
id: string;
|
|
9798
|
-
statusCode: number;
|
|
9799
|
-
roundtripTime: number;
|
|
9800
|
-
length: number;
|
|
9801
|
-
createdAt: Date;
|
|
9802
|
-
alteration: Alteration;
|
|
9803
|
-
edited: boolean;
|
|
9804
|
-
} | undefined | null;
|
|
9805
|
-
};
|
|
10254
|
+
alteration: Alteration;
|
|
10255
|
+
edited: boolean;
|
|
10256
|
+
} | undefined | null;
|
|
9806
10257
|
};
|
|
9807
10258
|
}>;
|
|
9808
10259
|
pageInfo: {
|
|
@@ -10493,8 +10944,8 @@ export type UserSettingsQuery = {
|
|
|
10493
10944
|
id: string;
|
|
10494
10945
|
settings?: {
|
|
10495
10946
|
__typename: "UserSettings";
|
|
10496
|
-
data:
|
|
10497
|
-
migrations:
|
|
10947
|
+
data: JSONValue;
|
|
10948
|
+
migrations: JSONValue;
|
|
10498
10949
|
} | undefined | null;
|
|
10499
10950
|
};
|
|
10500
10951
|
};
|
|
@@ -10504,7 +10955,7 @@ export type WorkflowQueryVariables = Exact<{
|
|
|
10504
10955
|
export type WorkflowQuery = {
|
|
10505
10956
|
workflow?: {
|
|
10506
10957
|
__typename: "Workflow";
|
|
10507
|
-
definition:
|
|
10958
|
+
definition: JSONValue;
|
|
10508
10959
|
id: string;
|
|
10509
10960
|
kind: WorkflowKind;
|
|
10510
10961
|
name: string;
|
|
@@ -10518,7 +10969,7 @@ export type WorkflowsQueryVariables = Exact<{
|
|
|
10518
10969
|
export type WorkflowsQuery = {
|
|
10519
10970
|
workflows: Array<{
|
|
10520
10971
|
__typename: "Workflow";
|
|
10521
|
-
definition:
|
|
10972
|
+
definition: JSONValue;
|
|
10522
10973
|
id: string;
|
|
10523
10974
|
kind: WorkflowKind;
|
|
10524
10975
|
name: string;
|
|
@@ -10532,7 +10983,7 @@ export type WorkflowNodeDefinitionsQueryVariables = Exact<{
|
|
|
10532
10983
|
export type WorkflowNodeDefinitionsQuery = {
|
|
10533
10984
|
workflowNodeDefinitions: Array<{
|
|
10534
10985
|
__typename: "WorkflowNodeDefinition";
|
|
10535
|
-
raw:
|
|
10986
|
+
raw: JSONValue;
|
|
10536
10987
|
}>;
|
|
10537
10988
|
};
|
|
10538
10989
|
export type CreatedAssistantMessageSubscriptionVariables = Exact<{
|
|
@@ -11474,6 +11925,67 @@ export type FinishedDeleteInterceptEntriesTaskSubscription = {
|
|
|
11474
11925
|
} | undefined | null;
|
|
11475
11926
|
};
|
|
11476
11927
|
};
|
|
11928
|
+
export type CreatedPluginPackageSubscriptionVariables = Exact<{
|
|
11929
|
+
[key: string]: never;
|
|
11930
|
+
}>;
|
|
11931
|
+
export type CreatedPluginPackageSubscription = {
|
|
11932
|
+
createdPluginPackage: {
|
|
11933
|
+
package: {
|
|
11934
|
+
id: string;
|
|
11935
|
+
name?: string | undefined | null;
|
|
11936
|
+
description?: string | undefined | null;
|
|
11937
|
+
version: string;
|
|
11938
|
+
installedAt: Date;
|
|
11939
|
+
manifestId: string;
|
|
11940
|
+
plugins: Array<{
|
|
11941
|
+
__typename: "PluginFrontend";
|
|
11942
|
+
data?: JSONValue | undefined | null;
|
|
11943
|
+
entrypoint?: string | undefined | null;
|
|
11944
|
+
style?: string | undefined | null;
|
|
11945
|
+
id: string;
|
|
11946
|
+
name?: string | undefined | null;
|
|
11947
|
+
enabled: boolean;
|
|
11948
|
+
manifestId: string;
|
|
11949
|
+
package: {
|
|
11950
|
+
id: string;
|
|
11951
|
+
};
|
|
11952
|
+
}>;
|
|
11953
|
+
author?: {
|
|
11954
|
+
name?: string | undefined | null;
|
|
11955
|
+
email?: string | undefined | null;
|
|
11956
|
+
url?: string | undefined | null;
|
|
11957
|
+
} | undefined | null;
|
|
11958
|
+
};
|
|
11959
|
+
};
|
|
11960
|
+
};
|
|
11961
|
+
export type DeletedPluginPackageSubscriptionVariables = Exact<{
|
|
11962
|
+
[key: string]: never;
|
|
11963
|
+
}>;
|
|
11964
|
+
export type DeletedPluginPackageSubscription = {
|
|
11965
|
+
deletedPluginPackage: {
|
|
11966
|
+
deletedPackageId: string;
|
|
11967
|
+
};
|
|
11968
|
+
};
|
|
11969
|
+
export type UpdatedPluginSubscriptionVariables = Exact<{
|
|
11970
|
+
[key: string]: never;
|
|
11971
|
+
}>;
|
|
11972
|
+
export type UpdatedPluginSubscription = {
|
|
11973
|
+
updatedPlugin: {
|
|
11974
|
+
plugin: {
|
|
11975
|
+
__typename: "PluginFrontend";
|
|
11976
|
+
data?: JSONValue | undefined | null;
|
|
11977
|
+
entrypoint?: string | undefined | null;
|
|
11978
|
+
style?: string | undefined | null;
|
|
11979
|
+
id: string;
|
|
11980
|
+
name?: string | undefined | null;
|
|
11981
|
+
enabled: boolean;
|
|
11982
|
+
manifestId: string;
|
|
11983
|
+
package: {
|
|
11984
|
+
id: string;
|
|
11985
|
+
};
|
|
11986
|
+
};
|
|
11987
|
+
};
|
|
11988
|
+
};
|
|
11477
11989
|
export type CreatedProjectSubscriptionVariables = Exact<{
|
|
11478
11990
|
[key: string]: never;
|
|
11479
11991
|
}>;
|
|
@@ -11576,44 +12088,41 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
11576
12088
|
id: string;
|
|
11577
12089
|
};
|
|
11578
12090
|
entries: {
|
|
11579
|
-
|
|
11580
|
-
|
|
11581
|
-
|
|
11582
|
-
|
|
12091
|
+
nodes: Array<{
|
|
12092
|
+
__typename: "ReplayEntry";
|
|
12093
|
+
id: string;
|
|
12094
|
+
error?: string | undefined | null;
|
|
12095
|
+
sessionId: string;
|
|
12096
|
+
request: {
|
|
12097
|
+
__typename: "Request";
|
|
11583
12098
|
id: string;
|
|
11584
|
-
|
|
11585
|
-
|
|
11586
|
-
|
|
11587
|
-
|
|
12099
|
+
host: string;
|
|
12100
|
+
port: number;
|
|
12101
|
+
path: string;
|
|
12102
|
+
query: string;
|
|
12103
|
+
method: string;
|
|
12104
|
+
edited: boolean;
|
|
12105
|
+
isTls: boolean;
|
|
12106
|
+
length: number;
|
|
12107
|
+
alteration: Alteration;
|
|
12108
|
+
fileExtension?: string | undefined | null;
|
|
12109
|
+
source: Source;
|
|
12110
|
+
createdAt: Date;
|
|
12111
|
+
metadata: {
|
|
12112
|
+
__typename: "RequestMetadata";
|
|
11588
12113
|
id: string;
|
|
11589
|
-
|
|
11590
|
-
|
|
11591
|
-
|
|
11592
|
-
|
|
11593
|
-
|
|
11594
|
-
|
|
11595
|
-
|
|
12114
|
+
color?: string | undefined | null;
|
|
12115
|
+
};
|
|
12116
|
+
response?: {
|
|
12117
|
+
__typename: "Response";
|
|
12118
|
+
id: string;
|
|
12119
|
+
statusCode: number;
|
|
12120
|
+
roundtripTime: number;
|
|
11596
12121
|
length: number;
|
|
11597
|
-
alteration: Alteration;
|
|
11598
|
-
fileExtension?: string | undefined | null;
|
|
11599
|
-
source: Source;
|
|
11600
12122
|
createdAt: Date;
|
|
11601
|
-
|
|
11602
|
-
|
|
11603
|
-
|
|
11604
|
-
color?: string | undefined | null;
|
|
11605
|
-
};
|
|
11606
|
-
response?: {
|
|
11607
|
-
__typename: "Response";
|
|
11608
|
-
id: string;
|
|
11609
|
-
statusCode: number;
|
|
11610
|
-
roundtripTime: number;
|
|
11611
|
-
length: number;
|
|
11612
|
-
createdAt: Date;
|
|
11613
|
-
alteration: Alteration;
|
|
11614
|
-
edited: boolean;
|
|
11615
|
-
} | undefined | null;
|
|
11616
|
-
};
|
|
12123
|
+
alteration: Alteration;
|
|
12124
|
+
edited: boolean;
|
|
12125
|
+
} | undefined | null;
|
|
11617
12126
|
};
|
|
11618
12127
|
}>;
|
|
11619
12128
|
pageInfo: {
|
|
@@ -12068,6 +12577,8 @@ export type FinishedTaskSubscription = {
|
|
|
12068
12577
|
code: string;
|
|
12069
12578
|
} | {
|
|
12070
12579
|
code: string;
|
|
12580
|
+
} | {
|
|
12581
|
+
code: string;
|
|
12071
12582
|
} | undefined | null;
|
|
12072
12583
|
};
|
|
12073
12584
|
};
|
|
@@ -12080,7 +12591,7 @@ export type CreatedWorkflowSubscription = {
|
|
|
12080
12591
|
cursor: string;
|
|
12081
12592
|
node: {
|
|
12082
12593
|
__typename: "Workflow";
|
|
12083
|
-
definition:
|
|
12594
|
+
definition: JSONValue;
|
|
12084
12595
|
id: string;
|
|
12085
12596
|
kind: WorkflowKind;
|
|
12086
12597
|
name: string;
|
|
@@ -12107,7 +12618,7 @@ export type UpdatedWorkflowSubscription = {
|
|
|
12107
12618
|
cursor: string;
|
|
12108
12619
|
node: {
|
|
12109
12620
|
__typename: "Workflow";
|
|
12110
|
-
definition:
|
|
12621
|
+
definition: JSONValue;
|
|
12111
12622
|
id: string;
|
|
12112
12623
|
kind: WorkflowKind;
|
|
12113
12624
|
name: string;
|
|
@@ -12135,7 +12646,12 @@ export declare const RetryOnFailureSettingFullFragmentDoc = "\n fragment retr
|
|
|
12135
12646
|
export declare const SimpleListPayloadOptionsFullFragmentDoc = "\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n ";
|
|
12136
12647
|
export declare const HostedFilePayloadOptionsFullFragmentDoc = "\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n ";
|
|
12137
12648
|
export declare const NullPayloadOptionsFullFragmentDoc = "\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n ";
|
|
12138
|
-
export declare const
|
|
12649
|
+
export declare const AutomatePrefixPreprocessorFullFragmentDoc = "\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
12650
|
+
export declare const AutomateSuffixPreprocessorFullFragmentDoc = "\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
12651
|
+
export declare const AutomateWorkflowPreprocessorFullFragmentDoc = "\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n ";
|
|
12652
|
+
export declare const AutomateUrlEncodePreprocessorFullFragmentDoc = "\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
|
|
12653
|
+
export declare const AutomatePreprocessorFullFragmentDoc = "\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 ";
|
|
12654
|
+
export declare const AutomatePayloadFullFragmentDoc = "\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 }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n ";
|
|
12139
12655
|
export declare const AutomatePlaceholderFullFragmentDoc = "\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
12140
12656
|
export declare const AutomateSettingsFullFragmentDoc = "\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 ";
|
|
12141
12657
|
export declare const AutomateEntryFullFragmentDoc = "\n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n ";
|
|
@@ -12174,6 +12690,7 @@ export declare const PermissionDeniedUserErrorFullFragmentDoc = "\n fragment
|
|
|
12174
12690
|
export declare const WorkflowUserErrorFullFragmentDoc = "\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n ";
|
|
12175
12691
|
export declare const InvalidGlobTermsUserErrorFullFragmentDoc = "\n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n ";
|
|
12176
12692
|
export declare const InvalidHttpqlUserErrorFullFragmentDoc = "\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n ";
|
|
12693
|
+
export declare const PluginUserErrorFullFragmentDoc = "\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
12177
12694
|
export declare const DataExportMetaFieldsFragmentDoc = "\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
12178
12695
|
export declare const DataExportMetaFragmentDoc = "\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n ";
|
|
12179
12696
|
export declare const DataExportFullFieldsFragmentDoc = "\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n ";
|
|
@@ -12201,10 +12718,16 @@ export declare const InterceptScopeOptionsMetaFragmentDoc = "\n fragment inte
|
|
|
12201
12718
|
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 ";
|
|
12202
12719
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
12203
12720
|
export declare const UpstreamProxyFullFragmentDoc = "\n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n ";
|
|
12721
|
+
export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
|
|
12722
|
+
export declare const PluginPackageMetaFragmentDoc = "\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n ";
|
|
12723
|
+
export declare const PluginMetaFragmentDoc = "\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
12724
|
+
export declare const PluginFrontendMetaFragmentDoc = "\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n}\n ";
|
|
12725
|
+
export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n ";
|
|
12726
|
+
export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n}\n ";
|
|
12204
12727
|
export declare const ReplayEntryMetaFragmentDoc = "\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\n request {\n ...requestMeta\n }\n}\n ";
|
|
12205
12728
|
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
12206
12729
|
export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12207
|
-
export declare const ReplaySessionMetaFragmentDoc = "\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12730
|
+
export declare const ReplaySessionMetaFragmentDoc = "\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n ";
|
|
12208
12731
|
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
12209
12732
|
export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n __typename\n id\n error\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
|
|
12210
12733
|
export declare const ReplayTaskEdgeMetaFragmentDoc = "\n fragment replayTaskEdgeMeta on ReplayTaskEdge {\n __typename\n node {\n ...replayTaskMeta\n }\n cursor\n}\n ";
|
|
@@ -12237,11 +12760,11 @@ export declare const StartAuthenticationFlowDocument = "\n mutation startAuth
|
|
|
12237
12760
|
export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
|
|
12238
12761
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
|
|
12239
12762
|
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 ";
|
|
12240
|
-
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
|
|
12241
|
-
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}\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
|
|
12763
|
+
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 }\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 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 ";
|
|
12764
|
+
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}\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 }\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 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 ";
|
|
12242
12765
|
export declare const DeleteAutomateSessionDocument = "\n mutation deleteAutomateSession($id: ID!) {\n deleteAutomateSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
12243
|
-
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}\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
|
|
12244
|
-
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, 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}\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
|
|
12766
|
+
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}\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 }\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 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 ";
|
|
12767
|
+
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, 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}\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 }\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 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 ";
|
|
12245
12768
|
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 ";
|
|
12246
12769
|
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 ";
|
|
12247
12770
|
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 ";
|
|
@@ -12279,18 +12802,22 @@ export declare const UpdateUpstreamProxyDocument = "\n mutation updateUpstrea
|
|
|
12279
12802
|
export declare const DeleteUpstreamProxyDocument = "\n mutation deleteUpstreamProxy($id: ID!) {\n deleteUpstreamProxy(id: $id) {\n deletedId\n }\n}\n ";
|
|
12280
12803
|
export declare const TestUpstreamProxyDocument = "\n mutation testUpstreamProxy($input: TestUpstreamProxyInput!) {\n testUpstreamProxy(input: $input) {\n success\n }\n}\n ";
|
|
12281
12804
|
export declare const RankUpstreamProxyDocument = "\n mutation rankUpstreamProxy($id: ID!, $input: RankUpstreamProxyInput!) {\n rankUpstreamProxy(id: $id, input: $input) {\n proxy {\n ...upstreamProxyFull\n }\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
12805
|
+
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
12806
|
+
export declare const UninstallPluginPackageDocument = "\n mutation uninstallPluginPackage($id: ID!) {\n uninstallPluginPackage(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\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 unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
12807
|
+
export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\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 pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
12808
|
+
export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\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 pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
12282
12809
|
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 }\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 ";
|
|
12283
12810
|
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\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 ";
|
|
12284
12811
|
export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n }\n}\n ";
|
|
12285
12812
|
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 ";
|
|
12286
|
-
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12287
|
-
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12813
|
+
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n 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 sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12814
|
+
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n 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 sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12288
12815
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
12289
|
-
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12290
|
-
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12816
|
+
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n 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 sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12817
|
+
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n 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 sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12291
12818
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
12292
|
-
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12293
|
-
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12819
|
+
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
12820
|
+
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12294
12821
|
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($replaySessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(replaySessionId: $replaySessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n __typename\n id\n error\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
12295
12822
|
export declare const CancelReplayTaskDocument = "\n mutation cancelReplayTask($id: ID!) {\n cancelReplayTask(id: $id) {\n cancelledId\n }\n}\n ";
|
|
12296
12823
|
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
@@ -12320,16 +12847,17 @@ export declare const UpdateWorkflowDocument = "\n mutation updateWorkflow($id
|
|
|
12320
12847
|
export declare const RunConvertWorkflowDocument = "\n mutation runConvertWorkflow($id: ID!, $input: Blob!) {\n runConvertWorkflow(id: $id, input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n output\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\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 ";
|
|
12321
12848
|
export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskFull\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskFull on Task {\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}\n ";
|
|
12322
12849
|
export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
12850
|
+
export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
12323
12851
|
export declare const AssistantModelsDocument = "\n query assistantModels {\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
12324
12852
|
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 ";
|
|
12325
12853
|
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 ";
|
|
12326
12854
|
export declare const AssistantUsageDocument = "\n query assistantUsage {\n viewer {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
12327
|
-
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
|
|
12328
|
-
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\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
|
|
12329
|
-
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order) {\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
|
|
12330
|
-
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0) {\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
|
|
12855
|
+
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 }\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 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 ";
|
|
12856
|
+
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\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 }\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 automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
12857
|
+
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order) {\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 }\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 automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
12858
|
+
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0) {\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 }\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 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 ";
|
|
12331
12859
|
export declare const AutomateSessionsDocument = "\n query automateSessions {\n automateSessions {\n edges {\n node {\n ...automateSessionMeta\n }\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 ";
|
|
12332
|
-
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}\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
|
|
12860
|
+
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}\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 }\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 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 ";
|
|
12333
12861
|
export declare const AutomateTasksDocument = "\n query automateTasks($after: String, $before: String, $first: Int, $last: Int) {\n automateTasks(after: $after, before: $before, first: $first, last: $last) {\n edges {\n node {\n ...automateTaskMeta\n }\n }\n pageInfo {\n ...pageInfoFull\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
12334
12862
|
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 ";
|
|
12335
12863
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
@@ -12357,13 +12885,14 @@ export declare const InterceptEntriesByOffsetDocument = "\n query interceptEn
|
|
|
12357
12885
|
export declare const InterceptEntryDocument = "\n query interceptEntry($id: ID!) {\n interceptEntry(id: $id) {\n ...interceptEntryFull\n }\n}\n \n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
12358
12886
|
export declare const InterceptEntryCountDocument = "\n query interceptEntryCount($filter: FilterClauseInterceptEntryInput, $scopeId: ID) {\n interceptEntries(first: 0, filter: $filter, scopeId: $scopeId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12359
12887
|
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxies {\n ...upstreamProxyFull\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
12888
|
+
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 ";
|
|
12360
12889
|
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...projectFull\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 ";
|
|
12361
12890
|
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 size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
12362
12891
|
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryMeta\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
12363
|
-
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
|
|
12364
|
-
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12892
|
+
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 sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12893
|
+
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12365
12894
|
export declare const ReplaySessionEntriesDocument = "\n query replaySessionEntries($id: ID!) {\n replaySession(id: $id) {\n activeEntry {\n ...replayEntryMeta\n }\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12366
|
-
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12895
|
+
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12367
12896
|
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: FilterClauseRequestResponseInput) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
12368
12897
|
export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: FilterClauseRequestResponseInput) {\n requests(first: 0, scopeId: $scopeId, filter: $filter) {\n count {\n ...countFull\n }\n snapshot\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12369
12898
|
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\n }\n}\n \n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
@@ -12427,10 +12956,13 @@ export declare const DeletedInterceptEntryDocument = "\n subscription deleted
|
|
|
12427
12956
|
export declare const StartedDeleteInterceptEntriesTaskDocument = "\n subscription startedDeleteInterceptEntriesTask {\n startedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
12428
12957
|
export declare const UpdatedDeleteInterceptEntriesTaskDocument = "\n subscription updatedDeleteInterceptEntriesTask {\n updatedDeleteInterceptEntriesTask {\n snapshot\n task {\n ...deleteInterceptEntriesTaskFull\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
12429
12958
|
export declare const FinishedDeleteInterceptEntriesTaskDocument = "\n subscription finishedDeleteInterceptEntriesTask {\n finishedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error {\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
12959
|
+
export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 ";
|
|
12960
|
+
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
12961
|
+
export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 ";
|
|
12430
12962
|
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 ";
|
|
12431
12963
|
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 ";
|
|
12432
12964
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
12433
|
-
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n
|
|
12965
|
+
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12434
12966
|
export declare const UpdatedReplayTaskDocument = "\n subscription updatedReplayTask {\n updatedReplayTask {\n replayTaskEdge {\n ...replayTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment replayTaskEdgeMeta on ReplayTaskEdge {\n __typename\n node {\n ...replayTaskMeta\n }\n cursor\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n __typename\n id\n error\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
12435
12967
|
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: FilterClauseRequestResponseInput) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
12436
12968
|
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: FilterClauseRequestResponseInput) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
@@ -12498,6 +13030,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
12498
13030
|
deleteUpstreamProxy(variables: DeleteUpstreamProxyMutationVariables, options?: C): Promise<DeleteUpstreamProxyMutation>;
|
|
12499
13031
|
testUpstreamProxy(variables: TestUpstreamProxyMutationVariables, options?: C): Promise<TestUpstreamProxyMutation>;
|
|
12500
13032
|
rankUpstreamProxy(variables: RankUpstreamProxyMutationVariables, options?: C): Promise<RankUpstreamProxyMutation>;
|
|
13033
|
+
installPluginPackage(variables: InstallPluginPackageMutationVariables, options?: C): Promise<InstallPluginPackageMutation>;
|
|
13034
|
+
uninstallPluginPackage(variables: UninstallPluginPackageMutationVariables, options?: C): Promise<UninstallPluginPackageMutation>;
|
|
13035
|
+
togglePlugin(variables: TogglePluginMutationVariables, options?: C): Promise<TogglePluginMutation>;
|
|
13036
|
+
setPluginData(variables: SetPluginDataMutationVariables, options?: C): Promise<SetPluginDataMutation>;
|
|
12501
13037
|
createProject(variables: CreateProjectMutationVariables, options?: C): Promise<CreateProjectMutation>;
|
|
12502
13038
|
selectProject(variables: SelectProjectMutationVariables, options?: C): Promise<SelectProjectMutation>;
|
|
12503
13039
|
deleteProject(variables: DeleteProjectMutationVariables, options?: C): Promise<DeleteProjectMutation>;
|
|
@@ -12539,6 +13075,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
12539
13075
|
runConvertWorkflow(variables: RunConvertWorkflowMutationVariables, options?: C): Promise<RunConvertWorkflowMutation>;
|
|
12540
13076
|
runActiveWorkflow(variables: RunActiveWorkflowMutationVariables, options?: C): Promise<RunActiveWorkflowMutation>;
|
|
12541
13077
|
globalizeWorkflow(variables: GlobalizeWorkflowMutationVariables, options?: C): Promise<GlobalizeWorkflowMutation>;
|
|
13078
|
+
localizeWorkflow(variables: LocalizeWorkflowMutationVariables, options?: C): Promise<LocalizeWorkflowMutation>;
|
|
12542
13079
|
assistantModels(variables?: AssistantModelsQueryVariables, options?: C): Promise<AssistantModelsQuery>;
|
|
12543
13080
|
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
12544
13081
|
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
@@ -12576,6 +13113,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
12576
13113
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
12577
13114
|
interceptEntryCount(variables?: InterceptEntryCountQueryVariables, options?: C): Promise<InterceptEntryCountQuery>;
|
|
12578
13115
|
upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
|
|
13116
|
+
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
12579
13117
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
12580
13118
|
projects(variables?: ProjectsQueryVariables, options?: C): Promise<ProjectsQuery>;
|
|
12581
13119
|
replayEntry(variables: ReplayEntryQueryVariables, options?: C): Promise<ReplayEntryQuery>;
|
|
@@ -12646,6 +13184,9 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
12646
13184
|
startedDeleteInterceptEntriesTask(variables?: StartedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<StartedDeleteInterceptEntriesTaskSubscription>;
|
|
12647
13185
|
updatedDeleteInterceptEntriesTask(variables?: UpdatedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedDeleteInterceptEntriesTaskSubscription>;
|
|
12648
13186
|
finishedDeleteInterceptEntriesTask(variables?: FinishedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedDeleteInterceptEntriesTaskSubscription>;
|
|
13187
|
+
createdPluginPackage(variables?: CreatedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<CreatedPluginPackageSubscription>;
|
|
13188
|
+
deletedPluginPackage(variables?: DeletedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<DeletedPluginPackageSubscription>;
|
|
13189
|
+
updatedPlugin(variables?: UpdatedPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedPluginSubscription>;
|
|
12649
13190
|
createdProject(variables?: CreatedProjectSubscriptionVariables, options?: C): AsyncIterable<CreatedProjectSubscription>;
|
|
12650
13191
|
updatedProject(variables?: UpdatedProjectSubscriptionVariables, options?: C): AsyncIterable<UpdatedProjectSubscription>;
|
|
12651
13192
|
deletedProject(variables?: DeletedProjectSubscriptionVariables, options?: C): AsyncIterable<DeletedProjectSubscription>;
|