@caido/sdk-frontend 0.56.1-beta.3 → 0.56.1-beta.4
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 -1
- package/src/types/__generated__/graphql-sdk.d.ts +190 -12
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export type { API as Caido } from "./types";
|
|
2
|
-
export
|
|
2
|
+
export * from "./types";
|
|
@@ -329,9 +329,14 @@ export type AutomateEntryEdge = {
|
|
|
329
329
|
/** The item at the end of the edge */
|
|
330
330
|
node: AutomateEntry;
|
|
331
331
|
};
|
|
332
|
+
export type AutomateEntryExtract = {
|
|
333
|
+
name: Scalars["String"]["output"];
|
|
334
|
+
raw: Scalars["Blob"]["output"];
|
|
335
|
+
};
|
|
332
336
|
export type AutomateEntryRequest = {
|
|
333
337
|
automateEntryId: Scalars["ID"]["output"];
|
|
334
338
|
error?: Maybe<Scalars["String"]["output"]>;
|
|
339
|
+
extracts: Array<AutomateEntryExtract>;
|
|
335
340
|
payloads: Array<AutomateEntryRequestPayload>;
|
|
336
341
|
request: Request;
|
|
337
342
|
sequenceId: Scalars["ID"]["output"];
|
|
@@ -354,6 +359,11 @@ export type AutomateEntryRequestEdge = {
|
|
|
354
359
|
node: AutomateEntryRequest;
|
|
355
360
|
};
|
|
356
361
|
export declare const AutomateEntryRequestOrderBy: {
|
|
362
|
+
readonly Extract_0: "EXTRACT_0";
|
|
363
|
+
readonly Extract_1: "EXTRACT_1";
|
|
364
|
+
readonly Extract_2: "EXTRACT_2";
|
|
365
|
+
readonly Extract_3: "EXTRACT_3";
|
|
366
|
+
readonly Extract_4: "EXTRACT_4";
|
|
357
367
|
readonly Id: "ID";
|
|
358
368
|
readonly Payload_0: "PAYLOAD_0";
|
|
359
369
|
readonly Payload_1: "PAYLOAD_1";
|
|
@@ -361,6 +371,7 @@ export declare const AutomateEntryRequestOrderBy: {
|
|
|
361
371
|
readonly Payload_3: "PAYLOAD_3";
|
|
362
372
|
readonly Payload_4: "PAYLOAD_4";
|
|
363
373
|
readonly Position: "POSITION";
|
|
374
|
+
readonly ReqCreatedAt: "REQ_CREATED_AT";
|
|
364
375
|
readonly RespLength: "RESP_LENGTH";
|
|
365
376
|
readonly RespRoundtripTime: "RESP_ROUNDTRIP_TIME";
|
|
366
377
|
readonly RespStatusCode: "RESP_STATUS_CODE";
|
|
@@ -374,6 +385,20 @@ export type AutomateEntryRequestPayload = {
|
|
|
374
385
|
position?: Maybe<Scalars["Int"]["output"]>;
|
|
375
386
|
raw?: Maybe<Scalars["Blob"]["output"]>;
|
|
376
387
|
};
|
|
388
|
+
export type AutomateExtractor = AutomateExtractorRegex;
|
|
389
|
+
export type AutomateExtractorInput = {
|
|
390
|
+
automateExtractorRegex: AutomateExtractorRegexInput;
|
|
391
|
+
};
|
|
392
|
+
export type AutomateExtractorRegex = {
|
|
393
|
+
body: Scalars["Boolean"]["output"];
|
|
394
|
+
regex: Scalars["String"]["output"];
|
|
395
|
+
workflowId?: Maybe<Scalars["ID"]["output"]>;
|
|
396
|
+
};
|
|
397
|
+
export type AutomateExtractorRegexInput = {
|
|
398
|
+
body: Scalars["Boolean"]["input"];
|
|
399
|
+
regex: Scalars["String"]["input"];
|
|
400
|
+
workflowId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
401
|
+
};
|
|
377
402
|
export type AutomateHostedFilePayload = {
|
|
378
403
|
delimiter?: Maybe<Scalars["String"]["output"]>;
|
|
379
404
|
id: Scalars["ID"]["output"];
|
|
@@ -522,6 +547,7 @@ export type AutomateSessionEdge = {
|
|
|
522
547
|
export type AutomateSettings = {
|
|
523
548
|
closeConnection: Scalars["Boolean"]["output"];
|
|
524
549
|
concurrency: AutomateConcurrencySetting;
|
|
550
|
+
extractors: Array<AutomateExtractor>;
|
|
525
551
|
payloads: Array<AutomatePayload>;
|
|
526
552
|
placeholders: Array<AutomatePlaceholder>;
|
|
527
553
|
redirect: AutomateRedirectSetting;
|
|
@@ -532,6 +558,7 @@ export type AutomateSettings = {
|
|
|
532
558
|
export type AutomateSettingsInput = {
|
|
533
559
|
closeConnection: Scalars["Boolean"]["input"];
|
|
534
560
|
concurrency: AutomateConcurrencySettingInput;
|
|
561
|
+
extractors: Array<AutomateExtractorInput>;
|
|
535
562
|
payloads: Array<AutomatePayloadInput>;
|
|
536
563
|
placeholders: Array<AutomatePlaceholderInput>;
|
|
537
564
|
redirect: AutomateRedirectSettingInput;
|
|
@@ -1128,6 +1155,10 @@ export type DataExportOnDemand = DataExport & {
|
|
|
1128
1155
|
downloadUri: Scalars["Uri"]["output"];
|
|
1129
1156
|
id: Scalars["ID"]["output"];
|
|
1130
1157
|
};
|
|
1158
|
+
export type DataExportSettingsInput = {
|
|
1159
|
+
format: DataExportFormat;
|
|
1160
|
+
includeRaw: Scalars["Boolean"]["input"];
|
|
1161
|
+
};
|
|
1131
1162
|
export declare const DataExportStatus: {
|
|
1132
1163
|
readonly Cancelled: "CANCELLED";
|
|
1133
1164
|
readonly Done: "DONE";
|
|
@@ -1414,6 +1445,18 @@ export type ExportFindingsPayload = {
|
|
|
1414
1445
|
error?: Maybe<ExportFindingsError>;
|
|
1415
1446
|
export?: Maybe<DataExportOnDemand>;
|
|
1416
1447
|
};
|
|
1448
|
+
export type ExportSitemapEntriesError = OtherUserError | PermissionDeniedUserError;
|
|
1449
|
+
export type ExportSitemapEntriesFilter = {
|
|
1450
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1451
|
+
};
|
|
1452
|
+
export type ExportSitemapEntriesInput = {
|
|
1453
|
+
filter: ExportSitemapEntriesFilter;
|
|
1454
|
+
settings: DataExportSettingsInput;
|
|
1455
|
+
};
|
|
1456
|
+
export type ExportSitemapEntriesPayload = {
|
|
1457
|
+
error?: Maybe<ExportSitemapEntriesError>;
|
|
1458
|
+
export?: Maybe<DataExportOnDemand>;
|
|
1459
|
+
};
|
|
1417
1460
|
export type ExportTamperError = OtherUserError | PermissionDeniedUserError;
|
|
1418
1461
|
export type ExportTamperInput = {
|
|
1419
1462
|
target: TamperExportScopeInput;
|
|
@@ -1873,6 +1916,7 @@ export type MutationRoot = {
|
|
|
1873
1916
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
1874
1917
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
1875
1918
|
exportFindings: ExportFindingsPayload;
|
|
1919
|
+
exportSitemapEntries: ExportSitemapEntriesPayload;
|
|
1876
1920
|
exportTamper: ExportTamperPayload;
|
|
1877
1921
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1878
1922
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
@@ -1937,6 +1981,7 @@ export type MutationRoot = {
|
|
|
1937
1981
|
startReplayTask: StartReplayTaskPayload;
|
|
1938
1982
|
stopReplayWsTasks: StopReplayWsTaskPayload;
|
|
1939
1983
|
testAiProvider: TestAiProviderPayload;
|
|
1984
|
+
testExtractor: TestExtractorPayload;
|
|
1940
1985
|
testTamperRule: TestTamperRulePayload;
|
|
1941
1986
|
testUpstreamProxyHttp: TestUpstreamProxyHttpPayload;
|
|
1942
1987
|
testUpstreamProxySocks: TestUpstreamProxySocksPayload;
|
|
@@ -2130,6 +2175,9 @@ export type MutationRootDuplicateAutomateSessionArgs = {
|
|
|
2130
2175
|
export type MutationRootExportFindingsArgs = {
|
|
2131
2176
|
input: ExportFindingsInput;
|
|
2132
2177
|
};
|
|
2178
|
+
export type MutationRootExportSitemapEntriesArgs = {
|
|
2179
|
+
input: ExportSitemapEntriesInput;
|
|
2180
|
+
};
|
|
2133
2181
|
export type MutationRootExportTamperArgs = {
|
|
2134
2182
|
input: ExportTamperInput;
|
|
2135
2183
|
};
|
|
@@ -2328,6 +2376,9 @@ export type MutationRootStopReplayWsTasksArgs = {
|
|
|
2328
2376
|
export type MutationRootTestAiProviderArgs = {
|
|
2329
2377
|
input: TestAiProviderInput;
|
|
2330
2378
|
};
|
|
2379
|
+
export type MutationRootTestExtractorArgs = {
|
|
2380
|
+
input: TestExtractorInput;
|
|
2381
|
+
};
|
|
2331
2382
|
export type MutationRootTestTamperRuleArgs = {
|
|
2332
2383
|
input: TestTamperRuleInput;
|
|
2333
2384
|
};
|
|
@@ -4642,6 +4693,13 @@ export type TestAiProviderPayload = {
|
|
|
4642
4693
|
error?: Maybe<TestAiProviderError>;
|
|
4643
4694
|
success?: Maybe<Scalars["Boolean"]["output"]>;
|
|
4644
4695
|
};
|
|
4696
|
+
export type TestExtractorInput = {
|
|
4697
|
+
extractor: AutomateExtractorInput;
|
|
4698
|
+
testInput: Scalars["Blob"]["input"];
|
|
4699
|
+
};
|
|
4700
|
+
export type TestExtractorPayload = {
|
|
4701
|
+
extracts?: Maybe<Array<Scalars["Blob"]["output"]>>;
|
|
4702
|
+
};
|
|
4645
4703
|
export type TestTamperRuleError = InvalidRegexUserError | OtherUserError;
|
|
4646
4704
|
export type TestTamperRuleInput = {
|
|
4647
4705
|
raw: Scalars["Blob"]["input"];
|
|
@@ -5840,6 +5898,12 @@ export type AutomateEntryFullFragment = {
|
|
|
5840
5898
|
max: number;
|
|
5841
5899
|
strategy: RedirectStrategy;
|
|
5842
5900
|
};
|
|
5901
|
+
extractors: Array<{
|
|
5902
|
+
__typename: "AutomateExtractorRegex";
|
|
5903
|
+
body: boolean;
|
|
5904
|
+
regex: string;
|
|
5905
|
+
workflowId?: string | undefined | null;
|
|
5906
|
+
}>;
|
|
5843
5907
|
};
|
|
5844
5908
|
session: {
|
|
5845
5909
|
id: string;
|
|
@@ -5850,6 +5914,11 @@ export type AutomateEntryRequestPayloadFullFragment = {
|
|
|
5850
5914
|
position?: number | undefined | null;
|
|
5851
5915
|
raw?: string | undefined | null;
|
|
5852
5916
|
};
|
|
5917
|
+
export type AutomateEntryRequestExtractFullFragment = {
|
|
5918
|
+
__typename: "AutomateEntryExtract";
|
|
5919
|
+
name: string;
|
|
5920
|
+
raw: string;
|
|
5921
|
+
};
|
|
5853
5922
|
export type AutomateEntryRequestMetaFragment = {
|
|
5854
5923
|
__typename: "AutomateEntryRequest";
|
|
5855
5924
|
sequenceId: string;
|
|
@@ -5895,6 +5964,11 @@ export type AutomateEntryRequestMetaFragment = {
|
|
|
5895
5964
|
position?: number | undefined | null;
|
|
5896
5965
|
raw?: string | undefined | null;
|
|
5897
5966
|
}>;
|
|
5967
|
+
extracts: Array<{
|
|
5968
|
+
__typename: "AutomateEntryExtract";
|
|
5969
|
+
name: string;
|
|
5970
|
+
raw: string;
|
|
5971
|
+
}>;
|
|
5898
5972
|
};
|
|
5899
5973
|
export type AutomateEntryRequestEdgeMetaFragment = {
|
|
5900
5974
|
__typename: "AutomateEntryRequestEdge";
|
|
@@ -5944,6 +6018,11 @@ export type AutomateEntryRequestEdgeMetaFragment = {
|
|
|
5944
6018
|
position?: number | undefined | null;
|
|
5945
6019
|
raw?: string | undefined | null;
|
|
5946
6020
|
}>;
|
|
6021
|
+
extracts: Array<{
|
|
6022
|
+
__typename: "AutomateEntryExtract";
|
|
6023
|
+
name: string;
|
|
6024
|
+
raw: string;
|
|
6025
|
+
}>;
|
|
5947
6026
|
};
|
|
5948
6027
|
};
|
|
5949
6028
|
export type AutomateSessionMetaFragment = {
|
|
@@ -6055,6 +6134,12 @@ export type AutomateSessionFullFragment = {
|
|
|
6055
6134
|
max: number;
|
|
6056
6135
|
strategy: RedirectStrategy;
|
|
6057
6136
|
};
|
|
6137
|
+
extractors: Array<{
|
|
6138
|
+
__typename: "AutomateExtractorRegex";
|
|
6139
|
+
body: boolean;
|
|
6140
|
+
regex: string;
|
|
6141
|
+
workflowId?: string | undefined | null;
|
|
6142
|
+
}>;
|
|
6058
6143
|
};
|
|
6059
6144
|
entries: Array<{
|
|
6060
6145
|
__typename: "AutomateEntry";
|
|
@@ -6130,6 +6215,18 @@ export type AutomateSettingsFullFragment = {
|
|
|
6130
6215
|
max: number;
|
|
6131
6216
|
strategy: RedirectStrategy;
|
|
6132
6217
|
};
|
|
6218
|
+
extractors: Array<{
|
|
6219
|
+
__typename: "AutomateExtractorRegex";
|
|
6220
|
+
body: boolean;
|
|
6221
|
+
regex: string;
|
|
6222
|
+
workflowId?: string | undefined | null;
|
|
6223
|
+
}>;
|
|
6224
|
+
};
|
|
6225
|
+
export type AutomateExtractorsFullFragment = {
|
|
6226
|
+
__typename: "AutomateExtractorRegex";
|
|
6227
|
+
body: boolean;
|
|
6228
|
+
regex: string;
|
|
6229
|
+
workflowId?: string | undefined | null;
|
|
6133
6230
|
};
|
|
6134
6231
|
export type AutomateRedirectFullFragment = {
|
|
6135
6232
|
__typename: "AutomateRedirectSetting";
|
|
@@ -6347,6 +6444,12 @@ export type AutomateEntryQuery = {
|
|
|
6347
6444
|
max: number;
|
|
6348
6445
|
strategy: RedirectStrategy;
|
|
6349
6446
|
};
|
|
6447
|
+
extractors: Array<{
|
|
6448
|
+
__typename: "AutomateExtractorRegex";
|
|
6449
|
+
body: boolean;
|
|
6450
|
+
regex: string;
|
|
6451
|
+
workflowId?: string | undefined | null;
|
|
6452
|
+
}>;
|
|
6350
6453
|
};
|
|
6351
6454
|
session: {
|
|
6352
6455
|
id: string;
|
|
@@ -6418,6 +6521,11 @@ export type AutomateEntryRequestsQuery = {
|
|
|
6418
6521
|
position?: number | undefined | null;
|
|
6419
6522
|
raw?: string | undefined | null;
|
|
6420
6523
|
}>;
|
|
6524
|
+
extracts: Array<{
|
|
6525
|
+
__typename: "AutomateEntryExtract";
|
|
6526
|
+
name: string;
|
|
6527
|
+
raw: string;
|
|
6528
|
+
}>;
|
|
6421
6529
|
};
|
|
6422
6530
|
}>;
|
|
6423
6531
|
};
|
|
@@ -6485,6 +6593,12 @@ export type AutomateEntryRequestsQuery = {
|
|
|
6485
6593
|
max: number;
|
|
6486
6594
|
strategy: RedirectStrategy;
|
|
6487
6595
|
};
|
|
6596
|
+
extractors: Array<{
|
|
6597
|
+
__typename: "AutomateExtractorRegex";
|
|
6598
|
+
body: boolean;
|
|
6599
|
+
regex: string;
|
|
6600
|
+
workflowId?: string | undefined | null;
|
|
6601
|
+
}>;
|
|
6488
6602
|
};
|
|
6489
6603
|
session: {
|
|
6490
6604
|
id: string;
|
|
@@ -6554,6 +6668,11 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
6554
6668
|
position?: number | undefined | null;
|
|
6555
6669
|
raw?: string | undefined | null;
|
|
6556
6670
|
}>;
|
|
6671
|
+
extracts: Array<{
|
|
6672
|
+
__typename: "AutomateEntryExtract";
|
|
6673
|
+
name: string;
|
|
6674
|
+
raw: string;
|
|
6675
|
+
}>;
|
|
6557
6676
|
};
|
|
6558
6677
|
}>;
|
|
6559
6678
|
};
|
|
@@ -6621,6 +6740,12 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
6621
6740
|
max: number;
|
|
6622
6741
|
strategy: RedirectStrategy;
|
|
6623
6742
|
};
|
|
6743
|
+
extractors: Array<{
|
|
6744
|
+
__typename: "AutomateExtractorRegex";
|
|
6745
|
+
body: boolean;
|
|
6746
|
+
regex: string;
|
|
6747
|
+
workflowId?: string | undefined | null;
|
|
6748
|
+
}>;
|
|
6624
6749
|
};
|
|
6625
6750
|
session: {
|
|
6626
6751
|
id: string;
|
|
@@ -6708,6 +6833,12 @@ export type AutomateEntryRequestsCountQuery = {
|
|
|
6708
6833
|
max: number;
|
|
6709
6834
|
strategy: RedirectStrategy;
|
|
6710
6835
|
};
|
|
6836
|
+
extractors: Array<{
|
|
6837
|
+
__typename: "AutomateExtractorRegex";
|
|
6838
|
+
body: boolean;
|
|
6839
|
+
regex: string;
|
|
6840
|
+
workflowId?: string | undefined | null;
|
|
6841
|
+
}>;
|
|
6711
6842
|
};
|
|
6712
6843
|
session: {
|
|
6713
6844
|
id: string;
|
|
@@ -6843,6 +6974,12 @@ export type AutomateSessionQuery = {
|
|
|
6843
6974
|
max: number;
|
|
6844
6975
|
strategy: RedirectStrategy;
|
|
6845
6976
|
};
|
|
6977
|
+
extractors: Array<{
|
|
6978
|
+
__typename: "AutomateExtractorRegex";
|
|
6979
|
+
body: boolean;
|
|
6980
|
+
regex: string;
|
|
6981
|
+
workflowId?: string | undefined | null;
|
|
6982
|
+
}>;
|
|
6846
6983
|
};
|
|
6847
6984
|
entries: Array<{
|
|
6848
6985
|
__typename: "AutomateEntry";
|
|
@@ -6855,6 +6992,14 @@ export type AutomateSessionQuery = {
|
|
|
6855
6992
|
}>;
|
|
6856
6993
|
} | undefined | null;
|
|
6857
6994
|
};
|
|
6995
|
+
export type TestExtractorMutationVariables = Exact<{
|
|
6996
|
+
input: TestExtractorInput;
|
|
6997
|
+
}>;
|
|
6998
|
+
export type TestExtractorMutation = {
|
|
6999
|
+
testExtractor: {
|
|
7000
|
+
extracts?: Array<string> | undefined | null;
|
|
7001
|
+
};
|
|
7002
|
+
};
|
|
6858
7003
|
export type DeleteAutomateEntriesMutationVariables = Exact<{
|
|
6859
7004
|
ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
6860
7005
|
}>;
|
|
@@ -6946,6 +7091,12 @@ export type RenameAutomateEntryMutation = {
|
|
|
6946
7091
|
max: number;
|
|
6947
7092
|
strategy: RedirectStrategy;
|
|
6948
7093
|
};
|
|
7094
|
+
extractors: Array<{
|
|
7095
|
+
__typename: "AutomateExtractorRegex";
|
|
7096
|
+
body: boolean;
|
|
7097
|
+
regex: string;
|
|
7098
|
+
workflowId?: string | undefined | null;
|
|
7099
|
+
}>;
|
|
6949
7100
|
};
|
|
6950
7101
|
session: {
|
|
6951
7102
|
id: string;
|
|
@@ -7035,6 +7186,12 @@ export type CreateAutomateSessionMutation = {
|
|
|
7035
7186
|
max: number;
|
|
7036
7187
|
strategy: RedirectStrategy;
|
|
7037
7188
|
};
|
|
7189
|
+
extractors: Array<{
|
|
7190
|
+
__typename: "AutomateExtractorRegex";
|
|
7191
|
+
body: boolean;
|
|
7192
|
+
regex: string;
|
|
7193
|
+
workflowId?: string | undefined | null;
|
|
7194
|
+
}>;
|
|
7038
7195
|
};
|
|
7039
7196
|
entries: Array<{
|
|
7040
7197
|
__typename: "AutomateEntry";
|
|
@@ -7139,6 +7296,12 @@ export type RenameAutomateSessionMutation = {
|
|
|
7139
7296
|
max: number;
|
|
7140
7297
|
strategy: RedirectStrategy;
|
|
7141
7298
|
};
|
|
7299
|
+
extractors: Array<{
|
|
7300
|
+
__typename: "AutomateExtractorRegex";
|
|
7301
|
+
body: boolean;
|
|
7302
|
+
regex: string;
|
|
7303
|
+
workflowId?: string | undefined | null;
|
|
7304
|
+
}>;
|
|
7142
7305
|
};
|
|
7143
7306
|
entries: Array<{
|
|
7144
7307
|
__typename: "AutomateEntry";
|
|
@@ -7235,6 +7398,12 @@ export type UpdateAutomateSessionMutation = {
|
|
|
7235
7398
|
max: number;
|
|
7236
7399
|
strategy: RedirectStrategy;
|
|
7237
7400
|
};
|
|
7401
|
+
extractors: Array<{
|
|
7402
|
+
__typename: "AutomateExtractorRegex";
|
|
7403
|
+
body: boolean;
|
|
7404
|
+
regex: string;
|
|
7405
|
+
workflowId?: string | undefined | null;
|
|
7406
|
+
}>;
|
|
7238
7407
|
};
|
|
7239
7408
|
entries: Array<{
|
|
7240
7409
|
__typename: "AutomateEntry";
|
|
@@ -7407,6 +7576,11 @@ export type CreatedAutomateEntryRequestSubscription = {
|
|
|
7407
7576
|
position?: number | undefined | null;
|
|
7408
7577
|
raw?: string | undefined | null;
|
|
7409
7578
|
}>;
|
|
7579
|
+
extracts: Array<{
|
|
7580
|
+
__typename: "AutomateEntryExtract";
|
|
7581
|
+
name: string;
|
|
7582
|
+
raw: string;
|
|
7583
|
+
}>;
|
|
7410
7584
|
};
|
|
7411
7585
|
};
|
|
7412
7586
|
};
|
|
@@ -54048,13 +54222,15 @@ export declare const AutomatePreprocessorFullFragmentDoc = "\n fragment autom
|
|
|
54048
54222
|
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 ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n ";
|
|
54049
54223
|
export declare const AutomatePlaceholderFullFragmentDoc = "\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
54050
54224
|
export declare const AutomateRedirectFullFragmentDoc = "\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n ";
|
|
54051
|
-
export declare const
|
|
54225
|
+
export declare const AutomateExtractorsFullFragmentDoc = "\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n ";
|
|
54226
|
+
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 redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n ";
|
|
54052
54227
|
export declare const AutomateEntryFullFragmentDoc = "\n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n ";
|
|
54053
54228
|
export declare const RequestMetadataFullFragmentDoc = "\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
54054
54229
|
export declare const ResponseMetaFragmentDoc = "\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
54055
54230
|
export declare const RequestMetaFragmentDoc = "\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n ";
|
|
54056
54231
|
export declare const AutomateEntryRequestPayloadFullFragmentDoc = "\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
54057
|
-
export declare const
|
|
54232
|
+
export declare const AutomateEntryRequestExtractFullFragmentDoc = "\n fragment automateEntryRequestExtractFull on AutomateEntryExtract {\n __typename\n name\n raw\n}\n ";
|
|
54233
|
+
export declare const AutomateEntryRequestMetaFragmentDoc = "\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n extracts {\n ...automateEntryRequestExtractFull\n }\n}\n ";
|
|
54058
54234
|
export declare const AutomateEntryRequestEdgeMetaFragmentDoc = "\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n ";
|
|
54059
54235
|
export declare const AutomateSessionMetaFragmentDoc = "\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n ";
|
|
54060
54236
|
export declare const AutomateSessionEdgeMetaFragmentDoc = "\n fragment automateSessionEdgeMeta on AutomateSessionEdge {\n node {\n ...automateSessionMeta\n }\n}\n ";
|
|
@@ -54257,23 +54433,24 @@ export declare const RefreshAuthenticationTokenDocument = "\n mutation refres
|
|
|
54257
54433
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
54258
54434
|
export declare const LoginAsGuestDocument = "\n mutation loginAsGuest {\n loginAsGuest {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
54259
54435
|
export declare const CreatedAuthenticationTokenDocument = "\n subscription createdAuthenticationToken($requestId: ID!) {\n createdAuthenticationToken(requestId: $requestId) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
54260
|
-
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 redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n ";
|
|
54261
|
-
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
54262
|
-
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
54263
|
-
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQLInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
54436
|
+
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 redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n ";
|
|
54437
|
+
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\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 extracts {\n ...automateEntryRequestExtractFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n \n\n fragment automateEntryRequestExtractFull on AutomateEntryExtract {\n __typename\n name\n raw\n}\n ";
|
|
54438
|
+
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\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 extracts {\n ...automateEntryRequestExtractFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n \n\n fragment automateEntryRequestExtractFull on AutomateEntryExtract {\n __typename\n name\n raw\n}\n ";
|
|
54439
|
+
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQLInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
54264
54440
|
export declare const AutomateSessionsStateDocument = "\n query automateSessionsState {\n automateSessions {\n edges {\n ...automateSessionEdgeMeta\n }\n }\n automateTasks {\n edges {\n ...automateTaskEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateSessionEdgeMeta on AutomateSessionEdge {\n node {\n ...automateSessionMeta\n }\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
54265
|
-
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n ";
|
|
54441
|
+
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n ";
|
|
54442
|
+
export declare const TestExtractorDocument = "\n mutation testExtractor($input: TestExtractorInput!) {\n testExtractor(input: $input) {\n extracts\n }\n}\n ";
|
|
54266
54443
|
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 ";
|
|
54267
|
-
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 redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n ";
|
|
54268
|
-
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n ";
|
|
54444
|
+
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 redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n ";
|
|
54445
|
+
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n ";
|
|
54269
54446
|
export declare const DeleteAutomateSessionDocument = "\n mutation deleteAutomateSession($id: ID!) {\n deleteAutomateSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
54270
|
-
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n ";
|
|
54271
|
-
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
54447
|
+
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n ";
|
|
54448
|
+
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n redirect {\n ...automateRedirectFull\n }\n extractors {\n ...automateExtractorsFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n increments\n minLength\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateRedirectFull on AutomateRedirectSetting {\n __typename\n max\n strategy\n}\n \n\n fragment automateExtractorsFull on AutomateExtractorRegex {\n __typename\n body\n regex\n workflowId\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
54272
54449
|
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 ";
|
|
54273
54450
|
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 ";
|
|
54274
54451
|
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 ";
|
|
54275
54452
|
export declare const StartAutomateTaskDocument = "\n mutation startAutomateTask($automateSessionId: ID!) {\n startAutomateTask(automateSessionId: $automateSessionId) {\n automateTask {\n ...automateTaskMeta\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
54276
|
-
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
54453
|
+
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n extracts {\n ...automateEntryRequestExtractFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n \n\n fragment automateEntryRequestExtractFull on AutomateEntryExtract {\n __typename\n name\n raw\n}\n ";
|
|
54277
54454
|
export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
54278
54455
|
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n status\n }\n}\n ";
|
|
54279
54456
|
export declare const UpdatedAutomateTaskDocument = "\n subscription updatedAutomateTask {\n updatedAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
@@ -54605,6 +54782,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
54605
54782
|
automateEntryRequestsCount(variables: AutomateEntryRequestsCountQueryVariables, options?: C): Promise<AutomateEntryRequestsCountQuery>;
|
|
54606
54783
|
automateSessionsState(variables?: AutomateSessionsStateQueryVariables, options?: C): Promise<AutomateSessionsStateQuery>;
|
|
54607
54784
|
automateSession(variables: AutomateSessionQueryVariables, options?: C): Promise<AutomateSessionQuery>;
|
|
54785
|
+
testExtractor(variables: TestExtractorMutationVariables, options?: C): Promise<TestExtractorMutation>;
|
|
54608
54786
|
deleteAutomateEntries(variables: DeleteAutomateEntriesMutationVariables, options?: C): Promise<DeleteAutomateEntriesMutation>;
|
|
54609
54787
|
renameAutomateEntry(variables: RenameAutomateEntryMutationVariables, options?: C): Promise<RenameAutomateEntryMutation>;
|
|
54610
54788
|
createAutomateSession(variables: CreateAutomateSessionMutationVariables, options?: C): Promise<CreateAutomateSessionMutation>;
|