@syncular/console 0.0.6-158 → 0.0.6-165
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/dist/hooks/index.d.ts +0 -1
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +0 -1
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/useConsoleApi.d.ts +113 -97
- package/dist/hooks/useConsoleApi.d.ts.map +1 -1
- package/dist/hooks/useConsoleApi.js +368 -520
- package/dist/hooks/useConsoleApi.js.map +1 -1
- package/dist/hooks/useLiveEvents.d.ts.map +1 -1
- package/dist/hooks/useLiveEvents.js +2 -94
- package/dist/hooks/useLiveEvents.js.map +1 -1
- package/dist/lib/topology.d.ts +2 -2
- package/dist/lib/topology.d.ts.map +1 -1
- package/dist/lib/topology.js.map +1 -1
- package/dist/lib/types.d.ts +58 -170
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib/types.js +1 -1
- package/dist/pages/Config.d.ts.map +1 -1
- package/dist/pages/Config.js +2 -1
- package/dist/pages/Config.js.map +1 -1
- package/package.json +4 -4
- package/src/hooks/index.ts +0 -1
- package/src/hooks/useConsoleApi.ts +552 -756
- package/src/hooks/useLiveEvents.ts +2 -115
- package/src/lib/topology.ts +3 -3
- package/src/lib/types.ts +104 -187
- package/src/pages/Config.tsx +3 -1
- package/web-dist/assets/index-BXJahjhP.js +86 -0
- package/web-dist/index.html +1 -1
- package/dist/hooks/useRequestEvents.d.ts +0 -7
- package/dist/hooks/useRequestEvents.d.ts.map +0 -1
- package/dist/hooks/useRequestEvents.js +0 -33
- package/dist/hooks/useRequestEvents.js.map +0 -1
- package/src/hooks/useRequestEvents.ts +0 -35
- package/web-dist/assets/index-CU9G_QwF.js +0 -86
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC"}
|
package/dist/hooks/index.js
CHANGED
|
@@ -5,6 +5,5 @@ export * from './useLiveEvents.js';
|
|
|
5
5
|
export * from './useLocalStorage.js';
|
|
6
6
|
export * from './usePartitionContext.js';
|
|
7
7
|
export * from './usePreferences.js';
|
|
8
|
-
export * from './useRequestEvents.js';
|
|
9
8
|
export * from './useTimeRange.js';
|
|
10
9
|
//# sourceMappingURL=index.js.map
|
package/dist/hooks/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC"}
|
|
@@ -1,48 +1,29 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* React Query hooks for Console API
|
|
3
3
|
*/
|
|
4
|
-
import type {
|
|
5
|
-
|
|
6
|
-
refetchIntervalMs?: number;
|
|
4
|
+
import type { ApiKeyType, ConsoleApiKey, ConsoleClient, ConsoleCommitDetail, ConsoleCommitListItem, ConsoleOperationEvent, ConsoleOperationType, ConsoleRequestEvent, ConsoleRequestPayload, ConsoleTimelineItem, LatencyStatsResponse, PaginatedResponse, SyncStats, TimeseriesInterval, TimeseriesRange, TimeseriesStatsResponse } from '../lib/types';
|
|
5
|
+
type StatsParams = {
|
|
7
6
|
partitionId?: string;
|
|
8
7
|
instanceId?: string;
|
|
9
|
-
}
|
|
10
|
-
|
|
8
|
+
};
|
|
9
|
+
type TimeseriesParams = {
|
|
11
10
|
interval?: TimeseriesInterval;
|
|
12
11
|
range?: TimeseriesRange;
|
|
13
12
|
partitionId?: string;
|
|
14
13
|
instanceId?: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
enabled?: boolean;
|
|
18
|
-
}): import("@tanstack/react-query").UseQueryResult<TimeseriesStatsResponse, Error>;
|
|
19
|
-
export declare function useLatencyStats(params?: {
|
|
14
|
+
};
|
|
15
|
+
type LatencyParams = {
|
|
20
16
|
range?: TimeseriesRange;
|
|
21
17
|
partitionId?: string;
|
|
22
18
|
instanceId?: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
enabled?: boolean;
|
|
26
|
-
}): import("@tanstack/react-query").UseQueryResult<LatencyStatsResponse, Error>;
|
|
27
|
-
export declare function useCommits(params?: {
|
|
28
|
-
limit?: number;
|
|
29
|
-
offset?: number;
|
|
30
|
-
partitionId?: string;
|
|
31
|
-
instanceId?: string;
|
|
32
|
-
}, options?: {
|
|
33
|
-
refetchIntervalMs?: number;
|
|
34
|
-
enabled?: boolean;
|
|
35
|
-
}): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleCommitListItem>, Error>;
|
|
36
|
-
export declare function useCommitDetail(seq: string | number | undefined, options?: {
|
|
37
|
-
enabled?: boolean;
|
|
38
|
-
partitionId?: string;
|
|
39
|
-
instanceId?: string;
|
|
40
|
-
}): import("@tanstack/react-query").UseQueryResult<ConsoleCommitDetail, Error>;
|
|
41
|
-
export declare function useTimeline(params?: {
|
|
19
|
+
};
|
|
20
|
+
type ListParams = {
|
|
42
21
|
limit?: number;
|
|
43
22
|
offset?: number;
|
|
44
23
|
partitionId?: string;
|
|
45
24
|
instanceId?: string;
|
|
25
|
+
};
|
|
26
|
+
type TimelineParams = ListParams & {
|
|
46
27
|
view?: 'all' | 'commits' | 'events';
|
|
47
28
|
eventType?: 'push' | 'pull';
|
|
48
29
|
actorId?: string;
|
|
@@ -54,109 +35,144 @@ export declare function useTimeline(params?: {
|
|
|
54
35
|
search?: string;
|
|
55
36
|
from?: string;
|
|
56
37
|
to?: string;
|
|
57
|
-
}
|
|
58
|
-
|
|
38
|
+
};
|
|
39
|
+
type EntityLookupOptions = {
|
|
59
40
|
enabled?: boolean;
|
|
60
|
-
}): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleTimelineItem>, Error>;
|
|
61
|
-
export declare function useClients(params?: {
|
|
62
|
-
limit?: number;
|
|
63
|
-
offset?: number;
|
|
64
41
|
partitionId?: string;
|
|
65
42
|
instanceId?: string;
|
|
66
|
-
}
|
|
43
|
+
};
|
|
44
|
+
type RefetchableQueryOptions = {
|
|
67
45
|
refetchIntervalMs?: number;
|
|
68
46
|
enabled?: boolean;
|
|
69
|
-
}
|
|
70
|
-
|
|
47
|
+
};
|
|
48
|
+
type PrunePreviewOptions = {
|
|
71
49
|
enabled?: boolean;
|
|
50
|
+
instanceId?: string;
|
|
51
|
+
};
|
|
52
|
+
type OperationEventsParams = ListParams & {
|
|
53
|
+
operationType?: ConsoleOperationType;
|
|
54
|
+
};
|
|
55
|
+
type ApiKeysParams = {
|
|
56
|
+
limit?: number;
|
|
57
|
+
offset?: number;
|
|
58
|
+
type?: 'relay' | 'proxy' | 'admin';
|
|
59
|
+
status?: 'active' | 'revoked' | 'expiring';
|
|
60
|
+
expiresWithinDays?: number;
|
|
61
|
+
instanceId?: string;
|
|
62
|
+
};
|
|
63
|
+
type BlobsOptions = {
|
|
64
|
+
prefix?: string;
|
|
65
|
+
cursor?: string;
|
|
66
|
+
limit?: number;
|
|
67
|
+
refetchIntervalMs?: number;
|
|
68
|
+
};
|
|
69
|
+
type EvictClientRequest = {
|
|
70
|
+
clientId: string;
|
|
72
71
|
partitionId?: string;
|
|
73
72
|
instanceId?: string;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
};
|
|
74
|
+
type NotifyDataChangeRequest = {
|
|
75
|
+
tables: string[];
|
|
77
76
|
partitionId?: string;
|
|
78
77
|
instanceId?: string;
|
|
79
|
-
}
|
|
78
|
+
};
|
|
79
|
+
type CreateApiKeyRequest = {
|
|
80
|
+
name: string;
|
|
81
|
+
keyType: ApiKeyType;
|
|
82
|
+
scopeKeys?: string[];
|
|
83
|
+
actorId?: string;
|
|
84
|
+
expiresInDays?: number;
|
|
85
|
+
};
|
|
86
|
+
type ApiKeySecretResponse = {
|
|
87
|
+
key: ConsoleApiKey;
|
|
88
|
+
secretKey: string;
|
|
89
|
+
};
|
|
90
|
+
export declare function useStats(options?: StatsParams & {
|
|
91
|
+
refetchIntervalMs?: number;
|
|
92
|
+
}): import("@tanstack/react-query").UseQueryResult<SyncStats, Error>;
|
|
93
|
+
export declare function useTimeseriesStats(params?: TimeseriesParams, options?: RefetchableQueryOptions): import("@tanstack/react-query").UseQueryResult<TimeseriesStatsResponse, Error>;
|
|
94
|
+
export declare function useLatencyStats(params?: LatencyParams, options?: RefetchableQueryOptions): import("@tanstack/react-query").UseQueryResult<LatencyStatsResponse, Error>;
|
|
95
|
+
export declare function useCommits(params?: ListParams, options?: RefetchableQueryOptions): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleCommitListItem>, Error>;
|
|
96
|
+
export declare function useCommitDetail(seq: string | number | undefined, options?: EntityLookupOptions): import("@tanstack/react-query").UseQueryResult<ConsoleCommitDetail, Error>;
|
|
97
|
+
export declare function useTimeline(params?: TimelineParams, options?: RefetchableQueryOptions): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleTimelineItem>, Error>;
|
|
98
|
+
export declare function useClients(params?: ListParams, options?: RefetchableQueryOptions): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleClient>, Error>;
|
|
99
|
+
export declare function useRequestEventDetail(id: string | number | undefined, options?: EntityLookupOptions): import("@tanstack/react-query").UseQueryResult<ConsoleRequestEvent, Error>;
|
|
100
|
+
export declare function useRequestEventPayload(id: string | number | undefined, options?: EntityLookupOptions): import("@tanstack/react-query").UseQueryResult<ConsoleRequestPayload, Error>;
|
|
80
101
|
export declare function useHandlers(options?: {
|
|
81
102
|
instanceId?: string;
|
|
82
103
|
}): import("@tanstack/react-query").UseQueryResult<{
|
|
83
|
-
items:
|
|
104
|
+
items: {
|
|
105
|
+
table: string;
|
|
106
|
+
dependsOn?: string[] | undefined;
|
|
107
|
+
snapshotChunkTtlMs?: number | undefined;
|
|
108
|
+
}[];
|
|
84
109
|
}, Error>;
|
|
85
|
-
export declare function usePrunePreview(options?: {
|
|
86
|
-
enabled?: boolean;
|
|
87
|
-
instanceId?: string;
|
|
88
|
-
}): import("@tanstack/react-query").UseQueryResult<{
|
|
110
|
+
export declare function usePrunePreview(options?: PrunePreviewOptions): import("@tanstack/react-query").UseQueryResult<{
|
|
89
111
|
watermarkCommitSeq: number;
|
|
90
112
|
commitsToDelete: number;
|
|
91
113
|
}, Error>;
|
|
92
|
-
export declare function useOperationEvents(params?:
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
partitionId?: string;
|
|
97
|
-
instanceId?: string;
|
|
98
|
-
}, options?: {
|
|
99
|
-
enabled?: boolean;
|
|
100
|
-
refetchIntervalMs?: number;
|
|
101
|
-
}): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleOperationEvent>, Error>;
|
|
114
|
+
export declare function useOperationEvents(params?: OperationEventsParams, options?: RefetchableQueryOptions): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleOperationEvent>, Error>;
|
|
115
|
+
export declare function useClearEventsMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
116
|
+
deletedCount: number;
|
|
117
|
+
}, Error, void, unknown>;
|
|
102
118
|
export declare function useEvictClientMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
103
119
|
evicted: boolean;
|
|
104
|
-
}, Error,
|
|
105
|
-
clientId: string;
|
|
106
|
-
partitionId?: string | undefined;
|
|
107
|
-
instanceId?: string | undefined;
|
|
108
|
-
}, unknown>;
|
|
120
|
+
}, Error, EvictClientRequest, unknown>;
|
|
109
121
|
export declare function usePruneMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
110
122
|
deletedCommits: number;
|
|
111
123
|
}, Error, void, unknown>;
|
|
112
124
|
export declare function useCompactMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
113
125
|
deletedChanges: number;
|
|
114
126
|
}, Error, void, unknown>;
|
|
115
|
-
export declare function useNotifyDataChangeMutation(): import("@tanstack/react-query").UseMutationResult<
|
|
127
|
+
export declare function useNotifyDataChangeMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
128
|
+
commitSeq: number;
|
|
116
129
|
tables: string[];
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
offset?: number;
|
|
123
|
-
type?: 'relay' | 'proxy' | 'admin';
|
|
124
|
-
status?: 'active' | 'revoked' | 'expiring';
|
|
125
|
-
expiresWithinDays?: number;
|
|
126
|
-
instanceId?: string;
|
|
127
|
-
}): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<ConsoleApiKey>, Error>;
|
|
128
|
-
export declare function useCreateApiKeyMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
129
|
-
key: ConsoleApiKey;
|
|
130
|
-
secretKey: string;
|
|
131
|
-
}, Error, {
|
|
130
|
+
deletedChunks: number;
|
|
131
|
+
}, Error, NotifyDataChangeRequest, unknown>;
|
|
132
|
+
export declare function useApiKeys(params?: ApiKeysParams): import("@tanstack/react-query").UseQueryResult<PaginatedResponse<{
|
|
133
|
+
keyId: string;
|
|
134
|
+
keyPrefix: string;
|
|
132
135
|
name: string;
|
|
133
136
|
keyType: "admin" | "proxy" | "relay";
|
|
134
|
-
scopeKeys
|
|
135
|
-
actorId
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
scopeKeys: string[];
|
|
138
|
+
actorId: string | null;
|
|
139
|
+
createdAt: string;
|
|
140
|
+
expiresAt: string | null;
|
|
141
|
+
lastUsedAt: string | null;
|
|
142
|
+
revokedAt: string | null;
|
|
143
|
+
}>, Error>;
|
|
144
|
+
export declare function useCreateApiKeyMutation(): import("@tanstack/react-query").UseMutationResult<ApiKeySecretResponse, Error, CreateApiKeyRequest, unknown>;
|
|
138
145
|
export declare function useRevokeApiKeyMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
139
146
|
revoked: boolean;
|
|
140
147
|
}, Error, string, unknown>;
|
|
141
|
-
export declare function useBulkRevokeApiKeysMutation(): import("@tanstack/react-query").UseMutationResult<
|
|
148
|
+
export declare function useBulkRevokeApiKeysMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
149
|
+
requestedCount: number;
|
|
150
|
+
revokedCount: number;
|
|
151
|
+
alreadyRevokedCount: number;
|
|
152
|
+
notFoundCount: number;
|
|
153
|
+
revokedKeyIds: string[];
|
|
154
|
+
alreadyRevokedKeyIds: string[];
|
|
155
|
+
notFoundKeyIds: string[];
|
|
156
|
+
}, Error, {
|
|
142
157
|
keyIds: string[];
|
|
143
158
|
}, unknown>;
|
|
144
|
-
export declare function useRotateApiKeyMutation(): import("@tanstack/react-query").UseMutationResult<
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
159
|
+
export declare function useRotateApiKeyMutation(): import("@tanstack/react-query").UseMutationResult<ApiKeySecretResponse, Error, string, unknown>;
|
|
160
|
+
export declare function useStageRotateApiKeyMutation(): import("@tanstack/react-query").UseMutationResult<ApiKeySecretResponse, Error, string, unknown>;
|
|
161
|
+
export declare function useBlobs(options?: BlobsOptions): import("@tanstack/react-query").UseQueryResult<{
|
|
162
|
+
items: {
|
|
163
|
+
key: string;
|
|
164
|
+
size: number;
|
|
165
|
+
uploaded: string;
|
|
166
|
+
httpMetadata?: {
|
|
167
|
+
contentType?: string | undefined;
|
|
168
|
+
} | undefined;
|
|
169
|
+
}[];
|
|
170
|
+
truncated: boolean;
|
|
171
|
+
cursor: string | null;
|
|
172
|
+
}, Error>;
|
|
158
173
|
export declare function useDeleteBlobMutation(): import("@tanstack/react-query").UseMutationResult<{
|
|
159
174
|
deleted: boolean;
|
|
160
175
|
}, Error, string, unknown>;
|
|
161
176
|
export declare function useBlobDownload(): (key: string) => Promise<void>;
|
|
177
|
+
export {};
|
|
162
178
|
//# sourceMappingURL=useConsoleApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConsoleApi.d.ts","sourceRoot":"","sources":["../../src/hooks/useConsoleApi.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EACV,
|
|
1
|
+
{"version":3,"file":"useConsoleApi.d.ts","sourceRoot":"","sources":["../../src/hooks/useConsoleApi.ts"],"names":[],"mappings":"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"}
|