Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@argos-ci/core

Package Overview
Dependencies
Maintainers
0
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@argos-ci/core - npm Package Compare versions

Comparing version 2.5.1 to 2.5.2-alpha.1

42

dist/index.d.ts

@@ -53,3 +53,3 @@ interface UploadParameters {

/** The number of parallel nodes being ran */
total: number;
total?: number;
/** The index of the parallel node */

@@ -79,3 +79,15 @@ index?: number;

id: string;
number: number;
status: "accepted" | "rejected" | "stable" | "diffDetected" | "expired" | "pending" | "progress" | "error" | "aborted";
url: string;
notification: {
description: string;
context: string;
github: {
state: "pending" | "error" | "success" | "failure";
};
gitlab: {
state: "pending" | "success" | "running" | "failed" | "canceled";
};
} | null;
};

@@ -96,2 +108,28 @@ screenshots: {

}>;
type FinalizeParameters = {
parallel?: {
nonce: string;
};
};
/**
* Finalize pending builds.
*/
declare function finalize(params: FinalizeParameters): Promise<{
builds: {
id: string;
number: number;
status: "accepted" | "rejected" | "stable" | "diffDetected" | "expired" | "pending" | "progress" | "error" | "aborted";
url: string;
notification: {
description: string;
context: string;
github: {
state: "pending" | "error" | "success" | "failure";
};
gitlab: {
state: "pending" | "success" | "running" | "failed" | "canceled";
};
} | null;
}[];
}>;
interface Config {

@@ -121,2 +159,2 @@ apiBaseUrl: string;

declare function readConfig(options?: Partial<Config>): Promise<Config>;
export { UploadParameters, upload, Config, readConfig };
export { UploadParameters, upload, FinalizeParameters, finalize, Config, readConfig };

8

package.json
{
"name": "@argos-ci/core",
"description": "Visual testing solution to avoid visual regression. The core component of Argos SDK that handles build creation.",
"version": "2.5.1",
"version": "2.5.2-alpha.1+fe38977",
"type": "module",

@@ -43,4 +43,4 @@ "main": "./dist/index.cjs",

"dependencies": {
"@argos-ci/api-client": "0.2.0",
"@argos-ci/util": "2.1.1",
"@argos-ci/api-client": "0.2.1-alpha.5+fe38977",
"@argos-ci/util": "2.1.2-alpha.5+fe38977",
"axios": "^1.7.4",

@@ -64,3 +64,3 @@ "convict": "^6.2.4",

},
"gitHead": "36dc00b48375b72a82aad17bc1465b8933e8e6a9"
"gitHead": "fe389774403ee2b9857c38c02531ed0e79d6a4fd"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc