@scaleway/sdk-webhosting 2.6.0 → 2.8.0
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 +12 -0
- package/dist/metadata.gen.js +13 -0
- package/dist/v1/api.gen.d.ts +3 -3
- package/dist/v1/api.gen.js +393 -717
- package/dist/v1/content.gen.js +4 -4
- package/dist/v1/marshalling.gen.js +77 -77
- package/dist/v1/metadata.gen.js +1 -1
- package/dist/v1/validation-rules.gen.js +10 -10
- package/package.json +16 -6
- package/LICENSE +0 -191
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is automatically generated
|
|
3
|
+
* PLEASE DO NOT EDIT HERE
|
|
4
|
+
*/
|
|
5
|
+
export declare const pkgMetadata: {
|
|
6
|
+
readonly name: "@scaleway/sdk-webhosting";
|
|
7
|
+
readonly namespace: "webhosting";
|
|
8
|
+
readonly displayName: "Webhosting";
|
|
9
|
+
readonly versions: readonly ["v1"];
|
|
10
|
+
};
|
|
11
|
+
export type Metadata = typeof pkgMetadata;
|
|
12
|
+
export default pkgMetadata;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
//#region src/metadata.gen.ts
|
|
2
|
+
/**
|
|
3
|
+
* This file is automatically generated
|
|
4
|
+
* PLEASE DO NOT EDIT HERE
|
|
5
|
+
*/
|
|
6
|
+
const pkgMetadata = {
|
|
7
|
+
name: "@scaleway/sdk-webhosting",
|
|
8
|
+
namespace: "webhosting",
|
|
9
|
+
displayName: "Webhosting",
|
|
10
|
+
versions: ["v1"]
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { pkgMetadata as default, pkgMetadata };
|
package/dist/v1/api.gen.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ export declare class BackupAPI extends ParentAPI {
|
|
|
37
37
|
* @param options - The waiting options
|
|
38
38
|
* @returns A Promise of Backup
|
|
39
39
|
*/
|
|
40
|
-
waitForBackup: (request: Readonly<BackupApiGetBackupRequest>, options?: Readonly<WaitForOptions<Backup>>) => Promise<Backup>;
|
|
40
|
+
waitForBackup: (request: Readonly<BackupApiGetBackupRequest>, options?: Readonly<WaitForOptions<Backup>> | undefined) => Promise<Backup>;
|
|
41
41
|
/**
|
|
42
42
|
* Restore an entire backup to your hosting environment.. Restore an entire backup to your hosting environment.
|
|
43
43
|
*
|
|
@@ -248,7 +248,7 @@ export declare class DnsAPI extends ParentAPI {
|
|
|
248
248
|
* @param options - The waiting options
|
|
249
249
|
* @returns A Promise of Domain
|
|
250
250
|
*/
|
|
251
|
-
waitForDomain: (request: Readonly<DnsApiGetDomainRequest>, options?: Readonly<WaitForOptions<Domain>>) => Promise<Domain>;
|
|
251
|
+
waitForDomain: (request: Readonly<DnsApiGetDomainRequest>, options?: Readonly<WaitForOptions<Domain>> | undefined) => Promise<Domain>;
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
254
|
* Web Hosting Offer API.
|
|
@@ -316,7 +316,7 @@ export declare class HostingAPI extends ParentAPI {
|
|
|
316
316
|
* @param options - The waiting options
|
|
317
317
|
* @returns A Promise of Hosting
|
|
318
318
|
*/
|
|
319
|
-
waitForHosting: (request: Readonly<HostingApiGetHostingRequest>, options?: Readonly<WaitForOptions<Hosting>>) => Promise<Hosting>;
|
|
319
|
+
waitForHosting: (request: Readonly<HostingApiGetHostingRequest>, options?: Readonly<WaitForOptions<Hosting>> | undefined) => Promise<Hosting>;
|
|
320
320
|
/**
|
|
321
321
|
* Update a Web Hosting plan. Update the details of one of your existing Web Hosting plans, specified by its `hosting_id`. You can update parameters including the contact email address, tags, options and offer.
|
|
322
322
|
*
|