@cloudbase/cli 2.0.10 → 2.0.12-alpha.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/.history/.gitignore_20220624162613 +84 -0
- package/.history/.gitignore_20220627114054 +86 -0
- package/.history/package_20220711204706.json +88 -0
- package/.history/package_20220711204818.json +88 -0
- package/.history/package_20220712151717.json +88 -0
- package/.history/src/commands/lowcode/app_20220624162613.ts +34 -0
- package/.history/src/commands/lowcode/app_20220627114205.ts +52 -0
- package/.history/src/index_20220624162613.ts +13 -0
- package/.history/src/index_20220627113609.ts +15 -0
- package/.history/src/index_20220627114102.ts +13 -0
- package/.vscode/launch.json +10 -0
- package/lib/commands/lowcode/app.js +30 -2
- package/lib/commands/run/service/create.js +4 -0
- package/lib/commands/run/service/deploy.js +4 -0
- package/lib/commands/run/service/update.js +4 -0
- package/lib/run/service/common.js +115 -21
- package/lib/types.js +6 -1
- package/package.json +2 -2
- package/src/commands/lowcode/app.ts +19 -1
- package/src/commands/run/service/create.ts +4 -0
- package/src/commands/run/service/deploy.ts +4 -0
- package/src/commands/run/service/list.ts +4 -4
- package/src/commands/run/service/update.ts +4 -0
- package/src/run/service/common.ts +129 -24
- package/src/run/service/create.ts +1 -1
- package/src/run/service/update.ts +2 -1
- package/src/types.ts +13 -0
- package/types/commands/lowcode/app.d.ts +10 -0
- package/types/run/service/common.d.ts +4 -1
- package/types/run/service/create.d.ts +1 -1
- package/types/run/service/update.d.ts +2 -1
- package/types/types.d.ts +11 -0
- package/yarn-error.log +12841 -0
package/types/types.d.ts
CHANGED
|
@@ -509,6 +509,7 @@ export interface ITcbrServiceOptions {
|
|
|
509
509
|
targetDir: string;
|
|
510
510
|
dockerfile: string;
|
|
511
511
|
image: string;
|
|
512
|
+
custom_image: string;
|
|
512
513
|
library_image: string;
|
|
513
514
|
json: boolean;
|
|
514
515
|
}
|
|
@@ -557,6 +558,7 @@ export interface ITcbrServiceRequiredOptions {
|
|
|
557
558
|
containerPort: number;
|
|
558
559
|
isCreated: boolean;
|
|
559
560
|
path: string;
|
|
561
|
+
custom_image: string;
|
|
560
562
|
library_image: string;
|
|
561
563
|
image: string;
|
|
562
564
|
}
|
|
@@ -572,3 +574,12 @@ export interface ITcbrServiceConvertedOptionalOptions {
|
|
|
572
574
|
maxNumConverted: number;
|
|
573
575
|
minNumConverted: number;
|
|
574
576
|
}
|
|
577
|
+
export interface IAuthorizedTcrInstance {
|
|
578
|
+
Id: string;
|
|
579
|
+
Name: string;
|
|
580
|
+
Domain: string;
|
|
581
|
+
}
|
|
582
|
+
export declare enum DEPLOY_TYPE {
|
|
583
|
+
PACKAGE = "package",
|
|
584
|
+
IMAGE = "image"
|
|
585
|
+
}
|