@junobuild/admin 0.0.38-next-2023-12-21.1 → 0.0.38-next-2023-12-22

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.
@@ -30,3 +30,8 @@ export declare const listControllers: ({ satellite }: {
30
30
  export declare const listCustomDomains: ({ satellite }: {
31
31
  satellite: SatelliteParameters;
32
32
  }) => Promise<[string, CustomDomain][]>;
33
+ export declare const setCustomDomain: ({ satellite, domainName, boundaryNodesId }: {
34
+ satellite: SatelliteParameters;
35
+ domainName: string;
36
+ boundaryNodesId: string | undefined;
37
+ }) => Promise<void>;
@@ -28,3 +28,7 @@ export declare const upgradeSatellite: ({ satellite, wasm_module, deprecated, de
28
28
  export declare const listCustomDomains: ({ satellite }: {
29
29
  satellite: SatelliteParameters;
30
30
  }) => Promise<CustomDomain[]>;
31
+ export declare const setCustomDomains: ({ satellite, domains }: {
32
+ satellite: SatelliteParameters;
33
+ domains: CustomDomain[];
34
+ }) => Promise<void[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/admin",
3
- "version": "0.0.38-next-2023-12-21.1",
3
+ "version": "0.0.38-next-2023-12-22",
4
4
  "description": "A library for interfacing with admin features of Juno",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",