@caido/sdk-frontend 0.40.1-beta.3 → 0.40.1-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -123,6 +123,10 @@ export type Scalars = {
|
|
|
123
123
|
input: string;
|
|
124
124
|
output: string;
|
|
125
125
|
};
|
|
126
|
+
Version: {
|
|
127
|
+
input: string;
|
|
128
|
+
output: string;
|
|
129
|
+
};
|
|
126
130
|
};
|
|
127
131
|
export type AliasTakenUserError = UserError & {
|
|
128
132
|
alias: Scalars["String"]["output"];
|
|
@@ -1188,7 +1192,7 @@ export type InstallBrowserPayload = {
|
|
|
1188
1192
|
browser?: Maybe<Browser>;
|
|
1189
1193
|
error?: Maybe<InstallBrowserError>;
|
|
1190
1194
|
};
|
|
1191
|
-
export type InstallPluginPackageError = OtherUserError | PluginUserError;
|
|
1195
|
+
export type InstallPluginPackageError = OtherUserError | PluginUserError | StoreUserError;
|
|
1192
1196
|
export type InstallPluginPackageInput = {
|
|
1193
1197
|
source: PluginPackageSource;
|
|
1194
1198
|
};
|
|
@@ -1845,6 +1849,10 @@ export type PluginPackage = {
|
|
|
1845
1849
|
};
|
|
1846
1850
|
export type PluginPackageSource = {
|
|
1847
1851
|
file: Scalars["Upload"]["input"];
|
|
1852
|
+
manifestId?: never;
|
|
1853
|
+
} | {
|
|
1854
|
+
file?: never;
|
|
1855
|
+
manifestId: Scalars["ID"]["input"];
|
|
1848
1856
|
};
|
|
1849
1857
|
export declare const PluginRuntime: {
|
|
1850
1858
|
readonly Javascript: "JAVASCRIPT";
|
|
@@ -1932,6 +1940,7 @@ export type QueryRoot = {
|
|
|
1932
1940
|
sitemapDescendantEntries: SitemapEntryConnection;
|
|
1933
1941
|
sitemapEntry?: Maybe<SitemapEntry>;
|
|
1934
1942
|
sitemapRootEntries: SitemapEntryConnection;
|
|
1943
|
+
store: Store;
|
|
1935
1944
|
stream?: Maybe<Stream>;
|
|
1936
1945
|
streamWsMessage?: Maybe<StreamWsMessage>;
|
|
1937
1946
|
streamWsMessages: StreamWsMessageConnection;
|
|
@@ -2658,6 +2667,35 @@ export type StartedRestoreBackupTaskPayload = {
|
|
|
2658
2667
|
export type StartedTaskPayload = {
|
|
2659
2668
|
task: Task;
|
|
2660
2669
|
};
|
|
2670
|
+
export type Store = {
|
|
2671
|
+
pluginPackages: Array<StorePluginPackage>;
|
|
2672
|
+
};
|
|
2673
|
+
export declare const StoreErrorReason: {
|
|
2674
|
+
readonly FileUnavailable: "FILE_UNAVAILABLE";
|
|
2675
|
+
readonly InvalidPublicKey: "INVALID_PUBLIC_KEY";
|
|
2676
|
+
readonly InvalidSignature: "INVALID_SIGNATURE";
|
|
2677
|
+
readonly PackageTooLarge: "PACKAGE_TOO_LARGE";
|
|
2678
|
+
readonly PackageUnknown: "PACKAGE_UNKNOWN";
|
|
2679
|
+
};
|
|
2680
|
+
export type StoreErrorReason = (typeof StoreErrorReason)[keyof typeof StoreErrorReason];
|
|
2681
|
+
export type StorePluginPackage = {
|
|
2682
|
+
author?: Maybe<StorePluginPackageAuthor>;
|
|
2683
|
+
description?: Maybe<Scalars["String"]["output"]>;
|
|
2684
|
+
license: Scalars["String"]["output"];
|
|
2685
|
+
manifestId: Scalars["ID"]["output"];
|
|
2686
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
2687
|
+
repository: Scalars["Url"]["output"];
|
|
2688
|
+
version: Scalars["Version"]["output"];
|
|
2689
|
+
};
|
|
2690
|
+
export type StorePluginPackageAuthor = {
|
|
2691
|
+
email?: Maybe<Scalars["String"]["output"]>;
|
|
2692
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
2693
|
+
url?: Maybe<Scalars["String"]["output"]>;
|
|
2694
|
+
};
|
|
2695
|
+
export type StoreUserError = UserError & {
|
|
2696
|
+
code: Scalars["String"]["output"];
|
|
2697
|
+
reason: StoreErrorReason;
|
|
2698
|
+
};
|
|
2661
2699
|
export type Stream = {
|
|
2662
2700
|
createdAt: Scalars["Timestamp"]["output"];
|
|
2663
2701
|
direction: StreamDirection;
|
|
@@ -2825,6 +2863,7 @@ export type SubscriptionRoot = {
|
|
|
2825
2863
|
updatedInterceptOptions: UpdatedInterceptOptionsPayload;
|
|
2826
2864
|
updatedInterceptStatus: UpdatedInterceptStatusPayload;
|
|
2827
2865
|
updatedPlugin: UpdatedPluginPayload;
|
|
2866
|
+
updatedPluginPackage: UpdatedPluginPackagePayload;
|
|
2828
2867
|
updatedProject: UpdatedProjectPayload;
|
|
2829
2868
|
updatedReplaySession: UpdatedReplaySessionPayload;
|
|
2830
2869
|
updatedReplaySessionCollection: UpdatedReplaySessionCollectionPayload;
|
|
@@ -3107,6 +3146,9 @@ export type UpdatedInterceptOptionsPayload = {
|
|
|
3107
3146
|
export type UpdatedInterceptStatusPayload = {
|
|
3108
3147
|
status: InterceptStatus;
|
|
3109
3148
|
};
|
|
3149
|
+
export type UpdatedPluginPackagePayload = {
|
|
3150
|
+
package: PluginPackage;
|
|
3151
|
+
};
|
|
3110
3152
|
export type UpdatedPluginPayload = {
|
|
3111
3153
|
plugin: Plugin;
|
|
3112
3154
|
};
|
|
@@ -4132,6 +4174,10 @@ type UserErrorFull_RenderFailedUserError_Fragment = {
|
|
|
4132
4174
|
__typename: "RenderFailedUserError";
|
|
4133
4175
|
code: string;
|
|
4134
4176
|
};
|
|
4177
|
+
type UserErrorFull_StoreUserError_Fragment = {
|
|
4178
|
+
__typename: "StoreUserError";
|
|
4179
|
+
code: string;
|
|
4180
|
+
};
|
|
4135
4181
|
type UserErrorFull_TaskInProgressUserError_Fragment = {
|
|
4136
4182
|
__typename: "TaskInProgressUserError";
|
|
4137
4183
|
code: string;
|
|
@@ -4148,7 +4194,7 @@ type UserErrorFull_WorkflowUserError_Fragment = {
|
|
|
4148
4194
|
__typename: "WorkflowUserError";
|
|
4149
4195
|
code: string;
|
|
4150
4196
|
};
|
|
4151
|
-
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
4197
|
+
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
4152
4198
|
export type InvalidHttpqlUserErrorFullFragment = {
|
|
4153
4199
|
__typename: "InvalidHTTPQLUserError";
|
|
4154
4200
|
query: string;
|
|
@@ -4159,6 +4205,11 @@ export type PluginUserErrorFullFragment = {
|
|
|
4159
4205
|
reason: PluginErrorReason;
|
|
4160
4206
|
code: string;
|
|
4161
4207
|
};
|
|
4208
|
+
export type StoreUserErrorFullFragment = {
|
|
4209
|
+
__typename: "StoreUserError";
|
|
4210
|
+
code: string;
|
|
4211
|
+
storeReason: StoreErrorReason;
|
|
4212
|
+
};
|
|
4162
4213
|
export type DataExportMetaFragment = {
|
|
4163
4214
|
__typename: "DataExport";
|
|
4164
4215
|
id: string;
|
|
@@ -4829,6 +4880,19 @@ export type PluginPackageFullFragment = {
|
|
|
4829
4880
|
url?: string | undefined | null;
|
|
4830
4881
|
} | undefined | null;
|
|
4831
4882
|
};
|
|
4883
|
+
export type StorePluginPackageFullFragment = {
|
|
4884
|
+
description?: string | undefined | null;
|
|
4885
|
+
license: string;
|
|
4886
|
+
manifestId: string;
|
|
4887
|
+
name?: string | undefined | null;
|
|
4888
|
+
repository: string;
|
|
4889
|
+
version: string;
|
|
4890
|
+
author?: {
|
|
4891
|
+
email?: string | undefined | null;
|
|
4892
|
+
name?: string | undefined | null;
|
|
4893
|
+
url?: string | undefined | null;
|
|
4894
|
+
} | undefined | null;
|
|
4895
|
+
};
|
|
4832
4896
|
export type ProjectFullFragment = {
|
|
4833
4897
|
__typename: "Project";
|
|
4834
4898
|
id: string;
|
|
@@ -7097,6 +7161,10 @@ export type InstallPluginPackageMutation = {
|
|
|
7097
7161
|
__typename: "PluginUserError";
|
|
7098
7162
|
reason: PluginErrorReason;
|
|
7099
7163
|
code: string;
|
|
7164
|
+
} | {
|
|
7165
|
+
__typename: "StoreUserError";
|
|
7166
|
+
code: string;
|
|
7167
|
+
storeReason: StoreErrorReason;
|
|
7100
7168
|
} | undefined | null;
|
|
7101
7169
|
};
|
|
7102
7170
|
};
|
|
@@ -10360,6 +10428,26 @@ export type PluginPackagesQuery = {
|
|
|
10360
10428
|
} | undefined | null;
|
|
10361
10429
|
}>;
|
|
10362
10430
|
};
|
|
10431
|
+
export type StorePluginPackagesQueryVariables = Exact<{
|
|
10432
|
+
[key: string]: never;
|
|
10433
|
+
}>;
|
|
10434
|
+
export type StorePluginPackagesQuery = {
|
|
10435
|
+
store: {
|
|
10436
|
+
pluginPackages: Array<{
|
|
10437
|
+
description?: string | undefined | null;
|
|
10438
|
+
license: string;
|
|
10439
|
+
manifestId: string;
|
|
10440
|
+
name?: string | undefined | null;
|
|
10441
|
+
repository: string;
|
|
10442
|
+
version: string;
|
|
10443
|
+
author?: {
|
|
10444
|
+
email?: string | undefined | null;
|
|
10445
|
+
name?: string | undefined | null;
|
|
10446
|
+
url?: string | undefined | null;
|
|
10447
|
+
} | undefined | null;
|
|
10448
|
+
}>;
|
|
10449
|
+
};
|
|
10450
|
+
};
|
|
10363
10451
|
export type CurrentProjectQueryVariables = Exact<{
|
|
10364
10452
|
[key: string]: never;
|
|
10365
10453
|
}>;
|
|
@@ -13482,6 +13570,8 @@ export type FinishedTaskSubscription = {
|
|
|
13482
13570
|
code: string;
|
|
13483
13571
|
} | {
|
|
13484
13572
|
code: string;
|
|
13573
|
+
} | {
|
|
13574
|
+
code: string;
|
|
13485
13575
|
} | undefined | null;
|
|
13486
13576
|
};
|
|
13487
13577
|
};
|
|
@@ -13596,6 +13686,7 @@ export declare const WorkflowUserErrorFullFragmentDoc = "\n fragment workflow
|
|
|
13596
13686
|
export declare const InvalidGlobTermsUserErrorFullFragmentDoc = "\n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n ";
|
|
13597
13687
|
export declare const InvalidHttpqlUserErrorFullFragmentDoc = "\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n ";
|
|
13598
13688
|
export declare const PluginUserErrorFullFragmentDoc = "\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
13689
|
+
export declare const StoreUserErrorFullFragmentDoc = "\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
|
|
13599
13690
|
export declare const DataExportMetaFieldsFragmentDoc = "\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 ";
|
|
13600
13691
|
export declare const DataExportMetaFragmentDoc = "\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n ";
|
|
13601
13692
|
export declare const DataExportFullFieldsFragmentDoc = "\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n ";
|
|
@@ -13630,6 +13721,7 @@ export declare const PluginBackendMetaFragmentDoc = "\n fragment pluginBacken
|
|
|
13630
13721
|
export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n ";
|
|
13631
13722
|
export declare const PluginBackendFullFragmentDoc = "\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
|
|
13632
13723
|
export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n ";
|
|
13724
|
+
export declare const StorePluginPackageFullFragmentDoc = "\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 ";
|
|
13633
13725
|
export declare const ReplayEntryMetaFragmentDoc = "\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 ";
|
|
13634
13726
|
export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
13635
13727
|
export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
@@ -13715,7 +13807,7 @@ export declare const UpdateUpstreamProxyDocument = "\n mutation updateUpstrea
|
|
|
13715
13807
|
export declare const DeleteUpstreamProxyDocument = "\n mutation deleteUpstreamProxy($id: ID!) {\n deleteUpstreamProxy(id: $id) {\n deletedId\n }\n}\n ";
|
|
13716
13808
|
export declare const TestUpstreamProxyDocument = "\n mutation testUpstreamProxy($input: TestUpstreamProxyInput!) {\n testUpstreamProxy(input: $input) {\n success\n }\n}\n ";
|
|
13717
13809
|
export declare const RankUpstreamProxyDocument = "\n mutation rankUpstreamProxy($id: ID!, $input: RankUpstreamProxyInput!) {\n rankUpstreamProxy(id: $id, input: $input) {\n proxy {\n ...upstreamProxyFull\n }\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
13718
|
-
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 }\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 }\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 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 ";
|
|
13810
|
+
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 }\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 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 ";
|
|
13719
13811
|
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 ";
|
|
13720
13812
|
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 }\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 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 ";
|
|
13721
13813
|
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 }\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 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 ";
|
|
@@ -13799,6 +13891,7 @@ export declare const InterceptOptionsDocument = "\n query interceptOptions {\
|
|
|
13799
13891
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
13800
13892
|
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxies {\n ...upstreamProxyFull\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
13801
13893
|
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 }\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 ";
|
|
13894
|
+
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 ";
|
|
13802
13895
|
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...projectFull\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 ";
|
|
13803
13896
|
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 size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
13804
13897
|
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}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment 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 }\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 ";
|
|
@@ -14029,6 +14122,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14029
14122
|
interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
|
|
14030
14123
|
upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
|
|
14031
14124
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
14125
|
+
storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
|
|
14032
14126
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
14033
14127
|
projects(variables?: ProjectsQueryVariables, options?: C): Promise<ProjectsQuery>;
|
|
14034
14128
|
replayEntry(variables: ReplayEntryQueryVariables, options?: C): Promise<ReplayEntryQuery>;
|