@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.
Files changed (33) hide show
  1. package/.history/.gitignore_20220624162613 +84 -0
  2. package/.history/.gitignore_20220627114054 +86 -0
  3. package/.history/package_20220711204706.json +88 -0
  4. package/.history/package_20220711204818.json +88 -0
  5. package/.history/package_20220712151717.json +88 -0
  6. package/.history/src/commands/lowcode/app_20220624162613.ts +34 -0
  7. package/.history/src/commands/lowcode/app_20220627114205.ts +52 -0
  8. package/.history/src/index_20220624162613.ts +13 -0
  9. package/.history/src/index_20220627113609.ts +15 -0
  10. package/.history/src/index_20220627114102.ts +13 -0
  11. package/.vscode/launch.json +10 -0
  12. package/lib/commands/lowcode/app.js +30 -2
  13. package/lib/commands/run/service/create.js +4 -0
  14. package/lib/commands/run/service/deploy.js +4 -0
  15. package/lib/commands/run/service/update.js +4 -0
  16. package/lib/run/service/common.js +115 -21
  17. package/lib/types.js +6 -1
  18. package/package.json +2 -2
  19. package/src/commands/lowcode/app.ts +19 -1
  20. package/src/commands/run/service/create.ts +4 -0
  21. package/src/commands/run/service/deploy.ts +4 -0
  22. package/src/commands/run/service/list.ts +4 -4
  23. package/src/commands/run/service/update.ts +4 -0
  24. package/src/run/service/common.ts +129 -24
  25. package/src/run/service/create.ts +1 -1
  26. package/src/run/service/update.ts +2 -1
  27. package/src/types.ts +13 -0
  28. package/types/commands/lowcode/app.d.ts +10 -0
  29. package/types/run/service/common.d.ts +4 -1
  30. package/types/run/service/create.d.ts +1 -1
  31. package/types/run/service/update.d.ts +2 -1
  32. package/types/types.d.ts +11 -0
  33. 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
+ }