@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 @@
|
|
|
1
|
+
// GENERATED CODE -- NO SERVICES IN PROTO
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GENERATED CODE -- NO SERVICES IN PROTO
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
|
+
|
|
3
|
+
import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb'; // proto import: "google/protobuf/field_mask.proto"
|
|
4
|
+
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export class Idea extends jspb.Message {
|
|
8
|
+
getName(): string;
|
|
9
|
+
setName(value: string): Idea;
|
|
10
|
+
|
|
11
|
+
getTitle(): string;
|
|
12
|
+
setTitle(value: string): Idea;
|
|
13
|
+
|
|
14
|
+
getState(): Idea.State;
|
|
15
|
+
setState(value: Idea.State): Idea;
|
|
16
|
+
|
|
17
|
+
getManagedSpecs(): Idea.ManagedSpecs | undefined;
|
|
18
|
+
setManagedSpecs(value?: Idea.ManagedSpecs): Idea;
|
|
19
|
+
hasManagedSpecs(): boolean;
|
|
20
|
+
clearManagedSpecs(): Idea;
|
|
21
|
+
|
|
22
|
+
getAccount(): string;
|
|
23
|
+
setAccount(value: string): Idea;
|
|
24
|
+
|
|
25
|
+
getCreateTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
26
|
+
setCreateTime(value?: google_protobuf_timestamp_pb.Timestamp): Idea;
|
|
27
|
+
hasCreateTime(): boolean;
|
|
28
|
+
clearCreateTime(): Idea;
|
|
29
|
+
|
|
30
|
+
getUpdateTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
31
|
+
setUpdateTime(value?: google_protobuf_timestamp_pb.Timestamp): Idea;
|
|
32
|
+
hasUpdateTime(): boolean;
|
|
33
|
+
clearUpdateTime(): Idea;
|
|
34
|
+
|
|
35
|
+
serializeBinary(): Uint8Array;
|
|
36
|
+
toObject(includeInstance?: boolean): Idea.AsObject;
|
|
37
|
+
static toObject(includeInstance: boolean, msg: Idea): Idea.AsObject;
|
|
38
|
+
static serializeBinaryToWriter(message: Idea, writer: jspb.BinaryWriter): void;
|
|
39
|
+
static deserializeBinary(bytes: Uint8Array): Idea;
|
|
40
|
+
static deserializeBinaryFromReader(message: Idea, reader: jspb.BinaryReader): Idea;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export namespace Idea {
|
|
44
|
+
export type AsObject = {
|
|
45
|
+
name: string,
|
|
46
|
+
title: string,
|
|
47
|
+
state: Idea.State,
|
|
48
|
+
managedSpecs?: Idea.ManagedSpecs.AsObject,
|
|
49
|
+
account: string,
|
|
50
|
+
createTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
51
|
+
updateTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export class ManagedSpecs extends jspb.Message {
|
|
55
|
+
getIdeaBrief(): string;
|
|
56
|
+
setIdeaBrief(value: string): ManagedSpecs;
|
|
57
|
+
|
|
58
|
+
getCurrentProcess(): string;
|
|
59
|
+
setCurrentProcess(value: string): ManagedSpecs;
|
|
60
|
+
|
|
61
|
+
getStakeholderMap(): string;
|
|
62
|
+
setStakeholderMap(value: string): ManagedSpecs;
|
|
63
|
+
|
|
64
|
+
getPainPoints(): string;
|
|
65
|
+
setPainPoints(value: string): ManagedSpecs;
|
|
66
|
+
|
|
67
|
+
getJargon(): string;
|
|
68
|
+
setJargon(value: string): ManagedSpecs;
|
|
69
|
+
|
|
70
|
+
getTechnologyLandscape(): string;
|
|
71
|
+
setTechnologyLandscape(value: string): ManagedSpecs;
|
|
72
|
+
|
|
73
|
+
serializeBinary(): Uint8Array;
|
|
74
|
+
toObject(includeInstance?: boolean): ManagedSpecs.AsObject;
|
|
75
|
+
static toObject(includeInstance: boolean, msg: ManagedSpecs): ManagedSpecs.AsObject;
|
|
76
|
+
static serializeBinaryToWriter(message: ManagedSpecs, writer: jspb.BinaryWriter): void;
|
|
77
|
+
static deserializeBinary(bytes: Uint8Array): ManagedSpecs;
|
|
78
|
+
static deserializeBinaryFromReader(message: ManagedSpecs, reader: jspb.BinaryReader): ManagedSpecs;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export namespace ManagedSpecs {
|
|
82
|
+
export type AsObject = {
|
|
83
|
+
ideaBrief: string,
|
|
84
|
+
currentProcess: string,
|
|
85
|
+
stakeholderMap: string,
|
|
86
|
+
painPoints: string,
|
|
87
|
+
jargon: string,
|
|
88
|
+
technologyLandscape: string,
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
export enum State {
|
|
94
|
+
STATE_UNSPECIFIED = 0,
|
|
95
|
+
NEW = 1,
|
|
96
|
+
PROCESSING = 2,
|
|
97
|
+
ACTIVE = 3,
|
|
98
|
+
ARCHIVED = 4,
|
|
99
|
+
STALE = 5,
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export class GetIdeaRequest extends jspb.Message {
|
|
104
|
+
getName(): string;
|
|
105
|
+
setName(value: string): GetIdeaRequest;
|
|
106
|
+
|
|
107
|
+
getReadMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
108
|
+
setReadMask(value?: google_protobuf_field_mask_pb.FieldMask): GetIdeaRequest;
|
|
109
|
+
hasReadMask(): boolean;
|
|
110
|
+
clearReadMask(): GetIdeaRequest;
|
|
111
|
+
|
|
112
|
+
serializeBinary(): Uint8Array;
|
|
113
|
+
toObject(includeInstance?: boolean): GetIdeaRequest.AsObject;
|
|
114
|
+
static toObject(includeInstance: boolean, msg: GetIdeaRequest): GetIdeaRequest.AsObject;
|
|
115
|
+
static serializeBinaryToWriter(message: GetIdeaRequest, writer: jspb.BinaryWriter): void;
|
|
116
|
+
static deserializeBinary(bytes: Uint8Array): GetIdeaRequest;
|
|
117
|
+
static deserializeBinaryFromReader(message: GetIdeaRequest, reader: jspb.BinaryReader): GetIdeaRequest;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export namespace GetIdeaRequest {
|
|
121
|
+
export type AsObject = {
|
|
122
|
+
name: string,
|
|
123
|
+
readMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
124
|
+
}
|
|
125
|
+
}
|