@expo/eas-json 0.53.0 → 0.53.1
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 +1 -0
- package/build/submit/types.d.ts +1 -0
- package/package.json +2 -2
- package/src/submit/schema.ts +1 -0
- package/src/submit/types.ts +1 -0
package/build/submit/schema.js
CHANGED
|
@@ -27,6 +27,7 @@ exports.IosSubmitProfileSchema = joi_1.default.object({
|
|
|
27
27
|
companyName: joi_1.default.string(),
|
|
28
28
|
appName: joi_1.default.string(),
|
|
29
29
|
bundleIdentifier: joi_1.default.string(),
|
|
30
|
+
metadataPath: joi_1.default.string(),
|
|
30
31
|
});
|
|
31
32
|
exports.SubmitProfileSchema = joi_1.default.object({
|
|
32
33
|
extends: joi_1.default.string(),
|
package/build/submit/types.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export interface IosSubmitProfile {
|
|
|
31
31
|
companyName?: string;
|
|
32
32
|
appName?: string;
|
|
33
33
|
bundleIdentifier?: string;
|
|
34
|
+
metadataPath?: string;
|
|
34
35
|
}
|
|
35
36
|
export declare const IosSubmitProfileFieldsToEvaluate: (keyof IosSubmitProfile)[];
|
|
36
37
|
export declare 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": "0.53.
|
|
4
|
+
"version": "0.53.1",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "3610eee2b5c264fca79f15a8480bbed6ac8a34b2"
|
|
43
43
|
}
|
package/src/submit/schema.ts
CHANGED
package/src/submit/types.ts
CHANGED