@caido/sdk-frontend 0.51.2-beta.1 → 0.51.2-beta.3
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
|
@@ -2394,6 +2394,7 @@ export type Project = {
|
|
|
2394
2394
|
id: Scalars["ID"]["output"];
|
|
2395
2395
|
name: Scalars["String"]["output"];
|
|
2396
2396
|
path: Scalars["String"]["output"];
|
|
2397
|
+
readOnly: Scalars["Boolean"]["output"];
|
|
2397
2398
|
size: Scalars["Int"]["output"];
|
|
2398
2399
|
status: ProjectStatus;
|
|
2399
2400
|
temporary: Scalars["Boolean"]["output"];
|
|
@@ -2859,6 +2860,7 @@ export type ReplayEntrySettings = {
|
|
|
2859
2860
|
placeholders: Array<ReplayPlaceholder>;
|
|
2860
2861
|
};
|
|
2861
2862
|
export type ReplayEntrySettingsInput = {
|
|
2863
|
+
connectionClose: Scalars["Boolean"]["input"];
|
|
2862
2864
|
placeholders: Array<ReplayPlaceholderInput>;
|
|
2863
2865
|
updateContentLength: Scalars["Boolean"]["input"];
|
|
2864
2866
|
};
|
|
@@ -6856,6 +6858,7 @@ export type RestoreBackupTaskMetaFragment = {
|
|
|
6856
6858
|
size: number;
|
|
6857
6859
|
createdAt: Date;
|
|
6858
6860
|
updatedAt: Date;
|
|
6861
|
+
readOnly: boolean;
|
|
6859
6862
|
backups: Array<{
|
|
6860
6863
|
id: string;
|
|
6861
6864
|
}>;
|
|
@@ -6930,6 +6933,7 @@ export type FinishedRestoreBackupTaskSuccessFullFragment = {
|
|
|
6930
6933
|
size: number;
|
|
6931
6934
|
createdAt: Date;
|
|
6932
6935
|
updatedAt: Date;
|
|
6936
|
+
readOnly: boolean;
|
|
6933
6937
|
backups: Array<{
|
|
6934
6938
|
id: string;
|
|
6935
6939
|
}>;
|
|
@@ -7035,6 +7039,7 @@ export type RestoreBackupTasksQuery = {
|
|
|
7035
7039
|
size: number;
|
|
7036
7040
|
createdAt: Date;
|
|
7037
7041
|
updatedAt: Date;
|
|
7042
|
+
readOnly: boolean;
|
|
7038
7043
|
backups: Array<{
|
|
7039
7044
|
id: string;
|
|
7040
7045
|
}>;
|
|
@@ -7163,6 +7168,7 @@ export type RestoreBackupFromFileMutation = {
|
|
|
7163
7168
|
size: number;
|
|
7164
7169
|
createdAt: Date;
|
|
7165
7170
|
updatedAt: Date;
|
|
7171
|
+
readOnly: boolean;
|
|
7166
7172
|
backups: Array<{
|
|
7167
7173
|
id: string;
|
|
7168
7174
|
}>;
|
|
@@ -7215,6 +7221,7 @@ export type RestoreBackupMutation = {
|
|
|
7215
7221
|
size: number;
|
|
7216
7222
|
createdAt: Date;
|
|
7217
7223
|
updatedAt: Date;
|
|
7224
|
+
readOnly: boolean;
|
|
7218
7225
|
backups: Array<{
|
|
7219
7226
|
id: string;
|
|
7220
7227
|
}>;
|
|
@@ -7401,6 +7408,7 @@ export type StartedRestoreBackupTaskSubscription = {
|
|
|
7401
7408
|
size: number;
|
|
7402
7409
|
createdAt: Date;
|
|
7403
7410
|
updatedAt: Date;
|
|
7411
|
+
readOnly: boolean;
|
|
7404
7412
|
backups: Array<{
|
|
7405
7413
|
id: string;
|
|
7406
7414
|
}>;
|
|
@@ -7459,6 +7467,7 @@ export type FinishedRetoreBackupTaskSubscription = {
|
|
|
7459
7467
|
size: number;
|
|
7460
7468
|
createdAt: Date;
|
|
7461
7469
|
updatedAt: Date;
|
|
7470
|
+
readOnly: boolean;
|
|
7462
7471
|
backups: Array<{
|
|
7463
7472
|
id: string;
|
|
7464
7473
|
}>;
|
|
@@ -15870,6 +15879,7 @@ export type ProjectFullFragment = {
|
|
|
15870
15879
|
size: number;
|
|
15871
15880
|
createdAt: Date;
|
|
15872
15881
|
updatedAt: Date;
|
|
15882
|
+
readOnly: boolean;
|
|
15873
15883
|
backups: Array<{
|
|
15874
15884
|
id: string;
|
|
15875
15885
|
}>;
|
|
@@ -15886,6 +15896,7 @@ export type CurrentProjectFullFragment = {
|
|
|
15886
15896
|
size: number;
|
|
15887
15897
|
createdAt: Date;
|
|
15888
15898
|
updatedAt: Date;
|
|
15899
|
+
readOnly: boolean;
|
|
15889
15900
|
backups: Array<{
|
|
15890
15901
|
id: string;
|
|
15891
15902
|
}>;
|
|
@@ -15912,6 +15923,7 @@ export type CreatedProjectSubscription = {
|
|
|
15912
15923
|
size: number;
|
|
15913
15924
|
createdAt: Date;
|
|
15914
15925
|
updatedAt: Date;
|
|
15926
|
+
readOnly: boolean;
|
|
15915
15927
|
backups: Array<{
|
|
15916
15928
|
id: string;
|
|
15917
15929
|
}>;
|
|
@@ -15934,6 +15946,7 @@ export type UpdatedProjectSubscription = {
|
|
|
15934
15946
|
size: number;
|
|
15935
15947
|
createdAt: Date;
|
|
15936
15948
|
updatedAt: Date;
|
|
15949
|
+
readOnly: boolean;
|
|
15937
15950
|
backups: Array<{
|
|
15938
15951
|
id: string;
|
|
15939
15952
|
}>;
|
|
@@ -15964,6 +15977,7 @@ export type CreateProjectMutation = {
|
|
|
15964
15977
|
size: number;
|
|
15965
15978
|
createdAt: Date;
|
|
15966
15979
|
updatedAt: Date;
|
|
15980
|
+
readOnly: boolean;
|
|
15967
15981
|
backups: Array<{
|
|
15968
15982
|
id: string;
|
|
15969
15983
|
}>;
|
|
@@ -16003,6 +16017,7 @@ export type SelectProjectMutation = {
|
|
|
16003
16017
|
size: number;
|
|
16004
16018
|
createdAt: Date;
|
|
16005
16019
|
updatedAt: Date;
|
|
16020
|
+
readOnly: boolean;
|
|
16006
16021
|
backups: Array<{
|
|
16007
16022
|
id: string;
|
|
16008
16023
|
}>;
|
|
@@ -16064,6 +16079,7 @@ export type RenameProjectMutation = {
|
|
|
16064
16079
|
size: number;
|
|
16065
16080
|
createdAt: Date;
|
|
16066
16081
|
updatedAt: Date;
|
|
16082
|
+
readOnly: boolean;
|
|
16067
16083
|
backups: Array<{
|
|
16068
16084
|
id: string;
|
|
16069
16085
|
}>;
|
|
@@ -16098,6 +16114,7 @@ export type PersistProjectMutation = {
|
|
|
16098
16114
|
size: number;
|
|
16099
16115
|
createdAt: Date;
|
|
16100
16116
|
updatedAt: Date;
|
|
16117
|
+
readOnly: boolean;
|
|
16101
16118
|
backups: Array<{
|
|
16102
16119
|
id: string;
|
|
16103
16120
|
}>;
|
|
@@ -16132,6 +16149,7 @@ export type CurrentProjectQuery = {
|
|
|
16132
16149
|
size: number;
|
|
16133
16150
|
createdAt: Date;
|
|
16134
16151
|
updatedAt: Date;
|
|
16152
|
+
readOnly: boolean;
|
|
16135
16153
|
backups: Array<{
|
|
16136
16154
|
id: string;
|
|
16137
16155
|
}>;
|
|
@@ -16158,6 +16176,7 @@ export type ProjectsQuery = {
|
|
|
16158
16176
|
size: number;
|
|
16159
16177
|
createdAt: Date;
|
|
16160
16178
|
updatedAt: Date;
|
|
16179
|
+
readOnly: boolean;
|
|
16161
16180
|
backups: Array<{
|
|
16162
16181
|
id: string;
|
|
16163
16182
|
}>;
|
|
@@ -22257,7 +22276,7 @@ export declare const FinishedBackupTaskCancelledFullFragmentDoc = "\n fragmen
|
|
|
22257
22276
|
export declare const InternalUserErrorFullFragmentDoc = "\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n ";
|
|
22258
22277
|
export declare const BackupUserErrorFullFragmentDoc = "\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22259
22278
|
export declare const FinishedBackupTaskErrorFullFragmentDoc = "\n fragment finishedBackupTaskErrorFull on FinishedBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n ";
|
|
22260
|
-
export declare const ProjectFullFragmentDoc = "\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22279
|
+
export declare const ProjectFullFragmentDoc = "\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22261
22280
|
export declare const RestoreBackupTaskMetaFragmentDoc = "\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n ";
|
|
22262
22281
|
export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n ";
|
|
22263
22282
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
@@ -22448,12 +22467,12 @@ export declare const DeletedAutomateSessionDocument = "\n subscription delete
|
|
|
22448
22467
|
export declare const BackupsDocument = "\n query backups {\n backups {\n ...backupMeta\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
22449
22468
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
22450
22469
|
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 ";
|
|
22451
|
-
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22470
|
+
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22452
22471
|
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 ";
|
|
22453
22472
|
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 ";
|
|
22454
22473
|
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 ";
|
|
22455
|
-
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22456
|
-
export declare const RestoreBackupDocument = "\n mutation restoreBackup($name: String!, $id: ID!) {\n restoreBackup(input: {name: $name, source: {backupId: $id}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22474
|
+
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22475
|
+
export declare const RestoreBackupDocument = "\n mutation restoreBackup($name: String!, $id: ID!) {\n restoreBackup(input: {name: $name, source: {backupId: $id}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22457
22476
|
export declare const CancelBackupTaskDocument = "\n mutation cancelBackupTask($id: ID!) {\n cancelBackupTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22458
22477
|
export declare const CancelRestoreBackupTaskDocument = "\n mutation cancelRestoreBackupTask($id: ID!) {\n cancelRestoreBackupTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22459
22478
|
export declare const CreatedBackupDocument = "\n subscription createdBackup {\n createdBackup {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
@@ -22461,8 +22480,8 @@ export declare const UpdatedBackupDocument = "\n subscription updatedBackup {
|
|
|
22461
22480
|
export declare const DeletedBackupDocument = "\n subscription deletedBackup {\n deletedBackup {\n deletedBackupId\n }\n}\n ";
|
|
22462
22481
|
export declare const StartedBackupTaskDocument = "\n subscription startedBackupTask {\n startedBackupTask {\n task {\n ...backupTaskMeta\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
22463
22482
|
export declare const FinishedBackupTaskDocument = "\n subscription finishedBackupTask {\n finishedBackupTask {\n ... on FinishedBackupTaskSuccess {\n ...finishedBackupTaskSuccessFull\n }\n ... on FinishedBackupTaskCancelled {\n ...finishedBackupTaskCancelledFull\n }\n ... on FinishedBackupTaskError {\n ...finishedBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedBackupTaskSuccessFull on FinishedBackupTaskSuccess {\n __typename\n task {\n ...backupTaskMeta\n }\n}\n \n\n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment finishedBackupTaskCancelledFull on FinishedBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedBackupTaskErrorFull on FinishedBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22464
|
-
export declare const StartedRestoreBackupTaskDocument = "\n subscription startedRestoreBackupTask {\n startedRestoreBackupTask {\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22465
|
-
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedRestoreBackupTaskErrorFull on FinishedRestoreBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22483
|
+
export declare const StartedRestoreBackupTaskDocument = "\n subscription startedRestoreBackupTask {\n startedRestoreBackupTask {\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22484
|
+
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\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 ";
|
|
22466
22485
|
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 ";
|
|
22467
22486
|
export declare const DeleteBrowserDocument = "\n mutation deleteBrowser {\n deleteBrowser {\n deletedId\n }\n}\n ";
|
|
22468
22487
|
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 ";
|
|
@@ -22585,16 +22604,16 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
22585
22604
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
22586
22605
|
export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
22587
22606
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
22588
|
-
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22589
|
-
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22607
|
+
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22608
|
+
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22590
22609
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
22591
|
-
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
22592
|
-
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n currentProject {\n ...currentProjectFull\n }\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n \n\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22610
|
+
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\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 ";
|
|
22611
|
+
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n currentProject {\n ...currentProjectFull\n }\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n \n\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22593
22612
|
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 ";
|
|
22594
|
-
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22595
|
-
export declare const PersistProjectDocument = "\n mutation persistProject($id: ID!) {\n persistProject(id: $id) {\n project {\n ...projectFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22596
|
-
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...currentProjectFull\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22597
|
-
export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22613
|
+
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22614
|
+
export declare const PersistProjectDocument = "\n mutation persistProject($id: ID!) {\n persistProject(id: $id) {\n project {\n ...projectFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22615
|
+
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...currentProjectFull\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22616
|
+
export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22598
22617
|
export declare const SetProjectConfigStreamDocument = "\n mutation setProjectConfigStream($input: ProjectConfigStreamInput!) {\n setProjectConfigStream(input: $input) {\n config {\n ...projectConfigStreamFull\n }\n }\n}\n \n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22599
22618
|
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
22600
22619
|
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
@@ -117,6 +117,11 @@ export type SendRequestOptions = {
|
|
|
117
117
|
* Defaults to true.
|
|
118
118
|
*/
|
|
119
119
|
updateContentLength?: boolean;
|
|
120
|
+
/**
|
|
121
|
+
* Whether to force close the connection by setting Connection: close header.
|
|
122
|
+
* Defaults to true.
|
|
123
|
+
*/
|
|
124
|
+
connectionClose?: boolean;
|
|
120
125
|
/**
|
|
121
126
|
* Whether to overwrite the editor's draft content.
|
|
122
127
|
* If true, draft content will be overwritten with the new request.
|