@expo/eas-json 16.8.0 → 16.9.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/build/submit/schema.js
CHANGED
|
@@ -35,6 +35,7 @@ exports.UnresolvedIosSubmitProfileSchema = joi_1.default.object({
|
|
|
35
35
|
appName: joi_1.default.string(),
|
|
36
36
|
bundleIdentifier: joi_1.default.string(),
|
|
37
37
|
metadataPath: joi_1.default.string(),
|
|
38
|
+
groups: joi_1.default.array().items(joi_1.default.string()),
|
|
38
39
|
});
|
|
39
40
|
// more strict version after resolving all of the values
|
|
40
41
|
exports.ResolvedIosSubmitProfileSchema = joi_1.default.object({
|
|
@@ -62,6 +63,7 @@ exports.ResolvedIosSubmitProfileSchema = joi_1.default.object({
|
|
|
62
63
|
appName: joi_1.default.string(),
|
|
63
64
|
bundleIdentifier: joi_1.default.string(),
|
|
64
65
|
metadataPath: joi_1.default.string(),
|
|
66
|
+
groups: joi_1.default.array().items(joi_1.default.string()),
|
|
65
67
|
});
|
|
66
68
|
exports.UnresolvedSubmitProfileSchema = joi_1.default.object({
|
|
67
69
|
extends: joi_1.default.string(),
|
package/build/submit/types.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export interface IosSubmitProfile {
|
|
|
33
33
|
appName?: string;
|
|
34
34
|
bundleIdentifier?: string;
|
|
35
35
|
metadataPath?: string;
|
|
36
|
+
groups?: string[];
|
|
36
37
|
}
|
|
37
38
|
export declare const IosSubmitProfileFieldsToEvaluate: (keyof IosSubmitProfile)[];
|
|
38
39
|
export type SubmitProfile<TPlatform extends Platform = Platform> = TPlatform extends Platform.ANDROID ? AndroidSubmitProfile : IosSubmitProfile;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/eas-json",
|
|
3
3
|
"description": "A library for interacting with eas.json",
|
|
4
|
-
"version": "16.
|
|
4
|
+
"version": "16.9.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"node": "20.11.0",
|
|
55
55
|
"yarn": "1.22.21"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "67d85c202584bc701236a02f805a1abda0816311"
|
|
58
58
|
}
|