@caido/sdk-frontend 0.58.3 → 0.58.4-beta.0
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 +1751 -452
- package/src/types/index.d.ts +12 -4
- package/src/types/sdks/ai.d.ts +2 -2
- package/src/types/sdks/automate.d.ts +12 -2
- package/src/types/sdks/filters.d.ts +1 -0
- package/src/types/sdks/findings.d.ts +12 -2
- package/src/types/sdks/footer.d.ts +1 -0
- package/src/types/sdks/httpHistory.d.ts +13 -2
- package/src/types/sdks/index.d.ts +22 -0
- package/src/types/sdks/intercept.d.ts +12 -2
- package/src/types/sdks/kv.d.ts +69 -0
- package/src/types/sdks/matchReplace.d.ts +1 -0
- package/src/types/sdks/replay.d.ts +58 -19
- package/src/types/sdks/scopes.d.ts +1 -0
- package/src/types/sdks/search.d.ts +15 -3
- package/src/types/sdks/settings.d.ts +1 -0
- package/src/types/sdks/sitemap.d.ts +12 -2
- package/src/types/sdks/window.d.ts +10 -0
- package/src/types/types/ai.d.ts +8 -9
- package/src/types/types/httpqlEditor.d.ts +3 -0
- package/src/types/types/kv.d.ts +16 -0
- package/src/types/types/replay.d.ts +44 -0
- package/src/types/types/slots.d.ts +11 -1
|
@@ -134,38 +134,70 @@ 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
|
-
|
|
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 = {
|
|
137
|
+
export type AiProvider = {
|
|
138
|
+
alias: Scalars["Alias"]["output"];
|
|
139
|
+
api: AiProviderApi;
|
|
150
140
|
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"];
|
|
151
146
|
url?: Maybe<Scalars["Url"]["output"]>;
|
|
152
147
|
};
|
|
153
|
-
export
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
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>;
|
|
148
|
+
export declare const AiProviderApi: {
|
|
149
|
+
readonly Anthropic: "ANTHROPIC";
|
|
150
|
+
readonly Gemini: "GEMINI";
|
|
151
|
+
readonly OpenaiCompletion: "OPENAI_COMPLETION";
|
|
152
|
+
readonly OpenaiResponse: "OPENAI_RESPONSE";
|
|
153
|
+
readonly Openrouter: "OPENROUTER";
|
|
168
154
|
};
|
|
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];
|
|
169
201
|
export type AiUserError = UserError & {
|
|
170
202
|
code: Scalars["String"]["output"];
|
|
171
203
|
message: Scalars["String"]["output"];
|
|
@@ -186,6 +218,9 @@ export type AnalyticStatus = {
|
|
|
186
218
|
enabled: Scalars["Boolean"]["output"];
|
|
187
219
|
local: Scalars["Boolean"]["output"];
|
|
188
220
|
};
|
|
221
|
+
export type AnthropicProviderConfigurationInput = {
|
|
222
|
+
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
223
|
+
};
|
|
189
224
|
export declare const AssistantErrorReason: {
|
|
190
225
|
readonly ContextExceeded: "CONTEXT_EXCEEDED";
|
|
191
226
|
readonly InvalidModel: "INVALID_MODEL";
|
|
@@ -758,6 +793,16 @@ export type Count = {
|
|
|
758
793
|
snapshot: Scalars["Snapshot"]["output"];
|
|
759
794
|
value: Scalars["Int"]["output"];
|
|
760
795
|
};
|
|
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
|
+
};
|
|
761
806
|
export type CreateAssistantSessionError = CloudUserError | OtherUserError | PermissionDeniedUserError;
|
|
762
807
|
export type CreateAssistantSessionInput = {
|
|
763
808
|
modelId: Scalars["ID"]["input"];
|
|
@@ -954,6 +999,9 @@ export type CreateWorkflowPayload = {
|
|
|
954
999
|
error?: Maybe<CreateWorkflowError>;
|
|
955
1000
|
workflow?: Maybe<Workflow>;
|
|
956
1001
|
};
|
|
1002
|
+
export type CreatedAiProviderPayload = {
|
|
1003
|
+
provider: AiProvider;
|
|
1004
|
+
};
|
|
957
1005
|
export type CreatedAssistantMessagePayload = {
|
|
958
1006
|
messageEdge: AssistantMessageEdge;
|
|
959
1007
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1110,6 +1158,18 @@ export type CurrentProject = {
|
|
|
1110
1158
|
/** Defines if the selected project is read-only */
|
|
1111
1159
|
readOnly: Scalars["Boolean"]["output"];
|
|
1112
1160
|
};
|
|
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
|
+
};
|
|
1113
1173
|
export type DnsIpResolver = {
|
|
1114
1174
|
ip: Scalars["String"]["output"];
|
|
1115
1175
|
};
|
|
@@ -1194,7 +1254,21 @@ export type DataImportResult = {
|
|
|
1194
1254
|
id: Scalars["ID"]["output"];
|
|
1195
1255
|
summary?: Maybe<DataImportSummary>;
|
|
1196
1256
|
};
|
|
1197
|
-
export type DataImportSummary = FindingsSummary | TamperSummary;
|
|
1257
|
+
export type DataImportSummary = FindingsSummary | PluginPackageDataSummary | TamperSummary;
|
|
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
|
+
};
|
|
1198
1272
|
export type DeleteAssistantSessionPayload = {
|
|
1199
1273
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1200
1274
|
};
|
|
@@ -1261,6 +1335,11 @@ export type DeleteInterceptEntryPayload = {
|
|
|
1261
1335
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1262
1336
|
userError?: Maybe<DeleteInterceptEntryError>;
|
|
1263
1337
|
};
|
|
1338
|
+
export type DeletePluginPackageDataError = OtherUserError | UnknownIdUserError;
|
|
1339
|
+
export type DeletePluginPackageDataPayload = {
|
|
1340
|
+
error?: Maybe<DeletePluginPackageDataError>;
|
|
1341
|
+
success: Scalars["Boolean"]["output"];
|
|
1342
|
+
};
|
|
1264
1343
|
export type DeleteProjectPayload = {
|
|
1265
1344
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1266
1345
|
error?: Maybe<DeleteProjectPayloadError>;
|
|
@@ -1304,6 +1383,9 @@ export type DeleteWorkflowPayload = {
|
|
|
1304
1383
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1305
1384
|
error?: Maybe<DeleteWorkflowError>;
|
|
1306
1385
|
};
|
|
1386
|
+
export type DeletedAiProviderPayload = {
|
|
1387
|
+
deletedProviderId: Scalars["ID"]["output"];
|
|
1388
|
+
};
|
|
1307
1389
|
export type DeletedAssistantSessionPayload = {
|
|
1308
1390
|
deletedSessionId: Scalars["ID"]["output"];
|
|
1309
1391
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1361,6 +1443,10 @@ export type DeletedInterceptMessagePayload = {
|
|
|
1361
1443
|
deletedMessageId: Scalars["ID"]["output"];
|
|
1362
1444
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1363
1445
|
};
|
|
1446
|
+
export type DeletedPluginPackageDataPayload = {
|
|
1447
|
+
key: Scalars["String"]["output"];
|
|
1448
|
+
packageId: Scalars["ID"]["output"];
|
|
1449
|
+
};
|
|
1364
1450
|
export type DeletedPluginPackagePayload = {
|
|
1365
1451
|
deletedPackageId: Scalars["ID"]["output"];
|
|
1366
1452
|
};
|
|
@@ -1440,6 +1526,15 @@ export type EnvironmentVariableKind = (typeof EnvironmentVariableKind)[keyof typ
|
|
|
1440
1526
|
export type ExpiredViewerProfilePayload = {
|
|
1441
1527
|
expiredAt: Scalars["Timestamp"]["output"];
|
|
1442
1528
|
};
|
|
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
|
+
};
|
|
1443
1538
|
export type ExportFindingsError = OtherUserError | PermissionDeniedUserError;
|
|
1444
1539
|
export type ExportFindingsInput = {
|
|
1445
1540
|
filter: FilterClauseFindingInput;
|
|
@@ -1452,6 +1547,14 @@ export type ExportFindingsPayload = {
|
|
|
1452
1547
|
error?: Maybe<ExportFindingsError>;
|
|
1453
1548
|
export?: Maybe<DataExportOnDemand>;
|
|
1454
1549
|
};
|
|
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
|
+
};
|
|
1455
1558
|
export type ExportSitemapEntriesError = OtherUserError | PermissionDeniedUserError;
|
|
1456
1559
|
export type ExportSitemapEntriesFilter = {
|
|
1457
1560
|
ids: Array<Scalars["ID"]["input"]>;
|
|
@@ -1597,6 +1700,9 @@ export type ForwardInterceptResponseMessageInput = {
|
|
|
1597
1700
|
export type ForwardInterceptStreamWsMessageInput = {
|
|
1598
1701
|
updateRaw: Scalars["Blob"]["input"];
|
|
1599
1702
|
};
|
|
1703
|
+
export type GeminiProviderConfigurationInput = {
|
|
1704
|
+
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
1705
|
+
};
|
|
1600
1706
|
export type GlobalConfig = {
|
|
1601
1707
|
address: Scalars["String"]["output"];
|
|
1602
1708
|
project: GlobalConfigProject;
|
|
@@ -1662,14 +1768,23 @@ export type ImportCertificatePayload = {
|
|
|
1662
1768
|
};
|
|
1663
1769
|
export type ImportDataInput = {
|
|
1664
1770
|
findings: ImportFindingsInput;
|
|
1771
|
+
pluginPackageData?: never;
|
|
1772
|
+
tamper?: never;
|
|
1773
|
+
} | {
|
|
1774
|
+
findings?: never;
|
|
1775
|
+
pluginPackageData: ImportPluginPackageDataInput;
|
|
1665
1776
|
tamper?: never;
|
|
1666
1777
|
} | {
|
|
1667
1778
|
findings?: never;
|
|
1779
|
+
pluginPackageData?: never;
|
|
1668
1780
|
tamper: ImportTamperRuleInput;
|
|
1669
1781
|
};
|
|
1670
1782
|
export type ImportFindingsInput = {
|
|
1671
1783
|
file: Scalars["Upload"]["input"];
|
|
1672
1784
|
};
|
|
1785
|
+
export type ImportPluginPackageDataInput = {
|
|
1786
|
+
file: Scalars["Upload"]["input"];
|
|
1787
|
+
};
|
|
1673
1788
|
export type ImportTamperRuleInput = {
|
|
1674
1789
|
file: Scalars["Upload"]["input"];
|
|
1675
1790
|
};
|
|
@@ -1697,7 +1812,6 @@ export type InstallPluginPackagesPayload = {
|
|
|
1697
1812
|
packages: Array<PluginPackage>;
|
|
1698
1813
|
};
|
|
1699
1814
|
export type InstanceSettings = {
|
|
1700
|
-
aiProviders: AiProviders;
|
|
1701
1815
|
analytic: AnalyticStatus;
|
|
1702
1816
|
network: NetworkState;
|
|
1703
1817
|
onboarding: OnboardingState;
|
|
@@ -1889,6 +2003,7 @@ export type MutationRoot = {
|
|
|
1889
2003
|
cancelTask: CancelTaskPayload;
|
|
1890
2004
|
clearReplayEntryDraft: ClearReplayEntryDraftPayload;
|
|
1891
2005
|
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
2006
|
+
createAIProvider: CreateAiProviderPayload;
|
|
1892
2007
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
1893
2008
|
createAutomateSession: CreateAutomateSessionPayload;
|
|
1894
2009
|
createBackup: CreateBackupPayload;
|
|
@@ -1910,6 +2025,8 @@ export type MutationRoot = {
|
|
|
1910
2025
|
createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
|
|
1911
2026
|
createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
|
|
1912
2027
|
createWorkflow: CreateWorkflowPayload;
|
|
2028
|
+
definePluginPackageData: DefinePluginPackageDataPayload;
|
|
2029
|
+
deleteAIProvider: DeleteAiProviderPayload;
|
|
1913
2030
|
deleteAssistantSession: DeleteAssistantSessionPayload;
|
|
1914
2031
|
deleteAutomateEntries: DeleteAutomateEntriesPayload;
|
|
1915
2032
|
deleteAutomateSession: DeleteAutomateSessionPayload;
|
|
@@ -1924,6 +2041,7 @@ export type MutationRoot = {
|
|
|
1924
2041
|
deleteHostedFile: DeleteHostedFilePayload;
|
|
1925
2042
|
deleteInterceptEntries: DeleteInterceptEntriesPayload;
|
|
1926
2043
|
deleteInterceptEntry: DeleteInterceptEntryPayload;
|
|
2044
|
+
deletePluginPackageData: DeletePluginPackageDataPayload;
|
|
1927
2045
|
deleteProject: DeleteProjectPayload;
|
|
1928
2046
|
deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
|
|
1929
2047
|
deleteReplaySessions: DeleteReplaySessionsPayload;
|
|
@@ -1937,7 +2055,9 @@ export type MutationRoot = {
|
|
|
1937
2055
|
deleteWorkflow: DeleteWorkflowPayload;
|
|
1938
2056
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
1939
2057
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
2058
|
+
exportAutomateEntries: ExportAutomateEntriesPayload;
|
|
1940
2059
|
exportFindings: ExportFindingsPayload;
|
|
2060
|
+
exportPluginPackageData: ExportPluginPackageDataPayload;
|
|
1941
2061
|
exportSitemapEntries: ExportSitemapEntriesPayload;
|
|
1942
2062
|
exportTamper: ExportTamperPayload;
|
|
1943
2063
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
@@ -1998,6 +2118,7 @@ export type MutationRoot = {
|
|
|
1998
2118
|
setInterceptOptions: SetInterceptOptionsPayload;
|
|
1999
2119
|
setPassthroughOptions: SetPassthroughOptionsPayload;
|
|
2000
2120
|
setPluginData: SetPluginDataPayload;
|
|
2121
|
+
setPluginPackageData: SetPluginPackageDataPayload;
|
|
2001
2122
|
setProjectConfigStream: SetProjectConfigStreamPayload;
|
|
2002
2123
|
startAuthenticationFlow: StartAuthenticationFlowPayload;
|
|
2003
2124
|
startAutomateTask: StartAutomateTaskPayload;
|
|
@@ -2005,7 +2126,7 @@ export type MutationRoot = {
|
|
|
2005
2126
|
startExportRequestsTask: StartExportRequestsTaskPayload;
|
|
2006
2127
|
startReplayTask: StartReplayTaskPayload;
|
|
2007
2128
|
stopReplayWsTasks: StopReplayWsTaskPayload;
|
|
2008
|
-
|
|
2129
|
+
testAIProvider: TestAiProviderPayload;
|
|
2009
2130
|
testExtractor: TestExtractorPayload;
|
|
2010
2131
|
testTamperRule: TestTamperRulePayload;
|
|
2011
2132
|
testUpstreamProxyHttp: TestUpstreamProxyHttpPayload;
|
|
@@ -2023,6 +2144,7 @@ export type MutationRoot = {
|
|
|
2023
2144
|
track: TrackPayload;
|
|
2024
2145
|
uninstallPluginPackage: UninstallPluginPackagePayload;
|
|
2025
2146
|
uninstallPluginPackages: UninstallPluginPackagesPayload;
|
|
2147
|
+
updateAIProvider: UpdateAiProviderPayload;
|
|
2026
2148
|
updateAutomateSession: UpdateAutomateSessionPayload;
|
|
2027
2149
|
updateBrowser: UpdateBrowserPayload;
|
|
2028
2150
|
updateDnsRewrite: UpdateDnsRewritePayload;
|
|
@@ -2059,6 +2181,9 @@ export type MutationRootClearReplayEntryDraftArgs = {
|
|
|
2059
2181
|
id: Scalars["ID"]["input"];
|
|
2060
2182
|
kind: ReplaySessionKind;
|
|
2061
2183
|
};
|
|
2184
|
+
export type MutationRootCreateAiProviderArgs = {
|
|
2185
|
+
input: CreateAiProviderInput;
|
|
2186
|
+
};
|
|
2062
2187
|
export type MutationRootCreateAssistantSessionArgs = {
|
|
2063
2188
|
input: CreateAssistantSessionInput;
|
|
2064
2189
|
};
|
|
@@ -2123,6 +2248,13 @@ export type MutationRootCreateUpstreamProxySocksArgs = {
|
|
|
2123
2248
|
export type MutationRootCreateWorkflowArgs = {
|
|
2124
2249
|
input: CreateWorkflowInput;
|
|
2125
2250
|
};
|
|
2251
|
+
export type MutationRootDefinePluginPackageDataArgs = {
|
|
2252
|
+
id: Scalars["ID"]["input"];
|
|
2253
|
+
input: DefinePluginPackageDataInput;
|
|
2254
|
+
};
|
|
2255
|
+
export type MutationRootDeleteAiProviderArgs = {
|
|
2256
|
+
id: Scalars["ID"]["input"];
|
|
2257
|
+
};
|
|
2126
2258
|
export type MutationRootDeleteAssistantSessionArgs = {
|
|
2127
2259
|
id: Scalars["ID"]["input"];
|
|
2128
2260
|
};
|
|
@@ -2163,6 +2295,10 @@ export type MutationRootDeleteInterceptEntriesArgs = {
|
|
|
2163
2295
|
export type MutationRootDeleteInterceptEntryArgs = {
|
|
2164
2296
|
id: Scalars["ID"]["input"];
|
|
2165
2297
|
};
|
|
2298
|
+
export type MutationRootDeletePluginPackageDataArgs = {
|
|
2299
|
+
id: Scalars["ID"]["input"];
|
|
2300
|
+
key: Scalars["String"]["input"];
|
|
2301
|
+
};
|
|
2166
2302
|
export type MutationRootDeleteProjectArgs = {
|
|
2167
2303
|
id: Scalars["ID"]["input"];
|
|
2168
2304
|
};
|
|
@@ -2202,9 +2338,15 @@ export type MutationRootDropInterceptMessageArgs = {
|
|
|
2202
2338
|
export type MutationRootDuplicateAutomateSessionArgs = {
|
|
2203
2339
|
id: Scalars["ID"]["input"];
|
|
2204
2340
|
};
|
|
2341
|
+
export type MutationRootExportAutomateEntriesArgs = {
|
|
2342
|
+
input: ExportAutomateEntriesInput;
|
|
2343
|
+
};
|
|
2205
2344
|
export type MutationRootExportFindingsArgs = {
|
|
2206
2345
|
input: ExportFindingsInput;
|
|
2207
2346
|
};
|
|
2347
|
+
export type MutationRootExportPluginPackageDataArgs = {
|
|
2348
|
+
input: ExportPluginPackageDataInput;
|
|
2349
|
+
};
|
|
2208
2350
|
export type MutationRootExportSitemapEntriesArgs = {
|
|
2209
2351
|
input: ExportSitemapEntriesInput;
|
|
2210
2352
|
};
|
|
@@ -2395,6 +2537,11 @@ export type MutationRootSetPluginDataArgs = {
|
|
|
2395
2537
|
data: Scalars["JSON"]["input"];
|
|
2396
2538
|
id: Scalars["ID"]["input"];
|
|
2397
2539
|
};
|
|
2540
|
+
export type MutationRootSetPluginPackageDataArgs = {
|
|
2541
|
+
data: Scalars["JSON"]["input"];
|
|
2542
|
+
id: Scalars["ID"]["input"];
|
|
2543
|
+
key: Scalars["String"]["input"];
|
|
2544
|
+
};
|
|
2398
2545
|
export type MutationRootSetProjectConfigStreamArgs = {
|
|
2399
2546
|
input: ProjectConfigStreamInput;
|
|
2400
2547
|
};
|
|
@@ -2474,6 +2621,10 @@ export type MutationRootUninstallPluginPackageArgs = {
|
|
|
2474
2621
|
export type MutationRootUninstallPluginPackagesArgs = {
|
|
2475
2622
|
ids: Array<Scalars["ID"]["input"]>;
|
|
2476
2623
|
};
|
|
2624
|
+
export type MutationRootUpdateAiProviderArgs = {
|
|
2625
|
+
id: Scalars["ID"]["input"];
|
|
2626
|
+
input: UpdateAiProviderInput;
|
|
2627
|
+
};
|
|
2477
2628
|
export type MutationRootUpdateAutomateSessionArgs = {
|
|
2478
2629
|
id: Scalars["ID"]["input"];
|
|
2479
2630
|
input: UpdateAutomateSessionInput;
|
|
@@ -2558,6 +2709,18 @@ export type NewerVersionUserError = UserError & {
|
|
|
2558
2709
|
export type OnboardingState = {
|
|
2559
2710
|
analytic: Scalars["Boolean"]["output"];
|
|
2560
2711
|
};
|
|
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
|
+
};
|
|
2561
2724
|
export declare const Ordering: {
|
|
2562
2725
|
readonly Asc: "ASC";
|
|
2563
2726
|
readonly Desc: "DESC";
|
|
@@ -2706,6 +2869,24 @@ export type PluginPackage = {
|
|
|
2706
2869
|
plugins: Array<Plugin>;
|
|
2707
2870
|
version: Scalars["String"]["output"];
|
|
2708
2871
|
};
|
|
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
|
+
};
|
|
2709
2890
|
export declare const PluginPackageOrigin: {
|
|
2710
2891
|
readonly File: "FILE";
|
|
2711
2892
|
readonly Store: "STORE";
|
|
@@ -2801,6 +2982,7 @@ export type QueryInput = {
|
|
|
2801
2982
|
streamQL: StreamQlInput;
|
|
2802
2983
|
};
|
|
2803
2984
|
export type QueryRoot = {
|
|
2985
|
+
aiProviders: Array<AiProvider>;
|
|
2804
2986
|
assistantModels: Array<AssistantModel>;
|
|
2805
2987
|
assistantSession?: Maybe<AssistantSession>;
|
|
2806
2988
|
assistantSessions: Array<AssistantSession>;
|
|
@@ -2838,6 +3020,9 @@ export type QueryRoot = {
|
|
|
2838
3020
|
interceptOptions: InterceptOptions;
|
|
2839
3021
|
interceptStatus: InterceptStatus;
|
|
2840
3022
|
passthroughOptions: PassthroughOptions;
|
|
3023
|
+
pluginPackage?: Maybe<PluginPackage>;
|
|
3024
|
+
pluginPackageByManifest?: Maybe<PluginPackage>;
|
|
3025
|
+
pluginPackageData?: Maybe<PluginPackageData>;
|
|
2841
3026
|
pluginPackages: Array<PluginPackage>;
|
|
2842
3027
|
projects: Array<Project>;
|
|
2843
3028
|
replayEntry?: Maybe<ReplayEntry>;
|
|
@@ -2959,6 +3144,16 @@ export type QueryRootInterceptMessagesArgs = {
|
|
|
2959
3144
|
kind: InterceptKind;
|
|
2960
3145
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2961
3146
|
};
|
|
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
|
+
};
|
|
2962
3157
|
export type QueryRootReplayEntryArgs = {
|
|
2963
3158
|
id: Scalars["ID"]["input"];
|
|
2964
3159
|
sessionKind: ReplaySessionKind;
|
|
@@ -3720,22 +3915,14 @@ export type SetConfigProjectPayload = {
|
|
|
3720
3915
|
config: GlobalConfig;
|
|
3721
3916
|
};
|
|
3722
3917
|
export type SetInstanceSettingsInput = {
|
|
3723
|
-
aiProvider: SettingsAiProviderInput;
|
|
3724
|
-
analytics?: never;
|
|
3725
|
-
network?: never;
|
|
3726
|
-
onboarding?: never;
|
|
3727
|
-
} | {
|
|
3728
|
-
aiProvider?: never;
|
|
3729
3918
|
analytics: SettingsAnalyticInput;
|
|
3730
3919
|
network?: never;
|
|
3731
3920
|
onboarding?: never;
|
|
3732
3921
|
} | {
|
|
3733
|
-
aiProvider?: never;
|
|
3734
3922
|
analytics?: never;
|
|
3735
3923
|
network: SettingsNetworkInput;
|
|
3736
3924
|
onboarding?: never;
|
|
3737
3925
|
} | {
|
|
3738
|
-
aiProvider?: never;
|
|
3739
3926
|
analytics?: never;
|
|
3740
3927
|
network?: never;
|
|
3741
3928
|
onboarding: SettingsOnboardingInput;
|
|
@@ -3754,30 +3941,14 @@ export type SetPluginDataPayload = {
|
|
|
3754
3941
|
error?: Maybe<SetPluginDataError>;
|
|
3755
3942
|
plugin?: Maybe<Plugin>;
|
|
3756
3943
|
};
|
|
3944
|
+
export type SetPluginPackageDataError = OtherUserError | UnknownIdUserError;
|
|
3945
|
+
export type SetPluginPackageDataPayload = {
|
|
3946
|
+
error?: Maybe<SetPluginPackageDataError>;
|
|
3947
|
+
success: Scalars["Boolean"]["output"];
|
|
3948
|
+
};
|
|
3757
3949
|
export type SetProjectConfigStreamPayload = {
|
|
3758
3950
|
config: ProjectConfigStream;
|
|
3759
3951
|
};
|
|
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
|
-
};
|
|
3781
3952
|
export type SettingsAnalyticInput = {
|
|
3782
3953
|
enabled: Scalars["Boolean"]["input"];
|
|
3783
3954
|
};
|
|
@@ -4052,6 +4223,7 @@ export type StreamWsMessageOrderInput = {
|
|
|
4052
4223
|
ordering: Ordering;
|
|
4053
4224
|
};
|
|
4054
4225
|
export type SubscriptionRoot = {
|
|
4226
|
+
createdAIProvider: CreatedAiProviderPayload;
|
|
4055
4227
|
createdAssistantMessage: CreatedAssistantMessagePayload;
|
|
4056
4228
|
createdAssistantMessageTask: CreatedAssistantMessageTaskPayload;
|
|
4057
4229
|
createdAssistantSession: CreatedAssistantSessionPayload;
|
|
@@ -4086,6 +4258,7 @@ export type SubscriptionRoot = {
|
|
|
4086
4258
|
createdUpstreamProxyHttp: CreatedUpstreamProxyHttpPayload;
|
|
4087
4259
|
createdUpstreamProxySocks: CreatedUpstreamProxySocksPayload;
|
|
4088
4260
|
createdWorkflow: CreatedWorkflowPayload;
|
|
4261
|
+
deletedAIProvider: DeletedAiProviderPayload;
|
|
4089
4262
|
deletedAssistantSession: DeletedAssistantSessionPayload;
|
|
4090
4263
|
deletedAutomateEntry: DeletedAutomateEntryPayload;
|
|
4091
4264
|
deletedAutomateSession: DeletedAutomateSessionPayload;
|
|
@@ -4102,6 +4275,7 @@ export type SubscriptionRoot = {
|
|
|
4102
4275
|
deletedInterceptEntry: DeletedInterceptEntryPayload;
|
|
4103
4276
|
deletedInterceptMessage: DeletedInterceptMessagePayload;
|
|
4104
4277
|
deletedPluginPackage: DeletedPluginPackagePayload;
|
|
4278
|
+
deletedPluginPackageData: DeletedPluginPackageDataPayload;
|
|
4105
4279
|
deletedProject: DeletedProjectPayload;
|
|
4106
4280
|
deletedReplaySession: DeletedReplaySessionPayload;
|
|
4107
4281
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
@@ -4125,6 +4299,8 @@ export type SubscriptionRoot = {
|
|
|
4125
4299
|
startedDeleteInterceptEntriesTask: StartedDeleteInterceptEntriesTaskPayload;
|
|
4126
4300
|
startedRestoreBackupTask: StartedRestoreBackupTaskPayload;
|
|
4127
4301
|
startedTask: StartedTaskPayload;
|
|
4302
|
+
updatedAIProvider: UpdatedAiProviderPayload;
|
|
4303
|
+
updatedAIProviderAuthenticationStatus: UpdatedAiProviderAuthenticationStatusPayload;
|
|
4128
4304
|
updatedAssistantMessageTask: UpdatedAssistantMessageTaskPayload;
|
|
4129
4305
|
updatedAssistantSession: UpdatedAssistantSessionPayload;
|
|
4130
4306
|
updatedAutomateEntry: UpdatedAutomateEntryPayload;
|
|
@@ -4149,6 +4325,7 @@ export type SubscriptionRoot = {
|
|
|
4149
4325
|
updatedPassthroughOptions: UpdatedPassthroughOptionsPayload;
|
|
4150
4326
|
updatedPlugin: UpdatedPluginPayload;
|
|
4151
4327
|
updatedPluginPackage: UpdatedPluginPackagePayload;
|
|
4328
|
+
updatedPluginPackageData: UpdatedPluginPackageDataPayload;
|
|
4152
4329
|
updatedProject: UpdatedProjectPayload;
|
|
4153
4330
|
updatedReplayEntryDraft: UpdatedReplayEntryDraftPayload;
|
|
4154
4331
|
updatedReplayEntryWs: UpdatedReplayEntryWsPayload;
|
|
@@ -4197,10 +4374,16 @@ export type SubscriptionRootCreatedStreamArgs = {
|
|
|
4197
4374
|
export type SubscriptionRootCreatedStreamWsMessageArgs = {
|
|
4198
4375
|
filter?: InputMaybe<StreamQlInput>;
|
|
4199
4376
|
};
|
|
4377
|
+
export type SubscriptionRootDeletedPluginPackageDataArgs = {
|
|
4378
|
+
packageId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
4379
|
+
};
|
|
4200
4380
|
export type SubscriptionRootUpdatedInterceptEntryArgs = {
|
|
4201
4381
|
filter?: InputMaybe<HttpqlInput>;
|
|
4202
4382
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
4203
4383
|
};
|
|
4384
|
+
export type SubscriptionRootUpdatedPluginPackageDataArgs = {
|
|
4385
|
+
packageId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
4386
|
+
};
|
|
4204
4387
|
export type SubscriptionRootUpdatedRequestArgs = {
|
|
4205
4388
|
filter?: InputMaybe<HttpqlInput>;
|
|
4206
4389
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -4843,25 +5026,8 @@ export declare const TaskStatus: {
|
|
|
4843
5026
|
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
4844
5027
|
export type TestAiProviderError = AiUserError | OtherUserError;
|
|
4845
5028
|
export type TestAiProviderInput = {
|
|
4846
|
-
|
|
4847
|
-
|
|
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;
|
|
5029
|
+
apiKey: Scalars["Sensitive"]["input"];
|
|
5030
|
+
configuration: AiProviderConfigurationInput;
|
|
4865
5031
|
};
|
|
4866
5032
|
export type TestAiProviderPayload = {
|
|
4867
5033
|
error?: Maybe<TestAiProviderError>;
|
|
@@ -4980,6 +5146,16 @@ export type UnknownIdUserError = UserError & {
|
|
|
4980
5146
|
export type UnsupportedPlatformUserError = UserError & {
|
|
4981
5147
|
code: Scalars["String"]["output"];
|
|
4982
5148
|
};
|
|
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
|
+
};
|
|
4983
5159
|
export type UpdateAutomateSessionError = CloudUserError | OtherUserError | PermissionDeniedUserError;
|
|
4984
5160
|
export type UpdateAutomateSessionInput = {
|
|
4985
5161
|
connection: ConnectionInfoInput;
|
|
@@ -5160,6 +5336,13 @@ export type UpdateWorkflowPayload = {
|
|
|
5160
5336
|
error?: Maybe<UpdateWorkflowError>;
|
|
5161
5337
|
workflow?: Maybe<Workflow>;
|
|
5162
5338
|
};
|
|
5339
|
+
export type UpdatedAiProviderAuthenticationStatusPayload = {
|
|
5340
|
+
providerId: Scalars["ID"]["output"];
|
|
5341
|
+
status: AiProviderAuthenticationStatus;
|
|
5342
|
+
};
|
|
5343
|
+
export type UpdatedAiProviderPayload = {
|
|
5344
|
+
provider: AiProvider;
|
|
5345
|
+
};
|
|
5163
5346
|
export type UpdatedAssistantMessageTaskPayload = {
|
|
5164
5347
|
task: AssistantMessageTask;
|
|
5165
5348
|
};
|
|
@@ -5244,6 +5427,9 @@ export type UpdatedInterceptStatusPayload = {
|
|
|
5244
5427
|
export type UpdatedPassthroughOptionsPayload = {
|
|
5245
5428
|
options: PassthroughOptions;
|
|
5246
5429
|
};
|
|
5430
|
+
export type UpdatedPluginPackageDataPayload = {
|
|
5431
|
+
packageData: PluginPackageData;
|
|
5432
|
+
};
|
|
5247
5433
|
export type UpdatedPluginPackagePayload = {
|
|
5248
5434
|
package: PluginPackage;
|
|
5249
5435
|
};
|
|
@@ -5470,6 +5656,184 @@ export type Workspace = {
|
|
|
5470
5656
|
id: Scalars["ID"]["output"];
|
|
5471
5657
|
name: Scalars["String"]["output"];
|
|
5472
5658
|
};
|
|
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
|
+
};
|
|
5473
5837
|
export type TrackMutationVariables = Exact<{
|
|
5474
5838
|
input: TrackInput;
|
|
5475
5839
|
}>;
|
|
@@ -7721,6 +8085,25 @@ export type StartAutomateTaskMutation = {
|
|
|
7721
8085
|
} | undefined | null;
|
|
7722
8086
|
};
|
|
7723
8087
|
};
|
|
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
|
+
};
|
|
7724
8107
|
export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
|
|
7725
8108
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
7726
8109
|
filter?: InputMaybe<HttpqlInput>;
|
|
@@ -9332,6 +9715,12 @@ export type UpdatedEnvironmentContextSubscription = {
|
|
|
9332
9715
|
};
|
|
9333
9716
|
};
|
|
9334
9717
|
};
|
|
9718
|
+
export type AiUserErrorFullFragment = {
|
|
9719
|
+
__typename: "AIUserError";
|
|
9720
|
+
message: string;
|
|
9721
|
+
reason: AiErrorReason;
|
|
9722
|
+
code: string;
|
|
9723
|
+
};
|
|
9335
9724
|
export type WsUserErrorFullFragment = {
|
|
9336
9725
|
__typename: "WSUserError";
|
|
9337
9726
|
message: string;
|
|
@@ -11416,21 +11805,6 @@ export type OnUpdatedHostedFileSubscription = {
|
|
|
11416
11805
|
};
|
|
11417
11806
|
export type InstanceSettingsFullFragment = {
|
|
11418
11807
|
__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
|
-
};
|
|
11434
11808
|
onboarding: {
|
|
11435
11809
|
__typename: "OnboardingState";
|
|
11436
11810
|
analytic: boolean;
|
|
@@ -11446,16 +11820,6 @@ export type InstanceSettingsFullFragment = {
|
|
|
11446
11820
|
stack: SettingsNetworkStack;
|
|
11447
11821
|
};
|
|
11448
11822
|
};
|
|
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
|
-
};
|
|
11459
11823
|
export type SetInstanceSettingsMutationVariables = Exact<{
|
|
11460
11824
|
input: SetInstanceSettingsInput;
|
|
11461
11825
|
}>;
|
|
@@ -11463,21 +11827,6 @@ export type SetInstanceSettingsMutation = {
|
|
|
11463
11827
|
setInstanceSettings: {
|
|
11464
11828
|
settings: {
|
|
11465
11829
|
__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
|
-
};
|
|
11481
11830
|
onboarding: {
|
|
11482
11831
|
__typename: "OnboardingState";
|
|
11483
11832
|
analytic: boolean;
|
|
@@ -11495,42 +11844,12 @@ export type SetInstanceSettingsMutation = {
|
|
|
11495
11844
|
};
|
|
11496
11845
|
};
|
|
11497
11846
|
};
|
|
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
|
-
};
|
|
11513
11847
|
export type InstanceSettingsQueryVariables = Exact<{
|
|
11514
11848
|
[key: string]: never;
|
|
11515
11849
|
}>;
|
|
11516
11850
|
export type InstanceSettingsQuery = {
|
|
11517
11851
|
instanceSettings: {
|
|
11518
11852
|
__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
|
-
};
|
|
11534
11853
|
onboarding: {
|
|
11535
11854
|
__typename: "OnboardingState";
|
|
11536
11855
|
analytic: boolean;
|
|
@@ -11554,21 +11873,6 @@ export type UpdatedInstanceSettingsSubscription = {
|
|
|
11554
11873
|
updatedInstanceSettings: {
|
|
11555
11874
|
settings: {
|
|
11556
11875
|
__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
|
-
};
|
|
11572
11876
|
onboarding: {
|
|
11573
11877
|
__typename: "OnboardingState";
|
|
11574
11878
|
analytic: boolean;
|
|
@@ -18921,62 +19225,912 @@ export type CreatedTamperRuleSubscription = {
|
|
|
18921
19225
|
};
|
|
18922
19226
|
};
|
|
18923
19227
|
};
|
|
18924
|
-
export type
|
|
18925
|
-
|
|
18926
|
-
|
|
18927
|
-
|
|
18928
|
-
|
|
18929
|
-
|
|
18930
|
-
|
|
18931
|
-
|
|
18932
|
-
|
|
18933
|
-
|
|
18934
|
-
|
|
18935
|
-
|
|
18936
|
-
|
|
18937
|
-
|
|
18938
|
-
|
|
18939
|
-
|
|
18940
|
-
|
|
18941
|
-
|
|
18942
|
-
|
|
18943
|
-
|
|
18944
|
-
|
|
18945
|
-
|
|
18946
|
-
|
|
18947
|
-
|
|
18948
|
-
|
|
18949
|
-
|
|
18950
|
-
|
|
18951
|
-
|
|
18952
|
-
|
|
18953
|
-
|
|
19228
|
+
export type UpdatedTamperRuleSubscriptionVariables = Exact<{
|
|
19229
|
+
[key: string]: never;
|
|
19230
|
+
}>;
|
|
19231
|
+
export type UpdatedTamperRuleSubscription = {
|
|
19232
|
+
updatedTamperRule: {
|
|
19233
|
+
snapshot: number;
|
|
19234
|
+
rule: {
|
|
19235
|
+
__typename: "TamperRule";
|
|
19236
|
+
id: string;
|
|
19237
|
+
name: string;
|
|
19238
|
+
sources: Array<Source>;
|
|
19239
|
+
section: {
|
|
19240
|
+
__typename: "TamperSectionRequestAll";
|
|
19241
|
+
operation: {
|
|
19242
|
+
__typename: "TamperOperationAllRaw";
|
|
19243
|
+
matcher: {
|
|
19244
|
+
__typename: "TamperMatcherFull";
|
|
19245
|
+
} | {
|
|
19246
|
+
__typename: "TamperMatcherRegex";
|
|
19247
|
+
regex: string;
|
|
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
|
+
};
|
|
18954
19638
|
};
|
|
18955
19639
|
};
|
|
18956
|
-
type
|
|
18957
|
-
|
|
18958
|
-
|
|
18959
|
-
|
|
18960
|
-
|
|
18961
|
-
|
|
18962
|
-
|
|
18963
|
-
id: string;
|
|
19640
|
+
export type DeletedTamperRuleSubscriptionVariables = Exact<{
|
|
19641
|
+
[key: string]: never;
|
|
19642
|
+
}>;
|
|
19643
|
+
export type DeletedTamperRuleSubscription = {
|
|
19644
|
+
deletedTamperRule: {
|
|
19645
|
+
deletedRuleId: string;
|
|
19646
|
+
snapshot: number;
|
|
18964
19647
|
};
|
|
18965
19648
|
};
|
|
18966
|
-
export type
|
|
18967
|
-
|
|
18968
|
-
|
|
18969
|
-
|
|
18970
|
-
|
|
18971
|
-
|
|
18972
|
-
|
|
18973
|
-
|
|
18974
|
-
|
|
18975
|
-
|
|
18976
|
-
|
|
18977
|
-
|
|
18978
|
-
|
|
18979
|
-
|
|
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;
|
|
20108
|
+
};
|
|
20109
|
+
};
|
|
20110
|
+
type PluginMeta_PluginWorkflow_Fragment = {
|
|
20111
|
+
__typename: "PluginWorkflow";
|
|
20112
|
+
id: string;
|
|
20113
|
+
name?: string | undefined | null;
|
|
20114
|
+
enabled: boolean;
|
|
20115
|
+
manifestId: string;
|
|
20116
|
+
package: {
|
|
20117
|
+
id: string;
|
|
20118
|
+
};
|
|
20119
|
+
};
|
|
20120
|
+
export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
|
|
20121
|
+
export type PluginBackendMetaFragment = {
|
|
20122
|
+
__typename: "PluginBackend";
|
|
20123
|
+
id: string;
|
|
20124
|
+
};
|
|
20125
|
+
export type PluginBackendFullFragment = {
|
|
20126
|
+
__typename: "PluginBackend";
|
|
20127
|
+
runtime: PluginRuntime;
|
|
20128
|
+
id: string;
|
|
20129
|
+
name?: string | undefined | null;
|
|
20130
|
+
enabled: boolean;
|
|
20131
|
+
manifestId: string;
|
|
20132
|
+
state: {
|
|
20133
|
+
error?: string | undefined | null;
|
|
18980
20134
|
running: boolean;
|
|
18981
20135
|
};
|
|
18982
20136
|
package: {
|
|
@@ -19294,48 +20448,266 @@ export type InstallPluginPackagesMutation = {
|
|
|
19294
20448
|
links?: {
|
|
19295
20449
|
sponsor?: string | undefined | null;
|
|
19296
20450
|
} | undefined | null;
|
|
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
|
-
}>;
|
|
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
|
+
};
|
|
19314
20695
|
};
|
|
19315
20696
|
};
|
|
19316
|
-
export type
|
|
19317
|
-
|
|
20697
|
+
export type DeletedPluginPackageSubscriptionVariables = Exact<{
|
|
20698
|
+
[key: string]: never;
|
|
19318
20699
|
}>;
|
|
19319
|
-
export type
|
|
19320
|
-
|
|
19321
|
-
|
|
19322
|
-
error?: {
|
|
19323
|
-
__typename: "OtherUserError";
|
|
19324
|
-
code: string;
|
|
19325
|
-
} | {
|
|
19326
|
-
__typename: "UnknownIdUserError";
|
|
19327
|
-
id: string;
|
|
19328
|
-
code: string;
|
|
19329
|
-
} | undefined | null;
|
|
20700
|
+
export type DeletedPluginPackageSubscription = {
|
|
20701
|
+
deletedPluginPackage: {
|
|
20702
|
+
deletedPackageId: string;
|
|
19330
20703
|
};
|
|
19331
20704
|
};
|
|
19332
|
-
export type
|
|
19333
|
-
|
|
19334
|
-
enabled: Scalars["Boolean"]["input"];
|
|
20705
|
+
export type UpdatedPluginSubscriptionVariables = Exact<{
|
|
20706
|
+
[key: string]: never;
|
|
19335
20707
|
}>;
|
|
19336
|
-
export type
|
|
19337
|
-
|
|
19338
|
-
plugin
|
|
20708
|
+
export type UpdatedPluginSubscription = {
|
|
20709
|
+
updatedPlugin: {
|
|
20710
|
+
plugin: {
|
|
19339
20711
|
__typename: "PluginBackend";
|
|
19340
20712
|
runtime: PluginRuntime;
|
|
19341
20713
|
id: string;
|
|
@@ -19383,14 +20755,55 @@ export type TogglePluginMutation = {
|
|
|
19383
20755
|
package: {
|
|
19384
20756
|
id: string;
|
|
19385
20757
|
};
|
|
19386
|
-
}
|
|
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;
|
|
19387
20804
|
error?: {
|
|
19388
20805
|
__typename: "OtherUserError";
|
|
19389
20806
|
code: string;
|
|
19390
|
-
} | {
|
|
19391
|
-
__typename: "PluginUserError";
|
|
19392
|
-
reason: PluginErrorReason;
|
|
19393
|
-
code: string;
|
|
19394
20807
|
} | {
|
|
19395
20808
|
__typename: "UnknownIdUserError";
|
|
19396
20809
|
id: string;
|
|
@@ -19398,68 +20811,17 @@ export type TogglePluginMutation = {
|
|
|
19398
20811
|
} | undefined | null;
|
|
19399
20812
|
};
|
|
19400
20813
|
};
|
|
19401
|
-
export type
|
|
20814
|
+
export type SetPluginPackageDataMutationVariables = Exact<{
|
|
19402
20815
|
id: Scalars["ID"]["input"];
|
|
20816
|
+
key: Scalars["String"]["input"];
|
|
19403
20817
|
data: Scalars["JSON"]["input"];
|
|
19404
20818
|
}>;
|
|
19405
|
-
export type
|
|
19406
|
-
|
|
19407
|
-
|
|
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;
|
|
20819
|
+
export type SetPluginPackageDataMutation = {
|
|
20820
|
+
setPluginPackageData: {
|
|
20821
|
+
success: boolean;
|
|
19456
20822
|
error?: {
|
|
19457
20823
|
__typename: "OtherUserError";
|
|
19458
20824
|
code: string;
|
|
19459
|
-
} | {
|
|
19460
|
-
__typename: "PluginUserError";
|
|
19461
|
-
reason: PluginErrorReason;
|
|
19462
|
-
code: string;
|
|
19463
20825
|
} | {
|
|
19464
20826
|
__typename: "UnknownIdUserError";
|
|
19465
20827
|
id: string;
|
|
@@ -19467,151 +20829,47 @@ export type SetPluginDataMutation = {
|
|
|
19467
20829
|
} | undefined | null;
|
|
19468
20830
|
};
|
|
19469
20831
|
};
|
|
19470
|
-
export type
|
|
19471
|
-
|
|
20832
|
+
export type DeletePluginPackageDataMutationVariables = Exact<{
|
|
20833
|
+
id: Scalars["ID"]["input"];
|
|
20834
|
+
key: Scalars["String"]["input"];
|
|
19472
20835
|
}>;
|
|
19473
|
-
export type
|
|
19474
|
-
|
|
19475
|
-
|
|
20836
|
+
export type DeletePluginPackageDataMutation = {
|
|
20837
|
+
deletePluginPackageData: {
|
|
20838
|
+
success: boolean;
|
|
20839
|
+
error?: {
|
|
20840
|
+
__typename: "OtherUserError";
|
|
20841
|
+
code: string;
|
|
20842
|
+
} | {
|
|
20843
|
+
__typename: "UnknownIdUserError";
|
|
19476
20844
|
id: string;
|
|
19477
|
-
|
|
19478
|
-
|
|
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;
|
|
20845
|
+
code: string;
|
|
20846
|
+
} | undefined | null;
|
|
19549
20847
|
};
|
|
19550
20848
|
};
|
|
19551
|
-
export type
|
|
20849
|
+
export type UpdatedPluginPackageDataSubscriptionVariables = Exact<{
|
|
19552
20850
|
[key: string]: never;
|
|
19553
20851
|
}>;
|
|
19554
|
-
export type
|
|
19555
|
-
|
|
19556
|
-
|
|
19557
|
-
|
|
19558
|
-
|
|
19559
|
-
|
|
19560
|
-
|
|
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;
|
|
20852
|
+
export type UpdatedPluginPackageDataSubscription = {
|
|
20853
|
+
updatedPluginPackageData: {
|
|
20854
|
+
packageData: {
|
|
20855
|
+
key: string;
|
|
20856
|
+
value?: unknown | undefined | null;
|
|
20857
|
+
flags: {
|
|
20858
|
+
exportable: boolean;
|
|
19585
20859
|
};
|
|
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;
|
|
19601
20860
|
package: {
|
|
19602
20861
|
id: string;
|
|
19603
20862
|
};
|
|
19604
20863
|
};
|
|
19605
20864
|
};
|
|
19606
20865
|
};
|
|
19607
|
-
export type
|
|
20866
|
+
export type DeletedPluginPackageDataSubscriptionVariables = Exact<{
|
|
19608
20867
|
[key: string]: never;
|
|
19609
20868
|
}>;
|
|
19610
|
-
export type
|
|
19611
|
-
|
|
19612
|
-
|
|
19613
|
-
|
|
19614
|
-
eventName: string;
|
|
20869
|
+
export type DeletedPluginPackageDataSubscription = {
|
|
20870
|
+
deletedPluginPackageData: {
|
|
20871
|
+
packageId: string;
|
|
20872
|
+
key: string;
|
|
19615
20873
|
};
|
|
19616
20874
|
};
|
|
19617
20875
|
export type ProjectFullFragment = {
|
|
@@ -124096,14 +125354,17 @@ export type TestWorkflowPassiveMutation = {
|
|
|
124096
125354
|
} | undefined | null;
|
|
124097
125355
|
};
|
|
124098
125356
|
};
|
|
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 ";
|
|
124099
125362
|
export declare const AssistantModelFullFragmentDoc = "\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
124100
125363
|
export declare const AssistantSessionMetaFragmentDoc = "\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
124101
125364
|
export declare const AssistantMessageFullFragmentDoc = "\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
124102
125365
|
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 ";
|
|
124104
125366
|
export declare const AssistantUserErrorFullFragmentDoc = "\n fragment assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n ";
|
|
124105
125367
|
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 ";
|
|
124107
125368
|
export declare const CloudUserErrorFullFragmentDoc = "\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
124108
125369
|
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 ";
|
|
124109
125370
|
export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
@@ -124204,8 +125465,7 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
|
|
|
124204
125465
|
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
124205
125466
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
124206
125467
|
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 ";
|
|
124207
|
-
export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\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 ";
|
|
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 ";
|
|
124209
125469
|
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
124210
125470
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
124211
125471
|
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 ";
|
|
@@ -124267,6 +125527,7 @@ export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on W
|
|
|
124267
125527
|
export declare const PluginWorkflowFullFragmentDoc = "\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
124268
125528
|
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 ";
|
|
124269
125529
|
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 ";
|
|
124270
125531
|
export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
124271
125532
|
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
124272
125533
|
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
@@ -124323,6 +125584,15 @@ export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on W
|
|
|
124323
125584
|
export declare const WorkflowEdgeFullFragmentDoc = "\n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n ";
|
|
124324
125585
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
124325
125586
|
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 ";
|
|
124326
125596
|
export declare const TrackDocument = "\n mutation track($input: TrackInput!) {\n track(input: $input) {\n success\n }\n}\n ";
|
|
124327
125597
|
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 ";
|
|
124328
125598
|
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 ";
|
|
@@ -124359,6 +125629,7 @@ export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomate
|
|
|
124359
125629
|
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 ";
|
|
124360
125630
|
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 ";
|
|
124361
125631
|
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 ";
|
|
124362
125633
|
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 ";
|
|
124363
125634
|
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 ";
|
|
124364
125635
|
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n status\n }\n}\n ";
|
|
@@ -124473,10 +125744,9 @@ export declare const HostedFilesDocument = "\n query hostedFiles {\n hostedF
|
|
|
124473
125744
|
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 ";
|
|
124474
125745
|
export declare const OnDeletedHostedFileDocument = "\n subscription onDeletedHostedFile {\n deletedHostedFile {\n deletedHostedFileId\n }\n}\n ";
|
|
124475
125746
|
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 ";
|
|
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
|
|
124477
|
-
export declare const
|
|
124478
|
-
export declare const
|
|
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 ";
|
|
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 InstanceSettingsDocument = "\n query instanceSettings {\n instanceSettings {\n ...instanceSettingsFull\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 ";
|
|
125749
|
+
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 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 ";
|
|
124480
125750
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
124481
125751
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
124482
125752
|
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 ";
|
|
@@ -124507,6 +125777,10 @@ export declare const ExportTamperDocument = "\n mutation exportTamper($input:
|
|
|
124507
125777
|
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 ";
|
|
124508
125778
|
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 ";
|
|
124509
125779
|
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 ";
|
|
124510
125784
|
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 ";
|
|
124511
125785
|
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 ";
|
|
124512
125786
|
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 ";
|
|
@@ -124517,6 +125791,12 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
124517
125791
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
124518
125792
|
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 ";
|
|
124519
125793
|
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 ";
|
|
124520
125800
|
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 ";
|
|
124521
125801
|
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 ";
|
|
124522
125802
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
@@ -124670,6 +125950,15 @@ export declare const TestWorkflowActiveDocument = "\n mutation testWorkflowAc
|
|
|
124670
125950
|
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 ";
|
|
124671
125951
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
124672
125952
|
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>;
|
|
124673
125962
|
track(variables: TrackMutationVariables, options?: C): Promise<TrackMutation>;
|
|
124674
125963
|
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
124675
125964
|
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
@@ -124706,6 +125995,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
124706
125995
|
pauseAutomateTask(variables: PauseAutomateTaskMutationVariables, options?: C): Promise<PauseAutomateTaskMutation>;
|
|
124707
125996
|
resumeAutomateTask(variables: ResumeAutomateTaskMutationVariables, options?: C): Promise<ResumeAutomateTaskMutation>;
|
|
124708
125997
|
startAutomateTask(variables: StartAutomateTaskMutationVariables, options?: C): Promise<StartAutomateTaskMutation>;
|
|
125998
|
+
exportAutomateEntries(variables: ExportAutomateEntriesMutationVariables, options?: C): Promise<ExportAutomateEntriesMutation>;
|
|
124709
125999
|
createdAutomateEntryRequest(variables?: CreatedAutomateEntryRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateEntryRequestSubscription>;
|
|
124710
126000
|
createdAutomateTask(variables?: CreatedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateTaskSubscription>;
|
|
124711
126001
|
deletedAutomateTask(variables?: DeletedAutomateTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateTaskSubscription>;
|
|
@@ -124821,7 +126111,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
124821
126111
|
onDeletedHostedFile(variables?: OnDeletedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnDeletedHostedFileSubscription>;
|
|
124822
126112
|
onUpdatedHostedFile(variables?: OnUpdatedHostedFileSubscriptionVariables, options?: C): AsyncIterable<OnUpdatedHostedFileSubscription>;
|
|
124823
126113
|
setInstanceSettings(variables: SetInstanceSettingsMutationVariables, options?: C): Promise<SetInstanceSettingsMutation>;
|
|
124824
|
-
testAiProvider(variables: TestAiProviderMutationVariables, options?: C): Promise<TestAiProviderMutation>;
|
|
124825
126114
|
instanceSettings(variables?: InstanceSettingsQueryVariables, options?: C): Promise<InstanceSettingsQuery>;
|
|
124826
126115
|
updatedInstanceSettings(variables?: UpdatedInstanceSettingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInstanceSettingsSubscription>;
|
|
124827
126116
|
forwardInterceptMessage(variables: ForwardInterceptMessageMutationVariables, options?: C): Promise<ForwardInterceptMessageMutation>;
|
|
@@ -124854,6 +126143,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
124854
126143
|
importTamper(variables: ImportTamperMutationVariables, options?: C): Promise<ImportTamperMutation>;
|
|
124855
126144
|
createdTamperRuleCollection(variables?: CreatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleCollectionSubscription>;
|
|
124856
126145
|
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>;
|
|
124857
126150
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
124858
126151
|
storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
|
|
124859
126152
|
installPluginPackages(variables: InstallPluginPackagesMutationVariables, options?: C): Promise<InstallPluginPackagesMutation>;
|
|
@@ -124864,6 +126157,12 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
124864
126157
|
deletedPluginPackage(variables?: DeletedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<DeletedPluginPackageSubscription>;
|
|
124865
126158
|
updatedPlugin(variables?: UpdatedPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedPluginSubscription>;
|
|
124866
126159
|
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>;
|
|
124867
126166
|
createdProject(variables?: CreatedProjectSubscriptionVariables, options?: C): AsyncIterable<CreatedProjectSubscription>;
|
|
124868
126167
|
updatedProject(variables?: UpdatedProjectSubscriptionVariables, options?: C): AsyncIterable<UpdatedProjectSubscription>;
|
|
124869
126168
|
deletedProject(variables?: DeletedProjectSubscriptionVariables, options?: C): AsyncIterable<DeletedProjectSubscription>;
|