@caido/sdk-frontend 0.58.3-beta.4 → 0.58.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 +1 -1
- package/src/types/__generated__/graphql-sdk.d.ts +428 -1727
- package/src/types/index.d.ts +4 -12
- package/src/types/sdks/ai.d.ts +2 -2
- package/src/types/sdks/automate.d.ts +2 -12
- package/src/types/sdks/filters.d.ts +0 -1
- package/src/types/sdks/findings.d.ts +2 -12
- package/src/types/sdks/footer.d.ts +0 -1
- package/src/types/sdks/httpHistory.d.ts +2 -13
- package/src/types/sdks/index.d.ts +0 -22
- package/src/types/sdks/intercept.d.ts +2 -12
- package/src/types/sdks/matchReplace.d.ts +0 -1
- package/src/types/sdks/replay.d.ts +19 -58
- package/src/types/sdks/scopes.d.ts +0 -1
- package/src/types/sdks/search.d.ts +3 -15
- package/src/types/sdks/settings.d.ts +0 -1
- package/src/types/sdks/sitemap.d.ts +2 -12
- package/src/types/sdks/window.d.ts +0 -10
- package/src/types/types/ai.d.ts +9 -8
- package/src/types/types/replay.d.ts +0 -44
- package/src/types/types/slots.d.ts +1 -11
- package/src/types/sdks/kv.d.ts +0 -69
- package/src/types/types/httpqlEditor.d.ts +0 -3
- package/src/types/types/kv.d.ts +0 -16
|
@@ -134,70 +134,38 @@ export declare const AiErrorReason: {
|
|
|
134
134
|
readonly RequestMalformed: "REQUEST_MALFORMED";
|
|
135
135
|
};
|
|
136
136
|
export type AiErrorReason = (typeof AiErrorReason)[keyof typeof AiErrorReason];
|
|
137
|
-
export type
|
|
138
|
-
|
|
139
|
-
|
|
137
|
+
export type AiProviderAnthropic = {
|
|
138
|
+
apiKey: Scalars["Sensitive"]["output"];
|
|
139
|
+
};
|
|
140
|
+
export type AiProviderAnthropicInput = {
|
|
141
|
+
apiKey: Scalars["Sensitive"]["input"];
|
|
142
|
+
};
|
|
143
|
+
export type AiProviderGoogle = {
|
|
144
|
+
apiKey: Scalars["Sensitive"]["output"];
|
|
145
|
+
};
|
|
146
|
+
export type AiProviderGoogleInput = {
|
|
147
|
+
apiKey: Scalars["Sensitive"]["input"];
|
|
148
|
+
};
|
|
149
|
+
export type AiProviderOpenAi = {
|
|
140
150
|
apiKey: Scalars["Sensitive"]["output"];
|
|
141
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
142
|
-
createdAt: Scalars["DateTime"]["output"];
|
|
143
|
-
id: Scalars["ID"]["output"];
|
|
144
|
-
kind: AiProviderKind;
|
|
145
|
-
updatedAt: Scalars["DateTime"]["output"];
|
|
146
151
|
url?: Maybe<Scalars["Url"]["output"]>;
|
|
147
152
|
};
|
|
148
|
-
export
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
153
|
+
export type AiProviderOpenAiInput = {
|
|
154
|
+
apiKey: Scalars["Sensitive"]["input"];
|
|
155
|
+
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
156
|
+
};
|
|
157
|
+
export type AiProviderOpenRouter = {
|
|
158
|
+
apiKey: Scalars["Sensitive"]["output"];
|
|
159
|
+
};
|
|
160
|
+
export type AiProviderOpenRouterInput = {
|
|
161
|
+
apiKey: Scalars["Sensitive"]["input"];
|
|
162
|
+
};
|
|
163
|
+
export type AiProviders = {
|
|
164
|
+
anthropic?: Maybe<AiProviderAnthropic>;
|
|
165
|
+
google?: Maybe<AiProviderGoogle>;
|
|
166
|
+
openai?: Maybe<AiProviderOpenAi>;
|
|
167
|
+
openrouter?: Maybe<AiProviderOpenRouter>;
|
|
154
168
|
};
|
|
155
|
-
export type AiProviderApi = (typeof AiProviderApi)[keyof typeof AiProviderApi];
|
|
156
|
-
export declare const AiProviderAuthenticationStatus: {
|
|
157
|
-
readonly Invalid: "INVALID";
|
|
158
|
-
readonly Unverified: "UNVERIFIED";
|
|
159
|
-
readonly Valid: "VALID";
|
|
160
|
-
};
|
|
161
|
-
export type AiProviderAuthenticationStatus = (typeof AiProviderAuthenticationStatus)[keyof typeof AiProviderAuthenticationStatus];
|
|
162
|
-
export type AiProviderConfigurationInput = {
|
|
163
|
-
anthropic: AnthropicProviderConfigurationInput;
|
|
164
|
-
custom?: never;
|
|
165
|
-
gemini?: never;
|
|
166
|
-
openAI?: never;
|
|
167
|
-
openRouter?: never;
|
|
168
|
-
} | {
|
|
169
|
-
anthropic?: never;
|
|
170
|
-
custom: CustomAiProviderConfigurationInput;
|
|
171
|
-
gemini?: never;
|
|
172
|
-
openAI?: never;
|
|
173
|
-
openRouter?: never;
|
|
174
|
-
} | {
|
|
175
|
-
anthropic?: never;
|
|
176
|
-
custom?: never;
|
|
177
|
-
gemini: GeminiProviderConfigurationInput;
|
|
178
|
-
openAI?: never;
|
|
179
|
-
openRouter?: never;
|
|
180
|
-
} | {
|
|
181
|
-
anthropic?: never;
|
|
182
|
-
custom?: never;
|
|
183
|
-
gemini?: never;
|
|
184
|
-
openAI: OpenAiProviderConfigurationInput;
|
|
185
|
-
openRouter?: never;
|
|
186
|
-
} | {
|
|
187
|
-
anthropic?: never;
|
|
188
|
-
custom?: never;
|
|
189
|
-
gemini?: never;
|
|
190
|
-
openAI?: never;
|
|
191
|
-
openRouter: OpenRouterProviderConfigurationInput;
|
|
192
|
-
};
|
|
193
|
-
export declare const AiProviderKind: {
|
|
194
|
-
readonly Anthropic: "ANTHROPIC";
|
|
195
|
-
readonly Custom: "CUSTOM";
|
|
196
|
-
readonly Gemini: "GEMINI";
|
|
197
|
-
readonly Openai: "OPENAI";
|
|
198
|
-
readonly Openrouter: "OPENROUTER";
|
|
199
|
-
};
|
|
200
|
-
export type AiProviderKind = (typeof AiProviderKind)[keyof typeof AiProviderKind];
|
|
201
169
|
export type AiUserError = UserError & {
|
|
202
170
|
code: Scalars["String"]["output"];
|
|
203
171
|
message: Scalars["String"]["output"];
|
|
@@ -218,9 +186,6 @@ export type AnalyticStatus = {
|
|
|
218
186
|
enabled: Scalars["Boolean"]["output"];
|
|
219
187
|
local: Scalars["Boolean"]["output"];
|
|
220
188
|
};
|
|
221
|
-
export type AnthropicProviderConfigurationInput = {
|
|
222
|
-
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
223
|
-
};
|
|
224
189
|
export declare const AssistantErrorReason: {
|
|
225
190
|
readonly ContextExceeded: "CONTEXT_EXCEEDED";
|
|
226
191
|
readonly InvalidModel: "INVALID_MODEL";
|
|
@@ -793,16 +758,6 @@ export type Count = {
|
|
|
793
758
|
snapshot: Scalars["Snapshot"]["output"];
|
|
794
759
|
value: Scalars["Int"]["output"];
|
|
795
760
|
};
|
|
796
|
-
export type CreateAiProviderError = AiUserError | AliasTakenUserError | OtherUserError;
|
|
797
|
-
export type CreateAiProviderInput = {
|
|
798
|
-
alias: Scalars["Alias"]["input"];
|
|
799
|
-
apiKey: Scalars["Sensitive"]["input"];
|
|
800
|
-
configuration: AiProviderConfigurationInput;
|
|
801
|
-
};
|
|
802
|
-
export type CreateAiProviderPayload = {
|
|
803
|
-
error?: Maybe<CreateAiProviderError>;
|
|
804
|
-
provider?: Maybe<AiProvider>;
|
|
805
|
-
};
|
|
806
761
|
export type CreateAssistantSessionError = CloudUserError | OtherUserError | PermissionDeniedUserError;
|
|
807
762
|
export type CreateAssistantSessionInput = {
|
|
808
763
|
modelId: Scalars["ID"]["input"];
|
|
@@ -999,9 +954,6 @@ export type CreateWorkflowPayload = {
|
|
|
999
954
|
error?: Maybe<CreateWorkflowError>;
|
|
1000
955
|
workflow?: Maybe<Workflow>;
|
|
1001
956
|
};
|
|
1002
|
-
export type CreatedAiProviderPayload = {
|
|
1003
|
-
provider: AiProvider;
|
|
1004
|
-
};
|
|
1005
957
|
export type CreatedAssistantMessagePayload = {
|
|
1006
958
|
messageEdge: AssistantMessageEdge;
|
|
1007
959
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1158,18 +1110,6 @@ export type CurrentProject = {
|
|
|
1158
1110
|
/** Defines if the selected project is read-only */
|
|
1159
1111
|
readOnly: Scalars["Boolean"]["output"];
|
|
1160
1112
|
};
|
|
1161
|
-
export declare const CustomAiProviderApi: {
|
|
1162
|
-
readonly Anthropic: "ANTHROPIC";
|
|
1163
|
-
readonly Gemini: "GEMINI";
|
|
1164
|
-
readonly OpenaiCompletion: "OPENAI_COMPLETION";
|
|
1165
|
-
readonly OpenaiResponse: "OPENAI_RESPONSE";
|
|
1166
|
-
readonly Openrouter: "OPENROUTER";
|
|
1167
|
-
};
|
|
1168
|
-
export type CustomAiProviderApi = (typeof CustomAiProviderApi)[keyof typeof CustomAiProviderApi];
|
|
1169
|
-
export type CustomAiProviderConfigurationInput = {
|
|
1170
|
-
api: CustomAiProviderApi;
|
|
1171
|
-
url: Scalars["Url"]["input"];
|
|
1172
|
-
};
|
|
1173
1113
|
export type DnsIpResolver = {
|
|
1174
1114
|
ip: Scalars["String"]["output"];
|
|
1175
1115
|
};
|
|
@@ -1254,21 +1194,7 @@ export type DataImportResult = {
|
|
|
1254
1194
|
id: Scalars["ID"]["output"];
|
|
1255
1195
|
summary?: Maybe<DataImportSummary>;
|
|
1256
1196
|
};
|
|
1257
|
-
export type DataImportSummary = FindingsSummary |
|
|
1258
|
-
export type DefinePluginPackageDataError = OtherUserError | UnknownIdUserError;
|
|
1259
|
-
export type DefinePluginPackageDataInput = {
|
|
1260
|
-
flags: PluginPackageDataFlagsInput;
|
|
1261
|
-
key: Scalars["String"]["input"];
|
|
1262
|
-
};
|
|
1263
|
-
export type DefinePluginPackageDataPayload = {
|
|
1264
|
-
error?: Maybe<DefinePluginPackageDataError>;
|
|
1265
|
-
success: Scalars["Boolean"]["output"];
|
|
1266
|
-
};
|
|
1267
|
-
export type DeleteAiProviderError = OtherUserError | UnknownIdUserError;
|
|
1268
|
-
export type DeleteAiProviderPayload = {
|
|
1269
|
-
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1270
|
-
error?: Maybe<DeleteAiProviderError>;
|
|
1271
|
-
};
|
|
1197
|
+
export type DataImportSummary = FindingsSummary | TamperSummary;
|
|
1272
1198
|
export type DeleteAssistantSessionPayload = {
|
|
1273
1199
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1274
1200
|
};
|
|
@@ -1335,11 +1261,6 @@ export type DeleteInterceptEntryPayload = {
|
|
|
1335
1261
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1336
1262
|
userError?: Maybe<DeleteInterceptEntryError>;
|
|
1337
1263
|
};
|
|
1338
|
-
export type DeletePluginPackageDataError = OtherUserError | UnknownIdUserError;
|
|
1339
|
-
export type DeletePluginPackageDataPayload = {
|
|
1340
|
-
error?: Maybe<DeletePluginPackageDataError>;
|
|
1341
|
-
success: Scalars["Boolean"]["output"];
|
|
1342
|
-
};
|
|
1343
1264
|
export type DeleteProjectPayload = {
|
|
1344
1265
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1345
1266
|
error?: Maybe<DeleteProjectPayloadError>;
|
|
@@ -1383,9 +1304,6 @@ export type DeleteWorkflowPayload = {
|
|
|
1383
1304
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1384
1305
|
error?: Maybe<DeleteWorkflowError>;
|
|
1385
1306
|
};
|
|
1386
|
-
export type DeletedAiProviderPayload = {
|
|
1387
|
-
deletedProviderId: Scalars["ID"]["output"];
|
|
1388
|
-
};
|
|
1389
1307
|
export type DeletedAssistantSessionPayload = {
|
|
1390
1308
|
deletedSessionId: Scalars["ID"]["output"];
|
|
1391
1309
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1443,10 +1361,6 @@ export type DeletedInterceptMessagePayload = {
|
|
|
1443
1361
|
deletedMessageId: Scalars["ID"]["output"];
|
|
1444
1362
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1445
1363
|
};
|
|
1446
|
-
export type DeletedPluginPackageDataPayload = {
|
|
1447
|
-
key: Scalars["String"]["output"];
|
|
1448
|
-
packageId: Scalars["ID"]["output"];
|
|
1449
|
-
};
|
|
1450
1364
|
export type DeletedPluginPackagePayload = {
|
|
1451
1365
|
deletedPackageId: Scalars["ID"]["output"];
|
|
1452
1366
|
};
|
|
@@ -1526,15 +1440,6 @@ export type EnvironmentVariableKind = (typeof EnvironmentVariableKind)[keyof typ
|
|
|
1526
1440
|
export type ExpiredViewerProfilePayload = {
|
|
1527
1441
|
expiredAt: Scalars["Timestamp"]["output"];
|
|
1528
1442
|
};
|
|
1529
|
-
export type ExportAutomateEntriesError = OtherUserError | PermissionDeniedUserError;
|
|
1530
|
-
export type ExportAutomateEntriesInput = {
|
|
1531
|
-
sessions: Array<Scalars["ID"]["input"]>;
|
|
1532
|
-
settings: DataExportSettingsInput;
|
|
1533
|
-
};
|
|
1534
|
-
export type ExportAutomateEntriesPayload = {
|
|
1535
|
-
error?: Maybe<ExportAutomateEntriesError>;
|
|
1536
|
-
export?: Maybe<DataExportOnDemand>;
|
|
1537
|
-
};
|
|
1538
1443
|
export type ExportFindingsError = OtherUserError | PermissionDeniedUserError;
|
|
1539
1444
|
export type ExportFindingsInput = {
|
|
1540
1445
|
filter: FilterClauseFindingInput;
|
|
@@ -1547,14 +1452,6 @@ export type ExportFindingsPayload = {
|
|
|
1547
1452
|
error?: Maybe<ExportFindingsError>;
|
|
1548
1453
|
export?: Maybe<DataExportOnDemand>;
|
|
1549
1454
|
};
|
|
1550
|
-
export type ExportPluginPackageDataError = OtherUserError | PermissionDeniedUserError;
|
|
1551
|
-
export type ExportPluginPackageDataInput = {
|
|
1552
|
-
filter: PluginPackageDataFilter;
|
|
1553
|
-
};
|
|
1554
|
-
export type ExportPluginPackageDataPayload = {
|
|
1555
|
-
error?: Maybe<ExportPluginPackageDataError>;
|
|
1556
|
-
export?: Maybe<DataExportOnDemand>;
|
|
1557
|
-
};
|
|
1558
1455
|
export type ExportSitemapEntriesError = OtherUserError | PermissionDeniedUserError;
|
|
1559
1456
|
export type ExportSitemapEntriesFilter = {
|
|
1560
1457
|
ids: Array<Scalars["ID"]["input"]>;
|
|
@@ -1700,9 +1597,6 @@ export type ForwardInterceptResponseMessageInput = {
|
|
|
1700
1597
|
export type ForwardInterceptStreamWsMessageInput = {
|
|
1701
1598
|
updateRaw: Scalars["Blob"]["input"];
|
|
1702
1599
|
};
|
|
1703
|
-
export type GeminiProviderConfigurationInput = {
|
|
1704
|
-
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
1705
|
-
};
|
|
1706
1600
|
export type GlobalConfig = {
|
|
1707
1601
|
address: Scalars["String"]["output"];
|
|
1708
1602
|
project: GlobalConfigProject;
|
|
@@ -1768,23 +1662,14 @@ export type ImportCertificatePayload = {
|
|
|
1768
1662
|
};
|
|
1769
1663
|
export type ImportDataInput = {
|
|
1770
1664
|
findings: ImportFindingsInput;
|
|
1771
|
-
pluginPackageData?: never;
|
|
1772
|
-
tamper?: never;
|
|
1773
|
-
} | {
|
|
1774
|
-
findings?: never;
|
|
1775
|
-
pluginPackageData: ImportPluginPackageDataInput;
|
|
1776
1665
|
tamper?: never;
|
|
1777
1666
|
} | {
|
|
1778
1667
|
findings?: never;
|
|
1779
|
-
pluginPackageData?: never;
|
|
1780
1668
|
tamper: ImportTamperRuleInput;
|
|
1781
1669
|
};
|
|
1782
1670
|
export type ImportFindingsInput = {
|
|
1783
1671
|
file: Scalars["Upload"]["input"];
|
|
1784
1672
|
};
|
|
1785
|
-
export type ImportPluginPackageDataInput = {
|
|
1786
|
-
file: Scalars["Upload"]["input"];
|
|
1787
|
-
};
|
|
1788
1673
|
export type ImportTamperRuleInput = {
|
|
1789
1674
|
file: Scalars["Upload"]["input"];
|
|
1790
1675
|
};
|
|
@@ -1812,6 +1697,7 @@ export type InstallPluginPackagesPayload = {
|
|
|
1812
1697
|
packages: Array<PluginPackage>;
|
|
1813
1698
|
};
|
|
1814
1699
|
export type InstanceSettings = {
|
|
1700
|
+
aiProviders: AiProviders;
|
|
1815
1701
|
analytic: AnalyticStatus;
|
|
1816
1702
|
network: NetworkState;
|
|
1817
1703
|
onboarding: OnboardingState;
|
|
@@ -2003,7 +1889,6 @@ export type MutationRoot = {
|
|
|
2003
1889
|
cancelTask: CancelTaskPayload;
|
|
2004
1890
|
clearReplayEntryDraft: ClearReplayEntryDraftPayload;
|
|
2005
1891
|
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
2006
|
-
createAIProvider: CreateAiProviderPayload;
|
|
2007
1892
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
2008
1893
|
createAutomateSession: CreateAutomateSessionPayload;
|
|
2009
1894
|
createBackup: CreateBackupPayload;
|
|
@@ -2025,8 +1910,6 @@ export type MutationRoot = {
|
|
|
2025
1910
|
createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
|
|
2026
1911
|
createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
|
|
2027
1912
|
createWorkflow: CreateWorkflowPayload;
|
|
2028
|
-
definePluginPackageData: DefinePluginPackageDataPayload;
|
|
2029
|
-
deleteAIProvider: DeleteAiProviderPayload;
|
|
2030
1913
|
deleteAssistantSession: DeleteAssistantSessionPayload;
|
|
2031
1914
|
deleteAutomateEntries: DeleteAutomateEntriesPayload;
|
|
2032
1915
|
deleteAutomateSession: DeleteAutomateSessionPayload;
|
|
@@ -2041,7 +1924,6 @@ export type MutationRoot = {
|
|
|
2041
1924
|
deleteHostedFile: DeleteHostedFilePayload;
|
|
2042
1925
|
deleteInterceptEntries: DeleteInterceptEntriesPayload;
|
|
2043
1926
|
deleteInterceptEntry: DeleteInterceptEntryPayload;
|
|
2044
|
-
deletePluginPackageData: DeletePluginPackageDataPayload;
|
|
2045
1927
|
deleteProject: DeleteProjectPayload;
|
|
2046
1928
|
deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
|
|
2047
1929
|
deleteReplaySessions: DeleteReplaySessionsPayload;
|
|
@@ -2055,9 +1937,7 @@ export type MutationRoot = {
|
|
|
2055
1937
|
deleteWorkflow: DeleteWorkflowPayload;
|
|
2056
1938
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
2057
1939
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
2058
|
-
exportAutomateEntries: ExportAutomateEntriesPayload;
|
|
2059
1940
|
exportFindings: ExportFindingsPayload;
|
|
2060
|
-
exportPluginPackageData: ExportPluginPackageDataPayload;
|
|
2061
1941
|
exportSitemapEntries: ExportSitemapEntriesPayload;
|
|
2062
1942
|
exportTamper: ExportTamperPayload;
|
|
2063
1943
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
@@ -2118,7 +1998,6 @@ export type MutationRoot = {
|
|
|
2118
1998
|
setInterceptOptions: SetInterceptOptionsPayload;
|
|
2119
1999
|
setPassthroughOptions: SetPassthroughOptionsPayload;
|
|
2120
2000
|
setPluginData: SetPluginDataPayload;
|
|
2121
|
-
setPluginPackageData: SetPluginPackageDataPayload;
|
|
2122
2001
|
setProjectConfigStream: SetProjectConfigStreamPayload;
|
|
2123
2002
|
startAuthenticationFlow: StartAuthenticationFlowPayload;
|
|
2124
2003
|
startAutomateTask: StartAutomateTaskPayload;
|
|
@@ -2126,7 +2005,7 @@ export type MutationRoot = {
|
|
|
2126
2005
|
startExportRequestsTask: StartExportRequestsTaskPayload;
|
|
2127
2006
|
startReplayTask: StartReplayTaskPayload;
|
|
2128
2007
|
stopReplayWsTasks: StopReplayWsTaskPayload;
|
|
2129
|
-
|
|
2008
|
+
testAiProvider: TestAiProviderPayload;
|
|
2130
2009
|
testExtractor: TestExtractorPayload;
|
|
2131
2010
|
testTamperRule: TestTamperRulePayload;
|
|
2132
2011
|
testUpstreamProxyHttp: TestUpstreamProxyHttpPayload;
|
|
@@ -2144,7 +2023,6 @@ export type MutationRoot = {
|
|
|
2144
2023
|
track: TrackPayload;
|
|
2145
2024
|
uninstallPluginPackage: UninstallPluginPackagePayload;
|
|
2146
2025
|
uninstallPluginPackages: UninstallPluginPackagesPayload;
|
|
2147
|
-
updateAIProvider: UpdateAiProviderPayload;
|
|
2148
2026
|
updateAutomateSession: UpdateAutomateSessionPayload;
|
|
2149
2027
|
updateBrowser: UpdateBrowserPayload;
|
|
2150
2028
|
updateDnsRewrite: UpdateDnsRewritePayload;
|
|
@@ -2181,9 +2059,6 @@ export type MutationRootClearReplayEntryDraftArgs = {
|
|
|
2181
2059
|
id: Scalars["ID"]["input"];
|
|
2182
2060
|
kind: ReplaySessionKind;
|
|
2183
2061
|
};
|
|
2184
|
-
export type MutationRootCreateAiProviderArgs = {
|
|
2185
|
-
input: CreateAiProviderInput;
|
|
2186
|
-
};
|
|
2187
2062
|
export type MutationRootCreateAssistantSessionArgs = {
|
|
2188
2063
|
input: CreateAssistantSessionInput;
|
|
2189
2064
|
};
|
|
@@ -2248,13 +2123,6 @@ export type MutationRootCreateUpstreamProxySocksArgs = {
|
|
|
2248
2123
|
export type MutationRootCreateWorkflowArgs = {
|
|
2249
2124
|
input: CreateWorkflowInput;
|
|
2250
2125
|
};
|
|
2251
|
-
export type MutationRootDefinePluginPackageDataArgs = {
|
|
2252
|
-
id: Scalars["ID"]["input"];
|
|
2253
|
-
input: DefinePluginPackageDataInput;
|
|
2254
|
-
};
|
|
2255
|
-
export type MutationRootDeleteAiProviderArgs = {
|
|
2256
|
-
id: Scalars["ID"]["input"];
|
|
2257
|
-
};
|
|
2258
2126
|
export type MutationRootDeleteAssistantSessionArgs = {
|
|
2259
2127
|
id: Scalars["ID"]["input"];
|
|
2260
2128
|
};
|
|
@@ -2295,10 +2163,6 @@ export type MutationRootDeleteInterceptEntriesArgs = {
|
|
|
2295
2163
|
export type MutationRootDeleteInterceptEntryArgs = {
|
|
2296
2164
|
id: Scalars["ID"]["input"];
|
|
2297
2165
|
};
|
|
2298
|
-
export type MutationRootDeletePluginPackageDataArgs = {
|
|
2299
|
-
id: Scalars["ID"]["input"];
|
|
2300
|
-
key: Scalars["String"]["input"];
|
|
2301
|
-
};
|
|
2302
2166
|
export type MutationRootDeleteProjectArgs = {
|
|
2303
2167
|
id: Scalars["ID"]["input"];
|
|
2304
2168
|
};
|
|
@@ -2338,15 +2202,9 @@ export type MutationRootDropInterceptMessageArgs = {
|
|
|
2338
2202
|
export type MutationRootDuplicateAutomateSessionArgs = {
|
|
2339
2203
|
id: Scalars["ID"]["input"];
|
|
2340
2204
|
};
|
|
2341
|
-
export type MutationRootExportAutomateEntriesArgs = {
|
|
2342
|
-
input: ExportAutomateEntriesInput;
|
|
2343
|
-
};
|
|
2344
2205
|
export type MutationRootExportFindingsArgs = {
|
|
2345
2206
|
input: ExportFindingsInput;
|
|
2346
2207
|
};
|
|
2347
|
-
export type MutationRootExportPluginPackageDataArgs = {
|
|
2348
|
-
input: ExportPluginPackageDataInput;
|
|
2349
|
-
};
|
|
2350
2208
|
export type MutationRootExportSitemapEntriesArgs = {
|
|
2351
2209
|
input: ExportSitemapEntriesInput;
|
|
2352
2210
|
};
|
|
@@ -2537,11 +2395,6 @@ export type MutationRootSetPluginDataArgs = {
|
|
|
2537
2395
|
data: Scalars["JSON"]["input"];
|
|
2538
2396
|
id: Scalars["ID"]["input"];
|
|
2539
2397
|
};
|
|
2540
|
-
export type MutationRootSetPluginPackageDataArgs = {
|
|
2541
|
-
data: Scalars["JSON"]["input"];
|
|
2542
|
-
id: Scalars["ID"]["input"];
|
|
2543
|
-
key: Scalars["String"]["input"];
|
|
2544
|
-
};
|
|
2545
2398
|
export type MutationRootSetProjectConfigStreamArgs = {
|
|
2546
2399
|
input: ProjectConfigStreamInput;
|
|
2547
2400
|
};
|
|
@@ -2621,10 +2474,6 @@ export type MutationRootUninstallPluginPackageArgs = {
|
|
|
2621
2474
|
export type MutationRootUninstallPluginPackagesArgs = {
|
|
2622
2475
|
ids: Array<Scalars["ID"]["input"]>;
|
|
2623
2476
|
};
|
|
2624
|
-
export type MutationRootUpdateAiProviderArgs = {
|
|
2625
|
-
id: Scalars["ID"]["input"];
|
|
2626
|
-
input: UpdateAiProviderInput;
|
|
2627
|
-
};
|
|
2628
2477
|
export type MutationRootUpdateAutomateSessionArgs = {
|
|
2629
2478
|
id: Scalars["ID"]["input"];
|
|
2630
2479
|
input: UpdateAutomateSessionInput;
|
|
@@ -2709,18 +2558,6 @@ export type NewerVersionUserError = UserError & {
|
|
|
2709
2558
|
export type OnboardingState = {
|
|
2710
2559
|
analytic: Scalars["Boolean"]["output"];
|
|
2711
2560
|
};
|
|
2712
|
-
export declare const OpenAiProviderApi: {
|
|
2713
|
-
readonly Completion: "COMPLETION";
|
|
2714
|
-
readonly Response: "RESPONSE";
|
|
2715
|
-
};
|
|
2716
|
-
export type OpenAiProviderApi = (typeof OpenAiProviderApi)[keyof typeof OpenAiProviderApi];
|
|
2717
|
-
export type OpenAiProviderConfigurationInput = {
|
|
2718
|
-
api: OpenAiProviderApi;
|
|
2719
|
-
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
2720
|
-
};
|
|
2721
|
-
export type OpenRouterProviderConfigurationInput = {
|
|
2722
|
-
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
2723
|
-
};
|
|
2724
2561
|
export declare const Ordering: {
|
|
2725
2562
|
readonly Asc: "ASC";
|
|
2726
2563
|
readonly Desc: "DESC";
|
|
@@ -2869,24 +2706,6 @@ export type PluginPackage = {
|
|
|
2869
2706
|
plugins: Array<Plugin>;
|
|
2870
2707
|
version: Scalars["String"]["output"];
|
|
2871
2708
|
};
|
|
2872
|
-
export type PluginPackageData = {
|
|
2873
|
-
flags: PluginPackageDataFlags;
|
|
2874
|
-
key: Scalars["String"]["output"];
|
|
2875
|
-
package: PluginPackage;
|
|
2876
|
-
value?: Maybe<Scalars["JSON"]["output"]>;
|
|
2877
|
-
};
|
|
2878
|
-
export type PluginPackageDataFilter = {
|
|
2879
|
-
ids: Array<Scalars["ID"]["input"]>;
|
|
2880
|
-
};
|
|
2881
|
-
export type PluginPackageDataFlags = {
|
|
2882
|
-
exportable: Scalars["Boolean"]["output"];
|
|
2883
|
-
};
|
|
2884
|
-
export type PluginPackageDataFlagsInput = {
|
|
2885
|
-
exportable?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
2886
|
-
};
|
|
2887
|
-
export type PluginPackageDataSummary = {
|
|
2888
|
-
packagesImported: Scalars["Int"]["output"];
|
|
2889
|
-
};
|
|
2890
2709
|
export declare const PluginPackageOrigin: {
|
|
2891
2710
|
readonly File: "FILE";
|
|
2892
2711
|
readonly Store: "STORE";
|
|
@@ -2982,7 +2801,6 @@ export type QueryInput = {
|
|
|
2982
2801
|
streamQL: StreamQlInput;
|
|
2983
2802
|
};
|
|
2984
2803
|
export type QueryRoot = {
|
|
2985
|
-
aiProviders: Array<AiProvider>;
|
|
2986
2804
|
assistantModels: Array<AssistantModel>;
|
|
2987
2805
|
assistantSession?: Maybe<AssistantSession>;
|
|
2988
2806
|
assistantSessions: Array<AssistantSession>;
|
|
@@ -3020,9 +2838,6 @@ export type QueryRoot = {
|
|
|
3020
2838
|
interceptOptions: InterceptOptions;
|
|
3021
2839
|
interceptStatus: InterceptStatus;
|
|
3022
2840
|
passthroughOptions: PassthroughOptions;
|
|
3023
|
-
pluginPackage?: Maybe<PluginPackage>;
|
|
3024
|
-
pluginPackageByManifest?: Maybe<PluginPackage>;
|
|
3025
|
-
pluginPackageData?: Maybe<PluginPackageData>;
|
|
3026
2841
|
pluginPackages: Array<PluginPackage>;
|
|
3027
2842
|
projects: Array<Project>;
|
|
3028
2843
|
replayEntry?: Maybe<ReplayEntry>;
|
|
@@ -3144,16 +2959,6 @@ export type QueryRootInterceptMessagesArgs = {
|
|
|
3144
2959
|
kind: InterceptKind;
|
|
3145
2960
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
3146
2961
|
};
|
|
3147
|
-
export type QueryRootPluginPackageArgs = {
|
|
3148
|
-
id: Scalars["ID"]["input"];
|
|
3149
|
-
};
|
|
3150
|
-
export type QueryRootPluginPackageByManifestArgs = {
|
|
3151
|
-
manifestId: Scalars["ID"]["input"];
|
|
3152
|
-
};
|
|
3153
|
-
export type QueryRootPluginPackageDataArgs = {
|
|
3154
|
-
id: Scalars["ID"]["input"];
|
|
3155
|
-
key: Scalars["String"]["input"];
|
|
3156
|
-
};
|
|
3157
2962
|
export type QueryRootReplayEntryArgs = {
|
|
3158
2963
|
id: Scalars["ID"]["input"];
|
|
3159
2964
|
sessionKind: ReplaySessionKind;
|
|
@@ -3915,14 +3720,22 @@ export type SetConfigProjectPayload = {
|
|
|
3915
3720
|
config: GlobalConfig;
|
|
3916
3721
|
};
|
|
3917
3722
|
export type SetInstanceSettingsInput = {
|
|
3723
|
+
aiProvider: SettingsAiProviderInput;
|
|
3724
|
+
analytics?: never;
|
|
3725
|
+
network?: never;
|
|
3726
|
+
onboarding?: never;
|
|
3727
|
+
} | {
|
|
3728
|
+
aiProvider?: never;
|
|
3918
3729
|
analytics: SettingsAnalyticInput;
|
|
3919
3730
|
network?: never;
|
|
3920
3731
|
onboarding?: never;
|
|
3921
3732
|
} | {
|
|
3733
|
+
aiProvider?: never;
|
|
3922
3734
|
analytics?: never;
|
|
3923
3735
|
network: SettingsNetworkInput;
|
|
3924
3736
|
onboarding?: never;
|
|
3925
3737
|
} | {
|
|
3738
|
+
aiProvider?: never;
|
|
3926
3739
|
analytics?: never;
|
|
3927
3740
|
network?: never;
|
|
3928
3741
|
onboarding: SettingsOnboardingInput;
|
|
@@ -3941,14 +3754,30 @@ export type SetPluginDataPayload = {
|
|
|
3941
3754
|
error?: Maybe<SetPluginDataError>;
|
|
3942
3755
|
plugin?: Maybe<Plugin>;
|
|
3943
3756
|
};
|
|
3944
|
-
export type SetPluginPackageDataError = OtherUserError | UnknownIdUserError;
|
|
3945
|
-
export type SetPluginPackageDataPayload = {
|
|
3946
|
-
error?: Maybe<SetPluginPackageDataError>;
|
|
3947
|
-
success: Scalars["Boolean"]["output"];
|
|
3948
|
-
};
|
|
3949
3757
|
export type SetProjectConfigStreamPayload = {
|
|
3950
3758
|
config: ProjectConfigStream;
|
|
3951
3759
|
};
|
|
3760
|
+
export type SettingsAiProviderInput = {
|
|
3761
|
+
anthropic: AiProviderAnthropicInput;
|
|
3762
|
+
google?: never;
|
|
3763
|
+
openai?: never;
|
|
3764
|
+
openrouter?: never;
|
|
3765
|
+
} | {
|
|
3766
|
+
anthropic?: never;
|
|
3767
|
+
google: AiProviderGoogleInput;
|
|
3768
|
+
openai?: never;
|
|
3769
|
+
openrouter?: never;
|
|
3770
|
+
} | {
|
|
3771
|
+
anthropic?: never;
|
|
3772
|
+
google?: never;
|
|
3773
|
+
openai: AiProviderOpenAiInput;
|
|
3774
|
+
openrouter?: never;
|
|
3775
|
+
} | {
|
|
3776
|
+
anthropic?: never;
|
|
3777
|
+
google?: never;
|
|
3778
|
+
openai?: never;
|
|
3779
|
+
openrouter: AiProviderOpenRouterInput;
|
|
3780
|
+
};
|
|
3952
3781
|
export type SettingsAnalyticInput = {
|
|
3953
3782
|
enabled: Scalars["Boolean"]["input"];
|
|
3954
3783
|
};
|
|
@@ -4223,7 +4052,6 @@ export type StreamWsMessageOrderInput = {
|
|
|
4223
4052
|
ordering: Ordering;
|
|
4224
4053
|
};
|
|
4225
4054
|
export type SubscriptionRoot = {
|
|
4226
|
-
createdAIProvider: CreatedAiProviderPayload;
|
|
4227
4055
|
createdAssistantMessage: CreatedAssistantMessagePayload;
|
|
4228
4056
|
createdAssistantMessageTask: CreatedAssistantMessageTaskPayload;
|
|
4229
4057
|
createdAssistantSession: CreatedAssistantSessionPayload;
|
|
@@ -4258,7 +4086,6 @@ export type SubscriptionRoot = {
|
|
|
4258
4086
|
createdUpstreamProxyHttp: CreatedUpstreamProxyHttpPayload;
|
|
4259
4087
|
createdUpstreamProxySocks: CreatedUpstreamProxySocksPayload;
|
|
4260
4088
|
createdWorkflow: CreatedWorkflowPayload;
|
|
4261
|
-
deletedAIProvider: DeletedAiProviderPayload;
|
|
4262
4089
|
deletedAssistantSession: DeletedAssistantSessionPayload;
|
|
4263
4090
|
deletedAutomateEntry: DeletedAutomateEntryPayload;
|
|
4264
4091
|
deletedAutomateSession: DeletedAutomateSessionPayload;
|
|
@@ -4275,7 +4102,6 @@ export type SubscriptionRoot = {
|
|
|
4275
4102
|
deletedInterceptEntry: DeletedInterceptEntryPayload;
|
|
4276
4103
|
deletedInterceptMessage: DeletedInterceptMessagePayload;
|
|
4277
4104
|
deletedPluginPackage: DeletedPluginPackagePayload;
|
|
4278
|
-
deletedPluginPackageData: DeletedPluginPackageDataPayload;
|
|
4279
4105
|
deletedProject: DeletedProjectPayload;
|
|
4280
4106
|
deletedReplaySession: DeletedReplaySessionPayload;
|
|
4281
4107
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
@@ -4299,8 +4125,6 @@ export type SubscriptionRoot = {
|
|
|
4299
4125
|
startedDeleteInterceptEntriesTask: StartedDeleteInterceptEntriesTaskPayload;
|
|
4300
4126
|
startedRestoreBackupTask: StartedRestoreBackupTaskPayload;
|
|
4301
4127
|
startedTask: StartedTaskPayload;
|
|
4302
|
-
updatedAIProvider: UpdatedAiProviderPayload;
|
|
4303
|
-
updatedAIProviderAuthenticationStatus: UpdatedAiProviderAuthenticationStatusPayload;
|
|
4304
4128
|
updatedAssistantMessageTask: UpdatedAssistantMessageTaskPayload;
|
|
4305
4129
|
updatedAssistantSession: UpdatedAssistantSessionPayload;
|
|
4306
4130
|
updatedAutomateEntry: UpdatedAutomateEntryPayload;
|
|
@@ -4325,7 +4149,6 @@ export type SubscriptionRoot = {
|
|
|
4325
4149
|
updatedPassthroughOptions: UpdatedPassthroughOptionsPayload;
|
|
4326
4150
|
updatedPlugin: UpdatedPluginPayload;
|
|
4327
4151
|
updatedPluginPackage: UpdatedPluginPackagePayload;
|
|
4328
|
-
updatedPluginPackageData: UpdatedPluginPackageDataPayload;
|
|
4329
4152
|
updatedProject: UpdatedProjectPayload;
|
|
4330
4153
|
updatedReplayEntryDraft: UpdatedReplayEntryDraftPayload;
|
|
4331
4154
|
updatedReplayEntryWs: UpdatedReplayEntryWsPayload;
|
|
@@ -4374,16 +4197,10 @@ export type SubscriptionRootCreatedStreamArgs = {
|
|
|
4374
4197
|
export type SubscriptionRootCreatedStreamWsMessageArgs = {
|
|
4375
4198
|
filter?: InputMaybe<StreamQlInput>;
|
|
4376
4199
|
};
|
|
4377
|
-
export type SubscriptionRootDeletedPluginPackageDataArgs = {
|
|
4378
|
-
packageId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
4379
|
-
};
|
|
4380
4200
|
export type SubscriptionRootUpdatedInterceptEntryArgs = {
|
|
4381
4201
|
filter?: InputMaybe<HttpqlInput>;
|
|
4382
4202
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
4383
4203
|
};
|
|
4384
|
-
export type SubscriptionRootUpdatedPluginPackageDataArgs = {
|
|
4385
|
-
packageId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
4386
|
-
};
|
|
4387
4204
|
export type SubscriptionRootUpdatedRequestArgs = {
|
|
4388
4205
|
filter?: InputMaybe<HttpqlInput>;
|
|
4389
4206
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -5026,8 +4843,25 @@ export declare const TaskStatus: {
|
|
|
5026
4843
|
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
5027
4844
|
export type TestAiProviderError = AiUserError | OtherUserError;
|
|
5028
4845
|
export type TestAiProviderInput = {
|
|
5029
|
-
|
|
5030
|
-
|
|
4846
|
+
anthropic: AiProviderAnthropicInput;
|
|
4847
|
+
google?: never;
|
|
4848
|
+
openai?: never;
|
|
4849
|
+
openrouter?: never;
|
|
4850
|
+
} | {
|
|
4851
|
+
anthropic?: never;
|
|
4852
|
+
google: AiProviderGoogleInput;
|
|
4853
|
+
openai?: never;
|
|
4854
|
+
openrouter?: never;
|
|
4855
|
+
} | {
|
|
4856
|
+
anthropic?: never;
|
|
4857
|
+
google?: never;
|
|
4858
|
+
openai: AiProviderOpenAiInput;
|
|
4859
|
+
openrouter?: never;
|
|
4860
|
+
} | {
|
|
4861
|
+
anthropic?: never;
|
|
4862
|
+
google?: never;
|
|
4863
|
+
openai?: never;
|
|
4864
|
+
openrouter: AiProviderOpenRouterInput;
|
|
5031
4865
|
};
|
|
5032
4866
|
export type TestAiProviderPayload = {
|
|
5033
4867
|
error?: Maybe<TestAiProviderError>;
|
|
@@ -5146,16 +4980,6 @@ export type UnknownIdUserError = UserError & {
|
|
|
5146
4980
|
export type UnsupportedPlatformUserError = UserError & {
|
|
5147
4981
|
code: Scalars["String"]["output"];
|
|
5148
4982
|
};
|
|
5149
|
-
export type UpdateAiProviderError = AiUserError | AliasTakenUserError | OtherUserError | UnknownIdUserError;
|
|
5150
|
-
export type UpdateAiProviderInput = {
|
|
5151
|
-
alias: Scalars["Alias"]["input"];
|
|
5152
|
-
apiKey: Scalars["Sensitive"]["input"];
|
|
5153
|
-
configuration: AiProviderConfigurationInput;
|
|
5154
|
-
};
|
|
5155
|
-
export type UpdateAiProviderPayload = {
|
|
5156
|
-
error?: Maybe<UpdateAiProviderError>;
|
|
5157
|
-
provider?: Maybe<AiProvider>;
|
|
5158
|
-
};
|
|
5159
4983
|
export type UpdateAutomateSessionError = CloudUserError | OtherUserError | PermissionDeniedUserError;
|
|
5160
4984
|
export type UpdateAutomateSessionInput = {
|
|
5161
4985
|
connection: ConnectionInfoInput;
|
|
@@ -5336,13 +5160,6 @@ export type UpdateWorkflowPayload = {
|
|
|
5336
5160
|
error?: Maybe<UpdateWorkflowError>;
|
|
5337
5161
|
workflow?: Maybe<Workflow>;
|
|
5338
5162
|
};
|
|
5339
|
-
export type UpdatedAiProviderAuthenticationStatusPayload = {
|
|
5340
|
-
providerId: Scalars["ID"]["output"];
|
|
5341
|
-
status: AiProviderAuthenticationStatus;
|
|
5342
|
-
};
|
|
5343
|
-
export type UpdatedAiProviderPayload = {
|
|
5344
|
-
provider: AiProvider;
|
|
5345
|
-
};
|
|
5346
5163
|
export type UpdatedAssistantMessageTaskPayload = {
|
|
5347
5164
|
task: AssistantMessageTask;
|
|
5348
5165
|
};
|
|
@@ -5427,9 +5244,6 @@ export type UpdatedInterceptStatusPayload = {
|
|
|
5427
5244
|
export type UpdatedPassthroughOptionsPayload = {
|
|
5428
5245
|
options: PassthroughOptions;
|
|
5429
5246
|
};
|
|
5430
|
-
export type UpdatedPluginPackageDataPayload = {
|
|
5431
|
-
packageData: PluginPackageData;
|
|
5432
|
-
};
|
|
5433
5247
|
export type UpdatedPluginPackagePayload = {
|
|
5434
5248
|
package: PluginPackage;
|
|
5435
5249
|
};
|
|
@@ -5656,184 +5470,6 @@ export type Workspace = {
|
|
|
5656
5470
|
id: Scalars["ID"]["output"];
|
|
5657
5471
|
name: Scalars["String"]["output"];
|
|
5658
5472
|
};
|
|
5659
|
-
export type AiProviderFullFragment = {
|
|
5660
|
-
__typename: "AIProvider";
|
|
5661
|
-
id: string;
|
|
5662
|
-
alias: string;
|
|
5663
|
-
kind: AiProviderKind;
|
|
5664
|
-
api: AiProviderApi;
|
|
5665
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
5666
|
-
apiKey: string;
|
|
5667
|
-
url?: string | undefined | null;
|
|
5668
|
-
};
|
|
5669
|
-
export type TestAiProviderPayloadFullFragment = {
|
|
5670
|
-
success?: boolean | undefined | null;
|
|
5671
|
-
error?: {
|
|
5672
|
-
__typename: "AIUserError";
|
|
5673
|
-
message: string;
|
|
5674
|
-
reason: AiErrorReason;
|
|
5675
|
-
code: string;
|
|
5676
|
-
} | {
|
|
5677
|
-
__typename: "OtherUserError";
|
|
5678
|
-
code: string;
|
|
5679
|
-
} | undefined | null;
|
|
5680
|
-
};
|
|
5681
|
-
export type AiProvidersQueryVariables = Exact<{
|
|
5682
|
-
[key: string]: never;
|
|
5683
|
-
}>;
|
|
5684
|
-
export type AiProvidersQuery = {
|
|
5685
|
-
aiProviders: Array<{
|
|
5686
|
-
__typename: "AIProvider";
|
|
5687
|
-
id: string;
|
|
5688
|
-
alias: string;
|
|
5689
|
-
kind: AiProviderKind;
|
|
5690
|
-
api: AiProviderApi;
|
|
5691
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
5692
|
-
apiKey: string;
|
|
5693
|
-
url?: string | undefined | null;
|
|
5694
|
-
}>;
|
|
5695
|
-
};
|
|
5696
|
-
export type CreateAiProviderMutationVariables = Exact<{
|
|
5697
|
-
input: CreateAiProviderInput;
|
|
5698
|
-
}>;
|
|
5699
|
-
export type CreateAiProviderMutation = {
|
|
5700
|
-
createAIProvider: {
|
|
5701
|
-
provider?: {
|
|
5702
|
-
__typename: "AIProvider";
|
|
5703
|
-
id: string;
|
|
5704
|
-
alias: string;
|
|
5705
|
-
kind: AiProviderKind;
|
|
5706
|
-
api: AiProviderApi;
|
|
5707
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
5708
|
-
apiKey: string;
|
|
5709
|
-
url?: string | undefined | null;
|
|
5710
|
-
} | undefined | null;
|
|
5711
|
-
error?: {
|
|
5712
|
-
__typename: "AIUserError";
|
|
5713
|
-
message: string;
|
|
5714
|
-
reason: AiErrorReason;
|
|
5715
|
-
code: string;
|
|
5716
|
-
} | {
|
|
5717
|
-
__typename: "AliasTakenUserError";
|
|
5718
|
-
alias: string;
|
|
5719
|
-
code: string;
|
|
5720
|
-
} | {
|
|
5721
|
-
__typename: "OtherUserError";
|
|
5722
|
-
code: string;
|
|
5723
|
-
} | undefined | null;
|
|
5724
|
-
};
|
|
5725
|
-
};
|
|
5726
|
-
export type UpdateAiProviderMutationVariables = Exact<{
|
|
5727
|
-
id: Scalars["ID"]["input"];
|
|
5728
|
-
input: UpdateAiProviderInput;
|
|
5729
|
-
}>;
|
|
5730
|
-
export type UpdateAiProviderMutation = {
|
|
5731
|
-
updateAIProvider: {
|
|
5732
|
-
provider?: {
|
|
5733
|
-
__typename: "AIProvider";
|
|
5734
|
-
id: string;
|
|
5735
|
-
alias: string;
|
|
5736
|
-
kind: AiProviderKind;
|
|
5737
|
-
api: AiProviderApi;
|
|
5738
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
5739
|
-
apiKey: string;
|
|
5740
|
-
url?: string | undefined | null;
|
|
5741
|
-
} | undefined | null;
|
|
5742
|
-
error?: {
|
|
5743
|
-
__typename: "AIUserError";
|
|
5744
|
-
message: string;
|
|
5745
|
-
reason: AiErrorReason;
|
|
5746
|
-
code: string;
|
|
5747
|
-
} | {
|
|
5748
|
-
__typename: "AliasTakenUserError";
|
|
5749
|
-
alias: string;
|
|
5750
|
-
code: string;
|
|
5751
|
-
} | {
|
|
5752
|
-
__typename: "OtherUserError";
|
|
5753
|
-
code: string;
|
|
5754
|
-
} | {
|
|
5755
|
-
__typename: "UnknownIdUserError";
|
|
5756
|
-
id: string;
|
|
5757
|
-
code: string;
|
|
5758
|
-
} | undefined | null;
|
|
5759
|
-
};
|
|
5760
|
-
};
|
|
5761
|
-
export type DeleteAiProviderMutationVariables = Exact<{
|
|
5762
|
-
id: Scalars["ID"]["input"];
|
|
5763
|
-
}>;
|
|
5764
|
-
export type DeleteAiProviderMutation = {
|
|
5765
|
-
deleteAIProvider: {
|
|
5766
|
-
deletedId?: string | undefined | null;
|
|
5767
|
-
};
|
|
5768
|
-
};
|
|
5769
|
-
export type TestAiProviderMutationVariables = Exact<{
|
|
5770
|
-
input: TestAiProviderInput;
|
|
5771
|
-
}>;
|
|
5772
|
-
export type TestAiProviderMutation = {
|
|
5773
|
-
testAIProvider: {
|
|
5774
|
-
success?: boolean | undefined | null;
|
|
5775
|
-
error?: {
|
|
5776
|
-
__typename: "AIUserError";
|
|
5777
|
-
message: string;
|
|
5778
|
-
reason: AiErrorReason;
|
|
5779
|
-
code: string;
|
|
5780
|
-
} | {
|
|
5781
|
-
__typename: "OtherUserError";
|
|
5782
|
-
code: string;
|
|
5783
|
-
} | undefined | null;
|
|
5784
|
-
};
|
|
5785
|
-
};
|
|
5786
|
-
export type CreatedAiProviderSubscriptionVariables = Exact<{
|
|
5787
|
-
[key: string]: never;
|
|
5788
|
-
}>;
|
|
5789
|
-
export type CreatedAiProviderSubscription = {
|
|
5790
|
-
createdAIProvider: {
|
|
5791
|
-
provider: {
|
|
5792
|
-
__typename: "AIProvider";
|
|
5793
|
-
id: string;
|
|
5794
|
-
alias: string;
|
|
5795
|
-
kind: AiProviderKind;
|
|
5796
|
-
api: AiProviderApi;
|
|
5797
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
5798
|
-
apiKey: string;
|
|
5799
|
-
url?: string | undefined | null;
|
|
5800
|
-
};
|
|
5801
|
-
};
|
|
5802
|
-
};
|
|
5803
|
-
export type UpdatedAiProviderSubscriptionVariables = Exact<{
|
|
5804
|
-
[key: string]: never;
|
|
5805
|
-
}>;
|
|
5806
|
-
export type UpdatedAiProviderSubscription = {
|
|
5807
|
-
updatedAIProvider: {
|
|
5808
|
-
provider: {
|
|
5809
|
-
__typename: "AIProvider";
|
|
5810
|
-
id: string;
|
|
5811
|
-
alias: string;
|
|
5812
|
-
kind: AiProviderKind;
|
|
5813
|
-
api: AiProviderApi;
|
|
5814
|
-
authenticationStatus: AiProviderAuthenticationStatus;
|
|
5815
|
-
apiKey: string;
|
|
5816
|
-
url?: string | undefined | null;
|
|
5817
|
-
};
|
|
5818
|
-
};
|
|
5819
|
-
};
|
|
5820
|
-
export type UpdatedAiProviderAuthenticationStatusSubscriptionVariables = Exact<{
|
|
5821
|
-
[key: string]: never;
|
|
5822
|
-
}>;
|
|
5823
|
-
export type UpdatedAiProviderAuthenticationStatusSubscription = {
|
|
5824
|
-
updatedAIProviderAuthenticationStatus: {
|
|
5825
|
-
providerId: string;
|
|
5826
|
-
status: AiProviderAuthenticationStatus;
|
|
5827
|
-
};
|
|
5828
|
-
};
|
|
5829
|
-
export type DeletedAiProviderSubscriptionVariables = Exact<{
|
|
5830
|
-
[key: string]: never;
|
|
5831
|
-
}>;
|
|
5832
|
-
export type DeletedAiProviderSubscription = {
|
|
5833
|
-
deletedAIProvider: {
|
|
5834
|
-
deletedProviderId: string;
|
|
5835
|
-
};
|
|
5836
|
-
};
|
|
5837
5473
|
export type TrackMutationVariables = Exact<{
|
|
5838
5474
|
input: TrackInput;
|
|
5839
5475
|
}>;
|
|
@@ -8085,25 +7721,6 @@ export type StartAutomateTaskMutation = {
|
|
|
8085
7721
|
} | undefined | null;
|
|
8086
7722
|
};
|
|
8087
7723
|
};
|
|
8088
|
-
export type ExportAutomateEntriesMutationVariables = Exact<{
|
|
8089
|
-
input: ExportAutomateEntriesInput;
|
|
8090
|
-
}>;
|
|
8091
|
-
export type ExportAutomateEntriesMutation = {
|
|
8092
|
-
exportAutomateEntries: {
|
|
8093
|
-
export?: {
|
|
8094
|
-
downloadUri: string;
|
|
8095
|
-
id: string;
|
|
8096
|
-
} | undefined | null;
|
|
8097
|
-
error?: {
|
|
8098
|
-
__typename: "OtherUserError";
|
|
8099
|
-
code: string;
|
|
8100
|
-
} | {
|
|
8101
|
-
__typename: "PermissionDeniedUserError";
|
|
8102
|
-
code: string;
|
|
8103
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
8104
|
-
} | undefined | null;
|
|
8105
|
-
};
|
|
8106
|
-
};
|
|
8107
7724
|
export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
|
|
8108
7725
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
8109
7726
|
filter?: InputMaybe<HttpqlInput>;
|
|
@@ -9715,12 +9332,6 @@ export type UpdatedEnvironmentContextSubscription = {
|
|
|
9715
9332
|
};
|
|
9716
9333
|
};
|
|
9717
9334
|
};
|
|
9718
|
-
export type AiUserErrorFullFragment = {
|
|
9719
|
-
__typename: "AIUserError";
|
|
9720
|
-
message: string;
|
|
9721
|
-
reason: AiErrorReason;
|
|
9722
|
-
code: string;
|
|
9723
|
-
};
|
|
9724
9335
|
export type WsUserErrorFullFragment = {
|
|
9725
9336
|
__typename: "WSUserError";
|
|
9726
9337
|
message: string;
|
|
@@ -11805,6 +11416,21 @@ export type OnUpdatedHostedFileSubscription = {
|
|
|
11805
11416
|
};
|
|
11806
11417
|
export type InstanceSettingsFullFragment = {
|
|
11807
11418
|
__typename: "InstanceSettings";
|
|
11419
|
+
aiProviders: {
|
|
11420
|
+
anthropic?: {
|
|
11421
|
+
apiKey: string;
|
|
11422
|
+
} | undefined | null;
|
|
11423
|
+
google?: {
|
|
11424
|
+
apiKey: string;
|
|
11425
|
+
} | undefined | null;
|
|
11426
|
+
openai?: {
|
|
11427
|
+
apiKey: string;
|
|
11428
|
+
url?: string | undefined | null;
|
|
11429
|
+
} | undefined | null;
|
|
11430
|
+
openrouter?: {
|
|
11431
|
+
apiKey: string;
|
|
11432
|
+
} | undefined | null;
|
|
11433
|
+
};
|
|
11808
11434
|
onboarding: {
|
|
11809
11435
|
__typename: "OnboardingState";
|
|
11810
11436
|
analytic: boolean;
|
|
@@ -11820,6 +11446,16 @@ export type InstanceSettingsFullFragment = {
|
|
|
11820
11446
|
stack: SettingsNetworkStack;
|
|
11821
11447
|
};
|
|
11822
11448
|
};
|
|
11449
|
+
export type TestAiProviderPayloadFullFragment = {
|
|
11450
|
+
success?: boolean | undefined | null;
|
|
11451
|
+
error?: {
|
|
11452
|
+
code: string;
|
|
11453
|
+
message: string;
|
|
11454
|
+
reason: AiErrorReason;
|
|
11455
|
+
} | {
|
|
11456
|
+
code: string;
|
|
11457
|
+
} | undefined | null;
|
|
11458
|
+
};
|
|
11823
11459
|
export type SetInstanceSettingsMutationVariables = Exact<{
|
|
11824
11460
|
input: SetInstanceSettingsInput;
|
|
11825
11461
|
}>;
|
|
@@ -11827,6 +11463,21 @@ export type SetInstanceSettingsMutation = {
|
|
|
11827
11463
|
setInstanceSettings: {
|
|
11828
11464
|
settings: {
|
|
11829
11465
|
__typename: "InstanceSettings";
|
|
11466
|
+
aiProviders: {
|
|
11467
|
+
anthropic?: {
|
|
11468
|
+
apiKey: string;
|
|
11469
|
+
} | undefined | null;
|
|
11470
|
+
google?: {
|
|
11471
|
+
apiKey: string;
|
|
11472
|
+
} | undefined | null;
|
|
11473
|
+
openai?: {
|
|
11474
|
+
apiKey: string;
|
|
11475
|
+
url?: string | undefined | null;
|
|
11476
|
+
} | undefined | null;
|
|
11477
|
+
openrouter?: {
|
|
11478
|
+
apiKey: string;
|
|
11479
|
+
} | undefined | null;
|
|
11480
|
+
};
|
|
11830
11481
|
onboarding: {
|
|
11831
11482
|
__typename: "OnboardingState";
|
|
11832
11483
|
analytic: boolean;
|
|
@@ -11844,12 +11495,42 @@ export type SetInstanceSettingsMutation = {
|
|
|
11844
11495
|
};
|
|
11845
11496
|
};
|
|
11846
11497
|
};
|
|
11498
|
+
export type TestAiProviderMutationVariables = Exact<{
|
|
11499
|
+
input: TestAiProviderInput;
|
|
11500
|
+
}>;
|
|
11501
|
+
export type TestAiProviderMutation = {
|
|
11502
|
+
testAiProvider: {
|
|
11503
|
+
success?: boolean | undefined | null;
|
|
11504
|
+
error?: {
|
|
11505
|
+
code: string;
|
|
11506
|
+
message: string;
|
|
11507
|
+
reason: AiErrorReason;
|
|
11508
|
+
} | {
|
|
11509
|
+
code: string;
|
|
11510
|
+
} | undefined | null;
|
|
11511
|
+
};
|
|
11512
|
+
};
|
|
11847
11513
|
export type InstanceSettingsQueryVariables = Exact<{
|
|
11848
11514
|
[key: string]: never;
|
|
11849
11515
|
}>;
|
|
11850
11516
|
export type InstanceSettingsQuery = {
|
|
11851
11517
|
instanceSettings: {
|
|
11852
11518
|
__typename: "InstanceSettings";
|
|
11519
|
+
aiProviders: {
|
|
11520
|
+
anthropic?: {
|
|
11521
|
+
apiKey: string;
|
|
11522
|
+
} | undefined | null;
|
|
11523
|
+
google?: {
|
|
11524
|
+
apiKey: string;
|
|
11525
|
+
} | undefined | null;
|
|
11526
|
+
openai?: {
|
|
11527
|
+
apiKey: string;
|
|
11528
|
+
url?: string | undefined | null;
|
|
11529
|
+
} | undefined | null;
|
|
11530
|
+
openrouter?: {
|
|
11531
|
+
apiKey: string;
|
|
11532
|
+
} | undefined | null;
|
|
11533
|
+
};
|
|
11853
11534
|
onboarding: {
|
|
11854
11535
|
__typename: "OnboardingState";
|
|
11855
11536
|
analytic: boolean;
|
|
@@ -11873,6 +11554,21 @@ export type UpdatedInstanceSettingsSubscription = {
|
|
|
11873
11554
|
updatedInstanceSettings: {
|
|
11874
11555
|
settings: {
|
|
11875
11556
|
__typename: "InstanceSettings";
|
|
11557
|
+
aiProviders: {
|
|
11558
|
+
anthropic?: {
|
|
11559
|
+
apiKey: string;
|
|
11560
|
+
} | undefined | null;
|
|
11561
|
+
google?: {
|
|
11562
|
+
apiKey: string;
|
|
11563
|
+
} | undefined | null;
|
|
11564
|
+
openai?: {
|
|
11565
|
+
apiKey: string;
|
|
11566
|
+
url?: string | undefined | null;
|
|
11567
|
+
} | undefined | null;
|
|
11568
|
+
openrouter?: {
|
|
11569
|
+
apiKey: string;
|
|
11570
|
+
} | undefined | null;
|
|
11571
|
+
};
|
|
11876
11572
|
onboarding: {
|
|
11877
11573
|
__typename: "OnboardingState";
|
|
11878
11574
|
analytic: boolean;
|
|
@@ -19225,886 +18921,36 @@ export type CreatedTamperRuleSubscription = {
|
|
|
19225
18921
|
};
|
|
19226
18922
|
};
|
|
19227
18923
|
};
|
|
19228
|
-
export type
|
|
19229
|
-
|
|
19230
|
-
|
|
19231
|
-
|
|
19232
|
-
|
|
19233
|
-
|
|
19234
|
-
|
|
19235
|
-
|
|
19236
|
-
|
|
19237
|
-
|
|
19238
|
-
|
|
19239
|
-
|
|
19240
|
-
|
|
19241
|
-
|
|
19242
|
-
|
|
19243
|
-
|
|
19244
|
-
|
|
19245
|
-
|
|
19246
|
-
|
|
19247
|
-
|
|
19248
|
-
} | {
|
|
19249
|
-
__typename: "TamperMatcherValue";
|
|
19250
|
-
value: string;
|
|
19251
|
-
};
|
|
19252
|
-
replacer: {
|
|
19253
|
-
__typename: "TamperReplacerTerm";
|
|
19254
|
-
term: string;
|
|
19255
|
-
} | {
|
|
19256
|
-
__typename: "TamperReplacerWorkflow";
|
|
19257
|
-
id: string;
|
|
19258
|
-
};
|
|
19259
|
-
};
|
|
19260
|
-
} | {
|
|
19261
|
-
__typename: "TamperSectionRequestBody";
|
|
19262
|
-
operation: {
|
|
19263
|
-
__typename: "TamperOperationBodyRaw";
|
|
19264
|
-
matcher: {
|
|
19265
|
-
__typename: "TamperMatcherFull";
|
|
19266
|
-
} | {
|
|
19267
|
-
__typename: "TamperMatcherRegex";
|
|
19268
|
-
regex: string;
|
|
19269
|
-
} | {
|
|
19270
|
-
__typename: "TamperMatcherValue";
|
|
19271
|
-
value: string;
|
|
19272
|
-
};
|
|
19273
|
-
replacer: {
|
|
19274
|
-
__typename: "TamperReplacerTerm";
|
|
19275
|
-
term: string;
|
|
19276
|
-
} | {
|
|
19277
|
-
__typename: "TamperReplacerWorkflow";
|
|
19278
|
-
id: string;
|
|
19279
|
-
};
|
|
19280
|
-
};
|
|
19281
|
-
} | {
|
|
19282
|
-
__typename: "TamperSectionRequestFirstLine";
|
|
19283
|
-
operation: {
|
|
19284
|
-
__typename: "TamperOperationFirstLineRaw";
|
|
19285
|
-
matcher: {
|
|
19286
|
-
__typename: "TamperMatcherFull";
|
|
19287
|
-
} | {
|
|
19288
|
-
__typename: "TamperMatcherRegex";
|
|
19289
|
-
regex: string;
|
|
19290
|
-
} | {
|
|
19291
|
-
__typename: "TamperMatcherValue";
|
|
19292
|
-
value: string;
|
|
19293
|
-
};
|
|
19294
|
-
replacer: {
|
|
19295
|
-
__typename: "TamperReplacerTerm";
|
|
19296
|
-
term: string;
|
|
19297
|
-
} | {
|
|
19298
|
-
__typename: "TamperReplacerWorkflow";
|
|
19299
|
-
id: string;
|
|
19300
|
-
};
|
|
19301
|
-
};
|
|
19302
|
-
} | {
|
|
19303
|
-
__typename: "TamperSectionRequestHeader";
|
|
19304
|
-
operation: {
|
|
19305
|
-
__typename: "TamperOperationHeaderAdd";
|
|
19306
|
-
matcher: {
|
|
19307
|
-
__typename: "TamperMatcherName";
|
|
19308
|
-
name: string;
|
|
19309
|
-
};
|
|
19310
|
-
replacer: {
|
|
19311
|
-
__typename: "TamperReplacerTerm";
|
|
19312
|
-
term: string;
|
|
19313
|
-
} | {
|
|
19314
|
-
__typename: "TamperReplacerWorkflow";
|
|
19315
|
-
id: string;
|
|
19316
|
-
};
|
|
19317
|
-
} | {
|
|
19318
|
-
__typename: "TamperOperationHeaderRaw";
|
|
19319
|
-
matcher: {
|
|
19320
|
-
__typename: "TamperMatcherFull";
|
|
19321
|
-
} | {
|
|
19322
|
-
__typename: "TamperMatcherRegex";
|
|
19323
|
-
regex: string;
|
|
19324
|
-
} | {
|
|
19325
|
-
__typename: "TamperMatcherValue";
|
|
19326
|
-
value: string;
|
|
19327
|
-
};
|
|
19328
|
-
replacer: {
|
|
19329
|
-
__typename: "TamperReplacerTerm";
|
|
19330
|
-
term: string;
|
|
19331
|
-
} | {
|
|
19332
|
-
__typename: "TamperReplacerWorkflow";
|
|
19333
|
-
id: string;
|
|
19334
|
-
};
|
|
19335
|
-
} | {
|
|
19336
|
-
__typename: "TamperOperationHeaderRemove";
|
|
19337
|
-
matcher: {
|
|
19338
|
-
__typename: "TamperMatcherName";
|
|
19339
|
-
name: string;
|
|
19340
|
-
};
|
|
19341
|
-
} | {
|
|
19342
|
-
__typename: "TamperOperationHeaderUpdate";
|
|
19343
|
-
matcher: {
|
|
19344
|
-
__typename: "TamperMatcherName";
|
|
19345
|
-
name: string;
|
|
19346
|
-
};
|
|
19347
|
-
replacer: {
|
|
19348
|
-
__typename: "TamperReplacerTerm";
|
|
19349
|
-
term: string;
|
|
19350
|
-
} | {
|
|
19351
|
-
__typename: "TamperReplacerWorkflow";
|
|
19352
|
-
id: string;
|
|
19353
|
-
};
|
|
19354
|
-
};
|
|
19355
|
-
} | {
|
|
19356
|
-
__typename: "TamperSectionRequestMethod";
|
|
19357
|
-
operation: {
|
|
19358
|
-
__typename: "TamperOperationMethodUpdate";
|
|
19359
|
-
replacer: {
|
|
19360
|
-
__typename: "TamperReplacerTerm";
|
|
19361
|
-
term: string;
|
|
19362
|
-
} | {
|
|
19363
|
-
__typename: "TamperReplacerWorkflow";
|
|
19364
|
-
id: string;
|
|
19365
|
-
};
|
|
19366
|
-
};
|
|
19367
|
-
} | {
|
|
19368
|
-
__typename: "TamperSectionRequestPath";
|
|
19369
|
-
operation: {
|
|
19370
|
-
__typename: "TamperOperationPathRaw";
|
|
19371
|
-
matcher: {
|
|
19372
|
-
__typename: "TamperMatcherFull";
|
|
19373
|
-
} | {
|
|
19374
|
-
__typename: "TamperMatcherRegex";
|
|
19375
|
-
regex: string;
|
|
19376
|
-
} | {
|
|
19377
|
-
__typename: "TamperMatcherValue";
|
|
19378
|
-
value: string;
|
|
19379
|
-
};
|
|
19380
|
-
replacer: {
|
|
19381
|
-
__typename: "TamperReplacerTerm";
|
|
19382
|
-
term: string;
|
|
19383
|
-
} | {
|
|
19384
|
-
__typename: "TamperReplacerWorkflow";
|
|
19385
|
-
id: string;
|
|
19386
|
-
};
|
|
19387
|
-
};
|
|
19388
|
-
} | {
|
|
19389
|
-
__typename: "TamperSectionRequestQuery";
|
|
19390
|
-
operation: {
|
|
19391
|
-
__typename: "TamperOperationQueryAdd";
|
|
19392
|
-
matcher: {
|
|
19393
|
-
__typename: "TamperMatcherName";
|
|
19394
|
-
name: string;
|
|
19395
|
-
};
|
|
19396
|
-
replacer: {
|
|
19397
|
-
__typename: "TamperReplacerTerm";
|
|
19398
|
-
term: string;
|
|
19399
|
-
} | {
|
|
19400
|
-
__typename: "TamperReplacerWorkflow";
|
|
19401
|
-
id: string;
|
|
19402
|
-
};
|
|
19403
|
-
} | {
|
|
19404
|
-
__typename: "TamperOperationQueryRaw";
|
|
19405
|
-
matcher: {
|
|
19406
|
-
__typename: "TamperMatcherFull";
|
|
19407
|
-
} | {
|
|
19408
|
-
__typename: "TamperMatcherRegex";
|
|
19409
|
-
regex: string;
|
|
19410
|
-
} | {
|
|
19411
|
-
__typename: "TamperMatcherValue";
|
|
19412
|
-
value: string;
|
|
19413
|
-
};
|
|
19414
|
-
replacer: {
|
|
19415
|
-
__typename: "TamperReplacerTerm";
|
|
19416
|
-
term: string;
|
|
19417
|
-
} | {
|
|
19418
|
-
__typename: "TamperReplacerWorkflow";
|
|
19419
|
-
id: string;
|
|
19420
|
-
};
|
|
19421
|
-
} | {
|
|
19422
|
-
__typename: "TamperOperationQueryRemove";
|
|
19423
|
-
matcher: {
|
|
19424
|
-
__typename: "TamperMatcherName";
|
|
19425
|
-
name: string;
|
|
19426
|
-
};
|
|
19427
|
-
} | {
|
|
19428
|
-
__typename: "TamperOperationQueryUpdate";
|
|
19429
|
-
matcher: {
|
|
19430
|
-
__typename: "TamperMatcherName";
|
|
19431
|
-
name: string;
|
|
19432
|
-
};
|
|
19433
|
-
replacer: {
|
|
19434
|
-
__typename: "TamperReplacerTerm";
|
|
19435
|
-
term: string;
|
|
19436
|
-
} | {
|
|
19437
|
-
__typename: "TamperReplacerWorkflow";
|
|
19438
|
-
id: string;
|
|
19439
|
-
};
|
|
19440
|
-
};
|
|
19441
|
-
} | {
|
|
19442
|
-
__typename: "TamperSectionRequestSNI";
|
|
19443
|
-
operation: {
|
|
19444
|
-
__typename: "TamperOperationSNIRaw";
|
|
19445
|
-
replacer: {
|
|
19446
|
-
__typename: "TamperReplacerTerm";
|
|
19447
|
-
term: string;
|
|
19448
|
-
} | {
|
|
19449
|
-
__typename: "TamperReplacerWorkflow";
|
|
19450
|
-
id: string;
|
|
19451
|
-
};
|
|
19452
|
-
};
|
|
19453
|
-
} | {
|
|
19454
|
-
__typename: "TamperSectionResponseAll";
|
|
19455
|
-
operation: {
|
|
19456
|
-
__typename: "TamperOperationAllRaw";
|
|
19457
|
-
matcher: {
|
|
19458
|
-
__typename: "TamperMatcherFull";
|
|
19459
|
-
} | {
|
|
19460
|
-
__typename: "TamperMatcherRegex";
|
|
19461
|
-
regex: string;
|
|
19462
|
-
} | {
|
|
19463
|
-
__typename: "TamperMatcherValue";
|
|
19464
|
-
value: string;
|
|
19465
|
-
};
|
|
19466
|
-
replacer: {
|
|
19467
|
-
__typename: "TamperReplacerTerm";
|
|
19468
|
-
term: string;
|
|
19469
|
-
} | {
|
|
19470
|
-
__typename: "TamperReplacerWorkflow";
|
|
19471
|
-
id: string;
|
|
19472
|
-
};
|
|
19473
|
-
};
|
|
19474
|
-
} | {
|
|
19475
|
-
__typename: "TamperSectionResponseBody";
|
|
19476
|
-
operation: {
|
|
19477
|
-
__typename: "TamperOperationBodyRaw";
|
|
19478
|
-
matcher: {
|
|
19479
|
-
__typename: "TamperMatcherFull";
|
|
19480
|
-
} | {
|
|
19481
|
-
__typename: "TamperMatcherRegex";
|
|
19482
|
-
regex: string;
|
|
19483
|
-
} | {
|
|
19484
|
-
__typename: "TamperMatcherValue";
|
|
19485
|
-
value: string;
|
|
19486
|
-
};
|
|
19487
|
-
replacer: {
|
|
19488
|
-
__typename: "TamperReplacerTerm";
|
|
19489
|
-
term: string;
|
|
19490
|
-
} | {
|
|
19491
|
-
__typename: "TamperReplacerWorkflow";
|
|
19492
|
-
id: string;
|
|
19493
|
-
};
|
|
19494
|
-
};
|
|
19495
|
-
} | {
|
|
19496
|
-
__typename: "TamperSectionResponseFirstLine";
|
|
19497
|
-
operation: {
|
|
19498
|
-
__typename: "TamperOperationFirstLineRaw";
|
|
19499
|
-
matcher: {
|
|
19500
|
-
__typename: "TamperMatcherFull";
|
|
19501
|
-
} | {
|
|
19502
|
-
__typename: "TamperMatcherRegex";
|
|
19503
|
-
regex: string;
|
|
19504
|
-
} | {
|
|
19505
|
-
__typename: "TamperMatcherValue";
|
|
19506
|
-
value: string;
|
|
19507
|
-
};
|
|
19508
|
-
replacer: {
|
|
19509
|
-
__typename: "TamperReplacerTerm";
|
|
19510
|
-
term: string;
|
|
19511
|
-
} | {
|
|
19512
|
-
__typename: "TamperReplacerWorkflow";
|
|
19513
|
-
id: string;
|
|
19514
|
-
};
|
|
19515
|
-
};
|
|
19516
|
-
} | {
|
|
19517
|
-
__typename: "TamperSectionResponseHeader";
|
|
19518
|
-
operation: {
|
|
19519
|
-
__typename: "TamperOperationHeaderAdd";
|
|
19520
|
-
matcher: {
|
|
19521
|
-
__typename: "TamperMatcherName";
|
|
19522
|
-
name: string;
|
|
19523
|
-
};
|
|
19524
|
-
replacer: {
|
|
19525
|
-
__typename: "TamperReplacerTerm";
|
|
19526
|
-
term: string;
|
|
19527
|
-
} | {
|
|
19528
|
-
__typename: "TamperReplacerWorkflow";
|
|
19529
|
-
id: string;
|
|
19530
|
-
};
|
|
19531
|
-
} | {
|
|
19532
|
-
__typename: "TamperOperationHeaderRaw";
|
|
19533
|
-
matcher: {
|
|
19534
|
-
__typename: "TamperMatcherFull";
|
|
19535
|
-
} | {
|
|
19536
|
-
__typename: "TamperMatcherRegex";
|
|
19537
|
-
regex: string;
|
|
19538
|
-
} | {
|
|
19539
|
-
__typename: "TamperMatcherValue";
|
|
19540
|
-
value: string;
|
|
19541
|
-
};
|
|
19542
|
-
replacer: {
|
|
19543
|
-
__typename: "TamperReplacerTerm";
|
|
19544
|
-
term: string;
|
|
19545
|
-
} | {
|
|
19546
|
-
__typename: "TamperReplacerWorkflow";
|
|
19547
|
-
id: string;
|
|
19548
|
-
};
|
|
19549
|
-
} | {
|
|
19550
|
-
__typename: "TamperOperationHeaderRemove";
|
|
19551
|
-
matcher: {
|
|
19552
|
-
__typename: "TamperMatcherName";
|
|
19553
|
-
name: string;
|
|
19554
|
-
};
|
|
19555
|
-
} | {
|
|
19556
|
-
__typename: "TamperOperationHeaderUpdate";
|
|
19557
|
-
matcher: {
|
|
19558
|
-
__typename: "TamperMatcherName";
|
|
19559
|
-
name: string;
|
|
19560
|
-
};
|
|
19561
|
-
replacer: {
|
|
19562
|
-
__typename: "TamperReplacerTerm";
|
|
19563
|
-
term: string;
|
|
19564
|
-
} | {
|
|
19565
|
-
__typename: "TamperReplacerWorkflow";
|
|
19566
|
-
id: string;
|
|
19567
|
-
};
|
|
19568
|
-
};
|
|
19569
|
-
} | {
|
|
19570
|
-
__typename: "TamperSectionResponseStatusCode";
|
|
19571
|
-
operation: {
|
|
19572
|
-
__typename: "TamperOperationStatusCodeUpdate";
|
|
19573
|
-
replacer: {
|
|
19574
|
-
__typename: "TamperReplacerTerm";
|
|
19575
|
-
term: string;
|
|
19576
|
-
} | {
|
|
19577
|
-
__typename: "TamperReplacerWorkflow";
|
|
19578
|
-
id: string;
|
|
19579
|
-
};
|
|
19580
|
-
};
|
|
19581
|
-
} | {
|
|
19582
|
-
__typename: "TamperSectionStreamWsMessageDownstream";
|
|
19583
|
-
operation: {
|
|
19584
|
-
__typename: "TamperOperationStreamWsMessageRaw";
|
|
19585
|
-
matcher: {
|
|
19586
|
-
__typename: "TamperMatcherFull";
|
|
19587
|
-
} | {
|
|
19588
|
-
__typename: "TamperMatcherRegex";
|
|
19589
|
-
regex: string;
|
|
19590
|
-
} | {
|
|
19591
|
-
__typename: "TamperMatcherValue";
|
|
19592
|
-
value: string;
|
|
19593
|
-
};
|
|
19594
|
-
replacer: {
|
|
19595
|
-
__typename: "TamperReplacerTerm";
|
|
19596
|
-
term: string;
|
|
19597
|
-
} | {
|
|
19598
|
-
__typename: "TamperReplacerWorkflow";
|
|
19599
|
-
id: string;
|
|
19600
|
-
};
|
|
19601
|
-
};
|
|
19602
|
-
} | {
|
|
19603
|
-
__typename: "TamperSectionStreamWsMessageUpstream";
|
|
19604
|
-
operation: {
|
|
19605
|
-
__typename: "TamperOperationStreamWsMessageRaw";
|
|
19606
|
-
matcher: {
|
|
19607
|
-
__typename: "TamperMatcherFull";
|
|
19608
|
-
} | {
|
|
19609
|
-
__typename: "TamperMatcherRegex";
|
|
19610
|
-
regex: string;
|
|
19611
|
-
} | {
|
|
19612
|
-
__typename: "TamperMatcherValue";
|
|
19613
|
-
value: string;
|
|
19614
|
-
};
|
|
19615
|
-
replacer: {
|
|
19616
|
-
__typename: "TamperReplacerTerm";
|
|
19617
|
-
term: string;
|
|
19618
|
-
} | {
|
|
19619
|
-
__typename: "TamperReplacerWorkflow";
|
|
19620
|
-
id: string;
|
|
19621
|
-
};
|
|
19622
|
-
};
|
|
19623
|
-
};
|
|
19624
|
-
enable?: {
|
|
19625
|
-
rank: string;
|
|
19626
|
-
} | undefined | null;
|
|
19627
|
-
condition?: {
|
|
19628
|
-
__typename: "HTTPQL";
|
|
19629
|
-
code: string;
|
|
19630
|
-
} | {
|
|
19631
|
-
__typename: "StreamQL";
|
|
19632
|
-
code: string;
|
|
19633
|
-
} | undefined | null;
|
|
19634
|
-
collection: {
|
|
19635
|
-
id: string;
|
|
19636
|
-
};
|
|
19637
|
-
};
|
|
18924
|
+
export type PageInfoFullFragment = {
|
|
18925
|
+
__typename: "PageInfo";
|
|
18926
|
+
hasPreviousPage: boolean;
|
|
18927
|
+
hasNextPage: boolean;
|
|
18928
|
+
startCursor?: string | undefined | null;
|
|
18929
|
+
endCursor?: string | undefined | null;
|
|
18930
|
+
};
|
|
18931
|
+
export type CountFullFragment = {
|
|
18932
|
+
__typename: "Count";
|
|
18933
|
+
value: number;
|
|
18934
|
+
snapshot: number;
|
|
18935
|
+
};
|
|
18936
|
+
type PluginMeta_PluginBackend_Fragment = {
|
|
18937
|
+
__typename: "PluginBackend";
|
|
18938
|
+
id: string;
|
|
18939
|
+
name?: string | undefined | null;
|
|
18940
|
+
enabled: boolean;
|
|
18941
|
+
manifestId: string;
|
|
18942
|
+
package: {
|
|
18943
|
+
id: string;
|
|
19638
18944
|
};
|
|
19639
18945
|
};
|
|
19640
|
-
|
|
19641
|
-
|
|
19642
|
-
|
|
19643
|
-
|
|
19644
|
-
|
|
19645
|
-
|
|
19646
|
-
|
|
19647
|
-
|
|
19648
|
-
};
|
|
19649
|
-
export type UpdatedTamperRuleCollectionSubscriptionVariables = Exact<{
|
|
19650
|
-
[key: string]: never;
|
|
19651
|
-
}>;
|
|
19652
|
-
export type UpdatedTamperRuleCollectionSubscription = {
|
|
19653
|
-
updatedTamperRuleCollection: {
|
|
19654
|
-
snapshot: number;
|
|
19655
|
-
collectionEdge: {
|
|
19656
|
-
cursor: string;
|
|
19657
|
-
node: {
|
|
19658
|
-
__typename: "TamperRuleCollection";
|
|
19659
|
-
id: string;
|
|
19660
|
-
name: string;
|
|
19661
|
-
rules: Array<{
|
|
19662
|
-
__typename: "TamperRule";
|
|
19663
|
-
id: string;
|
|
19664
|
-
name: string;
|
|
19665
|
-
sources: Array<Source>;
|
|
19666
|
-
section: {
|
|
19667
|
-
__typename: "TamperSectionRequestAll";
|
|
19668
|
-
operation: {
|
|
19669
|
-
__typename: "TamperOperationAllRaw";
|
|
19670
|
-
matcher: {
|
|
19671
|
-
__typename: "TamperMatcherFull";
|
|
19672
|
-
} | {
|
|
19673
|
-
__typename: "TamperMatcherRegex";
|
|
19674
|
-
regex: string;
|
|
19675
|
-
} | {
|
|
19676
|
-
__typename: "TamperMatcherValue";
|
|
19677
|
-
value: string;
|
|
19678
|
-
};
|
|
19679
|
-
replacer: {
|
|
19680
|
-
__typename: "TamperReplacerTerm";
|
|
19681
|
-
term: string;
|
|
19682
|
-
} | {
|
|
19683
|
-
__typename: "TamperReplacerWorkflow";
|
|
19684
|
-
id: string;
|
|
19685
|
-
};
|
|
19686
|
-
};
|
|
19687
|
-
} | {
|
|
19688
|
-
__typename: "TamperSectionRequestBody";
|
|
19689
|
-
operation: {
|
|
19690
|
-
__typename: "TamperOperationBodyRaw";
|
|
19691
|
-
matcher: {
|
|
19692
|
-
__typename: "TamperMatcherFull";
|
|
19693
|
-
} | {
|
|
19694
|
-
__typename: "TamperMatcherRegex";
|
|
19695
|
-
regex: string;
|
|
19696
|
-
} | {
|
|
19697
|
-
__typename: "TamperMatcherValue";
|
|
19698
|
-
value: string;
|
|
19699
|
-
};
|
|
19700
|
-
replacer: {
|
|
19701
|
-
__typename: "TamperReplacerTerm";
|
|
19702
|
-
term: string;
|
|
19703
|
-
} | {
|
|
19704
|
-
__typename: "TamperReplacerWorkflow";
|
|
19705
|
-
id: string;
|
|
19706
|
-
};
|
|
19707
|
-
};
|
|
19708
|
-
} | {
|
|
19709
|
-
__typename: "TamperSectionRequestFirstLine";
|
|
19710
|
-
operation: {
|
|
19711
|
-
__typename: "TamperOperationFirstLineRaw";
|
|
19712
|
-
matcher: {
|
|
19713
|
-
__typename: "TamperMatcherFull";
|
|
19714
|
-
} | {
|
|
19715
|
-
__typename: "TamperMatcherRegex";
|
|
19716
|
-
regex: string;
|
|
19717
|
-
} | {
|
|
19718
|
-
__typename: "TamperMatcherValue";
|
|
19719
|
-
value: string;
|
|
19720
|
-
};
|
|
19721
|
-
replacer: {
|
|
19722
|
-
__typename: "TamperReplacerTerm";
|
|
19723
|
-
term: string;
|
|
19724
|
-
} | {
|
|
19725
|
-
__typename: "TamperReplacerWorkflow";
|
|
19726
|
-
id: string;
|
|
19727
|
-
};
|
|
19728
|
-
};
|
|
19729
|
-
} | {
|
|
19730
|
-
__typename: "TamperSectionRequestHeader";
|
|
19731
|
-
operation: {
|
|
19732
|
-
__typename: "TamperOperationHeaderAdd";
|
|
19733
|
-
matcher: {
|
|
19734
|
-
__typename: "TamperMatcherName";
|
|
19735
|
-
name: string;
|
|
19736
|
-
};
|
|
19737
|
-
replacer: {
|
|
19738
|
-
__typename: "TamperReplacerTerm";
|
|
19739
|
-
term: string;
|
|
19740
|
-
} | {
|
|
19741
|
-
__typename: "TamperReplacerWorkflow";
|
|
19742
|
-
id: string;
|
|
19743
|
-
};
|
|
19744
|
-
} | {
|
|
19745
|
-
__typename: "TamperOperationHeaderRaw";
|
|
19746
|
-
matcher: {
|
|
19747
|
-
__typename: "TamperMatcherFull";
|
|
19748
|
-
} | {
|
|
19749
|
-
__typename: "TamperMatcherRegex";
|
|
19750
|
-
regex: string;
|
|
19751
|
-
} | {
|
|
19752
|
-
__typename: "TamperMatcherValue";
|
|
19753
|
-
value: string;
|
|
19754
|
-
};
|
|
19755
|
-
replacer: {
|
|
19756
|
-
__typename: "TamperReplacerTerm";
|
|
19757
|
-
term: string;
|
|
19758
|
-
} | {
|
|
19759
|
-
__typename: "TamperReplacerWorkflow";
|
|
19760
|
-
id: string;
|
|
19761
|
-
};
|
|
19762
|
-
} | {
|
|
19763
|
-
__typename: "TamperOperationHeaderRemove";
|
|
19764
|
-
matcher: {
|
|
19765
|
-
__typename: "TamperMatcherName";
|
|
19766
|
-
name: string;
|
|
19767
|
-
};
|
|
19768
|
-
} | {
|
|
19769
|
-
__typename: "TamperOperationHeaderUpdate";
|
|
19770
|
-
matcher: {
|
|
19771
|
-
__typename: "TamperMatcherName";
|
|
19772
|
-
name: string;
|
|
19773
|
-
};
|
|
19774
|
-
replacer: {
|
|
19775
|
-
__typename: "TamperReplacerTerm";
|
|
19776
|
-
term: string;
|
|
19777
|
-
} | {
|
|
19778
|
-
__typename: "TamperReplacerWorkflow";
|
|
19779
|
-
id: string;
|
|
19780
|
-
};
|
|
19781
|
-
};
|
|
19782
|
-
} | {
|
|
19783
|
-
__typename: "TamperSectionRequestMethod";
|
|
19784
|
-
operation: {
|
|
19785
|
-
__typename: "TamperOperationMethodUpdate";
|
|
19786
|
-
replacer: {
|
|
19787
|
-
__typename: "TamperReplacerTerm";
|
|
19788
|
-
term: string;
|
|
19789
|
-
} | {
|
|
19790
|
-
__typename: "TamperReplacerWorkflow";
|
|
19791
|
-
id: string;
|
|
19792
|
-
};
|
|
19793
|
-
};
|
|
19794
|
-
} | {
|
|
19795
|
-
__typename: "TamperSectionRequestPath";
|
|
19796
|
-
operation: {
|
|
19797
|
-
__typename: "TamperOperationPathRaw";
|
|
19798
|
-
matcher: {
|
|
19799
|
-
__typename: "TamperMatcherFull";
|
|
19800
|
-
} | {
|
|
19801
|
-
__typename: "TamperMatcherRegex";
|
|
19802
|
-
regex: string;
|
|
19803
|
-
} | {
|
|
19804
|
-
__typename: "TamperMatcherValue";
|
|
19805
|
-
value: string;
|
|
19806
|
-
};
|
|
19807
|
-
replacer: {
|
|
19808
|
-
__typename: "TamperReplacerTerm";
|
|
19809
|
-
term: string;
|
|
19810
|
-
} | {
|
|
19811
|
-
__typename: "TamperReplacerWorkflow";
|
|
19812
|
-
id: string;
|
|
19813
|
-
};
|
|
19814
|
-
};
|
|
19815
|
-
} | {
|
|
19816
|
-
__typename: "TamperSectionRequestQuery";
|
|
19817
|
-
operation: {
|
|
19818
|
-
__typename: "TamperOperationQueryAdd";
|
|
19819
|
-
matcher: {
|
|
19820
|
-
__typename: "TamperMatcherName";
|
|
19821
|
-
name: string;
|
|
19822
|
-
};
|
|
19823
|
-
replacer: {
|
|
19824
|
-
__typename: "TamperReplacerTerm";
|
|
19825
|
-
term: string;
|
|
19826
|
-
} | {
|
|
19827
|
-
__typename: "TamperReplacerWorkflow";
|
|
19828
|
-
id: string;
|
|
19829
|
-
};
|
|
19830
|
-
} | {
|
|
19831
|
-
__typename: "TamperOperationQueryRaw";
|
|
19832
|
-
matcher: {
|
|
19833
|
-
__typename: "TamperMatcherFull";
|
|
19834
|
-
} | {
|
|
19835
|
-
__typename: "TamperMatcherRegex";
|
|
19836
|
-
regex: string;
|
|
19837
|
-
} | {
|
|
19838
|
-
__typename: "TamperMatcherValue";
|
|
19839
|
-
value: string;
|
|
19840
|
-
};
|
|
19841
|
-
replacer: {
|
|
19842
|
-
__typename: "TamperReplacerTerm";
|
|
19843
|
-
term: string;
|
|
19844
|
-
} | {
|
|
19845
|
-
__typename: "TamperReplacerWorkflow";
|
|
19846
|
-
id: string;
|
|
19847
|
-
};
|
|
19848
|
-
} | {
|
|
19849
|
-
__typename: "TamperOperationQueryRemove";
|
|
19850
|
-
matcher: {
|
|
19851
|
-
__typename: "TamperMatcherName";
|
|
19852
|
-
name: string;
|
|
19853
|
-
};
|
|
19854
|
-
} | {
|
|
19855
|
-
__typename: "TamperOperationQueryUpdate";
|
|
19856
|
-
matcher: {
|
|
19857
|
-
__typename: "TamperMatcherName";
|
|
19858
|
-
name: string;
|
|
19859
|
-
};
|
|
19860
|
-
replacer: {
|
|
19861
|
-
__typename: "TamperReplacerTerm";
|
|
19862
|
-
term: string;
|
|
19863
|
-
} | {
|
|
19864
|
-
__typename: "TamperReplacerWorkflow";
|
|
19865
|
-
id: string;
|
|
19866
|
-
};
|
|
19867
|
-
};
|
|
19868
|
-
} | {
|
|
19869
|
-
__typename: "TamperSectionRequestSNI";
|
|
19870
|
-
operation: {
|
|
19871
|
-
__typename: "TamperOperationSNIRaw";
|
|
19872
|
-
replacer: {
|
|
19873
|
-
__typename: "TamperReplacerTerm";
|
|
19874
|
-
term: string;
|
|
19875
|
-
} | {
|
|
19876
|
-
__typename: "TamperReplacerWorkflow";
|
|
19877
|
-
id: string;
|
|
19878
|
-
};
|
|
19879
|
-
};
|
|
19880
|
-
} | {
|
|
19881
|
-
__typename: "TamperSectionResponseAll";
|
|
19882
|
-
operation: {
|
|
19883
|
-
__typename: "TamperOperationAllRaw";
|
|
19884
|
-
matcher: {
|
|
19885
|
-
__typename: "TamperMatcherFull";
|
|
19886
|
-
} | {
|
|
19887
|
-
__typename: "TamperMatcherRegex";
|
|
19888
|
-
regex: string;
|
|
19889
|
-
} | {
|
|
19890
|
-
__typename: "TamperMatcherValue";
|
|
19891
|
-
value: string;
|
|
19892
|
-
};
|
|
19893
|
-
replacer: {
|
|
19894
|
-
__typename: "TamperReplacerTerm";
|
|
19895
|
-
term: string;
|
|
19896
|
-
} | {
|
|
19897
|
-
__typename: "TamperReplacerWorkflow";
|
|
19898
|
-
id: string;
|
|
19899
|
-
};
|
|
19900
|
-
};
|
|
19901
|
-
} | {
|
|
19902
|
-
__typename: "TamperSectionResponseBody";
|
|
19903
|
-
operation: {
|
|
19904
|
-
__typename: "TamperOperationBodyRaw";
|
|
19905
|
-
matcher: {
|
|
19906
|
-
__typename: "TamperMatcherFull";
|
|
19907
|
-
} | {
|
|
19908
|
-
__typename: "TamperMatcherRegex";
|
|
19909
|
-
regex: string;
|
|
19910
|
-
} | {
|
|
19911
|
-
__typename: "TamperMatcherValue";
|
|
19912
|
-
value: string;
|
|
19913
|
-
};
|
|
19914
|
-
replacer: {
|
|
19915
|
-
__typename: "TamperReplacerTerm";
|
|
19916
|
-
term: string;
|
|
19917
|
-
} | {
|
|
19918
|
-
__typename: "TamperReplacerWorkflow";
|
|
19919
|
-
id: string;
|
|
19920
|
-
};
|
|
19921
|
-
};
|
|
19922
|
-
} | {
|
|
19923
|
-
__typename: "TamperSectionResponseFirstLine";
|
|
19924
|
-
operation: {
|
|
19925
|
-
__typename: "TamperOperationFirstLineRaw";
|
|
19926
|
-
matcher: {
|
|
19927
|
-
__typename: "TamperMatcherFull";
|
|
19928
|
-
} | {
|
|
19929
|
-
__typename: "TamperMatcherRegex";
|
|
19930
|
-
regex: string;
|
|
19931
|
-
} | {
|
|
19932
|
-
__typename: "TamperMatcherValue";
|
|
19933
|
-
value: string;
|
|
19934
|
-
};
|
|
19935
|
-
replacer: {
|
|
19936
|
-
__typename: "TamperReplacerTerm";
|
|
19937
|
-
term: string;
|
|
19938
|
-
} | {
|
|
19939
|
-
__typename: "TamperReplacerWorkflow";
|
|
19940
|
-
id: string;
|
|
19941
|
-
};
|
|
19942
|
-
};
|
|
19943
|
-
} | {
|
|
19944
|
-
__typename: "TamperSectionResponseHeader";
|
|
19945
|
-
operation: {
|
|
19946
|
-
__typename: "TamperOperationHeaderAdd";
|
|
19947
|
-
matcher: {
|
|
19948
|
-
__typename: "TamperMatcherName";
|
|
19949
|
-
name: string;
|
|
19950
|
-
};
|
|
19951
|
-
replacer: {
|
|
19952
|
-
__typename: "TamperReplacerTerm";
|
|
19953
|
-
term: string;
|
|
19954
|
-
} | {
|
|
19955
|
-
__typename: "TamperReplacerWorkflow";
|
|
19956
|
-
id: string;
|
|
19957
|
-
};
|
|
19958
|
-
} | {
|
|
19959
|
-
__typename: "TamperOperationHeaderRaw";
|
|
19960
|
-
matcher: {
|
|
19961
|
-
__typename: "TamperMatcherFull";
|
|
19962
|
-
} | {
|
|
19963
|
-
__typename: "TamperMatcherRegex";
|
|
19964
|
-
regex: string;
|
|
19965
|
-
} | {
|
|
19966
|
-
__typename: "TamperMatcherValue";
|
|
19967
|
-
value: string;
|
|
19968
|
-
};
|
|
19969
|
-
replacer: {
|
|
19970
|
-
__typename: "TamperReplacerTerm";
|
|
19971
|
-
term: string;
|
|
19972
|
-
} | {
|
|
19973
|
-
__typename: "TamperReplacerWorkflow";
|
|
19974
|
-
id: string;
|
|
19975
|
-
};
|
|
19976
|
-
} | {
|
|
19977
|
-
__typename: "TamperOperationHeaderRemove";
|
|
19978
|
-
matcher: {
|
|
19979
|
-
__typename: "TamperMatcherName";
|
|
19980
|
-
name: string;
|
|
19981
|
-
};
|
|
19982
|
-
} | {
|
|
19983
|
-
__typename: "TamperOperationHeaderUpdate";
|
|
19984
|
-
matcher: {
|
|
19985
|
-
__typename: "TamperMatcherName";
|
|
19986
|
-
name: string;
|
|
19987
|
-
};
|
|
19988
|
-
replacer: {
|
|
19989
|
-
__typename: "TamperReplacerTerm";
|
|
19990
|
-
term: string;
|
|
19991
|
-
} | {
|
|
19992
|
-
__typename: "TamperReplacerWorkflow";
|
|
19993
|
-
id: string;
|
|
19994
|
-
};
|
|
19995
|
-
};
|
|
19996
|
-
} | {
|
|
19997
|
-
__typename: "TamperSectionResponseStatusCode";
|
|
19998
|
-
operation: {
|
|
19999
|
-
__typename: "TamperOperationStatusCodeUpdate";
|
|
20000
|
-
replacer: {
|
|
20001
|
-
__typename: "TamperReplacerTerm";
|
|
20002
|
-
term: string;
|
|
20003
|
-
} | {
|
|
20004
|
-
__typename: "TamperReplacerWorkflow";
|
|
20005
|
-
id: string;
|
|
20006
|
-
};
|
|
20007
|
-
};
|
|
20008
|
-
} | {
|
|
20009
|
-
__typename: "TamperSectionStreamWsMessageDownstream";
|
|
20010
|
-
operation: {
|
|
20011
|
-
__typename: "TamperOperationStreamWsMessageRaw";
|
|
20012
|
-
matcher: {
|
|
20013
|
-
__typename: "TamperMatcherFull";
|
|
20014
|
-
} | {
|
|
20015
|
-
__typename: "TamperMatcherRegex";
|
|
20016
|
-
regex: string;
|
|
20017
|
-
} | {
|
|
20018
|
-
__typename: "TamperMatcherValue";
|
|
20019
|
-
value: string;
|
|
20020
|
-
};
|
|
20021
|
-
replacer: {
|
|
20022
|
-
__typename: "TamperReplacerTerm";
|
|
20023
|
-
term: string;
|
|
20024
|
-
} | {
|
|
20025
|
-
__typename: "TamperReplacerWorkflow";
|
|
20026
|
-
id: string;
|
|
20027
|
-
};
|
|
20028
|
-
};
|
|
20029
|
-
} | {
|
|
20030
|
-
__typename: "TamperSectionStreamWsMessageUpstream";
|
|
20031
|
-
operation: {
|
|
20032
|
-
__typename: "TamperOperationStreamWsMessageRaw";
|
|
20033
|
-
matcher: {
|
|
20034
|
-
__typename: "TamperMatcherFull";
|
|
20035
|
-
} | {
|
|
20036
|
-
__typename: "TamperMatcherRegex";
|
|
20037
|
-
regex: string;
|
|
20038
|
-
} | {
|
|
20039
|
-
__typename: "TamperMatcherValue";
|
|
20040
|
-
value: string;
|
|
20041
|
-
};
|
|
20042
|
-
replacer: {
|
|
20043
|
-
__typename: "TamperReplacerTerm";
|
|
20044
|
-
term: string;
|
|
20045
|
-
} | {
|
|
20046
|
-
__typename: "TamperReplacerWorkflow";
|
|
20047
|
-
id: string;
|
|
20048
|
-
};
|
|
20049
|
-
};
|
|
20050
|
-
};
|
|
20051
|
-
enable?: {
|
|
20052
|
-
rank: string;
|
|
20053
|
-
} | undefined | null;
|
|
20054
|
-
condition?: {
|
|
20055
|
-
__typename: "HTTPQL";
|
|
20056
|
-
code: string;
|
|
20057
|
-
} | {
|
|
20058
|
-
__typename: "StreamQL";
|
|
20059
|
-
code: string;
|
|
20060
|
-
} | undefined | null;
|
|
20061
|
-
collection: {
|
|
20062
|
-
id: string;
|
|
20063
|
-
};
|
|
20064
|
-
}>;
|
|
20065
|
-
};
|
|
20066
|
-
};
|
|
20067
|
-
};
|
|
20068
|
-
};
|
|
20069
|
-
export type DeletedTamperRuleCollectionSubscriptionVariables = Exact<{
|
|
20070
|
-
[key: string]: never;
|
|
20071
|
-
}>;
|
|
20072
|
-
export type DeletedTamperRuleCollectionSubscription = {
|
|
20073
|
-
deletedTamperRuleCollection: {
|
|
20074
|
-
deletedCollectionId: string;
|
|
20075
|
-
snapshot: number;
|
|
20076
|
-
};
|
|
20077
|
-
};
|
|
20078
|
-
export type PageInfoFullFragment = {
|
|
20079
|
-
__typename: "PageInfo";
|
|
20080
|
-
hasPreviousPage: boolean;
|
|
20081
|
-
hasNextPage: boolean;
|
|
20082
|
-
startCursor?: string | undefined | null;
|
|
20083
|
-
endCursor?: string | undefined | null;
|
|
20084
|
-
};
|
|
20085
|
-
export type CountFullFragment = {
|
|
20086
|
-
__typename: "Count";
|
|
20087
|
-
value: number;
|
|
20088
|
-
snapshot: number;
|
|
20089
|
-
};
|
|
20090
|
-
type PluginMeta_PluginBackend_Fragment = {
|
|
20091
|
-
__typename: "PluginBackend";
|
|
20092
|
-
id: string;
|
|
20093
|
-
name?: string | undefined | null;
|
|
20094
|
-
enabled: boolean;
|
|
20095
|
-
manifestId: string;
|
|
20096
|
-
package: {
|
|
20097
|
-
id: string;
|
|
20098
|
-
};
|
|
20099
|
-
};
|
|
20100
|
-
type PluginMeta_PluginFrontend_Fragment = {
|
|
20101
|
-
__typename: "PluginFrontend";
|
|
20102
|
-
id: string;
|
|
20103
|
-
name?: string | undefined | null;
|
|
20104
|
-
enabled: boolean;
|
|
20105
|
-
manifestId: string;
|
|
20106
|
-
package: {
|
|
20107
|
-
id: string;
|
|
18946
|
+
type PluginMeta_PluginFrontend_Fragment = {
|
|
18947
|
+
__typename: "PluginFrontend";
|
|
18948
|
+
id: string;
|
|
18949
|
+
name?: string | undefined | null;
|
|
18950
|
+
enabled: boolean;
|
|
18951
|
+
manifestId: string;
|
|
18952
|
+
package: {
|
|
18953
|
+
id: string;
|
|
20108
18954
|
};
|
|
20109
18955
|
};
|
|
20110
18956
|
type PluginMeta_PluginWorkflow_Fragment = {
|
|
@@ -20448,266 +19294,48 @@ export type InstallPluginPackagesMutation = {
|
|
|
20448
19294
|
links?: {
|
|
20449
19295
|
sponsor?: string | undefined | null;
|
|
20450
19296
|
} | undefined | null;
|
|
20451
|
-
}>;
|
|
20452
|
-
errors: Array<{
|
|
20453
|
-
__typename: "CloudUserError";
|
|
20454
|
-
code: string;
|
|
20455
|
-
cloudReason: CloudErrorReason;
|
|
20456
|
-
} | {
|
|
20457
|
-
__typename: "OtherUserError";
|
|
20458
|
-
code: string;
|
|
20459
|
-
} | {
|
|
20460
|
-
__typename: "PluginUserError";
|
|
20461
|
-
reason: PluginErrorReason;
|
|
20462
|
-
code: string;
|
|
20463
|
-
} | {
|
|
20464
|
-
__typename: "StoreUserError";
|
|
20465
|
-
code: string;
|
|
20466
|
-
storeReason: StoreErrorReason;
|
|
20467
|
-
}>;
|
|
20468
|
-
};
|
|
20469
|
-
};
|
|
20470
|
-
export type UninstallPluginPackageMutationVariables = Exact<{
|
|
20471
|
-
id: Scalars["ID"]["input"];
|
|
20472
|
-
}>;
|
|
20473
|
-
export type UninstallPluginPackageMutation = {
|
|
20474
|
-
uninstallPluginPackage: {
|
|
20475
|
-
deletedId?: string | undefined | null;
|
|
20476
|
-
error?: {
|
|
20477
|
-
__typename: "OtherUserError";
|
|
20478
|
-
code: string;
|
|
20479
|
-
} | {
|
|
20480
|
-
__typename: "UnknownIdUserError";
|
|
20481
|
-
id: string;
|
|
20482
|
-
code: string;
|
|
20483
|
-
} | undefined | null;
|
|
20484
|
-
};
|
|
20485
|
-
};
|
|
20486
|
-
export type TogglePluginMutationVariables = Exact<{
|
|
20487
|
-
id: Scalars["ID"]["input"];
|
|
20488
|
-
enabled: Scalars["Boolean"]["input"];
|
|
20489
|
-
}>;
|
|
20490
|
-
export type TogglePluginMutation = {
|
|
20491
|
-
togglePlugin: {
|
|
20492
|
-
plugin?: {
|
|
20493
|
-
__typename: "PluginBackend";
|
|
20494
|
-
runtime: PluginRuntime;
|
|
20495
|
-
id: string;
|
|
20496
|
-
name?: string | undefined | null;
|
|
20497
|
-
enabled: boolean;
|
|
20498
|
-
manifestId: string;
|
|
20499
|
-
state: {
|
|
20500
|
-
error?: string | undefined | null;
|
|
20501
|
-
running: boolean;
|
|
20502
|
-
};
|
|
20503
|
-
package: {
|
|
20504
|
-
id: string;
|
|
20505
|
-
};
|
|
20506
|
-
} | {
|
|
20507
|
-
__typename: "PluginFrontend";
|
|
20508
|
-
entrypoint?: string | undefined | null;
|
|
20509
|
-
style?: string | undefined | null;
|
|
20510
|
-
data?: unknown | undefined | null;
|
|
20511
|
-
id: string;
|
|
20512
|
-
name?: string | undefined | null;
|
|
20513
|
-
enabled: boolean;
|
|
20514
|
-
manifestId: string;
|
|
20515
|
-
backend?: {
|
|
20516
|
-
__typename: "PluginBackend";
|
|
20517
|
-
id: string;
|
|
20518
|
-
} | undefined | null;
|
|
20519
|
-
package: {
|
|
20520
|
-
id: string;
|
|
20521
|
-
};
|
|
20522
|
-
} | {
|
|
20523
|
-
__typename: "PluginWorkflow";
|
|
20524
|
-
name?: string | undefined | null;
|
|
20525
|
-
id: string;
|
|
20526
|
-
enabled: boolean;
|
|
20527
|
-
manifestId: string;
|
|
20528
|
-
workflow?: {
|
|
20529
|
-
__typename: "Workflow";
|
|
20530
|
-
id: string;
|
|
20531
|
-
kind: WorkflowKind;
|
|
20532
|
-
name: string;
|
|
20533
|
-
enabled: boolean;
|
|
20534
|
-
global: boolean;
|
|
20535
|
-
readOnly: boolean;
|
|
20536
|
-
} | undefined | null;
|
|
20537
|
-
package: {
|
|
20538
|
-
id: string;
|
|
20539
|
-
};
|
|
20540
|
-
} | undefined | null;
|
|
20541
|
-
error?: {
|
|
20542
|
-
__typename: "OtherUserError";
|
|
20543
|
-
code: string;
|
|
20544
|
-
} | {
|
|
20545
|
-
__typename: "PluginUserError";
|
|
20546
|
-
reason: PluginErrorReason;
|
|
20547
|
-
code: string;
|
|
20548
|
-
} | {
|
|
20549
|
-
__typename: "UnknownIdUserError";
|
|
20550
|
-
id: string;
|
|
20551
|
-
code: string;
|
|
20552
|
-
} | undefined | null;
|
|
20553
|
-
};
|
|
20554
|
-
};
|
|
20555
|
-
export type SetPluginDataMutationVariables = Exact<{
|
|
20556
|
-
id: Scalars["ID"]["input"];
|
|
20557
|
-
data: Scalars["JSON"]["input"];
|
|
20558
|
-
}>;
|
|
20559
|
-
export type SetPluginDataMutation = {
|
|
20560
|
-
setPluginData: {
|
|
20561
|
-
plugin?: {
|
|
20562
|
-
__typename: "PluginBackend";
|
|
20563
|
-
runtime: PluginRuntime;
|
|
20564
|
-
id: string;
|
|
20565
|
-
name?: string | undefined | null;
|
|
20566
|
-
enabled: boolean;
|
|
20567
|
-
manifestId: string;
|
|
20568
|
-
state: {
|
|
20569
|
-
error?: string | undefined | null;
|
|
20570
|
-
running: boolean;
|
|
20571
|
-
};
|
|
20572
|
-
package: {
|
|
20573
|
-
id: string;
|
|
20574
|
-
};
|
|
20575
|
-
} | {
|
|
20576
|
-
__typename: "PluginFrontend";
|
|
20577
|
-
entrypoint?: string | undefined | null;
|
|
20578
|
-
style?: string | undefined | null;
|
|
20579
|
-
data?: unknown | undefined | null;
|
|
20580
|
-
id: string;
|
|
20581
|
-
name?: string | undefined | null;
|
|
20582
|
-
enabled: boolean;
|
|
20583
|
-
manifestId: string;
|
|
20584
|
-
backend?: {
|
|
20585
|
-
__typename: "PluginBackend";
|
|
20586
|
-
id: string;
|
|
20587
|
-
} | undefined | null;
|
|
20588
|
-
package: {
|
|
20589
|
-
id: string;
|
|
20590
|
-
};
|
|
20591
|
-
} | {
|
|
20592
|
-
__typename: "PluginWorkflow";
|
|
20593
|
-
name?: string | undefined | null;
|
|
20594
|
-
id: string;
|
|
20595
|
-
enabled: boolean;
|
|
20596
|
-
manifestId: string;
|
|
20597
|
-
workflow?: {
|
|
20598
|
-
__typename: "Workflow";
|
|
20599
|
-
id: string;
|
|
20600
|
-
kind: WorkflowKind;
|
|
20601
|
-
name: string;
|
|
20602
|
-
enabled: boolean;
|
|
20603
|
-
global: boolean;
|
|
20604
|
-
readOnly: boolean;
|
|
20605
|
-
} | undefined | null;
|
|
20606
|
-
package: {
|
|
20607
|
-
id: string;
|
|
20608
|
-
};
|
|
20609
|
-
} | undefined | null;
|
|
20610
|
-
error?: {
|
|
20611
|
-
__typename: "OtherUserError";
|
|
20612
|
-
code: string;
|
|
20613
|
-
} | {
|
|
20614
|
-
__typename: "PluginUserError";
|
|
20615
|
-
reason: PluginErrorReason;
|
|
20616
|
-
code: string;
|
|
20617
|
-
} | {
|
|
20618
|
-
__typename: "UnknownIdUserError";
|
|
20619
|
-
id: string;
|
|
20620
|
-
code: string;
|
|
20621
|
-
} | undefined | null;
|
|
20622
|
-
};
|
|
20623
|
-
};
|
|
20624
|
-
export type CreatedPluginPackageSubscriptionVariables = Exact<{
|
|
20625
|
-
[key: string]: never;
|
|
20626
|
-
}>;
|
|
20627
|
-
export type CreatedPluginPackageSubscription = {
|
|
20628
|
-
createdPluginPackage: {
|
|
20629
|
-
package: {
|
|
20630
|
-
id: string;
|
|
20631
|
-
name?: string | undefined | null;
|
|
20632
|
-
description?: string | undefined | null;
|
|
20633
|
-
version: string;
|
|
20634
|
-
installedAt: Date;
|
|
20635
|
-
manifestId: string;
|
|
20636
|
-
origin: PluginPackageOrigin;
|
|
20637
|
-
plugins: Array<{
|
|
20638
|
-
__typename: "PluginBackend";
|
|
20639
|
-
runtime: PluginRuntime;
|
|
20640
|
-
id: string;
|
|
20641
|
-
name?: string | undefined | null;
|
|
20642
|
-
enabled: boolean;
|
|
20643
|
-
manifestId: string;
|
|
20644
|
-
state: {
|
|
20645
|
-
error?: string | undefined | null;
|
|
20646
|
-
running: boolean;
|
|
20647
|
-
};
|
|
20648
|
-
package: {
|
|
20649
|
-
id: string;
|
|
20650
|
-
};
|
|
20651
|
-
} | {
|
|
20652
|
-
__typename: "PluginFrontend";
|
|
20653
|
-
entrypoint?: string | undefined | null;
|
|
20654
|
-
style?: string | undefined | null;
|
|
20655
|
-
data?: unknown | undefined | null;
|
|
20656
|
-
id: string;
|
|
20657
|
-
name?: string | undefined | null;
|
|
20658
|
-
enabled: boolean;
|
|
20659
|
-
manifestId: string;
|
|
20660
|
-
backend?: {
|
|
20661
|
-
__typename: "PluginBackend";
|
|
20662
|
-
id: string;
|
|
20663
|
-
} | undefined | null;
|
|
20664
|
-
package: {
|
|
20665
|
-
id: string;
|
|
20666
|
-
};
|
|
20667
|
-
} | {
|
|
20668
|
-
__typename: "PluginWorkflow";
|
|
20669
|
-
name?: string | undefined | null;
|
|
20670
|
-
id: string;
|
|
20671
|
-
enabled: boolean;
|
|
20672
|
-
manifestId: string;
|
|
20673
|
-
workflow?: {
|
|
20674
|
-
__typename: "Workflow";
|
|
20675
|
-
id: string;
|
|
20676
|
-
kind: WorkflowKind;
|
|
20677
|
-
name: string;
|
|
20678
|
-
enabled: boolean;
|
|
20679
|
-
global: boolean;
|
|
20680
|
-
readOnly: boolean;
|
|
20681
|
-
} | undefined | null;
|
|
20682
|
-
package: {
|
|
20683
|
-
id: string;
|
|
20684
|
-
};
|
|
20685
|
-
}>;
|
|
20686
|
-
author?: {
|
|
20687
|
-
name?: string | undefined | null;
|
|
20688
|
-
email?: string | undefined | null;
|
|
20689
|
-
url?: string | undefined | null;
|
|
20690
|
-
} | undefined | null;
|
|
20691
|
-
links?: {
|
|
20692
|
-
sponsor?: string | undefined | null;
|
|
20693
|
-
} | undefined | null;
|
|
20694
|
-
};
|
|
19297
|
+
}>;
|
|
19298
|
+
errors: Array<{
|
|
19299
|
+
__typename: "CloudUserError";
|
|
19300
|
+
code: string;
|
|
19301
|
+
cloudReason: CloudErrorReason;
|
|
19302
|
+
} | {
|
|
19303
|
+
__typename: "OtherUserError";
|
|
19304
|
+
code: string;
|
|
19305
|
+
} | {
|
|
19306
|
+
__typename: "PluginUserError";
|
|
19307
|
+
reason: PluginErrorReason;
|
|
19308
|
+
code: string;
|
|
19309
|
+
} | {
|
|
19310
|
+
__typename: "StoreUserError";
|
|
19311
|
+
code: string;
|
|
19312
|
+
storeReason: StoreErrorReason;
|
|
19313
|
+
}>;
|
|
20695
19314
|
};
|
|
20696
19315
|
};
|
|
20697
|
-
export type
|
|
20698
|
-
|
|
19316
|
+
export type UninstallPluginPackageMutationVariables = Exact<{
|
|
19317
|
+
id: Scalars["ID"]["input"];
|
|
20699
19318
|
}>;
|
|
20700
|
-
export type
|
|
20701
|
-
|
|
20702
|
-
|
|
19319
|
+
export type UninstallPluginPackageMutation = {
|
|
19320
|
+
uninstallPluginPackage: {
|
|
19321
|
+
deletedId?: string | undefined | null;
|
|
19322
|
+
error?: {
|
|
19323
|
+
__typename: "OtherUserError";
|
|
19324
|
+
code: string;
|
|
19325
|
+
} | {
|
|
19326
|
+
__typename: "UnknownIdUserError";
|
|
19327
|
+
id: string;
|
|
19328
|
+
code: string;
|
|
19329
|
+
} | undefined | null;
|
|
20703
19330
|
};
|
|
20704
19331
|
};
|
|
20705
|
-
export type
|
|
20706
|
-
|
|
19332
|
+
export type TogglePluginMutationVariables = Exact<{
|
|
19333
|
+
id: Scalars["ID"]["input"];
|
|
19334
|
+
enabled: Scalars["Boolean"]["input"];
|
|
20707
19335
|
}>;
|
|
20708
|
-
export type
|
|
20709
|
-
|
|
20710
|
-
plugin
|
|
19336
|
+
export type TogglePluginMutation = {
|
|
19337
|
+
togglePlugin: {
|
|
19338
|
+
plugin?: {
|
|
20711
19339
|
__typename: "PluginBackend";
|
|
20712
19340
|
runtime: PluginRuntime;
|
|
20713
19341
|
id: string;
|
|
@@ -20755,55 +19383,14 @@ export type UpdatedPluginSubscription = {
|
|
|
20755
19383
|
package: {
|
|
20756
19384
|
id: string;
|
|
20757
19385
|
};
|
|
20758
|
-
};
|
|
20759
|
-
};
|
|
20760
|
-
};
|
|
20761
|
-
export type CreatedPluginEventSubscriptionVariables = Exact<{
|
|
20762
|
-
[key: string]: never;
|
|
20763
|
-
}>;
|
|
20764
|
-
export type CreatedPluginEventSubscription = {
|
|
20765
|
-
createdPluginEvent: {
|
|
20766
|
-
pluginId: string;
|
|
20767
|
-
eventArgs: Array<string>;
|
|
20768
|
-
eventName: string;
|
|
20769
|
-
};
|
|
20770
|
-
};
|
|
20771
|
-
export type PluginPackageDataFullFragment = {
|
|
20772
|
-
key: string;
|
|
20773
|
-
value?: unknown | undefined | null;
|
|
20774
|
-
flags: {
|
|
20775
|
-
exportable: boolean;
|
|
20776
|
-
};
|
|
20777
|
-
package: {
|
|
20778
|
-
id: string;
|
|
20779
|
-
};
|
|
20780
|
-
};
|
|
20781
|
-
export type PluginPackageDataQueryVariables = Exact<{
|
|
20782
|
-
id: Scalars["ID"]["input"];
|
|
20783
|
-
key: Scalars["String"]["input"];
|
|
20784
|
-
}>;
|
|
20785
|
-
export type PluginPackageDataQuery = {
|
|
20786
|
-
pluginPackageData?: {
|
|
20787
|
-
key: string;
|
|
20788
|
-
value?: unknown | undefined | null;
|
|
20789
|
-
flags: {
|
|
20790
|
-
exportable: boolean;
|
|
20791
|
-
};
|
|
20792
|
-
package: {
|
|
20793
|
-
id: string;
|
|
20794
|
-
};
|
|
20795
|
-
} | undefined | null;
|
|
20796
|
-
};
|
|
20797
|
-
export type DefinePluginPackageDataMutationVariables = Exact<{
|
|
20798
|
-
id: Scalars["ID"]["input"];
|
|
20799
|
-
input: DefinePluginPackageDataInput;
|
|
20800
|
-
}>;
|
|
20801
|
-
export type DefinePluginPackageDataMutation = {
|
|
20802
|
-
definePluginPackageData: {
|
|
20803
|
-
success: boolean;
|
|
19386
|
+
} | undefined | null;
|
|
20804
19387
|
error?: {
|
|
20805
19388
|
__typename: "OtherUserError";
|
|
20806
19389
|
code: string;
|
|
19390
|
+
} | {
|
|
19391
|
+
__typename: "PluginUserError";
|
|
19392
|
+
reason: PluginErrorReason;
|
|
19393
|
+
code: string;
|
|
20807
19394
|
} | {
|
|
20808
19395
|
__typename: "UnknownIdUserError";
|
|
20809
19396
|
id: string;
|
|
@@ -20811,17 +19398,68 @@ export type DefinePluginPackageDataMutation = {
|
|
|
20811
19398
|
} | undefined | null;
|
|
20812
19399
|
};
|
|
20813
19400
|
};
|
|
20814
|
-
export type
|
|
19401
|
+
export type SetPluginDataMutationVariables = Exact<{
|
|
20815
19402
|
id: Scalars["ID"]["input"];
|
|
20816
|
-
key: Scalars["String"]["input"];
|
|
20817
19403
|
data: Scalars["JSON"]["input"];
|
|
20818
19404
|
}>;
|
|
20819
|
-
export type
|
|
20820
|
-
|
|
20821
|
-
|
|
19405
|
+
export type SetPluginDataMutation = {
|
|
19406
|
+
setPluginData: {
|
|
19407
|
+
plugin?: {
|
|
19408
|
+
__typename: "PluginBackend";
|
|
19409
|
+
runtime: PluginRuntime;
|
|
19410
|
+
id: string;
|
|
19411
|
+
name?: string | undefined | null;
|
|
19412
|
+
enabled: boolean;
|
|
19413
|
+
manifestId: string;
|
|
19414
|
+
state: {
|
|
19415
|
+
error?: string | undefined | null;
|
|
19416
|
+
running: boolean;
|
|
19417
|
+
};
|
|
19418
|
+
package: {
|
|
19419
|
+
id: string;
|
|
19420
|
+
};
|
|
19421
|
+
} | {
|
|
19422
|
+
__typename: "PluginFrontend";
|
|
19423
|
+
entrypoint?: string | undefined | null;
|
|
19424
|
+
style?: string | undefined | null;
|
|
19425
|
+
data?: unknown | undefined | null;
|
|
19426
|
+
id: string;
|
|
19427
|
+
name?: string | undefined | null;
|
|
19428
|
+
enabled: boolean;
|
|
19429
|
+
manifestId: string;
|
|
19430
|
+
backend?: {
|
|
19431
|
+
__typename: "PluginBackend";
|
|
19432
|
+
id: string;
|
|
19433
|
+
} | undefined | null;
|
|
19434
|
+
package: {
|
|
19435
|
+
id: string;
|
|
19436
|
+
};
|
|
19437
|
+
} | {
|
|
19438
|
+
__typename: "PluginWorkflow";
|
|
19439
|
+
name?: string | undefined | null;
|
|
19440
|
+
id: string;
|
|
19441
|
+
enabled: boolean;
|
|
19442
|
+
manifestId: string;
|
|
19443
|
+
workflow?: {
|
|
19444
|
+
__typename: "Workflow";
|
|
19445
|
+
id: string;
|
|
19446
|
+
kind: WorkflowKind;
|
|
19447
|
+
name: string;
|
|
19448
|
+
enabled: boolean;
|
|
19449
|
+
global: boolean;
|
|
19450
|
+
readOnly: boolean;
|
|
19451
|
+
} | undefined | null;
|
|
19452
|
+
package: {
|
|
19453
|
+
id: string;
|
|
19454
|
+
};
|
|
19455
|
+
} | undefined | null;
|
|
20822
19456
|
error?: {
|
|
20823
19457
|
__typename: "OtherUserError";
|
|
20824
19458
|
code: string;
|
|
19459
|
+
} | {
|
|
19460
|
+
__typename: "PluginUserError";
|
|
19461
|
+
reason: PluginErrorReason;
|
|
19462
|
+
code: string;
|
|
20825
19463
|
} | {
|
|
20826
19464
|
__typename: "UnknownIdUserError";
|
|
20827
19465
|
id: string;
|
|
@@ -20829,47 +19467,151 @@ export type SetPluginPackageDataMutation = {
|
|
|
20829
19467
|
} | undefined | null;
|
|
20830
19468
|
};
|
|
20831
19469
|
};
|
|
20832
|
-
export type
|
|
20833
|
-
|
|
20834
|
-
key: Scalars["String"]["input"];
|
|
19470
|
+
export type CreatedPluginPackageSubscriptionVariables = Exact<{
|
|
19471
|
+
[key: string]: never;
|
|
20835
19472
|
}>;
|
|
20836
|
-
export type
|
|
20837
|
-
|
|
20838
|
-
|
|
20839
|
-
error?: {
|
|
20840
|
-
__typename: "OtherUserError";
|
|
20841
|
-
code: string;
|
|
20842
|
-
} | {
|
|
20843
|
-
__typename: "UnknownIdUserError";
|
|
19473
|
+
export type CreatedPluginPackageSubscription = {
|
|
19474
|
+
createdPluginPackage: {
|
|
19475
|
+
package: {
|
|
20844
19476
|
id: string;
|
|
20845
|
-
|
|
20846
|
-
|
|
19477
|
+
name?: string | undefined | null;
|
|
19478
|
+
description?: string | undefined | null;
|
|
19479
|
+
version: string;
|
|
19480
|
+
installedAt: Date;
|
|
19481
|
+
manifestId: string;
|
|
19482
|
+
origin: PluginPackageOrigin;
|
|
19483
|
+
plugins: Array<{
|
|
19484
|
+
__typename: "PluginBackend";
|
|
19485
|
+
runtime: PluginRuntime;
|
|
19486
|
+
id: string;
|
|
19487
|
+
name?: string | undefined | null;
|
|
19488
|
+
enabled: boolean;
|
|
19489
|
+
manifestId: string;
|
|
19490
|
+
state: {
|
|
19491
|
+
error?: string | undefined | null;
|
|
19492
|
+
running: boolean;
|
|
19493
|
+
};
|
|
19494
|
+
package: {
|
|
19495
|
+
id: string;
|
|
19496
|
+
};
|
|
19497
|
+
} | {
|
|
19498
|
+
__typename: "PluginFrontend";
|
|
19499
|
+
entrypoint?: string | undefined | null;
|
|
19500
|
+
style?: string | undefined | null;
|
|
19501
|
+
data?: unknown | undefined | null;
|
|
19502
|
+
id: string;
|
|
19503
|
+
name?: string | undefined | null;
|
|
19504
|
+
enabled: boolean;
|
|
19505
|
+
manifestId: string;
|
|
19506
|
+
backend?: {
|
|
19507
|
+
__typename: "PluginBackend";
|
|
19508
|
+
id: string;
|
|
19509
|
+
} | undefined | null;
|
|
19510
|
+
package: {
|
|
19511
|
+
id: string;
|
|
19512
|
+
};
|
|
19513
|
+
} | {
|
|
19514
|
+
__typename: "PluginWorkflow";
|
|
19515
|
+
name?: string | undefined | null;
|
|
19516
|
+
id: string;
|
|
19517
|
+
enabled: boolean;
|
|
19518
|
+
manifestId: string;
|
|
19519
|
+
workflow?: {
|
|
19520
|
+
__typename: "Workflow";
|
|
19521
|
+
id: string;
|
|
19522
|
+
kind: WorkflowKind;
|
|
19523
|
+
name: string;
|
|
19524
|
+
enabled: boolean;
|
|
19525
|
+
global: boolean;
|
|
19526
|
+
readOnly: boolean;
|
|
19527
|
+
} | undefined | null;
|
|
19528
|
+
package: {
|
|
19529
|
+
id: string;
|
|
19530
|
+
};
|
|
19531
|
+
}>;
|
|
19532
|
+
author?: {
|
|
19533
|
+
name?: string | undefined | null;
|
|
19534
|
+
email?: string | undefined | null;
|
|
19535
|
+
url?: string | undefined | null;
|
|
19536
|
+
} | undefined | null;
|
|
19537
|
+
links?: {
|
|
19538
|
+
sponsor?: string | undefined | null;
|
|
19539
|
+
} | undefined | null;
|
|
19540
|
+
};
|
|
19541
|
+
};
|
|
19542
|
+
};
|
|
19543
|
+
export type DeletedPluginPackageSubscriptionVariables = Exact<{
|
|
19544
|
+
[key: string]: never;
|
|
19545
|
+
}>;
|
|
19546
|
+
export type DeletedPluginPackageSubscription = {
|
|
19547
|
+
deletedPluginPackage: {
|
|
19548
|
+
deletedPackageId: string;
|
|
20847
19549
|
};
|
|
20848
19550
|
};
|
|
20849
|
-
export type
|
|
19551
|
+
export type UpdatedPluginSubscriptionVariables = Exact<{
|
|
20850
19552
|
[key: string]: never;
|
|
20851
19553
|
}>;
|
|
20852
|
-
export type
|
|
20853
|
-
|
|
20854
|
-
|
|
20855
|
-
|
|
20856
|
-
|
|
20857
|
-
|
|
20858
|
-
|
|
19554
|
+
export type UpdatedPluginSubscription = {
|
|
19555
|
+
updatedPlugin: {
|
|
19556
|
+
plugin: {
|
|
19557
|
+
__typename: "PluginBackend";
|
|
19558
|
+
runtime: PluginRuntime;
|
|
19559
|
+
id: string;
|
|
19560
|
+
name?: string | undefined | null;
|
|
19561
|
+
enabled: boolean;
|
|
19562
|
+
manifestId: string;
|
|
19563
|
+
state: {
|
|
19564
|
+
error?: string | undefined | null;
|
|
19565
|
+
running: boolean;
|
|
19566
|
+
};
|
|
19567
|
+
package: {
|
|
19568
|
+
id: string;
|
|
19569
|
+
};
|
|
19570
|
+
} | {
|
|
19571
|
+
__typename: "PluginFrontend";
|
|
19572
|
+
entrypoint?: string | undefined | null;
|
|
19573
|
+
style?: string | undefined | null;
|
|
19574
|
+
data?: unknown | undefined | null;
|
|
19575
|
+
id: string;
|
|
19576
|
+
name?: string | undefined | null;
|
|
19577
|
+
enabled: boolean;
|
|
19578
|
+
manifestId: string;
|
|
19579
|
+
backend?: {
|
|
19580
|
+
__typename: "PluginBackend";
|
|
19581
|
+
id: string;
|
|
19582
|
+
} | undefined | null;
|
|
19583
|
+
package: {
|
|
19584
|
+
id: string;
|
|
20859
19585
|
};
|
|
19586
|
+
} | {
|
|
19587
|
+
__typename: "PluginWorkflow";
|
|
19588
|
+
name?: string | undefined | null;
|
|
19589
|
+
id: string;
|
|
19590
|
+
enabled: boolean;
|
|
19591
|
+
manifestId: string;
|
|
19592
|
+
workflow?: {
|
|
19593
|
+
__typename: "Workflow";
|
|
19594
|
+
id: string;
|
|
19595
|
+
kind: WorkflowKind;
|
|
19596
|
+
name: string;
|
|
19597
|
+
enabled: boolean;
|
|
19598
|
+
global: boolean;
|
|
19599
|
+
readOnly: boolean;
|
|
19600
|
+
} | undefined | null;
|
|
20860
19601
|
package: {
|
|
20861
19602
|
id: string;
|
|
20862
19603
|
};
|
|
20863
19604
|
};
|
|
20864
19605
|
};
|
|
20865
19606
|
};
|
|
20866
|
-
export type
|
|
19607
|
+
export type CreatedPluginEventSubscriptionVariables = Exact<{
|
|
20867
19608
|
[key: string]: never;
|
|
20868
19609
|
}>;
|
|
20869
|
-
export type
|
|
20870
|
-
|
|
20871
|
-
|
|
20872
|
-
|
|
19610
|
+
export type CreatedPluginEventSubscription = {
|
|
19611
|
+
createdPluginEvent: {
|
|
19612
|
+
pluginId: string;
|
|
19613
|
+
eventArgs: Array<string>;
|
|
19614
|
+
eventName: string;
|
|
20873
19615
|
};
|
|
20874
19616
|
};
|
|
20875
19617
|
export type ProjectFullFragment = {
|
|
@@ -125354,17 +124096,14 @@ export type TestWorkflowPassiveMutation = {
|
|
|
125354
124096
|
} | undefined | null;
|
|
125355
124097
|
};
|
|
125356
124098
|
};
|
|
125357
|
-
export declare const AiProviderFullFragmentDoc = "\n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n kind\n api\n authenticationStatus\n apiKey\n url\n}\n ";
|
|
125358
|
-
export declare const UserErrorFullFragmentDoc = "\n fragment userErrorFull on UserError {\n __typename\n code\n}\n ";
|
|
125359
|
-
export declare const AiUserErrorFullFragmentDoc = "\n fragment aiUserErrorFull on AIUserError {\n ...userErrorFull\n message\n reason\n}\n ";
|
|
125360
|
-
export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125361
|
-
export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAIProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n ...aiUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n success\n}\n ";
|
|
125362
124099
|
export declare const AssistantModelFullFragmentDoc = "\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
125363
124100
|
export declare const AssistantSessionMetaFragmentDoc = "\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
125364
124101
|
export declare const AssistantMessageFullFragmentDoc = "\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
125365
124102
|
export declare const AssistantSessionFullFragmentDoc = "\n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n ";
|
|
124103
|
+
export declare const UserErrorFullFragmentDoc = "\n fragment userErrorFull on UserError {\n __typename\n code\n}\n ";
|
|
125366
124104
|
export declare const AssistantUserErrorFullFragmentDoc = "\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n ";
|
|
125367
124105
|
export declare const AuthenticationUserErrorFullFragmentDoc = "\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
124106
|
+
export declare const OtherUserErrorFullFragmentDoc = "\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125368
124107
|
export declare const CloudUserErrorFullFragmentDoc = "\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
125369
124108
|
export declare const AssistantMessageTaskFullFragmentDoc = "\n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n}\n ";
|
|
125370
124109
|
export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
@@ -125465,7 +124204,8 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
|
|
|
125465
124204
|
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
125466
124205
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
125467
124206
|
export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
125468
|
-
export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n network {\n __typename\n stack\n }\n}\n ";
|
|
124207
|
+
export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n network {\n __typename\n stack\n }\n}\n ";
|
|
124208
|
+
export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
|
|
125469
124209
|
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
125470
124210
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
125471
124211
|
export declare const InterceptResponseMessageMetaFragmentDoc = "\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
@@ -125527,7 +124267,6 @@ export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on W
|
|
|
125527
124267
|
export declare const PluginWorkflowFullFragmentDoc = "\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
125528
124268
|
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 ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n ";
|
|
125529
124269
|
export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n official\n quality\n readmeUrl\n changelogUrl\n}\n ";
|
|
125530
|
-
export declare const PluginPackageDataFullFragmentDoc = "\n fragment pluginPackageDataFull on PluginPackageData {\n key\n value\n flags {\n exportable\n }\n package {\n id\n }\n}\n ";
|
|
125531
124270
|
export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
125532
124271
|
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
125533
124272
|
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
@@ -125584,15 +124323,6 @@ export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on W
|
|
|
125584
124323
|
export declare const WorkflowEdgeFullFragmentDoc = "\n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n ";
|
|
125585
124324
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
125586
124325
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
125587
|
-
export declare const AiProvidersDocument = "\n query aiProviders {\n aiProviders {\n ...aiProviderFull\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n kind\n api\n authenticationStatus\n apiKey\n url\n}\n ";
|
|
125588
|
-
export declare const CreateAiProviderDocument = "\n mutation createAIProvider($input: CreateAIProviderInput!) {\n createAIProvider(input: $input) {\n provider {\n ...aiProviderFull\n }\n error {\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on AIUserError {\n ...aiUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n kind\n api\n authenticationStatus\n apiKey\n url\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aiUserErrorFull on AIUserError {\n ...userErrorFull\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125589
|
-
export declare const UpdateAiProviderDocument = "\n mutation updateAIProvider($id: ID!, $input: UpdateAIProviderInput!) {\n updateAIProvider(id: $id, input: $input) {\n provider {\n ...aiProviderFull\n }\n error {\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on AIUserError {\n ...aiUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n kind\n api\n authenticationStatus\n apiKey\n url\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\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 aiUserErrorFull on AIUserError {\n ...userErrorFull\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125590
|
-
export declare const DeleteAiProviderDocument = "\n mutation deleteAIProvider($id: ID!) {\n deleteAIProvider(id: $id) {\n deletedId\n }\n}\n ";
|
|
125591
|
-
export declare const TestAiProviderDocument = "\n mutation testAIProvider($input: TestAIProviderInput!) {\n testAIProvider(input: $input) {\n ...testAIProviderPayloadFull\n }\n}\n \n fragment testAIProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n ...aiUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n success\n}\n \n\n fragment aiUserErrorFull on AIUserError {\n ...userErrorFull\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125592
|
-
export declare const CreatedAiProviderDocument = "\n subscription createdAIProvider {\n createdAIProvider {\n provider {\n ...aiProviderFull\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n kind\n api\n authenticationStatus\n apiKey\n url\n}\n ";
|
|
125593
|
-
export declare const UpdatedAiProviderDocument = "\n subscription updatedAIProvider {\n updatedAIProvider {\n provider {\n ...aiProviderFull\n }\n }\n}\n \n fragment aiProviderFull on AIProvider {\n __typename\n id\n alias\n kind\n api\n authenticationStatus\n apiKey\n url\n}\n ";
|
|
125594
|
-
export declare const UpdatedAiProviderAuthenticationStatusDocument = "\n subscription updatedAIProviderAuthenticationStatus {\n updatedAIProviderAuthenticationStatus {\n providerId\n status\n }\n}\n ";
|
|
125595
|
-
export declare const DeletedAiProviderDocument = "\n subscription deletedAIProvider {\n deletedAIProvider {\n deletedProviderId\n }\n}\n ";
|
|
125596
124326
|
export declare const TrackDocument = "\n mutation track($input: TrackInput!) {\n track(input: $input) {\n success\n }\n}\n ";
|
|
125597
124327
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
125598
124328
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
@@ -125629,7 +124359,6 @@ export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomate
|
|
|
125629
124359
|
export declare const PauseAutomateTaskDocument = "\n mutation pauseAutomateTask($id: ID!) {\n pauseAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125630
124360
|
export declare const ResumeAutomateTaskDocument = "\n mutation resumeAutomateTask($id: ID!) {\n resumeAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
125631
124361
|
export declare const StartAutomateTaskDocument = "\n mutation startAutomateTask($automateSessionId: ID!) {\n startAutomateTask(automateSessionId: $automateSessionId) {\n automateTask {\n ...automateTaskMeta\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
125632
|
-
export declare const ExportAutomateEntriesDocument = "\n mutation exportAutomateEntries($input: ExportAutomateEntriesInput!) {\n exportAutomateEntries(input: $input) {\n export {\n ...dataExportOnDemandMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
125633
124362
|
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQLInput) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n extracts {\n ...automateEntryRequestExtractFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n 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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n \n\n fragment automateEntryRequestExtractFull on AutomateEntryExtract {\n __typename\n name\n raw\n}\n ";
|
|
125634
124363
|
export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
125635
124364
|
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n status\n }\n}\n ";
|
|
@@ -125744,9 +124473,10 @@ export declare const HostedFilesDocument = "\n query hostedFiles {\n hostedF
|
|
|
125744
124473
|
export declare const OnUploadedHostedFileDocument = "\n subscription onUploadedHostedFile {\n uploadedHostedFile {\n hostedFile {\n ...hostedFileFull\n }\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
125745
124474
|
export declare const OnDeletedHostedFileDocument = "\n subscription onDeletedHostedFile {\n deletedHostedFile {\n deletedHostedFileId\n }\n}\n ";
|
|
125746
124475
|
export declare const OnUpdatedHostedFileDocument = "\n subscription onUpdatedHostedFile {\n updatedHostedFile {\n hostedFile {\n ...hostedFileFull\n }\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
125747
|
-
export declare const SetInstanceSettingsDocument = "\n mutation setInstanceSettings($input: SetInstanceSettingsInput!) {\n setInstanceSettings(input: $input) {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n network {\n __typename\n stack\n }\n}\n ";
|
|
125748
|
-
export declare const
|
|
125749
|
-
export declare const
|
|
124476
|
+
export declare const SetInstanceSettingsDocument = "\n mutation setInstanceSettings($input: SetInstanceSettingsInput!) {\n setInstanceSettings(input: $input) {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n network {\n __typename\n stack\n }\n}\n ";
|
|
124477
|
+
export declare const TestAiProviderDocument = "\n mutation testAiProvider($input: TestAIProviderInput!) {\n testAiProvider(input: $input) {\n ...testAiProviderPayloadFull\n }\n}\n \n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
|
|
124478
|
+
export declare const InstanceSettingsDocument = "\n query instanceSettings {\n instanceSettings {\n ...instanceSettingsFull\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n network {\n __typename\n stack\n }\n}\n ";
|
|
124479
|
+
export declare const UpdatedInstanceSettingsDocument = "\n subscription updatedInstanceSettings {\n updatedInstanceSettings {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n network {\n __typename\n stack\n }\n}\n ";
|
|
125750
124480
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
125751
124481
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
125752
124482
|
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter {\n ... on HTTPQL {\n ...HTTPQLQueryFull\n }\n ... on StreamQL {\n ...StreamQLQueryFull\n }\n }\n}\n \n\n fragment HTTPQLQueryFull on HTTPQL {\n __typename\n code\n}\n \n\n fragment StreamQLQueryFull on StreamQL {\n __typename\n code\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter {\n ... on HTTPQL {\n ...HTTPQLQueryFull\n }\n ... on StreamQL {\n ...StreamQLQueryFull\n }\n }\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
@@ -125777,10 +124507,6 @@ export declare const ExportTamperDocument = "\n mutation exportTamper($input:
|
|
|
125777
124507
|
export declare const ImportTamperDocument = "\n mutation importTamper($input: ImportTamperRuleInput!) {\n importData(input: {tamper: $input}) {\n id\n errors\n summary {\n ... on TamperSummary {\n collectionsCreated\n rulesImported\n }\n }\n }\n}\n ";
|
|
125778
124508
|
export declare const CreatedTamperRuleCollectionDocument = "\n subscription createdTamperRuleCollection {\n createdTamperRuleCollection {\n collectionEdge {\n cursor\n node {\n ...tamperRuleCollectionFull\n }\n }\n snapshot\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition {\n ... on HTTPQL {\n ...HTTPQLQueryFull\n }\n ... on StreamQL {\n ...StreamQLQueryFull\n }\n }\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionStreamWsMessageUpstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionStreamWsMessageDownstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageFull on TamperOperationStreamWsMessage {\n __typename\n ... on TamperOperationStreamWsMessageRaw {\n ...tamperOperationStreamWsMessageRawFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageRawFull on TamperOperationStreamWsMessageRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment HTTPQLQueryFull on HTTPQL {\n __typename\n code\n}\n \n\n fragment StreamQLQueryFull on StreamQL {\n __typename\n code\n}\n ";
|
|
125779
124509
|
export declare const CreatedTamperRuleDocument = "\n subscription createdTamperRule {\n createdTamperRule {\n rule {\n ...tamperRuleFull\n }\n snapshot\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition {\n ... on HTTPQL {\n ...HTTPQLQueryFull\n }\n ... on StreamQL {\n ...StreamQLQueryFull\n }\n }\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionStreamWsMessageUpstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionStreamWsMessageDownstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageFull on TamperOperationStreamWsMessage {\n __typename\n ... on TamperOperationStreamWsMessageRaw {\n ...tamperOperationStreamWsMessageRawFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageRawFull on TamperOperationStreamWsMessageRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment HTTPQLQueryFull on HTTPQL {\n __typename\n code\n}\n \n\n fragment StreamQLQueryFull on StreamQL {\n __typename\n code\n}\n ";
|
|
125780
|
-
export declare const UpdatedTamperRuleDocument = "\n subscription updatedTamperRule {\n updatedTamperRule {\n rule {\n ...tamperRuleFull\n }\n snapshot\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition {\n ... on HTTPQL {\n ...HTTPQLQueryFull\n }\n ... on StreamQL {\n ...StreamQLQueryFull\n }\n }\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionStreamWsMessageUpstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionStreamWsMessageDownstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageFull on TamperOperationStreamWsMessage {\n __typename\n ... on TamperOperationStreamWsMessageRaw {\n ...tamperOperationStreamWsMessageRawFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageRawFull on TamperOperationStreamWsMessageRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment HTTPQLQueryFull on HTTPQL {\n __typename\n code\n}\n \n\n fragment StreamQLQueryFull on StreamQL {\n __typename\n code\n}\n ";
|
|
125781
|
-
export declare const DeletedTamperRuleDocument = "\n subscription deletedTamperRule {\n deletedTamperRule {\n deletedRuleId\n snapshot\n }\n}\n ";
|
|
125782
|
-
export declare const UpdatedTamperRuleCollectionDocument = "\n subscription updatedTamperRuleCollection {\n updatedTamperRuleCollection {\n collectionEdge {\n cursor\n node {\n ...tamperRuleCollectionFull\n }\n }\n snapshot\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition {\n ... on HTTPQL {\n ...HTTPQLQueryFull\n }\n ... on StreamQL {\n ...StreamQLQueryFull\n }\n }\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionStreamWsMessageUpstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionStreamWsMessageDownstream {\n operation {\n ...tamperOperationStreamWsMessageFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageFull on TamperOperationStreamWsMessage {\n __typename\n ... on TamperOperationStreamWsMessageRaw {\n ...tamperOperationStreamWsMessageRawFull\n }\n}\n \n\n fragment tamperOperationStreamWsMessageRawFull on TamperOperationStreamWsMessageRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment HTTPQLQueryFull on HTTPQL {\n __typename\n code\n}\n \n\n fragment StreamQLQueryFull on StreamQL {\n __typename\n code\n}\n ";
|
|
125783
|
-
export declare const DeletedTamperRuleCollectionDocument = "\n subscription deletedTamperRuleCollection {\n deletedTamperRuleCollection {\n deletedCollectionId\n snapshot\n }\n}\n ";
|
|
125784
124510
|
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n origin\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\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 ";
|
|
125785
124511
|
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 downloads\n license\n manifestId\n name\n repository\n version\n official\n quality\n readmeUrl\n changelogUrl\n}\n ";
|
|
125786
124512
|
export declare const InstallPluginPackagesDocument = "\n mutation installPluginPackages($input: InstallPluginPackagesInput!) {\n installPluginPackages(input: $input) {\n packages {\n ...pluginPackageFull\n }\n errors {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n origin\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
@@ -125791,12 +124517,6 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
125791
124517
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
125792
124518
|
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 ";
|
|
125793
124519
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
125794
|
-
export declare const PluginPackageDataDocument = "\n query pluginPackageData($id: ID!, $key: String!) {\n pluginPackageData(id: $id, key: $key) {\n ...pluginPackageDataFull\n }\n}\n \n fragment pluginPackageDataFull on PluginPackageData {\n key\n value\n flags {\n exportable\n }\n package {\n id\n }\n}\n ";
|
|
125795
|
-
export declare const DefinePluginPackageDataDocument = "\n mutation definePluginPackageData($id: ID!, $input: DefinePluginPackageDataInput!) {\n definePluginPackageData(id: $id, input: $input) {\n success\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 ";
|
|
125796
|
-
export declare const SetPluginPackageDataDocument = "\n mutation setPluginPackageData($id: ID!, $key: String!, $data: JSON!) {\n setPluginPackageData(id: $id, key: $key, data: $data) {\n success\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 ";
|
|
125797
|
-
export declare const DeletePluginPackageDataDocument = "\n mutation deletePluginPackageData($id: ID!, $key: String!) {\n deletePluginPackageData(id: $id, key: $key) {\n success\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 ";
|
|
125798
|
-
export declare const UpdatedPluginPackageDataDocument = "\n subscription updatedPluginPackageData {\n updatedPluginPackageData {\n packageData {\n ...pluginPackageDataFull\n }\n }\n}\n \n fragment pluginPackageDataFull on PluginPackageData {\n key\n value\n flags {\n exportable\n }\n package {\n id\n }\n}\n ";
|
|
125799
|
-
export declare const DeletedPluginPackageDataDocument = "\n subscription deletedPluginPackageData {\n deletedPluginPackageData {\n packageId\n key\n }\n}\n ";
|
|
125800
124520
|
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 ";
|
|
125801
124521
|
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 ";
|
|
125802
124522
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
@@ -125950,15 +124670,6 @@ export declare const TestWorkflowActiveDocument = "\n mutation testWorkflowAc
|
|
|
125950
124670
|
export declare const TestWorkflowPassiveDocument = "\n mutation testWorkflowPassive($input: TestWorkflowPassiveInput!) {\n testWorkflowPassive(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n runState\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\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 ";
|
|
125951
124671
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
125952
124672
|
export declare function getSdk<C>(requester: Requester<C>): {
|
|
125953
|
-
aiProviders(variables?: AiProvidersQueryVariables, options?: C): Promise<AiProvidersQuery>;
|
|
125954
|
-
createAIProvider(variables: CreateAiProviderMutationVariables, options?: C): Promise<CreateAiProviderMutation>;
|
|
125955
|
-
updateAIProvider(variables: UpdateAiProviderMutationVariables, options?: C): Promise<UpdateAiProviderMutation>;
|
|
125956
|
-
deleteAIProvider(variables: DeleteAiProviderMutationVariables, options?: C): Promise<DeleteAiProviderMutation>;
|
|
125957
|
-
testAIProvider(variables: TestAiProviderMutationVariables, options?: C): Promise<TestAiProviderMutation>;
|
|
125958
|
-
createdAIProvider(variables?: CreatedAiProviderSubscriptionVariables, options?: C): AsyncIterable<CreatedAiProviderSubscription>;
|
|
125959
|
-
updatedAIProvider(variables?: UpdatedAiProviderSubscriptionVariables, options?: C): AsyncIterable<UpdatedAiProviderSubscription>;
|
|
125960
|
-
updatedAIProviderAuthenticationStatus(variables?: UpdatedAiProviderAuthenticationStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedAiProviderAuthenticationStatusSubscription>;
|
|
125961
|
-
deletedAIProvider(variables?: DeletedAiProviderSubscriptionVariables, options?: C): AsyncIterable<DeletedAiProviderSubscription>;
|
|
125962
124673
|
track(variables: TrackMutationVariables, options?: C): Promise<TrackMutation>;
|
|
125963
124674
|
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
125964
124675
|
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
@@ -125995,7 +124706,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
125995
124706
|
pauseAutomateTask(variables: PauseAutomateTaskMutationVariables, options?: C): Promise<PauseAutomateTaskMutation>;
|
|
125996
124707
|
resumeAutomateTask(variables: ResumeAutomateTaskMutationVariables, options?: C): Promise<ResumeAutomateTaskMutation>;
|
|
125997
124708
|
startAutomateTask(variables: StartAutomateTaskMutationVariables, options?: C): Promise<StartAutomateTaskMutation>;
|
|
125998
|
-
exportAutomateEntries(variables: ExportAutomateEntriesMutationVariables, options?: C): Promise<ExportAutomateEntriesMutation>;
|
|
125999
124709
|
createdAutomateEntryRequest(variables?: CreatedAutomateEntryRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntryRequestSubscription>;
|
|
126000
124710
|
createdAutomateTask(variables?: CreatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateTaskSubscription>;
|
|
126001
124711
|
deletedAutomateTask(variables?: DeletedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateTaskSubscription>;
|
|
@@ -126111,6 +124821,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
126111
124821
|
onDeletedHostedFile(variables?: OnDeletedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnDeletedHostedFileSubscription>;
|
|
126112
124822
|
onUpdatedHostedFile(variables?: OnUpdatedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnUpdatedHostedFileSubscription>;
|
|
126113
124823
|
setInstanceSettings(variables: SetInstanceSettingsMutationVariables, options?: C): Promise<SetInstanceSettingsMutation>;
|
|
124824
|
+
testAiProvider(variables: TestAiProviderMutationVariables, options?: C): Promise<TestAiProviderMutation>;
|
|
126114
124825
|
instanceSettings(variables?: InstanceSettingsQueryVariables, options?: C): Promise<InstanceSettingsQuery>;
|
|
126115
124826
|
updatedInstanceSettings(variables?: UpdatedInstanceSettingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInstanceSettingsSubscription>;
|
|
126116
124827
|
forwardInterceptMessage(variables: ForwardInterceptMessageMutationVariables, options?: C): Promise<ForwardInterceptMessageMutation>;
|
|
@@ -126143,10 +124854,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
126143
124854
|
importTamper(variables: ImportTamperMutationVariables, options?: C): Promise<ImportTamperMutation>;
|
|
126144
124855
|
createdTamperRuleCollection(variables?: CreatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleCollectionSubscription>;
|
|
126145
124856
|
createdTamperRule(variables?: CreatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleSubscription>;
|
|
126146
|
-
updatedTamperRule(variables?: UpdatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<UpdatedTamperRuleSubscription>;
|
|
126147
|
-
deletedTamperRule(variables?: DeletedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<DeletedTamperRuleSubscription>;
|
|
126148
|
-
updatedTamperRuleCollection(variables?: UpdatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<UpdatedTamperRuleCollectionSubscription>;
|
|
126149
|
-
deletedTamperRuleCollection(variables?: DeletedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<DeletedTamperRuleCollectionSubscription>;
|
|
126150
124857
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
126151
124858
|
storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
|
|
126152
124859
|
installPluginPackages(variables: InstallPluginPackagesMutationVariables, options?: C): Promise<InstallPluginPackagesMutation>;
|
|
@@ -126157,12 +124864,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
126157
124864
|
deletedPluginPackage(variables?: DeletedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<DeletedPluginPackageSubscription>;
|
|
126158
124865
|
updatedPlugin(variables?: UpdatedPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedPluginSubscription>;
|
|
126159
124866
|
createdPluginEvent(variables?: CreatedPluginEventSubscriptionVariables, options?: C): AsyncIterable<CreatedPluginEventSubscription>;
|
|
126160
|
-
pluginPackageData(variables: PluginPackageDataQueryVariables, options?: C): Promise<PluginPackageDataQuery>;
|
|
126161
|
-
definePluginPackageData(variables: DefinePluginPackageDataMutationVariables, options?: C): Promise<DefinePluginPackageDataMutation>;
|
|
126162
|
-
setPluginPackageData(variables: SetPluginPackageDataMutationVariables, options?: C): Promise<SetPluginPackageDataMutation>;
|
|
126163
|
-
deletePluginPackageData(variables: DeletePluginPackageDataMutationVariables, options?: C): Promise<DeletePluginPackageDataMutation>;
|
|
126164
|
-
updatedPluginPackageData(variables?: UpdatedPluginPackageDataSubscriptionVariables, options?: C): AsyncIterable<UpdatedPluginPackageDataSubscription>;
|
|
126165
|
-
deletedPluginPackageData(variables?: DeletedPluginPackageDataSubscriptionVariables, options?: C): AsyncIterable<DeletedPluginPackageDataSubscription>;
|
|
126166
124867
|
createdProject(variables?: CreatedProjectSubscriptionVariables, options?: C): AsyncIterable<CreatedProjectSubscription>;
|
|
126167
124868
|
updatedProject(variables?: UpdatedProjectSubscriptionVariables, options?: C): AsyncIterable<UpdatedProjectSubscription>;
|
|
126168
124869
|
deletedProject(variables?: DeletedProjectSubscriptionVariables, options?: C): AsyncIterable<DeletedProjectSubscription>;
|