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

@spinnaker/appengine

Package Overview
Dependencies
Maintainers
18
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spinnaker/appengine - npm Package Compare versions

Comparing version 0.0.22 to 0.0.23

2

lib/loadBalancer/transformer.d.ts
/// <reference types="angular" />
/// <reference types="spinnaker" />
/// <reference types="./types" />
import { Application, ILoadBalancer, ILoadBalancerUpsertCommand } from '@spinnaker/core';

@@ -4,0 +4,0 @@ import { IAppengineLoadBalancer, IAppengineTrafficSplit, ShardBy } from 'appengine/domain/index';

@@ -1,2 +0,2 @@

/// <reference types="spinnaker" />
/// <reference types="./types" />
import { IQService } from 'angular';

@@ -3,0 +3,0 @@ import { Application, IArtifact, IExpectedArtifact, IPipeline, IStage, IArtifactAccountPair } from '@spinnaker/core';

@@ -1,10 +0,8 @@

/// <reference types="angular" />
/// <reference types="spinnaker" />
import { Application, ITask } from '@spinnaker/core';
import { IAppengineServerGroup } from 'appengine/domain/index';
export declare class AppengineServerGroupWriter {
startServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask>;
stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask>;
startServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask>;
stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask>;
private buildJob;
}
export declare const APPENGINE_SERVER_GROUP_WRITER = "spinnaker.appengine.serverGroup.write.service";
{
"name": "@spinnaker/appengine",
"license": "Apache-2.0",
"version": "0.0.22",
"version": "0.0.23",
"main": "lib/lib.js",

@@ -6,0 +6,0 @@ "typings": "lib/index.d.ts",

@@ -15,3 +15,3 @@ import { module } from 'angular';

export class AppengineServerGroupWriter {
public startServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask> {
public startServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask> {
const job = this.buildJob(serverGroup, application, 'startAppEngineServerGroup');

@@ -28,3 +28,3 @@

public stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask> {
public stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask> {
const job = this.buildJob(serverGroup, application, 'stopAppEngineServerGroup');

@@ -31,0 +31,0 @@

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