shipthis 0.0.40 → 0.1.0

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.
Files changed (93) hide show
  1. package/README.md +17 -17
  2. package/dist/{AppleBundleIdDetails-n1_U8IqK.js → AppleBundleIdDetails-BF-Pm1Ia.js} +19 -7
  3. package/dist/Command-BrfJSeOC.js +1077 -0
  4. package/dist/CommandGame-D9wl8hfX.js +8 -0
  5. package/dist/{NextSteps-CK9zHOCt.js → NextSteps-DKcjSHZ3.js} +1 -1
  6. package/dist/ProjectCredentialsTable-BVvkIPjN.js +36 -0
  7. package/dist/{StatusTable-CxuX_R1D.js → StatusTable-BzsNF75L.js} +2 -7
  8. package/dist/{UserCredentialsTable-A_YlFeJX.js → UserCredentialsTable-DUFQqHVt.js} +11 -5
  9. package/dist/{baseAppleCommand-DK5-Cvg4.js → baseAppleCommand-BSJhK8GA.js} +1 -1
  10. package/dist/baseGameAndroidCommand-CPAtReqy.js +43 -0
  11. package/dist/commands/apple/apiKey/create.js +24 -10
  12. package/dist/commands/apple/apiKey/export.js +23 -9
  13. package/dist/commands/apple/apiKey/import.js +23 -9
  14. package/dist/commands/apple/apiKey/status.js +25 -13
  15. package/dist/commands/apple/certificate/create.js +25 -11
  16. package/dist/commands/apple/certificate/export.js +23 -9
  17. package/dist/commands/apple/certificate/import.js +23 -9
  18. package/dist/commands/apple/certificate/status.js +26 -14
  19. package/dist/commands/apple/login.js +9 -3
  20. package/dist/commands/apple/status.js +27 -13
  21. package/dist/commands/dashboard.js +11 -5
  22. package/dist/commands/game/android/apiKey/connect.js +73 -0
  23. package/dist/commands/game/android/apiKey/create.js +70 -0
  24. package/dist/commands/game/android/apiKey/export.js +83 -0
  25. package/dist/commands/game/android/apiKey/import.js +92 -0
  26. package/dist/commands/game/android/apiKey/invite.js +81 -0
  27. package/dist/commands/game/android/apiKey/status.js +86 -0
  28. package/dist/commands/game/android/keyStore/create.js +67 -0
  29. package/dist/commands/game/android/keyStore/export.js +82 -0
  30. package/dist/commands/game/android/keyStore/import.js +91 -0
  31. package/dist/commands/game/android/keyStore/status.js +69 -0
  32. package/dist/commands/game/android/status.js +84 -0
  33. package/dist/commands/game/android/wizard.js +53 -0
  34. package/dist/commands/game/build/download.js +23 -9
  35. package/dist/commands/game/build/list.js +25 -14
  36. package/dist/commands/game/create.js +18 -10
  37. package/dist/commands/game/details.js +28 -19
  38. package/dist/commands/game/export.js +11 -5
  39. package/dist/commands/game/ios/app/addTester.js +25 -12
  40. package/dist/commands/game/ios/app/create.js +26 -13
  41. package/dist/commands/game/ios/app/status.js +27 -13
  42. package/dist/commands/game/ios/app/sync.js +23 -9
  43. package/dist/commands/game/ios/profile/create.js +22 -8
  44. package/dist/commands/game/ios/profile/export.js +23 -9
  45. package/dist/commands/game/ios/profile/import.js +23 -9
  46. package/dist/commands/game/ios/profile/status.js +26 -71
  47. package/dist/commands/game/ios/status.js +28 -15
  48. package/dist/commands/game/ios/wizard.js +125 -0
  49. package/dist/commands/game/job/list.js +26 -14
  50. package/dist/commands/game/job/status.js +26 -71
  51. package/dist/commands/game/list.js +26 -12
  52. package/dist/commands/game/ship.js +7 -4
  53. package/dist/commands/game/status.js +63 -25
  54. package/dist/commands/game/wizard.js +41 -99
  55. package/dist/commands/internal/fastlane.js +74 -0
  56. package/dist/commands/internal/readme.js +1452 -0
  57. package/dist/commands/login.js +11 -4
  58. package/dist/commands/status.js +23 -10
  59. package/dist/{export-C16psune.js → export-B0FJT0EU.js} +1 -1
  60. package/dist/{import-hte2Jy0K.js → import-CLDJ2iPu.js} +1 -1
  61. package/dist/{baseGameCommand-B3NbuvDu.js → index-CF0fIsx2.js} +112 -37
  62. package/dist/index-CFHmtzfq.js +24 -0
  63. package/dist/{index-ZHJdUrwJ.js → index-Df8uXQ4s.js} +14 -3
  64. package/dist/{upload-DADrkIUB.js → upload-C5L82Yq0.js} +1 -1
  65. package/dist/useAndroidServiceAccountTestResult-BnxNuoG3.js +52 -0
  66. package/dist/{useAppleApp-Cr3VcGVs.js → useAppleApp-IXRdsK5w.js} +1 -1
  67. package/dist/{useAppleBundleId-BxtyGpHy.js → useAppleBundleId-DYC5ISKT.js} +1 -1
  68. package/docs/game/android/apiKey/connect.md +27 -0
  69. package/docs/game/android/apiKey/create.md +25 -0
  70. package/docs/game/android/apiKey/export.md +25 -0
  71. package/docs/game/android/apiKey/import.md +25 -0
  72. package/docs/game/android/apiKey/invite.md +27 -0
  73. package/docs/game/android/apiKey/status.md +23 -0
  74. package/docs/game/android/apiKey.md +165 -0
  75. package/docs/game/android/keyStore/create.md +24 -0
  76. package/docs/game/android/keyStore/export.md +25 -0
  77. package/docs/game/android/keyStore/import.md +25 -0
  78. package/docs/game/android/keyStore/status.md +23 -0
  79. package/docs/game/android/keyStore.md +108 -0
  80. package/docs/game/android/status.md +23 -0
  81. package/docs/game/android/wizard.md +28 -0
  82. package/docs/game/android.md +339 -0
  83. package/docs/game/create.md +12 -7
  84. package/docs/game/ios/wizard.md +21 -0
  85. package/docs/game/wizard.md +12 -18
  86. package/oclif.manifest.json +821 -68
  87. package/package.json +53 -18
  88. package/dist/App-BfoOFeZ-.js +0 -21
  89. package/dist/RunWithSpinner-BVXNWGD3.js +0 -27
  90. package/dist/Title-BCQtayg6.js +0 -6
  91. package/dist/cacheKeys-CShA-ZjE.js +0 -9
  92. package/dist/useBuilds-JHqMwpWS.js +0 -41
  93. package/dist/useJob-Bc9fdiyP.js +0 -34
