@caido/sdk-frontend 0.47.2-beta.7 → 0.47.2-beta.9
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
|
@@ -745,6 +745,7 @@ export type CreateFindingPayload = {
|
|
|
745
745
|
};
|
|
746
746
|
export type CreateProjectInput = {
|
|
747
747
|
name: Scalars["String"]["input"];
|
|
748
|
+
temporary: Scalars["Boolean"]["input"];
|
|
748
749
|
};
|
|
749
750
|
export type CreateProjectPayload = {
|
|
750
751
|
error?: Maybe<CreateProjectPayloadError>;
|
|
@@ -1677,6 +1678,7 @@ export type MutationRoot = {
|
|
|
1677
1678
|
moveTamperRule: MoveTamperRulePayload;
|
|
1678
1679
|
pauseAutomateTask: PauseAutomateTaskPayload;
|
|
1679
1680
|
pauseIntercept: PauseInterceptPayload;
|
|
1681
|
+
persistProject: PersistProjectPayload;
|
|
1680
1682
|
rankDnsRewrite: RankDnsRewritePayload;
|
|
1681
1683
|
rankTamperRule: RankTamperRulePayload;
|
|
1682
1684
|
rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
|
|
@@ -1918,6 +1920,9 @@ export type MutationRootMoveTamperRuleArgs = {
|
|
|
1918
1920
|
export type MutationRootPauseAutomateTaskArgs = {
|
|
1919
1921
|
id: Scalars["ID"]["input"];
|
|
1920
1922
|
};
|
|
1923
|
+
export type MutationRootPersistProjectArgs = {
|
|
1924
|
+
id: Scalars["ID"]["input"];
|
|
1925
|
+
};
|
|
1921
1926
|
export type MutationRootRankDnsRewriteArgs = {
|
|
1922
1927
|
id: Scalars["ID"]["input"];
|
|
1923
1928
|
input: RankInput;
|
|
@@ -2194,6 +2199,11 @@ export type PermissionDeniedUserError = UserError & {
|
|
|
2194
2199
|
code: Scalars["String"]["output"];
|
|
2195
2200
|
reason: PermissionDeniedErrorReason;
|
|
2196
2201
|
};
|
|
2202
|
+
export type PersistProjectPayload = {
|
|
2203
|
+
error?: Maybe<PersistProjectPayloadError>;
|
|
2204
|
+
project?: Maybe<Project>;
|
|
2205
|
+
};
|
|
2206
|
+
export type PersistProjectPayloadError = OtherUserError | PermissionDeniedUserError | UnknownIdUserError;
|
|
2197
2207
|
export type Plugin = {
|
|
2198
2208
|
enabled: Scalars["Boolean"]["output"];
|
|
2199
2209
|
id: Scalars["ID"]["output"];
|
|
@@ -2284,6 +2294,7 @@ export type Project = {
|
|
|
2284
2294
|
path: Scalars["String"]["output"];
|
|
2285
2295
|
size: Scalars["Int"]["output"];
|
|
2286
2296
|
status: ProjectStatus;
|
|
2297
|
+
temporary: Scalars["Boolean"]["output"];
|
|
2287
2298
|
updatedAt: Scalars["DateTime"]["output"];
|
|
2288
2299
|
version: Scalars["String"]["output"];
|
|
2289
2300
|
};
|
|
@@ -2652,7 +2663,7 @@ export type RenameProjectPayload = {
|
|
|
2652
2663
|
error?: Maybe<RenameProjectPayloadError>;
|
|
2653
2664
|
project?: Maybe<Project>;
|
|
2654
2665
|
};
|
|
2655
|
-
export type RenameProjectPayloadError = NameTakenUserError | OtherUserError;
|
|
2666
|
+
export type RenameProjectPayloadError = NameTakenUserError | OtherUserError | UnknownIdUserError;
|
|
2656
2667
|
export type RenameReplaySessionCollectionPayload = {
|
|
2657
2668
|
collection?: Maybe<ReplaySessionCollection>;
|
|
2658
2669
|
};
|
|
@@ -6633,6 +6644,7 @@ export type RestoreBackupTaskMetaFragment = {
|
|
|
6633
6644
|
path: string;
|
|
6634
6645
|
version: string;
|
|
6635
6646
|
status: ProjectStatus;
|
|
6647
|
+
temporary: boolean;
|
|
6636
6648
|
size: number;
|
|
6637
6649
|
createdAt: Date;
|
|
6638
6650
|
updatedAt: Date;
|
|
@@ -6706,6 +6718,7 @@ export type FinishedRestoreBackupTaskSuccessFullFragment = {
|
|
|
6706
6718
|
path: string;
|
|
6707
6719
|
version: string;
|
|
6708
6720
|
status: ProjectStatus;
|
|
6721
|
+
temporary: boolean;
|
|
6709
6722
|
size: number;
|
|
6710
6723
|
createdAt: Date;
|
|
6711
6724
|
updatedAt: Date;
|
|
@@ -6810,6 +6823,7 @@ export type RestoreBackupTasksQuery = {
|
|
|
6810
6823
|
path: string;
|
|
6811
6824
|
version: string;
|
|
6812
6825
|
status: ProjectStatus;
|
|
6826
|
+
temporary: boolean;
|
|
6813
6827
|
size: number;
|
|
6814
6828
|
createdAt: Date;
|
|
6815
6829
|
updatedAt: Date;
|
|
@@ -6937,6 +6951,7 @@ export type RestoreBackupFromFileMutation = {
|
|
|
6937
6951
|
path: string;
|
|
6938
6952
|
version: string;
|
|
6939
6953
|
status: ProjectStatus;
|
|
6954
|
+
temporary: boolean;
|
|
6940
6955
|
size: number;
|
|
6941
6956
|
createdAt: Date;
|
|
6942
6957
|
updatedAt: Date;
|
|
@@ -6988,6 +7003,7 @@ export type RestoreBackupMutation = {
|
|
|
6988
7003
|
path: string;
|
|
6989
7004
|
version: string;
|
|
6990
7005
|
status: ProjectStatus;
|
|
7006
|
+
temporary: boolean;
|
|
6991
7007
|
size: number;
|
|
6992
7008
|
createdAt: Date;
|
|
6993
7009
|
updatedAt: Date;
|
|
@@ -7173,6 +7189,7 @@ export type StartedRestoreBackupTaskSubscription = {
|
|
|
7173
7189
|
path: string;
|
|
7174
7190
|
version: string;
|
|
7175
7191
|
status: ProjectStatus;
|
|
7192
|
+
temporary: boolean;
|
|
7176
7193
|
size: number;
|
|
7177
7194
|
createdAt: Date;
|
|
7178
7195
|
updatedAt: Date;
|
|
@@ -7230,6 +7247,7 @@ export type FinishedRetoreBackupTaskSubscription = {
|
|
|
7230
7247
|
path: string;
|
|
7231
7248
|
version: string;
|
|
7232
7249
|
status: ProjectStatus;
|
|
7250
|
+
temporary: boolean;
|
|
7233
7251
|
size: number;
|
|
7234
7252
|
createdAt: Date;
|
|
7235
7253
|
updatedAt: Date;
|
|
@@ -15421,6 +15439,7 @@ export type ProjectFullFragment = {
|
|
|
15421
15439
|
path: string;
|
|
15422
15440
|
version: string;
|
|
15423
15441
|
status: ProjectStatus;
|
|
15442
|
+
temporary: boolean;
|
|
15424
15443
|
size: number;
|
|
15425
15444
|
createdAt: Date;
|
|
15426
15445
|
updatedAt: Date;
|
|
@@ -15436,6 +15455,7 @@ export type CurrentProjectFullFragment = {
|
|
|
15436
15455
|
path: string;
|
|
15437
15456
|
version: string;
|
|
15438
15457
|
status: ProjectStatus;
|
|
15458
|
+
temporary: boolean;
|
|
15439
15459
|
size: number;
|
|
15440
15460
|
createdAt: Date;
|
|
15441
15461
|
updatedAt: Date;
|
|
@@ -15461,6 +15481,7 @@ export type CreatedProjectSubscription = {
|
|
|
15461
15481
|
path: string;
|
|
15462
15482
|
version: string;
|
|
15463
15483
|
status: ProjectStatus;
|
|
15484
|
+
temporary: boolean;
|
|
15464
15485
|
size: number;
|
|
15465
15486
|
createdAt: Date;
|
|
15466
15487
|
updatedAt: Date;
|
|
@@ -15482,6 +15503,7 @@ export type UpdatedProjectSubscription = {
|
|
|
15482
15503
|
path: string;
|
|
15483
15504
|
version: string;
|
|
15484
15505
|
status: ProjectStatus;
|
|
15506
|
+
temporary: boolean;
|
|
15485
15507
|
size: number;
|
|
15486
15508
|
createdAt: Date;
|
|
15487
15509
|
updatedAt: Date;
|
|
@@ -15511,6 +15533,7 @@ export type CreateProjectMutation = {
|
|
|
15511
15533
|
path: string;
|
|
15512
15534
|
version: string;
|
|
15513
15535
|
status: ProjectStatus;
|
|
15536
|
+
temporary: boolean;
|
|
15514
15537
|
size: number;
|
|
15515
15538
|
createdAt: Date;
|
|
15516
15539
|
updatedAt: Date;
|
|
@@ -15549,6 +15572,7 @@ export type SelectProjectMutation = {
|
|
|
15549
15572
|
path: string;
|
|
15550
15573
|
version: string;
|
|
15551
15574
|
status: ProjectStatus;
|
|
15575
|
+
temporary: boolean;
|
|
15552
15576
|
size: number;
|
|
15553
15577
|
createdAt: Date;
|
|
15554
15578
|
updatedAt: Date;
|
|
@@ -15609,6 +15633,7 @@ export type RenameProjectMutation = {
|
|
|
15609
15633
|
path: string;
|
|
15610
15634
|
version: string;
|
|
15611
15635
|
status: ProjectStatus;
|
|
15636
|
+
temporary: boolean;
|
|
15612
15637
|
size: number;
|
|
15613
15638
|
createdAt: Date;
|
|
15614
15639
|
updatedAt: Date;
|
|
@@ -15623,6 +15648,44 @@ export type RenameProjectMutation = {
|
|
|
15623
15648
|
} | {
|
|
15624
15649
|
__typename: "OtherUserError";
|
|
15625
15650
|
code: string;
|
|
15651
|
+
} | {
|
|
15652
|
+
__typename: "UnknownIdUserError";
|
|
15653
|
+
id: string;
|
|
15654
|
+
code: string;
|
|
15655
|
+
} | undefined | null;
|
|
15656
|
+
};
|
|
15657
|
+
};
|
|
15658
|
+
export type PersistProjectMutationVariables = Exact<{
|
|
15659
|
+
id: Scalars["ID"]["input"];
|
|
15660
|
+
}>;
|
|
15661
|
+
export type PersistProjectMutation = {
|
|
15662
|
+
persistProject: {
|
|
15663
|
+
project?: {
|
|
15664
|
+
__typename: "Project";
|
|
15665
|
+
id: string;
|
|
15666
|
+
name: string;
|
|
15667
|
+
path: string;
|
|
15668
|
+
version: string;
|
|
15669
|
+
status: ProjectStatus;
|
|
15670
|
+
temporary: boolean;
|
|
15671
|
+
size: number;
|
|
15672
|
+
createdAt: Date;
|
|
15673
|
+
updatedAt: Date;
|
|
15674
|
+
backups: Array<{
|
|
15675
|
+
id: string;
|
|
15676
|
+
}>;
|
|
15677
|
+
} | undefined | null;
|
|
15678
|
+
error?: {
|
|
15679
|
+
__typename: "OtherUserError";
|
|
15680
|
+
code: string;
|
|
15681
|
+
} | {
|
|
15682
|
+
__typename: "PermissionDeniedUserError";
|
|
15683
|
+
code: string;
|
|
15684
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
15685
|
+
} | {
|
|
15686
|
+
__typename: "UnknownIdUserError";
|
|
15687
|
+
id: string;
|
|
15688
|
+
code: string;
|
|
15626
15689
|
} | undefined | null;
|
|
15627
15690
|
};
|
|
15628
15691
|
};
|
|
@@ -15638,6 +15701,7 @@ export type CurrentProjectQuery = {
|
|
|
15638
15701
|
path: string;
|
|
15639
15702
|
version: string;
|
|
15640
15703
|
status: ProjectStatus;
|
|
15704
|
+
temporary: boolean;
|
|
15641
15705
|
size: number;
|
|
15642
15706
|
createdAt: Date;
|
|
15643
15707
|
updatedAt: Date;
|
|
@@ -15663,6 +15727,7 @@ export type ProjectsQuery = {
|
|
|
15663
15727
|
path: string;
|
|
15664
15728
|
version: string;
|
|
15665
15729
|
status: ProjectStatus;
|
|
15730
|
+
temporary: boolean;
|
|
15666
15731
|
size: number;
|
|
15667
15732
|
createdAt: Date;
|
|
15668
15733
|
updatedAt: Date;
|
|
@@ -21387,7 +21452,7 @@ export declare const FinishedBackupTaskCancelledFullFragmentDoc = "\n fragmen
|
|
|
21387
21452
|
export declare const InternalUserErrorFullFragmentDoc = "\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n ";
|
|
21388
21453
|
export declare const BackupUserErrorFullFragmentDoc = "\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
21389
21454
|
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 ";
|
|
21390
|
-
export declare const ProjectFullFragmentDoc = "\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 ";
|
|
21455
|
+
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 ";
|
|
21391
21456
|
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 ";
|
|
21392
21457
|
export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n ";
|
|
21393
21458
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
@@ -21574,12 +21639,12 @@ export declare const DeletedAutomateSessionDocument = "\n subscription delete
|
|
|
21574
21639
|
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 ";
|
|
21575
21640
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
21576
21641
|
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 ";
|
|
21577
|
-
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 ";
|
|
21642
|
+
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 ";
|
|
21578
21643
|
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 ";
|
|
21579
21644
|
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 ";
|
|
21580
21645
|
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 ";
|
|
21581
|
-
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 ";
|
|
21582
|
-
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 size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21646
|
+
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 ";
|
|
21647
|
+
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 ";
|
|
21583
21648
|
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 ";
|
|
21584
21649
|
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 ";
|
|
21585
21650
|
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 ";
|
|
@@ -21587,8 +21652,8 @@ export declare const UpdatedBackupDocument = "\n subscription updatedBackup {
|
|
|
21587
21652
|
export declare const DeletedBackupDocument = "\n subscription deletedBackup {\n deletedBackup {\n deletedBackupId\n }\n}\n ";
|
|
21588
21653
|
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 ";
|
|
21589
21654
|
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 ";
|
|
21590
|
-
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 size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21591
|
-
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 ";
|
|
21655
|
+
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 ";
|
|
21656
|
+
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 ";
|
|
21592
21657
|
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 ";
|
|
21593
21658
|
export declare const DeleteBrowserDocument = "\n mutation deleteBrowser {\n deleteBrowser {\n deletedId\n }\n}\n ";
|
|
21594
21659
|
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 ";
|
|
@@ -21706,15 +21771,16 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
21706
21771
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
21707
21772
|
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 ";
|
|
21708
21773
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
21709
|
-
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 ";
|
|
21710
|
-
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 ";
|
|
21774
|
+
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 ";
|
|
21775
|
+
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 ";
|
|
21711
21776
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
21712
|
-
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 ";
|
|
21713
|
-
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 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 ";
|
|
21777
|
+
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 ";
|
|
21778
|
+
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 ";
|
|
21714
21779
|
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 ";
|
|
21715
|
-
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 ";
|
|
21716
|
-
export declare const
|
|
21717
|
-
export declare const
|
|
21780
|
+
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 ";
|
|
21781
|
+
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 ";
|
|
21782
|
+
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 ";
|
|
21783
|
+
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 ";
|
|
21718
21784
|
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 ";
|
|
21719
21785
|
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}\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 ";
|
|
21720
21786
|
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n 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 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 ";
|
|
@@ -22011,6 +22077,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22011
22077
|
selectProject(variables: SelectProjectMutationVariables, options?: C): Promise<SelectProjectMutation>;
|
|
22012
22078
|
deleteProject(variables: DeleteProjectMutationVariables, options?: C): Promise<DeleteProjectMutation>;
|
|
22013
22079
|
renameProject(variables: RenameProjectMutationVariables, options?: C): Promise<RenameProjectMutation>;
|
|
22080
|
+
persistProject(variables: PersistProjectMutationVariables, options?: C): Promise<PersistProjectMutation>;
|
|
22014
22081
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
22015
22082
|
projects(variables?: ProjectsQueryVariables, options?: C): Promise<ProjectsQuery>;
|
|
22016
22083
|
setProjectConfigStream(variables: SetProjectConfigStreamMutationVariables, options?: C): Promise<SetProjectConfigStreamMutation>;
|
package/src/types/commands.d.ts
CHANGED
|
@@ -24,9 +24,9 @@ export type CommandsSDK = {
|
|
|
24
24
|
*/
|
|
25
25
|
register: (id: CommandID, options: {
|
|
26
26
|
name: string;
|
|
27
|
-
run: (context: CommandContext) => void;
|
|
27
|
+
run: (context: CommandContext) => Promise<void> | void;
|
|
28
28
|
group?: string;
|
|
29
|
-
when?: (context: CommandContext) => boolean;
|
|
29
|
+
when?: (context: CommandContext) => Promise<boolean> | boolean;
|
|
30
30
|
}) => void;
|
|
31
31
|
};
|
|
32
32
|
/**
|