Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit 684b786

Browse files
authored
Merge pull request #144 from NativeScript/kddimitrov/add-options-hasSensitiveValue-field
chore: add mandatory hasSensitiveValue field for cloud options
2 parents 77ec691 + c586ad1 commit 684b786

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/cloud-options-provider.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import { DEFAULT_ANDROID_PUBLISH_TRACK } from "./constants";
33
export class CloudOptionsProvider implements ICloudOptionsProvider {
44
public get dashedOptions() {
55
return {
6-
accountId: { type: OptionType.String },
7-
apiVersion: { type: OptionType.String },
8-
local: { type: OptionType.Boolean },
9-
serverProto: { type: OptionType.String },
10-
namespace: { type: OptionType.String },
11-
sharedCloud: { type: OptionType.Boolean },
12-
workflow: { type: OptionType.Object },
13-
vmTemplateName: { type: OptionType.String },
14-
track: { type: OptionType.String, default: DEFAULT_ANDROID_PUBLISH_TRACK },
6+
accountId: { type: OptionType.String, hasSensitiveValue: true },
7+
apiVersion: { type: OptionType.String, hasSensitiveValue: false },
8+
local: { type: OptionType.Boolean, hasSensitiveValue: false },
9+
serverProto: { type: OptionType.String , hasSensitiveValue: true},
10+
namespace: { type: OptionType.String, hasSensitiveValue: true },
11+
sharedCloud: { type: OptionType.Boolean, hasSensitiveValue: false },
12+
workflow: { type: OptionType.Object, hasSensitiveValue: true },
13+
vmTemplateName: { type: OptionType.String, hasSensitiveValue: false },
14+
track: { type: OptionType.String, default: DEFAULT_ANDROID_PUBLISH_TRACK, hasSensitiveValue: false },
1515
};
1616
}
1717
}

0 commit comments

Comments
 (0)