@caido/sdk-frontend 0.42.1-beta.9 → 0.43.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3784,20 +3784,6 @@ export type UpdatedViewerAssistantUsageSubscription = {
3784
3784
  };
3785
3785
  };
3786
3786
  };
3787
- export type AuthenticationRequestFullFragment = {
3788
- __typename: "AuthenticationRequest";
3789
- id: string;
3790
- expiresAt: Date;
3791
- userCode: string;
3792
- verificationUrl: string;
3793
- };
3794
- export type AuthenticationTokenFullFragment = {
3795
- __typename: "AuthenticationToken";
3796
- accessToken: string;
3797
- expiresAt: Date;
3798
- refreshToken?: string | undefined | null;
3799
- scopes: Array<AuthenticationScope>;
3800
- };
3801
3787
  export type AutomateEntryMetaFragment = {
3802
3788
  __typename: "AutomateEntry";
3803
3789
  id: string;
@@ -4254,190 +4240,1415 @@ export type AutomateTaskEdgeMetaFragment = {
4254
4240
  };
4255
4241
  };
4256
4242
  };
4257
- export type BackupMetaFragment = {
4258
- __typename: "Backup";
4259
- id: string;
4260
- name: string;
4261
- path: string;
4262
- size: number;
4263
- status: BackupStatus;
4264
- createdAt: Date;
4265
- updatedAt: Date;
4266
- project?: {
4267
- id: string;
4268
- } | undefined | null;
4269
- };
4270
- export type BackupTaskMetaFragment = {
4271
- __typename: "BackupTask";
4272
- id: string;
4273
- backup: {
4274
- __typename: "Backup";
4243
+ export type AutomateEntryQueryVariables = Exact<{
4244
+ id: Scalars["ID"]["input"];
4245
+ }>;
4246
+ export type AutomateEntryQuery = {
4247
+ automateEntry?: {
4248
+ __typename: "AutomateEntry";
4275
4249
  id: string;
4276
4250
  name: string;
4277
- path: string;
4278
- size: number;
4279
- status: BackupStatus;
4280
4251
  createdAt: Date;
4281
- updatedAt: Date;
4282
- project?: {
4252
+ settings: {
4253
+ __typename: "AutomateSettings";
4254
+ closeConnection: boolean;
4255
+ updateContentLength: boolean;
4256
+ strategy: AutomatePayloadStrategy;
4257
+ concurrency: {
4258
+ __typename: "AutomateConcurrencySetting";
4259
+ delay: number;
4260
+ workers: number;
4261
+ };
4262
+ retryOnFailure: {
4263
+ __typename: "AutomateRetryOnFailureSetting";
4264
+ backoff: number;
4265
+ maximumRetries: number;
4266
+ };
4267
+ payloads: Array<{
4268
+ __typename: "AutomatePayload";
4269
+ options: {
4270
+ __typename: "AutomateHostedFilePayload";
4271
+ id: string;
4272
+ delimiter?: string | undefined | null;
4273
+ } | {
4274
+ __typename: "AutomateNullPayload";
4275
+ quantity: number;
4276
+ } | {
4277
+ __typename: "AutomateNumberPayload";
4278
+ range: {
4279
+ start: number;
4280
+ end: number;
4281
+ };
4282
+ } | {
4283
+ __typename: "AutomateSimpleListPayload";
4284
+ list: Array<string>;
4285
+ };
4286
+ preprocessors: Array<{
4287
+ __typename: "AutomatePreprocessor";
4288
+ options: {
4289
+ __typename: "AutomatePrefixPreprocessor";
4290
+ value: string;
4291
+ } | {
4292
+ __typename: "AutomateSuffixPreprocessor";
4293
+ value: string;
4294
+ } | {
4295
+ __typename: "AutomateUrlEncodePreprocessor";
4296
+ charset?: string | undefined | null;
4297
+ nonAscii: boolean;
4298
+ } | {
4299
+ __typename: "AutomateWorkflowPreprocessor";
4300
+ id: string;
4301
+ };
4302
+ }>;
4303
+ }>;
4304
+ placeholders: Array<{
4305
+ __typename: "AutomatePlaceholder";
4306
+ start: number;
4307
+ end: number;
4308
+ }>;
4309
+ };
4310
+ session: {
4283
4311
  id: string;
4284
- } | undefined | null;
4285
- };
4312
+ };
4313
+ } | undefined | null;
4286
4314
  };
4287
- export type RestoreBackupTaskMetaFragment = {
4288
- __typename: "RestoreBackupTask";
4289
- id: string;
4290
- backup?: {
4291
- __typename: "Backup";
4315
+ export type AutomateEntryRequestsQueryVariables = Exact<{
4316
+ id: Scalars["ID"]["input"];
4317
+ after?: InputMaybe<Scalars["String"]["input"]>;
4318
+ first?: InputMaybe<Scalars["Int"]["input"]>;
4319
+ before?: InputMaybe<Scalars["String"]["input"]>;
4320
+ last?: InputMaybe<Scalars["Int"]["input"]>;
4321
+ order?: InputMaybe<AutomateEntryRequestOrderInput>;
4322
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
4323
+ }>;
4324
+ export type AutomateEntryRequestsQuery = {
4325
+ automateEntry?: {
4326
+ __typename: "AutomateEntry";
4292
4327
  id: string;
4293
4328
  name: string;
4294
- path: string;
4295
- size: number;
4296
- status: BackupStatus;
4297
4329
  createdAt: Date;
4298
- updatedAt: Date;
4299
- project?: {
4330
+ requests: {
4331
+ snapshot: number;
4332
+ edges: Array<{
4333
+ __typename: "AutomateEntryRequestEdge";
4334
+ cursor: string;
4335
+ node: {
4336
+ __typename: "AutomateEntryRequest";
4337
+ sequenceId: string;
4338
+ automateEntryId: string;
4339
+ error?: string | undefined | null;
4340
+ request: {
4341
+ __typename: "Request";
4342
+ id: string;
4343
+ host: string;
4344
+ port: number;
4345
+ path: string;
4346
+ query: string;
4347
+ method: string;
4348
+ edited: boolean;
4349
+ isTls: boolean;
4350
+ length: number;
4351
+ alteration: Alteration;
4352
+ fileExtension?: string | undefined | null;
4353
+ source: Source;
4354
+ createdAt: Date;
4355
+ metadata: {
4356
+ __typename: "RequestMetadata";
4357
+ id: string;
4358
+ color?: string | undefined | null;
4359
+ };
4360
+ response?: {
4361
+ __typename: "Response";
4362
+ id: string;
4363
+ statusCode: number;
4364
+ roundtripTime: number;
4365
+ length: number;
4366
+ createdAt: Date;
4367
+ alteration: Alteration;
4368
+ edited: boolean;
4369
+ } | undefined | null;
4370
+ };
4371
+ payloads: Array<{
4372
+ __typename: "AutomateEntryRequestPayload";
4373
+ position?: number | undefined | null;
4374
+ raw?: string | undefined | null;
4375
+ }>;
4376
+ };
4377
+ }>;
4378
+ };
4379
+ settings: {
4380
+ __typename: "AutomateSettings";
4381
+ closeConnection: boolean;
4382
+ updateContentLength: boolean;
4383
+ strategy: AutomatePayloadStrategy;
4384
+ concurrency: {
4385
+ __typename: "AutomateConcurrencySetting";
4386
+ delay: number;
4387
+ workers: number;
4388
+ };
4389
+ retryOnFailure: {
4390
+ __typename: "AutomateRetryOnFailureSetting";
4391
+ backoff: number;
4392
+ maximumRetries: number;
4393
+ };
4394
+ payloads: Array<{
4395
+ __typename: "AutomatePayload";
4396
+ options: {
4397
+ __typename: "AutomateHostedFilePayload";
4398
+ id: string;
4399
+ delimiter?: string | undefined | null;
4400
+ } | {
4401
+ __typename: "AutomateNullPayload";
4402
+ quantity: number;
4403
+ } | {
4404
+ __typename: "AutomateNumberPayload";
4405
+ range: {
4406
+ start: number;
4407
+ end: number;
4408
+ };
4409
+ } | {
4410
+ __typename: "AutomateSimpleListPayload";
4411
+ list: Array<string>;
4412
+ };
4413
+ preprocessors: Array<{
4414
+ __typename: "AutomatePreprocessor";
4415
+ options: {
4416
+ __typename: "AutomatePrefixPreprocessor";
4417
+ value: string;
4418
+ } | {
4419
+ __typename: "AutomateSuffixPreprocessor";
4420
+ value: string;
4421
+ } | {
4422
+ __typename: "AutomateUrlEncodePreprocessor";
4423
+ charset?: string | undefined | null;
4424
+ nonAscii: boolean;
4425
+ } | {
4426
+ __typename: "AutomateWorkflowPreprocessor";
4427
+ id: string;
4428
+ };
4429
+ }>;
4430
+ }>;
4431
+ placeholders: Array<{
4432
+ __typename: "AutomatePlaceholder";
4433
+ start: number;
4434
+ end: number;
4435
+ }>;
4436
+ };
4437
+ session: {
4300
4438
  id: string;
4301
- } | undefined | null;
4439
+ };
4302
4440
  } | undefined | null;
4303
- project: {
4304
- __typename: "Project";
4441
+ };
4442
+ export type AutomateEntryRequestsByOffsetQueryVariables = Exact<{
4443
+ id: Scalars["ID"]["input"];
4444
+ limit?: InputMaybe<Scalars["Int"]["input"]>;
4445
+ offset?: InputMaybe<Scalars["Int"]["input"]>;
4446
+ order?: InputMaybe<AutomateEntryRequestOrderInput>;
4447
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
4448
+ }>;
4449
+ export type AutomateEntryRequestsByOffsetQuery = {
4450
+ automateEntry?: {
4451
+ __typename: "AutomateEntry";
4305
4452
  id: string;
4306
4453
  name: string;
4307
- path: string;
4308
- version: string;
4309
- status: ProjectStatus;
4310
- size: number;
4311
4454
  createdAt: Date;
4312
- updatedAt: Date;
4313
- backups: Array<{
4455
+ requestsByOffset: {
4456
+ snapshot: number;
4457
+ edges: Array<{
4458
+ __typename: "AutomateEntryRequestEdge";
4459
+ cursor: string;
4460
+ node: {
4461
+ __typename: "AutomateEntryRequest";
4462
+ sequenceId: string;
4463
+ automateEntryId: string;
4464
+ error?: string | undefined | null;
4465
+ request: {
4466
+ __typename: "Request";
4467
+ id: string;
4468
+ host: string;
4469
+ port: number;
4470
+ path: string;
4471
+ query: string;
4472
+ method: string;
4473
+ edited: boolean;
4474
+ isTls: boolean;
4475
+ length: number;
4476
+ alteration: Alteration;
4477
+ fileExtension?: string | undefined | null;
4478
+ source: Source;
4479
+ createdAt: Date;
4480
+ metadata: {
4481
+ __typename: "RequestMetadata";
4482
+ id: string;
4483
+ color?: string | undefined | null;
4484
+ };
4485
+ response?: {
4486
+ __typename: "Response";
4487
+ id: string;
4488
+ statusCode: number;
4489
+ roundtripTime: number;
4490
+ length: number;
4491
+ createdAt: Date;
4492
+ alteration: Alteration;
4493
+ edited: boolean;
4494
+ } | undefined | null;
4495
+ };
4496
+ payloads: Array<{
4497
+ __typename: "AutomateEntryRequestPayload";
4498
+ position?: number | undefined | null;
4499
+ raw?: string | undefined | null;
4500
+ }>;
4501
+ };
4502
+ }>;
4503
+ };
4504
+ settings: {
4505
+ __typename: "AutomateSettings";
4506
+ closeConnection: boolean;
4507
+ updateContentLength: boolean;
4508
+ strategy: AutomatePayloadStrategy;
4509
+ concurrency: {
4510
+ __typename: "AutomateConcurrencySetting";
4511
+ delay: number;
4512
+ workers: number;
4513
+ };
4514
+ retryOnFailure: {
4515
+ __typename: "AutomateRetryOnFailureSetting";
4516
+ backoff: number;
4517
+ maximumRetries: number;
4518
+ };
4519
+ payloads: Array<{
4520
+ __typename: "AutomatePayload";
4521
+ options: {
4522
+ __typename: "AutomateHostedFilePayload";
4523
+ id: string;
4524
+ delimiter?: string | undefined | null;
4525
+ } | {
4526
+ __typename: "AutomateNullPayload";
4527
+ quantity: number;
4528
+ } | {
4529
+ __typename: "AutomateNumberPayload";
4530
+ range: {
4531
+ start: number;
4532
+ end: number;
4533
+ };
4534
+ } | {
4535
+ __typename: "AutomateSimpleListPayload";
4536
+ list: Array<string>;
4537
+ };
4538
+ preprocessors: Array<{
4539
+ __typename: "AutomatePreprocessor";
4540
+ options: {
4541
+ __typename: "AutomatePrefixPreprocessor";
4542
+ value: string;
4543
+ } | {
4544
+ __typename: "AutomateSuffixPreprocessor";
4545
+ value: string;
4546
+ } | {
4547
+ __typename: "AutomateUrlEncodePreprocessor";
4548
+ charset?: string | undefined | null;
4549
+ nonAscii: boolean;
4550
+ } | {
4551
+ __typename: "AutomateWorkflowPreprocessor";
4552
+ id: string;
4553
+ };
4554
+ }>;
4555
+ }>;
4556
+ placeholders: Array<{
4557
+ __typename: "AutomatePlaceholder";
4558
+ start: number;
4559
+ end: number;
4560
+ }>;
4561
+ };
4562
+ session: {
4314
4563
  id: string;
4315
- }>;
4316
- };
4564
+ };
4565
+ } | undefined | null;
4317
4566
  };
4318
- export type FinishedBackupTaskSuccessFullFragment = {
4319
- __typename: "FinishedBackupTaskSuccess";
4320
- task: {
4321
- __typename: "BackupTask";
4567
+ export type AutomateEntryRequestsCountQueryVariables = Exact<{
4568
+ id: Scalars["ID"]["input"];
4569
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
4570
+ }>;
4571
+ export type AutomateEntryRequestsCountQuery = {
4572
+ automateEntry?: {
4573
+ __typename: "AutomateEntry";
4322
4574
  id: string;
4323
- backup: {
4324
- __typename: "Backup";
4575
+ name: string;
4576
+ createdAt: Date;
4577
+ requests: {
4578
+ count: {
4579
+ __typename: "Count";
4580
+ value: number;
4581
+ snapshot: number;
4582
+ };
4583
+ };
4584
+ settings: {
4585
+ __typename: "AutomateSettings";
4586
+ closeConnection: boolean;
4587
+ updateContentLength: boolean;
4588
+ strategy: AutomatePayloadStrategy;
4589
+ concurrency: {
4590
+ __typename: "AutomateConcurrencySetting";
4591
+ delay: number;
4592
+ workers: number;
4593
+ };
4594
+ retryOnFailure: {
4595
+ __typename: "AutomateRetryOnFailureSetting";
4596
+ backoff: number;
4597
+ maximumRetries: number;
4598
+ };
4599
+ payloads: Array<{
4600
+ __typename: "AutomatePayload";
4601
+ options: {
4602
+ __typename: "AutomateHostedFilePayload";
4603
+ id: string;
4604
+ delimiter?: string | undefined | null;
4605
+ } | {
4606
+ __typename: "AutomateNullPayload";
4607
+ quantity: number;
4608
+ } | {
4609
+ __typename: "AutomateNumberPayload";
4610
+ range: {
4611
+ start: number;
4612
+ end: number;
4613
+ };
4614
+ } | {
4615
+ __typename: "AutomateSimpleListPayload";
4616
+ list: Array<string>;
4617
+ };
4618
+ preprocessors: Array<{
4619
+ __typename: "AutomatePreprocessor";
4620
+ options: {
4621
+ __typename: "AutomatePrefixPreprocessor";
4622
+ value: string;
4623
+ } | {
4624
+ __typename: "AutomateSuffixPreprocessor";
4625
+ value: string;
4626
+ } | {
4627
+ __typename: "AutomateUrlEncodePreprocessor";
4628
+ charset?: string | undefined | null;
4629
+ nonAscii: boolean;
4630
+ } | {
4631
+ __typename: "AutomateWorkflowPreprocessor";
4632
+ id: string;
4633
+ };
4634
+ }>;
4635
+ }>;
4636
+ placeholders: Array<{
4637
+ __typename: "AutomatePlaceholder";
4638
+ start: number;
4639
+ end: number;
4640
+ }>;
4641
+ };
4642
+ session: {
4325
4643
  id: string;
4326
- name: string;
4327
- path: string;
4328
- size: number;
4329
- status: BackupStatus;
4330
- createdAt: Date;
4331
- updatedAt: Date;
4332
- project?: {
4333
- id: string;
4334
- } | undefined | null;
4335
4644
  };
4336
- };
4337
- };
4338
- export type FinishedBackupTaskCancelledFullFragment = {
4339
- __typename: "FinishedBackupTaskCancelled";
4340
- taskId: string;
4645
+ } | undefined | null;
4341
4646
  };
4342
- export type FinishedBackupTaskErrorFullFragment = {
4343
- __typename: "FinishedBackupTaskError";
4344
- taskId: string;
4345
- error: {
4346
- __typename: "BackupUserError";
4347
- reason: BackupErrorReason;
4348
- code: string;
4349
- } | {
4350
- __typename: "InternalUserError";
4351
- message: string;
4352
- code: string;
4353
- } | {
4354
- __typename: "OtherUserError";
4355
- code: string;
4647
+ export type AutomateSessionsQueryVariables = Exact<{
4648
+ [key: string]: never;
4649
+ }>;
4650
+ export type AutomateSessionsQuery = {
4651
+ automateSessions: {
4652
+ edges: Array<{
4653
+ node: {
4654
+ __typename: "AutomateSession";
4655
+ id: string;
4656
+ name: string;
4657
+ createdAt: Date;
4658
+ entries: Array<{
4659
+ __typename: "AutomateEntry";
4660
+ id: string;
4661
+ name: string;
4662
+ createdAt: Date;
4663
+ session: {
4664
+ id: string;
4665
+ };
4666
+ }>;
4667
+ };
4668
+ }>;
4356
4669
  };
4357
4670
  };
4358
- export type FinishedRestoreBackupTaskSuccessFullFragment = {
4359
- __typename: "FinishedRestoreBackupTaskSuccess";
4360
- task: {
4361
- __typename: "RestoreBackupTask";
4671
+ export type AutomateSessionQueryVariables = Exact<{
4672
+ id: Scalars["ID"]["input"];
4673
+ }>;
4674
+ export type AutomateSessionQuery = {
4675
+ automateSession?: {
4676
+ __typename: "AutomateSession";
4677
+ raw: string;
4362
4678
  id: string;
4363
- backup?: {
4364
- __typename: "Backup";
4679
+ name: string;
4680
+ createdAt: Date;
4681
+ connection: {
4682
+ __typename: "ConnectionInfo";
4683
+ host: string;
4684
+ port: number;
4685
+ isTls: boolean;
4686
+ };
4687
+ settings: {
4688
+ __typename: "AutomateSettings";
4689
+ closeConnection: boolean;
4690
+ updateContentLength: boolean;
4691
+ strategy: AutomatePayloadStrategy;
4692
+ concurrency: {
4693
+ __typename: "AutomateConcurrencySetting";
4694
+ delay: number;
4695
+ workers: number;
4696
+ };
4697
+ retryOnFailure: {
4698
+ __typename: "AutomateRetryOnFailureSetting";
4699
+ backoff: number;
4700
+ maximumRetries: number;
4701
+ };
4702
+ payloads: Array<{
4703
+ __typename: "AutomatePayload";
4704
+ options: {
4705
+ __typename: "AutomateHostedFilePayload";
4706
+ id: string;
4707
+ delimiter?: string | undefined | null;
4708
+ } | {
4709
+ __typename: "AutomateNullPayload";
4710
+ quantity: number;
4711
+ } | {
4712
+ __typename: "AutomateNumberPayload";
4713
+ range: {
4714
+ start: number;
4715
+ end: number;
4716
+ };
4717
+ } | {
4718
+ __typename: "AutomateSimpleListPayload";
4719
+ list: Array<string>;
4720
+ };
4721
+ preprocessors: Array<{
4722
+ __typename: "AutomatePreprocessor";
4723
+ options: {
4724
+ __typename: "AutomatePrefixPreprocessor";
4725
+ value: string;
4726
+ } | {
4727
+ __typename: "AutomateSuffixPreprocessor";
4728
+ value: string;
4729
+ } | {
4730
+ __typename: "AutomateUrlEncodePreprocessor";
4731
+ charset?: string | undefined | null;
4732
+ nonAscii: boolean;
4733
+ } | {
4734
+ __typename: "AutomateWorkflowPreprocessor";
4735
+ id: string;
4736
+ };
4737
+ }>;
4738
+ }>;
4739
+ placeholders: Array<{
4740
+ __typename: "AutomatePlaceholder";
4741
+ start: number;
4742
+ end: number;
4743
+ }>;
4744
+ };
4745
+ entries: Array<{
4746
+ __typename: "AutomateEntry";
4365
4747
  id: string;
4366
4748
  name: string;
4367
- path: string;
4368
- size: number;
4369
- status: BackupStatus;
4370
4749
  createdAt: Date;
4371
- updatedAt: Date;
4372
- project?: {
4750
+ session: {
4373
4751
  id: string;
4374
- } | undefined | null;
4375
- } | undefined | null;
4376
- project: {
4377
- __typename: "Project";
4378
- id: string;
4379
- name: string;
4380
- path: string;
4381
- version: string;
4382
- status: ProjectStatus;
4383
- size: number;
4384
- createdAt: Date;
4385
- updatedAt: Date;
4386
- backups: Array<{
4752
+ };
4753
+ }>;
4754
+ } | undefined | null;
4755
+ };
4756
+ export type AutomateTasksQueryVariables = Exact<{
4757
+ after?: InputMaybe<Scalars["String"]["input"]>;
4758
+ before?: InputMaybe<Scalars["String"]["input"]>;
4759
+ first?: InputMaybe<Scalars["Int"]["input"]>;
4760
+ last?: InputMaybe<Scalars["Int"]["input"]>;
4761
+ }>;
4762
+ export type AutomateTasksQuery = {
4763
+ automateTasks: {
4764
+ edges: Array<{
4765
+ node: {
4387
4766
  id: string;
4388
- }>;
4767
+ paused: boolean;
4768
+ entry: {
4769
+ __typename: "AutomateEntry";
4770
+ id: string;
4771
+ name: string;
4772
+ createdAt: Date;
4773
+ session: {
4774
+ id: string;
4775
+ };
4776
+ };
4777
+ };
4778
+ }>;
4779
+ pageInfo: {
4780
+ __typename: "PageInfo";
4781
+ hasPreviousPage: boolean;
4782
+ hasNextPage: boolean;
4783
+ startCursor?: string | undefined | null;
4784
+ endCursor?: string | undefined | null;
4389
4785
  };
4390
4786
  };
4391
4787
  };
4392
- export type FinishedRestoreBackupTaskCancelledFullFragment = {
4393
- __typename: "FinishedRestoreBackupTaskCancelled";
4394
- taskId: string;
4395
- };
4396
- export type FinishedRestoreBackupTaskErrorFullFragment = {
4397
- __typename: "FinishedRestoreBackupTaskError";
4398
- taskId: string;
4399
- error: {
4400
- __typename: "BackupUserError";
4401
- reason: BackupErrorReason;
4402
- code: string;
4403
- } | {
4404
- __typename: "InternalUserError";
4405
- message: string;
4406
- code: string;
4407
- } | {
4408
- __typename: "OtherUserError";
4409
- code: string;
4788
+ export type DeleteAutomateEntriesMutationVariables = Exact<{
4789
+ ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
4790
+ }>;
4791
+ export type DeleteAutomateEntriesMutation = {
4792
+ deleteAutomateEntries: {
4793
+ deletedIds: Array<string>;
4794
+ errors: Array<{
4795
+ __typename: "OtherUserError";
4796
+ code: string;
4797
+ } | {
4798
+ __typename: "TaskInProgressUserError";
4799
+ taskId: string;
4800
+ code: string;
4801
+ }>;
4410
4802
  };
4411
4803
  };
4412
- export type BrowserFullFragment = {
4413
- __typename: "Browser";
4414
- id: string;
4415
- installedAt: Date;
4416
- latest: boolean;
4417
- path: string;
4418
- size: number;
4419
- version: string;
4420
- };
4421
- export type ConnectionInfoFullFragment = {
4422
- __typename: "ConnectionInfo";
4423
- host: string;
4424
- port: number;
4425
- isTls: boolean;
4426
- };
4427
- export type AuthenticationUserErrorFullFragment = {
4428
- __typename: "AuthenticationUserError";
4429
- reason: AuthenticationErrorReason;
4430
- code: string;
4431
- };
4432
- export type InvalidRegexUserErrorFullFragment = {
4433
- __typename: "InvalidRegexUserError";
4434
- term: string;
4435
- code: string;
4804
+ export type RenameAutomateEntryMutationVariables = Exact<{
4805
+ id: Scalars["ID"]["input"];
4806
+ name: Scalars["String"]["input"];
4807
+ }>;
4808
+ export type RenameAutomateEntryMutation = {
4809
+ renameAutomateEntry: {
4810
+ entry?: {
4811
+ __typename: "AutomateEntry";
4812
+ id: string;
4813
+ name: string;
4814
+ createdAt: Date;
4815
+ settings: {
4816
+ __typename: "AutomateSettings";
4817
+ closeConnection: boolean;
4818
+ updateContentLength: boolean;
4819
+ strategy: AutomatePayloadStrategy;
4820
+ concurrency: {
4821
+ __typename: "AutomateConcurrencySetting";
4822
+ delay: number;
4823
+ workers: number;
4824
+ };
4825
+ retryOnFailure: {
4826
+ __typename: "AutomateRetryOnFailureSetting";
4827
+ backoff: number;
4828
+ maximumRetries: number;
4829
+ };
4830
+ payloads: Array<{
4831
+ __typename: "AutomatePayload";
4832
+ options: {
4833
+ __typename: "AutomateHostedFilePayload";
4834
+ id: string;
4835
+ delimiter?: string | undefined | null;
4836
+ } | {
4837
+ __typename: "AutomateNullPayload";
4838
+ quantity: number;
4839
+ } | {
4840
+ __typename: "AutomateNumberPayload";
4841
+ range: {
4842
+ start: number;
4843
+ end: number;
4844
+ };
4845
+ } | {
4846
+ __typename: "AutomateSimpleListPayload";
4847
+ list: Array<string>;
4848
+ };
4849
+ preprocessors: Array<{
4850
+ __typename: "AutomatePreprocessor";
4851
+ options: {
4852
+ __typename: "AutomatePrefixPreprocessor";
4853
+ value: string;
4854
+ } | {
4855
+ __typename: "AutomateSuffixPreprocessor";
4856
+ value: string;
4857
+ } | {
4858
+ __typename: "AutomateUrlEncodePreprocessor";
4859
+ charset?: string | undefined | null;
4860
+ nonAscii: boolean;
4861
+ } | {
4862
+ __typename: "AutomateWorkflowPreprocessor";
4863
+ id: string;
4864
+ };
4865
+ }>;
4866
+ }>;
4867
+ placeholders: Array<{
4868
+ __typename: "AutomatePlaceholder";
4869
+ start: number;
4870
+ end: number;
4871
+ }>;
4872
+ };
4873
+ session: {
4874
+ id: string;
4875
+ };
4876
+ } | undefined | null;
4877
+ };
4436
4878
  };
4437
- export type NameTakenUserErrorFullFragment = {
4438
- __typename: "NameTakenUserError";
4439
- name: string;
4440
- code: string;
4879
+ export type CreateAutomateSessionMutationVariables = Exact<{
4880
+ input: CreateAutomateSessionInput;
4881
+ }>;
4882
+ export type CreateAutomateSessionMutation = {
4883
+ createAutomateSession: {
4884
+ session?: {
4885
+ __typename: "AutomateSession";
4886
+ raw: string;
4887
+ id: string;
4888
+ name: string;
4889
+ createdAt: Date;
4890
+ connection: {
4891
+ __typename: "ConnectionInfo";
4892
+ host: string;
4893
+ port: number;
4894
+ isTls: boolean;
4895
+ };
4896
+ settings: {
4897
+ __typename: "AutomateSettings";
4898
+ closeConnection: boolean;
4899
+ updateContentLength: boolean;
4900
+ strategy: AutomatePayloadStrategy;
4901
+ concurrency: {
4902
+ __typename: "AutomateConcurrencySetting";
4903
+ delay: number;
4904
+ workers: number;
4905
+ };
4906
+ retryOnFailure: {
4907
+ __typename: "AutomateRetryOnFailureSetting";
4908
+ backoff: number;
4909
+ maximumRetries: number;
4910
+ };
4911
+ payloads: Array<{
4912
+ __typename: "AutomatePayload";
4913
+ options: {
4914
+ __typename: "AutomateHostedFilePayload";
4915
+ id: string;
4916
+ delimiter?: string | undefined | null;
4917
+ } | {
4918
+ __typename: "AutomateNullPayload";
4919
+ quantity: number;
4920
+ } | {
4921
+ __typename: "AutomateNumberPayload";
4922
+ range: {
4923
+ start: number;
4924
+ end: number;
4925
+ };
4926
+ } | {
4927
+ __typename: "AutomateSimpleListPayload";
4928
+ list: Array<string>;
4929
+ };
4930
+ preprocessors: Array<{
4931
+ __typename: "AutomatePreprocessor";
4932
+ options: {
4933
+ __typename: "AutomatePrefixPreprocessor";
4934
+ value: string;
4935
+ } | {
4936
+ __typename: "AutomateSuffixPreprocessor";
4937
+ value: string;
4938
+ } | {
4939
+ __typename: "AutomateUrlEncodePreprocessor";
4940
+ charset?: string | undefined | null;
4941
+ nonAscii: boolean;
4942
+ } | {
4943
+ __typename: "AutomateWorkflowPreprocessor";
4944
+ id: string;
4945
+ };
4946
+ }>;
4947
+ }>;
4948
+ placeholders: Array<{
4949
+ __typename: "AutomatePlaceholder";
4950
+ start: number;
4951
+ end: number;
4952
+ }>;
4953
+ };
4954
+ entries: Array<{
4955
+ __typename: "AutomateEntry";
4956
+ id: string;
4957
+ name: string;
4958
+ createdAt: Date;
4959
+ session: {
4960
+ id: string;
4961
+ };
4962
+ }>;
4963
+ } | undefined | null;
4964
+ };
4965
+ };
4966
+ export type DeleteAutomateSessionMutationVariables = Exact<{
4967
+ id: Scalars["ID"]["input"];
4968
+ }>;
4969
+ export type DeleteAutomateSessionMutation = {
4970
+ deleteAutomateSession: {
4971
+ deletedId?: string | undefined | null;
4972
+ };
4973
+ };
4974
+ export type RenameAutomateSessionMutationVariables = Exact<{
4975
+ id: Scalars["ID"]["input"];
4976
+ name: Scalars["String"]["input"];
4977
+ }>;
4978
+ export type RenameAutomateSessionMutation = {
4979
+ renameAutomateSession: {
4980
+ session?: {
4981
+ __typename: "AutomateSession";
4982
+ raw: string;
4983
+ id: string;
4984
+ name: string;
4985
+ createdAt: Date;
4986
+ connection: {
4987
+ __typename: "ConnectionInfo";
4988
+ host: string;
4989
+ port: number;
4990
+ isTls: boolean;
4991
+ };
4992
+ settings: {
4993
+ __typename: "AutomateSettings";
4994
+ closeConnection: boolean;
4995
+ updateContentLength: boolean;
4996
+ strategy: AutomatePayloadStrategy;
4997
+ concurrency: {
4998
+ __typename: "AutomateConcurrencySetting";
4999
+ delay: number;
5000
+ workers: number;
5001
+ };
5002
+ retryOnFailure: {
5003
+ __typename: "AutomateRetryOnFailureSetting";
5004
+ backoff: number;
5005
+ maximumRetries: number;
5006
+ };
5007
+ payloads: Array<{
5008
+ __typename: "AutomatePayload";
5009
+ options: {
5010
+ __typename: "AutomateHostedFilePayload";
5011
+ id: string;
5012
+ delimiter?: string | undefined | null;
5013
+ } | {
5014
+ __typename: "AutomateNullPayload";
5015
+ quantity: number;
5016
+ } | {
5017
+ __typename: "AutomateNumberPayload";
5018
+ range: {
5019
+ start: number;
5020
+ end: number;
5021
+ };
5022
+ } | {
5023
+ __typename: "AutomateSimpleListPayload";
5024
+ list: Array<string>;
5025
+ };
5026
+ preprocessors: Array<{
5027
+ __typename: "AutomatePreprocessor";
5028
+ options: {
5029
+ __typename: "AutomatePrefixPreprocessor";
5030
+ value: string;
5031
+ } | {
5032
+ __typename: "AutomateSuffixPreprocessor";
5033
+ value: string;
5034
+ } | {
5035
+ __typename: "AutomateUrlEncodePreprocessor";
5036
+ charset?: string | undefined | null;
5037
+ nonAscii: boolean;
5038
+ } | {
5039
+ __typename: "AutomateWorkflowPreprocessor";
5040
+ id: string;
5041
+ };
5042
+ }>;
5043
+ }>;
5044
+ placeholders: Array<{
5045
+ __typename: "AutomatePlaceholder";
5046
+ start: number;
5047
+ end: number;
5048
+ }>;
5049
+ };
5050
+ entries: Array<{
5051
+ __typename: "AutomateEntry";
5052
+ id: string;
5053
+ name: string;
5054
+ createdAt: Date;
5055
+ session: {
5056
+ id: string;
5057
+ };
5058
+ }>;
5059
+ } | undefined | null;
5060
+ };
5061
+ };
5062
+ export type UpdateAutomateSessionMutationVariables = Exact<{
5063
+ id: Scalars["ID"]["input"];
5064
+ input: UpdateAutomateSessionInput;
5065
+ }>;
5066
+ export type UpdateAutomateSessionMutation = {
5067
+ updateAutomateSession: {
5068
+ session?: {
5069
+ __typename: "AutomateSession";
5070
+ raw: string;
5071
+ id: string;
5072
+ name: string;
5073
+ createdAt: Date;
5074
+ connection: {
5075
+ __typename: "ConnectionInfo";
5076
+ host: string;
5077
+ port: number;
5078
+ isTls: boolean;
5079
+ };
5080
+ settings: {
5081
+ __typename: "AutomateSettings";
5082
+ closeConnection: boolean;
5083
+ updateContentLength: boolean;
5084
+ strategy: AutomatePayloadStrategy;
5085
+ concurrency: {
5086
+ __typename: "AutomateConcurrencySetting";
5087
+ delay: number;
5088
+ workers: number;
5089
+ };
5090
+ retryOnFailure: {
5091
+ __typename: "AutomateRetryOnFailureSetting";
5092
+ backoff: number;
5093
+ maximumRetries: number;
5094
+ };
5095
+ payloads: Array<{
5096
+ __typename: "AutomatePayload";
5097
+ options: {
5098
+ __typename: "AutomateHostedFilePayload";
5099
+ id: string;
5100
+ delimiter?: string | undefined | null;
5101
+ } | {
5102
+ __typename: "AutomateNullPayload";
5103
+ quantity: number;
5104
+ } | {
5105
+ __typename: "AutomateNumberPayload";
5106
+ range: {
5107
+ start: number;
5108
+ end: number;
5109
+ };
5110
+ } | {
5111
+ __typename: "AutomateSimpleListPayload";
5112
+ list: Array<string>;
5113
+ };
5114
+ preprocessors: Array<{
5115
+ __typename: "AutomatePreprocessor";
5116
+ options: {
5117
+ __typename: "AutomatePrefixPreprocessor";
5118
+ value: string;
5119
+ } | {
5120
+ __typename: "AutomateSuffixPreprocessor";
5121
+ value: string;
5122
+ } | {
5123
+ __typename: "AutomateUrlEncodePreprocessor";
5124
+ charset?: string | undefined | null;
5125
+ nonAscii: boolean;
5126
+ } | {
5127
+ __typename: "AutomateWorkflowPreprocessor";
5128
+ id: string;
5129
+ };
5130
+ }>;
5131
+ }>;
5132
+ placeholders: Array<{
5133
+ __typename: "AutomatePlaceholder";
5134
+ start: number;
5135
+ end: number;
5136
+ }>;
5137
+ };
5138
+ entries: Array<{
5139
+ __typename: "AutomateEntry";
5140
+ id: string;
5141
+ name: string;
5142
+ createdAt: Date;
5143
+ session: {
5144
+ id: string;
5145
+ };
5146
+ }>;
5147
+ } | undefined | null;
5148
+ };
5149
+ };
5150
+ export type CancelAutomateTaskMutationVariables = Exact<{
5151
+ id: Scalars["ID"]["input"];
5152
+ }>;
5153
+ export type CancelAutomateTaskMutation = {
5154
+ cancelAutomateTask: {
5155
+ cancelledId?: string | undefined | null;
5156
+ userError?: {
5157
+ __typename: "OtherUserError";
5158
+ code: string;
5159
+ } | {
5160
+ __typename: "UnknownIdUserError";
5161
+ id: string;
5162
+ code: string;
5163
+ } | undefined | null;
5164
+ };
5165
+ };
5166
+ export type PauseAutomateTaskMutationVariables = Exact<{
5167
+ id: Scalars["ID"]["input"];
5168
+ }>;
5169
+ export type PauseAutomateTaskMutation = {
5170
+ pauseAutomateTask: {
5171
+ automateTask?: {
5172
+ id: string;
5173
+ paused: boolean;
5174
+ entry: {
5175
+ __typename: "AutomateEntry";
5176
+ id: string;
5177
+ name: string;
5178
+ createdAt: Date;
5179
+ session: {
5180
+ id: string;
5181
+ };
5182
+ };
5183
+ } | undefined | null;
5184
+ userError?: {
5185
+ __typename: "OtherUserError";
5186
+ code: string;
5187
+ } | {
5188
+ __typename: "UnknownIdUserError";
5189
+ id: string;
5190
+ code: string;
5191
+ } | undefined | null;
5192
+ };
5193
+ };
5194
+ export type ResumeAutomateTaskMutationVariables = Exact<{
5195
+ id: Scalars["ID"]["input"];
5196
+ }>;
5197
+ export type ResumeAutomateTaskMutation = {
5198
+ resumeAutomateTask: {
5199
+ automateTask?: {
5200
+ id: string;
5201
+ paused: boolean;
5202
+ entry: {
5203
+ __typename: "AutomateEntry";
5204
+ id: string;
5205
+ name: string;
5206
+ createdAt: Date;
5207
+ session: {
5208
+ id: string;
5209
+ };
5210
+ };
5211
+ } | undefined | null;
5212
+ userError?: {
5213
+ __typename: "OtherUserError";
5214
+ code: string;
5215
+ } | {
5216
+ __typename: "UnknownIdUserError";
5217
+ id: string;
5218
+ code: string;
5219
+ } | undefined | null;
5220
+ };
5221
+ };
5222
+ export type StartAutomateTaskMutationVariables = Exact<{
5223
+ automateSessionId: Scalars["ID"]["input"];
5224
+ }>;
5225
+ export type StartAutomateTaskMutation = {
5226
+ startAutomateTask: {
5227
+ automateTask?: {
5228
+ id: string;
5229
+ paused: boolean;
5230
+ entry: {
5231
+ __typename: "AutomateEntry";
5232
+ id: string;
5233
+ name: string;
5234
+ createdAt: Date;
5235
+ session: {
5236
+ id: string;
5237
+ };
5238
+ };
5239
+ } | undefined | null;
5240
+ };
5241
+ };
5242
+ export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
5243
+ order?: InputMaybe<AutomateEntryRequestOrderInput>;
5244
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
5245
+ }>;
5246
+ export type CreatedAutomateEntryRequestSubscription = {
5247
+ createdAutomateEntryRequest: {
5248
+ snapshot: number;
5249
+ automateEntryRequestEdge: {
5250
+ __typename: "AutomateEntryRequestEdge";
5251
+ cursor: string;
5252
+ node: {
5253
+ __typename: "AutomateEntryRequest";
5254
+ sequenceId: string;
5255
+ automateEntryId: string;
5256
+ error?: string | undefined | null;
5257
+ request: {
5258
+ __typename: "Request";
5259
+ id: string;
5260
+ host: string;
5261
+ port: number;
5262
+ path: string;
5263
+ query: string;
5264
+ method: string;
5265
+ edited: boolean;
5266
+ isTls: boolean;
5267
+ length: number;
5268
+ alteration: Alteration;
5269
+ fileExtension?: string | undefined | null;
5270
+ source: Source;
5271
+ createdAt: Date;
5272
+ metadata: {
5273
+ __typename: "RequestMetadata";
5274
+ id: string;
5275
+ color?: string | undefined | null;
5276
+ };
5277
+ response?: {
5278
+ __typename: "Response";
5279
+ id: string;
5280
+ statusCode: number;
5281
+ roundtripTime: number;
5282
+ length: number;
5283
+ createdAt: Date;
5284
+ alteration: Alteration;
5285
+ edited: boolean;
5286
+ } | undefined | null;
5287
+ };
5288
+ payloads: Array<{
5289
+ __typename: "AutomateEntryRequestPayload";
5290
+ position?: number | undefined | null;
5291
+ raw?: string | undefined | null;
5292
+ }>;
5293
+ };
5294
+ };
5295
+ };
5296
+ };
5297
+ export type CreatedAutomateTaskSubscriptionVariables = Exact<{
5298
+ [key: string]: never;
5299
+ }>;
5300
+ export type CreatedAutomateTaskSubscription = {
5301
+ createdAutomateTask: {
5302
+ snapshot: number;
5303
+ automateTaskEdge: {
5304
+ node: {
5305
+ id: string;
5306
+ paused: boolean;
5307
+ entry: {
5308
+ __typename: "AutomateEntry";
5309
+ id: string;
5310
+ name: string;
5311
+ createdAt: Date;
5312
+ session: {
5313
+ id: string;
5314
+ };
5315
+ };
5316
+ };
5317
+ };
5318
+ };
5319
+ };
5320
+ export type DeletedAutomateTaskSubscriptionVariables = Exact<{
5321
+ [key: string]: never;
5322
+ }>;
5323
+ export type DeletedAutomateTaskSubscription = {
5324
+ deletedAutomateTask: {
5325
+ deletedAutomateTaskId: string;
5326
+ snapshot: number;
5327
+ };
5328
+ };
5329
+ export type UpdatedAutomateTaskSubscriptionVariables = Exact<{
5330
+ [key: string]: never;
5331
+ }>;
5332
+ export type UpdatedAutomateTaskSubscription = {
5333
+ updatedAutomateTask: {
5334
+ snapshot: number;
5335
+ automateTaskEdge: {
5336
+ node: {
5337
+ id: string;
5338
+ paused: boolean;
5339
+ entry: {
5340
+ __typename: "AutomateEntry";
5341
+ id: string;
5342
+ name: string;
5343
+ createdAt: Date;
5344
+ session: {
5345
+ id: string;
5346
+ };
5347
+ };
5348
+ };
5349
+ };
5350
+ };
5351
+ };
5352
+ export type CreatedAutomateEntrySubscriptionVariables = Exact<{
5353
+ [key: string]: never;
5354
+ }>;
5355
+ export type CreatedAutomateEntrySubscription = {
5356
+ createdAutomateEntry: {
5357
+ automateEntryEdge: {
5358
+ node: {
5359
+ __typename: "AutomateEntry";
5360
+ id: string;
5361
+ name: string;
5362
+ createdAt: Date;
5363
+ session: {
5364
+ id: string;
5365
+ };
5366
+ };
5367
+ };
5368
+ };
5369
+ };
5370
+ export type UpdatedAutomateEntrySubscriptionVariables = Exact<{
5371
+ [key: string]: never;
5372
+ }>;
5373
+ export type UpdatedAutomateEntrySubscription = {
5374
+ updatedAutomateEntry: {
5375
+ snapshot: number;
5376
+ automateEntryEdge: {
5377
+ node: {
5378
+ __typename: "AutomateEntry";
5379
+ id: string;
5380
+ name: string;
5381
+ createdAt: Date;
5382
+ session: {
5383
+ id: string;
5384
+ };
5385
+ };
5386
+ };
5387
+ };
5388
+ };
5389
+ export type DeletedAutomateEntrySubscriptionVariables = Exact<{
5390
+ [key: string]: never;
5391
+ }>;
5392
+ export type DeletedAutomateEntrySubscription = {
5393
+ deletedAutomateEntry: {
5394
+ deletedAutomateEntryId: string;
5395
+ };
5396
+ };
5397
+ export type CreatedAutomateSessionSubscriptionVariables = Exact<{
5398
+ [key: string]: never;
5399
+ }>;
5400
+ export type CreatedAutomateSessionSubscription = {
5401
+ createdAutomateSession: {
5402
+ automateSessionEdge: {
5403
+ node: {
5404
+ __typename: "AutomateSession";
5405
+ id: string;
5406
+ name: string;
5407
+ createdAt: Date;
5408
+ entries: Array<{
5409
+ __typename: "AutomateEntry";
5410
+ id: string;
5411
+ name: string;
5412
+ createdAt: Date;
5413
+ session: {
5414
+ id: string;
5415
+ };
5416
+ }>;
5417
+ };
5418
+ };
5419
+ };
5420
+ };
5421
+ export type UpdatedAutomateSessionSubscriptionVariables = Exact<{
5422
+ [key: string]: never;
5423
+ }>;
5424
+ export type UpdatedAutomateSessionSubscription = {
5425
+ updatedAutomateSession: {
5426
+ snapshot: number;
5427
+ automateSessionEdge: {
5428
+ node: {
5429
+ __typename: "AutomateSession";
5430
+ id: string;
5431
+ name: string;
5432
+ createdAt: Date;
5433
+ entries: Array<{
5434
+ __typename: "AutomateEntry";
5435
+ id: string;
5436
+ name: string;
5437
+ createdAt: Date;
5438
+ session: {
5439
+ id: string;
5440
+ };
5441
+ }>;
5442
+ };
5443
+ };
5444
+ };
5445
+ };
5446
+ export type DeletedAutomateSessionSubscriptionVariables = Exact<{
5447
+ [key: string]: never;
5448
+ }>;
5449
+ export type DeletedAutomateSessionSubscription = {
5450
+ deletedAutomateSession: {
5451
+ deletedAutomateSessionId: string;
5452
+ };
5453
+ };
5454
+ export type AuthenticationRequestFullFragment = {
5455
+ __typename: "AuthenticationRequest";
5456
+ id: string;
5457
+ expiresAt: Date;
5458
+ userCode: string;
5459
+ verificationUrl: string;
5460
+ };
5461
+ export type AuthenticationTokenFullFragment = {
5462
+ __typename: "AuthenticationToken";
5463
+ accessToken: string;
5464
+ expiresAt: Date;
5465
+ refreshToken?: string | undefined | null;
5466
+ scopes: Array<AuthenticationScope>;
5467
+ };
5468
+ export type BackupMetaFragment = {
5469
+ __typename: "Backup";
5470
+ id: string;
5471
+ name: string;
5472
+ path: string;
5473
+ size: number;
5474
+ status: BackupStatus;
5475
+ createdAt: Date;
5476
+ updatedAt: Date;
5477
+ project?: {
5478
+ id: string;
5479
+ } | undefined | null;
5480
+ };
5481
+ export type BackupTaskMetaFragment = {
5482
+ __typename: "BackupTask";
5483
+ id: string;
5484
+ backup: {
5485
+ __typename: "Backup";
5486
+ id: string;
5487
+ name: string;
5488
+ path: string;
5489
+ size: number;
5490
+ status: BackupStatus;
5491
+ createdAt: Date;
5492
+ updatedAt: Date;
5493
+ project?: {
5494
+ id: string;
5495
+ } | undefined | null;
5496
+ };
5497
+ };
5498
+ export type RestoreBackupTaskMetaFragment = {
5499
+ __typename: "RestoreBackupTask";
5500
+ id: string;
5501
+ backup?: {
5502
+ __typename: "Backup";
5503
+ id: string;
5504
+ name: string;
5505
+ path: string;
5506
+ size: number;
5507
+ status: BackupStatus;
5508
+ createdAt: Date;
5509
+ updatedAt: Date;
5510
+ project?: {
5511
+ id: string;
5512
+ } | undefined | null;
5513
+ } | undefined | null;
5514
+ project: {
5515
+ __typename: "Project";
5516
+ id: string;
5517
+ name: string;
5518
+ path: string;
5519
+ version: string;
5520
+ status: ProjectStatus;
5521
+ size: number;
5522
+ createdAt: Date;
5523
+ updatedAt: Date;
5524
+ backups: Array<{
5525
+ id: string;
5526
+ }>;
5527
+ };
5528
+ };
5529
+ export type FinishedBackupTaskSuccessFullFragment = {
5530
+ __typename: "FinishedBackupTaskSuccess";
5531
+ task: {
5532
+ __typename: "BackupTask";
5533
+ id: string;
5534
+ backup: {
5535
+ __typename: "Backup";
5536
+ id: string;
5537
+ name: string;
5538
+ path: string;
5539
+ size: number;
5540
+ status: BackupStatus;
5541
+ createdAt: Date;
5542
+ updatedAt: Date;
5543
+ project?: {
5544
+ id: string;
5545
+ } | undefined | null;
5546
+ };
5547
+ };
5548
+ };
5549
+ export type FinishedBackupTaskCancelledFullFragment = {
5550
+ __typename: "FinishedBackupTaskCancelled";
5551
+ taskId: string;
5552
+ };
5553
+ export type FinishedBackupTaskErrorFullFragment = {
5554
+ __typename: "FinishedBackupTaskError";
5555
+ taskId: string;
5556
+ error: {
5557
+ __typename: "BackupUserError";
5558
+ reason: BackupErrorReason;
5559
+ code: string;
5560
+ } | {
5561
+ __typename: "InternalUserError";
5562
+ message: string;
5563
+ code: string;
5564
+ } | {
5565
+ __typename: "OtherUserError";
5566
+ code: string;
5567
+ };
5568
+ };
5569
+ export type FinishedRestoreBackupTaskSuccessFullFragment = {
5570
+ __typename: "FinishedRestoreBackupTaskSuccess";
5571
+ task: {
5572
+ __typename: "RestoreBackupTask";
5573
+ id: string;
5574
+ backup?: {
5575
+ __typename: "Backup";
5576
+ id: string;
5577
+ name: string;
5578
+ path: string;
5579
+ size: number;
5580
+ status: BackupStatus;
5581
+ createdAt: Date;
5582
+ updatedAt: Date;
5583
+ project?: {
5584
+ id: string;
5585
+ } | undefined | null;
5586
+ } | undefined | null;
5587
+ project: {
5588
+ __typename: "Project";
5589
+ id: string;
5590
+ name: string;
5591
+ path: string;
5592
+ version: string;
5593
+ status: ProjectStatus;
5594
+ size: number;
5595
+ createdAt: Date;
5596
+ updatedAt: Date;
5597
+ backups: Array<{
5598
+ id: string;
5599
+ }>;
5600
+ };
5601
+ };
5602
+ };
5603
+ export type FinishedRestoreBackupTaskCancelledFullFragment = {
5604
+ __typename: "FinishedRestoreBackupTaskCancelled";
5605
+ taskId: string;
5606
+ };
5607
+ export type FinishedRestoreBackupTaskErrorFullFragment = {
5608
+ __typename: "FinishedRestoreBackupTaskError";
5609
+ taskId: string;
5610
+ error: {
5611
+ __typename: "BackupUserError";
5612
+ reason: BackupErrorReason;
5613
+ code: string;
5614
+ } | {
5615
+ __typename: "InternalUserError";
5616
+ message: string;
5617
+ code: string;
5618
+ } | {
5619
+ __typename: "OtherUserError";
5620
+ code: string;
5621
+ };
5622
+ };
5623
+ export type BrowserFullFragment = {
5624
+ __typename: "Browser";
5625
+ id: string;
5626
+ installedAt: Date;
5627
+ latest: boolean;
5628
+ path: string;
5629
+ size: number;
5630
+ version: string;
5631
+ };
5632
+ export type ConnectionInfoFullFragment = {
5633
+ __typename: "ConnectionInfo";
5634
+ host: string;
5635
+ port: number;
5636
+ isTls: boolean;
5637
+ };
5638
+ export type AuthenticationUserErrorFullFragment = {
5639
+ __typename: "AuthenticationUserError";
5640
+ reason: AuthenticationErrorReason;
5641
+ code: string;
5642
+ };
5643
+ export type InvalidRegexUserErrorFullFragment = {
5644
+ __typename: "InvalidRegexUserError";
5645
+ term: string;
5646
+ code: string;
5647
+ };
5648
+ export type NameTakenUserErrorFullFragment = {
5649
+ __typename: "NameTakenUserError";
5650
+ name: string;
5651
+ code: string;
4441
5652
  };
4442
5653
  export type AliasTakenUserErrorFullFragment = {
4443
5654
  __typename: "AliasTakenUserError";
@@ -5335,781 +6546,327 @@ export type RangeFullFragment = {
5335
6546
  start: number;
5336
6547
  end: number;
5337
6548
  };
5338
- export type RuntimeFullFragment = {
5339
- __typename: "Runtime";
5340
- version: string;
5341
- platform: string;
5342
- availableUpdate?: {
5343
- __typename: "Release";
5344
- releasedAt: Date;
5345
- version: string;
5346
- links: Array<{
5347
- __typename: "ReleaseLink";
5348
- display: string;
5349
- link: string;
5350
- platform: string;
5351
- }>;
5352
- } | undefined | null;
5353
- };
5354
- export type ReleaseFullFragment = {
5355
- __typename: "Release";
5356
- releasedAt: Date;
5357
- version: string;
5358
- links: Array<{
5359
- __typename: "ReleaseLink";
5360
- display: string;
5361
- link: string;
5362
- platform: string;
5363
- }>;
5364
- };
5365
- export type ScopeFullFragment = {
5366
- __typename: "Scope";
5367
- id: string;
5368
- name: string;
5369
- allowlist: Array<string>;
5370
- denylist: Array<string>;
5371
- indexed: boolean;
5372
- };
5373
- export type SitemapEntryEdgeMetaFragment = {
5374
- __typename: "SitemapEntryEdge";
5375
- cursor: string;
5376
- node: {
5377
- __typename: "SitemapEntry";
5378
- id: string;
5379
- label: string;
5380
- kind: SitemapEntryKind;
5381
- parentId?: string | undefined | null;
5382
- hasDescendants: boolean;
5383
- metadata?: {
5384
- isTls: boolean;
5385
- port: number;
5386
- } | undefined | null;
5387
- };
5388
- };
5389
- export type SitemapEntryMetaFragment = {
5390
- __typename: "SitemapEntry";
5391
- id: string;
5392
- label: string;
5393
- kind: SitemapEntryKind;
5394
- parentId?: string | undefined | null;
5395
- hasDescendants: boolean;
5396
- metadata?: {
5397
- isTls: boolean;
5398
- port: number;
5399
- } | undefined | null;
5400
- };
5401
- export type StreamMetaFragment = {
5402
- __typename: "Stream";
5403
- id: string;
5404
- createdAt: Date;
5405
- direction: StreamDirection;
5406
- host: string;
5407
- isTls: boolean;
5408
- path: string;
5409
- port: number;
5410
- protocol: StreamProtocol;
5411
- source: Source;
5412
- };
5413
- export type StreamEdgeMetaFragment = {
5414
- __typename: "StreamEdge";
5415
- cursor: string;
5416
- node: {
5417
- __typename: "Stream";
5418
- id: string;
5419
- createdAt: Date;
5420
- direction: StreamDirection;
5421
- host: string;
5422
- isTls: boolean;
5423
- path: string;
5424
- port: number;
5425
- protocol: StreamProtocol;
5426
- source: Source;
5427
- };
5428
- };
5429
- export type StreamWsMessageMetaFragment = {
5430
- id: string;
5431
- length: number;
5432
- createdAt: Date;
5433
- direction: StreamMessageDirection;
5434
- edited: boolean;
5435
- alteration: Alteration;
5436
- format: StreamWsMessageFormat;
5437
- streamId: string;
5438
- };
5439
- export type StreamWsMessageFullFragment = {
5440
- raw: string;
5441
- id: string;
5442
- length: number;
5443
- createdAt: Date;
5444
- direction: StreamMessageDirection;
5445
- edited: boolean;
5446
- alteration: Alteration;
5447
- format: StreamWsMessageFormat;
5448
- streamId: string;
5449
- };
5450
- export type StreamWsMessageEdgeMetaFragment = {
5451
- __typename: "StreamWsMessageEdge";
5452
- cursor: string;
5453
- node: {
5454
- id: string;
5455
- length: number;
5456
- createdAt: Date;
5457
- direction: StreamMessageDirection;
5458
- edited: boolean;
5459
- alteration: Alteration;
5460
- format: StreamWsMessageFormat;
5461
- streamId: string;
5462
- };
5463
- };
5464
- export type TamperRuleCollectionFullFragment = {
5465
- __typename: "TamperRuleCollection";
5466
- id: string;
5467
- name: string;
5468
- rules: Array<{
5469
- __typename: "TamperRule";
5470
- id: string;
5471
- isEnabled: boolean;
5472
- isRegex: boolean;
5473
- name: string;
5474
- matchTerm: string;
5475
- replaceTerm: string;
5476
- strategy: TamperStrategy;
5477
- rank: string;
5478
- condition?: string | undefined | null;
5479
- collection: {
5480
- id: string;
5481
- };
5482
- }>;
5483
- };
5484
- export type TamperRuleFullFragment = {
5485
- __typename: "TamperRule";
5486
- id: string;
5487
- isEnabled: boolean;
5488
- isRegex: boolean;
5489
- name: string;
5490
- matchTerm: string;
5491
- replaceTerm: string;
5492
- strategy: TamperStrategy;
5493
- rank: string;
5494
- condition?: string | undefined | null;
5495
- collection: {
5496
- id: string;
5497
- };
5498
- };
5499
- type TaskMeta_ReplayTask_Fragment = {
5500
- __typename: "ReplayTask";
5501
- id: string;
5502
- createdAt: Date;
5503
- };
5504
- type TaskMeta_WorkflowTask_Fragment = {
5505
- __typename: "WorkflowTask";
5506
- id: string;
5507
- createdAt: Date;
5508
- };
5509
- export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
5510
- export type UpstreamProxyHttpFullFragment = {
5511
- __typename: "UpstreamProxyHttp";
5512
- id: string;
5513
- allowlist: Array<string>;
5514
- denylist: Array<string>;
5515
- enabled: boolean;
5516
- rank: string;
5517
- auth?: {
5518
- __typename: "UpstreamProxyAuthBasic";
5519
- username: string;
5520
- password: string;
5521
- } | undefined | null;
5522
- connection: {
5523
- __typename: "ConnectionInfo";
5524
- host: string;
5525
- port: number;
5526
- isTls: boolean;
5527
- };
5528
- };
5529
- export type UpstreamProxySocksFullFragment = {
5530
- __typename: "UpstreamProxySocks";
5531
- id: string;
5532
- allowlist: Array<string>;
5533
- denylist: Array<string>;
5534
- enabled: boolean;
5535
- includeDns: boolean;
5536
- rank: string;
5537
- auth?: {
5538
- __typename: "UpstreamProxyAuthBasic";
5539
- username: string;
5540
- password: string;
5541
- } | undefined | null;
5542
- connection: {
5543
- __typename: "ConnectionInfo";
5544
- host: string;
5545
- port: number;
5546
- isTls: boolean;
5547
- };
5548
- };
5549
- export type UpstreamProxyAuthBasicFullFragment = {
5550
- __typename: "UpstreamProxyAuthBasic";
5551
- username: string;
5552
- password: string;
5553
- };
5554
- export type UserProfileFullFragment = {
5555
- __typename: "UserProfile";
5556
- identity: {
5557
- __typename: "UserIdentity";
5558
- name: string;
5559
- email: string;
5560
- };
5561
- subscription: {
5562
- __typename: "UserSubscription";
5563
- entitlements: Array<{
5564
- __typename: "UserEntitlement";
5565
- name: string;
5566
- }>;
5567
- plan: {
5568
- __typename: "UserSubscriptionPlan";
5569
- name: string;
5570
- };
5571
- };
5572
- };
5573
- export type UserSettingsFullFragment = {
5574
- __typename: "UserSettings";
5575
- data: JSONValue;
5576
- migrations: JSONValue;
6549
+ export type RuntimeFullFragment = {
6550
+ __typename: "Runtime";
6551
+ version: string;
6552
+ platform: string;
6553
+ availableUpdate?: {
6554
+ __typename: "Release";
6555
+ releasedAt: Date;
6556
+ version: string;
6557
+ links: Array<{
6558
+ __typename: "ReleaseLink";
6559
+ display: string;
6560
+ link: string;
6561
+ platform: string;
6562
+ }>;
6563
+ } | undefined | null;
5577
6564
  };
5578
- export type WorkflowMetaFragment = {
5579
- __typename: "Workflow";
5580
- id: string;
5581
- kind: WorkflowKind;
5582
- name: string;
5583
- enabled: boolean;
5584
- global: boolean;
5585
- readOnly: boolean;
6565
+ export type ReleaseFullFragment = {
6566
+ __typename: "Release";
6567
+ releasedAt: Date;
6568
+ version: string;
6569
+ links: Array<{
6570
+ __typename: "ReleaseLink";
6571
+ display: string;
6572
+ link: string;
6573
+ platform: string;
6574
+ }>;
5586
6575
  };
5587
- export type WorkflowFullFragment = {
5588
- __typename: "Workflow";
5589
- definition: JSONValue;
6576
+ export type ScopeFullFragment = {
6577
+ __typename: "Scope";
5590
6578
  id: string;
5591
- kind: WorkflowKind;
5592
6579
  name: string;
5593
- enabled: boolean;
5594
- global: boolean;
5595
- readOnly: boolean;
5596
- };
5597
- export type WorkflowNodeDefinitionFullFragment = {
5598
- __typename: "WorkflowNodeDefinition";
5599
- raw: JSONValue;
6580
+ allowlist: Array<string>;
6581
+ denylist: Array<string>;
6582
+ indexed: boolean;
5600
6583
  };
5601
- export type WorkflowTaskMetaFragment = {
5602
- __typename: "WorkflowTask";
5603
- id: string;
5604
- createdAt: Date;
5605
- workflow: {
5606
- __typename: "Workflow";
6584
+ export type SitemapEntryEdgeMetaFragment = {
6585
+ __typename: "SitemapEntryEdge";
6586
+ cursor: string;
6587
+ node: {
6588
+ __typename: "SitemapEntry";
5607
6589
  id: string;
5608
- kind: WorkflowKind;
5609
- name: string;
5610
- enabled: boolean;
5611
- global: boolean;
5612
- readOnly: boolean;
5613
- };
5614
- };
5615
- export type StartAuthenticationFlowMutationVariables = Exact<{
5616
- [key: string]: never;
5617
- }>;
5618
- export type StartAuthenticationFlowMutation = {
5619
- startAuthenticationFlow: {
5620
- request?: {
5621
- __typename: "AuthenticationRequest";
5622
- id: string;
5623
- expiresAt: Date;
5624
- userCode: string;
5625
- verificationUrl: string;
5626
- } | undefined | null;
5627
- error?: {
5628
- __typename: "AuthenticationUserError";
5629
- reason: AuthenticationErrorReason;
5630
- code: string;
5631
- } | {
5632
- __typename: "OtherUserError";
5633
- code: string;
6590
+ label: string;
6591
+ kind: SitemapEntryKind;
6592
+ parentId?: string | undefined | null;
6593
+ hasDescendants: boolean;
6594
+ metadata?: {
6595
+ isTls: boolean;
6596
+ port: number;
5634
6597
  } | undefined | null;
5635
6598
  };
5636
6599
  };
5637
- export type RefreshAuthenticationTokenMutationVariables = Exact<{
5638
- refreshToken: Scalars["Token"]["input"];
5639
- }>;
5640
- export type RefreshAuthenticationTokenMutation = {
5641
- refreshAuthenticationToken: {
5642
- token?: {
5643
- __typename: "AuthenticationToken";
5644
- accessToken: string;
5645
- expiresAt: Date;
5646
- refreshToken?: string | undefined | null;
5647
- scopes: Array<AuthenticationScope>;
5648
- } | undefined | null;
5649
- };
6600
+ export type SitemapEntryMetaFragment = {
6601
+ __typename: "SitemapEntry";
6602
+ id: string;
6603
+ label: string;
6604
+ kind: SitemapEntryKind;
6605
+ parentId?: string | undefined | null;
6606
+ hasDescendants: boolean;
6607
+ metadata?: {
6608
+ isTls: boolean;
6609
+ port: number;
6610
+ } | undefined | null;
5650
6611
  };
5651
- export type LogoutMutationVariables = Exact<{
5652
- [key: string]: never;
5653
- }>;
5654
- export type LogoutMutation = {
5655
- logout: {
5656
- success: boolean;
5657
- };
6612
+ export type StreamMetaFragment = {
6613
+ __typename: "Stream";
6614
+ id: string;
6615
+ createdAt: Date;
6616
+ direction: StreamDirection;
6617
+ host: string;
6618
+ isTls: boolean;
6619
+ path: string;
6620
+ port: number;
6621
+ protocol: StreamProtocol;
6622
+ source: Source;
5658
6623
  };
5659
- export type DeleteAutomateEntriesMutationVariables = Exact<{
5660
- ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
5661
- }>;
5662
- export type DeleteAutomateEntriesMutation = {
5663
- deleteAutomateEntries: {
5664
- deletedIds: Array<string>;
5665
- errors: Array<{
5666
- __typename: "OtherUserError";
5667
- code: string;
5668
- } | {
5669
- __typename: "TaskInProgressUserError";
5670
- taskId: string;
5671
- code: string;
5672
- }>;
6624
+ export type StreamEdgeMetaFragment = {
6625
+ __typename: "StreamEdge";
6626
+ cursor: string;
6627
+ node: {
6628
+ __typename: "Stream";
6629
+ id: string;
6630
+ createdAt: Date;
6631
+ direction: StreamDirection;
6632
+ host: string;
6633
+ isTls: boolean;
6634
+ path: string;
6635
+ port: number;
6636
+ protocol: StreamProtocol;
6637
+ source: Source;
5673
6638
  };
5674
6639
  };
5675
- export type RenameAutomateEntryMutationVariables = Exact<{
5676
- id: Scalars["ID"]["input"];
5677
- name: Scalars["String"]["input"];
5678
- }>;
5679
- export type RenameAutomateEntryMutation = {
5680
- renameAutomateEntry: {
5681
- entry?: {
5682
- __typename: "AutomateEntry";
5683
- id: string;
5684
- name: string;
5685
- createdAt: Date;
5686
- settings: {
5687
- __typename: "AutomateSettings";
5688
- closeConnection: boolean;
5689
- updateContentLength: boolean;
5690
- strategy: AutomatePayloadStrategy;
5691
- concurrency: {
5692
- __typename: "AutomateConcurrencySetting";
5693
- delay: number;
5694
- workers: number;
5695
- };
5696
- retryOnFailure: {
5697
- __typename: "AutomateRetryOnFailureSetting";
5698
- backoff: number;
5699
- maximumRetries: number;
5700
- };
5701
- payloads: Array<{
5702
- __typename: "AutomatePayload";
5703
- options: {
5704
- __typename: "AutomateHostedFilePayload";
5705
- id: string;
5706
- delimiter?: string | undefined | null;
5707
- } | {
5708
- __typename: "AutomateNullPayload";
5709
- quantity: number;
5710
- } | {
5711
- __typename: "AutomateNumberPayload";
5712
- range: {
5713
- start: number;
5714
- end: number;
5715
- };
5716
- } | {
5717
- __typename: "AutomateSimpleListPayload";
5718
- list: Array<string>;
5719
- };
5720
- preprocessors: Array<{
5721
- __typename: "AutomatePreprocessor";
5722
- options: {
5723
- __typename: "AutomatePrefixPreprocessor";
5724
- value: string;
5725
- } | {
5726
- __typename: "AutomateSuffixPreprocessor";
5727
- value: string;
5728
- } | {
5729
- __typename: "AutomateUrlEncodePreprocessor";
5730
- charset?: string | undefined | null;
5731
- nonAscii: boolean;
5732
- } | {
5733
- __typename: "AutomateWorkflowPreprocessor";
5734
- id: string;
5735
- };
5736
- }>;
5737
- }>;
5738
- placeholders: Array<{
5739
- __typename: "AutomatePlaceholder";
5740
- start: number;
5741
- end: number;
5742
- }>;
5743
- };
5744
- session: {
5745
- id: string;
5746
- };
5747
- } | undefined | null;
6640
+ export type StreamWsMessageMetaFragment = {
6641
+ id: string;
6642
+ length: number;
6643
+ createdAt: Date;
6644
+ direction: StreamMessageDirection;
6645
+ edited: boolean;
6646
+ alteration: Alteration;
6647
+ format: StreamWsMessageFormat;
6648
+ streamId: string;
6649
+ };
6650
+ export type StreamWsMessageFullFragment = {
6651
+ raw: string;
6652
+ id: string;
6653
+ length: number;
6654
+ createdAt: Date;
6655
+ direction: StreamMessageDirection;
6656
+ edited: boolean;
6657
+ alteration: Alteration;
6658
+ format: StreamWsMessageFormat;
6659
+ streamId: string;
6660
+ };
6661
+ export type StreamWsMessageEdgeMetaFragment = {
6662
+ __typename: "StreamWsMessageEdge";
6663
+ cursor: string;
6664
+ node: {
6665
+ id: string;
6666
+ length: number;
6667
+ createdAt: Date;
6668
+ direction: StreamMessageDirection;
6669
+ edited: boolean;
6670
+ alteration: Alteration;
6671
+ format: StreamWsMessageFormat;
6672
+ streamId: string;
5748
6673
  };
5749
6674
  };
5750
- export type CreateAutomateSessionMutationVariables = Exact<{
5751
- input: CreateAutomateSessionInput;
5752
- }>;
5753
- export type CreateAutomateSessionMutation = {
5754
- createAutomateSession: {
5755
- session?: {
5756
- __typename: "AutomateSession";
5757
- raw: string;
6675
+ export type TamperRuleCollectionFullFragment = {
6676
+ __typename: "TamperRuleCollection";
6677
+ id: string;
6678
+ name: string;
6679
+ rules: Array<{
6680
+ __typename: "TamperRule";
6681
+ id: string;
6682
+ isEnabled: boolean;
6683
+ isRegex: boolean;
6684
+ name: string;
6685
+ matchTerm: string;
6686
+ replaceTerm: string;
6687
+ strategy: TamperStrategy;
6688
+ rank: string;
6689
+ condition?: string | undefined | null;
6690
+ collection: {
5758
6691
  id: string;
5759
- name: string;
5760
- createdAt: Date;
5761
- connection: {
5762
- __typename: "ConnectionInfo";
5763
- host: string;
5764
- port: number;
5765
- isTls: boolean;
5766
- };
5767
- settings: {
5768
- __typename: "AutomateSettings";
5769
- closeConnection: boolean;
5770
- updateContentLength: boolean;
5771
- strategy: AutomatePayloadStrategy;
5772
- concurrency: {
5773
- __typename: "AutomateConcurrencySetting";
5774
- delay: number;
5775
- workers: number;
5776
- };
5777
- retryOnFailure: {
5778
- __typename: "AutomateRetryOnFailureSetting";
5779
- backoff: number;
5780
- maximumRetries: number;
5781
- };
5782
- payloads: Array<{
5783
- __typename: "AutomatePayload";
5784
- options: {
5785
- __typename: "AutomateHostedFilePayload";
5786
- id: string;
5787
- delimiter?: string | undefined | null;
5788
- } | {
5789
- __typename: "AutomateNullPayload";
5790
- quantity: number;
5791
- } | {
5792
- __typename: "AutomateNumberPayload";
5793
- range: {
5794
- start: number;
5795
- end: number;
5796
- };
5797
- } | {
5798
- __typename: "AutomateSimpleListPayload";
5799
- list: Array<string>;
5800
- };
5801
- preprocessors: Array<{
5802
- __typename: "AutomatePreprocessor";
5803
- options: {
5804
- __typename: "AutomatePrefixPreprocessor";
5805
- value: string;
5806
- } | {
5807
- __typename: "AutomateSuffixPreprocessor";
5808
- value: string;
5809
- } | {
5810
- __typename: "AutomateUrlEncodePreprocessor";
5811
- charset?: string | undefined | null;
5812
- nonAscii: boolean;
5813
- } | {
5814
- __typename: "AutomateWorkflowPreprocessor";
5815
- id: string;
5816
- };
5817
- }>;
5818
- }>;
5819
- placeholders: Array<{
5820
- __typename: "AutomatePlaceholder";
5821
- start: number;
5822
- end: number;
5823
- }>;
5824
- };
5825
- entries: Array<{
5826
- __typename: "AutomateEntry";
5827
- id: string;
5828
- name: string;
5829
- createdAt: Date;
5830
- session: {
5831
- id: string;
5832
- };
5833
- }>;
5834
- } | undefined | null;
6692
+ };
6693
+ }>;
6694
+ };
6695
+ export type TamperRuleFullFragment = {
6696
+ __typename: "TamperRule";
6697
+ id: string;
6698
+ isEnabled: boolean;
6699
+ isRegex: boolean;
6700
+ name: string;
6701
+ matchTerm: string;
6702
+ replaceTerm: string;
6703
+ strategy: TamperStrategy;
6704
+ rank: string;
6705
+ condition?: string | undefined | null;
6706
+ collection: {
6707
+ id: string;
5835
6708
  };
5836
6709
  };
5837
- export type DeleteAutomateSessionMutationVariables = Exact<{
5838
- id: Scalars["ID"]["input"];
5839
- }>;
5840
- export type DeleteAutomateSessionMutation = {
5841
- deleteAutomateSession: {
5842
- deletedId?: string | undefined | null;
6710
+ type TaskMeta_ReplayTask_Fragment = {
6711
+ __typename: "ReplayTask";
6712
+ id: string;
6713
+ createdAt: Date;
6714
+ };
6715
+ type TaskMeta_WorkflowTask_Fragment = {
6716
+ __typename: "WorkflowTask";
6717
+ id: string;
6718
+ createdAt: Date;
6719
+ };
6720
+ export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
6721
+ export type UpstreamProxyHttpFullFragment = {
6722
+ __typename: "UpstreamProxyHttp";
6723
+ id: string;
6724
+ allowlist: Array<string>;
6725
+ denylist: Array<string>;
6726
+ enabled: boolean;
6727
+ rank: string;
6728
+ auth?: {
6729
+ __typename: "UpstreamProxyAuthBasic";
6730
+ username: string;
6731
+ password: string;
6732
+ } | undefined | null;
6733
+ connection: {
6734
+ __typename: "ConnectionInfo";
6735
+ host: string;
6736
+ port: number;
6737
+ isTls: boolean;
5843
6738
  };
5844
6739
  };
5845
- export type RenameAutomateSessionMutationVariables = Exact<{
5846
- id: Scalars["ID"]["input"];
5847
- name: Scalars["String"]["input"];
5848
- }>;
5849
- export type RenameAutomateSessionMutation = {
5850
- renameAutomateSession: {
5851
- session?: {
5852
- __typename: "AutomateSession";
5853
- raw: string;
5854
- id: string;
5855
- name: string;
5856
- createdAt: Date;
5857
- connection: {
5858
- __typename: "ConnectionInfo";
5859
- host: string;
5860
- port: number;
5861
- isTls: boolean;
5862
- };
5863
- settings: {
5864
- __typename: "AutomateSettings";
5865
- closeConnection: boolean;
5866
- updateContentLength: boolean;
5867
- strategy: AutomatePayloadStrategy;
5868
- concurrency: {
5869
- __typename: "AutomateConcurrencySetting";
5870
- delay: number;
5871
- workers: number;
5872
- };
5873
- retryOnFailure: {
5874
- __typename: "AutomateRetryOnFailureSetting";
5875
- backoff: number;
5876
- maximumRetries: number;
5877
- };
5878
- payloads: Array<{
5879
- __typename: "AutomatePayload";
5880
- options: {
5881
- __typename: "AutomateHostedFilePayload";
5882
- id: string;
5883
- delimiter?: string | undefined | null;
5884
- } | {
5885
- __typename: "AutomateNullPayload";
5886
- quantity: number;
5887
- } | {
5888
- __typename: "AutomateNumberPayload";
5889
- range: {
5890
- start: number;
5891
- end: number;
5892
- };
5893
- } | {
5894
- __typename: "AutomateSimpleListPayload";
5895
- list: Array<string>;
5896
- };
5897
- preprocessors: Array<{
5898
- __typename: "AutomatePreprocessor";
5899
- options: {
5900
- __typename: "AutomatePrefixPreprocessor";
5901
- value: string;
5902
- } | {
5903
- __typename: "AutomateSuffixPreprocessor";
5904
- value: string;
5905
- } | {
5906
- __typename: "AutomateUrlEncodePreprocessor";
5907
- charset?: string | undefined | null;
5908
- nonAscii: boolean;
5909
- } | {
5910
- __typename: "AutomateWorkflowPreprocessor";
5911
- id: string;
5912
- };
5913
- }>;
5914
- }>;
5915
- placeholders: Array<{
5916
- __typename: "AutomatePlaceholder";
5917
- start: number;
5918
- end: number;
5919
- }>;
5920
- };
5921
- entries: Array<{
5922
- __typename: "AutomateEntry";
5923
- id: string;
5924
- name: string;
5925
- createdAt: Date;
5926
- session: {
5927
- id: string;
5928
- };
5929
- }>;
5930
- } | undefined | null;
6740
+ export type UpstreamProxySocksFullFragment = {
6741
+ __typename: "UpstreamProxySocks";
6742
+ id: string;
6743
+ allowlist: Array<string>;
6744
+ denylist: Array<string>;
6745
+ enabled: boolean;
6746
+ includeDns: boolean;
6747
+ rank: string;
6748
+ auth?: {
6749
+ __typename: "UpstreamProxyAuthBasic";
6750
+ username: string;
6751
+ password: string;
6752
+ } | undefined | null;
6753
+ connection: {
6754
+ __typename: "ConnectionInfo";
6755
+ host: string;
6756
+ port: number;
6757
+ isTls: boolean;
5931
6758
  };
5932
6759
  };
5933
- export type UpdateAutomateSessionMutationVariables = Exact<{
5934
- id: Scalars["ID"]["input"];
5935
- input: UpdateAutomateSessionInput;
5936
- }>;
5937
- export type UpdateAutomateSessionMutation = {
5938
- updateAutomateSession: {
5939
- session?: {
5940
- __typename: "AutomateSession";
5941
- raw: string;
5942
- id: string;
6760
+ export type UpstreamProxyAuthBasicFullFragment = {
6761
+ __typename: "UpstreamProxyAuthBasic";
6762
+ username: string;
6763
+ password: string;
6764
+ };
6765
+ export type UserProfileFullFragment = {
6766
+ __typename: "UserProfile";
6767
+ identity: {
6768
+ __typename: "UserIdentity";
6769
+ name: string;
6770
+ email: string;
6771
+ };
6772
+ subscription: {
6773
+ __typename: "UserSubscription";
6774
+ entitlements: Array<{
6775
+ __typename: "UserEntitlement";
5943
6776
  name: string;
5944
- createdAt: Date;
5945
- connection: {
5946
- __typename: "ConnectionInfo";
5947
- host: string;
5948
- port: number;
5949
- isTls: boolean;
5950
- };
5951
- settings: {
5952
- __typename: "AutomateSettings";
5953
- closeConnection: boolean;
5954
- updateContentLength: boolean;
5955
- strategy: AutomatePayloadStrategy;
5956
- concurrency: {
5957
- __typename: "AutomateConcurrencySetting";
5958
- delay: number;
5959
- workers: number;
5960
- };
5961
- retryOnFailure: {
5962
- __typename: "AutomateRetryOnFailureSetting";
5963
- backoff: number;
5964
- maximumRetries: number;
5965
- };
5966
- payloads: Array<{
5967
- __typename: "AutomatePayload";
5968
- options: {
5969
- __typename: "AutomateHostedFilePayload";
5970
- id: string;
5971
- delimiter?: string | undefined | null;
5972
- } | {
5973
- __typename: "AutomateNullPayload";
5974
- quantity: number;
5975
- } | {
5976
- __typename: "AutomateNumberPayload";
5977
- range: {
5978
- start: number;
5979
- end: number;
5980
- };
5981
- } | {
5982
- __typename: "AutomateSimpleListPayload";
5983
- list: Array<string>;
5984
- };
5985
- preprocessors: Array<{
5986
- __typename: "AutomatePreprocessor";
5987
- options: {
5988
- __typename: "AutomatePrefixPreprocessor";
5989
- value: string;
5990
- } | {
5991
- __typename: "AutomateSuffixPreprocessor";
5992
- value: string;
5993
- } | {
5994
- __typename: "AutomateUrlEncodePreprocessor";
5995
- charset?: string | undefined | null;
5996
- nonAscii: boolean;
5997
- } | {
5998
- __typename: "AutomateWorkflowPreprocessor";
5999
- id: string;
6000
- };
6001
- }>;
6002
- }>;
6003
- placeholders: Array<{
6004
- __typename: "AutomatePlaceholder";
6005
- start: number;
6006
- end: number;
6007
- }>;
6008
- };
6009
- entries: Array<{
6010
- __typename: "AutomateEntry";
6011
- id: string;
6012
- name: string;
6013
- createdAt: Date;
6014
- session: {
6015
- id: string;
6016
- };
6017
- }>;
6018
- } | undefined | null;
6777
+ }>;
6778
+ plan: {
6779
+ __typename: "UserSubscriptionPlan";
6780
+ name: string;
6781
+ };
6019
6782
  };
6020
6783
  };
6021
- export type CancelAutomateTaskMutationVariables = Exact<{
6022
- id: Scalars["ID"]["input"];
6023
- }>;
6024
- export type CancelAutomateTaskMutation = {
6025
- cancelAutomateTask: {
6026
- cancelledId?: string | undefined | null;
6027
- userError?: {
6028
- __typename: "OtherUserError";
6029
- code: string;
6030
- } | {
6031
- __typename: "UnknownIdUserError";
6032
- id: string;
6033
- code: string;
6034
- } | undefined | null;
6035
- };
6784
+ export type UserSettingsFullFragment = {
6785
+ __typename: "UserSettings";
6786
+ data: JSONValue;
6787
+ migrations: JSONValue;
6036
6788
  };
6037
- export type PauseAutomateTaskMutationVariables = Exact<{
6038
- id: Scalars["ID"]["input"];
6039
- }>;
6040
- export type PauseAutomateTaskMutation = {
6041
- pauseAutomateTask: {
6042
- automateTask?: {
6043
- id: string;
6044
- paused: boolean;
6045
- entry: {
6046
- __typename: "AutomateEntry";
6047
- id: string;
6048
- name: string;
6049
- createdAt: Date;
6050
- session: {
6051
- id: string;
6052
- };
6053
- };
6054
- } | undefined | null;
6055
- userError?: {
6056
- __typename: "OtherUserError";
6057
- code: string;
6058
- } | {
6059
- __typename: "UnknownIdUserError";
6060
- id: string;
6061
- code: string;
6062
- } | undefined | null;
6789
+ export type WorkflowMetaFragment = {
6790
+ __typename: "Workflow";
6791
+ id: string;
6792
+ kind: WorkflowKind;
6793
+ name: string;
6794
+ enabled: boolean;
6795
+ global: boolean;
6796
+ readOnly: boolean;
6797
+ };
6798
+ export type WorkflowFullFragment = {
6799
+ __typename: "Workflow";
6800
+ definition: JSONValue;
6801
+ id: string;
6802
+ kind: WorkflowKind;
6803
+ name: string;
6804
+ enabled: boolean;
6805
+ global: boolean;
6806
+ readOnly: boolean;
6807
+ };
6808
+ export type WorkflowNodeDefinitionFullFragment = {
6809
+ __typename: "WorkflowNodeDefinition";
6810
+ raw: JSONValue;
6811
+ };
6812
+ export type WorkflowTaskMetaFragment = {
6813
+ __typename: "WorkflowTask";
6814
+ id: string;
6815
+ createdAt: Date;
6816
+ workflow: {
6817
+ __typename: "Workflow";
6818
+ id: string;
6819
+ kind: WorkflowKind;
6820
+ name: string;
6821
+ enabled: boolean;
6822
+ global: boolean;
6823
+ readOnly: boolean;
6063
6824
  };
6064
6825
  };
6065
- export type ResumeAutomateTaskMutationVariables = Exact<{
6066
- id: Scalars["ID"]["input"];
6826
+ export type StartAuthenticationFlowMutationVariables = Exact<{
6827
+ [key: string]: never;
6067
6828
  }>;
6068
- export type ResumeAutomateTaskMutation = {
6069
- resumeAutomateTask: {
6070
- automateTask?: {
6829
+ export type StartAuthenticationFlowMutation = {
6830
+ startAuthenticationFlow: {
6831
+ request?: {
6832
+ __typename: "AuthenticationRequest";
6071
6833
  id: string;
6072
- paused: boolean;
6073
- entry: {
6074
- __typename: "AutomateEntry";
6075
- id: string;
6076
- name: string;
6077
- createdAt: Date;
6078
- session: {
6079
- id: string;
6080
- };
6081
- };
6834
+ expiresAt: Date;
6835
+ userCode: string;
6836
+ verificationUrl: string;
6082
6837
  } | undefined | null;
6083
- userError?: {
6084
- __typename: "OtherUserError";
6838
+ error?: {
6839
+ __typename: "AuthenticationUserError";
6840
+ reason: AuthenticationErrorReason;
6085
6841
  code: string;
6086
6842
  } | {
6087
- __typename: "UnknownIdUserError";
6088
- id: string;
6843
+ __typename: "OtherUserError";
6089
6844
  code: string;
6090
6845
  } | undefined | null;
6091
6846
  };
6092
6847
  };
6093
- export type StartAutomateTaskMutationVariables = Exact<{
6094
- automateSessionId: Scalars["ID"]["input"];
6848
+ export type RefreshAuthenticationTokenMutationVariables = Exact<{
6849
+ refreshToken: Scalars["Token"]["input"];
6095
6850
  }>;
6096
- export type StartAutomateTaskMutation = {
6097
- startAutomateTask: {
6098
- automateTask?: {
6099
- id: string;
6100
- paused: boolean;
6101
- entry: {
6102
- __typename: "AutomateEntry";
6103
- id: string;
6104
- name: string;
6105
- createdAt: Date;
6106
- session: {
6107
- id: string;
6108
- };
6109
- };
6851
+ export type RefreshAuthenticationTokenMutation = {
6852
+ refreshAuthenticationToken: {
6853
+ token?: {
6854
+ __typename: "AuthenticationToken";
6855
+ accessToken: string;
6856
+ expiresAt: Date;
6857
+ refreshToken?: string | undefined | null;
6858
+ scopes: Array<AuthenticationScope>;
6110
6859
  } | undefined | null;
6111
6860
  };
6112
6861
  };
6862
+ export type LogoutMutationVariables = Exact<{
6863
+ [key: string]: never;
6864
+ }>;
6865
+ export type LogoutMutation = {
6866
+ logout: {
6867
+ success: boolean;
6868
+ };
6869
+ };
6113
6870
  export type CreateBackupMutationVariables = Exact<{
6114
6871
  id: Scalars["ID"]["input"];
6115
6872
  }>;
@@ -7202,1209 +7959,664 @@ export type CreateTamperRuleMutation = {
7202
7959
  } | undefined | null;
7203
7960
  };
7204
7961
  };
7205
- export type DeleteTamperRuleMutationVariables = Exact<{
7206
- id: Scalars["ID"]["input"];
7207
- }>;
7208
- export type DeleteTamperRuleMutation = {
7209
- deleteTamperRule: {
7210
- deletedId?: string | undefined | null;
7211
- };
7212
- };
7213
- export type UpdateTamperRuleMutationVariables = Exact<{
7214
- id: Scalars["ID"]["input"];
7215
- input: UpdateTamperRuleInput;
7216
- }>;
7217
- export type UpdateTamperRuleMutation = {
7218
- updateTamperRule: {
7219
- error?: {
7220
- __typename: "InvalidHTTPQLUserError";
7221
- query: string;
7222
- code: string;
7223
- } | {
7224
- __typename: "InvalidRegexUserError";
7225
- term: string;
7226
- code: string;
7227
- } | {
7228
- __typename: "OtherUserError";
7229
- code: string;
7230
- } | {
7231
- __typename: "UnknownIdUserError";
7232
- id: string;
7233
- code: string;
7234
- } | undefined | null;
7235
- rule?: {
7236
- __typename: "TamperRule";
7237
- id: string;
7238
- isEnabled: boolean;
7239
- isRegex: boolean;
7240
- name: string;
7241
- matchTerm: string;
7242
- replaceTerm: string;
7243
- strategy: TamperStrategy;
7244
- rank: string;
7245
- condition?: string | undefined | null;
7246
- collection: {
7247
- id: string;
7248
- };
7249
- } | undefined | null;
7250
- };
7251
- };
7252
- export type RenameTamperRuleMutationVariables = Exact<{
7253
- id: Scalars["ID"]["input"];
7254
- name: Scalars["String"]["input"];
7255
- }>;
7256
- export type RenameTamperRuleMutation = {
7257
- renameTamperRule: {
7258
- rule?: {
7259
- __typename: "TamperRule";
7260
- id: string;
7261
- isEnabled: boolean;
7262
- isRegex: boolean;
7263
- name: string;
7264
- matchTerm: string;
7265
- replaceTerm: string;
7266
- strategy: TamperStrategy;
7267
- rank: string;
7268
- condition?: string | undefined | null;
7269
- collection: {
7270
- id: string;
7271
- };
7272
- } | undefined | null;
7273
- };
7274
- };
7275
- export type TestTamperRuleMutationVariables = Exact<{
7276
- input: TestTamperRuleInput;
7277
- }>;
7278
- export type TestTamperRuleMutation = {
7279
- testTamperRule: {
7280
- raw?: string | undefined | null;
7281
- error?: {
7282
- __typename: "InvalidRegexUserError";
7283
- term: string;
7284
- code: string;
7285
- } | {
7286
- __typename: "OtherUserError";
7287
- code: string;
7288
- } | undefined | null;
7289
- };
7290
- };
7291
- export type EnableTamperRuleMutationVariables = Exact<{
7292
- id: Scalars["ID"]["input"];
7293
- }>;
7294
- export type EnableTamperRuleMutation = {
7295
- enableTamperRule: {
7296
- rule?: {
7297
- __typename: "TamperRule";
7298
- id: string;
7299
- isEnabled: boolean;
7300
- isRegex: boolean;
7301
- name: string;
7302
- matchTerm: string;
7303
- replaceTerm: string;
7304
- strategy: TamperStrategy;
7305
- rank: string;
7306
- condition?: string | undefined | null;
7307
- collection: {
7308
- id: string;
7309
- };
7310
- } | undefined | null;
7311
- };
7312
- };
7313
- export type DisableTamperRuleMutationVariables = Exact<{
7314
- id: Scalars["ID"]["input"];
7315
- }>;
7316
- export type DisableTamperRuleMutation = {
7317
- disableTamperRule: {
7318
- rule?: {
7319
- __typename: "TamperRule";
7320
- id: string;
7321
- isEnabled: boolean;
7322
- isRegex: boolean;
7323
- name: string;
7324
- matchTerm: string;
7325
- replaceTerm: string;
7326
- strategy: TamperStrategy;
7327
- rank: string;
7328
- condition?: string | undefined | null;
7329
- collection: {
7330
- id: string;
7331
- };
7332
- } | undefined | null;
7333
- };
7334
- };
7335
- export type RankTamperRuleMutationVariables = Exact<{
7336
- id: Scalars["ID"]["input"];
7337
- input: RankTamperRuleInput;
7338
- }>;
7339
- export type RankTamperRuleMutation = {
7340
- rankTamperRule: {
7341
- rule?: {
7342
- __typename: "TamperRule";
7343
- id: string;
7344
- isEnabled: boolean;
7345
- isRegex: boolean;
7346
- name: string;
7347
- matchTerm: string;
7348
- replaceTerm: string;
7349
- strategy: TamperStrategy;
7350
- rank: string;
7351
- condition?: string | undefined | null;
7352
- collection: {
7353
- id: string;
7354
- };
7355
- } | undefined | null;
7356
- };
7357
- };
7358
- export type MoveTamperRuleMutationVariables = Exact<{
7359
- id: Scalars["ID"]["input"];
7360
- collectionId: Scalars["ID"]["input"];
7361
- }>;
7362
- export type MoveTamperRuleMutation = {
7363
- moveTamperRule: {
7364
- rule?: {
7365
- __typename: "TamperRule";
7366
- id: string;
7367
- isEnabled: boolean;
7368
- isRegex: boolean;
7369
- name: string;
7370
- matchTerm: string;
7371
- replaceTerm: string;
7372
- strategy: TamperStrategy;
7373
- rank: string;
7374
- condition?: string | undefined | null;
7375
- collection: {
7376
- id: string;
7377
- };
7378
- } | undefined | null;
7379
- };
7380
- };
7381
- export type CancelTaskMutationVariables = Exact<{
7382
- id: Scalars["ID"]["input"];
7383
- }>;
7384
- export type CancelTaskMutation = {
7385
- cancelTask: {
7386
- cancelledId?: string | undefined | null;
7387
- error?: {
7388
- __typename: "OtherUserError";
7389
- code: string;
7390
- } | {
7391
- __typename: "UnknownIdUserError";
7392
- id: string;
7393
- code: string;
7394
- } | undefined | null;
7395
- };
7396
- };
7397
- export type CreateUpstreamProxyHttpMutationVariables = Exact<{
7398
- input: CreateUpstreamProxyHttpInput;
7399
- }>;
7400
- export type CreateUpstreamProxyHttpMutation = {
7401
- createUpstreamProxyHttp: {
7402
- proxy?: {
7403
- __typename: "UpstreamProxyHttp";
7404
- id: string;
7405
- allowlist: Array<string>;
7406
- denylist: Array<string>;
7407
- enabled: boolean;
7408
- rank: string;
7409
- auth?: {
7410
- __typename: "UpstreamProxyAuthBasic";
7411
- username: string;
7412
- password: string;
7413
- } | undefined | null;
7414
- connection: {
7415
- __typename: "ConnectionInfo";
7416
- host: string;
7417
- port: number;
7418
- isTls: boolean;
7419
- };
7420
- } | undefined | null;
7421
- };
7422
- };
7423
- export type UpdateUpstreamProxyHttpMutationVariables = Exact<{
7424
- id: Scalars["ID"]["input"];
7425
- input: UpdateUpstreamProxyHttpInput;
7426
- }>;
7427
- export type UpdateUpstreamProxyHttpMutation = {
7428
- updateUpstreamProxyHttp: {
7429
- proxy?: {
7430
- __typename: "UpstreamProxyHttp";
7431
- id: string;
7432
- allowlist: Array<string>;
7433
- denylist: Array<string>;
7434
- enabled: boolean;
7435
- rank: string;
7436
- auth?: {
7437
- __typename: "UpstreamProxyAuthBasic";
7438
- username: string;
7439
- password: string;
7440
- } | undefined | null;
7441
- connection: {
7442
- __typename: "ConnectionInfo";
7443
- host: string;
7444
- port: number;
7445
- isTls: boolean;
7446
- };
7447
- } | undefined | null;
7448
- };
7449
- };
7450
- export type DeleteUpstreamProxyHttpMutationVariables = Exact<{
7962
+ export type DeleteTamperRuleMutationVariables = Exact<{
7451
7963
  id: Scalars["ID"]["input"];
7452
7964
  }>;
7453
- export type DeleteUpstreamProxyHttpMutation = {
7454
- deleteUpstreamProxyHttp: {
7965
+ export type DeleteTamperRuleMutation = {
7966
+ deleteTamperRule: {
7455
7967
  deletedId?: string | undefined | null;
7456
7968
  };
7457
7969
  };
7458
- export type TestUpstreamProxyHttpMutationVariables = Exact<{
7459
- input: TestUpstreamProxyHttpInput;
7460
- }>;
7461
- export type TestUpstreamProxyHttpMutation = {
7462
- testUpstreamProxyHttp: {
7463
- success?: boolean | undefined | null;
7464
- };
7465
- };
7466
- export type RankUpstreamProxyHttpMutationVariables = Exact<{
7970
+ export type UpdateTamperRuleMutationVariables = Exact<{
7467
7971
  id: Scalars["ID"]["input"];
7468
- input: RankUpstreamProxyHttpInput;
7972
+ input: UpdateTamperRuleInput;
7469
7973
  }>;
7470
- export type RankUpstreamProxyHttpMutation = {
7471
- rankUpstreamProxyHttp: {
7472
- proxy?: {
7473
- __typename: "UpstreamProxyHttp";
7974
+ export type UpdateTamperRuleMutation = {
7975
+ updateTamperRule: {
7976
+ error?: {
7977
+ __typename: "InvalidHTTPQLUserError";
7978
+ query: string;
7979
+ code: string;
7980
+ } | {
7981
+ __typename: "InvalidRegexUserError";
7982
+ term: string;
7983
+ code: string;
7984
+ } | {
7985
+ __typename: "OtherUserError";
7986
+ code: string;
7987
+ } | {
7988
+ __typename: "UnknownIdUserError";
7474
7989
  id: string;
7475
- allowlist: Array<string>;
7476
- denylist: Array<string>;
7477
- enabled: boolean;
7478
- rank: string;
7479
- auth?: {
7480
- __typename: "UpstreamProxyAuthBasic";
7481
- username: string;
7482
- password: string;
7483
- } | undefined | null;
7484
- connection: {
7485
- __typename: "ConnectionInfo";
7486
- host: string;
7487
- port: number;
7488
- isTls: boolean;
7489
- };
7990
+ code: string;
7490
7991
  } | undefined | null;
7491
- };
7492
- };
7493
- export type CreateUpstreamProxySocksMutationVariables = Exact<{
7494
- input: CreateUpstreamProxySocksInput;
7495
- }>;
7496
- export type CreateUpstreamProxySocksMutation = {
7497
- createUpstreamProxySocks: {
7498
- proxy?: {
7499
- __typename: "UpstreamProxySocks";
7992
+ rule?: {
7993
+ __typename: "TamperRule";
7500
7994
  id: string;
7501
- allowlist: Array<string>;
7502
- denylist: Array<string>;
7503
- enabled: boolean;
7504
- includeDns: boolean;
7995
+ isEnabled: boolean;
7996
+ isRegex: boolean;
7997
+ name: string;
7998
+ matchTerm: string;
7999
+ replaceTerm: string;
8000
+ strategy: TamperStrategy;
7505
8001
  rank: string;
7506
- auth?: {
7507
- __typename: "UpstreamProxyAuthBasic";
7508
- username: string;
7509
- password: string;
7510
- } | undefined | null;
7511
- connection: {
7512
- __typename: "ConnectionInfo";
7513
- host: string;
7514
- port: number;
7515
- isTls: boolean;
8002
+ condition?: string | undefined | null;
8003
+ collection: {
8004
+ id: string;
7516
8005
  };
7517
8006
  } | undefined | null;
7518
8007
  };
7519
8008
  };
7520
- export type UpdateUpstreamProxySocksMutationVariables = Exact<{
8009
+ export type RenameTamperRuleMutationVariables = Exact<{
7521
8010
  id: Scalars["ID"]["input"];
7522
- input: UpdateUpstreamProxySocksInput;
8011
+ name: Scalars["String"]["input"];
7523
8012
  }>;
7524
- export type UpdateUpstreamProxySocksMutation = {
7525
- updateUpstreamProxySocks: {
7526
- proxy?: {
7527
- __typename: "UpstreamProxySocks";
8013
+ export type RenameTamperRuleMutation = {
8014
+ renameTamperRule: {
8015
+ rule?: {
8016
+ __typename: "TamperRule";
7528
8017
  id: string;
7529
- allowlist: Array<string>;
7530
- denylist: Array<string>;
7531
- enabled: boolean;
7532
- includeDns: boolean;
8018
+ isEnabled: boolean;
8019
+ isRegex: boolean;
8020
+ name: string;
8021
+ matchTerm: string;
8022
+ replaceTerm: string;
8023
+ strategy: TamperStrategy;
7533
8024
  rank: string;
7534
- auth?: {
7535
- __typename: "UpstreamProxyAuthBasic";
7536
- username: string;
7537
- password: string;
7538
- } | undefined | null;
7539
- connection: {
7540
- __typename: "ConnectionInfo";
7541
- host: string;
7542
- port: number;
7543
- isTls: boolean;
8025
+ condition?: string | undefined | null;
8026
+ collection: {
8027
+ id: string;
7544
8028
  };
7545
8029
  } | undefined | null;
7546
8030
  };
7547
8031
  };
7548
- export type DeleteUpstreamProxySocksMutationVariables = Exact<{
7549
- id: Scalars["ID"]["input"];
7550
- }>;
7551
- export type DeleteUpstreamProxySocksMutation = {
7552
- deleteUpstreamProxySocks: {
7553
- deletedId?: string | undefined | null;
7554
- };
7555
- };
7556
- export type TestUpstreamProxySocksMutationVariables = Exact<{
7557
- input: TestUpstreamProxySocksInput;
8032
+ export type TestTamperRuleMutationVariables = Exact<{
8033
+ input: TestTamperRuleInput;
7558
8034
  }>;
7559
- export type TestUpstreamProxySocksMutation = {
7560
- testUpstreamProxySocks: {
7561
- success?: boolean | undefined | null;
8035
+ export type TestTamperRuleMutation = {
8036
+ testTamperRule: {
8037
+ raw?: string | undefined | null;
8038
+ error?: {
8039
+ __typename: "InvalidRegexUserError";
8040
+ term: string;
8041
+ code: string;
8042
+ } | {
8043
+ __typename: "OtherUserError";
8044
+ code: string;
8045
+ } | undefined | null;
7562
8046
  };
7563
8047
  };
7564
- export type RankUpstreamProxySocksMutationVariables = Exact<{
8048
+ export type EnableTamperRuleMutationVariables = Exact<{
7565
8049
  id: Scalars["ID"]["input"];
7566
- input: RankUpstreamProxySocksInput;
7567
8050
  }>;
7568
- export type RankUpstreamProxySocksMutation = {
7569
- rankUpstreamProxySocks: {
7570
- proxy?: {
7571
- __typename: "UpstreamProxySocks";
8051
+ export type EnableTamperRuleMutation = {
8052
+ enableTamperRule: {
8053
+ rule?: {
8054
+ __typename: "TamperRule";
7572
8055
  id: string;
7573
- allowlist: Array<string>;
7574
- denylist: Array<string>;
7575
- enabled: boolean;
7576
- includeDns: boolean;
8056
+ isEnabled: boolean;
8057
+ isRegex: boolean;
8058
+ name: string;
8059
+ matchTerm: string;
8060
+ replaceTerm: string;
8061
+ strategy: TamperStrategy;
7577
8062
  rank: string;
7578
- auth?: {
7579
- __typename: "UpstreamProxyAuthBasic";
7580
- username: string;
7581
- password: string;
7582
- } | undefined | null;
7583
- connection: {
7584
- __typename: "ConnectionInfo";
7585
- host: string;
7586
- port: number;
7587
- isTls: boolean;
8063
+ condition?: string | undefined | null;
8064
+ collection: {
8065
+ id: string;
7588
8066
  };
7589
8067
  } | undefined | null;
7590
8068
  };
7591
8069
  };
7592
- export type UpdateViewerSettingsMutationVariables = Exact<{
7593
- input: UpdateViewerSettingsInput;
7594
- }>;
7595
- export type UpdateViewerSettingsMutation = {
7596
- updateViewerSettings: {
7597
- settings?: {
7598
- __typename: "UserSettings";
7599
- data: JSONValue;
7600
- migrations: JSONValue;
7601
- } | undefined | null;
7602
- };
7603
- };
7604
- export type CreateWorkflowMutationVariables = Exact<{
7605
- input: CreateWorkflowInput;
8070
+ export type DisableTamperRuleMutationVariables = Exact<{
8071
+ id: Scalars["ID"]["input"];
7606
8072
  }>;
7607
- export type CreateWorkflowMutation = {
7608
- createWorkflow: {
7609
- error?: {
7610
- __typename: "OtherUserError";
7611
- code: string;
7612
- } | {
7613
- __typename: "WorkflowUserError";
7614
- node?: string | undefined | null;
7615
- message: string;
7616
- reason: WorkflowErrorReason;
7617
- code: string;
7618
- } | undefined | null;
7619
- workflow?: {
7620
- __typename: "Workflow";
7621
- definition: JSONValue;
8073
+ export type DisableTamperRuleMutation = {
8074
+ disableTamperRule: {
8075
+ rule?: {
8076
+ __typename: "TamperRule";
7622
8077
  id: string;
7623
- kind: WorkflowKind;
8078
+ isEnabled: boolean;
8079
+ isRegex: boolean;
7624
8080
  name: string;
7625
- enabled: boolean;
7626
- global: boolean;
7627
- readOnly: boolean;
8081
+ matchTerm: string;
8082
+ replaceTerm: string;
8083
+ strategy: TamperStrategy;
8084
+ rank: string;
8085
+ condition?: string | undefined | null;
8086
+ collection: {
8087
+ id: string;
8088
+ };
7628
8089
  } | undefined | null;
7629
8090
  };
7630
8091
  };
7631
- export type DeleteWorkflowMutationVariables = Exact<{
8092
+ export type RankTamperRuleMutationVariables = Exact<{
7632
8093
  id: Scalars["ID"]["input"];
8094
+ input: RankTamperRuleInput;
7633
8095
  }>;
7634
- export type DeleteWorkflowMutation = {
7635
- deleteWorkflow: {
7636
- deletedId?: string | undefined | null;
7637
- error?: {
7638
- __typename: "OtherUserError";
7639
- code: string;
7640
- } | {
7641
- __typename: "ReadOnlyUserError";
7642
- code: string;
7643
- } | {
7644
- __typename: "UnknownIdUserError";
8096
+ export type RankTamperRuleMutation = {
8097
+ rankTamperRule: {
8098
+ rule?: {
8099
+ __typename: "TamperRule";
7645
8100
  id: string;
7646
- code: string;
8101
+ isEnabled: boolean;
8102
+ isRegex: boolean;
8103
+ name: string;
8104
+ matchTerm: string;
8105
+ replaceTerm: string;
8106
+ strategy: TamperStrategy;
8107
+ rank: string;
8108
+ condition?: string | undefined | null;
8109
+ collection: {
8110
+ id: string;
8111
+ };
7647
8112
  } | undefined | null;
7648
8113
  };
7649
8114
  };
7650
- export type ToggleWorkflowMutationVariables = Exact<{
8115
+ export type MoveTamperRuleMutationVariables = Exact<{
7651
8116
  id: Scalars["ID"]["input"];
7652
- enabled: Scalars["Boolean"]["input"];
8117
+ collectionId: Scalars["ID"]["input"];
7653
8118
  }>;
7654
- export type ToggleWorkflowMutation = {
7655
- toggleWorkflow: {
7656
- error?: {
7657
- __typename: "OtherUserError";
7658
- code: string;
7659
- } | {
7660
- __typename: "UnknownIdUserError";
7661
- id: string;
7662
- code: string;
7663
- } | undefined | null;
7664
- workflow?: {
7665
- __typename: "Workflow";
7666
- definition: JSONValue;
8119
+ export type MoveTamperRuleMutation = {
8120
+ moveTamperRule: {
8121
+ rule?: {
8122
+ __typename: "TamperRule";
7667
8123
  id: string;
7668
- kind: WorkflowKind;
8124
+ isEnabled: boolean;
8125
+ isRegex: boolean;
7669
8126
  name: string;
7670
- enabled: boolean;
7671
- global: boolean;
7672
- readOnly: boolean;
8127
+ matchTerm: string;
8128
+ replaceTerm: string;
8129
+ strategy: TamperStrategy;
8130
+ rank: string;
8131
+ condition?: string | undefined | null;
8132
+ collection: {
8133
+ id: string;
8134
+ };
7673
8135
  } | undefined | null;
7674
8136
  };
7675
8137
  };
7676
- export type RenameWorkflowMutationVariables = Exact<{
8138
+ export type CancelTaskMutationVariables = Exact<{
7677
8139
  id: Scalars["ID"]["input"];
7678
- name: Scalars["String"]["input"];
7679
8140
  }>;
7680
- export type RenameWorkflowMutation = {
7681
- renameWorkflow: {
8141
+ export type CancelTaskMutation = {
8142
+ cancelTask: {
8143
+ cancelledId?: string | undefined | null;
7682
8144
  error?: {
7683
8145
  __typename: "OtherUserError";
7684
8146
  code: string;
7685
- } | {
7686
- __typename: "ReadOnlyUserError";
7687
- code: string;
7688
8147
  } | {
7689
8148
  __typename: "UnknownIdUserError";
7690
8149
  id: string;
7691
8150
  code: string;
7692
8151
  } | undefined | null;
7693
- workflow?: {
7694
- __typename: "Workflow";
7695
- definition: JSONValue;
8152
+ };
8153
+ };
8154
+ export type CreateUpstreamProxyHttpMutationVariables = Exact<{
8155
+ input: CreateUpstreamProxyHttpInput;
8156
+ }>;
8157
+ export type CreateUpstreamProxyHttpMutation = {
8158
+ createUpstreamProxyHttp: {
8159
+ proxy?: {
8160
+ __typename: "UpstreamProxyHttp";
7696
8161
  id: string;
7697
- kind: WorkflowKind;
7698
- name: string;
8162
+ allowlist: Array<string>;
8163
+ denylist: Array<string>;
7699
8164
  enabled: boolean;
7700
- global: boolean;
7701
- readOnly: boolean;
8165
+ rank: string;
8166
+ auth?: {
8167
+ __typename: "UpstreamProxyAuthBasic";
8168
+ username: string;
8169
+ password: string;
8170
+ } | undefined | null;
8171
+ connection: {
8172
+ __typename: "ConnectionInfo";
8173
+ host: string;
8174
+ port: number;
8175
+ isTls: boolean;
8176
+ };
7702
8177
  } | undefined | null;
7703
8178
  };
7704
8179
  };
7705
- export type UpdateWorkflowMutationVariables = Exact<{
8180
+ export type UpdateUpstreamProxyHttpMutationVariables = Exact<{
7706
8181
  id: Scalars["ID"]["input"];
7707
- input: UpdateWorkflowInput;
8182
+ input: UpdateUpstreamProxyHttpInput;
7708
8183
  }>;
7709
- export type UpdateWorkflowMutation = {
7710
- updateWorkflow: {
7711
- error?: {
7712
- __typename: "OtherUserError";
7713
- code: string;
7714
- } | {
7715
- __typename: "ReadOnlyUserError";
7716
- code: string;
7717
- } | {
7718
- __typename: "UnknownIdUserError";
7719
- id: string;
7720
- code: string;
7721
- } | {
7722
- __typename: "WorkflowUserError";
7723
- node?: string | undefined | null;
7724
- message: string;
7725
- reason: WorkflowErrorReason;
7726
- code: string;
7727
- } | undefined | null;
7728
- workflow?: {
7729
- __typename: "Workflow";
7730
- definition: JSONValue;
8184
+ export type UpdateUpstreamProxyHttpMutation = {
8185
+ updateUpstreamProxyHttp: {
8186
+ proxy?: {
8187
+ __typename: "UpstreamProxyHttp";
7731
8188
  id: string;
7732
- kind: WorkflowKind;
7733
- name: string;
8189
+ allowlist: Array<string>;
8190
+ denylist: Array<string>;
7734
8191
  enabled: boolean;
7735
- global: boolean;
7736
- readOnly: boolean;
8192
+ rank: string;
8193
+ auth?: {
8194
+ __typename: "UpstreamProxyAuthBasic";
8195
+ username: string;
8196
+ password: string;
8197
+ } | undefined | null;
8198
+ connection: {
8199
+ __typename: "ConnectionInfo";
8200
+ host: string;
8201
+ port: number;
8202
+ isTls: boolean;
8203
+ };
7737
8204
  } | undefined | null;
7738
8205
  };
7739
8206
  };
7740
- export type RunConvertWorkflowMutationVariables = Exact<{
8207
+ export type DeleteUpstreamProxyHttpMutationVariables = Exact<{
7741
8208
  id: Scalars["ID"]["input"];
7742
- input: Scalars["Blob"]["input"];
7743
8209
  }>;
7744
- export type RunConvertWorkflowMutation = {
7745
- runConvertWorkflow: {
7746
- output?: string | undefined | null;
7747
- error?: {
7748
- __typename: "OtherUserError";
7749
- code: string;
7750
- } | {
7751
- __typename: "PermissionDeniedUserError";
7752
- code: string;
7753
- permissionDeniedReason: PermissionDeniedErrorReason;
7754
- } | {
7755
- __typename: "WorkflowUserError";
7756
- node?: string | undefined | null;
7757
- message: string;
7758
- reason: WorkflowErrorReason;
7759
- code: string;
7760
- } | undefined | null;
8210
+ export type DeleteUpstreamProxyHttpMutation = {
8211
+ deleteUpstreamProxyHttp: {
8212
+ deletedId?: string | undefined | null;
7761
8213
  };
7762
8214
  };
7763
- export type RunActiveWorkflowMutationVariables = Exact<{
8215
+ export type TestUpstreamProxyHttpMutationVariables = Exact<{
8216
+ input: TestUpstreamProxyHttpInput;
8217
+ }>;
8218
+ export type TestUpstreamProxyHttpMutation = {
8219
+ testUpstreamProxyHttp: {
8220
+ success?: boolean | undefined | null;
8221
+ };
8222
+ };
8223
+ export type RankUpstreamProxyHttpMutationVariables = Exact<{
7764
8224
  id: Scalars["ID"]["input"];
7765
- input: RunActiveWorkflowInput;
8225
+ input: RankUpstreamProxyHttpInput;
7766
8226
  }>;
7767
- export type RunActiveWorkflowMutation = {
7768
- runActiveWorkflow: {
7769
- error?: {
7770
- __typename: "OtherUserError";
7771
- code: string;
7772
- } | {
7773
- __typename: "PermissionDeniedUserError";
7774
- code: string;
7775
- permissionDeniedReason: PermissionDeniedErrorReason;
7776
- } | {
7777
- __typename: "UnknownIdUserError";
7778
- id: string;
7779
- code: string;
7780
- } | undefined | null;
7781
- task?: {
7782
- __typename: "WorkflowTask";
8227
+ export type RankUpstreamProxyHttpMutation = {
8228
+ rankUpstreamProxyHttp: {
8229
+ proxy?: {
8230
+ __typename: "UpstreamProxyHttp";
7783
8231
  id: string;
7784
- createdAt: Date;
7785
- workflow: {
7786
- __typename: "Workflow";
7787
- id: string;
7788
- kind: WorkflowKind;
7789
- name: string;
7790
- enabled: boolean;
7791
- global: boolean;
7792
- readOnly: boolean;
8232
+ allowlist: Array<string>;
8233
+ denylist: Array<string>;
8234
+ enabled: boolean;
8235
+ rank: string;
8236
+ auth?: {
8237
+ __typename: "UpstreamProxyAuthBasic";
8238
+ username: string;
8239
+ password: string;
8240
+ } | undefined | null;
8241
+ connection: {
8242
+ __typename: "ConnectionInfo";
8243
+ host: string;
8244
+ port: number;
8245
+ isTls: boolean;
7793
8246
  };
7794
8247
  } | undefined | null;
7795
8248
  };
7796
8249
  };
7797
- export type GlobalizeWorkflowMutationVariables = Exact<{
7798
- id: Scalars["ID"]["input"];
8250
+ export type CreateUpstreamProxySocksMutationVariables = Exact<{
8251
+ input: CreateUpstreamProxySocksInput;
7799
8252
  }>;
7800
- export type GlobalizeWorkflowMutation = {
7801
- globalizeWorkflow: {
7802
- error?: {
7803
- __typename: "OtherUserError";
7804
- code: string;
7805
- } | {
7806
- __typename: "ReadOnlyUserError";
7807
- code: string;
7808
- } | {
7809
- __typename: "UnknownIdUserError";
7810
- id: string;
7811
- code: string;
7812
- } | {
7813
- __typename: "WorkflowUserError";
7814
- node?: string | undefined | null;
7815
- message: string;
7816
- reason: WorkflowErrorReason;
7817
- code: string;
7818
- } | undefined | null;
7819
- workflow?: {
7820
- __typename: "Workflow";
7821
- definition: JSONValue;
8253
+ export type CreateUpstreamProxySocksMutation = {
8254
+ createUpstreamProxySocks: {
8255
+ proxy?: {
8256
+ __typename: "UpstreamProxySocks";
7822
8257
  id: string;
7823
- kind: WorkflowKind;
7824
- name: string;
8258
+ allowlist: Array<string>;
8259
+ denylist: Array<string>;
7825
8260
  enabled: boolean;
7826
- global: boolean;
7827
- readOnly: boolean;
8261
+ includeDns: boolean;
8262
+ rank: string;
8263
+ auth?: {
8264
+ __typename: "UpstreamProxyAuthBasic";
8265
+ username: string;
8266
+ password: string;
8267
+ } | undefined | null;
8268
+ connection: {
8269
+ __typename: "ConnectionInfo";
8270
+ host: string;
8271
+ port: number;
8272
+ isTls: boolean;
8273
+ };
7828
8274
  } | undefined | null;
7829
8275
  };
7830
8276
  };
7831
- export type LocalizeWorkflowMutationVariables = Exact<{
8277
+ export type UpdateUpstreamProxySocksMutationVariables = Exact<{
7832
8278
  id: Scalars["ID"]["input"];
8279
+ input: UpdateUpstreamProxySocksInput;
7833
8280
  }>;
7834
- export type LocalizeWorkflowMutation = {
7835
- localizeWorkflow: {
7836
- error?: {
7837
- __typename: "OtherUserError";
7838
- code: string;
7839
- } | {
7840
- __typename: "ReadOnlyUserError";
7841
- code: string;
7842
- } | {
7843
- __typename: "UnknownIdUserError";
7844
- id: string;
7845
- code: string;
7846
- } | {
7847
- __typename: "WorkflowUserError";
7848
- node?: string | undefined | null;
7849
- message: string;
7850
- reason: WorkflowErrorReason;
7851
- code: string;
7852
- } | undefined | null;
7853
- workflow?: {
7854
- __typename: "Workflow";
7855
- definition: JSONValue;
8281
+ export type UpdateUpstreamProxySocksMutation = {
8282
+ updateUpstreamProxySocks: {
8283
+ proxy?: {
8284
+ __typename: "UpstreamProxySocks";
7856
8285
  id: string;
7857
- kind: WorkflowKind;
7858
- name: string;
8286
+ allowlist: Array<string>;
8287
+ denylist: Array<string>;
7859
8288
  enabled: boolean;
7860
- global: boolean;
7861
- readOnly: boolean;
8289
+ includeDns: boolean;
8290
+ rank: string;
8291
+ auth?: {
8292
+ __typename: "UpstreamProxyAuthBasic";
8293
+ username: string;
8294
+ password: string;
8295
+ } | undefined | null;
8296
+ connection: {
8297
+ __typename: "ConnectionInfo";
8298
+ host: string;
8299
+ port: number;
8300
+ isTls: boolean;
8301
+ };
7862
8302
  } | undefined | null;
7863
8303
  };
7864
8304
  };
7865
- export type AutomateEntryQueryVariables = Exact<{
8305
+ export type DeleteUpstreamProxySocksMutationVariables = Exact<{
7866
8306
  id: Scalars["ID"]["input"];
7867
8307
  }>;
7868
- export type AutomateEntryQuery = {
7869
- automateEntry?: {
7870
- __typename: "AutomateEntry";
7871
- id: string;
7872
- name: string;
7873
- createdAt: Date;
7874
- settings: {
7875
- __typename: "AutomateSettings";
7876
- closeConnection: boolean;
7877
- updateContentLength: boolean;
7878
- strategy: AutomatePayloadStrategy;
7879
- concurrency: {
7880
- __typename: "AutomateConcurrencySetting";
7881
- delay: number;
7882
- workers: number;
7883
- };
7884
- retryOnFailure: {
7885
- __typename: "AutomateRetryOnFailureSetting";
7886
- backoff: number;
7887
- maximumRetries: number;
7888
- };
7889
- payloads: Array<{
7890
- __typename: "AutomatePayload";
7891
- options: {
7892
- __typename: "AutomateHostedFilePayload";
7893
- id: string;
7894
- delimiter?: string | undefined | null;
7895
- } | {
7896
- __typename: "AutomateNullPayload";
7897
- quantity: number;
7898
- } | {
7899
- __typename: "AutomateNumberPayload";
7900
- range: {
7901
- start: number;
7902
- end: number;
7903
- };
7904
- } | {
7905
- __typename: "AutomateSimpleListPayload";
7906
- list: Array<string>;
7907
- };
7908
- preprocessors: Array<{
7909
- __typename: "AutomatePreprocessor";
7910
- options: {
7911
- __typename: "AutomatePrefixPreprocessor";
7912
- value: string;
7913
- } | {
7914
- __typename: "AutomateSuffixPreprocessor";
7915
- value: string;
7916
- } | {
7917
- __typename: "AutomateUrlEncodePreprocessor";
7918
- charset?: string | undefined | null;
7919
- nonAscii: boolean;
7920
- } | {
7921
- __typename: "AutomateWorkflowPreprocessor";
7922
- id: string;
7923
- };
7924
- }>;
7925
- }>;
7926
- placeholders: Array<{
7927
- __typename: "AutomatePlaceholder";
7928
- start: number;
7929
- end: number;
7930
- }>;
7931
- };
7932
- session: {
7933
- id: string;
7934
- };
7935
- } | undefined | null;
8308
+ export type DeleteUpstreamProxySocksMutation = {
8309
+ deleteUpstreamProxySocks: {
8310
+ deletedId?: string | undefined | null;
8311
+ };
7936
8312
  };
7937
- export type AutomateEntryRequestsQueryVariables = Exact<{
8313
+ export type TestUpstreamProxySocksMutationVariables = Exact<{
8314
+ input: TestUpstreamProxySocksInput;
8315
+ }>;
8316
+ export type TestUpstreamProxySocksMutation = {
8317
+ testUpstreamProxySocks: {
8318
+ success?: boolean | undefined | null;
8319
+ };
8320
+ };
8321
+ export type RankUpstreamProxySocksMutationVariables = Exact<{
7938
8322
  id: Scalars["ID"]["input"];
7939
- after?: InputMaybe<Scalars["String"]["input"]>;
7940
- first?: InputMaybe<Scalars["Int"]["input"]>;
7941
- before?: InputMaybe<Scalars["String"]["input"]>;
7942
- last?: InputMaybe<Scalars["Int"]["input"]>;
7943
- order?: InputMaybe<AutomateEntryRequestOrderInput>;
7944
- filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
8323
+ input: RankUpstreamProxySocksInput;
7945
8324
  }>;
7946
- export type AutomateEntryRequestsQuery = {
7947
- automateEntry?: {
7948
- __typename: "AutomateEntry";
7949
- id: string;
7950
- name: string;
7951
- createdAt: Date;
7952
- requests: {
7953
- snapshot: number;
7954
- edges: Array<{
7955
- __typename: "AutomateEntryRequestEdge";
7956
- cursor: string;
7957
- node: {
7958
- __typename: "AutomateEntryRequest";
7959
- sequenceId: string;
7960
- automateEntryId: string;
7961
- error?: string | undefined | null;
7962
- request: {
7963
- __typename: "Request";
7964
- id: string;
7965
- host: string;
7966
- port: number;
7967
- path: string;
7968
- query: string;
7969
- method: string;
7970
- edited: boolean;
7971
- isTls: boolean;
7972
- length: number;
7973
- alteration: Alteration;
7974
- fileExtension?: string | undefined | null;
7975
- source: Source;
7976
- createdAt: Date;
7977
- metadata: {
7978
- __typename: "RequestMetadata";
7979
- id: string;
7980
- color?: string | undefined | null;
7981
- };
7982
- response?: {
7983
- __typename: "Response";
7984
- id: string;
7985
- statusCode: number;
7986
- roundtripTime: number;
7987
- length: number;
7988
- createdAt: Date;
7989
- alteration: Alteration;
7990
- edited: boolean;
7991
- } | undefined | null;
7992
- };
7993
- payloads: Array<{
7994
- __typename: "AutomateEntryRequestPayload";
7995
- position?: number | undefined | null;
7996
- raw?: string | undefined | null;
7997
- }>;
7998
- };
7999
- }>;
8000
- };
8001
- settings: {
8002
- __typename: "AutomateSettings";
8003
- closeConnection: boolean;
8004
- updateContentLength: boolean;
8005
- strategy: AutomatePayloadStrategy;
8006
- concurrency: {
8007
- __typename: "AutomateConcurrencySetting";
8008
- delay: number;
8009
- workers: number;
8010
- };
8011
- retryOnFailure: {
8012
- __typename: "AutomateRetryOnFailureSetting";
8013
- backoff: number;
8014
- maximumRetries: number;
8015
- };
8016
- payloads: Array<{
8017
- __typename: "AutomatePayload";
8018
- options: {
8019
- __typename: "AutomateHostedFilePayload";
8020
- id: string;
8021
- delimiter?: string | undefined | null;
8022
- } | {
8023
- __typename: "AutomateNullPayload";
8024
- quantity: number;
8025
- } | {
8026
- __typename: "AutomateNumberPayload";
8027
- range: {
8028
- start: number;
8029
- end: number;
8030
- };
8031
- } | {
8032
- __typename: "AutomateSimpleListPayload";
8033
- list: Array<string>;
8034
- };
8035
- preprocessors: Array<{
8036
- __typename: "AutomatePreprocessor";
8037
- options: {
8038
- __typename: "AutomatePrefixPreprocessor";
8039
- value: string;
8040
- } | {
8041
- __typename: "AutomateSuffixPreprocessor";
8042
- value: string;
8043
- } | {
8044
- __typename: "AutomateUrlEncodePreprocessor";
8045
- charset?: string | undefined | null;
8046
- nonAscii: boolean;
8047
- } | {
8048
- __typename: "AutomateWorkflowPreprocessor";
8049
- id: string;
8050
- };
8051
- }>;
8052
- }>;
8053
- placeholders: Array<{
8054
- __typename: "AutomatePlaceholder";
8055
- start: number;
8056
- end: number;
8057
- }>;
8058
- };
8059
- session: {
8325
+ export type RankUpstreamProxySocksMutation = {
8326
+ rankUpstreamProxySocks: {
8327
+ proxy?: {
8328
+ __typename: "UpstreamProxySocks";
8060
8329
  id: string;
8061
- };
8062
- } | undefined | null;
8330
+ allowlist: Array<string>;
8331
+ denylist: Array<string>;
8332
+ enabled: boolean;
8333
+ includeDns: boolean;
8334
+ rank: string;
8335
+ auth?: {
8336
+ __typename: "UpstreamProxyAuthBasic";
8337
+ username: string;
8338
+ password: string;
8339
+ } | undefined | null;
8340
+ connection: {
8341
+ __typename: "ConnectionInfo";
8342
+ host: string;
8343
+ port: number;
8344
+ isTls: boolean;
8345
+ };
8346
+ } | undefined | null;
8347
+ };
8063
8348
  };
8064
- export type AutomateEntryRequestsByOffsetQueryVariables = Exact<{
8349
+ export type UpdateViewerSettingsMutationVariables = Exact<{
8350
+ input: UpdateViewerSettingsInput;
8351
+ }>;
8352
+ export type UpdateViewerSettingsMutation = {
8353
+ updateViewerSettings: {
8354
+ settings?: {
8355
+ __typename: "UserSettings";
8356
+ data: JSONValue;
8357
+ migrations: JSONValue;
8358
+ } | undefined | null;
8359
+ };
8360
+ };
8361
+ export type CreateWorkflowMutationVariables = Exact<{
8362
+ input: CreateWorkflowInput;
8363
+ }>;
8364
+ export type CreateWorkflowMutation = {
8365
+ createWorkflow: {
8366
+ error?: {
8367
+ __typename: "OtherUserError";
8368
+ code: string;
8369
+ } | {
8370
+ __typename: "WorkflowUserError";
8371
+ node?: string | undefined | null;
8372
+ message: string;
8373
+ reason: WorkflowErrorReason;
8374
+ code: string;
8375
+ } | undefined | null;
8376
+ workflow?: {
8377
+ __typename: "Workflow";
8378
+ definition: JSONValue;
8379
+ id: string;
8380
+ kind: WorkflowKind;
8381
+ name: string;
8382
+ enabled: boolean;
8383
+ global: boolean;
8384
+ readOnly: boolean;
8385
+ } | undefined | null;
8386
+ };
8387
+ };
8388
+ export type DeleteWorkflowMutationVariables = Exact<{
8065
8389
  id: Scalars["ID"]["input"];
8066
- limit?: InputMaybe<Scalars["Int"]["input"]>;
8067
- offset?: InputMaybe<Scalars["Int"]["input"]>;
8068
- order?: InputMaybe<AutomateEntryRequestOrderInput>;
8069
- filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
8070
8390
  }>;
8071
- export type AutomateEntryRequestsByOffsetQuery = {
8072
- automateEntry?: {
8073
- __typename: "AutomateEntry";
8074
- id: string;
8075
- name: string;
8076
- createdAt: Date;
8077
- requestsByOffset: {
8078
- snapshot: number;
8079
- edges: Array<{
8080
- __typename: "AutomateEntryRequestEdge";
8081
- cursor: string;
8082
- node: {
8083
- __typename: "AutomateEntryRequest";
8084
- sequenceId: string;
8085
- automateEntryId: string;
8086
- error?: string | undefined | null;
8087
- request: {
8088
- __typename: "Request";
8089
- id: string;
8090
- host: string;
8091
- port: number;
8092
- path: string;
8093
- query: string;
8094
- method: string;
8095
- edited: boolean;
8096
- isTls: boolean;
8097
- length: number;
8098
- alteration: Alteration;
8099
- fileExtension?: string | undefined | null;
8100
- source: Source;
8101
- createdAt: Date;
8102
- metadata: {
8103
- __typename: "RequestMetadata";
8104
- id: string;
8105
- color?: string | undefined | null;
8106
- };
8107
- response?: {
8108
- __typename: "Response";
8109
- id: string;
8110
- statusCode: number;
8111
- roundtripTime: number;
8112
- length: number;
8113
- createdAt: Date;
8114
- alteration: Alteration;
8115
- edited: boolean;
8116
- } | undefined | null;
8117
- };
8118
- payloads: Array<{
8119
- __typename: "AutomateEntryRequestPayload";
8120
- position?: number | undefined | null;
8121
- raw?: string | undefined | null;
8122
- }>;
8123
- };
8124
- }>;
8125
- };
8126
- settings: {
8127
- __typename: "AutomateSettings";
8128
- closeConnection: boolean;
8129
- updateContentLength: boolean;
8130
- strategy: AutomatePayloadStrategy;
8131
- concurrency: {
8132
- __typename: "AutomateConcurrencySetting";
8133
- delay: number;
8134
- workers: number;
8135
- };
8136
- retryOnFailure: {
8137
- __typename: "AutomateRetryOnFailureSetting";
8138
- backoff: number;
8139
- maximumRetries: number;
8140
- };
8141
- payloads: Array<{
8142
- __typename: "AutomatePayload";
8143
- options: {
8144
- __typename: "AutomateHostedFilePayload";
8145
- id: string;
8146
- delimiter?: string | undefined | null;
8147
- } | {
8148
- __typename: "AutomateNullPayload";
8149
- quantity: number;
8150
- } | {
8151
- __typename: "AutomateNumberPayload";
8152
- range: {
8153
- start: number;
8154
- end: number;
8155
- };
8156
- } | {
8157
- __typename: "AutomateSimpleListPayload";
8158
- list: Array<string>;
8159
- };
8160
- preprocessors: Array<{
8161
- __typename: "AutomatePreprocessor";
8162
- options: {
8163
- __typename: "AutomatePrefixPreprocessor";
8164
- value: string;
8165
- } | {
8166
- __typename: "AutomateSuffixPreprocessor";
8167
- value: string;
8168
- } | {
8169
- __typename: "AutomateUrlEncodePreprocessor";
8170
- charset?: string | undefined | null;
8171
- nonAscii: boolean;
8172
- } | {
8173
- __typename: "AutomateWorkflowPreprocessor";
8174
- id: string;
8175
- };
8176
- }>;
8177
- }>;
8178
- placeholders: Array<{
8179
- __typename: "AutomatePlaceholder";
8180
- start: number;
8181
- end: number;
8182
- }>;
8183
- };
8184
- session: {
8391
+ export type DeleteWorkflowMutation = {
8392
+ deleteWorkflow: {
8393
+ deletedId?: string | undefined | null;
8394
+ error?: {
8395
+ __typename: "OtherUserError";
8396
+ code: string;
8397
+ } | {
8398
+ __typename: "ReadOnlyUserError";
8399
+ code: string;
8400
+ } | {
8401
+ __typename: "UnknownIdUserError";
8402
+ id: string;
8403
+ code: string;
8404
+ } | undefined | null;
8405
+ };
8406
+ };
8407
+ export type ToggleWorkflowMutationVariables = Exact<{
8408
+ id: Scalars["ID"]["input"];
8409
+ enabled: Scalars["Boolean"]["input"];
8410
+ }>;
8411
+ export type ToggleWorkflowMutation = {
8412
+ toggleWorkflow: {
8413
+ error?: {
8414
+ __typename: "OtherUserError";
8415
+ code: string;
8416
+ } | {
8417
+ __typename: "UnknownIdUserError";
8418
+ id: string;
8419
+ code: string;
8420
+ } | undefined | null;
8421
+ workflow?: {
8422
+ __typename: "Workflow";
8423
+ definition: JSONValue;
8424
+ id: string;
8425
+ kind: WorkflowKind;
8426
+ name: string;
8427
+ enabled: boolean;
8428
+ global: boolean;
8429
+ readOnly: boolean;
8430
+ } | undefined | null;
8431
+ };
8432
+ };
8433
+ export type RenameWorkflowMutationVariables = Exact<{
8434
+ id: Scalars["ID"]["input"];
8435
+ name: Scalars["String"]["input"];
8436
+ }>;
8437
+ export type RenameWorkflowMutation = {
8438
+ renameWorkflow: {
8439
+ error?: {
8440
+ __typename: "OtherUserError";
8441
+ code: string;
8442
+ } | {
8443
+ __typename: "ReadOnlyUserError";
8444
+ code: string;
8445
+ } | {
8446
+ __typename: "UnknownIdUserError";
8447
+ id: string;
8448
+ code: string;
8449
+ } | undefined | null;
8450
+ workflow?: {
8451
+ __typename: "Workflow";
8452
+ definition: JSONValue;
8453
+ id: string;
8454
+ kind: WorkflowKind;
8455
+ name: string;
8456
+ enabled: boolean;
8457
+ global: boolean;
8458
+ readOnly: boolean;
8459
+ } | undefined | null;
8460
+ };
8461
+ };
8462
+ export type UpdateWorkflowMutationVariables = Exact<{
8463
+ id: Scalars["ID"]["input"];
8464
+ input: UpdateWorkflowInput;
8465
+ }>;
8466
+ export type UpdateWorkflowMutation = {
8467
+ updateWorkflow: {
8468
+ error?: {
8469
+ __typename: "OtherUserError";
8470
+ code: string;
8471
+ } | {
8472
+ __typename: "ReadOnlyUserError";
8473
+ code: string;
8474
+ } | {
8475
+ __typename: "UnknownIdUserError";
8185
8476
  id: string;
8186
- };
8187
- } | undefined | null;
8477
+ code: string;
8478
+ } | {
8479
+ __typename: "WorkflowUserError";
8480
+ node?: string | undefined | null;
8481
+ message: string;
8482
+ reason: WorkflowErrorReason;
8483
+ code: string;
8484
+ } | undefined | null;
8485
+ workflow?: {
8486
+ __typename: "Workflow";
8487
+ definition: JSONValue;
8488
+ id: string;
8489
+ kind: WorkflowKind;
8490
+ name: string;
8491
+ enabled: boolean;
8492
+ global: boolean;
8493
+ readOnly: boolean;
8494
+ } | undefined | null;
8495
+ };
8188
8496
  };
8189
- export type AutomateEntryRequestsCountQueryVariables = Exact<{
8497
+ export type RunConvertWorkflowMutationVariables = Exact<{
8190
8498
  id: Scalars["ID"]["input"];
8191
- filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
8499
+ input: Scalars["Blob"]["input"];
8192
8500
  }>;
8193
- export type AutomateEntryRequestsCountQuery = {
8194
- automateEntry?: {
8195
- __typename: "AutomateEntry";
8196
- id: string;
8197
- name: string;
8198
- createdAt: Date;
8199
- requests: {
8200
- count: {
8201
- __typename: "Count";
8202
- value: number;
8203
- snapshot: number;
8204
- };
8205
- };
8206
- settings: {
8207
- __typename: "AutomateSettings";
8208
- closeConnection: boolean;
8209
- updateContentLength: boolean;
8210
- strategy: AutomatePayloadStrategy;
8211
- concurrency: {
8212
- __typename: "AutomateConcurrencySetting";
8213
- delay: number;
8214
- workers: number;
8215
- };
8216
- retryOnFailure: {
8217
- __typename: "AutomateRetryOnFailureSetting";
8218
- backoff: number;
8219
- maximumRetries: number;
8220
- };
8221
- payloads: Array<{
8222
- __typename: "AutomatePayload";
8223
- options: {
8224
- __typename: "AutomateHostedFilePayload";
8225
- id: string;
8226
- delimiter?: string | undefined | null;
8227
- } | {
8228
- __typename: "AutomateNullPayload";
8229
- quantity: number;
8230
- } | {
8231
- __typename: "AutomateNumberPayload";
8232
- range: {
8233
- start: number;
8234
- end: number;
8235
- };
8236
- } | {
8237
- __typename: "AutomateSimpleListPayload";
8238
- list: Array<string>;
8239
- };
8240
- preprocessors: Array<{
8241
- __typename: "AutomatePreprocessor";
8242
- options: {
8243
- __typename: "AutomatePrefixPreprocessor";
8244
- value: string;
8245
- } | {
8246
- __typename: "AutomateSuffixPreprocessor";
8247
- value: string;
8248
- } | {
8249
- __typename: "AutomateUrlEncodePreprocessor";
8250
- charset?: string | undefined | null;
8251
- nonAscii: boolean;
8252
- } | {
8253
- __typename: "AutomateWorkflowPreprocessor";
8254
- id: string;
8255
- };
8256
- }>;
8257
- }>;
8258
- placeholders: Array<{
8259
- __typename: "AutomatePlaceholder";
8260
- start: number;
8261
- end: number;
8262
- }>;
8263
- };
8264
- session: {
8265
- id: string;
8266
- };
8267
- } | undefined | null;
8501
+ export type RunConvertWorkflowMutation = {
8502
+ runConvertWorkflow: {
8503
+ output?: string | undefined | null;
8504
+ error?: {
8505
+ __typename: "OtherUserError";
8506
+ code: string;
8507
+ } | {
8508
+ __typename: "PermissionDeniedUserError";
8509
+ code: string;
8510
+ permissionDeniedReason: PermissionDeniedErrorReason;
8511
+ } | {
8512
+ __typename: "WorkflowUserError";
8513
+ node?: string | undefined | null;
8514
+ message: string;
8515
+ reason: WorkflowErrorReason;
8516
+ code: string;
8517
+ } | undefined | null;
8518
+ };
8268
8519
  };
8269
- export type AutomateSessionsQueryVariables = Exact<{
8270
- [key: string]: never;
8520
+ export type RunActiveWorkflowMutationVariables = Exact<{
8521
+ id: Scalars["ID"]["input"];
8522
+ input: RunActiveWorkflowInput;
8271
8523
  }>;
8272
- export type AutomateSessionsQuery = {
8273
- automateSessions: {
8274
- edges: Array<{
8275
- node: {
8276
- __typename: "AutomateSession";
8524
+ export type RunActiveWorkflowMutation = {
8525
+ runActiveWorkflow: {
8526
+ error?: {
8527
+ __typename: "OtherUserError";
8528
+ code: string;
8529
+ } | {
8530
+ __typename: "PermissionDeniedUserError";
8531
+ code: string;
8532
+ permissionDeniedReason: PermissionDeniedErrorReason;
8533
+ } | {
8534
+ __typename: "UnknownIdUserError";
8535
+ id: string;
8536
+ code: string;
8537
+ } | undefined | null;
8538
+ task?: {
8539
+ __typename: "WorkflowTask";
8540
+ id: string;
8541
+ createdAt: Date;
8542
+ workflow: {
8543
+ __typename: "Workflow";
8277
8544
  id: string;
8545
+ kind: WorkflowKind;
8278
8546
  name: string;
8279
- createdAt: Date;
8280
- entries: Array<{
8281
- __typename: "AutomateEntry";
8282
- id: string;
8283
- name: string;
8284
- createdAt: Date;
8285
- session: {
8286
- id: string;
8287
- };
8288
- }>;
8547
+ enabled: boolean;
8548
+ global: boolean;
8549
+ readOnly: boolean;
8289
8550
  };
8290
- }>;
8551
+ } | undefined | null;
8291
8552
  };
8292
8553
  };
8293
- export type AutomateSessionQueryVariables = Exact<{
8554
+ export type GlobalizeWorkflowMutationVariables = Exact<{
8294
8555
  id: Scalars["ID"]["input"];
8295
8556
  }>;
8296
- export type AutomateSessionQuery = {
8297
- automateSession?: {
8298
- __typename: "AutomateSession";
8299
- raw: string;
8300
- id: string;
8301
- name: string;
8302
- createdAt: Date;
8303
- connection: {
8304
- __typename: "ConnectionInfo";
8305
- host: string;
8306
- port: number;
8307
- isTls: boolean;
8308
- };
8309
- settings: {
8310
- __typename: "AutomateSettings";
8311
- closeConnection: boolean;
8312
- updateContentLength: boolean;
8313
- strategy: AutomatePayloadStrategy;
8314
- concurrency: {
8315
- __typename: "AutomateConcurrencySetting";
8316
- delay: number;
8317
- workers: number;
8318
- };
8319
- retryOnFailure: {
8320
- __typename: "AutomateRetryOnFailureSetting";
8321
- backoff: number;
8322
- maximumRetries: number;
8323
- };
8324
- payloads: Array<{
8325
- __typename: "AutomatePayload";
8326
- options: {
8327
- __typename: "AutomateHostedFilePayload";
8328
- id: string;
8329
- delimiter?: string | undefined | null;
8330
- } | {
8331
- __typename: "AutomateNullPayload";
8332
- quantity: number;
8333
- } | {
8334
- __typename: "AutomateNumberPayload";
8335
- range: {
8336
- start: number;
8337
- end: number;
8338
- };
8339
- } | {
8340
- __typename: "AutomateSimpleListPayload";
8341
- list: Array<string>;
8342
- };
8343
- preprocessors: Array<{
8344
- __typename: "AutomatePreprocessor";
8345
- options: {
8346
- __typename: "AutomatePrefixPreprocessor";
8347
- value: string;
8348
- } | {
8349
- __typename: "AutomateSuffixPreprocessor";
8350
- value: string;
8351
- } | {
8352
- __typename: "AutomateUrlEncodePreprocessor";
8353
- charset?: string | undefined | null;
8354
- nonAscii: boolean;
8355
- } | {
8356
- __typename: "AutomateWorkflowPreprocessor";
8357
- id: string;
8358
- };
8359
- }>;
8360
- }>;
8361
- placeholders: Array<{
8362
- __typename: "AutomatePlaceholder";
8363
- start: number;
8364
- end: number;
8365
- }>;
8366
- };
8367
- entries: Array<{
8368
- __typename: "AutomateEntry";
8557
+ export type GlobalizeWorkflowMutation = {
8558
+ globalizeWorkflow: {
8559
+ error?: {
8560
+ __typename: "OtherUserError";
8561
+ code: string;
8562
+ } | {
8563
+ __typename: "ReadOnlyUserError";
8564
+ code: string;
8565
+ } | {
8566
+ __typename: "UnknownIdUserError";
8567
+ id: string;
8568
+ code: string;
8569
+ } | {
8570
+ __typename: "WorkflowUserError";
8571
+ node?: string | undefined | null;
8572
+ message: string;
8573
+ reason: WorkflowErrorReason;
8574
+ code: string;
8575
+ } | undefined | null;
8576
+ workflow?: {
8577
+ __typename: "Workflow";
8578
+ definition: JSONValue;
8369
8579
  id: string;
8580
+ kind: WorkflowKind;
8370
8581
  name: string;
8371
- createdAt: Date;
8372
- session: {
8373
- id: string;
8374
- };
8375
- }>;
8376
- } | undefined | null;
8582
+ enabled: boolean;
8583
+ global: boolean;
8584
+ readOnly: boolean;
8585
+ } | undefined | null;
8586
+ };
8377
8587
  };
8378
- export type AutomateTasksQueryVariables = Exact<{
8379
- after?: InputMaybe<Scalars["String"]["input"]>;
8380
- before?: InputMaybe<Scalars["String"]["input"]>;
8381
- first?: InputMaybe<Scalars["Int"]["input"]>;
8382
- last?: InputMaybe<Scalars["Int"]["input"]>;
8588
+ export type LocalizeWorkflowMutationVariables = Exact<{
8589
+ id: Scalars["ID"]["input"];
8383
8590
  }>;
8384
- export type AutomateTasksQuery = {
8385
- automateTasks: {
8386
- edges: Array<{
8387
- node: {
8388
- id: string;
8389
- paused: boolean;
8390
- entry: {
8391
- __typename: "AutomateEntry";
8392
- id: string;
8393
- name: string;
8394
- createdAt: Date;
8395
- session: {
8396
- id: string;
8397
- };
8398
- };
8399
- };
8400
- }>;
8401
- pageInfo: {
8402
- __typename: "PageInfo";
8403
- hasPreviousPage: boolean;
8404
- hasNextPage: boolean;
8405
- startCursor?: string | undefined | null;
8406
- endCursor?: string | undefined | null;
8407
- };
8591
+ export type LocalizeWorkflowMutation = {
8592
+ localizeWorkflow: {
8593
+ error?: {
8594
+ __typename: "OtherUserError";
8595
+ code: string;
8596
+ } | {
8597
+ __typename: "ReadOnlyUserError";
8598
+ code: string;
8599
+ } | {
8600
+ __typename: "UnknownIdUserError";
8601
+ id: string;
8602
+ code: string;
8603
+ } | {
8604
+ __typename: "WorkflowUserError";
8605
+ node?: string | undefined | null;
8606
+ message: string;
8607
+ reason: WorkflowErrorReason;
8608
+ code: string;
8609
+ } | undefined | null;
8610
+ workflow?: {
8611
+ __typename: "Workflow";
8612
+ definition: JSONValue;
8613
+ id: string;
8614
+ kind: WorkflowKind;
8615
+ name: string;
8616
+ enabled: boolean;
8617
+ global: boolean;
8618
+ readOnly: boolean;
8619
+ } | undefined | null;
8408
8620
  };
8409
8621
  };
8410
8622
  export type BackupsQueryVariables = Exact<{
@@ -13077,116 +13289,6 @@ export type CreatedAuthenticationTokenSubscription = {
13077
13289
  } | undefined | null;
13078
13290
  };
13079
13291
  };
13080
- export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
13081
- order?: InputMaybe<AutomateEntryRequestOrderInput>;
13082
- filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
13083
- }>;
13084
- export type CreatedAutomateEntryRequestSubscription = {
13085
- createdAutomateEntryRequest: {
13086
- snapshot: number;
13087
- automateEntryRequestEdge: {
13088
- __typename: "AutomateEntryRequestEdge";
13089
- cursor: string;
13090
- node: {
13091
- __typename: "AutomateEntryRequest";
13092
- sequenceId: string;
13093
- automateEntryId: string;
13094
- error?: string | undefined | null;
13095
- request: {
13096
- __typename: "Request";
13097
- id: string;
13098
- host: string;
13099
- port: number;
13100
- path: string;
13101
- query: string;
13102
- method: string;
13103
- edited: boolean;
13104
- isTls: boolean;
13105
- length: number;
13106
- alteration: Alteration;
13107
- fileExtension?: string | undefined | null;
13108
- source: Source;
13109
- createdAt: Date;
13110
- metadata: {
13111
- __typename: "RequestMetadata";
13112
- id: string;
13113
- color?: string | undefined | null;
13114
- };
13115
- response?: {
13116
- __typename: "Response";
13117
- id: string;
13118
- statusCode: number;
13119
- roundtripTime: number;
13120
- length: number;
13121
- createdAt: Date;
13122
- alteration: Alteration;
13123
- edited: boolean;
13124
- } | undefined | null;
13125
- };
13126
- payloads: Array<{
13127
- __typename: "AutomateEntryRequestPayload";
13128
- position?: number | undefined | null;
13129
- raw?: string | undefined | null;
13130
- }>;
13131
- };
13132
- };
13133
- };
13134
- };
13135
- export type CreatedAutomateTaskSubscriptionVariables = Exact<{
13136
- [key: string]: never;
13137
- }>;
13138
- export type CreatedAutomateTaskSubscription = {
13139
- createdAutomateTask: {
13140
- snapshot: number;
13141
- automateTaskEdge: {
13142
- node: {
13143
- id: string;
13144
- paused: boolean;
13145
- entry: {
13146
- __typename: "AutomateEntry";
13147
- id: string;
13148
- name: string;
13149
- createdAt: Date;
13150
- session: {
13151
- id: string;
13152
- };
13153
- };
13154
- };
13155
- };
13156
- };
13157
- };
13158
- export type DeletedAutomateTaskSubscriptionVariables = Exact<{
13159
- [key: string]: never;
13160
- }>;
13161
- export type DeletedAutomateTaskSubscription = {
13162
- deletedAutomateTask: {
13163
- deletedAutomateTaskId: string;
13164
- snapshot: number;
13165
- };
13166
- };
13167
- export type UpdatedAutomateTaskSubscriptionVariables = Exact<{
13168
- [key: string]: never;
13169
- }>;
13170
- export type UpdatedAutomateTaskSubscription = {
13171
- updatedAutomateTask: {
13172
- snapshot: number;
13173
- automateTaskEdge: {
13174
- node: {
13175
- id: string;
13176
- paused: boolean;
13177
- entry: {
13178
- __typename: "AutomateEntry";
13179
- id: string;
13180
- name: string;
13181
- createdAt: Date;
13182
- session: {
13183
- id: string;
13184
- };
13185
- };
13186
- };
13187
- };
13188
- };
13189
- };
13190
13292
  export type CreatedBackupSubscriptionVariables = Exact<{
13191
13293
  [key: string]: never;
13192
13294
  }>;
@@ -14646,8 +14748,6 @@ export declare const AuthenticationUserErrorFullFragmentDoc = "\n fragment au
14646
14748
  export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14647
14749
  export declare const AssistantMessageTaskFullFragmentDoc = "\n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n ";
14648
14750
  export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
14649
- export declare const AuthenticationRequestFullFragmentDoc = "\n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n ";
14650
- export declare const AuthenticationTokenFullFragmentDoc = "\n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
14651
14751
  export declare const AutomateEntryMetaFragmentDoc = "\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
14652
14752
  export declare const ConcurrencySettingFullFragmentDoc = "\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n ";
14653
14753
  export declare const RetryOnFailureSettingFullFragmentDoc = "\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n ";
@@ -14676,6 +14776,8 @@ export declare const ConnectionInfoFullFragmentDoc = "\n fragment connectionI
14676
14776
  export declare const AutomateSessionFullFragmentDoc = "\n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n ";
14677
14777
  export declare const AutomateTaskMetaFragmentDoc = "\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n ";
14678
14778
  export declare const AutomateTaskEdgeMetaFragmentDoc = "\n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n ";
14779
+ export declare const AuthenticationRequestFullFragmentDoc = "\n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n ";
14780
+ export declare const AuthenticationTokenFullFragmentDoc = "\n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
14679
14781
  export declare const BackupMetaFragmentDoc = "\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
14680
14782
  export declare const BackupTaskMetaFragmentDoc = "\n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n ";
14681
14783
  export declare const FinishedBackupTaskSuccessFullFragmentDoc = "\n fragment finishedBackupTaskSuccessFull on FinishedBackupTaskSuccess {\n __typename\n task {\n ...backupTaskMeta\n }\n}\n ";
@@ -14787,9 +14889,13 @@ export declare const CreatedAssistantMessageDocument = "\n subscription creat
14787
14889
  export declare const CreatedAssistantMessageTaskDocument = "\n subscription createdAssistantMessageTask {\n createdAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14788
14890
  export declare const UpdatedAssistantMessageTaskDocument = "\n subscription updatedAssistantMessageTask {\n updatedAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14789
14891
  export declare const UpdatedViewerAssistantUsageDocument = "\n subscription updatedViewerAssistantUsage {\n updatedViewerAssistantUsage {\n usage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
14790
- export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14791
- export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
14792
- export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
14892
+ export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
14893
+ export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
14894
+ export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
14895
+ export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
14896
+ export declare const AutomateSessionsDocument = "\n query automateSessions {\n automateSessions {\n edges {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
14897
+ export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
14898
+ export declare const AutomateTasksDocument = "\n query automateTasks($after: String, $before: String, $first: Int, $last: Int) {\n automateTasks(after: $after, before: $before, first: $first, last: $last) {\n edges {\n node {\n ...automateTaskMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
14793
14899
  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 ";
14794
14900
  export declare const RenameAutomateEntryDocument = "\n mutation renameAutomateEntry($id: ID!, $name: String!) {\n renameAutomateEntry(id: $id, name: $name) {\n entry {\n ...automateEntryFull\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
14795
14901
  export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
@@ -14800,6 +14906,19 @@ export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomate
14800
14906
  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 ";
14801
14907
  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 ";
14802
14908
  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 ";
14909
+ export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
14910
+ 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 ";
14911
+ export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
14912
+ 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 ";
14913
+ export declare const CreatedAutomateEntryDocument = "\n subscription createdAutomateEntry {\n createdAutomateEntry {\n automateEntryEdge {\n node {\n ...automateEntryMeta\n }\n }\n }\n}\n \n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
14914
+ export declare const UpdatedAutomateEntryDocument = "\n subscription updatedAutomateEntry {\n updatedAutomateEntry {\n automateEntryEdge {\n node {\n ...automateEntryMeta\n }\n }\n snapshot\n }\n}\n \n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
14915
+ export declare const DeletedAutomateEntryDocument = "\n subscription deletedAutomateEntry {\n deletedAutomateEntry {\n deletedAutomateEntryId\n }\n}\n ";
14916
+ export declare const CreatedAutomateSessionDocument = "\n subscription createdAutomateSession {\n createdAutomateSession {\n automateSessionEdge {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
14917
+ export declare const UpdatedAutomateSessionDocument = "\n subscription updatedAutomateSession {\n updatedAutomateSession {\n automateSessionEdge {\n node {\n ...automateSessionMeta\n }\n }\n snapshot\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 ";
14918
+ export declare const DeletedAutomateSessionDocument = "\n subscription deletedAutomateSession {\n deletedAutomateSession {\n deletedAutomateSessionId\n }\n}\n ";
14919
+ export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14920
+ export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
14921
+ export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
14803
14922
  export declare const CreateBackupDocument = "\n mutation createBackup($id: ID!) {\n createBackup(projectId: $id) {\n task {\n ...backupTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
14804
14923
  export declare const DeleteBackupDocument = "\n mutation deleteBackup($id: ID!) {\n deleteBackup(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n ";
14805
14924
  export declare const RenameBackupDocument = "\n mutation renameBackup($id: ID!, $name: String!) {\n renameBackup(id: $id, name: $name) {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
@@ -14873,13 +14992,6 @@ export declare const RunConvertWorkflowDocument = "\n mutation runConvertWork
14873
14992
  export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14874
14993
  export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14875
14994
  export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
14876
- export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
14877
- export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
14878
- export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
14879
- export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
14880
- export declare const AutomateSessionsDocument = "\n query automateSessions {\n automateSessions {\n edges {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
14881
- export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
14882
- export declare const AutomateTasksDocument = "\n query automateTasks($after: String, $before: String, $first: Int, $last: Int) {\n automateTasks(after: $after, before: $before, first: $first, last: $last) {\n edges {\n node {\n ...automateTaskMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
14883
14995
  export declare const BackupsDocument = "\n query backups {\n backups {\n ...backupMeta\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
14884
14996
  export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
14885
14997
  export declare const BackupTasksDocument = "\n query backupTasks {\n backupTasks {\n ...backupTaskMeta\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
@@ -14964,10 +15076,6 @@ export declare const CreatedRequestDocument = "\n subscription createdRequest
14964
15076
  export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
14965
15077
  export declare const UpdatedRequestMetadataDocument = "\n subscription updatedRequestMetadata {\n updatedRequestMetadata {\n metadata {\n ...requestMetadataFull\n }\n snapshot\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
14966
15078
  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 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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
14967
- export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
14968
- 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 ";
14969
- export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
14970
- 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 ";
14971
15079
  export declare const CreatedBackupDocument = "\n subscription createdBackup {\n createdBackup {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
14972
15080
  export declare const UpdatedBackupDocument = "\n subscription updatedBackup {\n updatedBackup {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
14973
15081
  export declare const DeletedBackupDocument = "\n subscription deletedBackup {\n deletedBackup {\n deletedBackupId\n }\n}\n ";
@@ -15034,9 +15142,13 @@ export declare function getSdk<C>(requester: Requester<C>): {
15034
15142
  createdAssistantMessageTask(variables?: CreatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAssistantMessageTaskSubscription>;
15035
15143
  updatedAssistantMessageTask(variables?: UpdatedAssistantMessageTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedAssistantMessageTaskSubscription>;
15036
15144
  updatedViewerAssistantUsage(variables?: UpdatedViewerAssistantUsageSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerAssistantUsageSubscription>;
15037
- startAuthenticationFlow(variables?: StartAuthenticationFlowMutationVariables, options?: C): Promise<StartAuthenticationFlowMutation>;
15038
- refreshAuthenticationToken(variables: RefreshAuthenticationTokenMutationVariables, options?: C): Promise<RefreshAuthenticationTokenMutation>;
15039
- logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
15145
+ automateEntry(variables: AutomateEntryQueryVariables, options?: C): Promise<AutomateEntryQuery>;
15146
+ automateEntryRequests(variables: AutomateEntryRequestsQueryVariables, options?: C): Promise<AutomateEntryRequestsQuery>;
15147
+ automateEntryRequestsByOffset(variables: AutomateEntryRequestsByOffsetQueryVariables, options?: C): Promise<AutomateEntryRequestsByOffsetQuery>;
15148
+ automateEntryRequestsCount(variables: AutomateEntryRequestsCountQueryVariables, options?: C): Promise<AutomateEntryRequestsCountQuery>;
15149
+ automateSessions(variables?: AutomateSessionsQueryVariables, options?: C): Promise<AutomateSessionsQuery>;
15150
+ automateSession(variables: AutomateSessionQueryVariables, options?: C): Promise<AutomateSessionQuery>;
15151
+ automateTasks(variables?: AutomateTasksQueryVariables, options?: C): Promise<AutomateTasksQuery>;
15040
15152
  deleteAutomateEntries(variables: DeleteAutomateEntriesMutationVariables, options?: C): Promise<DeleteAutomateEntriesMutation>;
15041
15153
  renameAutomateEntry(variables: RenameAutomateEntryMutationVariables, options?: C): Promise<RenameAutomateEntryMutation>;
15042
15154
  createAutomateSession(variables: CreateAutomateSessionMutationVariables, options?: C): Promise<CreateAutomateSessionMutation>;
@@ -15047,6 +15159,19 @@ export declare function getSdk<C>(requester: Requester<C>): {
15047
15159
  pauseAutomateTask(variables: PauseAutomateTaskMutationVariables, options?: C): Promise<PauseAutomateTaskMutation>;
15048
15160
  resumeAutomateTask(variables: ResumeAutomateTaskMutationVariables, options?: C): Promise<ResumeAutomateTaskMutation>;
15049
15161
  startAutomateTask(variables: StartAutomateTaskMutationVariables, options?: C): Promise<StartAutomateTaskMutation>;
15162
+ createdAutomateEntryRequest(variables?: CreatedAutomateEntryRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntryRequestSubscription>;
15163
+ createdAutomateTask(variables?: CreatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateTaskSubscription>;
15164
+ deletedAutomateTask(variables?: DeletedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateTaskSubscription>;
15165
+ updatedAutomateTask(variables?: UpdatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedAutomateTaskSubscription>;
15166
+ createdAutomateEntry(variables?: CreatedAutomateEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntrySubscription>;
15167
+ updatedAutomateEntry(variables?: UpdatedAutomateEntrySubscriptionVariables, options?: C): AsyncIterable<UpdatedAutomateEntrySubscription>;
15168
+ deletedAutomateEntry(variables?: DeletedAutomateEntrySubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateEntrySubscription>;
15169
+ createdAutomateSession(variables?: CreatedAutomateSessionSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateSessionSubscription>;
15170
+ updatedAutomateSession(variables?: UpdatedAutomateSessionSubscriptionVariables, options?: C): AsyncIterable<UpdatedAutomateSessionSubscription>;
15171
+ deletedAutomateSession(variables?: DeletedAutomateSessionSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateSessionSubscription>;
15172
+ startAuthenticationFlow(variables?: StartAuthenticationFlowMutationVariables, options?: C): Promise<StartAuthenticationFlowMutation>;
15173
+ refreshAuthenticationToken(variables: RefreshAuthenticationTokenMutationVariables, options?: C): Promise<RefreshAuthenticationTokenMutation>;
15174
+ logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
15050
15175
  createBackup(variables: CreateBackupMutationVariables, options?: C): Promise<CreateBackupMutation>;
15051
15176
  deleteBackup(variables: DeleteBackupMutationVariables, options?: C): Promise<DeleteBackupMutation>;
15052
15177
  renameBackup(variables: RenameBackupMutationVariables, options?: C): Promise<RenameBackupMutation>;
@@ -15120,13 +15245,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
15120
15245
  runActiveWorkflow(variables: RunActiveWorkflowMutationVariables, options?: C): Promise<RunActiveWorkflowMutation>;
15121
15246
  globalizeWorkflow(variables: GlobalizeWorkflowMutationVariables, options?: C): Promise<GlobalizeWorkflowMutation>;
15122
15247
  localizeWorkflow(variables: LocalizeWorkflowMutationVariables, options?: C): Promise<LocalizeWorkflowMutation>;
15123
- automateEntry(variables: AutomateEntryQueryVariables, options?: C): Promise<AutomateEntryQuery>;
15124
- automateEntryRequests(variables: AutomateEntryRequestsQueryVariables, options?: C): Promise<AutomateEntryRequestsQuery>;
15125
- automateEntryRequestsByOffset(variables: AutomateEntryRequestsByOffsetQueryVariables, options?: C): Promise<AutomateEntryRequestsByOffsetQuery>;
15126
- automateEntryRequestsCount(variables: AutomateEntryRequestsCountQueryVariables, options?: C): Promise<AutomateEntryRequestsCountQuery>;
15127
- automateSessions(variables?: AutomateSessionsQueryVariables, options?: C): Promise<AutomateSessionsQuery>;
15128
- automateSession(variables: AutomateSessionQueryVariables, options?: C): Promise<AutomateSessionQuery>;
15129
- automateTasks(variables?: AutomateTasksQueryVariables, options?: C): Promise<AutomateTasksQuery>;
15130
15248
  backups(variables?: BackupsQueryVariables, options?: C): Promise<BackupsQuery>;
15131
15249
  backupUri(variables: BackupUriQueryVariables, options?: C): Promise<BackupUriQuery>;
15132
15250
  backupTasks(variables?: BackupTasksQueryVariables, options?: C): Promise<BackupTasksQuery>;
@@ -15211,10 +15329,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
15211
15329
  updatedRequest(variables?: UpdatedRequestSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestSubscription>;
15212
15330
  updatedRequestMetadata(variables?: UpdatedRequestMetadataSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestMetadataSubscription>;
15213
15331
  createdAuthenticationToken(variables: CreatedAuthenticationTokenSubscriptionVariables, options?: C): AsyncIterable<CreatedAuthenticationTokenSubscription>;
15214
- createdAutomateEntryRequest(variables?: CreatedAutomateEntryRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntryRequestSubscription>;
15215
- createdAutomateTask(variables?: CreatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateTaskSubscription>;
15216
- deletedAutomateTask(variables?: DeletedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateTaskSubscription>;
15217
- updatedAutomateTask(variables?: UpdatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedAutomateTaskSubscription>;
15218
15332
  createdBackup(variables?: CreatedBackupSubscriptionVariables, options?: C): AsyncIterable<CreatedBackupSubscription>;
15219
15333
  updatedBackup(variables?: UpdatedBackupSubscriptionVariables, options?: C): AsyncIterable<UpdatedBackupSubscription>;
15220
15334
  deletedBackup(variables?: DeletedBackupSubscriptionVariables, options?: C): AsyncIterable<DeletedBackupSubscription>;