@junobuild/admin 0.0.39 → 0.0.40
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.
|
@@ -38,3 +38,19 @@ export declare const setCustomDomain: ({ satellite, domainName, boundaryNodesId
|
|
|
38
38
|
export declare const memorySize: ({ satellite }: {
|
|
39
39
|
satellite: SatelliteParameters;
|
|
40
40
|
}) => Promise<MemorySize>;
|
|
41
|
+
export declare const countDocs: ({ collection, satellite }: {
|
|
42
|
+
collection: string;
|
|
43
|
+
satellite: SatelliteParameters;
|
|
44
|
+
}) => Promise<bigint>;
|
|
45
|
+
export declare const countAssets: ({ collection, satellite }: {
|
|
46
|
+
collection: string;
|
|
47
|
+
satellite: SatelliteParameters;
|
|
48
|
+
}) => Promise<bigint>;
|
|
49
|
+
export declare const deleteDocs: ({ collection, satellite }: {
|
|
50
|
+
collection: string;
|
|
51
|
+
satellite: SatelliteParameters;
|
|
52
|
+
}) => Promise<void>;
|
|
53
|
+
export declare const deleteAssets: ({ collection, satellite }: {
|
|
54
|
+
collection: string;
|
|
55
|
+
satellite: SatelliteParameters;
|
|
56
|
+
}) => Promise<void>;
|
|
@@ -36,3 +36,19 @@ export declare const setCustomDomains: ({ satellite, domains }: {
|
|
|
36
36
|
export declare const satelliteMemorySize: (params: {
|
|
37
37
|
satellite: SatelliteParameters;
|
|
38
38
|
}) => Promise<MemorySize>;
|
|
39
|
+
export declare const countDocs: (params: {
|
|
40
|
+
collection: string;
|
|
41
|
+
satellite: SatelliteParameters;
|
|
42
|
+
}) => Promise<bigint>;
|
|
43
|
+
export declare const deleteDocs: (params: {
|
|
44
|
+
collection: string;
|
|
45
|
+
satellite: SatelliteParameters;
|
|
46
|
+
}) => Promise<void>;
|
|
47
|
+
export declare const countAssets: (params: {
|
|
48
|
+
collection: string;
|
|
49
|
+
satellite: SatelliteParameters;
|
|
50
|
+
}) => Promise<bigint>;
|
|
51
|
+
export declare const deleteAssets: (params: {
|
|
52
|
+
collection: string;
|
|
53
|
+
satellite: SatelliteParameters;
|
|
54
|
+
}) => Promise<void>;
|