Merge pull request #144 from NativeScript/kddimitrov/add-options-hasSensitiveValue-field
chore: add mandatory hasSensitiveValue field for cloud options
This commit is contained in:
Коммит
684b786531
|
@ -3,15 +3,15 @@ import { DEFAULT_ANDROID_PUBLISH_TRACK } from "./constants";
|
|||
export class CloudOptionsProvider implements ICloudOptionsProvider {
|
||||
public get dashedOptions() {
|
||||
return {
|
||||
accountId: { type: OptionType.String },
|
||||
apiVersion: { type: OptionType.String },
|
||||
local: { type: OptionType.Boolean },
|
||||
serverProto: { type: OptionType.String },
|
||||
namespace: { type: OptionType.String },
|
||||
sharedCloud: { type: OptionType.Boolean },
|
||||
workflow: { type: OptionType.Object },
|
||||
vmTemplateName: { type: OptionType.String },
|
||||
track: { type: OptionType.String, default: DEFAULT_ANDROID_PUBLISH_TRACK },
|
||||
accountId: { type: OptionType.String, hasSensitiveValue: true },
|
||||
apiVersion: { type: OptionType.String, hasSensitiveValue: false },
|
||||
local: { type: OptionType.Boolean, hasSensitiveValue: false },
|
||||
serverProto: { type: OptionType.String , hasSensitiveValue: true},
|
||||
namespace: { type: OptionType.String, hasSensitiveValue: true },
|
||||
sharedCloud: { type: OptionType.Boolean, hasSensitiveValue: false },
|
||||
workflow: { type: OptionType.Object, hasSensitiveValue: true },
|
||||
vmTemplateName: { type: OptionType.String, hasSensitiveValue: false },
|
||||
track: { type: OptionType.String, default: DEFAULT_ANDROID_PUBLISH_TRACK, hasSensitiveValue: false },
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче