65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
# File 'lib/fastlane/plugin/fir_cli/actions/fir_cli_action.rb', line 65
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :api_token,
env_name: "FIR_CLI_API_TOKEN",
description: "A description of your option",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :specify_file_path,
env_name: "FIR_SPECIFY_FILE_PATH",
description: "FILE APP PATH",
default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :short,
env_name: "FIR_APP_SHORT",
description: "fir short",
optional: true),
FastlaneCore::ConfigItem.new(key: :force_pin_history,
env_name: "FIR_APP_FORCE_PIN_HISTORY",
description: "pin this release to download page",
default_value: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :skip_update_icon,
env_name: "FIR_APP_SKIP_UPDATE_ICON",
description: "skip upload icon",
default_value: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :specify_icon_file,
env_name: "FIR_SPECIFY_ICON_FILE_PATH",
description: "APP ICON FILE PATH",
default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :changelog,
env_name: "FIR_APP_CHANGELOG",
description: "changelog path or content",
default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :open,
env_name: "FIR_APP_OPEN",
description: "true/false if open for everyone",
default_value: true,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :password,
env_name: "FIR_APP_PASSWORD",
description: "Set password for app",
default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :switch_to_qiniu,
env_name: "FIR_SWITCH_TO_QINIU",
description: "switch to qiniu upload",
default_value: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :need_release_id,
env_name: "FIR_NEED_RELEASE_ID",
description: "would build download url with release id",
default_value: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :specify_app_display_name,
env_name: "FIR_SPECIFY_APP_DISPLAY_NAME",
description: "specify app display name",
default_value: nil,
type: String,
optional: true),
FastlaneCore::ConfigItem.new(key: :dingtalk_access_token,
env_name: "FIR_DINGTALK_ACCESS_TOKEN",
description: "dingtalk_access_token",
optional: true),
FastlaneCore::ConfigItem.new(key: :dingtalk_custom_message,
env_name: "FIR_DINGTALK_CUSTOM_MESSAGE",
description: "dingtalk custom message",
optional: true),
FastlaneCore::ConfigItem.new(key: :dingtalk_at_phones,
env_name: "FIR_DINGTALK_AT_PHONES",
description: "dingtalk at phones, split with ','",
optional: true),
FastlaneCore::ConfigItem.new(key: :dingtalk_at_all,
env_name: "FIR_DINGTALK_AT_ALL",
description: "dingtalk at all people",
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :dingtalk_secret,
env_name: "FIR_DINGTALK_SECRET",
description: "Dingtalk secret code (eg: SECxxxxx)",
optional: true),
FastlaneCore::ConfigItem.new(key: :oversea_turbo,
env_name: "FIR_OVERSEA_TURBO",
description: "fir oversea turbo, increase upload speed for oversea users",
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :feishu_access_token,
env_name: "FIR_FEISHU_ACCESS_TOKEN",
description: "feishu_access_token",
optional: true),
FastlaneCore::ConfigItem.new(key: :feishu_custom_message,
env_name: "FIR_FEISHU_CUSTOM_MESSAGE",
description: "feishu custom message",
optional: true),
FastlaneCore::ConfigItem.new(key: :wxwork_access_token,
env_name: "FIR_WXWORK_ACCESS_TOKEN",
description: "wechat work webhook access_token",
optional: true),
FastlaneCore::ConfigItem.new(key: :wxwork_pic_url,
env_name: "FIR_WXWORK_PIC_URL",
description: "wechat work webhook pic url",
optional: true),
FastlaneCore::ConfigItem.new(key: :wxwork_custom_message,
env_name: "FIR_WXWORK_CUSTOM_MESSAGE",
description: "wechat work custom message",
optional: true),
]
end
|