Socket
Socket
Sign inDemoInstall

@expo/eas-build-job

Package Overview
Dependencies
34
Maintainers
27
Versions
156
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.102 to 1.0.106

1

dist/android.d.ts

@@ -39,3 +39,2 @@ import Joi from 'joi';

buildProfile?: string;
releaseChannel?: string;
updates?: {

@@ -42,0 +41,0 @@ channel?: string;

3

dist/android.js

@@ -52,3 +52,2 @@ "use strict";

}),
releaseChannel: joi_1.default.string(),
updates: joi_1.default.object({

@@ -89,3 +88,3 @@ channel: joi_1.default.string(),

loggerLevel: joi_1.default.string().valid(...Object.values(logger_1.LoggerLevel)),
}).oxor('releaseChannel', 'updates.channel');
});
//# sourceMappingURL=android.js.map

@@ -48,6 +48,8 @@ import Joi from 'joi';

repositoryUrl: string;
/** A Git ref - points to a branch, tag, or commit. */
gitRef?: string;
/**
* Git commit hash, branch, or tag
* Git commit hash.
*/
gitRef: string;
gitCommitHash?: string;
};

@@ -58,11 +60,14 @@ export declare const ArchiveSourceSchema: Joi.ObjectSchema<ArchiveSource>;

repositoryUrl: z.ZodString;
gitRef: z.ZodString;
gitRef: z.ZodOptional<z.ZodString>;
gitCommitHash: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
type: ArchiveSourceType.GIT;
repositoryUrl: string;
gitRef: string;
gitRef?: string | undefined;
gitCommitHash?: string | undefined;
}, {
type: ArchiveSourceType.GIT;
repositoryUrl: string;
gitRef: string;
gitRef?: string | undefined;
gitCommitHash?: string | undefined;
}>, z.ZodObject<{

@@ -69,0 +74,0 @@ type: z.ZodLiteral<ArchiveSourceType.PATH>;

@@ -61,3 +61,4 @@ "use strict";

repositoryUrl: joi_1.default.string().required(),
gitRef: joi_1.default.string().required(),
gitCommitHash: joi_1.default.string().optional(),
gitRef: joi_1.default.string().optional(),
}),

@@ -75,3 +76,4 @@ })

repositoryUrl: zod_1.z.string().url(),
gitRef: zod_1.z.string(),
gitRef: zod_1.z.string().optional(),
gitCommitHash: zod_1.z.string().optional(),
}),

@@ -78,0 +80,0 @@ zod_1.z.object({

@@ -10,11 +10,14 @@ import { z } from 'zod';

repositoryUrl: z.ZodString;
gitRef: z.ZodString;
gitRef: z.ZodOptional<z.ZodString>;
gitCommitHash: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
type: import("./common").ArchiveSourceType.GIT;
repositoryUrl: string;
gitRef: string;
gitRef?: string | undefined;
gitCommitHash?: string | undefined;
}, {
type: import("./common").ArchiveSourceType.GIT;
repositoryUrl: string;
gitRef: string;
gitRef?: string | undefined;
gitCommitHash?: string | undefined;
}>, z.ZodObject<{

@@ -148,3 +151,4 @@ type: z.ZodLiteral<import("./common").ArchiveSourceType.PATH>;

repositoryUrl: string;
gitRef: string;
gitRef?: string | undefined;
gitCommitHash?: string | undefined;
} | {

@@ -194,3 +198,4 @@ type: import("./common").ArchiveSourceType.PATH;

repositoryUrl: string;
gitRef: string;
gitRef?: string | undefined;
gitCommitHash?: string | undefined;
} | {

@@ -197,0 +202,0 @@ type: import("./common").ArchiveSourceType.PATH;

@@ -43,3 +43,2 @@ import Joi from 'joi';

buildProfile?: string;
releaseChannel?: string;
updates?: {

@@ -46,0 +45,0 @@ channel?: string;

@@ -72,3 +72,2 @@ "use strict";

}),
releaseChannel: joi_1.default.string(),
updates: joi_1.default.object({

@@ -110,3 +109,3 @@ channel: joi_1.default.string(),

loggerLevel: joi_1.default.string().valid(...Object.values(logger_1.LoggerLevel)),
}).oxor('releaseChannel', 'updates.channel');
});
//# sourceMappingURL=ios.js.map

@@ -48,7 +48,2 @@ import Joi from 'joi';

/**
* Release channel (for classic expo-updates)
* It's undefined if the classic expo-updates package is not installed for the project.
*/
releaseChannel?: string;
/**
* Version of the react-native package used in the project.

@@ -55,0 +50,0 @@ */

@@ -21,3 +21,2 @@ "use strict";

reactNativeVersion: joi_1.default.string(),
releaseChannel: joi_1.default.string(),
channel: joi_1.default.string(),

@@ -24,0 +23,0 @@ appName: joi_1.default.string(),

{
"name": "@expo/eas-build-job",
"version": "1.0.102",
"version": "1.0.106",
"main": "dist/index.js",

@@ -38,3 +38,3 @@ "types": "dist/index.d.ts",

},
"gitHead": "8da53ea114899bc467ea153a7a4ce66c04fd9460"
"gitHead": "014500f7b697411d5cfa0dc2a1650d556e85c238"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc