New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@goldstack/infra

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@goldstack/infra - npm Package Compare versions

Comparing version

to
0.1.38

4

dist/infra.d.ts

@@ -1,6 +0,4 @@

export { Deployment, DeploymentName, InfrastructureConfiguration, } from './types/InfrastructureConfiguration';
export { Deployment, DeploymentName, DeploymentConfiguration, } from './types/InfrastructureConfiguration';
export { DeploymentState, DeploymentsState, } from './types/deploymentStatesTypes';
export * from './deploymentState';
import { InfrastructureConfiguration } from './types/InfrastructureConfiguration';
export declare const validateInfrastructureConfiguration: (infrastructure: any) => InfrastructureConfiguration;
//# sourceMappingURL=infra.d.ts.map

@@ -12,15 +12,4 @@ "use strict";

};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.validateInfrastructureConfiguration = void 0;
__exportStar(require("./deploymentState"), exports);
var infrastructureConfigurationSchema_json_1 = __importDefault(require("./schemas/infrastructureConfigurationSchema.json"));
var utils_config_1 = require("@goldstack/utils-config");
exports.validateInfrastructureConfiguration = function (
// eslint-disable-next-line @typescript-eslint/no-explicit-any
infrastructure) {
return utils_config_1.validateConfig(infrastructure, infrastructureConfigurationSchema_json_1.default);
};
//# sourceMappingURL=infra.js.map

@@ -9,19 +9,19 @@ /**

/**
* Configures a deployment.
* Specifies configuration for a specific deployment.
*
* @title Deployment
* @title Deployment Configuration
*/
export interface Deployment {
name: DeploymentName;
export interface DeploymentConfiguration {
[propName: string]: any;
}
/**
* Configures the infrastructure for the package.
* Configures a deployment.
*
* @title Infrastructure Configuration
* @title Deployment
*/
export interface InfrastructureConfiguration {
deployments: Deployment[];
export interface Deployment {
name: DeploymentName;
configuration: DeploymentConfiguration;
[propName: string]: any;
}
//# sourceMappingURL=InfrastructureConfiguration.d.ts.map
{
"name": "@goldstack/infra",
"version": "0.1.37",
"version": "0.1.38",
"description": "Utilities for defining infrastructure",

@@ -24,5 +24,5 @@ "license": "MIT",

"dependencies": {
"@goldstack/utils-config": "0.1.34",
"@goldstack/utils-log": "0.1.35",
"@goldstack/utils-sh": "0.1.34"
"@goldstack/utils-config": "0.1.35",
"@goldstack/utils-log": "0.1.36",
"@goldstack/utils-sh": "0.1.35"
},

@@ -29,0 +29,0 @@ "devDependencies": {

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