@@ -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": {},
@@ -184,6 +288,54 @@
184
288
  "hasDynamicHelp": false,
185
289
  "multiple": false,
186
290
  "type": "option"
291
+ },
292
+ "buildNumber": {
293
+ "char": "b",
294
+ "description": "Set the build number",
295
+ "name": "buildNumber",
296
+ "hasDynamicHelp": false,
297
+ "multiple": false,
298
+ "type": "option"
299
+ },
300
+ "semanticVersion": {
301
+ "char": "s",
302
+ "description": "Set the semantic version",
303
+ "name": "semanticVersion",
304
+ "hasDynamicHelp": false,
305
+ "multiple": false,
306
+ "type": "option"
307
+ },
308
+ "gameEngine": {
309
+ "char": "e",
310
+ "description": "Set the game engine",
311
+ "name": "gameEngine",
312
+ "hasDynamicHelp": false,
313
+ "multiple": false,
314
+ "type": "option"
315
+ },
316
+ "gameEngineVersion": {
317
+ "char": "v",
318
+ "description": "Set the game engine version",
319
+ "name": "gameEngineVersion",
320
+ "hasDynamicHelp": false,
321
+ "multiple": false,
322
+ "type": "option"
323
+ },
324
+ "iosBundleId": {
325
+ "char": "i",
326
+ "description": "Set the iOS bundle ID",
327
+ "name": "iosBundleId",
328
+ "hasDynamicHelp": false,
329
+ "multiple": false,
330
+ "type": "option"
331
+ },
332
+ "androidPackageName": {
333
+ "char": "a",
334
+ "description": "Set the Android package name",
335
+ "name": "androidPackageName",
336
+ "hasDynamicHelp": false,
337
+ "multiple": false,
338
+ "type": "option"
187
339
  }
188
340
  },
189
341
  "hasDynamicHelp": false,
@@ -228,6 +380,14 @@
228
380
  "allowNo": false,
