@superblocksteam/sabs-types-js 0.696.0 → 0.698.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// package: liveedit.v2
|
|
2
|
+
// file: liveedit/v2/service.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as grpc from "@grpc/grpc-js";
|
|
8
|
+
import * as liveedit_v2_service_pb from "../../liveedit/v2/service_pb";
|
|
9
|
+
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
10
|
+
import * as protoc_gen_openapiv2_options_annotations_pb from "../../protoc-gen-openapiv2/options/annotations_pb";
|
|
11
|
+
|
|
12
|
+
interface ILiveEditServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
|
13
|
+
ensureLiveEdit: ILiveEditServiceService_IEnsureLiveEdit;
|
|
14
|
+
getLiveEdit: ILiveEditServiceService_IGetLiveEdit;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
interface ILiveEditServiceService_IEnsureLiveEdit extends grpc.MethodDefinition<liveedit_v2_service_pb.EnsureLiveEditRequest, liveedit_v2_service_pb.EnsureLiveEditResponse> {
|
|
18
|
+
path: "/liveedit.v2.LiveEditService/EnsureLiveEdit";
|
|
19
|
+
requestStream: false;
|
|
20
|
+
responseStream: false;
|
|
21
|
+
requestSerialize: grpc.serialize<liveedit_v2_service_pb.EnsureLiveEditRequest>;
|
|
22
|
+
requestDeserialize: grpc.deserialize<liveedit_v2_service_pb.EnsureLiveEditRequest>;
|
|
23
|
+
responseSerialize: grpc.serialize<liveedit_v2_service_pb.EnsureLiveEditResponse>;
|
|
24
|
+
responseDeserialize: grpc.deserialize<liveedit_v2_service_pb.EnsureLiveEditResponse>;
|
|
25
|
+
}
|
|
26
|
+
interface ILiveEditServiceService_IGetLiveEdit extends grpc.MethodDefinition<liveedit_v2_service_pb.GetLiveEditRequest, liveedit_v2_service_pb.GetLiveEditResponse> {
|
|
27
|
+
path: "/liveedit.v2.LiveEditService/GetLiveEdit";
|
|
28
|
+
requestStream: false;
|
|
29
|
+
responseStream: false;
|
|
30
|
+
requestSerialize: grpc.serialize<liveedit_v2_service_pb.GetLiveEditRequest>;
|
|
31
|
+
requestDeserialize: grpc.deserialize<liveedit_v2_service_pb.GetLiveEditRequest>;
|
|
32
|
+
responseSerialize: grpc.serialize<liveedit_v2_service_pb.GetLiveEditResponse>;
|
|
33
|
+
responseDeserialize: grpc.deserialize<liveedit_v2_service_pb.GetLiveEditResponse>;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const LiveEditServiceService: ILiveEditServiceService;
|
|
37
|
+
|
|
38
|
+
export interface ILiveEditServiceServer extends grpc.UntypedServiceImplementation {
|
|
39
|
+
ensureLiveEdit: grpc.handleUnaryCall<liveedit_v2_service_pb.EnsureLiveEditRequest, liveedit_v2_service_pb.EnsureLiveEditResponse>;
|
|
40
|
+
getLiveEdit: grpc.handleUnaryCall<liveedit_v2_service_pb.GetLiveEditRequest, liveedit_v2_service_pb.GetLiveEditResponse>;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface ILiveEditServiceClient {
|
|
44
|
+
ensureLiveEdit(request: liveedit_v2_service_pb.EnsureLiveEditRequest, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.EnsureLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
45
|
+
ensureLiveEdit(request: liveedit_v2_service_pb.EnsureLiveEditRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.EnsureLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
46
|
+
ensureLiveEdit(request: liveedit_v2_service_pb.EnsureLiveEditRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.EnsureLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
47
|
+
getLiveEdit(request: liveedit_v2_service_pb.GetLiveEditRequest, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.GetLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
48
|
+
getLiveEdit(request: liveedit_v2_service_pb.GetLiveEditRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.GetLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
49
|
+
getLiveEdit(request: liveedit_v2_service_pb.GetLiveEditRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.GetLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export class LiveEditServiceClient extends grpc.Client implements ILiveEditServiceClient {
|
|
53
|
+
constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial<grpc.ClientOptions>);
|
|
54
|
+
public ensureLiveEdit(request: liveedit_v2_service_pb.EnsureLiveEditRequest, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.EnsureLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
55
|
+
public ensureLiveEdit(request: liveedit_v2_service_pb.EnsureLiveEditRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.EnsureLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
56
|
+
public ensureLiveEdit(request: liveedit_v2_service_pb.EnsureLiveEditRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.EnsureLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
57
|
+
public getLiveEdit(request: liveedit_v2_service_pb.GetLiveEditRequest, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.GetLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
58
|
+
public getLiveEdit(request: liveedit_v2_service_pb.GetLiveEditRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.GetLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
59
|
+
public getLiveEdit(request: liveedit_v2_service_pb.GetLiveEditRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: liveedit_v2_service_pb.GetLiveEditResponse) => void): grpc.ClientUnaryCall;
|
|
60
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
// GENERATED CODE -- DO NOT EDIT!
|
|
2
|
+
|
|
3
|
+
'use strict';
|
|
4
|
+
var grpc = require('@grpc/grpc-js');
|
|
5
|
+
var liveedit_v2_service_pb = require('../../liveedit/v2/service_pb.js');
|
|
6
|
+
var google_api_annotations_pb = require('../../google/api/annotations_pb.js');
|
|
7
|
+
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
8
|
+
var protoc$gen$openapiv2_options_annotations_pb = require('../../protoc-gen-openapiv2/options/annotations_pb.js');
|
|
9
|
+
|
|
10
|
+
function serialize_liveedit_v2_EnsureLiveEditRequest(arg) {
|
|
11
|
+
if (!(arg instanceof liveedit_v2_service_pb.EnsureLiveEditRequest)) {
|
|
12
|
+
throw new Error('Expected argument of type liveedit.v2.EnsureLiveEditRequest');
|
|
13
|
+
}
|
|
14
|
+
return Buffer.from(arg.serializeBinary());
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function deserialize_liveedit_v2_EnsureLiveEditRequest(buffer_arg) {
|
|
18
|
+
return liveedit_v2_service_pb.EnsureLiveEditRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function serialize_liveedit_v2_EnsureLiveEditResponse(arg) {
|
|
22
|
+
if (!(arg instanceof liveedit_v2_service_pb.EnsureLiveEditResponse)) {
|
|
23
|
+
throw new Error('Expected argument of type liveedit.v2.EnsureLiveEditResponse');
|
|
24
|
+
}
|
|
25
|
+
return Buffer.from(arg.serializeBinary());
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function deserialize_liveedit_v2_EnsureLiveEditResponse(buffer_arg) {
|
|
29
|
+
return liveedit_v2_service_pb.EnsureLiveEditResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function serialize_liveedit_v2_GetLiveEditRequest(arg) {
|
|
33
|
+
if (!(arg instanceof liveedit_v2_service_pb.GetLiveEditRequest)) {
|
|
34
|
+
throw new Error('Expected argument of type liveedit.v2.GetLiveEditRequest');
|
|
35
|
+
}
|
|
36
|
+
return Buffer.from(arg.serializeBinary());
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function deserialize_liveedit_v2_GetLiveEditRequest(buffer_arg) {
|
|
40
|
+
return liveedit_v2_service_pb.GetLiveEditRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function serialize_liveedit_v2_GetLiveEditResponse(arg) {
|
|
44
|
+
if (!(arg instanceof liveedit_v2_service_pb.GetLiveEditResponse)) {
|
|
45
|
+
throw new Error('Expected argument of type liveedit.v2.GetLiveEditResponse');
|
|
46
|
+
}
|
|
47
|
+
return Buffer.from(arg.serializeBinary());
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function deserialize_liveedit_v2_GetLiveEditResponse(buffer_arg) {
|
|
51
|
+
return liveedit_v2_service_pb.GetLiveEditResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
var LiveEditServiceService = exports.LiveEditServiceService = {
|
|
56
|
+
ensureLiveEdit: {
|
|
57
|
+
path: '/liveedit.v2.LiveEditService/EnsureLiveEdit',
|
|
58
|
+
requestStream: false,
|
|
59
|
+
responseStream: false,
|
|
60
|
+
requestType: liveedit_v2_service_pb.EnsureLiveEditRequest,
|
|
61
|
+
responseType: liveedit_v2_service_pb.EnsureLiveEditResponse,
|
|
62
|
+
requestSerialize: serialize_liveedit_v2_EnsureLiveEditRequest,
|
|
63
|
+
requestDeserialize: deserialize_liveedit_v2_EnsureLiveEditRequest,
|
|
64
|
+
responseSerialize: serialize_liveedit_v2_EnsureLiveEditResponse,
|
|
65
|
+
responseDeserialize: deserialize_liveedit_v2_EnsureLiveEditResponse,
|
|
66
|
+
},
|
|
67
|
+
getLiveEdit: {
|
|
68
|
+
path: '/liveedit.v2.LiveEditService/GetLiveEdit',
|
|
69
|
+
requestStream: false,
|
|
70
|
+
responseStream: false,
|
|
71
|
+
requestType: liveedit_v2_service_pb.GetLiveEditRequest,
|
|
72
|
+
responseType: liveedit_v2_service_pb.GetLiveEditResponse,
|
|
73
|
+
requestSerialize: serialize_liveedit_v2_GetLiveEditRequest,
|
|
74
|
+
requestDeserialize: deserialize_liveedit_v2_GetLiveEditRequest,
|
|
75
|
+
responseSerialize: serialize_liveedit_v2_GetLiveEditResponse,
|
|
76
|
+
responseDeserialize: deserialize_liveedit_v2_GetLiveEditResponse,
|
|
77
|
+
},
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
exports.LiveEditServiceClient = grpc.makeGenericClientConstructor(LiveEditServiceService);
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
// package: liveedit.v2
|
|
2
|
+
// file: liveedit/v2/service.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
8
|
+
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
9
|
+
import * as protoc_gen_openapiv2_options_annotations_pb from "../../protoc-gen-openapiv2/options/annotations_pb";
|
|
10
|
+
|
|
11
|
+
export class LiveEditSpec extends jspb.Message {
|
|
12
|
+
|
|
13
|
+
hasApplication(): boolean;
|
|
14
|
+
clearApplication(): void;
|
|
15
|
+
getApplication(): Application | undefined;
|
|
16
|
+
setApplication(value?: Application): LiveEditSpec;
|
|
17
|
+
getExpiresIn(): number;
|
|
18
|
+
setExpiresIn(value: number): LiveEditSpec;
|
|
19
|
+
getClientKey(): string;
|
|
20
|
+
setClientKey(value: string): LiveEditSpec;
|
|
21
|
+
|
|
22
|
+
serializeBinary(): Uint8Array;
|
|
23
|
+
toObject(includeInstance?: boolean): LiveEditSpec.AsObject;
|
|
24
|
+
static toObject(includeInstance: boolean, msg: LiveEditSpec): LiveEditSpec.AsObject;
|
|
25
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
26
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
27
|
+
static serializeBinaryToWriter(message: LiveEditSpec, writer: jspb.BinaryWriter): void;
|
|
28
|
+
static deserializeBinary(bytes: Uint8Array): LiveEditSpec;
|
|
29
|
+
static deserializeBinaryFromReader(message: LiveEditSpec, reader: jspb.BinaryReader): LiveEditSpec;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export namespace LiveEditSpec {
|
|
33
|
+
export type AsObject = {
|
|
34
|
+
application?: Application.AsObject,
|
|
35
|
+
expiresIn: number,
|
|
36
|
+
clientKey: string,
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export class LiveEdit extends jspb.Message {
|
|
41
|
+
getLiveEditId(): string;
|
|
42
|
+
setLiveEditId(value: string): LiveEdit;
|
|
43
|
+
getStatus(): LiveEditStatus;
|
|
44
|
+
setStatus(value: LiveEditStatus): LiveEdit;
|
|
45
|
+
getLiveEditUrl(): string;
|
|
46
|
+
setLiveEditUrl(value: string): LiveEdit;
|
|
47
|
+
|
|
48
|
+
hasApplication(): boolean;
|
|
49
|
+
clearApplication(): void;
|
|
50
|
+
getApplication(): Application | undefined;
|
|
51
|
+
setApplication(value?: Application): LiveEdit;
|
|
52
|
+
|
|
53
|
+
hasCreated(): boolean;
|
|
54
|
+
clearCreated(): void;
|
|
55
|
+
getCreated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
56
|
+
setCreated(value?: google_protobuf_timestamp_pb.Timestamp): LiveEdit;
|
|
57
|
+
|
|
58
|
+
hasUpdated(): boolean;
|
|
59
|
+
clearUpdated(): void;
|
|
60
|
+
getUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
61
|
+
setUpdated(value?: google_protobuf_timestamp_pb.Timestamp): LiveEdit;
|
|
62
|
+
getExpiresAt(): number;
|
|
63
|
+
setExpiresAt(value: number): LiveEdit;
|
|
64
|
+
|
|
65
|
+
serializeBinary(): Uint8Array;
|
|
66
|
+
toObject(includeInstance?: boolean): LiveEdit.AsObject;
|
|
67
|
+
static toObject(includeInstance: boolean, msg: LiveEdit): LiveEdit.AsObject;
|
|
68
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
69
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
70
|
+
static serializeBinaryToWriter(message: LiveEdit, writer: jspb.BinaryWriter): void;
|
|
71
|
+
static deserializeBinary(bytes: Uint8Array): LiveEdit;
|
|
72
|
+
static deserializeBinaryFromReader(message: LiveEdit, reader: jspb.BinaryReader): LiveEdit;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export namespace LiveEdit {
|
|
76
|
+
export type AsObject = {
|
|
77
|
+
liveEditId: string,
|
|
78
|
+
status: LiveEditStatus,
|
|
79
|
+
liveEditUrl: string,
|
|
80
|
+
application?: Application.AsObject,
|
|
81
|
+
created?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
82
|
+
updated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
83
|
+
expiresAt: number,
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export class EnsureLiveEditRequest extends jspb.Message {
|
|
88
|
+
|
|
89
|
+
hasSpec(): boolean;
|
|
90
|
+
clearSpec(): void;
|
|
91
|
+
getSpec(): LiveEditSpec | undefined;
|
|
92
|
+
setSpec(value?: LiveEditSpec): EnsureLiveEditRequest;
|
|
93
|
+
getSessionJwt(): string;
|
|
94
|
+
setSessionJwt(value: string): EnsureLiveEditRequest;
|
|
95
|
+
|
|
96
|
+
serializeBinary(): Uint8Array;
|
|
97
|
+
toObject(includeInstance?: boolean): EnsureLiveEditRequest.AsObject;
|
|
98
|
+
static toObject(includeInstance: boolean, msg: EnsureLiveEditRequest): EnsureLiveEditRequest.AsObject;
|
|
99
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
100
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
101
|
+
static serializeBinaryToWriter(message: EnsureLiveEditRequest, writer: jspb.BinaryWriter): void;
|
|
102
|
+
static deserializeBinary(bytes: Uint8Array): EnsureLiveEditRequest;
|
|
103
|
+
static deserializeBinaryFromReader(message: EnsureLiveEditRequest, reader: jspb.BinaryReader): EnsureLiveEditRequest;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export namespace EnsureLiveEditRequest {
|
|
107
|
+
export type AsObject = {
|
|
108
|
+
spec?: LiveEditSpec.AsObject,
|
|
109
|
+
sessionJwt: string,
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export class EnsureLiveEditResponse extends jspb.Message {
|
|
114
|
+
|
|
115
|
+
hasLiveEdit(): boolean;
|
|
116
|
+
clearLiveEdit(): void;
|
|
117
|
+
getLiveEdit(): LiveEdit | undefined;
|
|
118
|
+
setLiveEdit(value?: LiveEdit): EnsureLiveEditResponse;
|
|
119
|
+
getWasCreated(): boolean;
|
|
120
|
+
setWasCreated(value: boolean): EnsureLiveEditResponse;
|
|
121
|
+
|
|
122
|
+
serializeBinary(): Uint8Array;
|
|
123
|
+
toObject(includeInstance?: boolean): EnsureLiveEditResponse.AsObject;
|
|
124
|
+
static toObject(includeInstance: boolean, msg: EnsureLiveEditResponse): EnsureLiveEditResponse.AsObject;
|
|
125
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
126
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
127
|
+
static serializeBinaryToWriter(message: EnsureLiveEditResponse, writer: jspb.BinaryWriter): void;
|
|
128
|
+
static deserializeBinary(bytes: Uint8Array): EnsureLiveEditResponse;
|
|
129
|
+
static deserializeBinaryFromReader(message: EnsureLiveEditResponse, reader: jspb.BinaryReader): EnsureLiveEditResponse;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export namespace EnsureLiveEditResponse {
|
|
133
|
+
export type AsObject = {
|
|
134
|
+
liveEdit?: LiveEdit.AsObject,
|
|
135
|
+
wasCreated: boolean,
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export class GetLiveEditRequest extends jspb.Message {
|
|
140
|
+
getLiveEditId(): string;
|
|
141
|
+
setLiveEditId(value: string): GetLiveEditRequest;
|
|
142
|
+
|
|
143
|
+
serializeBinary(): Uint8Array;
|
|
144
|
+
toObject(includeInstance?: boolean): GetLiveEditRequest.AsObject;
|
|
145
|
+
static toObject(includeInstance: boolean, msg: GetLiveEditRequest): GetLiveEditRequest.AsObject;
|
|
146
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
147
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
148
|
+
static serializeBinaryToWriter(message: GetLiveEditRequest, writer: jspb.BinaryWriter): void;
|
|
149
|
+
static deserializeBinary(bytes: Uint8Array): GetLiveEditRequest;
|
|
150
|
+
static deserializeBinaryFromReader(message: GetLiveEditRequest, reader: jspb.BinaryReader): GetLiveEditRequest;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export namespace GetLiveEditRequest {
|
|
154
|
+
export type AsObject = {
|
|
155
|
+
liveEditId: string,
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export class GetLiveEditResponse extends jspb.Message {
|
|
160
|
+
|
|
161
|
+
hasLiveEdit(): boolean;
|
|
162
|
+
clearLiveEdit(): void;
|
|
163
|
+
getLiveEdit(): LiveEdit | undefined;
|
|
164
|
+
setLiveEdit(value?: LiveEdit): GetLiveEditResponse;
|
|
165
|
+
|
|
166
|
+
serializeBinary(): Uint8Array;
|
|
167
|
+
toObject(includeInstance?: boolean): GetLiveEditResponse.AsObject;
|
|
168
|
+
static toObject(includeInstance: boolean, msg: GetLiveEditResponse): GetLiveEditResponse.AsObject;
|
|
169
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
170
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
171
|
+
static serializeBinaryToWriter(message: GetLiveEditResponse, writer: jspb.BinaryWriter): void;
|
|
172
|
+
static deserializeBinary(bytes: Uint8Array): GetLiveEditResponse;
|
|
173
|
+
static deserializeBinaryFromReader(message: GetLiveEditResponse, reader: jspb.BinaryReader): GetLiveEditResponse;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export namespace GetLiveEditResponse {
|
|
177
|
+
export type AsObject = {
|
|
178
|
+
liveEdit?: LiveEdit.AsObject,
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export class Application extends jspb.Message {
|
|
183
|
+
getApplicationId(): string;
|
|
184
|
+
setApplicationId(value: string): Application;
|
|
185
|
+
getOrganizationId(): string;
|
|
186
|
+
setOrganizationId(value: string): Application;
|
|
187
|
+
getBranch(): string;
|
|
188
|
+
setBranch(value: string): Application;
|
|
189
|
+
|
|
190
|
+
hasTemplateName(): boolean;
|
|
191
|
+
clearTemplateName(): void;
|
|
192
|
+
getTemplateName(): string | undefined;
|
|
193
|
+
setTemplateName(value: string): Application;
|
|
194
|
+
|
|
195
|
+
serializeBinary(): Uint8Array;
|
|
196
|
+
toObject(includeInstance?: boolean): Application.AsObject;
|
|
197
|
+
static toObject(includeInstance: boolean, msg: Application): Application.AsObject;
|
|
198
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
199
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
200
|
+
static serializeBinaryToWriter(message: Application, writer: jspb.BinaryWriter): void;
|
|
201
|
+
static deserializeBinary(bytes: Uint8Array): Application;
|
|
202
|
+
static deserializeBinaryFromReader(message: Application, reader: jspb.BinaryReader): Application;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export namespace Application {
|
|
206
|
+
export type AsObject = {
|
|
207
|
+
applicationId: string,
|
|
208
|
+
organizationId: string,
|
|
209
|
+
branch: string,
|
|
210
|
+
templateName?: string,
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export enum LiveEditStatus {
|
|
215
|
+
LIVE_EDIT_STATUS_UNSPECIFIED = 0,
|
|
216
|
+
LIVE_EDIT_STATUS_STARTING = 1,
|
|
217
|
+
LIVE_EDIT_STATUS_ACTIVE = 2,
|
|
218
|
+
LIVE_EDIT_STATUS_TERMINATED = 3,
|
|
219
|
+
LIVE_EDIT_STATUS_UNKNOWN = 4,
|
|
220
|
+
LIVE_EDIT_STATUS_TERMINATING = 5,
|
|
221
|
+
}
|