@stacksjs/ts-cloud 0.3.0 → 0.4.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/bin/cli.js +418 -416
- package/dist/deploy/index.d.ts +2 -0
- package/dist/drivers/shared/package-manager.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +61946 -61297
- package/package.json +3 -3
package/dist/deploy/index.d.ts
CHANGED
|
@@ -6,3 +6,5 @@ export * from './site-target';
|
|
|
6
6
|
export * from './static-site';
|
|
7
7
|
export * from './static-site-external-dns';
|
|
8
8
|
export * from './static-site-helper';
|
|
9
|
+
export { buildFunctionEnv, type CodeSource, deployServerlessApp, type DeployServerlessOptions, infraEnvFromOutputs, redeployServerlessApp, type ResolvedContext, rollbackServerlessApp, runRemoteCommand, setMaintenance, } from './serverless-app';
|
|
10
|
+
export { buildAndPushServerlessImage, type BuildImageOptions, type BuiltImage, } from './serverless-image';
|
|
@@ -25,7 +25,7 @@ export declare const PANTRY_PACKAGES: {
|
|
|
25
25
|
readonly nginx: "nginx.org";
|
|
26
26
|
readonly composer: "getcomposer.org";
|
|
27
27
|
readonly mysql: "mysql.com";
|
|
28
|
-
readonly mariadb: "mariadb.
|
|
28
|
+
readonly mariadb: "mariadb.com/server";
|
|
29
29
|
readonly postgres: "postgresql.org";
|
|
30
30
|
readonly redis: "redis.io";
|
|
31
31
|
readonly memcached: "memcached.org";
|
package/dist/index.d.ts
CHANGED
|
@@ -9,8 +9,8 @@ export type { ObjectStorageConfig, ObjectStorageCredentials, ObjectStorageProvid
|
|
|
9
9
|
export { keyMatchesFilters, migrateObjectStorage, remapKey, } from './object-storage/migrate';
|
|
10
10
|
export type { MigrateEndpoint, MigrateError, MigrateOptions, MigratePlanItem, MigrateProgress, MigrateResult, MigrateVerification, } from './object-storage/migrate';
|
|
11
11
|
export * from './ssl';
|
|
12
|
-
export { deployStaticSite, deployStaticSiteFull, uploadStaticFiles, invalidateCache, deleteStaticSite, generateStaticSiteTemplate, deployStaticSiteWithExternalDns, deployStaticSiteWithExternalDnsFull, generateExternalDnsStaticSiteTemplate, deploySite, resolveSiteDeployTarget, resolveSiteKind, validateDeploymentConfig, } from './deploy';
|
|
13
|
-
export type { StaticSiteConfig, DeployResult, UploadOptions, ExternalDnsStaticSiteConfig, ExternalDnsDeployResult, DeploySiteConfig, DeploySiteResult, StaticSiteDnsProvider, SiteDeployKind, DeploymentValidationResult, } from './deploy';
|
|
12
|
+
export { deployStaticSite, deployStaticSiteFull, uploadStaticFiles, invalidateCache, deleteStaticSite, generateStaticSiteTemplate, deployStaticSiteWithExternalDns, deployStaticSiteWithExternalDnsFull, generateExternalDnsStaticSiteTemplate, deploySite, resolveSiteDeployTarget, resolveSiteKind, validateDeploymentConfig, buildAndPushServerlessImage, buildFunctionEnv, deployServerlessApp, infraEnvFromOutputs, redeployServerlessApp, rollbackServerlessApp, runRemoteCommand, setMaintenance, } from './deploy';
|
|
13
|
+
export type { StaticSiteConfig, DeployResult, UploadOptions, ExternalDnsStaticSiteConfig, ExternalDnsDeployResult, DeploySiteConfig, DeploySiteResult, StaticSiteDnsProvider, SiteDeployKind, DeploymentValidationResult, BuildImageOptions, BuiltImage, CodeSource, DeployServerlessOptions, ResolvedContext, } from './deploy';
|
|
14
14
|
export { createCloudDriver, CloudDriverFactory, cloudDrivers, AwsDriver, HetznerDriver, HetznerClient, resolveHetznerApiToken, generateUbuntuAppCloudInit, wrapCloudInitUserData, buildSiteDeployScript, buildStaticSiteDeployScript, resolveExecStart, deployAllComputeSites, deploySiteRelease, } from './drivers';
|
|
15
15
|
export type { CreateCloudDriverOptions } from './drivers/factory';
|
|
16
16
|
export { createDnsProvider, detectDnsProvider, DnsProviderFactory, dnsProviders, PorkbunProvider, GoDaddyProvider, Route53Provider, UnifiedDnsValidator, createPorkbunValidator, createGoDaddyValidator, createRoute53Validator, } from './dns';
|