@tarojs/plugin-mini-ci 3.7.0-alpha.1 → 3.7.0-alpha.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/plugin-mini-ci",
3
- "version": "3.7.0-alpha.1",
3
+ "version": "3.7.0-alpha.2",
4
4
  "description": "Taro 小程序端构建后支持CI(持续集成)的插件",
5
5
  "keywords": [
6
6
  "Taro",
@@ -30,7 +30,7 @@
30
30
  "miniprogram-ci": "^1.8.35",
31
31
  "qrcode": "^1.5.1",
32
32
  "shelljs": "^0.8.4",
33
- "@tarojs/service": "3.7.0-alpha.1"
33
+ "@tarojs/service": "3.7.0-alpha.2"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/qrcode": "^1.5.0",
package/types/BaseCi.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { IPluginContext } from '@tarojs/service';
2
- export type ProjectType = 'miniProgram' | 'miniGame' | 'miniProgramPlugin' | 'miniGamePlugin';
2
+ export declare type ProjectType = 'miniProgram' | 'miniGame' | 'miniProgramPlugin' | 'miniGamePlugin';
3
3
  /** 微信小程序配置 */
4
4
  export interface WeappConfig {
5
5
  /** 小程序/小游戏项目的 appid */
@@ -44,7 +44,7 @@ export interface TTConfig {
44
44
  password: string;
45
45
  }
46
46
  /** 终端类型 */
47
- export type AlipayClientType =
47
+ export declare type AlipayClientType =
48
48
  /** 支付宝 */ 'alipay' |
49
49
  /** AMPE */ 'ampe' |
50
50
  /** 高德 */ 'amap' |
@@ -72,7 +72,7 @@ export interface AlipayConfig {
72
72
  /** 上传的终端, 默认alipay */
73
73
  clientType?: AlipayClientType;
74
74
  }
75
- export type DingtalkProjectType =
75
+ export declare type DingtalkProjectType =
76
76
  /** 第三方个人应用 */
77
77
  'dingtalk-personal' |
78
78
  /** 第三方企业应用 */