@layr-labs/ecloud-sdk 0.1.2 → 0.2.0-dev.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/VERSION +2 -2
- package/dist/billing.cjs +1 -1
- package/dist/billing.cjs.map +1 -1
- package/dist/billing.d.cts +1 -1
- package/dist/billing.d.ts +1 -1
- package/dist/billing.js +2 -2
- package/dist/{chunk-AOZRDBLK.js → chunk-FY7UU55U.js} +107 -31
- package/dist/chunk-FY7UU55U.js.map +1 -0
- package/dist/{chunk-4RG5IMZ7.js → chunk-GB4GM4C2.js} +2 -2
- package/dist/{chunk-MQ2NGP4C.js → chunk-O7EU5JL7.js} +312 -55
- package/dist/chunk-O7EU5JL7.js.map +1 -0
- package/dist/{compute-BlUpqWKo.d.cts → compute-CF2HOXed.d.ts} +9 -1
- package/dist/{compute-CottWiST.d.ts → compute-CbmjA8kJ.d.cts} +9 -1
- package/dist/compute.cjs +387 -47
- package/dist/compute.cjs.map +1 -1
- package/dist/compute.d.cts +2 -2
- package/dist/compute.d.ts +2 -2
- package/dist/compute.js +2 -2
- package/dist/{index-Fb_S-Cqk.d.ts → index-D2QufVB9.d.cts} +33 -1
- package/dist/{index-Fb_S-Cqk.d.cts → index-D2QufVB9.d.ts} +33 -1
- package/dist/index.cjs +769 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +314 -98
- package/dist/index.d.ts +314 -98
- package/dist/index.js +376 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-AOZRDBLK.js.map +0 -1
- package/dist/chunk-MQ2NGP4C.js.map +0 -1
- /package/dist/{chunk-4RG5IMZ7.js.map → chunk-GB4GM4C2.js.map} +0 -0
package/dist/compute.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { A as AppModule, q as AppModuleConfig, C as ComputeModule, e as ComputeModuleConfig, p as createAppModule, d as createComputeModule, f as encodeStartAppData, h as encodeStopAppData, i as encodeTerminateAppData } from './compute-
|
|
1
|
+
export { A as AppModule, q as AppModuleConfig, C as ComputeModule, e as ComputeModuleConfig, p as createAppModule, d as createComputeModule, f as encodeStartAppData, h as encodeStopAppData, i as encodeTerminateAppData } from './compute-CbmjA8kJ.cjs';
|
|
2
2
|
import 'viem';
|
|
3
|
-
import './index-
|
|
3
|
+
import './index-D2QufVB9.cjs';
|
package/dist/compute.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { A as AppModule, q as AppModuleConfig, C as ComputeModule, e as ComputeModuleConfig, p as createAppModule, d as createComputeModule, f as encodeStartAppData, h as encodeStopAppData, i as encodeTerminateAppData } from './compute-
|
|
1
|
+
export { A as AppModule, q as AppModuleConfig, C as ComputeModule, e as ComputeModuleConfig, p as createAppModule, d as createComputeModule, f as encodeStartAppData, h as encodeStopAppData, i as encodeTerminateAppData } from './compute-CF2HOXed.js';
|
|
2
2
|
import 'viem';
|
|
3
|
-
import './index-
|
|
3
|
+
import './index-D2QufVB9.js';
|
package/dist/compute.js
CHANGED
|
@@ -73,6 +73,38 @@ interface PrepareUpgradeOpts {
|
|
|
73
73
|
/** Resource usage monitoring setting - optional */
|
|
74
74
|
resourceUsageMonitoring?: "enable" | "disable";
|
|
75
75
|
}
|
|
76
|
+
/** Options for prepareDeployFromVerifiableBuild */
|
|
77
|
+
interface PrepareDeployFromVerifiableBuildOpts {
|
|
78
|
+
/** App name - required */
|
|
79
|
+
name: string;
|
|
80
|
+
/** Image reference (registry/path:tag) - required */
|
|
81
|
+
imageRef: string;
|
|
82
|
+
/** Image digest (sha256:...) - required */
|
|
83
|
+
imageDigest: string;
|
|
84
|
+
/** Path to .env file - optional */
|
|
85
|
+
envFile?: string;
|
|
86
|
+
/** Instance type SKU - required */
|
|
87
|
+
instanceType: string;
|
|
88
|
+
/** Log visibility setting - required */
|
|
89
|
+
logVisibility: logVisibility;
|
|
90
|
+
/** Resource usage monitoring setting - optional */
|
|
91
|
+
resourceUsageMonitoring?: "enable" | "disable";
|
|
92
|
+
}
|
|
93
|
+
/** Options for prepareUpgradeFromVerifiableBuild */
|
|
94
|
+
interface PrepareUpgradeFromVerifiableBuildOpts {
|
|
95
|
+
/** Image reference (registry/path:tag) - required */
|
|
96
|
+
imageRef: string;
|
|
97
|
+
/** Image digest (sha256:...) - required */
|
|
98
|
+
imageDigest: string;
|
|
99
|
+
/** Path to .env file - optional */
|
|
100
|
+
envFile?: string;
|
|
101
|
+
/** Instance type SKU - required */
|
|
102
|
+
instanceType: string;
|
|
103
|
+
/** Log visibility setting - required */
|
|
104
|
+
logVisibility: logVisibility;
|
|
105
|
+
/** Resource usage monitoring setting - optional */
|
|
106
|
+
resourceUsageMonitoring?: "enable" | "disable";
|
|
107
|
+
}
|
|
76
108
|
/** Gas options for execute functions */
|
|
77
109
|
interface GasOpts {
|
|
78
110
|
maxFeePerGas?: bigint;
|
|
@@ -307,4 +339,4 @@ interface BillingEnvironmentConfig {
|
|
|
307
339
|
billingApiServerURL: string;
|
|
308
340
|
}
|
|
309
341
|
|
|
310
|
-
export type { AppId as A, BillingEnvironmentConfig as B, ChainID as C, DeployResult as D, EnvironmentConfig as E,
|
|
342
|
+
export type { AppId as A, BillingEnvironmentConfig as B, ChainID as C, DeployResult as D, EnvironmentConfig as E, CancelResponse as F, GasOpts as G, ProductSubscriptionResponse as H, ImageDigestResult as I, SubscriptionOpts as J, Logger as L, NoActiveSubscriptionResponse as N, PreparedDeploy as P, Release as R, SubscriptionStatus as S, UpgradeAppOpts as U, PreparedUpgrade as a, DeployAppOpts as b, PrepareDeployOpts as c, PrepareUpgradeOpts as d, PrepareDeployFromVerifiableBuildOpts as e, PrepareUpgradeFromVerifiableBuildOpts as f, ExecuteDeployResult as g, ExecuteUpgradeResult as h, PreparedDeployData as i, PreparedUpgradeData as j, LifecycleOpts as k, logVisibility as l, AppRecord as m, DeployOptions as n, ParsedEnvironment as o, DockerImageConfig as p, AppProfile as q, AppProfileResponse as r, ProductID as s, SubscriptionLineItem as t, CreateSubscriptionResponse as u, CheckoutCreatedResponse as v, AlreadyActiveResponse as w, PaymentIssueResponse as x, SubscribeResponse as y, CancelSuccessResponse as z };
|
|
@@ -73,6 +73,38 @@ interface PrepareUpgradeOpts {
|
|
|
73
73
|
/** Resource usage monitoring setting - optional */
|
|
74
74
|
resourceUsageMonitoring?: "enable" | "disable";
|
|
75
75
|
}
|
|
76
|
+
/** Options for prepareDeployFromVerifiableBuild */
|
|
77
|
+
interface PrepareDeployFromVerifiableBuildOpts {
|
|
78
|
+
/** App name - required */
|
|
79
|
+
name: string;
|
|
80
|
+
/** Image reference (registry/path:tag) - required */
|
|
81
|
+
imageRef: string;
|
|
82
|
+
/** Image digest (sha256:...) - required */
|
|
83
|
+
imageDigest: string;
|
|
84
|
+
/** Path to .env file - optional */
|
|
85
|
+
envFile?: string;
|
|
86
|
+
/** Instance type SKU - required */
|
|
87
|
+
instanceType: string;
|
|
88
|
+
/** Log visibility setting - required */
|
|
89
|
+
logVisibility: logVisibility;
|
|
90
|
+
/** Resource usage monitoring setting - optional */
|
|
91
|
+
resourceUsageMonitoring?: "enable" | "disable";
|
|
92
|
+
}
|
|
93
|
+
/** Options for prepareUpgradeFromVerifiableBuild */
|
|
94
|
+
interface PrepareUpgradeFromVerifiableBuildOpts {
|
|
95
|
+
/** Image reference (registry/path:tag) - required */
|
|
96
|
+
imageRef: string;
|
|
97
|
+
/** Image digest (sha256:...) - required */
|
|
98
|
+
imageDigest: string;
|
|
99
|
+
/** Path to .env file - optional */
|
|
100
|
+
envFile?: string;
|
|
101
|
+
/** Instance type SKU - required */
|
|
102
|
+
instanceType: string;
|
|
103
|
+
/** Log visibility setting - required */
|
|
104
|
+
logVisibility: logVisibility;
|
|
105
|
+
/** Resource usage monitoring setting - optional */
|
|
106
|
+
resourceUsageMonitoring?: "enable" | "disable";
|
|
107
|
+
}
|
|
76
108
|
/** Gas options for execute functions */
|
|
77
109
|
interface GasOpts {
|
|
78
110
|
maxFeePerGas?: bigint;
|
|
@@ -307,4 +339,4 @@ interface BillingEnvironmentConfig {
|
|
|
307
339
|
billingApiServerURL: string;
|
|
308
340
|
}
|
|
309
341
|
|
|
310
|
-
export type { AppId as A, BillingEnvironmentConfig as B, ChainID as C, DeployResult as D, EnvironmentConfig as E,
|
|
342
|
+
export type { AppId as A, BillingEnvironmentConfig as B, ChainID as C, DeployResult as D, EnvironmentConfig as E, CancelResponse as F, GasOpts as G, ProductSubscriptionResponse as H, ImageDigestResult as I, SubscriptionOpts as J, Logger as L, NoActiveSubscriptionResponse as N, PreparedDeploy as P, Release as R, SubscriptionStatus as S, UpgradeAppOpts as U, PreparedUpgrade as a, DeployAppOpts as b, PrepareDeployOpts as c, PrepareUpgradeOpts as d, PrepareDeployFromVerifiableBuildOpts as e, PrepareUpgradeFromVerifiableBuildOpts as f, ExecuteDeployResult as g, ExecuteUpgradeResult as h, PreparedDeployData as i, PreparedUpgradeData as j, LifecycleOpts as k, logVisibility as l, AppRecord as m, DeployOptions as n, ParsedEnvironment as o, DockerImageConfig as p, AppProfile as q, AppProfileResponse as r, ProductID as s, SubscriptionLineItem as t, CreateSubscriptionResponse as u, CheckoutCreatedResponse as v, AlreadyActiveResponse as w, PaymentIssueResponse as x, SubscribeResponse as y, CancelSuccessResponse as z };
|