229
381
  "type": "boolean"
230
382
  },
383
+ "name": {
384
+ "char": "n",
385
+ "description": "The name of the game",
386
+ "name": "name",
387
+ "hasDynamicHelp": false,
388
+ "multiple": false,
389
+ "type": "option"
390
+ },
231
391
  "buildNumber": {
232
392
  "char": "b",
233
393
  "description": "Set the build number",
@@ -470,34 +630,19 @@
470
630
  },
471
631
  "game:wizard": {
472
632
  "aliases": [],
473
- "args": {},
474
- "description": "Runs all the steps for the specific platform",
475
- "examples": [
476
- "<%= config.bin %> <%= command.id %>"
477
- ],
478
- "flags": {
479
- "forceStep": {
480
- "char": "f",
481
- "description": "Force a specific step to run.",
482
- "name": "forceStep",
483
- "hasDynamicHelp": false,
484
- "multiple": false,
485
- "type": "option"
486
- },
633
+ "args": {
487
634
  "platform": {
488
- "char": "p",
489
- "description": "The platform to run the wizard for",
635
+ "description": "The platform to run the wizard for. This can be \"android\" or \"ios\"",
490
636
  "name": "platform",
491
- "required": false,
492
- "default": "ios",
493
- "hasDynamicHelp": false,
494
- "multiple": false,
495
- "options": [
496
- "ios"
497
- ],
498
- "type": "option"
637
+ "required": false
499
638
  }
500
639
  },
640
+ "description": "Runs all the steps for the specific platform",
641
+ "examples": [
642
+ "<%= config.bin %> <%= command.id %> ios",
643
+ "<%= config.bin %> <%= command.id %> android"
644
+ ],
645
+ "flags": {},
501
646
  "hasDynamicHelp": false,
502
647
  "hiddenAliases": [],
503
648
  "id": "game:wizard",
@@ -945,10 +1090,10 @@
945
1090
  "list.js"
946
1091
  ]
947
1092
  },
