shipthis 0.1.6 → 0.1.7
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/dist/commands/game/android/wizard.js +7 -1
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +341 -341
- package/package.json +1 -1
|
@@ -240,6 +240,7 @@ const CreateForGame = ({ onComplete, onError, gameId, ...boxProps }) => {
|
|
|
240
240
|
});
|
|
241
241
|
const prevHasBuild = useRef(false);
|
|
242
242
|
const shipMutation = useShip();
|
|
243
|
+
const [shipLog, setShipLog] = useState("");
|
|
243
244
|
useEffect(() => {
|
|
244
245
|
if (isLoadingBuilds || isLoadingJobs) return;
|
|
245
246
|
if (!buildData) return;
|
|
@@ -250,7 +251,11 @@ const CreateForGame = ({ onComplete, onError, gameId, ...boxProps }) => {
|
|
|
250
251
|
prevHasBuild.current = hasAndroidBuild;
|
|
251
252
|
const hasAndroidJob = jobData.data.some((job) => job.type === Platform.ANDROID);
|
|
252
253
|
const shouldRun = !hasAndroidBuild && !hasAndroidJob;
|
|
253
|
-
if (shouldRun)
|
|
254
|
+
if (shouldRun)
|
|
255
|
+
shipMutation.mutateAsync({
|
|
256
|
+
command,
|
|
257
|
+
log: setShipLog
|
|
258
|
+
}).catch(onError);
|
|
254
259
|
}, [buildData, jobData, command]);
|
|
255
260
|
const androidJob = jobData?.data.find(
|
|
256
261
|
(job) => job.type === Platform.ANDROID && [JobStatus.PENDING, JobStatus.PROCESSING].includes(job.status)
|
|
@@ -260,6 +265,7 @@ const CreateForGame = ({ onComplete, onError, gameId, ...boxProps }) => {
|
|
|
260
265
|
/* @__PURE__ */ jsx(Text, { children: "Create an initial build..." }),
|
|
261
266
|
(isLoadingBuilds || isLoadingJobs || shipMutation.isPending) && /* @__PURE__ */ jsx(Spinner, { type: "dots" })
|
|
262
267
|
] }),
|
|
268
|
+
androidJob == null && /* @__PURE__ */ jsx(Text, { children: shipLog }),
|
|
263
269
|
androidJob && /* @__PURE__ */ jsx(JobProgress, { job: androidJob, onComplete })
|
|
264
270
|
] }) });
|
|
265
271
|
};
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "shipthis",
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.7",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@expo/apple-utils": "2.0.3",
|
package/oclif.manifest.json
CHANGED
|
@@ -156,6 +156,110 @@
|
|
|
156
156
|
"status.js"
|
|
157
157
|
]
|
|
158
158
|
},
|
|
159
|
+
"internal:fastlane": {
|
|
160
|
+
"aliases": [],
|
|
161
|
+
"args": {
|
|
162
|
+
"username": {
|
|
163
|
+
"description": "Your Apple email address",
|
|
164
|
+
"name": "username",
|
|
165
|
+
"required": true
|
|
166
|
+
},
|
|
167
|
+
"file": {
|
|
168
|
+
"description": "Path where the fastlane session will be written",
|
|
169
|
+
"name": "file",
|
|
170
|
+
"required": true
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"description": "Output a fastlane session file which can be used with xcodes",
|
|
174
|
+
"examples": [
|
|
175
|
+
"<%= config.bin %> <%= command.id %>",
|
|
176
|
+
"<%= config.bin %> <%= command.id %> --force --username me@email.nowhere"
|
|
177
|
+
],
|
|
178
|
+
"flags": {
|
|
179
|
+
"force": {
|
|
180
|
+
"char": "f",
|
|
181
|
+
"name": "force",
|
|
182
|
+
"allowNo": false,
|
|
183
|
+
"type": "boolean"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"hasDynamicHelp": false,
|
|
187
|
+
"hiddenAliases": [],
|
|
188
|
+
"id": "internal:fastlane",
|
|
189
|
+
"pluginAlias": "shipthis",
|
|
190
|
+
"pluginName": "shipthis",
|
|
191
|
+
"pluginType": "core",
|
|
192
|
+
"strict": true,
|
|
193
|
+
"enableJsonFlag": false,
|
|
194
|
+
"isESM": true,
|
|
195
|
+
"relativePath": [
|
|
196
|
+
"dist",
|
|
197
|
+
"commands",
|
|
198
|
+
"internal",
|
|
199
|
+
"fastlane.js"
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
"internal:readme": {
|
|
203
|
+
"aliases": [],
|
|
204
|
+
"args": {
|
|
205
|
+
"outputDir": {
|
|
206
|
+
"description": "The directory where the readme files will be written",
|
|
207
|
+
"name": "outputDir",
|
|
208
|
+
"required": true
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"description": "Generate the readme files for the commands",
|
|
212
|
+
"examples": [
|
|
213
|
+
"<%= config.bin %> <%= command.id %>"
|
|
214
|
+
],
|
|
215
|
+
"flags": {
|
|
216
|
+
"notDryRun": {
|
|
217
|
+
"char": "n",
|
|
218
|
+
"description": "Set to actually write the files (will not overwrite)",
|
|
219
|
+
"name": "notDryRun",
|
|
220
|
+
"allowNo": false,
|
|
221
|
+
"type": "boolean"
|
|
222
|
+
},
|
|
223
|
+
"overWrite": {
|
|
224
|
+
"char": "o",
|
|
225
|
+
"description": "Overwrite existing files",
|
|
226
|
+
"name": "overWrite",
|
|
227
|
+
"allowNo": false,
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
},
|
|
230
|
+
"depth": {
|
|
231
|
+
"char": "d",
|
|
232
|
+
"description": "The depth of the topic tree to render as separate files",
|
|
233
|
+
"name": "depth",
|
|
234
|
+
"hasDynamicHelp": false,
|
|
235
|
+
"multiple": false,
|
|
236
|
+
"type": "option"
|
|
237
|
+
},
|
|
238
|
+
"only": {
|
|
239
|
+
"char": "l",
|
|
240
|
+
"description": "Glob pattern - will only write the files which match",
|
|
241
|
+
"name": "only",
|
|
242
|
+
"hasDynamicHelp": false,
|
|
243
|
+
"multiple": false,
|
|
244
|
+
"type": "option"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"hasDynamicHelp": false,
|
|
248
|
+
"hiddenAliases": [],
|
|
249
|
+
"id": "internal:readme",
|
|
250
|
+
"pluginAlias": "shipthis",
|
|
251
|
+
"pluginName": "shipthis",
|
|
252
|
+
"pluginType": "core",
|
|
253
|
+
"strict": true,
|
|
254
|
+
"enableJsonFlag": false,
|
|
255
|
+
"isESM": true,
|
|
256
|
+
"relativePath": [
|
|
257
|
+
"dist",
|
|
258
|
+
"commands",
|
|
259
|
+
"internal",
|
|
260
|
+
"readme.js"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
159
263
|
"game:create": {
|
|
160
264
|
"aliases": [],
|
|
161
265
|
"args": {},
|
|
@@ -555,110 +659,6 @@
|
|
|
555
659
|
"wizard.js"
|
|
556
660
|
]
|
|
557
661
|
},
|
|
558
|
-
"internal:fastlane": {
|
|
559
|
-
"aliases": [],
|
|
560
|
-
"args": {
|
|
561
|
-
"username": {
|
|
562
|
-
"description": "Your Apple email address",
|
|
563
|
-
"name": "username",
|
|
564
|
-
"required": true
|
|
565
|
-
},
|
|
566
|
-
"file": {
|
|
567
|
-
"description": "Path where the fastlane session will be written",
|
|
568
|
-
"name": "file",
|
|
569
|
-
"required": true
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
"description": "Output a fastlane session file which can be used with xcodes",
|
|
573
|
-
"examples": [
|
|
574
|
-
"<%= config.bin %> <%= command.id %>",
|
|
575
|
-
"<%= config.bin %> <%= command.id %> --force --username me@email.nowhere"
|
|
576
|
-
],
|
|
577
|
-
"flags": {
|
|
578
|
-
"force": {
|
|
579
|
-
"char": "f",
|
|
580
|
-
"name": "force",
|
|
581
|
-
"allowNo": false,
|
|
582
|
-
"type": "boolean"
|
|
583
|
-
}
|
|
584
|
-
},
|
|
585
|
-
"hasDynamicHelp": false,
|
|
586
|
-
"hiddenAliases": [],
|
|
587
|
-
"id": "internal:fastlane",
|
|
588
|
-
"pluginAlias": "shipthis",
|
|
589
|
-
"pluginName": "shipthis",
|
|
590
|
-
"pluginType": "core",
|
|
591
|
-
"strict": true,
|
|
592
|
-
"enableJsonFlag": false,
|
|
593
|
-
"isESM": true,
|
|
594
|
-
"relativePath": [
|
|
595
|
-
"dist",
|
|
596
|
-
"commands",
|
|
597
|
-
"internal",
|
|
598
|
-
"fastlane.js"
|
|
599
|
-
]
|
|
600
|
-
},
|
|
601
|
-
"internal:readme": {
|
|
602
|
-
"aliases": [],
|
|
603
|
-
"args": {
|
|
604
|
-
"outputDir": {
|
|
605
|
-
"description": "The directory where the readme files will be written",
|
|
606
|
-
"name": "outputDir",
|
|
607
|
-
"required": true
|
|
608
|
-
}
|
|
609
|
-
},
|
|
610
|
-
"description": "Generate the readme files for the commands",
|
|
611
|
-
"examples": [
|
|
612
|
-
"<%= config.bin %> <%= command.id %>"
|
|
613
|
-
],
|
|
614
|
-
"flags": {
|
|
615
|
-
"notDryRun": {
|
|
616
|
-
"char": "n",
|
|
617
|
-
"description": "Set to actually write the files (will not overwrite)",
|
|
618
|
-
"name": "notDryRun",
|
|
619
|
-
"allowNo": false,
|
|
620
|
-
"type": "boolean"
|
|
621
|
-
},
|
|
622
|
-
"overWrite": {
|
|
623
|
-
"char": "o",
|
|
624
|
-
"description": "Overwrite existing files",
|
|
625
|
-
"name": "overWrite",
|
|
626
|
-
"allowNo": false,
|
|
627
|
-
"type": "boolean"
|
|
628
|
-
},
|
|
629
|
-
"depth": {
|
|
630
|
-
"char": "d",
|
|
631
|
-
"description": "The depth of the topic tree to render as separate files",
|
|
632
|
-
"name": "depth",
|
|
633
|
-
"hasDynamicHelp": false,
|
|
634
|
-
"multiple": false,
|
|
635
|
-
"type": "option"
|
|
636
|
-
},
|
|
637
|
-
"only": {
|
|
638
|
-
"char": "l",
|
|
639
|
-
"description": "Glob pattern - will only write the files which match",
|
|
640
|
-
"name": "only",
|
|
641
|
-
"hasDynamicHelp": false,
|
|
642
|
-
"multiple": false,
|
|
643
|
-
"type": "option"
|
|
644
|
-
}
|
|
645
|
-
},
|
|
646
|
-
"hasDynamicHelp": false,
|
|
647
|
-
"hiddenAliases": [],
|
|
648
|
-
"id": "internal:readme",
|
|
649
|
-
"pluginAlias": "shipthis",
|
|
650
|
-
"pluginName": "shipthis",
|
|
651
|
-
"pluginType": "core",
|
|
652
|
-
"strict": true,
|
|
653
|
-
"enableJsonFlag": false,
|
|
654
|
-
"isESM": true,
|
|
655
|
-
"relativePath": [
|
|
656
|
-
"dist",
|
|
657
|
-
"commands",
|
|
658
|
-
"internal",
|
|
659
|
-
"readme.js"
|
|
660
|
-
]
|
|
661
|
-
},
|
|
662
662
|
"apple:apiKey:create": {
|
|
663
663
|
"aliases": [],
|
|
664
664
|
"args": {},
|
|
@@ -957,13 +957,24 @@
|
|
|
957
957
|
"status.js"
|
|
958
958
|
]
|
|
959
959
|
},
|
|
960
|
-
"game:
|
|
960
|
+
"game:build:download": {
|
|
961
961
|
"aliases": [],
|
|
962
|
-
"args": {
|
|
963
|
-
|
|
962
|
+
"args": {
|
|
963
|
+
"build_id": {
|
|
964
|
+
"description": "The ID of the build to download",
|
|
965
|
+
"name": "build_id",
|
|
966
|
+
"required": true
|
|
967
|
+
},
|
|
968
|
+
"file": {
|
|
969
|
+
"description": "Name of the file to output",
|
|
970
|
+
"name": "file",
|
|
971
|
+
"required": true
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"description": "Downloads the given build artifact to the specified file",
|
|
964
975
|
"examples": [
|
|
965
|
-
"<%= config.bin %> <%= command.id %>",
|
|
966
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
976
|
+
"<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
|
|
977
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
|
|
967
978
|
],
|
|
968
979
|
"flags": {
|
|
969
980
|
"gameId": {
|
|
@@ -973,11 +984,18 @@
|
|
|
973
984
|
"hasDynamicHelp": false,
|
|
974
985
|
"multiple": false,
|
|
975
986
|
"type": "option"
|
|
987
|
+
},
|
|
988
|
+
"force": {
|
|
989
|
+
"char": "f",
|
|
990
|
+
"description": "Overwrite the file if it already exists",
|
|
991
|
+
"name": "force",
|
|
992
|
+
"allowNo": false,
|
|
993
|
+
"type": "boolean"
|
|
976
994
|
}
|
|
977
995
|
},
|
|
978
996
|
"hasDynamicHelp": false,
|
|
979
997
|
"hiddenAliases": [],
|
|
980
|
-
"id": "game:
|
|
998
|
+
"id": "game:build:download",
|
|
981
999
|
"pluginAlias": "shipthis",
|
|
982
1000
|
"pluginName": "shipthis",
|
|
983
1001
|
"pluginType": "core",
|
|
@@ -988,78 +1006,76 @@
|
|
|
988
1006
|
"dist",
|
|
989
1007
|
"commands",
|
|
990
1008
|
"game",
|
|
991
|
-
"
|
|
992
|
-
"
|
|
1009
|
+
"build",
|
|
1010
|
+
"download.js"
|
|
993
1011
|
]
|
|
994
1012
|
},
|
|
995
|
-
"game:
|
|
1013
|
+
"game:build:list": {
|
|
996
1014
|
"aliases": [],
|
|
997
1015
|
"args": {},
|
|
998
|
-
"description": "
|
|
1016
|
+
"description": "Lists the builds for successful jobs of a game.",
|
|
999
1017
|
"examples": [
|
|
1000
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1018
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1019
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
1020
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
|
|
1001
1021
|
],
|
|
1002
1022
|
"flags": {
|
|
1003
|
-
"
|
|
1004
|
-
"char": "
|
|
1005
|
-
"description": "The
|
|
1006
|
-
"name": "
|
|
1007
|
-
"hasDynamicHelp": false,
|
|
1008
|
-
"multiple": false,
|
|
1009
|
-
"type": "option"
|
|
1010
|
-
},
|
|
1011
|
-
"buildNumber": {
|
|
1012
|
-
"char": "b",
|
|
1013
|
-
"description": "Set the build number",
|
|
1014
|
-
"name": "buildNumber",
|
|
1015
|
-
"hasDynamicHelp": false,
|
|
1016
|
-
"multiple": false,
|
|
1017
|
-
"type": "option"
|
|
1018
|
-
},
|
|
1019
|
-
"semanticVersion": {
|
|
1020
|
-
"char": "s",
|
|
1021
|
-
"description": "Set the semantic version",
|
|
1022
|
-
"name": "semanticVersion",
|
|
1023
|
+
"gameId": {
|
|
1024
|
+
"char": "g",
|
|
1025
|
+
"description": "The ID of the game",
|
|
1026
|
+
"name": "gameId",
|
|
1023
1027
|
"hasDynamicHelp": false,
|
|
1024
1028
|
"multiple": false,
|
|
1025
1029
|
"type": "option"
|
|
1026
1030
|
},
|
|
1027
|
-
"
|
|
1028
|
-
"char": "
|
|
1029
|
-
"description": "
|
|
1030
|
-
"name": "
|
|
1031
|
+
"pageNumber": {
|
|
1032
|
+
"char": "p",
|
|
1033
|
+
"description": "The page number to show (starts at 0)",
|
|
1034
|
+
"name": "pageNumber",
|
|
1035
|
+
"default": 0,
|
|
1031
1036
|
"hasDynamicHelp": false,
|
|
1032
1037
|
"multiple": false,
|
|
1033
1038
|
"type": "option"
|
|
1034
1039
|
},
|
|
1035
|
-
"
|
|
1036
|
-
"char": "
|
|
1037
|
-
"description": "
|
|
1038
|
-
"name": "
|
|
1040
|
+
"pageSize": {
|
|
1041
|
+
"char": "s",
|
|
1042
|
+
"description": "The number of items to show per page",
|
|
1043
|
+
"name": "pageSize",
|
|
1044
|
+
"default": 10,
|
|
1039
1045
|
"hasDynamicHelp": false,
|
|
1040
1046
|
"multiple": false,
|
|
1041
1047
|
"type": "option"
|
|
1042
1048
|
},
|
|
1043
|
-
"
|
|
1044
|
-
"char": "
|
|
1045
|
-
"description": "
|
|
1046
|
-
"name": "
|
|
1049
|
+
"orderBy": {
|
|
1050
|
+
"char": "o",
|
|
1051
|
+
"description": "The field to order by",
|
|
1052
|
+
"name": "orderBy",
|
|
1053
|
+
"default": "createdAt",
|
|
1047
1054
|
"hasDynamicHelp": false,
|
|
1048
1055
|
"multiple": false,
|
|
1056
|
+
"options": [
|
|
1057
|
+
"createdAt",
|
|
1058
|
+
"updatedAt"
|
|
1059
|
+
],
|
|
1049
1060
|
"type": "option"
|
|
1050
1061
|
},
|
|
1051
|
-
"
|
|
1052
|
-
"char": "
|
|
1053
|
-
"description": "
|
|
1054
|
-
"name": "
|
|
1062
|
+
"order": {
|
|
1063
|
+
"char": "r",
|
|
1064
|
+
"description": "The order to sort by",
|
|
1065
|
+
"name": "order",
|
|
1066
|
+
"default": "desc",
|
|
1055
1067
|
"hasDynamicHelp": false,
|
|
1056
1068
|
"multiple": false,
|
|
1069
|
+
"options": [
|
|
1070
|
+
"asc",
|
|
1071
|
+
"desc"
|
|
1072
|
+
],
|
|
1057
1073
|
"type": "option"
|
|
1058
1074
|
}
|
|
1059
1075
|
},
|
|
1060
1076
|
"hasDynamicHelp": false,
|
|
1061
1077
|
"hiddenAliases": [],
|
|
1062
|
-
"id": "game:
|
|
1078
|
+
"id": "game:build:list",
|
|
1063
1079
|
"pluginAlias": "shipthis",
|
|
1064
1080
|
"pluginName": "shipthis",
|
|
1065
1081
|
"pluginType": "core",
|
|
@@ -1070,28 +1086,17 @@
|
|
|
1070
1086
|
"dist",
|
|
1071
1087
|
"commands",
|
|
1072
1088
|
"game",
|
|
1073
|
-
"
|
|
1074
|
-
"
|
|
1089
|
+
"build",
|
|
1090
|
+
"list.js"
|
|
1075
1091
|
]
|
|
1076
1092
|
},
|
|
1077
|
-
"game:
|
|
1093
|
+
"game:android:status": {
|
|
1078
1094
|
"aliases": [],
|
|
1079
|
-
"args": {
|
|
1080
|
-
|
|
1081
|
-
"description": "The ID of the build to download",
|
|
1082
|
-
"name": "build_id",
|
|
1083
|
-
"required": true
|
|
1084
|
-
},
|
|
1085
|
-
"file": {
|
|
1086
|
-
"description": "Name of the file to output",
|
|
1087
|
-
"name": "file",
|
|
1088
|
-
"required": true
|
|
1089
|
-
}
|
|
1090
|
-
},
|
|
1091
|
-
"description": "Downloads the given build artifact to the specified file",
|
|
1095
|
+
"args": {},
|
|
1096
|
+
"description": "Shows the status of the setup for the Android platform for a specific game.",
|
|
1092
1097
|
"examples": [
|
|
1093
|
-
"<%= config.bin %> <%= command.id %>
|
|
1094
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4
|
|
1098
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1099
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1095
1100
|
],
|
|
1096
1101
|
"flags": {
|
|
1097
1102
|
"gameId": {
|
|
@@ -1101,18 +1106,11 @@
|
|
|
1101
1106
|
"hasDynamicHelp": false,
|
|
1102
1107
|
"multiple": false,
|
|
1103
1108
|
"type": "option"
|
|
1104
|
-
},
|
|
1105
|
-
"force": {
|
|
1106
|
-
"char": "f",
|
|
1107
|
-
"description": "Overwrite the file if it already exists",
|
|
1108
|
-
"name": "force",
|
|
1109
|
-
"allowNo": false,
|
|
1110
|
-
"type": "boolean"
|
|
1111
1109
|
}
|
|
1112
1110
|
},
|
|
1113
1111
|
"hasDynamicHelp": false,
|
|
1114
1112
|
"hiddenAliases": [],
|
|
1115
|
-
"id": "game:
|
|
1113
|
+
"id": "game:android:status",
|
|
1116
1114
|
"pluginAlias": "shipthis",
|
|
1117
1115
|
"pluginName": "shipthis",
|
|
1118
1116
|
"pluginType": "core",
|
|
@@ -1123,76 +1121,78 @@
|
|
|
1123
1121
|
"dist",
|
|
1124
1122
|
"commands",
|
|
1125
1123
|
"game",
|
|
1126
|
-
"
|
|
1127
|
-
"
|
|
1124
|
+
"android",
|
|
1125
|
+
"status.js"
|
|
1128
1126
|
]
|
|
1129
1127
|
},
|
|
1130
|
-
"game:
|
|
1128
|
+
"game:android:wizard": {
|
|
1131
1129
|
"aliases": [],
|
|
1132
1130
|
"args": {},
|
|
1133
|
-
"description": "
|
|
1131
|
+
"description": "Prototype Android Wizard",
|
|
1134
1132
|
"examples": [
|
|
1135
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1136
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
1137
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
|
|
1133
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1138
1134
|
],
|
|
1139
1135
|
"flags": {
|
|
1140
|
-
"
|
|
1141
|
-
"char": "
|
|
1142
|
-
"description": "The
|
|
1143
|
-
"name": "
|
|
1136
|
+
"name": {
|
|
1137
|
+
"char": "n",
|
|
1138
|
+
"description": "The name of the game",
|
|
1139
|
+
"name": "name",
|
|
1144
1140
|
"hasDynamicHelp": false,
|
|
1145
1141
|
"multiple": false,
|
|
1146
1142
|
"type": "option"
|
|
1147
1143
|
},
|
|
1148
|
-
"
|
|
1149
|
-
"char": "
|
|
1150
|
-
"description": "
|
|
1151
|
-
"name": "
|
|
1152
|
-
"default": 0,
|
|
1144
|
+
"buildNumber": {
|
|
1145
|
+
"char": "b",
|
|
1146
|
+
"description": "Set the build number",
|
|
1147
|
+
"name": "buildNumber",
|
|
1153
1148
|
"hasDynamicHelp": false,
|
|
1154
1149
|
"multiple": false,
|
|
1155
1150
|
"type": "option"
|
|
1156
1151
|
},
|
|
1157
|
-
"
|
|
1152
|
+
"semanticVersion": {
|
|
1158
1153
|
"char": "s",
|
|
1159
|
-
"description": "
|
|
1160
|
-
"name": "
|
|
1161
|
-
"default": 10,
|
|
1154
|
+
"description": "Set the semantic version",
|
|
1155
|
+
"name": "semanticVersion",
|
|
1162
1156
|
"hasDynamicHelp": false,
|
|
1163
1157
|
"multiple": false,
|
|
1164
1158
|
"type": "option"
|
|
1165
1159
|
},
|
|
1166
|
-
"
|
|
1167
|
-
"char": "
|
|
1168
|
-
"description": "
|
|
1169
|
-
"name": "
|
|
1170
|
-
"default": "createdAt",
|
|
1160
|
+
"gameEngine": {
|
|
1161
|
+
"char": "e",
|
|
1162
|
+
"description": "Set the game engine",
|
|
1163
|
+
"name": "gameEngine",
|
|
1171
1164
|
"hasDynamicHelp": false,
|
|
1172
1165
|
"multiple": false,
|
|
1173
|
-
"options": [
|
|
1174
|
-
"createdAt",
|
|
1175
|
-
"updatedAt"
|
|
1176
|
-
],
|
|
1177
1166
|
"type": "option"
|
|
1178
1167
|
},
|
|
1179
|
-
"
|
|
1180
|
-
"char": "
|
|
1181
|
-
"description": "
|
|
1182
|
-
"name": "
|
|
1183
|
-
"
|
|
1168
|
+
"gameEngineVersion": {
|
|
1169
|
+
"char": "v",
|
|
1170
|
+
"description": "Set the game engine version",
|
|
1171
|
+
"name": "gameEngineVersion",
|
|
1172
|
+
"hasDynamicHelp": false,
|
|
1173
|
+
"multiple": false,
|
|
1174
|
+
"type": "option"
|
|
1175
|
+
},
|
|
1176
|
+
"iosBundleId": {
|
|
1177
|
+
"char": "i",
|
|
1178
|
+
"description": "Set the iOS bundle ID",
|
|
1179
|
+
"name": "iosBundleId",
|
|
1180
|
+
"hasDynamicHelp": false,
|
|
1181
|
+
"multiple": false,
|
|
1182
|
+
"type": "option"
|
|
1183
|
+
},
|
|
1184
|
+
"androidPackageName": {
|
|
1185
|
+
"char": "a",
|
|
1186
|
+
"description": "Set the Android package name",
|
|
1187
|
+
"name": "androidPackageName",
|
|
1184
1188
|
"hasDynamicHelp": false,
|
|
1185
1189
|
"multiple": false,
|
|
1186
|
-
"options": [
|
|
1187
|
-
"asc",
|
|
1188
|
-
"desc"
|
|
1189
|
-
],
|
|
1190
1190
|
"type": "option"
|
|
1191
1191
|
}
|
|
1192
1192
|
},
|
|
1193
1193
|
"hasDynamicHelp": false,
|
|
1194
1194
|
"hiddenAliases": [],
|
|
1195
|
-
"id": "game:
|
|
1195
|
+
"id": "game:android:wizard",
|
|
1196
1196
|
"pluginAlias": "shipthis",
|
|
1197
1197
|
"pluginName": "shipthis",
|
|
1198
1198
|
"pluginType": "core",
|
|
@@ -1203,8 +1203,8 @@
|
|
|
1203
1203
|
"dist",
|
|
1204
1204
|
"commands",
|
|
1205
1205
|
"game",
|
|
1206
|
-
"
|
|
1207
|
-
"
|
|
1206
|
+
"android",
|
|
1207
|
+
"wizard.js"
|
|
1208
1208
|
]
|
|
1209
1209
|
},
|
|
1210
1210
|
"game:ios:status": {
|
|
@@ -1413,13 +1413,14 @@
|
|
|
1413
1413
|
"status.js"
|
|
1414
1414
|
]
|
|
1415
1415
|
},
|
|
1416
|
-
"game:android:
|
|
1416
|
+
"game:android:apiKey:connect": {
|
|
1417
1417
|
"aliases": [],
|
|
1418
1418
|
"args": {},
|
|
1419
|
-
"description": "
|
|
1419
|
+
"description": "Connects ShipThis with Google for managing Service Account API Keys for an Android game",
|
|
1420
1420
|
"examples": [
|
|
1421
1421
|
"<%= config.bin %> <%= command.id %>",
|
|
1422
|
-
"<%= config.bin %> <%= command.id %> --
|
|
1422
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
1423
|
+
"<%= config.bin %> <%= command.id %> --disconnect"
|
|
1423
1424
|
],
|
|
1424
1425
|
"flags": {
|
|
1425
1426
|
"gameId": {
|
|
@@ -1435,11 +1436,17 @@
|
|
|
1435
1436
|
"name": "force",
|
|
1436
1437
|
"allowNo": false,
|
|
1437
1438
|
"type": "boolean"
|
|
1439
|
+
},
|
|
1440
|
+
"disconnect": {
|
|
1441
|
+
"char": "d",
|
|
1442
|
+
"name": "disconnect",
|
|
1443
|
+
"allowNo": false,
|
|
1444
|
+
"type": "boolean"
|
|
1438
1445
|
}
|
|
1439
1446
|
},
|
|
1440
1447
|
"hasDynamicHelp": false,
|
|
1441
1448
|
"hiddenAliases": [],
|
|
1442
|
-
"id": "game:android:
|
|
1449
|
+
"id": "game:android:apiKey:connect",
|
|
1443
1450
|
"pluginAlias": "shipthis",
|
|
1444
1451
|
"pluginName": "shipthis",
|
|
1445
1452
|
"pluginType": "core",
|
|
@@ -1450,22 +1457,17 @@
|
|
|
1450
1457
|
"commands",
|
|
1451
1458
|
"game",
|
|
1452
1459
|
"android",
|
|
1453
|
-
"
|
|
1454
|
-
"
|
|
1460
|
+
"apiKey",
|
|
1461
|
+
"connect.js"
|
|
1455
1462
|
]
|
|
1456
1463
|
},
|
|
1457
|
-
"game:android:
|
|
1464
|
+
"game:android:apiKey:create": {
|
|
1458
1465
|
"aliases": [],
|
|
1459
|
-
"args": {
|
|
1460
|
-
|
|
1461
|
-
"description": "Name of the ZIP file to create",
|
|
1462
|
-
"name": "file",
|
|
1463
|
-
"required": true
|
|
1464
|
-
}
|
|
1465
|
-
},
|
|
1466
|
-
"description": "Saves the current Android Keystore to a ZIP file",
|
|
1466
|
+
"args": {},
|
|
1467
|
+
"description": "Creates a new Android Service Account API Key for a game",
|
|
1467
1468
|
"examples": [
|
|
1468
|
-
"<%= config.bin %> <%= command.id %>
|
|
1469
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1470
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1469
1471
|
],
|
|
1470
1472
|
"flags": {
|
|
1471
1473
|
"gameId": {
|
|
@@ -1476,9 +1478,15 @@
|
|
|
1476
1478
|
"multiple": false,
|
|
1477
1479
|
"type": "option"
|
|
1478
1480
|
},
|
|
1481
|
+
"waitForAuth": {
|
|
1482
|
+
"char": "w",
|
|
1483
|
+
"description": "Wait for Google Authentication (10 mins).",
|
|
1484
|
+
"name": "waitForAuth",
|
|
1485
|
+
"allowNo": false,
|
|
1486
|
+
"type": "boolean"
|
|
1487
|
+
},
|
|
1479
1488
|
"force": {
|
|
1480
1489
|
"char": "f",
|
|
1481
|
-
"description": "Overwrite the file if it already exists",
|
|
1482
1490
|
"name": "force",
|
|
1483
1491
|
"allowNo": false,
|
|
1484
1492
|
"type": "boolean"
|
|
@@ -1486,34 +1494,33 @@
|
|
|
1486
1494
|
},
|
|
1487
1495
|
"hasDynamicHelp": false,
|
|
1488
1496
|
"hiddenAliases": [],
|
|
1489
|
-
"id": "game:android:
|
|
1497
|
+
"id": "game:android:apiKey:create",
|
|
1490
1498
|
"pluginAlias": "shipthis",
|
|
1491
1499
|
"pluginName": "shipthis",
|
|
1492
1500
|
"pluginType": "core",
|
|
1493
1501
|
"strict": true,
|
|
1494
|
-
"enableJsonFlag": false,
|
|
1495
1502
|
"isESM": true,
|
|
1496
1503
|
"relativePath": [
|
|
1497
1504
|
"dist",
|
|
1498
1505
|
"commands",
|
|
1499
1506
|
"game",
|
|
1500
1507
|
"android",
|
|
1501
|
-
"
|
|
1502
|
-
"
|
|
1508
|
+
"apiKey",
|
|
1509
|
+
"create.js"
|
|
1503
1510
|
]
|
|
1504
1511
|
},
|
|
1505
|
-
"game:android:
|
|
1512
|
+
"game:android:apiKey:export": {
|
|
1506
1513
|
"aliases": [],
|
|
1507
1514
|
"args": {
|
|
1508
1515
|
"file": {
|
|
1509
|
-
"description": "Name of the ZIP file to
|
|
1516
|
+
"description": "Name of the ZIP file to create",
|
|
1510
1517
|
"name": "file",
|
|
1511
1518
|
"required": true
|
|
1512
1519
|
}
|
|
1513
1520
|
},
|
|
1514
|
-
"description": "
|
|
1521
|
+
"description": "Saves the current Android Service Account API Key to a ZIP file",
|
|
1515
1522
|
"examples": [
|
|
1516
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1523
|
+
"<%= config.bin %> <%= command.id %> keyStore.zip"
|
|
1517
1524
|
],
|
|
1518
1525
|
"flags": {
|
|
1519
1526
|
"gameId": {
|
|
@@ -1526,6 +1533,7 @@
|
|
|
1526
1533
|
},
|
|
1527
1534
|
"force": {
|
|
1528
1535
|
"char": "f",
|
|
1536
|
+
"description": "Overwrite the file if it already exists",
|
|
1529
1537
|
"name": "force",
|
|
1530
1538
|
"allowNo": false,
|
|
1531
1539
|
"type": "boolean"
|
|
@@ -1533,29 +1541,33 @@
|
|
|
1533
1541
|
},
|
|
1534
1542
|
"hasDynamicHelp": false,
|
|
1535
1543
|
"hiddenAliases": [],
|
|
1536
|
-
"id": "game:android:
|
|
1544
|
+
"id": "game:android:apiKey:export",
|
|
1537
1545
|
"pluginAlias": "shipthis",
|
|
1538
1546
|
"pluginName": "shipthis",
|
|
1539
1547
|
"pluginType": "core",
|
|
1540
1548
|
"strict": true,
|
|
1541
|
-
"enableJsonFlag": false,
|
|
1542
1549
|
"isESM": true,
|
|
1543
1550
|
"relativePath": [
|
|
1544
1551
|
"dist",
|
|
1545
1552
|
"commands",
|
|
1546
1553
|
"game",
|
|
1547
1554
|
"android",
|
|
1548
|
-
"
|
|
1549
|
-
"
|
|
1555
|
+
"apiKey",
|
|
1556
|
+
"export.js"
|
|
1550
1557
|
]
|
|
1551
1558
|
},
|
|
1552
|
-
"game:android:
|
|
1559
|
+
"game:android:apiKey:import": {
|
|
1553
1560
|
"aliases": [],
|
|
1554
|
-
"args": {
|
|
1555
|
-
|
|
1561
|
+
"args": {
|
|
1562
|
+
"file": {
|
|
1563
|
+
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
1564
|
+
"name": "file",
|
|
1565
|
+
"required": true
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
"description": "Imports an Android Service Account API Key to your ShipThis account for the specified game.",
|
|
1556
1569
|
"examples": [
|
|
1557
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1558
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1570
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1559
1571
|
],
|
|
1560
1572
|
"flags": {
|
|
1561
1573
|
"gameId": {
|
|
@@ -1565,34 +1577,43 @@
|
|
|
1565
1577
|
"hasDynamicHelp": false,
|
|
1566
1578
|
"multiple": false,
|
|
1567
1579
|
"type": "option"
|
|
1580
|
+
},
|
|
1581
|
+
"force": {
|
|
1582
|
+
"char": "f",
|
|
1583
|
+
"name": "force",
|
|
1584
|
+
"allowNo": false,
|
|
1585
|
+
"type": "boolean"
|
|
1568
1586
|
}
|
|
1569
1587
|
},
|
|
1570
1588
|
"hasDynamicHelp": false,
|
|
1571
1589
|
"hiddenAliases": [],
|
|
1572
|
-
"id": "game:android:
|
|
1590
|
+
"id": "game:android:apiKey:import",
|
|
1573
1591
|
"pluginAlias": "shipthis",
|
|
1574
1592
|
"pluginName": "shipthis",
|
|
1575
1593
|
"pluginType": "core",
|
|
1576
1594
|
"strict": true,
|
|
1577
|
-
"enableJsonFlag": false,
|
|
1578
1595
|
"isESM": true,
|
|
1579
1596
|
"relativePath": [
|
|
1580
1597
|
"dist",
|
|
1581
1598
|
"commands",
|
|
1582
1599
|
"game",
|
|
1583
1600
|
"android",
|
|
1584
|
-
"
|
|
1585
|
-
"
|
|
1601
|
+
"apiKey",
|
|
1602
|
+
"import.js"
|
|
1586
1603
|
]
|
|
1587
1604
|
},
|
|
1588
|
-
"game:android:apiKey:
|
|
1605
|
+
"game:android:apiKey:invite": {
|
|
1589
1606
|
"aliases": [],
|
|
1590
|
-
"args": {
|
|
1591
|
-
|
|
1607
|
+
"args": {
|
|
1608
|
+
"accountId": {
|
|
1609
|
+
"description": "The Google Play Account ID",
|
|
1610
|
+
"name": "accountId",
|
|
1611
|
+
"required": false
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
"description": "Invites the Service Account to your Google Play Account.",
|
|
1592
1615
|
"examples": [
|
|
1593
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1594
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
1595
|
-
"<%= config.bin %> <%= command.id %> --disconnect"
|
|
1616
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1596
1617
|
],
|
|
1597
1618
|
"flags": {
|
|
1598
1619
|
"gameId": {
|
|
@@ -1603,22 +1624,31 @@
|
|
|
1603
1624
|
"multiple": false,
|
|
1604
1625
|
"type": "option"
|
|
1605
1626
|
},
|
|
1606
|
-
"
|
|
1607
|
-
"char": "
|
|
1608
|
-
"
|
|
1627
|
+
"prompt": {
|
|
1628
|
+
"char": "p",
|
|
1629
|
+
"description": "Prompt for the Google Play Account ID",
|
|
1630
|
+
"name": "prompt",
|
|
1609
1631
|
"allowNo": false,
|
|
1610
1632
|
"type": "boolean"
|
|
1611
1633
|
},
|
|
1612
|
-
"
|
|
1613
|
-
"char": "
|
|
1614
|
-
"
|
|
1634
|
+
"waitForGoogleApp": {
|
|
1635
|
+
"char": "p",
|
|
1636
|
+
"description": "Waits for the Google Play app to be created (10 mins).",
|
|
1637
|
+
"name": "waitForGoogleApp",
|
|
1638
|
+
"allowNo": false,
|
|
1639
|
+
"type": "boolean"
|
|
1640
|
+
},
|
|
1641
|
+
"waitForAuth": {
|
|
1642
|
+
"char": "w",
|
|
1643
|
+
"description": "Wait for Google Authentication (10 mins).",
|
|
1644
|
+
"name": "waitForAuth",
|
|
1615
1645
|
"allowNo": false,
|
|
1616
1646
|
"type": "boolean"
|
|
1617
1647
|
}
|
|
1618
1648
|
},
|
|
1619
1649
|
"hasDynamicHelp": false,
|
|
1620
1650
|
"hiddenAliases": [],
|
|
1621
|
-
"id": "game:android:apiKey:
|
|
1651
|
+
"id": "game:android:apiKey:invite",
|
|
1622
1652
|
"pluginAlias": "shipthis",
|
|
1623
1653
|
"pluginName": "shipthis",
|
|
1624
1654
|
"pluginType": "core",
|
|
@@ -1630,13 +1660,13 @@
|
|
|
1630
1660
|
"game",
|
|
1631
1661
|
"android",
|
|
1632
1662
|
"apiKey",
|
|
1633
|
-
"
|
|
1663
|
+
"invite.js"
|
|
1634
1664
|
]
|
|
1635
1665
|
},
|
|
1636
|
-
"game:android:apiKey:
|
|
1666
|
+
"game:android:apiKey:status": {
|
|
1637
1667
|
"aliases": [],
|
|
1638
1668
|
"args": {},
|
|
1639
|
-
"description": "
|
|
1669
|
+
"description": "Displays the status of the Android Service Account API Key for a specific game.",
|
|
1640
1670
|
"examples": [
|
|
1641
1671
|
"<%= config.bin %> <%= command.id %>",
|
|
1642
1672
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
@@ -1649,24 +1679,11 @@
|
|
|
1649
1679
|
"hasDynamicHelp": false,
|
|
1650
1680
|
"multiple": false,
|
|
1651
1681
|
"type": "option"
|
|
1652
|
-
},
|
|
1653
|
-
"waitForAuth": {
|
|
1654
|
-
"char": "w",
|
|
1655
|
-
"description": "Wait for Google Authentication (10 mins).",
|
|
1656
|
-
"name": "waitForAuth",
|
|
1657
|
-
"allowNo": false,
|
|
1658
|
-
"type": "boolean"
|
|
1659
|
-
},
|
|
1660
|
-
"force": {
|
|
1661
|
-
"char": "f",
|
|
1662
|
-
"name": "force",
|
|
1663
|
-
"allowNo": false,
|
|
1664
|
-
"type": "boolean"
|
|
1665
1682
|
}
|
|
1666
1683
|
},
|
|
1667
1684
|
"hasDynamicHelp": false,
|
|
1668
1685
|
"hiddenAliases": [],
|
|
1669
|
-
"id": "game:android:apiKey:
|
|
1686
|
+
"id": "game:android:apiKey:status",
|
|
1670
1687
|
"pluginAlias": "shipthis",
|
|
1671
1688
|
"pluginName": "shipthis",
|
|
1672
1689
|
"pluginType": "core",
|
|
@@ -1678,21 +1695,16 @@
|
|
|
1678
1695
|
"game",
|
|
1679
1696
|
"android",
|
|
1680
1697
|
"apiKey",
|
|
1681
|
-
"
|
|
1698
|
+
"status.js"
|
|
1682
1699
|
]
|
|
1683
1700
|
},
|
|
1684
|
-
"game:android:
|
|
1701
|
+
"game:android:keyStore:create": {
|
|
1685
1702
|
"aliases": [],
|
|
1686
|
-
"args": {
|
|
1687
|
-
|
|
1688
|
-
"description": "Name of the ZIP file to create",
|
|
1689
|
-
"name": "file",
|
|
1690
|
-
"required": true
|
|
1691
|
-
}
|
|
1692
|
-
},
|
|
1693
|
-
"description": "Saves the current Android Service Account API Key to a ZIP file",
|
|
1703
|
+
"args": {},
|
|
1704
|
+
"description": "Creates a new Android Keystore for a game",
|
|
1694
1705
|
"examples": [
|
|
1695
|
-
"<%= config.bin %> <%= command.id %>
|
|
1706
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1707
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1696
1708
|
],
|
|
1697
1709
|
"flags": {
|
|
1698
1710
|
"gameId": {
|
|
@@ -1705,7 +1717,6 @@
|
|
|
1705
1717
|
},
|
|
1706
1718
|
"force": {
|
|
1707
1719
|
"char": "f",
|
|
1708
|
-
"description": "Overwrite the file if it already exists",
|
|
1709
1720
|
"name": "force",
|
|
1710
1721
|
"allowNo": false,
|
|
1711
1722
|
"type": "boolean"
|
|
@@ -1713,7 +1724,7 @@
|
|
|
1713
1724
|
},
|
|
1714
1725
|
"hasDynamicHelp": false,
|
|
1715
1726
|
"hiddenAliases": [],
|
|
1716
|
-
"id": "game:android:
|
|
1727
|
+
"id": "game:android:keyStore:create",
|
|
1717
1728
|
"pluginAlias": "shipthis",
|
|
1718
1729
|
"pluginName": "shipthis",
|
|
1719
1730
|
"pluginType": "core",
|
|
@@ -1724,22 +1735,22 @@
|
|
|
1724
1735
|
"commands",
|
|
1725
1736
|
"game",
|
|
1726
1737
|
"android",
|
|
1727
|
-
"
|
|
1728
|
-
"
|
|
1738
|
+
"keyStore",
|
|
1739
|
+
"create.js"
|
|
1729
1740
|
]
|
|
1730
1741
|
},
|
|
1731
|
-
"game:android:
|
|
1742
|
+
"game:android:keyStore:export": {
|
|
1732
1743
|
"aliases": [],
|
|
1733
1744
|
"args": {
|
|
1734
1745
|
"file": {
|
|
1735
|
-
"description": "Name of the ZIP file to
|
|
1746
|
+
"description": "Name of the ZIP file to create",
|
|
1736
1747
|
"name": "file",
|
|
1737
1748
|
"required": true
|
|
1738
1749
|
}
|
|
1739
1750
|
},
|
|
1740
|
-
"description": "
|
|
1751
|
+
"description": "Saves the current Android Keystore to a ZIP file",
|
|
1741
1752
|
"examples": [
|
|
1742
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1753
|
+
"<%= config.bin %> <%= command.id %> keyStore.zip"
|
|
1743
1754
|
],
|
|
1744
1755
|
"flags": {
|
|
1745
1756
|
"gameId": {
|
|
@@ -1752,6 +1763,7 @@
|
|
|
1752
1763
|
},
|
|
1753
1764
|
"force": {
|
|
1754
1765
|
"char": "f",
|
|
1766
|
+
"description": "Overwrite the file if it already exists",
|
|
1755
1767
|
"name": "force",
|
|
1756
1768
|
"allowNo": false,
|
|
1757
1769
|
"type": "boolean"
|
|
@@ -1759,31 +1771,32 @@
|
|
|
1759
1771
|
},
|
|
1760
1772
|
"hasDynamicHelp": false,
|
|
1761
1773
|
"hiddenAliases": [],
|
|
1762
|
-
"id": "game:android:
|
|
1774
|
+
"id": "game:android:keyStore:export",
|
|
1763
1775
|
"pluginAlias": "shipthis",
|
|
1764
1776
|
"pluginName": "shipthis",
|
|
1765
1777
|
"pluginType": "core",
|
|
1766
1778
|
"strict": true,
|
|
1779
|
+
"enableJsonFlag": false,
|
|
1767
1780
|
"isESM": true,
|
|
1768
1781
|
"relativePath": [
|
|
1769
1782
|
"dist",
|
|
1770
1783
|
"commands",
|
|
1771
1784
|
"game",
|
|
1772
1785
|
"android",
|
|
1773
|
-
"
|
|
1774
|
-
"
|
|
1786
|
+
"keyStore",
|
|
1787
|
+
"export.js"
|
|
1775
1788
|
]
|
|
1776
1789
|
},
|
|
1777
|
-
"game:android:
|
|
1790
|
+
"game:android:keyStore:import": {
|
|
1778
1791
|
"aliases": [],
|
|
1779
1792
|
"args": {
|
|
1780
|
-
"
|
|
1781
|
-
"description": "
|
|
1782
|
-
"name": "
|
|
1783
|
-
"required":
|
|
1793
|
+
"file": {
|
|
1794
|
+
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
1795
|
+
"name": "file",
|
|
1796
|
+
"required": true
|
|
1784
1797
|
}
|
|
1785
1798
|
},
|
|
1786
|
-
"description": "
|
|
1799
|
+
"description": "Imports an Android Keystore to your ShipThis account for the specified game.",
|
|
1787
1800
|
"examples": [
|
|
1788
1801
|
"<%= config.bin %> <%= command.id %>"
|
|
1789
1802
|
],
|
|
@@ -1796,49 +1809,35 @@
|
|
|
1796
1809
|
"multiple": false,
|
|
1797
1810
|
"type": "option"
|
|
1798
1811
|
},
|
|
1799
|
-
"
|
|
1800
|
-
"char": "
|
|
1801
|
-
"
|
|
1802
|
-
"name": "prompt",
|
|
1803
|
-
"allowNo": false,
|
|
1804
|
-
"type": "boolean"
|
|
1805
|
-
},
|
|
1806
|
-
"waitForGoogleApp": {
|
|
1807
|
-
"char": "p",
|
|
1808
|
-
"description": "Waits for the Google Play app to be created (10 mins).",
|
|
1809
|
-
"name": "waitForGoogleApp",
|
|
1810
|
-
"allowNo": false,
|
|
1811
|
-
"type": "boolean"
|
|
1812
|
-
},
|
|
1813
|
-
"waitForAuth": {
|
|
1814
|
-
"char": "w",
|
|
1815
|
-
"description": "Wait for Google Authentication (10 mins).",
|
|
1816
|
-
"name": "waitForAuth",
|
|
1812
|
+
"force": {
|
|
1813
|
+
"char": "f",
|
|
1814
|
+
"name": "force",
|
|
1817
1815
|
"allowNo": false,
|
|
1818
1816
|
"type": "boolean"
|
|
1819
1817
|
}
|
|
1820
1818
|
},
|
|
1821
1819
|
"hasDynamicHelp": false,
|
|
1822
1820
|
"hiddenAliases": [],
|
|
1823
|
-
"id": "game:android:
|
|
1821
|
+
"id": "game:android:keyStore:import",
|
|
1824
1822
|
"pluginAlias": "shipthis",
|
|
1825
1823
|
"pluginName": "shipthis",
|
|
1826
1824
|
"pluginType": "core",
|
|
1827
1825
|
"strict": true,
|
|
1826
|
+
"enableJsonFlag": false,
|
|
1828
1827
|
"isESM": true,
|
|
1829
1828
|
"relativePath": [
|
|
1830
1829
|
"dist",
|
|
1831
1830
|
"commands",
|
|
1832
1831
|
"game",
|
|
1833
1832
|
"android",
|
|
1834
|
-
"
|
|
1835
|
-
"
|
|
1833
|
+
"keyStore",
|
|
1834
|
+
"import.js"
|
|
1836
1835
|
]
|
|
1837
1836
|
},
|
|
1838
|
-
"game:android:
|
|
1837
|
+
"game:android:keyStore:status": {
|
|
1839
1838
|
"aliases": [],
|
|
1840
1839
|
"args": {},
|
|
1841
|
-
"description": "Displays the status of the Android
|
|
1840
|
+
"description": "Displays the status of the Android Keystore for a specific game.",
|
|
1842
1841
|
"examples": [
|
|
1843
1842
|
"<%= config.bin %> <%= command.id %>",
|
|
1844
1843
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
@@ -1855,18 +1854,19 @@
|
|
|
1855
1854
|
},
|
|
1856
1855
|
"hasDynamicHelp": false,
|
|
1857
1856
|
"hiddenAliases": [],
|
|
1858
|
-
"id": "game:android:
|
|
1857
|
+
"id": "game:android:keyStore:status",
|
|
1859
1858
|
"pluginAlias": "shipthis",
|
|
1860
1859
|
"pluginName": "shipthis",
|
|
1861
1860
|
"pluginType": "core",
|
|
1862
1861
|
"strict": true,
|
|
1862
|
+
"enableJsonFlag": false,
|
|
1863
1863
|
"isESM": true,
|
|
1864
1864
|
"relativePath": [
|
|
1865
1865
|
"dist",
|
|
1866
1866
|
"commands",
|
|
1867
1867
|
"game",
|
|
1868
1868
|
"android",
|
|
1869
|
-
"
|
|
1869
|
+
"keyStore",
|
|
1870
1870
|
"status.js"
|
|
1871
1871
|
]
|
|
1872
1872
|
},
|
|
@@ -2261,5 +2261,5 @@
|
|
|
2261
2261
|
]
|
|
2262
2262
|
}
|
|
2263
2263
|
},
|
|
2264
|
-
"version": "0.1.
|
|
2264
|
+
"version": "0.1.7"
|
|
2265
2265
|
}
|
package/package.json
CHANGED