@caido/sdk-frontend 0.44.2-beta.0 → 0.44.2-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -175,7 +175,7 @@ export type AssistantMessageTask = {
|
|
|
175
175
|
message?: Maybe<AssistantMessage>;
|
|
176
176
|
session: AssistantSession;
|
|
177
177
|
};
|
|
178
|
-
export type AssistantMessageTaskError = AssistantUserError | AuthenticationUserError | OtherUserError;
|
|
178
|
+
export type AssistantMessageTaskError = AssistantUserError | AuthenticationUserError | CloudUserError | OtherUserError;
|
|
179
179
|
export type AssistantModel = {
|
|
180
180
|
id: Scalars["ID"]["output"];
|
|
181
181
|
name: Scalars["String"]["output"];
|
|
@@ -204,11 +204,8 @@ export type AssistantUserError = UserError & {
|
|
|
204
204
|
reason: AssistantErrorReason;
|
|
205
205
|
};
|
|
206
206
|
export declare const AuthenticationErrorReason: {
|
|
207
|
-
readonly CloudError: "CLOUD_ERROR";
|
|
208
|
-
readonly CloudUnavailable: "CLOUD_UNAVAILABLE";
|
|
209
207
|
readonly Denied: "DENIED";
|
|
210
208
|
readonly Expired: "EXPIRED";
|
|
211
|
-
readonly Internal: "INTERNAL";
|
|
212
209
|
readonly Invalid: "INVALID";
|
|
213
210
|
readonly StaleDate: "STALE_DATE";
|
|
214
211
|
};
|
|
@@ -235,6 +232,16 @@ export type AuthenticationUserError = UserError & {
|
|
|
235
232
|
code: Scalars["String"]["output"];
|
|
236
233
|
reason: AuthenticationErrorReason;
|
|
237
234
|
};
|
|
235
|
+
export declare const AuthorizationErrorReason: {
|
|
236
|
+
readonly Forbidden: "FORBIDDEN";
|
|
237
|
+
readonly InvalidToken: "INVALID_TOKEN";
|
|
238
|
+
readonly MissingScope: "MISSING_SCOPE";
|
|
239
|
+
};
|
|
240
|
+
export type AuthorizationErrorReason = (typeof AuthorizationErrorReason)[keyof typeof AuthorizationErrorReason];
|
|
241
|
+
export type AuthorizationUserError = UserError & {
|
|
242
|
+
code: Scalars["String"]["output"];
|
|
243
|
+
reason: AuthorizationErrorReason;
|
|
244
|
+
};
|
|
238
245
|
export type AutomateConcurrencySetting = {
|
|
239
246
|
delay: Scalars["Int"]["output"];
|
|
240
247
|
workers: Scalars["Int"]["output"];
|
|
@@ -623,6 +630,15 @@ export type CertificateUserError = UserError & {
|
|
|
623
630
|
code: Scalars["String"]["output"];
|
|
624
631
|
reason: CertificateErrorReason;
|
|
625
632
|
};
|
|
633
|
+
export declare const CloudErrorReason: {
|
|
634
|
+
readonly Unavailable: "UNAVAILABLE";
|
|
635
|
+
readonly Unexpected: "UNEXPECTED";
|
|
636
|
+
};
|
|
637
|
+
export type CloudErrorReason = (typeof CloudErrorReason)[keyof typeof CloudErrorReason];
|
|
638
|
+
export type CloudUserError = UserError & {
|
|
639
|
+
code: Scalars["String"]["output"];
|
|
640
|
+
reason: CloudErrorReason;
|
|
641
|
+
};
|
|
626
642
|
export type ConnectionInfo = {
|
|
627
643
|
SNI?: Maybe<Scalars["String"]["output"]>;
|
|
628
644
|
host: Scalars["String"]["output"];
|
|
@@ -639,7 +655,7 @@ export type Count = {
|
|
|
639
655
|
snapshot: Scalars["Snapshot"]["output"];
|
|
640
656
|
value: Scalars["Int"]["output"];
|
|
641
657
|
};
|
|
642
|
-
export type CreateAssistantSessionError = OtherUserError | PermissionDeniedUserError;
|
|
658
|
+
export type CreateAssistantSessionError = CloudUserError | OtherUserError | PermissionDeniedUserError;
|
|
643
659
|
export type CreateAssistantSessionInput = {
|
|
644
660
|
modelId: Scalars["ID"]["input"];
|
|
645
661
|
systemMessage?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -654,12 +670,12 @@ export type CreateAutomateSessionInput = {
|
|
|
654
670
|
export type CreateAutomateSessionPayload = {
|
|
655
671
|
session?: Maybe<AutomateSession>;
|
|
656
672
|
};
|
|
657
|
-
export type CreateBackupError = OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
673
|
+
export type CreateBackupError = CloudUserError | OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
658
674
|
export type CreateBackupPayload = {
|
|
659
675
|
error?: Maybe<CreateBackupError>;
|
|
660
676
|
task?: Maybe<BackupTask>;
|
|
661
677
|
};
|
|
662
|
-
export type CreateEnvironmentError = NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
678
|
+
export type CreateEnvironmentError = CloudUserError | NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
663
679
|
export type CreateEnvironmentInput = {
|
|
664
680
|
name: Scalars["String"]["input"];
|
|
665
681
|
variables: Array<EnvironmentVariableInput>;
|
|
@@ -668,7 +684,7 @@ export type CreateEnvironmentPayload = {
|
|
|
668
684
|
environment?: Maybe<Environment>;
|
|
669
685
|
error?: Maybe<CreateEnvironmentError>;
|
|
670
686
|
};
|
|
671
|
-
export type CreateFilterPresetError = AliasTakenUserError | NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
687
|
+
export type CreateFilterPresetError = AliasTakenUserError | CloudUserError | NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
672
688
|
export type CreateFilterPresetInput = {
|
|
673
689
|
alias: Scalars["Alias"]["input"];
|
|
674
690
|
clause: Scalars["HTTPQL"]["input"];
|
|
@@ -696,7 +712,7 @@ export type CreateProjectPayload = {
|
|
|
696
712
|
error?: Maybe<CreateProjectPayloadError>;
|
|
697
713
|
project?: Maybe<Project>;
|
|
698
714
|
};
|
|
699
|
-
export type CreateProjectPayloadError = NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
715
|
+
export type CreateProjectPayloadError = CloudUserError | NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
700
716
|
export type CreateReplaySessionCollectionInput = {
|
|
701
717
|
name: Scalars["String"]["input"];
|
|
702
718
|
};
|
|
@@ -786,7 +802,7 @@ export type CreatedAssistantSessionPayload = {
|
|
|
786
802
|
sessionEdge: AssistantSessionEdge;
|
|
787
803
|
snapshot: Scalars["Snapshot"]["output"];
|
|
788
804
|
};
|
|
789
|
-
export type CreatedAuthenticationTokenError = AuthenticationUserError | OtherUserError;
|
|
805
|
+
export type CreatedAuthenticationTokenError = AuthenticationUserError | InternalUserError | OtherUserError;
|
|
790
806
|
export type CreatedAuthenticationTokenPayload = {
|
|
791
807
|
error?: Maybe<CreatedAuthenticationTokenError>;
|
|
792
808
|
token?: Maybe<AuthenticationToken>;
|
|
@@ -1297,12 +1313,12 @@ export type ImportCertificateInput = {
|
|
|
1297
1313
|
export type ImportCertificatePayload = {
|
|
1298
1314
|
error?: Maybe<ImportCertificateError>;
|
|
1299
1315
|
};
|
|
1300
|
-
export type InstallBrowserError = OtherUserError | UnsupportedPlatformUserError;
|
|
1316
|
+
export type InstallBrowserError = CloudUserError | OtherUserError | UnsupportedPlatformUserError;
|
|
1301
1317
|
export type InstallBrowserPayload = {
|
|
1302
1318
|
browser?: Maybe<Browser>;
|
|
1303
1319
|
error?: Maybe<InstallBrowserError>;
|
|
1304
1320
|
};
|
|
1305
|
-
export type InstallPluginPackageError = OtherUserError | PluginUserError | StoreUserError;
|
|
1321
|
+
export type InstallPluginPackageError = CloudUserError | OtherUserError | PluginUserError | StoreUserError;
|
|
1306
1322
|
export type InstallPluginPackageInput = {
|
|
1307
1323
|
source: PluginPackageSource;
|
|
1308
1324
|
};
|
|
@@ -1436,7 +1452,9 @@ export type LocalizeWorkflowPayload = {
|
|
|
1436
1452
|
error?: Maybe<LocalizeWorkflowError>;
|
|
1437
1453
|
workflow?: Maybe<Workflow>;
|
|
1438
1454
|
};
|
|
1455
|
+
export type LogoutError = CloudUserError | OtherUserError;
|
|
1439
1456
|
export type LogoutPayload = {
|
|
1457
|
+
error?: Maybe<LogoutError>;
|
|
1440
1458
|
success: Scalars["Boolean"]["output"];
|
|
1441
1459
|
};
|
|
1442
1460
|
export type MoveReplaySessionPayload = {
|
|
@@ -2351,7 +2369,7 @@ export type RankUpstreamProxySocksPayload = {
|
|
|
2351
2369
|
export type ReadOnlyUserError = UserError & {
|
|
2352
2370
|
code: Scalars["String"]["output"];
|
|
2353
2371
|
};
|
|
2354
|
-
export type RefreshAuthenticationTokenError = AuthenticationUserError | OtherUserError;
|
|
2372
|
+
export type RefreshAuthenticationTokenError = AuthenticationUserError | CloudUserError | InternalUserError | OtherUserError;
|
|
2355
2373
|
export type RefreshAuthenticationTokenPayload = {
|
|
2356
2374
|
error?: Maybe<RefreshAuthenticationTokenError>;
|
|
2357
2375
|
token?: Maybe<AuthenticationToken>;
|
|
@@ -2761,7 +2779,7 @@ export type SelectProjectPayload = {
|
|
|
2761
2779
|
project?: Maybe<Project>;
|
|
2762
2780
|
};
|
|
2763
2781
|
export type SelectProjectPayloadError = OtherUserError | ProjectUserError | UnknownIdUserError;
|
|
2764
|
-
export type SendAssistantMessageError = OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
2782
|
+
export type SendAssistantMessageError = CloudUserError | OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
2765
2783
|
export type SendAssistantMessagePayload = {
|
|
2766
2784
|
error?: Maybe<SendAssistantMessageError>;
|
|
2767
2785
|
task?: Maybe<AssistantMessageTask>;
|
|
@@ -2847,7 +2865,7 @@ export declare const Source: {
|
|
|
2847
2865
|
readonly Workflow: "WORKFLOW";
|
|
2848
2866
|
};
|
|
2849
2867
|
export type Source = (typeof Source)[keyof typeof Source];
|
|
2850
|
-
export type StartAuthenticationFlowError = AuthenticationUserError | OtherUserError;
|
|
2868
|
+
export type StartAuthenticationFlowError = AuthenticationUserError | CloudUserError | InternalUserError | OtherUserError;
|
|
2851
2869
|
export type StartAuthenticationFlowPayload = {
|
|
2852
2870
|
error?: Maybe<StartAuthenticationFlowError>;
|
|
2853
2871
|
request?: Maybe<AuthenticationRequest>;
|
|
@@ -2866,7 +2884,7 @@ export type StartExportRequestsTaskPayload = {
|
|
|
2866
2884
|
task?: Maybe<DataExportTask>;
|
|
2867
2885
|
};
|
|
2868
2886
|
export type StartExportRequestsTaskPayloadError = OtherUserError | PermissionDeniedUserError;
|
|
2869
|
-
export type StartReplayTaskError = OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
2887
|
+
export type StartReplayTaskError = CloudUserError | OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
2870
2888
|
export type StartReplayTaskInput = {
|
|
2871
2889
|
connection: ConnectionInfoInput;
|
|
2872
2890
|
raw: Scalars["Blob"]["input"];
|
|
@@ -3254,7 +3272,7 @@ export type UnknownIdUserError = UserError & {
|
|
|
3254
3272
|
export type UnsupportedPlatformUserError = UserError & {
|
|
3255
3273
|
code: Scalars["String"]["output"];
|
|
3256
3274
|
};
|
|
3257
|
-
export type UpdateAutomateSessionError = OtherUserError | PermissionDeniedUserError;
|
|
3275
|
+
export type UpdateAutomateSessionError = CloudUserError | OtherUserError | PermissionDeniedUserError;
|
|
3258
3276
|
export type UpdateAutomateSessionInput = {
|
|
3259
3277
|
connection: ConnectionInfoInput;
|
|
3260
3278
|
raw: Scalars["Blob"]["input"];
|
|
@@ -3264,7 +3282,7 @@ export type UpdateAutomateSessionPayload = {
|
|
|
3264
3282
|
error?: Maybe<UpdateAutomateSessionError>;
|
|
3265
3283
|
session?: Maybe<AutomateSession>;
|
|
3266
3284
|
};
|
|
3267
|
-
export type UpdateBrowserError = OtherUserError | RenderFailedUserError | UnsupportedPlatformUserError;
|
|
3285
|
+
export type UpdateBrowserError = CloudUserError | OtherUserError | RenderFailedUserError | UnsupportedPlatformUserError;
|
|
3268
3286
|
export type UpdateBrowserPayload = {
|
|
3269
3287
|
browser?: Maybe<Browser>;
|
|
3270
3288
|
error?: Maybe<UpdateBrowserError>;
|
|
@@ -3669,6 +3687,10 @@ export type AssistantMessageTaskFullFragment = {
|
|
|
3669
3687
|
__typename: "AuthenticationUserError";
|
|
3670
3688
|
reason: AuthenticationErrorReason;
|
|
3671
3689
|
code: string;
|
|
3690
|
+
} | {
|
|
3691
|
+
__typename: "CloudUserError";
|
|
3692
|
+
code: string;
|
|
3693
|
+
cloudReason: CloudErrorReason;
|
|
3672
3694
|
} | {
|
|
3673
3695
|
__typename: "OtherUserError";
|
|
3674
3696
|
code: string;
|
|
@@ -3743,6 +3765,10 @@ export type SendAssistantMessageMutationVariables = Exact<{
|
|
|
3743
3765
|
export type SendAssistantMessageMutation = {
|
|
3744
3766
|
sendAssistantMessage: {
|
|
3745
3767
|
error?: {
|
|
3768
|
+
__typename: "CloudUserError";
|
|
3769
|
+
code: string;
|
|
3770
|
+
cloudReason: CloudErrorReason;
|
|
3771
|
+
} | {
|
|
3746
3772
|
__typename: "OtherUserError";
|
|
3747
3773
|
code: string;
|
|
3748
3774
|
} | {
|
|
@@ -3782,6 +3808,10 @@ export type SendAssistantMessageMutation = {
|
|
|
3782
3808
|
__typename: "AuthenticationUserError";
|
|
3783
3809
|
reason: AuthenticationErrorReason;
|
|
3784
3810
|
code: string;
|
|
3811
|
+
} | {
|
|
3812
|
+
__typename: "CloudUserError";
|
|
3813
|
+
code: string;
|
|
3814
|
+
cloudReason: CloudErrorReason;
|
|
3785
3815
|
} | {
|
|
3786
3816
|
__typename: "OtherUserError";
|
|
3787
3817
|
code: string;
|
|
@@ -3795,6 +3825,10 @@ export type CreateAssistantSessionMutationVariables = Exact<{
|
|
|
3795
3825
|
export type CreateAssistantSessionMutation = {
|
|
3796
3826
|
createAssistantSession: {
|
|
3797
3827
|
error?: {
|
|
3828
|
+
__typename: "CloudUserError";
|
|
3829
|
+
code: string;
|
|
3830
|
+
cloudReason: CloudErrorReason;
|
|
3831
|
+
} | {
|
|
3798
3832
|
__typename: "OtherUserError";
|
|
3799
3833
|
code: string;
|
|
3800
3834
|
} | {
|
|
@@ -3889,6 +3923,10 @@ export type CreatedAssistantMessageTaskSubscription = {
|
|
|
3889
3923
|
__typename: "AuthenticationUserError";
|
|
3890
3924
|
reason: AuthenticationErrorReason;
|
|
3891
3925
|
code: string;
|
|
3926
|
+
} | {
|
|
3927
|
+
__typename: "CloudUserError";
|
|
3928
|
+
code: string;
|
|
3929
|
+
cloudReason: CloudErrorReason;
|
|
3892
3930
|
} | {
|
|
3893
3931
|
__typename: "OtherUserError";
|
|
3894
3932
|
code: string;
|
|
@@ -3929,6 +3967,10 @@ export type UpdatedAssistantMessageTaskSubscription = {
|
|
|
3929
3967
|
__typename: "AuthenticationUserError";
|
|
3930
3968
|
reason: AuthenticationErrorReason;
|
|
3931
3969
|
code: string;
|
|
3970
|
+
} | {
|
|
3971
|
+
__typename: "CloudUserError";
|
|
3972
|
+
code: string;
|
|
3973
|
+
cloudReason: CloudErrorReason;
|
|
3932
3974
|
} | {
|
|
3933
3975
|
__typename: "OtherUserError";
|
|
3934
3976
|
code: string;
|
|
@@ -3977,6 +4019,14 @@ export type StartAuthenticationFlowMutation = {
|
|
|
3977
4019
|
__typename: "AuthenticationUserError";
|
|
3978
4020
|
reason: AuthenticationErrorReason;
|
|
3979
4021
|
code: string;
|
|
4022
|
+
} | {
|
|
4023
|
+
__typename: "CloudUserError";
|
|
4024
|
+
code: string;
|
|
4025
|
+
cloudReason: CloudErrorReason;
|
|
4026
|
+
} | {
|
|
4027
|
+
__typename: "InternalUserError";
|
|
4028
|
+
message: string;
|
|
4029
|
+
code: string;
|
|
3980
4030
|
} | {
|
|
3981
4031
|
__typename: "OtherUserError";
|
|
3982
4032
|
code: string;
|
|
@@ -3995,6 +4045,18 @@ export type RefreshAuthenticationTokenMutation = {
|
|
|
3995
4045
|
refreshToken?: string | undefined | null;
|
|
3996
4046
|
scopes: Array<AuthenticationScope>;
|
|
3997
4047
|
} | undefined | null;
|
|
4048
|
+
error?: {
|
|
4049
|
+
__typename: "AuthenticationUserError";
|
|
4050
|
+
reason: AuthenticationErrorReason;
|
|
4051
|
+
code: string;
|
|
4052
|
+
} | {
|
|
4053
|
+
__typename: "CloudUserError";
|
|
4054
|
+
code: string;
|
|
4055
|
+
cloudReason: CloudErrorReason;
|
|
4056
|
+
} | {
|
|
4057
|
+
__typename: "OtherUserError";
|
|
4058
|
+
code: string;
|
|
4059
|
+
} | {} | undefined | null;
|
|
3998
4060
|
};
|
|
3999
4061
|
};
|
|
4000
4062
|
export type LogoutMutationVariables = Exact<{
|
|
@@ -4003,6 +4065,14 @@ export type LogoutMutationVariables = Exact<{
|
|
|
4003
4065
|
export type LogoutMutation = {
|
|
4004
4066
|
logout: {
|
|
4005
4067
|
success: boolean;
|
|
4068
|
+
error?: {
|
|
4069
|
+
__typename: "CloudUserError";
|
|
4070
|
+
code: string;
|
|
4071
|
+
cloudReason: CloudErrorReason;
|
|
4072
|
+
} | {
|
|
4073
|
+
__typename: "OtherUserError";
|
|
4074
|
+
code: string;
|
|
4075
|
+
} | undefined | null;
|
|
4006
4076
|
};
|
|
4007
4077
|
};
|
|
4008
4078
|
export type CreatedAuthenticationTokenSubscriptionVariables = Exact<{
|
|
@@ -4021,6 +4091,10 @@ export type CreatedAuthenticationTokenSubscription = {
|
|
|
4021
4091
|
__typename: "AuthenticationUserError";
|
|
4022
4092
|
reason: AuthenticationErrorReason;
|
|
4023
4093
|
code: string;
|
|
4094
|
+
} | {
|
|
4095
|
+
__typename: "InternalUserError";
|
|
4096
|
+
message: string;
|
|
4097
|
+
code: string;
|
|
4024
4098
|
} | {
|
|
4025
4099
|
__typename: "OtherUserError";
|
|
4026
4100
|
code: string;
|
|
@@ -5397,6 +5471,18 @@ export type UpdateAutomateSessionMutation = {
|
|
|
5397
5471
|
};
|
|
5398
5472
|
}>;
|
|
5399
5473
|
} | undefined | null;
|
|
5474
|
+
error?: {
|
|
5475
|
+
__typename: "CloudUserError";
|
|
5476
|
+
code: string;
|
|
5477
|
+
cloudReason: CloudErrorReason;
|
|
5478
|
+
} | {
|
|
5479
|
+
__typename: "OtherUserError";
|
|
5480
|
+
code: string;
|
|
5481
|
+
} | {
|
|
5482
|
+
__typename: "PermissionDeniedUserError";
|
|
5483
|
+
code: string;
|
|
5484
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
5485
|
+
} | undefined | null;
|
|
5400
5486
|
};
|
|
5401
5487
|
};
|
|
5402
5488
|
export type CancelAutomateTaskMutationVariables = Exact<{
|
|
@@ -5966,6 +6052,10 @@ export type CreateBackupMutation = {
|
|
|
5966
6052
|
};
|
|
5967
6053
|
} | undefined | null;
|
|
5968
6054
|
error?: {
|
|
6055
|
+
__typename: "CloudUserError";
|
|
6056
|
+
code: string;
|
|
6057
|
+
cloudReason: CloudErrorReason;
|
|
6058
|
+
} | {
|
|
5969
6059
|
__typename: "OtherUserError";
|
|
5970
6060
|
code: string;
|
|
5971
6061
|
} | {
|
|
@@ -6406,6 +6496,10 @@ export type InstallBrowserMutation = {
|
|
|
6406
6496
|
version: string;
|
|
6407
6497
|
} | undefined | null;
|
|
6408
6498
|
error?: {
|
|
6499
|
+
__typename: "CloudUserError";
|
|
6500
|
+
code: string;
|
|
6501
|
+
cloudReason: CloudErrorReason;
|
|
6502
|
+
} | {
|
|
6409
6503
|
__typename: "OtherUserError";
|
|
6410
6504
|
code: string;
|
|
6411
6505
|
} | {
|
|
@@ -6429,6 +6523,10 @@ export type UpdateBrowserMutation = {
|
|
|
6429
6523
|
version: string;
|
|
6430
6524
|
} | undefined | null;
|
|
6431
6525
|
error?: {
|
|
6526
|
+
__typename: "CloudUserError";
|
|
6527
|
+
code: string;
|
|
6528
|
+
cloudReason: CloudErrorReason;
|
|
6529
|
+
} | {
|
|
6432
6530
|
__typename: "OtherUserError";
|
|
6433
6531
|
code: string;
|
|
6434
6532
|
} | {
|
|
@@ -6642,6 +6740,10 @@ export type CreateEnvironmentMutation = {
|
|
|
6642
6740
|
}>;
|
|
6643
6741
|
} | undefined | null;
|
|
6644
6742
|
error?: {
|
|
6743
|
+
__typename: "CloudUserError";
|
|
6744
|
+
code: string;
|
|
6745
|
+
cloudReason: CloudErrorReason;
|
|
6746
|
+
} | {
|
|
6645
6747
|
__typename: "NameTakenUserError";
|
|
6646
6748
|
name: string;
|
|
6647
6749
|
code: string;
|
|
@@ -6895,6 +6997,10 @@ type UserErrorFull_AuthenticationUserError_Fragment = {
|
|
|
6895
6997
|
__typename: "AuthenticationUserError";
|
|
6896
6998
|
code: string;
|
|
6897
6999
|
};
|
|
7000
|
+
type UserErrorFull_AuthorizationUserError_Fragment = {
|
|
7001
|
+
__typename: "AuthorizationUserError";
|
|
7002
|
+
code: string;
|
|
7003
|
+
};
|
|
6898
7004
|
type UserErrorFull_AutomateTaskUserError_Fragment = {
|
|
6899
7005
|
__typename: "AutomateTaskUserError";
|
|
6900
7006
|
code: string;
|
|
@@ -6907,6 +7013,10 @@ type UserErrorFull_CertificateUserError_Fragment = {
|
|
|
6907
7013
|
__typename: "CertificateUserError";
|
|
6908
7014
|
code: string;
|
|
6909
7015
|
};
|
|
7016
|
+
type UserErrorFull_CloudUserError_Fragment = {
|
|
7017
|
+
__typename: "CloudUserError";
|
|
7018
|
+
code: string;
|
|
7019
|
+
};
|
|
6910
7020
|
type UserErrorFull_InternalUserError_Fragment = {
|
|
6911
7021
|
__typename: "InternalUserError";
|
|
6912
7022
|
code: string;
|
|
@@ -6975,7 +7085,7 @@ type UserErrorFull_WorkflowUserError_Fragment = {
|
|
|
6975
7085
|
__typename: "WorkflowUserError";
|
|
6976
7086
|
code: string;
|
|
6977
7087
|
};
|
|
6978
|
-
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_CertificateUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_NewerVersionUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectUserError_Fragment | UserErrorFull_ReadOnlyUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
7088
|
+
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AuthorizationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_CertificateUserError_Fragment | UserErrorFull_CloudUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_NewerVersionUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectUserError_Fragment | UserErrorFull_ReadOnlyUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
6979
7089
|
export type InvalidHttpqlUserErrorFullFragment = {
|
|
6980
7090
|
__typename: "InvalidHTTPQLUserError";
|
|
6981
7091
|
query: string;
|
|
@@ -7001,6 +7111,11 @@ export type CertificateUserErrorFullFragment = {
|
|
|
7001
7111
|
code: string;
|
|
7002
7112
|
certificateReason: CertificateErrorReason;
|
|
7003
7113
|
};
|
|
7114
|
+
export type CloudUserErrorFullFragment = {
|
|
7115
|
+
__typename: "CloudUserError";
|
|
7116
|
+
code: string;
|
|
7117
|
+
cloudReason: CloudErrorReason;
|
|
7118
|
+
};
|
|
7004
7119
|
export type NewerVersionUserErrorFullFragment = {
|
|
7005
7120
|
__typename: "NewerVersionUserError";
|
|
7006
7121
|
version: number;
|
|
@@ -7186,6 +7301,37 @@ export type DataExportTasksQuery = {
|
|
|
7186
7301
|
};
|
|
7187
7302
|
}>;
|
|
7188
7303
|
};
|
|
7304
|
+
export type DataExportStateQueryVariables = Exact<{
|
|
7305
|
+
[key: string]: never;
|
|
7306
|
+
}>;
|
|
7307
|
+
export type DataExportStateQuery = {
|
|
7308
|
+
dataExports: Array<{
|
|
7309
|
+
__typename: "DataExport";
|
|
7310
|
+
id: string;
|
|
7311
|
+
name: string;
|
|
7312
|
+
path: string;
|
|
7313
|
+
size: number;
|
|
7314
|
+
status: DataExportStatus;
|
|
7315
|
+
format: DataExportFormat;
|
|
7316
|
+
error?: string | undefined | null;
|
|
7317
|
+
createdAt: Date;
|
|
7318
|
+
}>;
|
|
7319
|
+
dataExportTasks: Array<{
|
|
7320
|
+
__typename: "DataExportTask";
|
|
7321
|
+
id: string;
|
|
7322
|
+
export: {
|
|
7323
|
+
__typename: "DataExport";
|
|
7324
|
+
id: string;
|
|
7325
|
+
name: string;
|
|
7326
|
+
path: string;
|
|
7327
|
+
size: number;
|
|
7328
|
+
status: DataExportStatus;
|
|
7329
|
+
format: DataExportFormat;
|
|
7330
|
+
error?: string | undefined | null;
|
|
7331
|
+
createdAt: Date;
|
|
7332
|
+
};
|
|
7333
|
+
}>;
|
|
7334
|
+
};
|
|
7189
7335
|
export type CreatedDataExportSubscriptionVariables = Exact<{
|
|
7190
7336
|
[key: string]: never;
|
|
7191
7337
|
}>;
|
|
@@ -7305,6 +7451,10 @@ export type CreateFilterPresetMutation = {
|
|
|
7305
7451
|
__typename: "AliasTakenUserError";
|
|
7306
7452
|
alias: string;
|
|
7307
7453
|
code: string;
|
|
7454
|
+
} | {
|
|
7455
|
+
__typename: "CloudUserError";
|
|
7456
|
+
code: string;
|
|
7457
|
+
cloudReason: CloudErrorReason;
|
|
7308
7458
|
} | {
|
|
7309
7459
|
__typename: "NameTakenUserError";
|
|
7310
7460
|
name: string;
|
|
@@ -9679,6 +9829,10 @@ export type InstallPluginPackageMutation = {
|
|
|
9679
9829
|
} | undefined | null;
|
|
9680
9830
|
} | undefined | null;
|
|
9681
9831
|
error?: {
|
|
9832
|
+
__typename: "CloudUserError";
|
|
9833
|
+
code: string;
|
|
9834
|
+
cloudReason: CloudErrorReason;
|
|
9835
|
+
} | {
|
|
9682
9836
|
__typename: "OtherUserError";
|
|
9683
9837
|
code: string;
|
|
9684
9838
|
} | {
|
|
@@ -10073,6 +10227,10 @@ export type CreateProjectMutation = {
|
|
|
10073
10227
|
}>;
|
|
10074
10228
|
} | undefined | null;
|
|
10075
10229
|
error?: {
|
|
10230
|
+
__typename: "CloudUserError";
|
|
10231
|
+
code: string;
|
|
10232
|
+
cloudReason: CloudErrorReason;
|
|
10233
|
+
} | {
|
|
10076
10234
|
__typename: "NameTakenUserError";
|
|
10077
10235
|
name: string;
|
|
10078
10236
|
code: string;
|
|
@@ -12271,6 +12429,10 @@ export type StartReplayTaskMutation = {
|
|
|
12271
12429
|
};
|
|
12272
12430
|
} | undefined | null;
|
|
12273
12431
|
error?: {
|
|
12432
|
+
__typename: "CloudUserError";
|
|
12433
|
+
code: string;
|
|
12434
|
+
cloudReason: CloudErrorReason;
|
|
12435
|
+
} | {
|
|
12274
12436
|
__typename: "OtherUserError";
|
|
12275
12437
|
code: string;
|
|
12276
12438
|
} | {
|
|
@@ -14523,6 +14685,10 @@ export type FinishedTaskSubscription = {
|
|
|
14523
14685
|
code: string;
|
|
14524
14686
|
} | {
|
|
14525
14687
|
code: string;
|
|
14688
|
+
} | {
|
|
14689
|
+
code: string;
|
|
14690
|
+
} | {
|
|
14691
|
+
code: string;
|
|
14526
14692
|
} | undefined | null;
|
|
14527
14693
|
};
|
|
14528
14694
|
};
|
|
@@ -15414,7 +15580,8 @@ export declare const UserErrorFullFragmentDoc = "\n fragment userErrorFull on
|
|
|
15414
15580
|
export declare const AssistantUserErrorFullFragmentDoc = "\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n ";
|
|
15415
15581
|
export declare const AuthenticationUserErrorFullFragmentDoc = "\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
15416
15582
|
export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15417
|
-
export declare const
|
|
15583
|
+
export declare const CloudUserErrorFullFragmentDoc = "\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15584
|
+
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 ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n ";
|
|
15418
15585
|
export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
15419
15586
|
export declare const AuthenticationRequestFullFragmentDoc = "\n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n ";
|
|
15420
15587
|
export declare const AuthenticationTokenFullFragmentDoc = "\n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
|
|
@@ -15556,18 +15723,18 @@ export declare const AssistantModelsDocument = "\n query assistantModels {\n
|
|
|
15556
15723
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
15557
15724
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
15558
15725
|
export declare const AssistantUsageDocument = "\n query assistantUsage {\n viewer {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
15559
|
-
export declare const SendAssistantMessageDocument = "\n mutation sendAssistantMessage($sessionId: ID!, $message: String) {\n sendAssistantMessage(sessionId: $sessionId, message: $message) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
15560
|
-
export declare const CreateAssistantSessionDocument = "\n mutation createAssistantSession($input: CreateAssistantSessionInput!) {\n createAssistantSession(input: $input) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
15726
|
+
export declare const SendAssistantMessageDocument = "\n mutation sendAssistantMessage($sessionId: ID!, $message: String) {\n sendAssistantMessage(sessionId: $sessionId, message: $message) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
15727
|
+
export declare const CreateAssistantSessionDocument = "\n mutation createAssistantSession($input: CreateAssistantSessionInput!) {\n createAssistantSession(input: $input) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
15561
15728
|
export declare const DeleteAssistantSessionDocument = "\n mutation deleteAssistantSession($id: ID!) {\n deleteAssistantSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
15562
15729
|
export declare const RenameAssistantSessionDocument = "\n mutation renameAssistantSession($id: ID!, $name: String!) {\n renameAssistantSession(id: $id, name: $name) {\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
15563
15730
|
export declare const CreatedAssistantMessageDocument = "\n subscription createdAssistantMessage {\n createdAssistantMessage {\n messageEdge {\n cursor\n node {\n ...assistantMessageFull\n }\n }\n snapshot\n }\n}\n \n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
15564
|
-
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 ";
|
|
15565
|
-
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 ";
|
|
15731
|
+
export declare const CreatedAssistantMessageTaskDocument = "\n subscription createdAssistantMessageTask {\n createdAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15732
|
+
export declare const UpdatedAssistantMessageTaskDocument = "\n subscription updatedAssistantMessageTask {\n updatedAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15566
15733
|
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 ";
|
|
15567
|
-
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 ";
|
|
15568
|
-
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 ";
|
|
15569
|
-
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
|
|
15570
|
-
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 ";
|
|
15734
|
+
export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15735
|
+
export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15736
|
+
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15737
|
+
export declare const CreatedAuthenticationTokenDocument = "\n subscription createdAuthenticationToken($requestId: ID!) {\n createdAuthenticationToken(requestId: $requestId) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15571
15738
|
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 ";
|
|
15572
15739
|
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
15573
15740
|
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
@@ -15580,7 +15747,7 @@ export declare const RenameAutomateEntryDocument = "\n mutation renameAutomat
|
|
|
15580
15747
|
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15581
15748
|
export declare const DeleteAutomateSessionDocument = "\n mutation deleteAutomateSession($id: ID!) {\n deleteAutomateSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
15582
15749
|
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15583
|
-
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15750
|
+
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
15584
15751
|
export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomateTask($id: ID!) {\n cancelAutomateTask(id: $id) {\n cancelledId\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15585
15752
|
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 ";
|
|
15586
15753
|
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 ";
|
|
@@ -15599,7 +15766,7 @@ export declare const BackupsDocument = "\n query backups {\n backups {\n
|
|
|
15599
15766
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
15600
15767
|
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 ";
|
|
15601
15768
|
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
15602
|
-
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 ";
|
|
15769
|
+
export declare const CreateBackupDocument = "\n mutation createBackup($id: ID!) {\n createBackup(projectId: $id) {\n task {\n ...backupTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15603
15770
|
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 ";
|
|
15604
15771
|
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 ";
|
|
15605
15772
|
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
@@ -15615,8 +15782,8 @@ export declare const StartedRestoreBackupTaskDocument = "\n subscription star
|
|
|
15615
15782
|
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedRestoreBackupTaskErrorFull on FinishedRestoreBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
15616
15783
|
export declare const BrowserDocument = "\n query browser {\n browser {\n ...browserFull\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
15617
15784
|
export declare const DeleteBrowserDocument = "\n mutation deleteBrowser {\n deleteBrowser {\n deletedId\n }\n}\n ";
|
|
15618
|
-
export declare const InstallBrowserDocument = "\n mutation installBrowser {\n installBrowser {\n browser {\n ...browserFull\n }\n error {\n ... on UnsupportedPlatformUserError {\n ...unsupportedPlatformUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n \n\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15619
|
-
export declare const UpdateBrowserDocument = "\n mutation updateBrowser {\n updateBrowser {\n browser {\n ...browserFull\n }\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on UnsupportedPlatformUserError {\n ...unsupportedPlatformUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n \n\n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15785
|
+
export declare const InstallBrowserDocument = "\n mutation installBrowser {\n installBrowser {\n browser {\n ...browserFull\n }\n error {\n ... on UnsupportedPlatformUserError {\n ...unsupportedPlatformUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n \n\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15786
|
+
export declare const UpdateBrowserDocument = "\n mutation updateBrowser {\n updateBrowser {\n browser {\n ...browserFull\n }\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on UnsupportedPlatformUserError {\n ...unsupportedPlatformUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n \n\n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15620
15787
|
export declare const DeletedBrowserDocument = "\n subscription deletedBrowser {\n deletedBrowser {\n deletedBrowserId\n }\n}\n ";
|
|
15621
15788
|
export declare const InstalledBrowserDocument = "\n subscription installedBrowser {\n installedBrowser {\n browser {\n ...browserFull\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
15622
15789
|
export declare const UpdatedBrowserDocument = "\n subscription updatedBrowser {\n updatedBrowser {\n browser {\n ...browserFull\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
@@ -15625,7 +15792,7 @@ export declare const GlobalConfigDocument = "\n query globalConfig {\n globa
|
|
|
15625
15792
|
export declare const EnvironmentDocument = "\n query environment($id: ID!) {\n environment(id: $id) {\n ...environmentFull\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15626
15793
|
export declare const EnvironmentsDocument = "\n query environments {\n environments {\n ...environmentMeta\n }\n}\n \n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15627
15794
|
export declare const EnvironmentContextDocument = "\n query environmentContext {\n environmentContext {\n ...environmentContextFull\n }\n}\n \n fragment environmentContextFull on EnvironmentContext {\n global {\n ...environmentFull\n }\n selected {\n ...environmentFull\n }\n}\n \n\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15628
|
-
export declare const CreateEnvironmentDocument = "\n mutation createEnvironment($input: CreateEnvironmentInput!) {\n createEnvironment(input: $input) {\n environment {\n ...environmentFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
15795
|
+
export declare const CreateEnvironmentDocument = "\n mutation createEnvironment($input: CreateEnvironmentInput!) {\n createEnvironment(input: $input) {\n environment {\n ...environmentFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15629
15796
|
export declare const UpdateEnvironmentDocument = "\n mutation updateEnvironment($id: ID!, $input: UpdateEnvironmentInput!) {\n updateEnvironment(id: $id, input: $input) {\n environment {\n ...environmentFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on NewerVersionUserError {\n ...newerVersionUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\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 nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
15630
15797
|
export declare const DeleteEnvironmentDocument = "\n mutation deleteEnvironment($id: ID!) {\n deleteEnvironment(id: $id) {\n deletedId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15631
15798
|
export declare const SelectEnvironmentDocument = "\n mutation selectEnvironment($id: ID) {\n selectEnvironment(id: $id) {\n environment {\n ...environmentFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\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 ";
|
|
@@ -15639,12 +15806,13 @@ export declare const CancelDataExportTaskDocument = "\n mutation cancelDataEx
|
|
|
15639
15806
|
export declare const DataExportsDocument = "\n query dataExports {\n dataExports {\n ...dataExportMeta\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15640
15807
|
export declare const DataExportDocument = "\n query dataExport($id: ID!) {\n dataExport(id: $id) {\n ...dataExportFull\n }\n}\n \n fragment dataExportFull on DataExport {\n ...dataExportFullFields\n}\n \n\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15641
15808
|
export declare const DataExportTasksDocument = "\n query dataExportTasks {\n dataExportTasks {\n ...dataExportTaskMeta\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15809
|
+
export declare const DataExportStateDocument = "\n query dataExportState {\n dataExports {\n ...dataExportMeta\n }\n dataExportTasks {\n ...dataExportTaskMeta\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n ";
|
|
15642
15810
|
export declare const CreatedDataExportDocument = "\n subscription createdDataExport {\n createdDataExport {\n dataExportEdge {\n cursor\n node {\n ...dataExportMeta\n }\n }\n snapshot\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15643
15811
|
export declare const UpdatedDataExportDocument = "\n subscription updatedDataExport {\n updatedDataExport {\n dataExportEdge {\n cursor\n node {\n ...dataExportMeta\n }\n }\n snapshot\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15644
15812
|
export declare const DeletedDataExportDocument = "\n subscription deletedDataExport {\n deletedDataExport {\n deletedDataExportId\n snapshot\n }\n}\n ";
|
|
15645
15813
|
export declare const CreatedDataExportTaskDocument = "\n subscription createdDataExportTask {\n createdDataExportTask {\n exportTaskEdge {\n cursor\n node {\n ...dataExportTaskMeta\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15646
15814
|
export declare const DeletedDataExportTaskDocument = "\n subscription deletedDataExportTask {\n deletedDataExportTask {\n deletedExportTaskId\n }\n}\n ";
|
|
15647
|
-
export declare const CreateFilterPresetDocument = "\n mutation createFilterPreset($input: CreateFilterPresetInput!) {\n createFilterPreset(input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\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 ";
|
|
15815
|
+
export declare const CreateFilterPresetDocument = "\n mutation createFilterPreset($input: CreateFilterPresetInput!) {\n createFilterPreset(input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15648
15816
|
export declare const UpdateFilterPresetDocument = "\n mutation updateFilterPreset($id: ID!, $input: UpdateFilterPresetInput!) {\n updateFilterPreset(id: $id, input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15649
15817
|
export declare const DeleteFilterPresetDocument = "\n mutation deleteFilterPreset($id: ID!) {\n deleteFilterPreset(id: $id) {\n deletedId\n }\n}\n ";
|
|
15650
15818
|
export declare const FilterPresetsDocument = "\n query filterPresets {\n filterPresets {\n ...filterPresetFull\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
@@ -15703,7 +15871,7 @@ export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id
|
|
|
15703
15871
|
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n ";
|
|
15704
15872
|
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
15705
15873
|
export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
15706
|
-
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
|
|
15874
|
+
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15707
15875
|
export declare const UninstallPluginPackageDocument = "\n mutation uninstallPluginPackage($id: ID!) {\n uninstallPluginPackage(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
15708
15876
|
export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
15709
15877
|
export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
@@ -15714,7 +15882,7 @@ export declare const CreatedPluginEventDocument = "\n subscription createdPlu
|
|
|
15714
15882
|
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
15715
15883
|
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
15716
15884
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
15717
|
-
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15885
|
+
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15718
15886
|
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n project {\n ...projectFull\n }\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15719
15887
|
export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15720
15888
|
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
@@ -15733,7 +15901,7 @@ export declare const SetActiveReplaySessionEntryDocument = "\n mutation setAc
|
|
|
15733
15901
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
15734
15902
|
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
15735
15903
|
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15736
|
-
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15904
|
+
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15737
15905
|
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15738
15906
|
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15739
15907
|
export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
|
|
@@ -15906,6 +16074,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
15906
16074
|
dataExports(variables?: DataExportsQueryVariables, options?: C): Promise<DataExportsQuery>;
|
|
15907
16075
|
dataExport(variables: DataExportQueryVariables, options?: C): Promise<DataExportQuery>;
|
|
15908
16076
|
dataExportTasks(variables?: DataExportTasksQueryVariables, options?: C): Promise<DataExportTasksQuery>;
|
|
16077
|
+
dataExportState(variables?: DataExportStateQueryVariables, options?: C): Promise<DataExportStateQuery>;
|
|
15909
16078
|
createdDataExport(variables?: CreatedDataExportSubscriptionVariables, options?: C): AsyncIterable<CreatedDataExportSubscription>;
|
|
15910
16079
|
updatedDataExport(variables?: UpdatedDataExportSubscriptionVariables, options?: C): AsyncIterable<UpdatedDataExportSubscription>;
|
|
15911
16080
|
deletedDataExport(variables?: DeletedDataExportSubscriptionVariables, options?: C): AsyncIterable<DeletedDataExportSubscription>;
|