@caido/sdk-frontend 0.47.2-beta.2 → 0.47.2-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
type JSONPrimitive = string | number | boolean | null | undefined;
|
|
2
|
-
type JSONValue = JSONPrimitive | JSONValue[] | {
|
|
3
|
-
[key: string]: JSONValue;
|
|
4
|
-
};
|
|
5
1
|
export type Maybe<T> = T | undefined | null;
|
|
6
2
|
export type InputMaybe<T> = T | undefined | null;
|
|
7
3
|
export type Exact<T extends {
|
|
@@ -83,8 +79,8 @@ export type Scalars = {
|
|
|
83
79
|
};
|
|
84
80
|
/** A scalar that can represent any JSON value. */
|
|
85
81
|
JSON: {
|
|
86
|
-
input:
|
|
87
|
-
output:
|
|
82
|
+
input: unknown;
|
|
83
|
+
output: unknown;
|
|
88
84
|
};
|
|
89
85
|
JsonObject: {
|
|
90
86
|
input: Record<string, unknown>;
|
|
@@ -638,6 +634,9 @@ export type CertificateUserError = UserError & {
|
|
|
638
634
|
code: Scalars["String"]["output"];
|
|
639
635
|
reason: CertificateErrorReason;
|
|
640
636
|
};
|
|
637
|
+
export type ClearSitemapEntriesPayload = {
|
|
638
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
639
|
+
};
|
|
641
640
|
export declare const CloudErrorReason: {
|
|
642
641
|
readonly Unavailable: "UNAVAILABLE";
|
|
643
642
|
readonly Unexpected: "UNEXPECTED";
|
|
@@ -1115,6 +1114,11 @@ export type DeleteReplaySessionsPayload = {
|
|
|
1115
1114
|
export type DeleteScopePayload = {
|
|
1116
1115
|
deletedId: Scalars["ID"]["output"];
|
|
1117
1116
|
};
|
|
1117
|
+
export type DeleteSitemapEntriesError = OtherUserError | UnknownIdUserError;
|
|
1118
|
+
export type DeleteSitemapEntriesPayload = {
|
|
1119
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1120
|
+
errors: Array<DeleteSitemapEntriesError>;
|
|
1121
|
+
};
|
|
1118
1122
|
export type DeleteTamperRuleCollectionPayload = {
|
|
1119
1123
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1120
1124
|
};
|
|
@@ -1209,6 +1213,10 @@ export type DeletedScopePayload = {
|
|
|
1209
1213
|
deletedScopeId: Scalars["ID"]["output"];
|
|
1210
1214
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1211
1215
|
};
|
|
1216
|
+
export type DeletedSitemapEntriesPayload = {
|
|
1217
|
+
deletedIds: Array<Scalars["ID"]["output"]>;
|
|
1218
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
1219
|
+
};
|
|
1212
1220
|
export type DeletedTamperRuleCollectionPayload = {
|
|
1213
1221
|
deletedCollectionId: Scalars["ID"]["output"];
|
|
1214
1222
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1587,6 +1595,7 @@ export type MutationRoot = {
|
|
|
1587
1595
|
cancelDataExportTask: CancelDataExportTaskPayload;
|
|
1588
1596
|
cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
|
|
1589
1597
|
cancelTask: CancelTaskPayload;
|
|
1598
|
+
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
1590
1599
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
1591
1600
|
createAutomateSession: CreateAutomateSessionPayload;
|
|
1592
1601
|
createBackup: CreateBackupPayload;
|
|
@@ -1623,6 +1632,7 @@ export type MutationRoot = {
|
|
|
1623
1632
|
deleteReplaySessionCollection: DeleteReplaySessionCollectionPayload;
|
|
1624
1633
|
deleteReplaySessions: DeleteReplaySessionsPayload;
|
|
1625
1634
|
deleteScope: DeleteScopePayload;
|
|
1635
|
+
deleteSitemapEntries: DeleteSitemapEntriesPayload;
|
|
1626
1636
|
deleteTamperRule: DeleteTamperRulePayload;
|
|
1627
1637
|
deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
|
|
1628
1638
|
deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
|
|
@@ -1831,6 +1841,9 @@ export type MutationRootDeleteReplaySessionsArgs = {
|
|
|
1831
1841
|
export type MutationRootDeleteScopeArgs = {
|
|
1832
1842
|
id: Scalars["ID"]["input"];
|
|
1833
1843
|
};
|
|
1844
|
+
export type MutationRootDeleteSitemapEntriesArgs = {
|
|
1845
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1846
|
+
};
|
|
1834
1847
|
export type MutationRootDeleteTamperRuleArgs = {
|
|
1835
1848
|
id: Scalars["ID"]["input"];
|
|
1836
1849
|
};
|
|
@@ -2164,7 +2177,7 @@ export type Plugin = {
|
|
|
2164
2177
|
export type PluginAuthor = {
|
|
2165
2178
|
email?: Maybe<Scalars["String"]["output"]>;
|
|
2166
2179
|
name?: Maybe<Scalars["String"]["output"]>;
|
|
2167
|
-
url?: Maybe<Scalars["
|
|
2180
|
+
url?: Maybe<Scalars["String"]["output"]>;
|
|
2168
2181
|
};
|
|
2169
2182
|
export type PluginBackend = Plugin & {
|
|
2170
2183
|
enabled: Scalars["Boolean"]["output"];
|
|
@@ -3311,6 +3324,7 @@ export type SubscriptionRoot = {
|
|
|
3311
3324
|
deletedReplaySession: DeletedReplaySessionPayload;
|
|
3312
3325
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload;
|
|
3313
3326
|
deletedScope: DeletedScopePayload;
|
|
3327
|
+
deletedSitemapEntry: DeletedSitemapEntriesPayload;
|
|
3314
3328
|
deletedTamperRule: DeletedTamperRulePayload;
|
|
3315
3329
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
|
|
3316
3330
|
deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
|
|
@@ -10215,6 +10229,9 @@ export type InterceptStreamWsMessagesQuery = {
|
|
|
10215
10229
|
alteration: Alteration;
|
|
10216
10230
|
edited: boolean;
|
|
10217
10231
|
} | undefined | null;
|
|
10232
|
+
stream?: {
|
|
10233
|
+
id: string;
|
|
10234
|
+
} | undefined | null;
|
|
10218
10235
|
};
|
|
10219
10236
|
} | {
|
|
10220
10237
|
__typename: "InterceptResponseMessage";
|
|
@@ -10260,6 +10277,9 @@ export type InterceptStreamWsMessagesQuery = {
|
|
|
10260
10277
|
alteration: Alteration;
|
|
10261
10278
|
edited: boolean;
|
|
10262
10279
|
} | undefined | null;
|
|
10280
|
+
stream?: {
|
|
10281
|
+
id: string;
|
|
10282
|
+
} | undefined | null;
|
|
10263
10283
|
};
|
|
10264
10284
|
} | {
|
|
10265
10285
|
__typename: "InterceptStreamWsMessage";
|
|
@@ -14697,7 +14717,7 @@ export type PluginFrontendFullFragment = {
|
|
|
14697
14717
|
__typename: "PluginFrontend";
|
|
14698
14718
|
entrypoint?: string | undefined | null;
|
|
14699
14719
|
style?: string | undefined | null;
|
|
14700
|
-
data?:
|
|
14720
|
+
data?: unknown | undefined | null;
|
|
14701
14721
|
id: string;
|
|
14702
14722
|
name?: string | undefined | null;
|
|
14703
14723
|
enabled: boolean;
|
|
@@ -14778,7 +14798,7 @@ export type PluginPackageFullFragment = {
|
|
|
14778
14798
|
__typename: "PluginFrontend";
|
|
14779
14799
|
entrypoint?: string | undefined | null;
|
|
14780
14800
|
style?: string | undefined | null;
|
|
14781
|
-
data?:
|
|
14801
|
+
data?: unknown | undefined | null;
|
|
14782
14802
|
id: string;
|
|
14783
14803
|
name?: string | undefined | null;
|
|
14784
14804
|
enabled: boolean;
|
|
@@ -14861,7 +14881,7 @@ export type PluginPackagesQuery = {
|
|
|
14861
14881
|
__typename: "PluginFrontend";
|
|
14862
14882
|
entrypoint?: string | undefined | null;
|
|
14863
14883
|
style?: string | undefined | null;
|
|
14864
|
-
data?:
|
|
14884
|
+
data?: unknown | undefined | null;
|
|
14865
14885
|
id: string;
|
|
14866
14886
|
name?: string | undefined | null;
|
|
14867
14887
|
enabled: boolean;
|
|
@@ -14953,7 +14973,7 @@ export type InstallPluginPackageMutation = {
|
|
|
14953
14973
|
__typename: "PluginFrontend";
|
|
14954
14974
|
entrypoint?: string | undefined | null;
|
|
14955
14975
|
style?: string | undefined | null;
|
|
14956
|
-
data?:
|
|
14976
|
+
data?: unknown | undefined | null;
|
|
14957
14977
|
id: string;
|
|
14958
14978
|
name?: string | undefined | null;
|
|
14959
14979
|
enabled: boolean;
|
|
@@ -15051,7 +15071,7 @@ export type TogglePluginMutation = {
|
|
|
15051
15071
|
__typename: "PluginFrontend";
|
|
15052
15072
|
entrypoint?: string | undefined | null;
|
|
15053
15073
|
style?: string | undefined | null;
|
|
15054
|
-
data?:
|
|
15074
|
+
data?: unknown | undefined | null;
|
|
15055
15075
|
id: string;
|
|
15056
15076
|
name?: string | undefined | null;
|
|
15057
15077
|
enabled: boolean;
|
|
@@ -15120,7 +15140,7 @@ export type SetPluginDataMutation = {
|
|
|
15120
15140
|
__typename: "PluginFrontend";
|
|
15121
15141
|
entrypoint?: string | undefined | null;
|
|
15122
15142
|
style?: string | undefined | null;
|
|
15123
|
-
data?:
|
|
15143
|
+
data?: unknown | undefined | null;
|
|
15124
15144
|
id: string;
|
|
15125
15145
|
name?: string | undefined | null;
|
|
15126
15146
|
enabled: boolean;
|
|
@@ -15195,7 +15215,7 @@ export type CreatedPluginPackageSubscription = {
|
|
|
15195
15215
|
__typename: "PluginFrontend";
|
|
15196
15216
|
entrypoint?: string | undefined | null;
|
|
15197
15217
|
style?: string | undefined | null;
|
|
15198
|
-
data?:
|
|
15218
|
+
data?: unknown | undefined | null;
|
|
15199
15219
|
id: string;
|
|
15200
15220
|
name?: string | undefined | null;
|
|
15201
15221
|
enabled: boolean;
|
|
@@ -15268,7 +15288,7 @@ export type UpdatedPluginSubscription = {
|
|
|
15268
15288
|
__typename: "PluginFrontend";
|
|
15269
15289
|
entrypoint?: string | undefined | null;
|
|
15270
15290
|
style?: string | undefined | null;
|
|
15271
|
-
data?:
|
|
15291
|
+
data?: unknown | undefined | null;
|
|
15272
15292
|
id: string;
|
|
15273
15293
|
name?: string | undefined | null;
|
|
15274
15294
|
enabled: boolean;
|
|
@@ -19343,6 +19363,30 @@ export type SitemapEntryRequestsQuery = {
|
|
|
19343
19363
|
} | undefined | null;
|
|
19344
19364
|
} | undefined | null;
|
|
19345
19365
|
};
|
|
19366
|
+
export type DeleteSitemapEntriesMutationVariables = Exact<{
|
|
19367
|
+
ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
19368
|
+
}>;
|
|
19369
|
+
export type DeleteSitemapEntriesMutation = {
|
|
19370
|
+
deleteSitemapEntries: {
|
|
19371
|
+
deletedIds: Array<string>;
|
|
19372
|
+
errors: Array<{
|
|
19373
|
+
__typename: "OtherUserError";
|
|
19374
|
+
code: string;
|
|
19375
|
+
} | {
|
|
19376
|
+
__typename: "UnknownIdUserError";
|
|
19377
|
+
id: string;
|
|
19378
|
+
code: string;
|
|
19379
|
+
}>;
|
|
19380
|
+
};
|
|
19381
|
+
};
|
|
19382
|
+
export type ClearSitemapEntriesMutationVariables = Exact<{
|
|
19383
|
+
[key: string]: never;
|
|
19384
|
+
}>;
|
|
19385
|
+
export type ClearSitemapEntriesMutation = {
|
|
19386
|
+
clearSitemapEntries: {
|
|
19387
|
+
deletedIds: Array<string>;
|
|
19388
|
+
};
|
|
19389
|
+
};
|
|
19346
19390
|
export type CreatedSitemapEntrySubscriptionVariables = Exact<{
|
|
19347
19391
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
19348
19392
|
}>;
|
|
@@ -19474,6 +19518,15 @@ export type UpdatedSitemapEntrySubscription = {
|
|
|
19474
19518
|
};
|
|
19475
19519
|
};
|
|
19476
19520
|
};
|
|
19521
|
+
export type DeletedSitemapEntrySubscriptionVariables = Exact<{
|
|
19522
|
+
[key: string]: never;
|
|
19523
|
+
}>;
|
|
19524
|
+
export type DeletedSitemapEntrySubscription = {
|
|
19525
|
+
deletedSitemapEntry: {
|
|
19526
|
+
deletedIds: Array<string>;
|
|
19527
|
+
snapshot: number;
|
|
19528
|
+
};
|
|
19529
|
+
};
|
|
19477
19530
|
export type StreamMetaFragment = {
|
|
19478
19531
|
__typename: "Stream";
|
|
19479
19532
|
id: string;
|
|
@@ -20674,8 +20727,8 @@ export type UserProfileFullFragment = {
|
|
|
20674
20727
|
};
|
|
20675
20728
|
export type UserSettingsFullFragment = {
|
|
20676
20729
|
__typename: "UserSettings";
|
|
20677
|
-
data:
|
|
20678
|
-
migrations:
|
|
20730
|
+
data: unknown;
|
|
20731
|
+
migrations: unknown;
|
|
20679
20732
|
};
|
|
20680
20733
|
export type UpdateViewerSettingsMutationVariables = Exact<{
|
|
20681
20734
|
input: UpdateViewerSettingsInput;
|
|
@@ -20684,8 +20737,8 @@ export type UpdateViewerSettingsMutation = {
|
|
|
20684
20737
|
updateViewerSettings: {
|
|
20685
20738
|
settings?: {
|
|
20686
20739
|
__typename: "UserSettings";
|
|
20687
|
-
data:
|
|
20688
|
-
migrations:
|
|
20740
|
+
data: unknown;
|
|
20741
|
+
migrations: unknown;
|
|
20689
20742
|
} | undefined | null;
|
|
20690
20743
|
};
|
|
20691
20744
|
};
|
|
@@ -20724,8 +20777,8 @@ export type UserSettingsQuery = {
|
|
|
20724
20777
|
id: string;
|
|
20725
20778
|
settings?: {
|
|
20726
20779
|
__typename: "UserSettings";
|
|
20727
|
-
data:
|
|
20728
|
-
migrations:
|
|
20780
|
+
data: unknown;
|
|
20781
|
+
migrations: unknown;
|
|
20729
20782
|
} | undefined | null;
|
|
20730
20783
|
};
|
|
20731
20784
|
};
|
|
@@ -21615,8 +21668,11 @@ export declare const DeletedScopeDocument = "\n subscription deletedScope {\n
|
|
|
21615
21668
|
export declare const SitemapRootEntriesDocument = "\n query sitemapRootEntries($scopeId: ID) {\n sitemapRootEntries(scopeId: $scopeId) {\n edges {\n ...sitemapEntryEdgeMeta\n }\n }\n}\n \n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21616
21669
|
export declare const SitemapEntryChildrenDocument = "\n query sitemapEntryChildren($id: ID!) {\n sitemapDescendantEntries(parentId: $id, depth: DIRECT) {\n edges {\n cursor\n node {\n ...sitemapEntryMeta\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21617
21670
|
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\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 ";
|
|
21671
|
+
export declare const DeleteSitemapEntriesDocument = "\n mutation deleteSitemapEntries($ids: [ID!]!) {\n deleteSitemapEntries(ids: $ids) {\n deletedIds\n errors {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21672
|
+
export declare const ClearSitemapEntriesDocument = "\n mutation clearSitemapEntries {\n clearSitemapEntries {\n deletedIds\n }\n}\n ";
|
|
21618
21673
|
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21619
21674
|
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21675
|
+
export declare const DeletedSitemapEntryDocument = "\n subscription deletedSitemapEntry {\n deletedSitemapEntry {\n deletedIds\n snapshot\n }\n}\n ";
|
|
21620
21676
|
export declare const WebsocketStreamsBeforeDocument = "\n query websocketStreamsBefore($before: String, $last: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n before: $before\n last: $last\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21621
21677
|
export declare const WebsocketStreamsAfterDocument = "\n query websocketStreamsAfter($after: String, $first: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n after: $after\n first: $first\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21622
21678
|
export declare const WebsocketStreamsByOffsetDocument = "\n query websocketStreamsByOffset($offset: Int!, $limit: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streamsByOffset(\n offset: $offset\n limit: $limit\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -21908,8 +21964,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21908
21964
|
sitemapRootEntries(variables?: SitemapRootEntriesQueryVariables, options?: C): Promise<SitemapRootEntriesQuery>;
|
|
21909
21965
|
sitemapEntryChildren(variables: SitemapEntryChildrenQueryVariables, options?: C): Promise<SitemapEntryChildrenQuery>;
|
|
21910
21966
|
sitemapEntryRequests(variables: SitemapEntryRequestsQueryVariables, options?: C): Promise<SitemapEntryRequestsQuery>;
|
|
21967
|
+
deleteSitemapEntries(variables: DeleteSitemapEntriesMutationVariables, options?: C): Promise<DeleteSitemapEntriesMutation>;
|
|
21968
|
+
clearSitemapEntries(variables?: ClearSitemapEntriesMutationVariables, options?: C): Promise<ClearSitemapEntriesMutation>;
|
|
21911
21969
|
createdSitemapEntry(variables?: CreatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedSitemapEntrySubscription>;
|
|
21912
21970
|
updatedSitemapEntry(variables?: UpdatedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<UpdatedSitemapEntrySubscription>;
|
|
21971
|
+
deletedSitemapEntry(variables?: DeletedSitemapEntrySubscriptionVariables, options?: C): AsyncIterable<DeletedSitemapEntrySubscription>;
|
|
21913
21972
|
websocketStreamsBefore(variables: WebsocketStreamsBeforeQueryVariables, options?: C): Promise<WebsocketStreamsBeforeQuery>;
|
|
21914
21973
|
websocketStreamsAfter(variables: WebsocketStreamsAfterQueryVariables, options?: C): Promise<WebsocketStreamsAfterQuery>;
|
|
21915
21974
|
websocketStreamsByOffset(variables: WebsocketStreamsByOffsetQueryVariables, options?: C): Promise<WebsocketStreamsByOffsetQuery>;
|
package/src/types/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export type { MenuItem } from "./menu";
|
|
|
28
28
|
export type { ReplayTab, ReplaySession, ReplayCollection } from "./replay";
|
|
29
29
|
export type { HostedFile } from "./files";
|
|
30
30
|
export type { Filter } from "./filters";
|
|
31
|
-
export type { HTTPQL, ID } from "./utils";
|
|
31
|
+
export type { HTTPQL, ID, JSONValue, JSONCompatible } from "./utils";
|
|
32
32
|
export type { MatchReplaceRule, MatchReplaceCollection, MatchReplaceSection, MatchReplaceSectionRequestBody, MatchReplaceSectionRequestFirstLine, MatchReplaceSectionRequestHeader, MatchReplaceSectionRequestMethod, MatchReplaceSectionRequestPath, MatchReplaceSectionRequestQuery, MatchReplaceSectionResponseBody, MatchReplaceSectionResponseFirstLine, MatchReplaceSectionResponseHeader, MatchReplaceSectionResponseStatusCode, MatchReplaceOperationStatusCode, MatchReplaceOperationStatusCodeUpdate, MatchReplaceOperationQuery, MatchReplaceOperationQueryRaw, MatchReplaceOperationQueryAdd, MatchReplaceOperationQueryRemove, MatchReplaceOperationQueryUpdate, MatchReplaceOperationPath, MatchReplaceOperationPathRaw, MatchReplaceOperationMethod, MatchReplaceOperationMethodUpdate, MatchReplaceOperationHeader, MatchReplaceOperationHeaderRaw, MatchReplaceOperationHeaderAdd, MatchReplaceOperationHeaderRemove, MatchReplaceOperationHeaderUpdate, MatchReplaceOperationBody, MatchReplaceOperationBodyRaw, MatchReplaceOperationFirstLine, MatchReplaceOperationFirstLineRaw, MatchReplaceReplacer, MatchReplaceReplacerTerm, MatchReplaceReplacerWorkflow, MatchReplaceMatcherName, MatchReplaceMatcherRaw, MatchReplaceMatcherRawFull, MatchReplaceMatcherRawRegex, MatchReplaceMatcherRawValue, } from "./matchReplace";
|
|
33
33
|
export type { Scope } from "./scopes";
|
|
34
34
|
export type { EnvironmentVariable } from "./environment";
|