948
- "game:job:list": {
1093
+ "game:android:status": {
949
1094
  "aliases": [],
950
1095
  "args": {},
951
- "description": "Lists the jobs for a game.",
1096
+ "description": "Shows the status of the setup for the Android platform for a specific game.",
952
1097
  "examples": [
953
1098
  "<%= config.bin %> <%= command.id %>",
954
1099
  "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
@@ -961,55 +1106,93 @@
961
1106
  "hasDynamicHelp": false,
962
1107
  "multiple": false,
963
1108
  "type": "option"
1109
+ }
1110
+ },
1111
+ "hasDynamicHelp": false,
1112
+ "hiddenAliases": [],
1113
+ "id": "game:android:status",
1114
+ "pluginAlias": "shipthis",
1115
+ "pluginName": "shipthis",
1116
+ "pluginType": "core",
1117
+ "strict": true,
1118
+ "enableJsonFlag": false,
1119
+ "isESM": true,
1120
+ "relativePath": [
1121
+ "dist",
1122
+ "commands",
1123
+ "game",
1124
+ "android",
1125
+ "status.js"
1126
+ ]
1127
+ },
1128
+ "game:android:wizard": {
1129
+ "aliases": [],
1130
+ "args": {},
1131
+ "description": "Prototype Android Wizard",
1132
+ "examples": [
1133
+ "<%= config.bin %> <%= command.id %>"
1134
+ ],
1135
+ "flags": {
1136
+ "name": {
1137
+ "char": "n",
1138
+ "description": "The name of the game",
1139
+ "name": "name",
1140
+ "hasDynamicHelp": false,
1141
+ "multiple": false,
1142
+ "type": "option"
964
1143
  },
965
- "pageNumber": {
966
- "char": "p",
967
- "description": "The page number to show (starts at 0)",
968
- "name": "pageNumber",
969
- "default": 0,
1144
+ "buildNumber": {
1145
+ "char": "b",
1146
+ "description": "Set the build number",
1147
+ "name": "buildNumber",
970
1148
  "hasDynamicHelp": false,
971
1149
  "multiple": false,
972
1150
  "type": "option"
973
1151
  },
974
- "pageSize": {
1152
+ "semanticVersion": {
975
1153
  "char": "s",
976
- "description": "The number of items to show per page",
977
- "name": "pageSize",
978
- "default": 10,
1154
+ "description": "Set the semantic version",
1155
+ "name": "semanticVersion",
979
1156
  "hasDynamicHelp": false,
980
1157
  "multiple": false,
981
1158
  "type": "option"
982
1159
  },
983
- "orderBy": {
984
- "char": "o",
985
- "description": "The field to order by",
986
- "name": "orderBy",
987
- "default": "createdAt",
1160
+ "gameEngine": {
1161
+ "char": "e",
1162
+ "description": "Set the game engine",
1163
+ "name": "gameEngine",
988
1164
  "hasDynamicHelp": false,
989
1165
  "multiple": false,
990
- "options": [
991
- "createdAt",
992
- "updatedAt"
993
- ],
994
1166
  "type": "option"
995
1167
  },
996
- "order": {
997
- "char": "r",
998
- "description": "The order to sort by",
999
- "name": "order",
1000
- "default": "desc",
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",
1001
1188
  "hasDynamicHelp": false,
1002
1189
  "multiple": false,
1003
- "options": [
1004
- "asc",
1005
- "desc"
1006
- ],
1007
1190
  "type": "option"
1008
1191
  }
1009
1192
  },
1010
1193
  "hasDynamicHelp": false,
1011
1194
  "hiddenAliases": [],
1012
- "id": "game:job:list",
1195
+ "id": "game:android:wizard",
1013
1196
  "pluginAlias": "shipthis",
1014
1197
  "pluginName": "shipthis",
1015
1198
  "pluginType": "core",
@@ -1020,18 +1203,166 @@
1020
1203
  "dist",
1021
1204
  "commands",
1022
1205
  "game",
1023
- "job",
1024
- "list.js"
1206
+ "android",
1207
+ "wizard.js"
1025
1208
  ]
1026
1209
  },
1027
- "game:job:status": {
1210
+ "game:ios:status": {
1028
1211
  "aliases": [],
1029
- "args": {
1030
- "job_id": {
1031
- "description": "The id of the job to get the status of",
1032
- "name": "job_id",
1033
- "required": true
1034
- }
1212
+ "args": {},
1213
+ "description": "Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.",
1214
+ "examples": [
1215
+ "<%= config.bin %> <%= command.id %>",
1216
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1217
+ ],
1218
+ "flags": {
1219
+ "gameId": {
1220
+ "char": "g",
1221
+ "description": "The ID of the game",
1222
+ "name": "gameId",
1223
+ "hasDynamicHelp": false,
1224
+ "multiple": false,
1225
+ "type": "option"
1226
+ }
1227
+ },
1228
+ "hasDynamicHelp": false,
1229
+ "hiddenAliases": [],
1230
+ "id": "game:ios:status",
1231
+ "pluginAlias": "shipthis",
1232
+ "pluginName": "shipthis",
1233
+ "pluginType": "core",
1234
+ "strict": true,
1235
+ "enableJsonFlag": false,
1236
+ "isESM": true,
1237
+ "relativePath": [
1238
+ "dist",
1239
+ "commands",
1240
+ "game",
1241
+ "ios",
1242
+ "status.js"
1243
+ ]
1244
+ },
1245
+ "game:ios:wizard": {
1246
+ "aliases": [],
1247
+ "args": {},
1248
+ "description": "Runs all the steps for iOS",
1249
+ "examples": [
1250
+ "<%= config.bin %> <%= command.id %>"
1251
+ ],
1252
+ "flags": {
1253
+ "forceStep": {
1254
+ "char": "f",
1255
+ "description": "Force a specific step to run.",
1256
+ "name": "forceStep",
1257
+ "hasDynamicHelp": false,
1258
+ "multiple": false,
1259
+ "type": "option"
1260
+ }
1261
+ },
1262
+ "hasDynamicHelp": false,
1263
+ "hiddenAliases": [],
1264
+ "id": "game:ios:wizard",
1265
+ "pluginAlias": "shipthis",
1266
+ "pluginName": "shipthis",
1267
+ "pluginType": "core",
1268
+ "strict": true,
1269
+ "enableJsonFlag": false,
1270
+ "isESM": true,
1271
+ "relativePath": [
1272
+ "dist",
1273
+ "commands",
1274
+ "game",
1275
+ "ios",
1276
+ "wizard.js"
1277
+ ]
1278
+ },
1279
+ "game:job:list": {
1280
+ "aliases": [],
1281
+ "args": {},
1282
+ "description": "Lists the jobs for a game.",
1283
+ "examples": [
1284
+ "<%= config.bin %> <%= command.id %>",
1285
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1286
+ ],
1287
+ "flags": {
1288
+ "gameId": {
1289
+ "char": "g",
1290
+ "description": "The ID of the game",
1291
+ "name": "gameId",
1292
+ "hasDynamicHelp": false,
1293
+ "multiple": false,
1294
+ "type": "option"
1295
+ },
1296
+ "pageNumber": {
1297
+ "char": "p",
1298
+ "description": "The page number to show (starts at 0)",
1299
+ "name": "pageNumber",
1300
+ "default": 0,
1301
+ "hasDynamicHelp": false,
1302
+ "multiple": false,
1303
+ "type": "option"
1304
+ },
1305
+ "pageSize": {
1306
+ "char": "s",
1307
+ "description": "The number of items to show per page",
1308
+ "name": "pageSize",
1309
+ "default": 10,
1310
+ "hasDynamicHelp": false,
1311
+ "multiple": false,
1312
+ "type": "option"
1313
+ },
1314
+ "orderBy": {
1315
+ "char": "o",
1316
+ "description": "The field to order by",
1317
+ "name": "orderBy",
1318
+ "default": "createdAt",
1319
+ "hasDynamicHelp": false,
1320
+ "multiple": false,
1321
+ "options": [
1322
+ "createdAt",
1323
+ "updatedAt"
1324
+ ],
1325
+ "type": "option"
1326
+ },
1327
+ "order": {
1328
+ "char": "r",
1329
+ "description": "The order to sort by",
1330
+ "name": "order",
1331
+ "default": "desc",
1332
+ "hasDynamicHelp": false,
1333
+ "multiple": false,
1334
+ "options": [
1335
+ "asc",
1336
+ "desc"
1337
+ ],
1338
+ "type": "option"
1339
+ }
1340
+ },
1341
+ "hasDynamicHelp": false,
1342
+ "hiddenAliases": [],
1343
+ "id": "game:job:list",
1344
+ "pluginAlias": "shipthis",
1345
+ "pluginName": "shipthis",
1346
+ "pluginType": "core",
1347
+ "strict": true,
1348
+ "enableJsonFlag": false,
1349
+ "isESM": true,
1350
+ "relativePath": [
1351
+ "dist",
1352
+ "commands",
1353
+ "game",
1354
+ "job",
1355
+ "list.js"
1356
+ ]
1357
+ },
1358
+ "game:job:status": {
1359
+ "aliases": [],
1360
+ "args": {
1361
+ "job_id": {
1362
+ "description": "The id of the job to get the status of",
1363
+ "name": "job_id",
1364
+ "required": true
1365
+ }
1035
1366
  },
1036
1367
  "description": "Shows the real-time status of a job.",
1037
1368
  "examples": [
@@ -1082,10 +1413,58 @@
1082
1413
  "status.js"
1083
1414
  ]
1084
1415
  },
1085
- "game:ios:status": {
1416
+ "game:android:apiKey:connect": {
1086
1417
  "aliases": [],
1087
1418
  "args": {},
1088
- "description": "Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.",
1419
+ "description": "Connects ShipThis with Google for managing Service Account API Keys for an Android game",
1420
+ "examples": [
1421
+ "<%= config.bin %> <%= command.id %>",
1422
+ "<%= config.bin %> <%= command.id %> --force",
1423
+ "<%= config.bin %> <%= command.id %> --disconnect"
1424
+ ],
1425
+ "flags": {
1426
+ "gameId": {
1427
+ "char": "g",
1428
+ "description": "The ID of the game",
1429
+ "name": "gameId",
1430
+ "hasDynamicHelp": false,
1431
+ "multiple": false,
1432
+ "type": "option"
1433
+ },
1434
+ "force": {
1435
+ "char": "f",
1436
+ "name": "force",
1437
+ "allowNo": false,
1438
+ "type": "boolean"
1439
+ },
1440
+ "disconnect": {
1441
+ "char": "d",
1442
+ "name": "disconnect",
1443
+ "allowNo": false,
1444
+ "type": "boolean"
1445
+ }
1446
+ },
1447
+ "hasDynamicHelp": false,
1448
+ "hiddenAliases": [],
1449
+ "id": "game:android:apiKey:connect",
1450
+ "pluginAlias": "shipthis",
1451
+ "pluginName": "shipthis",
1452
+ "pluginType": "core",
1453
+ "strict": true,
1454
+ "isESM": true,
1455
+ "relativePath": [
1456
+ "dist",
1457
+ "commands",
1458
+ "game",
1459
+ "android",
1460
+ "apiKey",
1461
+ "connect.js"
1462
+ ]
1463
+ },
1464
+ "game:android:apiKey:create": {
1465
+ "aliases": [],
1466
+ "args": {},
1467
+ "description": "Creates a new Android Service Account API Key for a game",
1089
1468
  "examples": [
1090
1469
  "<%= config.bin %> <%= command.id %>",
1091
1470
  "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
@@ -1098,11 +1477,301 @@
1098
1477
  "hasDynamicHelp": false,
1099
1478
  "multiple": false,
1100
1479
  "type": "option"
1480
+ },
1481
+ "waitForAuth": {
1482
+ "char": "w",
1483
+ "description": "Wait for Google Authentication (10 mins).",
1484
+ "name": "waitForAuth",
1485
+ "allowNo": false,
1486
+ "type": "boolean"
1487
+ },
1488
+ "force": {
1489
+ "char": "f",
1490
+ "name": "force",
1491
+ "allowNo": false,
1492
+ "type": "boolean"
1101
1493
  }
1102
1494
  },
1103
1495
  "hasDynamicHelp": false,
1104
1496
  "hiddenAliases": [],
1105
- "id": "game:ios:status",
1497
+ "id": "game:android:apiKey:create",
1498
+ "pluginAlias": "shipthis",
1499
+ "pluginName": "shipthis",
1500
+ "pluginType": "core",
1501
+ "strict": true,
1502
+ "isESM": true,
1503
+ "relativePath": [
1504
+ "dist",
1505
+ "commands",
1506
+ "game",
1507
+ "android",
1508
+ "apiKey",
1509
+ "create.js"
1510
+ ]
1511
+ },
1512
+ "game:android:apiKey:export": {
1513
+ "aliases": [],
1514
+ "args": {
1515
+ "file": {
1516
+ "description": "Name of the ZIP file to create",
1517
+ "name": "file",
1518
+ "required": true
1519
+ }
1520
+ },
1521
+ "description": "Saves the current Android Service Account API Key to a ZIP file",
1522
+ "examples": [
1523
+ "<%= config.bin %> <%= command.id %> keyStore.zip"
1524
+ ],
1525
+ "flags": {
1526
+ "gameId": {
1527
+ "char": "g",
1528
+ "description": "The ID of the game",
1529
+ "name": "gameId",
1530
+ "hasDynamicHelp": false,
1531
+ "multiple": false,
1532
+ "type": "option"
1533
+ },
1534
+ "force": {
1535
+ "char": "f",
1536
+ "description": "Overwrite the file if it already exists",
1537
+ "name": "force",
1538
+ "allowNo": false,
1539
+ "type": "boolean"
1540
+ }
1541
+ },
1542
+ "hasDynamicHelp": false,
1543
+ "hiddenAliases": [],
1544
+ "id": "game:android:apiKey:export",
1545
+ "pluginAlias": "shipthis",
1546
+ "pluginName": "shipthis",
1547
+ "pluginType": "core",
1548
+ "strict": true,
1549
+ "isESM": true,
1550
+ "relativePath": [
1551
+ "dist",
1552
+ "commands",
1553
+ "game",
1554
+ "android",
1555
+ "apiKey",
1556
+ "export.js"
1557
+ ]
1558
+ },
1559
+ "game:android:apiKey:import": {
1560
+ "aliases": [],
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.",
1569
+ "examples": [
1570
+ "<%= config.bin %> <%= command.id %>"
1571
+ ],
1572
+ "flags": {
1573
+ "gameId": {
1574
+ "char": "g",
1575
+ "description": "The ID of the game",
1576
+ "name": "gameId",
1577
+ "hasDynamicHelp": false,
1578
+ "multiple": false,
1579
+ "type": "option"
1580
+ },
1581
+ "force": {
1582
+ "char": "f",
1583
+ "name": "force",
1584
+ "allowNo": false,
1585
+ "type": "boolean"
1586
+ }
1587
+ },
1588
+ "hasDynamicHelp": false,
1589
+ "hiddenAliases": [],
1590
+ "id": "game:android:apiKey:import",
1591
+ "pluginAlias": "shipthis",
1592
+ "pluginName": "shipthis",
1593
+ "pluginType": "core",
1594
+ "strict": true,
1595
+ "isESM": true,
1596
+ "relativePath": [
1597
+ "dist",
1598
+ "commands",
1599
+ "game",
1600
+ "android",
1601
+ "apiKey",
1602
+ "import.js"
1603
+ ]
1604
+ },
1605
+ "game:android:apiKey:invite": {
1606
+ "aliases": [],
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.",
1615
+ "examples": [
1616
+ "<%= config.bin %> <%= command.id %>"
1617
+ ],
1618
+ "flags": {
1619
+ "gameId": {
1620
+ "char": "g",
1621
+ "description": "The ID of the game",
1622
+ "name": "gameId",
1623
+ "hasDynamicHelp": false,
1624
+ "multiple": false,
1625
+ "type": "option"
1626
+ },
1627
+ "prompt": {
1628
+ "char": "p",
1629
+ "description": "Prompt for the Google Play Account ID",
1630
+ "name": "prompt",
1631
+ "allowNo": false,
1632
+ "type": "boolean"
1633
+ },
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",
1645
+ "allowNo": false,
1646
+ "type": "boolean"
1647
+ }
1648
+ },
1649
+ "hasDynamicHelp": false,
1650
+ "hiddenAliases": [],
1651
+ "id": "game:android:apiKey:invite",
1652
+ "pluginAlias": "shipthis",
1653
+ "pluginName": "shipthis",
1654
+ "pluginType": "core",
1655
+ "strict": true,
1656
+ "isESM": true,
1657
+ "relativePath": [
1658
+ "dist",
1659
+ "commands",
1660
+ "game",
1661
+ "android",
1662
+ "apiKey",
1663
+ "invite.js"
1664
+ ]
1665
+ },
1666
+ "game:android:apiKey:status": {
1667
+ "aliases": [],
1668
+ "args": {},
1669
+ "description": "Displays the status of the Android Service Account API Key for a specific game.",
1670
+ "examples": [
1671
+ "<%= config.bin %> <%= command.id %>",
1672
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1673
+ ],
1674
+ "flags": {
1675
+ "gameId": {
1676
+ "char": "g",
1677
+ "description": "The ID of the game",
1678
+ "name": "gameId",
1679
+ "hasDynamicHelp": false,
1680
+ "multiple": false,
1681
+ "type": "option"
1682
+ }
1683
+ },
1684
+ "hasDynamicHelp": false,
1685
+ "hiddenAliases": [],
1686
+ "id": "game:android:apiKey:status",
1687
+ "pluginAlias": "shipthis",
1688
+ "pluginName": "shipthis",
1689
+ "pluginType": "core",
1690
+ "strict": true,
1691
+ "isESM": true,
1692
+ "relativePath": [
1693
+ "dist",
1694
+ "commands",
1695
+ "game",
1696
+ "android",
1697
+ "apiKey",
1698
+ "status.js"
1699
+ ]
1700
+ },
1701
+ "game:android:keyStore:create": {
1702
+ "aliases": [],
1703
+ "args": {},
1704
+ "description": "Creates a new Android Keystore for a game",
1705
+ "examples": [
1706
+ "<%= config.bin %> <%= command.id %>",
1707
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1708
+ ],
1709
+ "flags": {
1710
+ "gameId": {
1711
+ "char": "g",
1712
+ "description": "The ID of the game",
1713
+ "name": "gameId",
1714
+ "hasDynamicHelp": false,
1715
+ "multiple": false,
1716
+ "type": "option"
1717
+ },
1718
+ "force": {
1719
+ "char": "f",
1720
+ "name": "force",
1721
+ "allowNo": false,
1722
+ "type": "boolean"
1723
+ }
1724
+ },
1725
+ "hasDynamicHelp": false,
1726
+ "hiddenAliases": [],
1727
+ "id": "game:android:keyStore:create",
1728
+ "pluginAlias": "shipthis",
1729
+ "pluginName": "shipthis",
1730
+ "pluginType": "core",
1731
+ "strict": true,
1732
+ "isESM": true,
1733
+ "relativePath": [
1734
+ "dist",
1735
+ "commands",
1736
+ "game",
1737
+ "android",
1738
+ "keyStore",
1739
+ "create.js"
1740
+ ]
1741
+ },
1742
+ "game:android:keyStore:export": {
1743
+ "aliases": [],
1744
+ "args": {
1745
+ "file": {
1746
+ "description": "Name of the ZIP file to create",
1747
+ "name": "file",
1748
+ "required": true
1749
+ }
1750
+ },
1751
+ "description": "Saves the current Android Keystore to a ZIP file",
1752
+ "examples": [
1753
+ "<%= config.bin %> <%= command.id %> keyStore.zip"
1754
+ ],
1755
+ "flags": {
1756
+ "gameId": {
1757
+ "char": "g",
1758
+ "description": "The ID of the game",
1759
+ "name": "gameId",
1760
+ "hasDynamicHelp": false,
1761
+ "multiple": false,
1762
+ "type": "option"
1763
+ },
1764
+ "force": {
1765
+ "char": "f",
1766
+ "description": "Overwrite the file if it already exists",
1767
+ "name": "force",
1768
+ "allowNo": false,
1769
+ "type": "boolean"
1770
+ }
1771
+ },
1772
+ "hasDynamicHelp": false,
1773
+ "hiddenAliases": [],
1774
+ "id": "game:android:keyStore:export",
1106
1775
  "pluginAlias": "shipthis",
1107
1776
  "pluginName": "shipthis",
1108
1777
  "pluginType": "core",
@@ -1113,7 +1782,91 @@
1113
1782
  "dist",
1114
1783
  "commands",
1115
1784
  "game",
1116
- "ios",
1785
+ "android",
1786
+ "keyStore",
1787
+ "export.js"
1788
+ ]
1789
+ },
1790
+ "game:android:keyStore:import": {
1791
+ "aliases": [],
1792
+ "args": {
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
1797
+ }
1798
+ },
1799
+ "description": "Imports an Android Keystore to your ShipThis account for the specified game.",
1800
+ "examples": [
1801
+ "<%= config.bin %> <%= command.id %>"
1802
+ ],
1803
+ "flags": {
1804
+ "gameId": {
1805
+ "char": "g",
1806
+ "description": "The ID of the game",
1807
+ "name": "gameId",
1808
+ "hasDynamicHelp": false,
1809
+ "multiple": false,
1810
+ "type": "option"
1811
+ },
1812
+ "force": {
1813
+ "char": "f",
1814
+ "name": "force",
1815
+ "allowNo": false,
1816
+ "type": "boolean"
1817
+ }
1818
+ },
1819
+ "hasDynamicHelp": false,
1820
+ "hiddenAliases": [],
1821
+ "id": "game:android:keyStore:import",
1822
+ "pluginAlias": "shipthis",
1823
+ "pluginName": "shipthis",
1824
+ "pluginType": "core",
1825
+ "strict": true,
1826
+ "enableJsonFlag": false,
1827
+ "isESM": true,
1828
+ "relativePath": [
1829
+ "dist",
1830
+ "commands",
1831
+ "game",
1832
+ "android",
1833
+ "keyStore",
1834
+ "import.js"
1835
+ ]
1836
+ },
1837
+ "game:android:keyStore:status": {
1838
+ "aliases": [],
1839
+ "args": {},
1840
+ "description": "Displays the status of the Android Keystore for a specific game.",
1841
+ "examples": [
1842
+ "<%= config.bin %> <%= command.id %>",
1843
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1844
+ ],
1845
+ "flags": {
1846
+ "gameId": {
1847
+ "char": "g",
1848
+ "description": "The ID of the game",
1849
+ "name": "gameId",
1850
+ "hasDynamicHelp": false,
1851
+ "multiple": false,
1852
+ "type": "option"
1853
+ }
1854
+ },
1855
+ "hasDynamicHelp": false,
1856
+ "hiddenAliases": [],
1857
+ "id": "game:android:keyStore:status",
1858
+ "pluginAlias": "shipthis",
1859
+ "pluginName": "shipthis",
1860
+ "pluginType": "core",
1861
+ "strict": true,
1862
+ "enableJsonFlag": false,
1863
+ "isESM": true,
1864
+ "relativePath": [
1865
+ "dist",
1866
+ "commands",
1867
+ "game",
1868
+ "android",
1869
+ "keyStore",
1117
1870
  "status.js"
1118
1871
  ]
1119
1872
  },
@@ -1508,5 +2261,5 @@
1508
2261
  ]
1509
2262
  }
1510
2263
  },
1511
- "version": "0.0.40"
2264
+ "version": "0.1.0"
1512
2265
  }