@scaleway/sdk-domain 2.6.0 → 2.7.1
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/.vite/license.md +3 -0
- package/dist/metadata.gen.d.ts +6 -6
- package/dist/metadata.gen.js +6 -2
- package/dist/v2beta1/api.gen.d.ts +2 -2
- package/dist/v2beta1/api.gen.js +320 -672
- package/dist/v2beta1/content.gen.js +7 -7
- package/dist/v2beta1/marshalling.gen.js +135 -135
- package/dist/v2beta1/metadata.gen.js +1 -1
- package/package.json +15 -14
- package/LICENSE +0 -191
- package/dist/metadata.gen.json +0 -6
- package/dist/metadata2.gen.js +0 -8
package/dist/metadata.gen.d.ts
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* This file is automatically generated
|
|
3
3
|
* PLEASE DO NOT EDIT HERE
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
name:
|
|
7
|
-
namespace:
|
|
8
|
-
displayName:
|
|
9
|
-
versions:
|
|
5
|
+
export declare const pkgMetadata: {
|
|
6
|
+
readonly name: "@scaleway/sdk-domain";
|
|
7
|
+
readonly namespace: "domain";
|
|
8
|
+
readonly displayName: "Domain";
|
|
9
|
+
readonly versions: readonly ["v2beta1"];
|
|
10
10
|
};
|
|
11
|
-
export
|
|
11
|
+
export type Metadata = typeof pkgMetadata;
|
|
12
12
|
export default pkgMetadata;
|
package/dist/metadata.gen.js
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import metadata_gen_default from "./metadata2.gen.js";
|
|
2
1
|
//#region src/metadata.gen.ts
|
|
3
2
|
/**
|
|
4
3
|
* This file is automatically generated
|
|
5
4
|
* PLEASE DO NOT EDIT HERE
|
|
6
5
|
*/
|
|
7
|
-
|
|
6
|
+
const pkgMetadata = {
|
|
7
|
+
name: "@scaleway/sdk-domain",
|
|
8
|
+
namespace: "domain",
|
|
9
|
+
displayName: "Domain",
|
|
10
|
+
versions: ["v2beta1"]
|
|
11
|
+
};
|
|
8
12
|
//#endregion
|
|
9
13
|
export { pkgMetadata as default, pkgMetadata };
|
|
@@ -175,7 +175,7 @@ export declare class API extends ParentAPI {
|
|
|
175
175
|
* @param options - The waiting options
|
|
176
176
|
* @returns A Promise of SSLCertificate
|
|
177
177
|
*/
|
|
178
|
-
waitForSSLCertificate: (request: Readonly<GetSSLCertificateRequest>, options?: Readonly<WaitForOptions<SSLCertificate>>) => Promise<SSLCertificate>;
|
|
178
|
+
waitForSSLCertificate: (request: Readonly<GetSSLCertificateRequest>, options?: Readonly<WaitForOptions<SSLCertificate>> | undefined) => Promise<SSLCertificate>;
|
|
179
179
|
/**
|
|
180
180
|
* Create or get the DNS zone's TLS certificate. Create a new TLS certificate or retrieve information about an existing TLS certificate.
|
|
181
181
|
*
|
|
@@ -368,7 +368,7 @@ export declare class RegistrarAPI extends ParentAPI {
|
|
|
368
368
|
* @param options - The waiting options
|
|
369
369
|
* @returns A Promise of Domain
|
|
370
370
|
*/
|
|
371
|
-
waitForDomain: (request: Readonly<RegistrarApiGetDomainRequest>, options?: Readonly<WaitForOptions<Domain>>) => Promise<Domain>;
|
|
371
|
+
waitForDomain: (request: Readonly<RegistrarApiGetDomainRequest>, options?: Readonly<WaitForOptions<Domain>> | undefined) => Promise<Domain>;
|
|
372
372
|
/**
|
|
373
373
|
* Update a domain's contacts. Update contacts for a specific domain or create a new contact.<br/>
|
|
374
374
|
If you add the same contact for multiple roles (owner, administrative, technical), only one ID will be created and used for all of the roles.
|