@jetify/client
Advanced tools
Comparing version 0.5.0-dev to 0.6.0-dev
'use strict'; | ||
var chunkPGNTG7NG_js = require('../chunk-PGNTG7NG.js'); | ||
require('../chunk-GU7UYX2L.js'); | ||
require('../chunk-3D5SPYTH.js'); | ||
var chunkVZOJ5E4G_js = require('../chunk-VZOJ5E4G.js'); | ||
require('../chunk-FMQF5PNA.js'); | ||
require('../chunk-6B7MTJH6.js'); | ||
@@ -11,5 +11,5 @@ | ||
enumerable: true, | ||
get: function () { return chunkPGNTG7NG_js.ApiClient; } | ||
get: function () { return chunkVZOJ5E4G_js.ApiClient; } | ||
}); | ||
//# sourceMappingURL=out.js.map | ||
//# sourceMappingURL=client.js.map |
'use strict'; | ||
require('../chunk-ZX5OIIJX.js'); | ||
var chunkPGNTG7NG_js = require('../chunk-PGNTG7NG.js'); | ||
require('../chunk-GU7UYX2L.js'); | ||
require('../chunk-3D5SPYTH.js'); | ||
var chunkVZOJ5E4G_js = require('../chunk-VZOJ5E4G.js'); | ||
require('../chunk-FMQF5PNA.js'); | ||
require('../chunk-6B7MTJH6.js'); | ||
@@ -12,5 +12,5 @@ | ||
enumerable: true, | ||
get: function () { return chunkPGNTG7NG_js.ApiClient; } | ||
get: function () { return chunkVZOJ5E4G_js.ApiClient; } | ||
}); | ||
//# sourceMappingURL=out.js.map | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
import { CreateSandboxRequest, CreateSandboxResponse, GetSandboxRequest, GetSandboxResponse, DeleteSandboxRequest, DeleteSandboxResponse, ListSandboxesRequest, ListSandboxesResponse } from './sandbox_pb.js'; | ||
import { CreateSandboxRequest, CreateSandboxResponse, GetSandboxRequest, GetSandboxResponse, DeleteSandboxRequest, DeleteSandboxResponse, ListSandboxesRequest, ListSandboxesResponse, StartSandboxRequest, StartSandboxResponse, StopSandboxRequest, StopSandboxResponse } from './sandbox_pb.js'; | ||
import { MethodKind, MethodIdempotency } from '@bufbuild/protobuf'; | ||
@@ -48,2 +48,26 @@ | ||
}; | ||
/** | ||
* Starts sandbox. If sandbox is already starting or running, it does nothing. | ||
* May return error if sandbox is stopping. | ||
* | ||
* @generated from rpc pub.sandbox.v1alpha1.SandboxService.StartSandbox | ||
*/ | ||
readonly startSandbox: { | ||
readonly name: "StartSandbox"; | ||
readonly I: typeof StartSandboxRequest; | ||
readonly O: typeof StartSandboxResponse; | ||
readonly kind: MethodKind.Unary; | ||
}; | ||
/** | ||
* Stops sandbox. If sandbox is already stopped, it does nothing. | ||
* May return error if sandbox is starting. | ||
* | ||
* @generated from rpc pub.sandbox.v1alpha1.SandboxService.StopSandbox | ||
*/ | ||
readonly stopSandbox: { | ||
readonly name: "StopSandbox"; | ||
readonly I: typeof StopSandboxRequest; | ||
readonly O: typeof StopSandboxResponse; | ||
readonly kind: MethodKind.Unary; | ||
}; | ||
}; | ||
@@ -50,0 +74,0 @@ }; |
'use strict'; | ||
var chunkGU7UYX2L_js = require('../../../../chunk-GU7UYX2L.js'); | ||
require('../../../../chunk-3D5SPYTH.js'); | ||
var chunkFMQF5PNA_js = require('../../../../chunk-FMQF5PNA.js'); | ||
require('../../../../chunk-6B7MTJH6.js'); | ||
@@ -10,5 +10,5 @@ | ||
enumerable: true, | ||
get: function () { return chunkGU7UYX2L_js.SandboxService; } | ||
get: function () { return chunkFMQF5PNA_js.SandboxService; } | ||
}); | ||
//# sourceMappingURL=out.js.map | ||
//# sourceMappingURL=sandbox_connect.js.map |
@@ -220,2 +220,70 @@ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage, Timestamp } from '@bufbuild/protobuf'; | ||
/** | ||
* @generated from message pub.sandbox.v1alpha1.StartSandboxRequest | ||
*/ | ||
declare class StartSandboxRequest extends Message<StartSandboxRequest> { | ||
/** | ||
* @generated from field: string id = 1; | ||
*/ | ||
id: string; | ||
constructor(data?: PartialMessage<StartSandboxRequest>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "pub.sandbox.v1alpha1.StartSandboxRequest"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StartSandboxRequest; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StartSandboxRequest; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StartSandboxRequest; | ||
static equals(a: StartSandboxRequest | PlainMessage<StartSandboxRequest> | undefined, b: StartSandboxRequest | PlainMessage<StartSandboxRequest> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message pub.sandbox.v1alpha1.StartSandboxResponse | ||
*/ | ||
declare class StartSandboxResponse extends Message<StartSandboxResponse> { | ||
/** | ||
* @generated from field: pub.sandbox.v1alpha1.Sandbox sandbox = 1; | ||
*/ | ||
sandbox?: Sandbox; | ||
constructor(data?: PartialMessage<StartSandboxResponse>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "pub.sandbox.v1alpha1.StartSandboxResponse"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StartSandboxResponse; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StartSandboxResponse; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StartSandboxResponse; | ||
static equals(a: StartSandboxResponse | PlainMessage<StartSandboxResponse> | undefined, b: StartSandboxResponse | PlainMessage<StartSandboxResponse> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message pub.sandbox.v1alpha1.StopSandboxRequest | ||
*/ | ||
declare class StopSandboxRequest extends Message<StopSandboxRequest> { | ||
/** | ||
* @generated from field: string id = 1; | ||
*/ | ||
id: string; | ||
constructor(data?: PartialMessage<StopSandboxRequest>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "pub.sandbox.v1alpha1.StopSandboxRequest"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StopSandboxRequest; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StopSandboxRequest; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StopSandboxRequest; | ||
static equals(a: StopSandboxRequest | PlainMessage<StopSandboxRequest> | undefined, b: StopSandboxRequest | PlainMessage<StopSandboxRequest> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message pub.sandbox.v1alpha1.StopSandboxResponse | ||
*/ | ||
declare class StopSandboxResponse extends Message<StopSandboxResponse> { | ||
/** | ||
* @generated from field: pub.sandbox.v1alpha1.Sandbox sandbox = 1; | ||
*/ | ||
sandbox?: Sandbox; | ||
constructor(data?: PartialMessage<StopSandboxResponse>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "pub.sandbox.v1alpha1.StopSandboxResponse"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StopSandboxResponse; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StopSandboxResponse; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StopSandboxResponse; | ||
static equals(a: StopSandboxResponse | PlainMessage<StopSandboxResponse> | undefined, b: StopSandboxResponse | PlainMessage<StopSandboxResponse> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message pub.sandbox.v1alpha1.Sandbox | ||
@@ -290,2 +358,2 @@ */ | ||
export { CreateSandboxRequest, CreateSandboxResponse, DeleteSandboxRequest, DeleteSandboxResponse, GetSandboxRequest, GetSandboxResponse, ListSandboxesRequest, ListSandboxesResponse, Sandbox, SandboxState }; | ||
export { CreateSandboxRequest, CreateSandboxResponse, DeleteSandboxRequest, DeleteSandboxResponse, GetSandboxRequest, GetSandboxResponse, ListSandboxesRequest, ListSandboxesResponse, Sandbox, SandboxState, StartSandboxRequest, StartSandboxResponse, StopSandboxRequest, StopSandboxResponse }; |
'use strict'; | ||
var chunk3D5SPYTH_js = require('../../../../chunk-3D5SPYTH.js'); | ||
var chunk6B7MTJH6_js = require('../../../../chunk-6B7MTJH6.js'); | ||
@@ -9,41 +9,57 @@ | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.CreateSandboxRequest; } | ||
get: function () { return chunk6B7MTJH6_js.CreateSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'CreateSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.CreateSandboxResponse; } | ||
get: function () { return chunk6B7MTJH6_js.CreateSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'DeleteSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.DeleteSandboxRequest; } | ||
get: function () { return chunk6B7MTJH6_js.DeleteSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'DeleteSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.DeleteSandboxResponse; } | ||
get: function () { return chunk6B7MTJH6_js.DeleteSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'GetSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.GetSandboxRequest; } | ||
get: function () { return chunk6B7MTJH6_js.GetSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'GetSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.GetSandboxResponse; } | ||
get: function () { return chunk6B7MTJH6_js.GetSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'ListSandboxesRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.ListSandboxesRequest; } | ||
get: function () { return chunk6B7MTJH6_js.ListSandboxesRequest; } | ||
}); | ||
Object.defineProperty(exports, 'ListSandboxesResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.ListSandboxesResponse; } | ||
get: function () { return chunk6B7MTJH6_js.ListSandboxesResponse; } | ||
}); | ||
Object.defineProperty(exports, 'Sandbox', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.Sandbox; } | ||
get: function () { return chunk6B7MTJH6_js.Sandbox; } | ||
}); | ||
Object.defineProperty(exports, 'SandboxState', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.SandboxState; } | ||
get: function () { return chunk6B7MTJH6_js.SandboxState; } | ||
}); | ||
Object.defineProperty(exports, 'StartSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StartSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'StartSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StartSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'StopSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StopSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'StopSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StopSandboxResponse; } | ||
}); | ||
//# sourceMappingURL=out.js.map | ||
//# sourceMappingURL=sandbox_pb.js.map |
export { SandboxService } from './gen/pub/sandbox/v1alpha1/sandbox_connect.js'; | ||
export { CreateSandboxRequest, CreateSandboxResponse, DeleteSandboxRequest, DeleteSandboxResponse, GetSandboxRequest, GetSandboxResponse, ListSandboxesRequest, ListSandboxesResponse, Sandbox, SandboxState } from './gen/pub/sandbox/v1alpha1/sandbox_pb.js'; | ||
export { CreateSandboxRequest, CreateSandboxResponse, DeleteSandboxRequest, DeleteSandboxResponse, GetSandboxRequest, GetSandboxResponse, ListSandboxesRequest, ListSandboxesResponse, Sandbox, SandboxState, StartSandboxRequest, StartSandboxResponse, StopSandboxRequest, StopSandboxResponse } from './gen/pub/sandbox/v1alpha1/sandbox_pb.js'; | ||
export { ApiClient } from './client/client.js'; | ||
import '@bufbuild/protobuf'; | ||
import '@connectrpc/connect'; |
'use strict'; | ||
require('./chunk-ZX5OIIJX.js'); | ||
var chunkPGNTG7NG_js = require('./chunk-PGNTG7NG.js'); | ||
var chunkGU7UYX2L_js = require('./chunk-GU7UYX2L.js'); | ||
var chunk3D5SPYTH_js = require('./chunk-3D5SPYTH.js'); | ||
var chunkVZOJ5E4G_js = require('./chunk-VZOJ5E4G.js'); | ||
var chunkFMQF5PNA_js = require('./chunk-FMQF5PNA.js'); | ||
var chunk6B7MTJH6_js = require('./chunk-6B7MTJH6.js'); | ||
@@ -12,49 +12,65 @@ | ||
enumerable: true, | ||
get: function () { return chunkPGNTG7NG_js.ApiClient; } | ||
get: function () { return chunkVZOJ5E4G_js.ApiClient; } | ||
}); | ||
Object.defineProperty(exports, 'SandboxService', { | ||
enumerable: true, | ||
get: function () { return chunkGU7UYX2L_js.SandboxService; } | ||
get: function () { return chunkFMQF5PNA_js.SandboxService; } | ||
}); | ||
Object.defineProperty(exports, 'CreateSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.CreateSandboxRequest; } | ||
get: function () { return chunk6B7MTJH6_js.CreateSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'CreateSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.CreateSandboxResponse; } | ||
get: function () { return chunk6B7MTJH6_js.CreateSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'DeleteSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.DeleteSandboxRequest; } | ||
get: function () { return chunk6B7MTJH6_js.DeleteSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'DeleteSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.DeleteSandboxResponse; } | ||
get: function () { return chunk6B7MTJH6_js.DeleteSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'GetSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.GetSandboxRequest; } | ||
get: function () { return chunk6B7MTJH6_js.GetSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'GetSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.GetSandboxResponse; } | ||
get: function () { return chunk6B7MTJH6_js.GetSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'ListSandboxesRequest', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.ListSandboxesRequest; } | ||
get: function () { return chunk6B7MTJH6_js.ListSandboxesRequest; } | ||
}); | ||
Object.defineProperty(exports, 'ListSandboxesResponse', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.ListSandboxesResponse; } | ||
get: function () { return chunk6B7MTJH6_js.ListSandboxesResponse; } | ||
}); | ||
Object.defineProperty(exports, 'Sandbox', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.Sandbox; } | ||
get: function () { return chunk6B7MTJH6_js.Sandbox; } | ||
}); | ||
Object.defineProperty(exports, 'SandboxState', { | ||
enumerable: true, | ||
get: function () { return chunk3D5SPYTH_js.SandboxState; } | ||
get: function () { return chunk6B7MTJH6_js.SandboxState; } | ||
}); | ||
Object.defineProperty(exports, 'StartSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StartSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'StartSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StartSandboxResponse; } | ||
}); | ||
Object.defineProperty(exports, 'StopSandboxRequest', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StopSandboxRequest; } | ||
}); | ||
Object.defineProperty(exports, 'StopSandboxResponse', { | ||
enumerable: true, | ||
get: function () { return chunk6B7MTJH6_js.StopSandboxResponse; } | ||
}); | ||
//# sourceMappingURL=out.js.map | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@jetify/client", | ||
"version": "0.5.0-dev", | ||
"version": "0.6.0-dev", | ||
"description": "Jetify client library for Node.js and the browser", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
154515
2053