@caido/sdk-frontend 0.57.1-beta.7 → 0.57.1-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.57.1-beta.7",
3
+ "version": "0.57.1-beta.9",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "repository": "https://github.com/caido/sdk-js/",
@@ -1671,6 +1671,15 @@ export type InstallBrowserPayload = {
1671
1671
  browser?: Maybe<Browser>;
1672
1672
  error?: Maybe<InstallBrowserError>;
1673
1673
  };
1674
+ export type InstallPluginPackageError = CloudUserError | OtherUserError | PluginUserError | StoreUserError;
1675
+ export type InstallPluginPackageInput = {
1676
+ force?: InputMaybe<Scalars["Boolean"]["input"]>;
1677
+ source: PluginPackageSource;
1678
+ };
1679
+ export type InstallPluginPackagePayload = {
1680
+ error?: Maybe<InstallPluginPackageError>;
1681
+ package?: Maybe<PluginPackage>;
1682
+ };
1674
1683
  export type InstallPluginPackagesError = CloudUserError | OtherUserError | PluginUserError | StoreUserError;
1675
1684
  export type InstallPluginPackagesInput = {
1676
1685
  force?: InputMaybe<Scalars["Boolean"]["input"]>;
@@ -1930,6 +1939,7 @@ export type MutationRoot = {
1930
1939
  importCertificate: ImportCertificatePayload;
1931
1940
  importData: DataImportResult;
1932
1941
  installBrowser: InstallBrowserPayload;
1942
+ installPluginPackage: InstallPluginPackagePayload;
1933
1943
  installPluginPackages: InstallPluginPackagesPayload;
1934
1944
  localizeWorkflow: LocalizeWorkflowPayload;
1935
1945
  loginAsGuest: GuestAuthenticationPayload;
@@ -2210,6 +2220,9 @@ export type MutationRootImportCertificateArgs = {
2210
2220
  export type MutationRootImportDataArgs = {
2211
2221
  input: ImportDataInput;
2212
2222
  };
2223
+ export type MutationRootInstallPluginPackageArgs = {
2224
+ input: InstallPluginPackageInput;
2225
+ };
2213
2226
  export type MutationRootInstallPluginPackagesArgs = {
2214
2227
  input: InstallPluginPackagesInput;
2215
2228
  };
@@ -18856,6 +18869,856 @@ export type CreatedTamperRuleSubscription = {
18856
18869
  };
18857
18870
  };
18858
18871
  };
18872
+ export type UpdatedTamperRuleSubscriptionVariables = Exact<{
18873
+ [key: string]: never;
18874
+ }>;
18875
+ export type UpdatedTamperRuleSubscription = {
18876
+ updatedTamperRule: {
18877
+ snapshot: number;
18878
+ rule: {
18879
+ __typename: "TamperRule";
18880
+ id: string;
18881
+ name: string;
18882
+ sources: Array<Source>;
18883
+ section: {
18884
+ __typename: "TamperSectionRequestAll";
18885
+ operation: {
18886
+ __typename: "TamperOperationAllRaw";
18887
+ matcher: {
18888
+ __typename: "TamperMatcherFull";
18889
+ } | {
18890
+ __typename: "TamperMatcherRegex";
18891
+ regex: string;
18892
+ } | {
18893
+ __typename: "TamperMatcherValue";
18894
+ value: string;
18895
+ };
18896
+ replacer: {
18897
+ __typename: "TamperReplacerTerm";
18898
+ term: string;
18899
+ } | {
18900
+ __typename: "TamperReplacerWorkflow";
18901
+ id: string;
18902
+ };
18903
+ };
18904
+ } | {
18905
+ __typename: "TamperSectionRequestBody";
18906
+ operation: {
18907
+ __typename: "TamperOperationBodyRaw";
18908
+ matcher: {
18909
+ __typename: "TamperMatcherFull";
18910
+ } | {
18911
+ __typename: "TamperMatcherRegex";
18912
+ regex: string;
18913
+ } | {
18914
+ __typename: "TamperMatcherValue";
18915
+ value: string;
18916
+ };
18917
+ replacer: {
18918
+ __typename: "TamperReplacerTerm";
18919
+ term: string;
18920
+ } | {
18921
+ __typename: "TamperReplacerWorkflow";
18922
+ id: string;
18923
+ };
18924
+ };
18925
+ } | {
18926
+ __typename: "TamperSectionRequestFirstLine";
18927
+ operation: {
18928
+ __typename: "TamperOperationFirstLineRaw";
18929
+ matcher: {
18930
+ __typename: "TamperMatcherFull";
18931
+ } | {
18932
+ __typename: "TamperMatcherRegex";
18933
+ regex: string;
18934
+ } | {
18935
+ __typename: "TamperMatcherValue";
18936
+ value: string;
18937
+ };
18938
+ replacer: {
18939
+ __typename: "TamperReplacerTerm";
18940
+ term: string;
18941
+ } | {
18942
+ __typename: "TamperReplacerWorkflow";
18943
+ id: string;
18944
+ };
18945
+ };
18946
+ } | {
18947
+ __typename: "TamperSectionRequestHeader";
18948
+ operation: {
18949
+ __typename: "TamperOperationHeaderAdd";
18950
+ matcher: {
18951
+ __typename: "TamperMatcherName";
18952
+ name: string;
18953
+ };
18954
+ replacer: {
18955
+ __typename: "TamperReplacerTerm";
18956
+ term: string;
18957
+ } | {
18958
+ __typename: "TamperReplacerWorkflow";
18959
+ id: string;
18960
+ };
18961
+ } | {
18962
+ __typename: "TamperOperationHeaderRaw";
18963
+ matcher: {
18964
+ __typename: "TamperMatcherFull";
18965
+ } | {
18966
+ __typename: "TamperMatcherRegex";
18967
+ regex: string;
18968
+ } | {
18969
+ __typename: "TamperMatcherValue";
18970
+ value: string;
18971
+ };
18972
+ replacer: {
18973
+ __typename: "TamperReplacerTerm";
18974
+ term: string;
18975
+ } | {
18976
+ __typename: "TamperReplacerWorkflow";
18977
+ id: string;
18978
+ };
18979
+ } | {
18980
+ __typename: "TamperOperationHeaderRemove";
18981
+ matcher: {
18982
+ __typename: "TamperMatcherName";
18983
+ name: string;
18984
+ };
18985
+ } | {
18986
+ __typename: "TamperOperationHeaderUpdate";
18987
+ matcher: {
18988
+ __typename: "TamperMatcherName";
18989
+ name: string;
18990
+ };
18991
+ replacer: {
18992
+ __typename: "TamperReplacerTerm";
18993
+ term: string;
18994
+ } | {
18995
+ __typename: "TamperReplacerWorkflow";
18996
+ id: string;
18997
+ };
18998
+ };
18999
+ } | {
19000
+ __typename: "TamperSectionRequestMethod";
19001
+ operation: {
19002
+ __typename: "TamperOperationMethodUpdate";
19003
+ replacer: {
19004
+ __typename: "TamperReplacerTerm";
19005
+ term: string;
19006
+ } | {
19007
+ __typename: "TamperReplacerWorkflow";
19008
+ id: string;
19009
+ };
19010
+ };
19011
+ } | {
19012
+ __typename: "TamperSectionRequestPath";
19013
+ operation: {
19014
+ __typename: "TamperOperationPathRaw";
19015
+ matcher: {
19016
+ __typename: "TamperMatcherFull";
19017
+ } | {
19018
+ __typename: "TamperMatcherRegex";
19019
+ regex: string;
19020
+ } | {
19021
+ __typename: "TamperMatcherValue";
19022
+ value: string;
19023
+ };
19024
+ replacer: {
19025
+ __typename: "TamperReplacerTerm";
19026
+ term: string;
19027
+ } | {
19028
+ __typename: "TamperReplacerWorkflow";
19029
+ id: string;
19030
+ };
19031
+ };
19032
+ } | {
19033
+ __typename: "TamperSectionRequestQuery";
19034
+ operation: {
19035
+ __typename: "TamperOperationQueryAdd";
19036
+ matcher: {
19037
+ __typename: "TamperMatcherName";
19038
+ name: string;
19039
+ };
19040
+ replacer: {
19041
+ __typename: "TamperReplacerTerm";
19042
+ term: string;
19043
+ } | {
19044
+ __typename: "TamperReplacerWorkflow";
19045
+ id: string;
19046
+ };
19047
+ } | {
19048
+ __typename: "TamperOperationQueryRaw";
19049
+ matcher: {
19050
+ __typename: "TamperMatcherFull";
19051
+ } | {
19052
+ __typename: "TamperMatcherRegex";
19053
+ regex: string;
19054
+ } | {
19055
+ __typename: "TamperMatcherValue";
19056
+ value: string;
19057
+ };
19058
+ replacer: {
19059
+ __typename: "TamperReplacerTerm";
19060
+ term: string;
19061
+ } | {
19062
+ __typename: "TamperReplacerWorkflow";
19063
+ id: string;
19064
+ };
19065
+ } | {
19066
+ __typename: "TamperOperationQueryRemove";
19067
+ matcher: {
19068
+ __typename: "TamperMatcherName";
19069
+ name: string;
19070
+ };
19071
+ } | {
19072
+ __typename: "TamperOperationQueryUpdate";
19073
+ matcher: {
19074
+ __typename: "TamperMatcherName";
19075
+ name: string;
19076
+ };
19077
+ replacer: {
19078
+ __typename: "TamperReplacerTerm";
19079
+ term: string;
19080
+ } | {
19081
+ __typename: "TamperReplacerWorkflow";
19082
+ id: string;
19083
+ };
19084
+ };
19085
+ } | {
19086
+ __typename: "TamperSectionRequestSNI";
19087
+ operation: {
19088
+ __typename: "TamperOperationSNIRaw";
19089
+ replacer: {
19090
+ __typename: "TamperReplacerTerm";
19091
+ term: string;
19092
+ } | {
19093
+ __typename: "TamperReplacerWorkflow";
19094
+ id: string;
19095
+ };
19096
+ };
19097
+ } | {
19098
+ __typename: "TamperSectionResponseAll";
19099
+ operation: {
19100
+ __typename: "TamperOperationAllRaw";
19101
+ matcher: {
19102
+ __typename: "TamperMatcherFull";
19103
+ } | {
19104
+ __typename: "TamperMatcherRegex";
19105
+ regex: string;
19106
+ } | {
19107
+ __typename: "TamperMatcherValue";
19108
+ value: string;
19109
+ };
19110
+ replacer: {
19111
+ __typename: "TamperReplacerTerm";
19112
+ term: string;
19113
+ } | {
19114
+ __typename: "TamperReplacerWorkflow";
19115
+ id: string;
19116
+ };
19117
+ };
19118
+ } | {
19119
+ __typename: "TamperSectionResponseBody";
19120
+ operation: {
19121
+ __typename: "TamperOperationBodyRaw";
19122
+ matcher: {
19123
+ __typename: "TamperMatcherFull";
19124
+ } | {
19125
+ __typename: "TamperMatcherRegex";
19126
+ regex: string;
19127
+ } | {
19128
+ __typename: "TamperMatcherValue";
19129
+ value: string;
19130
+ };
19131
+ replacer: {
19132
+ __typename: "TamperReplacerTerm";
19133
+ term: string;
19134
+ } | {
19135
+ __typename: "TamperReplacerWorkflow";
19136
+ id: string;
19137
+ };
19138
+ };
19139
+ } | {
19140
+ __typename: "TamperSectionResponseFirstLine";
19141
+ operation: {
19142
+ __typename: "TamperOperationFirstLineRaw";
19143
+ matcher: {
19144
+ __typename: "TamperMatcherFull";
19145
+ } | {
19146
+ __typename: "TamperMatcherRegex";
19147
+ regex: string;
19148
+ } | {
19149
+ __typename: "TamperMatcherValue";
19150
+ value: string;
19151
+ };
19152
+ replacer: {
19153
+ __typename: "TamperReplacerTerm";
19154
+ term: string;
19155
+ } | {
19156
+ __typename: "TamperReplacerWorkflow";
19157
+ id: string;
19158
+ };
19159
+ };
19160
+ } | {
19161
+ __typename: "TamperSectionResponseHeader";
19162
+ operation: {
19163
+ __typename: "TamperOperationHeaderAdd";
19164
+ matcher: {
19165
+ __typename: "TamperMatcherName";
19166
+ name: string;
19167
+ };
19168
+ replacer: {
19169
+ __typename: "TamperReplacerTerm";
19170
+ term: string;
19171
+ } | {
19172
+ __typename: "TamperReplacerWorkflow";
19173
+ id: string;
19174
+ };
19175
+ } | {
19176
+ __typename: "TamperOperationHeaderRaw";
19177
+ matcher: {
19178
+ __typename: "TamperMatcherFull";
19179
+ } | {
19180
+ __typename: "TamperMatcherRegex";
19181
+ regex: string;
19182
+ } | {
19183
+ __typename: "TamperMatcherValue";
19184
+ value: string;
19185
+ };
19186
+ replacer: {
19187
+ __typename: "TamperReplacerTerm";
19188
+ term: string;
19189
+ } | {
19190
+ __typename: "TamperReplacerWorkflow";
19191
+ id: string;
19192
+ };
19193
+ } | {
19194
+ __typename: "TamperOperationHeaderRemove";
19195
+ matcher: {
19196
+ __typename: "TamperMatcherName";
19197
+ name: string;
19198
+ };
19199
+ } | {
19200
+ __typename: "TamperOperationHeaderUpdate";
19201
+ matcher: {
19202
+ __typename: "TamperMatcherName";
19203
+ name: string;
19204
+ };
19205
+ replacer: {
19206
+ __typename: "TamperReplacerTerm";
19207
+ term: string;
19208
+ } | {
19209
+ __typename: "TamperReplacerWorkflow";
19210
+ id: string;
19211
+ };
19212
+ };
19213
+ } | {
19214
+ __typename: "TamperSectionResponseStatusCode";
19215
+ operation: {
19216
+ __typename: "TamperOperationStatusCodeUpdate";
19217
+ replacer: {
19218
+ __typename: "TamperReplacerTerm";
19219
+ term: string;
19220
+ } | {
19221
+ __typename: "TamperReplacerWorkflow";
19222
+ id: string;
19223
+ };
19224
+ };
19225
+ } | {
19226
+ __typename: "TamperSectionStreamWsMessageDownstream";
19227
+ operation: {
19228
+ __typename: "TamperOperationStreamWsMessageRaw";
19229
+ matcher: {
19230
+ __typename: "TamperMatcherFull";
19231
+ } | {
19232
+ __typename: "TamperMatcherRegex";
19233
+ regex: string;
19234
+ } | {
19235
+ __typename: "TamperMatcherValue";
19236
+ value: string;
19237
+ };
19238
+ replacer: {
19239
+ __typename: "TamperReplacerTerm";
19240
+ term: string;
19241
+ } | {
19242
+ __typename: "TamperReplacerWorkflow";
19243
+ id: string;
19244
+ };
19245
+ };
19246
+ } | {
19247
+ __typename: "TamperSectionStreamWsMessageUpstream";
19248
+ operation: {
19249
+ __typename: "TamperOperationStreamWsMessageRaw";
19250
+ matcher: {
19251
+ __typename: "TamperMatcherFull";
19252
+ } | {
19253
+ __typename: "TamperMatcherRegex";
19254
+ regex: string;
19255
+ } | {
19256
+ __typename: "TamperMatcherValue";
19257
+ value: string;
19258
+ };
19259
+ replacer: {
19260
+ __typename: "TamperReplacerTerm";
19261
+ term: string;
19262
+ } | {
19263
+ __typename: "TamperReplacerWorkflow";
19264
+ id: string;
19265
+ };
19266
+ };
19267
+ };
19268
+ enable?: {
19269
+ rank: string;
19270
+ } | undefined | null;
19271
+ condition?: {
19272
+ __typename: "HTTPQL";
19273
+ code: string;
19274
+ } | {
19275
+ __typename: "StreamQL";
19276
+ code: string;
19277
+ } | undefined | null;
19278
+ collection: {
19279
+ id: string;
19280
+ };
19281
+ };
19282
+ };
19283
+ };
19284
+ export type DeletedTamperRuleSubscriptionVariables = Exact<{
19285
+ [key: string]: never;
19286
+ }>;
19287
+ export type DeletedTamperRuleSubscription = {
19288
+ deletedTamperRule: {
19289
+ deletedRuleId: string;
19290
+ snapshot: number;
19291
+ };
19292
+ };
19293
+ export type UpdatedTamperRuleCollectionSubscriptionVariables = Exact<{
19294
+ [key: string]: never;
19295
+ }>;
19296
+ export type UpdatedTamperRuleCollectionSubscription = {
19297
+ updatedTamperRuleCollection: {
19298
+ snapshot: number;
19299
+ collectionEdge: {
19300
+ cursor: string;
19301
+ node: {
19302
+ __typename: "TamperRuleCollection";
19303
+ id: string;
19304
+ name: string;
19305
+ rules: Array<{
19306
+ __typename: "TamperRule";
19307
+ id: string;
19308
+ name: string;
19309
+ sources: Array<Source>;
19310
+ section: {
19311
+ __typename: "TamperSectionRequestAll";
19312
+ operation: {
19313
+ __typename: "TamperOperationAllRaw";
19314
+ matcher: {
19315
+ __typename: "TamperMatcherFull";
19316
+ } | {
19317
+ __typename: "TamperMatcherRegex";
19318
+ regex: string;
19319
+ } | {
19320
+ __typename: "TamperMatcherValue";
19321
+ value: string;
19322
+ };
19323
+ replacer: {
19324
+ __typename: "TamperReplacerTerm";
19325
+ term: string;
19326
+ } | {
19327
+ __typename: "TamperReplacerWorkflow";
19328
+ id: string;
19329
+ };
19330
+ };
19331
+ } | {
19332
+ __typename: "TamperSectionRequestBody";
19333
+ operation: {
19334
+ __typename: "TamperOperationBodyRaw";
19335
+ matcher: {
19336
+ __typename: "TamperMatcherFull";
19337
+ } | {
19338
+ __typename: "TamperMatcherRegex";
19339
+ regex: string;
19340
+ } | {
19341
+ __typename: "TamperMatcherValue";
19342
+ value: string;
19343
+ };
19344
+ replacer: {
19345
+ __typename: "TamperReplacerTerm";
19346
+ term: string;
19347
+ } | {
19348
+ __typename: "TamperReplacerWorkflow";
19349
+ id: string;
19350
+ };
19351
+ };
19352
+ } | {
19353
+ __typename: "TamperSectionRequestFirstLine";
19354
+ operation: {
19355
+ __typename: "TamperOperationFirstLineRaw";
19356
+ matcher: {
19357
+ __typename: "TamperMatcherFull";
19358
+ } | {
19359
+ __typename: "TamperMatcherRegex";
19360
+ regex: string;
19361
+ } | {
19362
+ __typename: "TamperMatcherValue";
19363
+ value: string;
19364
+ };
19365
+ replacer: {
19366
+ __typename: "TamperReplacerTerm";
19367
+ term: string;
19368
+ } | {
19369
+ __typename: "TamperReplacerWorkflow";
19370
+ id: string;
19371
+ };
19372
+ };
19373
+ } | {
19374
+ __typename: "TamperSectionRequestHeader";
19375
+ operation: {
19376
+ __typename: "TamperOperationHeaderAdd";
19377
+ matcher: {
19378
+ __typename: "TamperMatcherName";
19379
+ name: string;
19380
+ };
19381
+ replacer: {
19382
+ __typename: "TamperReplacerTerm";
19383
+ term: string;
19384
+ } | {
19385
+ __typename: "TamperReplacerWorkflow";
19386
+ id: string;
19387
+ };
19388
+ } | {
19389
+ __typename: "TamperOperationHeaderRaw";
19390
+ matcher: {
19391
+ __typename: "TamperMatcherFull";
19392
+ } | {
19393
+ __typename: "TamperMatcherRegex";
19394
+ regex: string;
19395
+ } | {
19396
+ __typename: "TamperMatcherValue";
19397
+ value: string;
19398
+ };
19399
+ replacer: {
19400
+ __typename: "TamperReplacerTerm";
19401
+ term: string;
19402
+ } | {
19403
+ __typename: "TamperReplacerWorkflow";
19404
+ id: string;
19405
+ };
19406
+ } | {
19407
+ __typename: "TamperOperationHeaderRemove";
19408
+ matcher: {
19409
+ __typename: "TamperMatcherName";
19410
+ name: string;
19411
+ };
19412
+ } | {
19413
+ __typename: "TamperOperationHeaderUpdate";
19414
+ matcher: {
19415
+ __typename: "TamperMatcherName";
19416
+ name: string;
19417
+ };
19418
+ replacer: {
19419
+ __typename: "TamperReplacerTerm";
19420
+ term: string;
19421
+ } | {
19422
+ __typename: "TamperReplacerWorkflow";
19423
+ id: string;
19424
+ };
19425
+ };
19426
+ } | {
19427
+ __typename: "TamperSectionRequestMethod";
19428
+ operation: {
19429
+ __typename: "TamperOperationMethodUpdate";
19430
+ replacer: {
19431
+ __typename: "TamperReplacerTerm";
19432
+ term: string;
19433
+ } | {
19434
+ __typename: "TamperReplacerWorkflow";
19435
+ id: string;
19436
+ };
19437
+ };
19438
+ } | {
19439
+ __typename: "TamperSectionRequestPath";
19440
+ operation: {
19441
+ __typename: "TamperOperationPathRaw";
19442
+ matcher: {
19443
+ __typename: "TamperMatcherFull";
19444
+ } | {
19445
+ __typename: "TamperMatcherRegex";
19446
+ regex: string;
19447
+ } | {
19448
+ __typename: "TamperMatcherValue";
19449
+ value: string;
19450
+ };
19451
+ replacer: {
19452
+ __typename: "TamperReplacerTerm";
19453
+ term: string;
19454
+ } | {
19455
+ __typename: "TamperReplacerWorkflow";
19456
+ id: string;
19457
+ };
19458
+ };
19459
+ } | {
19460
+ __typename: "TamperSectionRequestQuery";
19461
+ operation: {
19462
+ __typename: "TamperOperationQueryAdd";
19463
+ matcher: {
19464
+ __typename: "TamperMatcherName";
19465
+ name: string;
19466
+ };
19467
+ replacer: {
19468
+ __typename: "TamperReplacerTerm";
19469
+ term: string;
19470
+ } | {
19471
+ __typename: "TamperReplacerWorkflow";
19472
+ id: string;
19473
+ };
19474
+ } | {
19475
+ __typename: "TamperOperationQueryRaw";
19476
+ matcher: {
19477
+ __typename: "TamperMatcherFull";
19478
+ } | {
19479
+ __typename: "TamperMatcherRegex";
19480
+ regex: string;
19481
+ } | {
19482
+ __typename: "TamperMatcherValue";
19483
+ value: string;
19484
+ };
19485
+ replacer: {
19486
+ __typename: "TamperReplacerTerm";
19487
+ term: string;
19488
+ } | {
19489
+ __typename: "TamperReplacerWorkflow";
19490
+ id: string;
19491
+ };
19492
+ } | {
19493
+ __typename: "TamperOperationQueryRemove";
19494
+ matcher: {
19495
+ __typename: "TamperMatcherName";
19496
+ name: string;
19497
+ };
19498
+ } | {
19499
+ __typename: "TamperOperationQueryUpdate";
19500
+ matcher: {
19501
+ __typename: "TamperMatcherName";
19502
+ name: string;
19503
+ };
19504
+ replacer: {
19505
+ __typename: "TamperReplacerTerm";
19506
+ term: string;
19507
+ } | {
19508
+ __typename: "TamperReplacerWorkflow";
19509
+ id: string;
19510
+ };
19511
+ };
19512
+ } | {
19513
+ __typename: "TamperSectionRequestSNI";
19514
+ operation: {
19515
+ __typename: "TamperOperationSNIRaw";
19516
+ replacer: {
19517
+ __typename: "TamperReplacerTerm";
19518
+ term: string;
19519
+ } | {
19520
+ __typename: "TamperReplacerWorkflow";
19521
+ id: string;
19522
+ };
19523
+ };
19524
+ } | {
19525
+ __typename: "TamperSectionResponseAll";
19526
+ operation: {
19527
+ __typename: "TamperOperationAllRaw";
19528
+ matcher: {
19529
+ __typename: "TamperMatcherFull";
19530
+ } | {
19531
+ __typename: "TamperMatcherRegex";
19532
+ regex: string;
19533
+ } | {
19534
+ __typename: "TamperMatcherValue";
19535
+ value: string;
19536
+ };
19537
+ replacer: {
19538
+ __typename: "TamperReplacerTerm";
19539
+ term: string;
19540
+ } | {
19541
+ __typename: "TamperReplacerWorkflow";
19542
+ id: string;
19543
+ };
19544
+ };
19545
+ } | {
19546
+ __typename: "TamperSectionResponseBody";
19547
+ operation: {
19548
+ __typename: "TamperOperationBodyRaw";
19549
+ matcher: {
19550
+ __typename: "TamperMatcherFull";
19551
+ } | {
19552
+ __typename: "TamperMatcherRegex";
19553
+ regex: string;
19554
+ } | {
19555
+ __typename: "TamperMatcherValue";
19556
+ value: string;
19557
+ };
19558
+ replacer: {
19559
+ __typename: "TamperReplacerTerm";
19560
+ term: string;
19561
+ } | {
19562
+ __typename: "TamperReplacerWorkflow";
19563
+ id: string;
19564
+ };
19565
+ };
19566
+ } | {
19567
+ __typename: "TamperSectionResponseFirstLine";
19568
+ operation: {
19569
+ __typename: "TamperOperationFirstLineRaw";
19570
+ matcher: {
19571
+ __typename: "TamperMatcherFull";
19572
+ } | {
19573
+ __typename: "TamperMatcherRegex";
19574
+ regex: string;
19575
+ } | {
19576
+ __typename: "TamperMatcherValue";
19577
+ value: string;
19578
+ };
19579
+ replacer: {
19580
+ __typename: "TamperReplacerTerm";
19581
+ term: string;
19582
+ } | {
19583
+ __typename: "TamperReplacerWorkflow";
19584
+ id: string;
19585
+ };
19586
+ };
19587
+ } | {
19588
+ __typename: "TamperSectionResponseHeader";
19589
+ operation: {
19590
+ __typename: "TamperOperationHeaderAdd";
19591
+ matcher: {
19592
+ __typename: "TamperMatcherName";
19593
+ name: string;
19594
+ };
19595
+ replacer: {
19596
+ __typename: "TamperReplacerTerm";
19597
+ term: string;
19598
+ } | {
19599
+ __typename: "TamperReplacerWorkflow";
19600
+ id: string;
19601
+ };
19602
+ } | {
19603
+ __typename: "TamperOperationHeaderRaw";
19604
+ matcher: {
19605
+ __typename: "TamperMatcherFull";
19606
+ } | {
19607
+ __typename: "TamperMatcherRegex";
19608
+ regex: string;
19609
+ } | {
19610
+ __typename: "TamperMatcherValue";
19611
+ value: string;
19612
+ };
19613
+ replacer: {
19614
+ __typename: "TamperReplacerTerm";
19615
+ term: string;
19616
+ } | {
19617
+ __typename: "TamperReplacerWorkflow";
19618
+ id: string;
19619
+ };
19620
+ } | {
19621
+ __typename: "TamperOperationHeaderRemove";
19622
+ matcher: {
19623
+ __typename: "TamperMatcherName";
19624
+ name: string;
19625
+ };
19626
+ } | {
19627
+ __typename: "TamperOperationHeaderUpdate";
19628
+ matcher: {
19629
+ __typename: "TamperMatcherName";
19630
+ name: string;
19631
+ };
19632
+ replacer: {
19633
+ __typename: "TamperReplacerTerm";
19634
+ term: string;
19635
+ } | {
19636
+ __typename: "TamperReplacerWorkflow";
19637
+ id: string;
19638
+ };
19639
+ };
19640
+ } | {
19641
+ __typename: "TamperSectionResponseStatusCode";
19642
+ operation: {
19643
+ __typename: "TamperOperationStatusCodeUpdate";
19644
+ replacer: {
19645
+ __typename: "TamperReplacerTerm";
19646
+ term: string;
19647
+ } | {
19648
+ __typename: "TamperReplacerWorkflow";
19649
+ id: string;
19650
+ };
19651
+ };
19652
+ } | {
19653
+ __typename: "TamperSectionStreamWsMessageDownstream";
19654
+ operation: {
19655
+ __typename: "TamperOperationStreamWsMessageRaw";
19656
+ matcher: {
19657
+ __typename: "TamperMatcherFull";
19658
+ } | {
19659
+ __typename: "TamperMatcherRegex";
19660
+ regex: string;
19661
+ } | {
19662
+ __typename: "TamperMatcherValue";
19663
+ value: string;
19664
+ };
19665
+ replacer: {
19666
+ __typename: "TamperReplacerTerm";
19667
+ term: string;
19668
+ } | {
19669
+ __typename: "TamperReplacerWorkflow";
19670
+ id: string;
19671
+ };
19672
+ };
19673
+ } | {
19674
+ __typename: "TamperSectionStreamWsMessageUpstream";
19675
+ operation: {
19676
+ __typename: "TamperOperationStreamWsMessageRaw";
19677
+ matcher: {
19678
+ __typename: "TamperMatcherFull";
19679
+ } | {
19680
+ __typename: "TamperMatcherRegex";
19681
+ regex: string;
19682
+ } | {
19683
+ __typename: "TamperMatcherValue";
19684
+ value: string;
19685
+ };
19686
+ replacer: {
19687
+ __typename: "TamperReplacerTerm";
19688
+ term: string;
19689
+ } | {
19690
+ __typename: "TamperReplacerWorkflow";
19691
+ id: string;
19692
+ };
19693
+ };
19694
+ };
19695
+ enable?: {
19696
+ rank: string;
19697
+ } | undefined | null;
19698
+ condition?: {
19699
+ __typename: "HTTPQL";
19700
+ code: string;
19701
+ } | {
19702
+ __typename: "StreamQL";
19703
+ code: string;
19704
+ } | undefined | null;
19705
+ collection: {
19706
+ id: string;
19707
+ };
19708
+ }>;
19709
+ };
19710
+ };
19711
+ };
19712
+ };
19713
+ export type DeletedTamperRuleCollectionSubscriptionVariables = Exact<{
19714
+ [key: string]: never;
19715
+ }>;
19716
+ export type DeletedTamperRuleCollectionSubscription = {
19717
+ deletedTamperRuleCollection: {
19718
+ deletedCollectionId: string;
19719
+ snapshot: number;
19720
+ };
19721
+ };
18859
19722
  export type PageInfoFullFragment = {
18860
19723
  __typename: "PageInfo";
18861
19724
  hasPreviousPage: boolean;
@@ -120925,6 +121788,10 @@ export declare const ExportTamperDocument = "\n mutation exportTamper($input:
120925
121788
  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 ";
120926
121789
  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 ";
120927
121790
  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 ";
121791
+ 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 ";
121792
+ export declare const DeletedTamperRuleDocument = "\n subscription deletedTamperRule {\n deletedTamperRule {\n deletedRuleId\n snapshot\n }\n}\n ";
121793
+ 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 ";
121794
+ export declare const DeletedTamperRuleCollectionDocument = "\n subscription deletedTamperRuleCollection {\n deletedTamperRuleCollection {\n deletedCollectionId\n snapshot\n }\n}\n ";
120928
121795
  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 ";
120929
121796
  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 ";
120930
121797
  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 ";
@@ -121272,6 +122139,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
121272
122139
  importTamper(variables: ImportTamperMutationVariables, options?: C): Promise<ImportTamperMutation>;
121273
122140
  createdTamperRuleCollection(variables?: CreatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleCollectionSubscription>;
121274
122141
  createdTamperRule(variables?: CreatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleSubscription>;
122142
+ updatedTamperRule(variables?: UpdatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<UpdatedTamperRuleSubscription>;
122143
+ deletedTamperRule(variables?: DeletedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<DeletedTamperRuleSubscription>;
122144
+ updatedTamperRuleCollection(variables?: UpdatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<UpdatedTamperRuleCollectionSubscription>;
122145
+ deletedTamperRuleCollection(variables?: DeletedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<DeletedTamperRuleCollectionSubscription>;
121275
122146
  pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
121276
122147
  storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
121277
122148
  installPluginPackages(variables: InstallPluginPackagesMutationVariables, options?: C): Promise<InstallPluginPackagesMutation>;
@@ -39,6 +39,23 @@ import type { WorkflowSDK } from "./workflows";
39
39
  export type API<T extends BackendEndpoints | BackendSpec = Record<string, never>, E extends BackendEvents = Record<string, never>> = {
40
40
  /**
41
41
  * Utilities to interact with the GraphQL API.
42
+ *
43
+ * Queries and mutations return a promise; subscriptions return an
44
+ * `AsyncIterable`. On success they resolve with the response data or yield
45
+ * it. On failure (network error or any GraphQL errors returned by the
46
+ * server) the promise rejects, or the iterator throws into the `for await`
47
+ * loop, with the underlying error. Failures can be handled with `try`/
48
+ * `catch` or `.catch()`.
49
+ *
50
+ * @example
51
+ * ```ts
52
+ * try {
53
+ * const result = await sdk.graphql.automateEntry({ id: "1" });
54
+ * // use result
55
+ * } catch (err) {
56
+ * // err.message, err.graphQLErrors, err.networkError
57
+ * }
58
+ * ```
42
59
  */
43
60
  graphql: GraphqlSDK;
44
61
  /**