@alis-build/ideate 1.945.967
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.
- package/alis/ideate/idea_grpc_pb.d.ts +1 -0
- package/alis/ideate/idea_grpc_pb.js +1 -0
- package/alis/ideate/idea_pb.d.ts +125 -0
- package/alis/ideate/idea_pb.js +938 -0
- package/alis/ideate/ideate_grpc_pb.d.ts +83 -0
- package/alis/ideate/ideate_grpc_pb.js +425 -0
- package/alis/ideate/ideate_grpc_web_pb.d.ts +166 -0
- package/alis/ideate/ideate_grpc_web_pb.js +822 -0
- package/alis/ideate/ideate_pb.d.ts +722 -0
- package/alis/ideate/ideate_pb.js +5788 -0
- package/alis/ideate/spec_grpc_pb.d.ts +1 -0
- package/alis/ideate/spec_grpc_pb.js +1 -0
- package/alis/ideate/spec_pb.d.ts +787 -0
- package/alis/ideate/spec_pb.js +6045 -0
- package/alis/ideate/stream_grpc_pb.d.ts +1 -0
- package/alis/ideate/stream_grpc_pb.js +1 -0
- package/alis/ideate/stream_pb.d.ts +82 -0
- package/alis/ideate/stream_pb.js +587 -0
- package/package.json +12 -0
|
@@ -0,0 +1,787 @@
|
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
|
+
|
|
3
|
+
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
|
|
4
|
+
import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb'; // proto import: "google/protobuf/field_mask.proto"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export class Spec extends jspb.Message {
|
|
8
|
+
getName(): string;
|
|
9
|
+
setName(value: string): Spec;
|
|
10
|
+
|
|
11
|
+
getTitle(): string;
|
|
12
|
+
setTitle(value: string): Spec;
|
|
13
|
+
|
|
14
|
+
getType(): Spec.Type;
|
|
15
|
+
setType(value: Spec.Type): Spec;
|
|
16
|
+
|
|
17
|
+
getIdea(): string;
|
|
18
|
+
setIdea(value: string): Spec;
|
|
19
|
+
|
|
20
|
+
getState(): Spec.State;
|
|
21
|
+
setState(value: Spec.State): Spec;
|
|
22
|
+
|
|
23
|
+
getFullRfp(): Spec.FullRfp | undefined;
|
|
24
|
+
setFullRfp(value?: Spec.FullRfp): Spec;
|
|
25
|
+
hasFullRfp(): boolean;
|
|
26
|
+
clearFullRfp(): Spec;
|
|
27
|
+
|
|
28
|
+
getIdeaBrief(): Spec.IdeaBrief | undefined;
|
|
29
|
+
setIdeaBrief(value?: Spec.IdeaBrief): Spec;
|
|
30
|
+
hasIdeaBrief(): boolean;
|
|
31
|
+
clearIdeaBrief(): Spec;
|
|
32
|
+
|
|
33
|
+
getUiDesign(): Spec.UiDesign | undefined;
|
|
34
|
+
setUiDesign(value?: Spec.UiDesign): Spec;
|
|
35
|
+
hasUiDesign(): boolean;
|
|
36
|
+
clearUiDesign(): Spec;
|
|
37
|
+
|
|
38
|
+
getAiPrototype(): Spec.AiPrototype | undefined;
|
|
39
|
+
setAiPrototype(value?: Spec.AiPrototype): Spec;
|
|
40
|
+
hasAiPrototype(): boolean;
|
|
41
|
+
clearAiPrototype(): Spec;
|
|
42
|
+
|
|
43
|
+
getIdeateSpec(): Spec.IdeateSpec | undefined;
|
|
44
|
+
setIdeateSpec(value?: Spec.IdeateSpec): Spec;
|
|
45
|
+
hasIdeateSpec(): boolean;
|
|
46
|
+
clearIdeateSpec(): Spec;
|
|
47
|
+
|
|
48
|
+
getBusinessCase(): Spec.BusinessCase | undefined;
|
|
49
|
+
setBusinessCase(value?: Spec.BusinessCase): Spec;
|
|
50
|
+
hasBusinessCase(): boolean;
|
|
51
|
+
clearBusinessCase(): Spec;
|
|
52
|
+
|
|
53
|
+
getCurrentProcess(): Spec.CurrentProcess | undefined;
|
|
54
|
+
setCurrentProcess(value?: Spec.CurrentProcess): Spec;
|
|
55
|
+
hasCurrentProcess(): boolean;
|
|
56
|
+
clearCurrentProcess(): Spec;
|
|
57
|
+
|
|
58
|
+
getJargon(): Spec.Jargon | undefined;
|
|
59
|
+
setJargon(value?: Spec.Jargon): Spec;
|
|
60
|
+
hasJargon(): boolean;
|
|
61
|
+
clearJargon(): Spec;
|
|
62
|
+
|
|
63
|
+
getTechnologyLandscape(): Spec.TechnologyLandscape | undefined;
|
|
64
|
+
setTechnologyLandscape(value?: Spec.TechnologyLandscape): Spec;
|
|
65
|
+
hasTechnologyLandscape(): boolean;
|
|
66
|
+
clearTechnologyLandscape(): Spec;
|
|
67
|
+
|
|
68
|
+
getPainPoints(): Spec.PainPoints | undefined;
|
|
69
|
+
setPainPoints(value?: Spec.PainPoints): Spec;
|
|
70
|
+
hasPainPoints(): boolean;
|
|
71
|
+
clearPainPoints(): Spec;
|
|
72
|
+
|
|
73
|
+
getStakeholderMap(): Spec.StakeholderMap | undefined;
|
|
74
|
+
setStakeholderMap(value?: Spec.StakeholderMap): Spec;
|
|
75
|
+
hasStakeholderMap(): boolean;
|
|
76
|
+
clearStakeholderMap(): Spec;
|
|
77
|
+
|
|
78
|
+
getFigmaMake(): Spec.FigmaMake | undefined;
|
|
79
|
+
setFigmaMake(value?: Spec.FigmaMake): Spec;
|
|
80
|
+
hasFigmaMake(): boolean;
|
|
81
|
+
clearFigmaMake(): Spec;
|
|
82
|
+
|
|
83
|
+
getGeminiEnterpriseCustomAgent(): Spec.GeminiEnterpriseCustomAgentSpec | undefined;
|
|
84
|
+
setGeminiEnterpriseCustomAgent(value?: Spec.GeminiEnterpriseCustomAgentSpec): Spec;
|
|
85
|
+
hasGeminiEnterpriseCustomAgent(): boolean;
|
|
86
|
+
clearGeminiEnterpriseCustomAgent(): Spec;
|
|
87
|
+
|
|
88
|
+
getAiStudio(): Spec.AiStudio | undefined;
|
|
89
|
+
setAiStudio(value?: Spec.AiStudio): Spec;
|
|
90
|
+
hasAiStudio(): boolean;
|
|
91
|
+
clearAiStudio(): Spec;
|
|
92
|
+
|
|
93
|
+
getSolutionFlowSpec(): Spec.SolutionFlowSpec | undefined;
|
|
94
|
+
setSolutionFlowSpec(value?: Spec.SolutionFlowSpec): Spec;
|
|
95
|
+
hasSolutionFlowSpec(): boolean;
|
|
96
|
+
clearSolutionFlowSpec(): Spec;
|
|
97
|
+
|
|
98
|
+
getResearchPlan(): Spec.ResearchPlan | undefined;
|
|
99
|
+
setResearchPlan(value?: Spec.ResearchPlan): Spec;
|
|
100
|
+
hasResearchPlan(): boolean;
|
|
101
|
+
clearResearchPlan(): Spec;
|
|
102
|
+
|
|
103
|
+
getCustomAgent(): Spec.CustomAgent | undefined;
|
|
104
|
+
setCustomAgent(value?: Spec.CustomAgent): Spec;
|
|
105
|
+
hasCustomAgent(): boolean;
|
|
106
|
+
clearCustomAgent(): Spec;
|
|
107
|
+
|
|
108
|
+
getProductRequirementsDocument(): Spec.ProductRequirementsDocument | undefined;
|
|
109
|
+
setProductRequirementsDocument(value?: Spec.ProductRequirementsDocument): Spec;
|
|
110
|
+
hasProductRequirementsDocument(): boolean;
|
|
111
|
+
clearProductRequirementsDocument(): Spec;
|
|
112
|
+
|
|
113
|
+
getGenerationContext(): Spec.GenerationContext | undefined;
|
|
114
|
+
setGenerationContext(value?: Spec.GenerationContext): Spec;
|
|
115
|
+
hasGenerationContext(): boolean;
|
|
116
|
+
clearGenerationContext(): Spec;
|
|
117
|
+
|
|
118
|
+
getOperation(): string;
|
|
119
|
+
setOperation(value: string): Spec;
|
|
120
|
+
|
|
121
|
+
getCreateTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
122
|
+
setCreateTime(value?: google_protobuf_timestamp_pb.Timestamp): Spec;
|
|
123
|
+
hasCreateTime(): boolean;
|
|
124
|
+
clearCreateTime(): Spec;
|
|
125
|
+
|
|
126
|
+
getUpdateTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
127
|
+
setUpdateTime(value?: google_protobuf_timestamp_pb.Timestamp): Spec;
|
|
128
|
+
hasUpdateTime(): boolean;
|
|
129
|
+
clearUpdateTime(): Spec;
|
|
130
|
+
|
|
131
|
+
getDeleteTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
132
|
+
setDeleteTime(value?: google_protobuf_timestamp_pb.Timestamp): Spec;
|
|
133
|
+
hasDeleteTime(): boolean;
|
|
134
|
+
clearDeleteTime(): Spec;
|
|
135
|
+
|
|
136
|
+
getOutputCase(): Spec.OutputCase;
|
|
137
|
+
|
|
138
|
+
serializeBinary(): Uint8Array;
|
|
139
|
+
toObject(includeInstance?: boolean): Spec.AsObject;
|
|
140
|
+
static toObject(includeInstance: boolean, msg: Spec): Spec.AsObject;
|
|
141
|
+
static serializeBinaryToWriter(message: Spec, writer: jspb.BinaryWriter): void;
|
|
142
|
+
static deserializeBinary(bytes: Uint8Array): Spec;
|
|
143
|
+
static deserializeBinaryFromReader(message: Spec, reader: jspb.BinaryReader): Spec;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export namespace Spec {
|
|
147
|
+
export type AsObject = {
|
|
148
|
+
name: string,
|
|
149
|
+
title: string,
|
|
150
|
+
type: Spec.Type,
|
|
151
|
+
idea: string,
|
|
152
|
+
state: Spec.State,
|
|
153
|
+
fullRfp?: Spec.FullRfp.AsObject,
|
|
154
|
+
ideaBrief?: Spec.IdeaBrief.AsObject,
|
|
155
|
+
uiDesign?: Spec.UiDesign.AsObject,
|
|
156
|
+
aiPrototype?: Spec.AiPrototype.AsObject,
|
|
157
|
+
ideateSpec?: Spec.IdeateSpec.AsObject,
|
|
158
|
+
businessCase?: Spec.BusinessCase.AsObject,
|
|
159
|
+
currentProcess?: Spec.CurrentProcess.AsObject,
|
|
160
|
+
jargon?: Spec.Jargon.AsObject,
|
|
161
|
+
technologyLandscape?: Spec.TechnologyLandscape.AsObject,
|
|
162
|
+
painPoints?: Spec.PainPoints.AsObject,
|
|
163
|
+
stakeholderMap?: Spec.StakeholderMap.AsObject,
|
|
164
|
+
figmaMake?: Spec.FigmaMake.AsObject,
|
|
165
|
+
geminiEnterpriseCustomAgent?: Spec.GeminiEnterpriseCustomAgentSpec.AsObject,
|
|
166
|
+
aiStudio?: Spec.AiStudio.AsObject,
|
|
167
|
+
solutionFlowSpec?: Spec.SolutionFlowSpec.AsObject,
|
|
168
|
+
researchPlan?: Spec.ResearchPlan.AsObject,
|
|
169
|
+
customAgent?: Spec.CustomAgent.AsObject,
|
|
170
|
+
productRequirementsDocument?: Spec.ProductRequirementsDocument.AsObject,
|
|
171
|
+
generationContext?: Spec.GenerationContext.AsObject,
|
|
172
|
+
operation: string,
|
|
173
|
+
createTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
174
|
+
updateTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
175
|
+
deleteTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export class FullRfp extends jspb.Message {
|
|
179
|
+
getContent(): string;
|
|
180
|
+
setContent(value: string): FullRfp;
|
|
181
|
+
|
|
182
|
+
serializeBinary(): Uint8Array;
|
|
183
|
+
toObject(includeInstance?: boolean): FullRfp.AsObject;
|
|
184
|
+
static toObject(includeInstance: boolean, msg: FullRfp): FullRfp.AsObject;
|
|
185
|
+
static serializeBinaryToWriter(message: FullRfp, writer: jspb.BinaryWriter): void;
|
|
186
|
+
static deserializeBinary(bytes: Uint8Array): FullRfp;
|
|
187
|
+
static deserializeBinaryFromReader(message: FullRfp, reader: jspb.BinaryReader): FullRfp;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export namespace FullRfp {
|
|
191
|
+
export type AsObject = {
|
|
192
|
+
content: string,
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
export class IdeaBrief extends jspb.Message {
|
|
198
|
+
getContent(): string;
|
|
199
|
+
setContent(value: string): IdeaBrief;
|
|
200
|
+
|
|
201
|
+
serializeBinary(): Uint8Array;
|
|
202
|
+
toObject(includeInstance?: boolean): IdeaBrief.AsObject;
|
|
203
|
+
static toObject(includeInstance: boolean, msg: IdeaBrief): IdeaBrief.AsObject;
|
|
204
|
+
static serializeBinaryToWriter(message: IdeaBrief, writer: jspb.BinaryWriter): void;
|
|
205
|
+
static deserializeBinary(bytes: Uint8Array): IdeaBrief;
|
|
206
|
+
static deserializeBinaryFromReader(message: IdeaBrief, reader: jspb.BinaryReader): IdeaBrief;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export namespace IdeaBrief {
|
|
210
|
+
export type AsObject = {
|
|
211
|
+
content: string,
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
export class UiDesign extends jspb.Message {
|
|
217
|
+
getContent(): string;
|
|
218
|
+
setContent(value: string): UiDesign;
|
|
219
|
+
|
|
220
|
+
serializeBinary(): Uint8Array;
|
|
221
|
+
toObject(includeInstance?: boolean): UiDesign.AsObject;
|
|
222
|
+
static toObject(includeInstance: boolean, msg: UiDesign): UiDesign.AsObject;
|
|
223
|
+
static serializeBinaryToWriter(message: UiDesign, writer: jspb.BinaryWriter): void;
|
|
224
|
+
static deserializeBinary(bytes: Uint8Array): UiDesign;
|
|
225
|
+
static deserializeBinaryFromReader(message: UiDesign, reader: jspb.BinaryReader): UiDesign;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
export namespace UiDesign {
|
|
229
|
+
export type AsObject = {
|
|
230
|
+
content: string,
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
export class AiPrototype extends jspb.Message {
|
|
236
|
+
getContent(): string;
|
|
237
|
+
setContent(value: string): AiPrototype;
|
|
238
|
+
|
|
239
|
+
serializeBinary(): Uint8Array;
|
|
240
|
+
toObject(includeInstance?: boolean): AiPrototype.AsObject;
|
|
241
|
+
static toObject(includeInstance: boolean, msg: AiPrototype): AiPrototype.AsObject;
|
|
242
|
+
static serializeBinaryToWriter(message: AiPrototype, writer: jspb.BinaryWriter): void;
|
|
243
|
+
static deserializeBinary(bytes: Uint8Array): AiPrototype;
|
|
244
|
+
static deserializeBinaryFromReader(message: AiPrototype, reader: jspb.BinaryReader): AiPrototype;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
export namespace AiPrototype {
|
|
248
|
+
export type AsObject = {
|
|
249
|
+
content: string,
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
export class IdeateSpec extends jspb.Message {
|
|
255
|
+
getContent(): string;
|
|
256
|
+
setContent(value: string): IdeateSpec;
|
|
257
|
+
|
|
258
|
+
serializeBinary(): Uint8Array;
|
|
259
|
+
toObject(includeInstance?: boolean): IdeateSpec.AsObject;
|
|
260
|
+
static toObject(includeInstance: boolean, msg: IdeateSpec): IdeateSpec.AsObject;
|
|
261
|
+
static serializeBinaryToWriter(message: IdeateSpec, writer: jspb.BinaryWriter): void;
|
|
262
|
+
static deserializeBinary(bytes: Uint8Array): IdeateSpec;
|
|
263
|
+
static deserializeBinaryFromReader(message: IdeateSpec, reader: jspb.BinaryReader): IdeateSpec;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export namespace IdeateSpec {
|
|
267
|
+
export type AsObject = {
|
|
268
|
+
content: string,
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
export class BusinessCase extends jspb.Message {
|
|
274
|
+
getContent(): string;
|
|
275
|
+
setContent(value: string): BusinessCase;
|
|
276
|
+
|
|
277
|
+
serializeBinary(): Uint8Array;
|
|
278
|
+
toObject(includeInstance?: boolean): BusinessCase.AsObject;
|
|
279
|
+
static toObject(includeInstance: boolean, msg: BusinessCase): BusinessCase.AsObject;
|
|
280
|
+
static serializeBinaryToWriter(message: BusinessCase, writer: jspb.BinaryWriter): void;
|
|
281
|
+
static deserializeBinary(bytes: Uint8Array): BusinessCase;
|
|
282
|
+
static deserializeBinaryFromReader(message: BusinessCase, reader: jspb.BinaryReader): BusinessCase;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export namespace BusinessCase {
|
|
286
|
+
export type AsObject = {
|
|
287
|
+
content: string,
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
export class SolutionFlowSpec extends jspb.Message {
|
|
293
|
+
getContent(): string;
|
|
294
|
+
setContent(value: string): SolutionFlowSpec;
|
|
295
|
+
|
|
296
|
+
serializeBinary(): Uint8Array;
|
|
297
|
+
toObject(includeInstance?: boolean): SolutionFlowSpec.AsObject;
|
|
298
|
+
static toObject(includeInstance: boolean, msg: SolutionFlowSpec): SolutionFlowSpec.AsObject;
|
|
299
|
+
static serializeBinaryToWriter(message: SolutionFlowSpec, writer: jspb.BinaryWriter): void;
|
|
300
|
+
static deserializeBinary(bytes: Uint8Array): SolutionFlowSpec;
|
|
301
|
+
static deserializeBinaryFromReader(message: SolutionFlowSpec, reader: jspb.BinaryReader): SolutionFlowSpec;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export namespace SolutionFlowSpec {
|
|
305
|
+
export type AsObject = {
|
|
306
|
+
content: string,
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
export class CraftedSpec extends jspb.Message {
|
|
312
|
+
getContent(): string;
|
|
313
|
+
setContent(value: string): CraftedSpec;
|
|
314
|
+
|
|
315
|
+
serializeBinary(): Uint8Array;
|
|
316
|
+
toObject(includeInstance?: boolean): CraftedSpec.AsObject;
|
|
317
|
+
static toObject(includeInstance: boolean, msg: CraftedSpec): CraftedSpec.AsObject;
|
|
318
|
+
static serializeBinaryToWriter(message: CraftedSpec, writer: jspb.BinaryWriter): void;
|
|
319
|
+
static deserializeBinary(bytes: Uint8Array): CraftedSpec;
|
|
320
|
+
static deserializeBinaryFromReader(message: CraftedSpec, reader: jspb.BinaryReader): CraftedSpec;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export namespace CraftedSpec {
|
|
324
|
+
export type AsObject = {
|
|
325
|
+
content: string,
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
export class CurrentProcess extends jspb.Message {
|
|
331
|
+
getContent(): string;
|
|
332
|
+
setContent(value: string): CurrentProcess;
|
|
333
|
+
|
|
334
|
+
serializeBinary(): Uint8Array;
|
|
335
|
+
toObject(includeInstance?: boolean): CurrentProcess.AsObject;
|
|
336
|
+
static toObject(includeInstance: boolean, msg: CurrentProcess): CurrentProcess.AsObject;
|
|
337
|
+
static serializeBinaryToWriter(message: CurrentProcess, writer: jspb.BinaryWriter): void;
|
|
338
|
+
static deserializeBinary(bytes: Uint8Array): CurrentProcess;
|
|
339
|
+
static deserializeBinaryFromReader(message: CurrentProcess, reader: jspb.BinaryReader): CurrentProcess;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export namespace CurrentProcess {
|
|
343
|
+
export type AsObject = {
|
|
344
|
+
content: string,
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
export class Jargon extends jspb.Message {
|
|
350
|
+
getContent(): string;
|
|
351
|
+
setContent(value: string): Jargon;
|
|
352
|
+
|
|
353
|
+
serializeBinary(): Uint8Array;
|
|
354
|
+
toObject(includeInstance?: boolean): Jargon.AsObject;
|
|
355
|
+
static toObject(includeInstance: boolean, msg: Jargon): Jargon.AsObject;
|
|
356
|
+
static serializeBinaryToWriter(message: Jargon, writer: jspb.BinaryWriter): void;
|
|
357
|
+
static deserializeBinary(bytes: Uint8Array): Jargon;
|
|
358
|
+
static deserializeBinaryFromReader(message: Jargon, reader: jspb.BinaryReader): Jargon;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
export namespace Jargon {
|
|
362
|
+
export type AsObject = {
|
|
363
|
+
content: string,
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
export class TechnologyLandscape extends jspb.Message {
|
|
369
|
+
getContent(): string;
|
|
370
|
+
setContent(value: string): TechnologyLandscape;
|
|
371
|
+
|
|
372
|
+
serializeBinary(): Uint8Array;
|
|
373
|
+
toObject(includeInstance?: boolean): TechnologyLandscape.AsObject;
|
|
374
|
+
static toObject(includeInstance: boolean, msg: TechnologyLandscape): TechnologyLandscape.AsObject;
|
|
375
|
+
static serializeBinaryToWriter(message: TechnologyLandscape, writer: jspb.BinaryWriter): void;
|
|
376
|
+
static deserializeBinary(bytes: Uint8Array): TechnologyLandscape;
|
|
377
|
+
static deserializeBinaryFromReader(message: TechnologyLandscape, reader: jspb.BinaryReader): TechnologyLandscape;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export namespace TechnologyLandscape {
|
|
381
|
+
export type AsObject = {
|
|
382
|
+
content: string,
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
export class PainPoints extends jspb.Message {
|
|
388
|
+
getContent(): string;
|
|
389
|
+
setContent(value: string): PainPoints;
|
|
390
|
+
|
|
391
|
+
serializeBinary(): Uint8Array;
|
|
392
|
+
toObject(includeInstance?: boolean): PainPoints.AsObject;
|
|
393
|
+
static toObject(includeInstance: boolean, msg: PainPoints): PainPoints.AsObject;
|
|
394
|
+
static serializeBinaryToWriter(message: PainPoints, writer: jspb.BinaryWriter): void;
|
|
395
|
+
static deserializeBinary(bytes: Uint8Array): PainPoints;
|
|
396
|
+
static deserializeBinaryFromReader(message: PainPoints, reader: jspb.BinaryReader): PainPoints;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export namespace PainPoints {
|
|
400
|
+
export type AsObject = {
|
|
401
|
+
content: string,
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
export class StakeholderMap extends jspb.Message {
|
|
407
|
+
getContent(): string;
|
|
408
|
+
setContent(value: string): StakeholderMap;
|
|
409
|
+
|
|
410
|
+
serializeBinary(): Uint8Array;
|
|
411
|
+
toObject(includeInstance?: boolean): StakeholderMap.AsObject;
|
|
412
|
+
static toObject(includeInstance: boolean, msg: StakeholderMap): StakeholderMap.AsObject;
|
|
413
|
+
static serializeBinaryToWriter(message: StakeholderMap, writer: jspb.BinaryWriter): void;
|
|
414
|
+
static deserializeBinary(bytes: Uint8Array): StakeholderMap;
|
|
415
|
+
static deserializeBinaryFromReader(message: StakeholderMap, reader: jspb.BinaryReader): StakeholderMap;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
export namespace StakeholderMap {
|
|
419
|
+
export type AsObject = {
|
|
420
|
+
content: string,
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
export class FigmaMake extends jspb.Message {
|
|
426
|
+
getContent(): string;
|
|
427
|
+
setContent(value: string): FigmaMake;
|
|
428
|
+
|
|
429
|
+
serializeBinary(): Uint8Array;
|
|
430
|
+
toObject(includeInstance?: boolean): FigmaMake.AsObject;
|
|
431
|
+
static toObject(includeInstance: boolean, msg: FigmaMake): FigmaMake.AsObject;
|
|
432
|
+
static serializeBinaryToWriter(message: FigmaMake, writer: jspb.BinaryWriter): void;
|
|
433
|
+
static deserializeBinary(bytes: Uint8Array): FigmaMake;
|
|
434
|
+
static deserializeBinaryFromReader(message: FigmaMake, reader: jspb.BinaryReader): FigmaMake;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
export namespace FigmaMake {
|
|
438
|
+
export type AsObject = {
|
|
439
|
+
content: string,
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
export class GeminiEnterpriseCustomAgentSpec extends jspb.Message {
|
|
445
|
+
getDisplayName(): string;
|
|
446
|
+
setDisplayName(value: string): GeminiEnterpriseCustomAgentSpec;
|
|
447
|
+
|
|
448
|
+
getDescription(): string;
|
|
449
|
+
setDescription(value: string): GeminiEnterpriseCustomAgentSpec;
|
|
450
|
+
|
|
451
|
+
getInstructions(): string;
|
|
452
|
+
setInstructions(value: string): GeminiEnterpriseCustomAgentSpec;
|
|
453
|
+
|
|
454
|
+
serializeBinary(): Uint8Array;
|
|
455
|
+
toObject(includeInstance?: boolean): GeminiEnterpriseCustomAgentSpec.AsObject;
|
|
456
|
+
static toObject(includeInstance: boolean, msg: GeminiEnterpriseCustomAgentSpec): GeminiEnterpriseCustomAgentSpec.AsObject;
|
|
457
|
+
static serializeBinaryToWriter(message: GeminiEnterpriseCustomAgentSpec, writer: jspb.BinaryWriter): void;
|
|
458
|
+
static deserializeBinary(bytes: Uint8Array): GeminiEnterpriseCustomAgentSpec;
|
|
459
|
+
static deserializeBinaryFromReader(message: GeminiEnterpriseCustomAgentSpec, reader: jspb.BinaryReader): GeminiEnterpriseCustomAgentSpec;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export namespace GeminiEnterpriseCustomAgentSpec {
|
|
463
|
+
export type AsObject = {
|
|
464
|
+
displayName: string,
|
|
465
|
+
description: string,
|
|
466
|
+
instructions: string,
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
export class AiStudio extends jspb.Message {
|
|
472
|
+
getContent(): string;
|
|
473
|
+
setContent(value: string): AiStudio;
|
|
474
|
+
|
|
475
|
+
getContributionSession(): string;
|
|
476
|
+
setContributionSession(value: string): AiStudio;
|
|
477
|
+
|
|
478
|
+
getAttachmentUrisList(): Array<string>;
|
|
479
|
+
setAttachmentUrisList(value: Array<string>): AiStudio;
|
|
480
|
+
clearAttachmentUrisList(): AiStudio;
|
|
481
|
+
addAttachmentUris(value: string, index?: number): AiStudio;
|
|
482
|
+
|
|
483
|
+
serializeBinary(): Uint8Array;
|
|
484
|
+
toObject(includeInstance?: boolean): AiStudio.AsObject;
|
|
485
|
+
static toObject(includeInstance: boolean, msg: AiStudio): AiStudio.AsObject;
|
|
486
|
+
static serializeBinaryToWriter(message: AiStudio, writer: jspb.BinaryWriter): void;
|
|
487
|
+
static deserializeBinary(bytes: Uint8Array): AiStudio;
|
|
488
|
+
static deserializeBinaryFromReader(message: AiStudio, reader: jspb.BinaryReader): AiStudio;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
export namespace AiStudio {
|
|
492
|
+
export type AsObject = {
|
|
493
|
+
content: string,
|
|
494
|
+
contributionSession: string,
|
|
495
|
+
attachmentUrisList: Array<string>,
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
export class ResearchPlan extends jspb.Message {
|
|
501
|
+
getFraming(): string;
|
|
502
|
+
setFraming(value: string): ResearchPlan;
|
|
503
|
+
|
|
504
|
+
getResearchQuestionsList(): Array<string>;
|
|
505
|
+
setResearchQuestionsList(value: Array<string>): ResearchPlan;
|
|
506
|
+
clearResearchQuestionsList(): ResearchPlan;
|
|
507
|
+
addResearchQuestions(value: string, index?: number): ResearchPlan;
|
|
508
|
+
|
|
509
|
+
getLeadingQuestion(): string;
|
|
510
|
+
setLeadingQuestion(value: string): ResearchPlan;
|
|
511
|
+
|
|
512
|
+
serializeBinary(): Uint8Array;
|
|
513
|
+
toObject(includeInstance?: boolean): ResearchPlan.AsObject;
|
|
514
|
+
static toObject(includeInstance: boolean, msg: ResearchPlan): ResearchPlan.AsObject;
|
|
515
|
+
static serializeBinaryToWriter(message: ResearchPlan, writer: jspb.BinaryWriter): void;
|
|
516
|
+
static deserializeBinary(bytes: Uint8Array): ResearchPlan;
|
|
517
|
+
static deserializeBinaryFromReader(message: ResearchPlan, reader: jspb.BinaryReader): ResearchPlan;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
export namespace ResearchPlan {
|
|
521
|
+
export type AsObject = {
|
|
522
|
+
framing: string,
|
|
523
|
+
researchQuestionsList: Array<string>,
|
|
524
|
+
leadingQuestion: string,
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
export class CustomAgent extends jspb.Message {
|
|
530
|
+
getContent(): string;
|
|
531
|
+
setContent(value: string): CustomAgent;
|
|
532
|
+
|
|
533
|
+
serializeBinary(): Uint8Array;
|
|
534
|
+
toObject(includeInstance?: boolean): CustomAgent.AsObject;
|
|
535
|
+
static toObject(includeInstance: boolean, msg: CustomAgent): CustomAgent.AsObject;
|
|
536
|
+
static serializeBinaryToWriter(message: CustomAgent, writer: jspb.BinaryWriter): void;
|
|
537
|
+
static deserializeBinary(bytes: Uint8Array): CustomAgent;
|
|
538
|
+
static deserializeBinaryFromReader(message: CustomAgent, reader: jspb.BinaryReader): CustomAgent;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
export namespace CustomAgent {
|
|
542
|
+
export type AsObject = {
|
|
543
|
+
content: string,
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
export class ProductRequirementsDocument extends jspb.Message {
|
|
549
|
+
getContent(): string;
|
|
550
|
+
setContent(value: string): ProductRequirementsDocument;
|
|
551
|
+
|
|
552
|
+
serializeBinary(): Uint8Array;
|
|
553
|
+
toObject(includeInstance?: boolean): ProductRequirementsDocument.AsObject;
|
|
554
|
+
static toObject(includeInstance: boolean, msg: ProductRequirementsDocument): ProductRequirementsDocument.AsObject;
|
|
555
|
+
static serializeBinaryToWriter(message: ProductRequirementsDocument, writer: jspb.BinaryWriter): void;
|
|
556
|
+
static deserializeBinary(bytes: Uint8Array): ProductRequirementsDocument;
|
|
557
|
+
static deserializeBinaryFromReader(message: ProductRequirementsDocument, reader: jspb.BinaryReader): ProductRequirementsDocument;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export namespace ProductRequirementsDocument {
|
|
561
|
+
export type AsObject = {
|
|
562
|
+
content: string,
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
export class GenerationContext extends jspb.Message {
|
|
568
|
+
getFilter(): string;
|
|
569
|
+
setFilter(value: string): GenerationContext;
|
|
570
|
+
|
|
571
|
+
getInstructions(): string;
|
|
572
|
+
setInstructions(value: string): GenerationContext;
|
|
573
|
+
|
|
574
|
+
serializeBinary(): Uint8Array;
|
|
575
|
+
toObject(includeInstance?: boolean): GenerationContext.AsObject;
|
|
576
|
+
static toObject(includeInstance: boolean, msg: GenerationContext): GenerationContext.AsObject;
|
|
577
|
+
static serializeBinaryToWriter(message: GenerationContext, writer: jspb.BinaryWriter): void;
|
|
578
|
+
static deserializeBinary(bytes: Uint8Array): GenerationContext;
|
|
579
|
+
static deserializeBinaryFromReader(message: GenerationContext, reader: jspb.BinaryReader): GenerationContext;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
export namespace GenerationContext {
|
|
583
|
+
export type AsObject = {
|
|
584
|
+
filter: string,
|
|
585
|
+
instructions: string,
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
export enum Type {
|
|
591
|
+
TYPE_UNSPECIFIED = 0,
|
|
592
|
+
FULL_RFP = 1,
|
|
593
|
+
IDEA_BRIEF = 5,
|
|
594
|
+
UI_DESIGN = 6,
|
|
595
|
+
AI_PROTOTYPE = 7,
|
|
596
|
+
IDEATE_SPEC = 8,
|
|
597
|
+
BUSINESS_CASE = 9,
|
|
598
|
+
SOLUTION_FLOW_SPEC = 10,
|
|
599
|
+
CRAFTED_SPEC = 11,
|
|
600
|
+
CURRENT_PROCESS = 12,
|
|
601
|
+
JARGON = 13,
|
|
602
|
+
TECHNOLOGY_LANDSCAPE = 14,
|
|
603
|
+
PAIN_POINTS = 15,
|
|
604
|
+
STAKEHOLDER_MAP = 16,
|
|
605
|
+
FIGMA_MAKE = 17,
|
|
606
|
+
GEMINI_ENTERPRISE_CUSTOM_AGENT = 18,
|
|
607
|
+
AI_STUDIO = 19,
|
|
608
|
+
RESEARCH_PLAN = 20,
|
|
609
|
+
CUSTOM_AGENT = 21,
|
|
610
|
+
PRODUCT_REQUIREMENTS_DOCUMENT = 22,
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
export enum State {
|
|
614
|
+
STATE_UNSPECIFIED = 0,
|
|
615
|
+
DRAFT = 1,
|
|
616
|
+
PUBLISHED = 2,
|
|
617
|
+
ARCHIVED = 3,
|
|
618
|
+
PROCESSING = 4,
|
|
619
|
+
READY = 5,
|
|
620
|
+
FAILED = 6,
|
|
621
|
+
STALE = 7,
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
export enum OutputCase {
|
|
625
|
+
OUTPUT_NOT_SET = 0,
|
|
626
|
+
FULL_RFP = 6,
|
|
627
|
+
IDEA_BRIEF = 7,
|
|
628
|
+
UI_DESIGN = 8,
|
|
629
|
+
AI_PROTOTYPE = 9,
|
|
630
|
+
IDEATE_SPEC = 10,
|
|
631
|
+
BUSINESS_CASE = 11,
|
|
632
|
+
CURRENT_PROCESS = 12,
|
|
633
|
+
JARGON = 13,
|
|
634
|
+
TECHNOLOGY_LANDSCAPE = 14,
|
|
635
|
+
PAIN_POINTS = 15,
|
|
636
|
+
STAKEHOLDER_MAP = 16,
|
|
637
|
+
FIGMA_MAKE = 17,
|
|
638
|
+
GEMINI_ENTERPRISE_CUSTOM_AGENT = 18,
|
|
639
|
+
AI_STUDIO = 19,
|
|
640
|
+
SOLUTION_FLOW_SPEC = 20,
|
|
641
|
+
RESEARCH_PLAN = 21,
|
|
642
|
+
CUSTOM_AGENT = 22,
|
|
643
|
+
PRODUCT_REQUIREMENTS_DOCUMENT = 23,
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
export class GetSpecRequest extends jspb.Message {
|
|
648
|
+
getName(): string;
|
|
649
|
+
setName(value: string): GetSpecRequest;
|
|
650
|
+
|
|
651
|
+
getReadMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
652
|
+
setReadMask(value?: google_protobuf_field_mask_pb.FieldMask): GetSpecRequest;
|
|
653
|
+
hasReadMask(): boolean;
|
|
654
|
+
clearReadMask(): GetSpecRequest;
|
|
655
|
+
|
|
656
|
+
serializeBinary(): Uint8Array;
|
|
657
|
+
toObject(includeInstance?: boolean): GetSpecRequest.AsObject;
|
|
658
|
+
static toObject(includeInstance: boolean, msg: GetSpecRequest): GetSpecRequest.AsObject;
|
|
659
|
+
static serializeBinaryToWriter(message: GetSpecRequest, writer: jspb.BinaryWriter): void;
|
|
660
|
+
static deserializeBinary(bytes: Uint8Array): GetSpecRequest;
|
|
661
|
+
static deserializeBinaryFromReader(message: GetSpecRequest, reader: jspb.BinaryReader): GetSpecRequest;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
export namespace GetSpecRequest {
|
|
665
|
+
export type AsObject = {
|
|
666
|
+
name: string,
|
|
667
|
+
readMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
export class GenerateCustomAgentSpecRequest extends jspb.Message {
|
|
672
|
+
getIdea(): string;
|
|
673
|
+
setIdea(value: string): GenerateCustomAgentSpecRequest;
|
|
674
|
+
|
|
675
|
+
getSpec(): string;
|
|
676
|
+
setSpec(value: string): GenerateCustomAgentSpecRequest;
|
|
677
|
+
|
|
678
|
+
getGenerationContext(): Spec.GenerationContext | undefined;
|
|
679
|
+
setGenerationContext(value?: Spec.GenerationContext): GenerateCustomAgentSpecRequest;
|
|
680
|
+
hasGenerationContext(): boolean;
|
|
681
|
+
clearGenerationContext(): GenerateCustomAgentSpecRequest;
|
|
682
|
+
|
|
683
|
+
getSourceCase(): GenerateCustomAgentSpecRequest.SourceCase;
|
|
684
|
+
|
|
685
|
+
serializeBinary(): Uint8Array;
|
|
686
|
+
toObject(includeInstance?: boolean): GenerateCustomAgentSpecRequest.AsObject;
|
|
687
|
+
static toObject(includeInstance: boolean, msg: GenerateCustomAgentSpecRequest): GenerateCustomAgentSpecRequest.AsObject;
|
|
688
|
+
static serializeBinaryToWriter(message: GenerateCustomAgentSpecRequest, writer: jspb.BinaryWriter): void;
|
|
689
|
+
static deserializeBinary(bytes: Uint8Array): GenerateCustomAgentSpecRequest;
|
|
690
|
+
static deserializeBinaryFromReader(message: GenerateCustomAgentSpecRequest, reader: jspb.BinaryReader): GenerateCustomAgentSpecRequest;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
export namespace GenerateCustomAgentSpecRequest {
|
|
694
|
+
export type AsObject = {
|
|
695
|
+
idea: string,
|
|
696
|
+
spec: string,
|
|
697
|
+
generationContext?: Spec.GenerationContext.AsObject,
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
export enum SourceCase {
|
|
701
|
+
SOURCE_NOT_SET = 0,
|
|
702
|
+
IDEA = 1,
|
|
703
|
+
SPEC = 2,
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
export class GenerateCustomAgentSpecMetadata extends jspb.Message {
|
|
708
|
+
getGenerateCustomAgentSpecRequest(): GenerateCustomAgentSpecRequest | undefined;
|
|
709
|
+
setGenerateCustomAgentSpecRequest(value?: GenerateCustomAgentSpecRequest): GenerateCustomAgentSpecMetadata;
|
|
710
|
+
hasGenerateCustomAgentSpecRequest(): boolean;
|
|
711
|
+
clearGenerateCustomAgentSpecRequest(): GenerateCustomAgentSpecMetadata;
|
|
712
|
+
|
|
713
|
+
serializeBinary(): Uint8Array;
|
|
714
|
+
toObject(includeInstance?: boolean): GenerateCustomAgentSpecMetadata.AsObject;
|
|
715
|
+
static toObject(includeInstance: boolean, msg: GenerateCustomAgentSpecMetadata): GenerateCustomAgentSpecMetadata.AsObject;
|
|
716
|
+
static serializeBinaryToWriter(message: GenerateCustomAgentSpecMetadata, writer: jspb.BinaryWriter): void;
|
|
717
|
+
static deserializeBinary(bytes: Uint8Array): GenerateCustomAgentSpecMetadata;
|
|
718
|
+
static deserializeBinaryFromReader(message: GenerateCustomAgentSpecMetadata, reader: jspb.BinaryReader): GenerateCustomAgentSpecMetadata;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
export namespace GenerateCustomAgentSpecMetadata {
|
|
722
|
+
export type AsObject = {
|
|
723
|
+
generateCustomAgentSpecRequest?: GenerateCustomAgentSpecRequest.AsObject,
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
export class GenerateCustomAgentSpecResponse extends jspb.Message {
|
|
728
|
+
getSpec(): Spec | undefined;
|
|
729
|
+
setSpec(value?: Spec): GenerateCustomAgentSpecResponse;
|
|
730
|
+
hasSpec(): boolean;
|
|
731
|
+
clearSpec(): GenerateCustomAgentSpecResponse;
|
|
732
|
+
|
|
733
|
+
serializeBinary(): Uint8Array;
|
|
734
|
+
toObject(includeInstance?: boolean): GenerateCustomAgentSpecResponse.AsObject;
|
|
735
|
+
static toObject(includeInstance: boolean, msg: GenerateCustomAgentSpecResponse): GenerateCustomAgentSpecResponse.AsObject;
|
|
736
|
+
static serializeBinaryToWriter(message: GenerateCustomAgentSpecResponse, writer: jspb.BinaryWriter): void;
|
|
737
|
+
static deserializeBinary(bytes: Uint8Array): GenerateCustomAgentSpecResponse;
|
|
738
|
+
static deserializeBinaryFromReader(message: GenerateCustomAgentSpecResponse, reader: jspb.BinaryReader): GenerateCustomAgentSpecResponse;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
export namespace GenerateCustomAgentSpecResponse {
|
|
742
|
+
export type AsObject = {
|
|
743
|
+
spec?: Spec.AsObject,
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
export class RetrieveIdeaSpecsRequest extends jspb.Message {
|
|
748
|
+
getIdea(): string;
|
|
749
|
+
setIdea(value: string): RetrieveIdeaSpecsRequest;
|
|
750
|
+
|
|
751
|
+
getSpecType(): Spec.Type;
|
|
752
|
+
setSpecType(value: Spec.Type): RetrieveIdeaSpecsRequest;
|
|
753
|
+
|
|
754
|
+
serializeBinary(): Uint8Array;
|
|
755
|
+
toObject(includeInstance?: boolean): RetrieveIdeaSpecsRequest.AsObject;
|
|
756
|
+
static toObject(includeInstance: boolean, msg: RetrieveIdeaSpecsRequest): RetrieveIdeaSpecsRequest.AsObject;
|
|
757
|
+
static serializeBinaryToWriter(message: RetrieveIdeaSpecsRequest, writer: jspb.BinaryWriter): void;
|
|
758
|
+
static deserializeBinary(bytes: Uint8Array): RetrieveIdeaSpecsRequest;
|
|
759
|
+
static deserializeBinaryFromReader(message: RetrieveIdeaSpecsRequest, reader: jspb.BinaryReader): RetrieveIdeaSpecsRequest;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
export namespace RetrieveIdeaSpecsRequest {
|
|
763
|
+
export type AsObject = {
|
|
764
|
+
idea: string,
|
|
765
|
+
specType: Spec.Type,
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
export class RetrieveIdeaSpecsResponse extends jspb.Message {
|
|
770
|
+
getSpecsList(): Array<Spec>;
|
|
771
|
+
setSpecsList(value: Array<Spec>): RetrieveIdeaSpecsResponse;
|
|
772
|
+
clearSpecsList(): RetrieveIdeaSpecsResponse;
|
|
773
|
+
addSpecs(value?: Spec, index?: number): Spec;
|
|
774
|
+
|
|
775
|
+
serializeBinary(): Uint8Array;
|
|
776
|
+
toObject(includeInstance?: boolean): RetrieveIdeaSpecsResponse.AsObject;
|
|
777
|
+
static toObject(includeInstance: boolean, msg: RetrieveIdeaSpecsResponse): RetrieveIdeaSpecsResponse.AsObject;
|
|
778
|
+
static serializeBinaryToWriter(message: RetrieveIdeaSpecsResponse, writer: jspb.BinaryWriter): void;
|
|
779
|
+
static deserializeBinary(bytes: Uint8Array): RetrieveIdeaSpecsResponse;
|
|
780
|
+
static deserializeBinaryFromReader(message: RetrieveIdeaSpecsResponse, reader: jspb.BinaryReader): RetrieveIdeaSpecsResponse;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
export namespace RetrieveIdeaSpecsResponse {
|
|
784
|
+
export type AsObject = {
|
|
785
|
+
specsList: Array<Spec.AsObject>,
|
|
786
|
+
}
|
|
787
|
+
}
|