eas-cli 13.0.0 → 13.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.
- package/README.md +63 -63
- package/build/build/build.js +50 -5
- package/build/build/metadata.d.ts +2 -1
- package/build/build/metadata.js +4 -3
- package/build/build/utils/url.d.ts +1 -0
- package/build/build/utils/url.js +5 -1
- package/build/commands/update/index.js +1 -1
- package/build/commands/workflow/run.d.ts +21 -0
- package/build/commands/workflow/run.js +91 -0
- package/build/commands/workflow/validate.d.ts +11 -0
- package/build/commands/workflow/validate.js +87 -0
- package/build/graphql/generated.d.ts +297 -44
- package/build/graphql/generated.js +72 -31
- package/build/graphql/mutations/UploadSessionMutation.d.ts +5 -1
- package/build/graphql/mutations/UploadSessionMutation.js +18 -0
- package/build/graphql/mutations/WorkflowRunMutation.d.ts +11 -0
- package/build/graphql/mutations/WorkflowRunMutation.js +36 -0
- package/build/metadata/apple/config/reader.js +6 -4
- package/build/metadata/apple/config/writer.d.ts +1 -1
- package/build/metadata/apple/config/writer.js +7 -4
- package/build/metadata/apple/types.d.ts +1 -1
- package/build/project/maybeUploadFingerprintAsync.d.ts +3 -3
- package/build/project/maybeUploadFingerprintAsync.js +5 -5
- package/build/project/uploadAccountScopedEasJsonAsync.d.ts +12 -0
- package/build/project/uploadAccountScopedEasJsonAsync.js +34 -0
- package/build/project/uploadAccountScopedProjectSourceAsync.d.ts +13 -0
- package/build/project/uploadAccountScopedProjectSourceAsync.js +48 -0
- package/build/uploads.d.ts +7 -1
- package/build/uploads.js +7 -1
- package/build/utils/fingerprintCli.d.ts +12 -0
- package/build/utils/fingerprintCli.js +26 -0
- package/build/utils/progress.js +2 -1
- package/oclif.manifest.json +51 -1
- package/package.json +4 -3
- package/schema/metadata-0.json +53 -18
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "13.
|
|
2
|
+
"version": "13.1.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -3807,6 +3807,56 @@
|
|
|
3807
3807
|
"loggedIn": {}
|
|
3808
3808
|
}
|
|
3809
3809
|
},
|
|
3810
|
+
"workflow:run": {
|
|
3811
|
+
"id": "workflow:run",
|
|
3812
|
+
"description": "Run an EAS workflow",
|
|
3813
|
+
"strict": true,
|
|
3814
|
+
"pluginName": "eas-cli",
|
|
3815
|
+
"pluginAlias": "eas-cli",
|
|
3816
|
+
"pluginType": "core",
|
|
3817
|
+
"hidden": true,
|
|
3818
|
+
"state": "beta",
|
|
3819
|
+
"aliases": [],
|
|
3820
|
+
"flags": {
|
|
3821
|
+
"non-interactive": {
|
|
3822
|
+
"name": "non-interactive",
|
|
3823
|
+
"type": "boolean",
|
|
3824
|
+
"description": "Run the command in non-interactive mode.",
|
|
3825
|
+
"allowNo": false
|
|
3826
|
+
}
|
|
3827
|
+
},
|
|
3828
|
+
"args": {
|
|
3829
|
+
"file": {
|
|
3830
|
+
"name": "file",
|
|
3831
|
+
"description": "Path to the workflow file to run"
|
|
3832
|
+
}
|
|
3833
|
+
},
|
|
3834
|
+
"contextDefinition": {
|
|
3835
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3836
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3837
|
+
"projectDir": {},
|
|
3838
|
+
"vcsClient": {},
|
|
3839
|
+
"loggedIn": {}
|
|
3840
|
+
}
|
|
3841
|
+
},
|
|
3842
|
+
"workflow:validate": {
|
|
3843
|
+
"id": "workflow:validate",
|
|
3844
|
+
"description": "validate a workflow configuration yaml file",
|
|
3845
|
+
"strict": true,
|
|
3846
|
+
"pluginName": "eas-cli",
|
|
3847
|
+
"pluginAlias": "eas-cli",
|
|
3848
|
+
"pluginType": "core",
|
|
3849
|
+
"hidden": true,
|
|
3850
|
+
"aliases": [],
|
|
3851
|
+
"flags": {},
|
|
3852
|
+
"args": {
|
|
3853
|
+
"path": {
|
|
3854
|
+
"name": "path",
|
|
3855
|
+
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
3856
|
+
"required": true
|
|
3857
|
+
}
|
|
3858
|
+
}
|
|
3859
|
+
},
|
|
3810
3860
|
"build:version:get": {
|
|
3811
3861
|
"id": "build:version:get",
|
|
3812
3862
|
"description": "get the latest version from EAS servers",
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.1.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@expo/apple-utils": "2.0
|
|
11
|
+
"@expo/apple-utils": "2.1.0",
|
|
12
12
|
"@expo/code-signing-certificates": "0.0.5",
|
|
13
13
|
"@expo/config": "9.0.4",
|
|
14
14
|
"@expo/config-plugins": "8.0.10",
|
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
"untildify": "4.0.0",
|
|
87
87
|
"uuid": "9.0.1",
|
|
88
88
|
"wrap-ansi": "7.0.0",
|
|
89
|
+
"yaml": "2.6.0",
|
|
89
90
|
"zod": "^3.23.8"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
@@ -227,5 +228,5 @@
|
|
|
227
228
|
"node": "20.11.0",
|
|
228
229
|
"yarn": "1.22.21"
|
|
229
230
|
},
|
|
230
|
-
"gitHead": "
|
|
231
|
+
"gitHead": "b0b14788dd721a78a578712fd0a8e31b4d08953c"
|
|
231
232
|
}
|
package/schema/metadata-0.json
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-06/schema",
|
|
3
3
|
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"configVersion": {
|
|
6
|
+
"enum": [0],
|
|
7
|
+
"description": "The EAS metadata store configuration version"
|
|
8
|
+
},
|
|
9
|
+
"apple": {
|
|
10
|
+
"$ref": "#/definitions/AppleConfig"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"additionalProperties": false,
|
|
14
|
+
"required": [
|
|
15
|
+
"configVersion",
|
|
16
|
+
"apple"
|
|
17
|
+
],
|
|
4
18
|
"definitions": {
|
|
5
19
|
"apple": {
|
|
6
20
|
"AppleKidsAge": {
|
|
@@ -323,7 +337,8 @@
|
|
|
323
337
|
"gambling",
|
|
324
338
|
"unrestrictedWebAccess",
|
|
325
339
|
"kidsAgeBand",
|
|
326
|
-
"
|
|
340
|
+
"ageRatingOverride",
|
|
341
|
+
"koreaAgeRatingOverride"
|
|
327
342
|
],
|
|
328
343
|
"defaultSnippets": [
|
|
329
344
|
{
|
|
@@ -345,7 +360,9 @@
|
|
|
345
360
|
"gambling": false,
|
|
346
361
|
"unrestrictedWebAccess": false,
|
|
347
362
|
"kidsAgeBand": null,
|
|
348
|
-
"
|
|
363
|
+
"ageRatingOverride": "NONE",
|
|
364
|
+
"koreaAgeRatingOverride": "NONE",
|
|
365
|
+
"lootBox": false
|
|
349
366
|
}
|
|
350
367
|
},
|
|
351
368
|
{
|
|
@@ -367,7 +384,9 @@
|
|
|
367
384
|
"unrestrictedWebAccess": false,
|
|
368
385
|
"gambling": false,
|
|
369
386
|
"kidsAgeBand": null,
|
|
370
|
-
"
|
|
387
|
+
"ageRatingOverride": "${13|NONE,SEVENTEEN_PLUS,UNRATED|}",
|
|
388
|
+
"koreaAgeRatingOverride": "${14|NONE,FIFTEEN_PLUS,NINETEEN_PLUS|}",
|
|
389
|
+
"lootBox": false
|
|
371
390
|
}
|
|
372
391
|
}
|
|
373
392
|
],
|
|
@@ -442,8 +461,24 @@
|
|
|
442
461
|
},
|
|
443
462
|
"seventeenPlus": {
|
|
444
463
|
"type": "boolean",
|
|
464
|
+
"deprecated": true,
|
|
465
|
+
"deprecationMessage": "This property is deprecated, use `ageRatingOverride` instead.",
|
|
445
466
|
"description": "If your app rates 12+ or lower, and you believe its content may not be suitable for children under 17, you can manually set the age rating to 17+.\n@see https://help.apple.com/app-store-connect/#/dev599d50efb",
|
|
446
467
|
"markdownDescription": "If your app rates 12+ or lower, and you believe its content may not be suitable for children under 17, you can manually set the age rating to 17+.\n\n[Learn more](https://help.apple.com/app-store-connect/#/dev599d50efb)"
|
|
468
|
+
},
|
|
469
|
+
"ageRatingOverride": {
|
|
470
|
+
"$ref": "#/definitions/apple/AppleAgeRatingOverride",
|
|
471
|
+
"description": "If your app rates 12+ or lower, and you believe its content may not be suitable for children under 17, you can manually set the age rating to 17+.\n\nIf your app will be distributed through alternative app marketplaces or websites in the European Union and you believe your app is [Unrated](https://developer.apple.com/help/app-store-connect/reference/age-ratings), set this to `UNRATED`.\n\n@see https://help.apple.com/app-store-connect/#/dev599d50efb",
|
|
472
|
+
"markdownDescription": "If your app rates 12+ or lower, and you believe its content may not be suitable for children under 17, you can manually set the age rating to 17+.\n\nIf your app will be distributed through alternative app marketplaces or websites in the European Union and you believe your app is [Unrated](https://developer.apple.com/help/app-store-connect/reference/age-ratings), set this to `UNRATED`.\n\n[Learn more](https://help.apple.com/app-store-connect/#/dev599d50efb)"
|
|
473
|
+
},
|
|
474
|
+
"koreaAgeRatingOverride": {
|
|
475
|
+
"$ref": "#/definitions/apple/AppleKoreaAgeRatingOverride",
|
|
476
|
+
"description": "If your app rates 12+ or lower, and you believe its content may not be suitable for children under 15 or 19, you can manually set the age rating to 15+ or 19+.\n\nIf your app will be distributed through alternative app marketplaces or websites in the European Union and you believe your app is [Unrated](https://developer.apple.com/help/app-store-connect/reference/age-ratings), set this to `UNRATED`.\n\n@see https://help.apple.com/app-store-connect/#/dev599d50efb",
|
|
477
|
+
"markdownDescription": "If your app rates 12+ or lower, and you believe its content may not be suitable for children under 15 or 19, you can manually set the age rating to 15+ or 19+.\n\nIf your app will be distributed through alternative app marketplaces or websites in the European Union and you believe your app is [Unrated](https://developer.apple.com/help/app-store-connect/reference/age-ratings), set this to `UNRATED`.\n\n[Learn more](https://help.apple.com/app-store-connect/#/dev599d50efb)"
|
|
478
|
+
},
|
|
479
|
+
"lootBox": {
|
|
480
|
+
"type": "boolean",
|
|
481
|
+
"description": "Does your app contain purchasable loot boxes? These virtual containers provide players with in-game items, including functional cards or cosmetic modifications, based on random chance."
|
|
447
482
|
}
|
|
448
483
|
}
|
|
449
484
|
},
|
|
@@ -565,6 +600,20 @@
|
|
|
565
600
|
"maxLength": 4000
|
|
566
601
|
}
|
|
567
602
|
}
|
|
603
|
+
},
|
|
604
|
+
"AppleAgeRatingOverride": {
|
|
605
|
+
"enum": [
|
|
606
|
+
"NONE",
|
|
607
|
+
"SEVENTEEN_PLUS",
|
|
608
|
+
"UNRATED"
|
|
609
|
+
]
|
|
610
|
+
},
|
|
611
|
+
"AppleKoreaAgeRatingOverride": {
|
|
612
|
+
"enum": [
|
|
613
|
+
"NONE",
|
|
614
|
+
"FIFTEEN_PLUS",
|
|
615
|
+
"NINETEEN_PLUS"
|
|
616
|
+
]
|
|
568
617
|
}
|
|
569
618
|
},
|
|
570
619
|
"AppleConfig": {
|
|
@@ -775,19 +824,5 @@
|
|
|
775
824
|
}
|
|
776
825
|
}
|
|
777
826
|
}
|
|
778
|
-
}
|
|
779
|
-
"properties": {
|
|
780
|
-
"configVersion": {
|
|
781
|
-
"enum": [0],
|
|
782
|
-
"description": "The EAS metadata store configuration version"
|
|
783
|
-
},
|
|
784
|
-
"apple": {
|
|
785
|
-
"$ref": "#/definitions/AppleConfig"
|
|
786
|
-
}
|
|
787
|
-
},
|
|
788
|
-
"additionalProperties": false,
|
|
789
|
-
"required": [
|
|
790
|
-
"configVersion",
|
|
791
|
-
"apple"
|
|
792
|
-
]
|
|
827
|
+
}
|
|
793
828
|
}
|