weave-typescript 0.1.4 → 0.4.1
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/dist/google/protobuf/descriptor.pb.d.ts +46 -0
- package/dist/google/protobuf/descriptor.pb.js +227 -18
- package/dist/index.d.ts +16 -14
- package/dist/index.js +21 -18
- package/dist/{weave/datamanagement → weaveapi}/generate/v1/configuration.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/generate/v1/configuration.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/generate/v1/generate.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/generate/v1/generate.pb.js +3 -3
- package/dist/{weave/datamanagement → weaveapi}/generate/v1/service.pb.d.ts +5 -5
- package/dist/{weave/datamanagement → weaveapi}/generate/v1/service.pb.js +8 -8
- package/dist/weaveapi/mcpregistry/v1/server.pb.d.ts +54 -0
- package/dist/weaveapi/mcpregistry/v1/server.pb.js +415 -0
- package/dist/weaveapi/mcpregistry/v1/service.pb.d.ts +158 -0
- package/dist/weaveapi/mcpregistry/v1/service.pb.js +657 -0
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/auth.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/auth.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/nosql_database.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/nosql_database.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/object_store.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/object_store.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/service.pb.d.ts +7 -7
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/service.pb.js +9 -9
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/sql_database.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/sql_database.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/storage.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/storage/v1/storage.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/dataset.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/dataset.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/inline_data.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/inline_data.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/relationship.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/relationship.pb.js +2 -2
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/service.pb.d.ts +5 -5
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/service.pb.js +8 -8
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/training.pb.d.ts +1 -1
- package/dist/{weave/datamanagement → weaveapi}/synthesize/v1/training.pb.js +3 -3
- package/package.json +1 -1
|
@@ -43,6 +43,21 @@ export declare enum Edition {
|
|
|
43
43
|
}
|
|
44
44
|
export declare function editionFromJSON(object: any): Edition;
|
|
45
45
|
export declare function editionToJSON(object: Edition): string;
|
|
46
|
+
/**
|
|
47
|
+
* Describes the 'visibility' of a symbol with respect to the proto import
|
|
48
|
+
* system. Symbols can only be imported when the visibility rules do not prevent
|
|
49
|
+
* it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
|
50
|
+
* on `message` and `enum` as they are the only types available to be referenced
|
|
51
|
+
* from other files.
|
|
52
|
+
*/
|
|
53
|
+
export declare enum SymbolVisibility {
|
|
54
|
+
VISIBILITY_UNSET = 0,
|
|
55
|
+
VISIBILITY_LOCAL = 1,
|
|
56
|
+
VISIBILITY_EXPORT = 2,
|
|
57
|
+
UNRECOGNIZED = -1
|
|
58
|
+
}
|
|
59
|
+
export declare function symbolVisibilityFromJSON(object: any): SymbolVisibility;
|
|
60
|
+
export declare function symbolVisibilityToJSON(object: SymbolVisibility): string;
|
|
46
61
|
/**
|
|
47
62
|
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
48
63
|
* files it parses.
|
|
@@ -65,6 +80,11 @@ export interface FileDescriptorProto {
|
|
|
65
80
|
* For Google-internal migration only. Do not use.
|
|
66
81
|
*/
|
|
67
82
|
weakDependency: number[];
|
|
83
|
+
/**
|
|
84
|
+
* Names of files imported by this file purely for the purpose of providing
|
|
85
|
+
* option extensions. These are excluded from the dependency list above.
|
|
86
|
+
*/
|
|
87
|
+
optionDependency: string[];
|
|
68
88
|
/** All top-level definitions in this file. */
|
|
69
89
|
messageType: DescriptorProto[];
|
|
70
90
|
enumType: EnumDescriptorProto[];
|
|
@@ -112,6 +132,8 @@ export interface DescriptorProto {
|
|
|
112
132
|
* A given name may only be reserved once.
|
|
113
133
|
*/
|
|
114
134
|
reservedName: string[];
|
|
135
|
+
/** Support for `export` and `local` keywords on enums. */
|
|
136
|
+
visibility?: SymbolVisibility | undefined;
|
|
115
137
|
}
|
|
116
138
|
export interface DescriptorProto_ExtensionRange {
|
|
117
139
|
/** Inclusive. */
|
|
@@ -333,6 +355,8 @@ export interface EnumDescriptorProto {
|
|
|
333
355
|
* be reserved once.
|
|
334
356
|
*/
|
|
335
357
|
reservedName: string[];
|
|
358
|
+
/** Support for `export` and `local` keywords on enums. */
|
|
359
|
+
visibility?: SymbolVisibility | undefined;
|
|
336
360
|
}
|
|
337
361
|
/**
|
|
338
362
|
* Range of reserved numeric values. Reserved values may not be used by
|
|
@@ -953,6 +977,7 @@ export interface FeatureSet {
|
|
|
953
977
|
messageEncoding?: FeatureSet_MessageEncoding | undefined;
|
|
954
978
|
jsonFormat?: FeatureSet_JsonFormat | undefined;
|
|
955
979
|
enforceNamingStyle?: FeatureSet_EnforceNamingStyle | undefined;
|
|
980
|
+
defaultSymbolVisibility?: FeatureSet_VisibilityFeature_DefaultSymbolVisibility | undefined;
|
|
956
981
|
}
|
|
957
982
|
export declare enum FeatureSet_FieldPresence {
|
|
958
983
|
FIELD_PRESENCE_UNKNOWN = 0,
|
|
@@ -1011,6 +1036,26 @@ export declare enum FeatureSet_EnforceNamingStyle {
|
|
|
1011
1036
|
}
|
|
1012
1037
|
export declare function featureSet_EnforceNamingStyleFromJSON(object: any): FeatureSet_EnforceNamingStyle;
|
|
1013
1038
|
export declare function featureSet_EnforceNamingStyleToJSON(object: FeatureSet_EnforceNamingStyle): string;
|
|
1039
|
+
export interface FeatureSet_VisibilityFeature {
|
|
1040
|
+
}
|
|
1041
|
+
export declare enum FeatureSet_VisibilityFeature_DefaultSymbolVisibility {
|
|
1042
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
|
|
1043
|
+
/** EXPORT_ALL - Default pre-EDITION_2024, all UNSET visibility are export. */
|
|
1044
|
+
EXPORT_ALL = 1,
|
|
1045
|
+
/** EXPORT_TOP_LEVEL - All top-level symbols default to export, nested default to local. */
|
|
1046
|
+
EXPORT_TOP_LEVEL = 2,
|
|
1047
|
+
/** LOCAL_ALL - All symbols default to local. */
|
|
1048
|
+
LOCAL_ALL = 3,
|
|
1049
|
+
/**
|
|
1050
|
+
* STRICT - All symbols local by default. Nested types cannot be exported.
|
|
1051
|
+
* With special case caveat for message { enum {} reserved 1 to max; }
|
|
1052
|
+
* This is the recommended setting for new protos.
|
|
1053
|
+
*/
|
|
1054
|
+
STRICT = 4,
|
|
1055
|
+
UNRECOGNIZED = -1
|
|
1056
|
+
}
|
|
1057
|
+
export declare function featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON(object: any): FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
1058
|
+
export declare function featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON(object: FeatureSet_VisibilityFeature_DefaultSymbolVisibility): string;
|
|
1014
1059
|
/**
|
|
1015
1060
|
* A compiled specification for the defaults of a set of features. These
|
|
1016
1061
|
* messages are generated from FeatureSet extensions and can be used to seed
|
|
@@ -1258,6 +1303,7 @@ export declare const MethodOptions: MessageFns<MethodOptions>;
|
|
|
1258
1303
|
export declare const UninterpretedOption: MessageFns<UninterpretedOption>;
|
|
1259
1304
|
export declare const UninterpretedOption_NamePart: MessageFns<UninterpretedOption_NamePart>;
|
|
1260
1305
|
export declare const FeatureSet: MessageFns<FeatureSet>;
|
|
1306
|
+
export declare const FeatureSet_VisibilityFeature: MessageFns<FeatureSet_VisibilityFeature>;
|
|
1261
1307
|
export declare const FeatureSetDefaults: MessageFns<FeatureSetDefaults>;
|
|
1262
1308
|
export declare const FeatureSetDefaults_FeatureSetEditionDefault: MessageFns<FeatureSetDefaults_FeatureSetEditionDefault>;
|
|
1263
1309
|
export declare const SourceCodeInfo: MessageFns<SourceCodeInfo>;
|
|
@@ -5,10 +5,12 @@
|
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: google/protobuf/descriptor.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.
|
|
9
|
-
exports.GeneratedCodeInfo_Annotation = exports.GeneratedCodeInfo = void 0;
|
|
8
|
+
exports.FeatureSetDefaults = exports.FeatureSet_VisibilityFeature = exports.FeatureSet = exports.UninterpretedOption_NamePart = exports.UninterpretedOption = exports.MethodOptions = exports.ServiceOptions = exports.EnumValueOptions = exports.EnumOptions = exports.OneofOptions = exports.FieldOptions_FeatureSupport = exports.FieldOptions_EditionDefault = exports.FieldOptions = exports.MessageOptions = exports.FileOptions = exports.MethodDescriptorProto = exports.ServiceDescriptorProto = exports.EnumValueDescriptorProto = exports.EnumDescriptorProto_EnumReservedRange = exports.EnumDescriptorProto = exports.OneofDescriptorProto = exports.FieldDescriptorProto = exports.ExtensionRangeOptions_Declaration = exports.ExtensionRangeOptions = exports.DescriptorProto_ReservedRange = exports.DescriptorProto_ExtensionRange = exports.DescriptorProto = exports.FileDescriptorProto = exports.FileDescriptorSet = exports.GeneratedCodeInfo_Annotation_Semantic = exports.FeatureSet_VisibilityFeature_DefaultSymbolVisibility = exports.FeatureSet_EnforceNamingStyle = exports.FeatureSet_JsonFormat = exports.FeatureSet_MessageEncoding = exports.FeatureSet_Utf8Validation = exports.FeatureSet_RepeatedFieldEncoding = exports.FeatureSet_EnumType = exports.FeatureSet_FieldPresence = exports.MethodOptions_IdempotencyLevel = exports.FieldOptions_OptionTargetType = exports.FieldOptions_OptionRetention = exports.FieldOptions_JSType = exports.FieldOptions_CType = exports.FileOptions_OptimizeMode = exports.FieldDescriptorProto_Label = exports.FieldDescriptorProto_Type = exports.ExtensionRangeOptions_VerificationState = exports.SymbolVisibility = exports.Edition = exports.protobufPackage = void 0;
|
|
9
|
+
exports.GeneratedCodeInfo_Annotation = exports.GeneratedCodeInfo = exports.SourceCodeInfo_Location = exports.SourceCodeInfo = exports.FeatureSetDefaults_FeatureSetEditionDefault = void 0;
|
|
10
10
|
exports.editionFromJSON = editionFromJSON;
|
|
11
11
|
exports.editionToJSON = editionToJSON;
|
|
12
|
+
exports.symbolVisibilityFromJSON = symbolVisibilityFromJSON;
|
|
13
|
+
exports.symbolVisibilityToJSON = symbolVisibilityToJSON;
|
|
12
14
|
exports.extensionRangeOptions_VerificationStateFromJSON = extensionRangeOptions_VerificationStateFromJSON;
|
|
13
15
|
exports.extensionRangeOptions_VerificationStateToJSON = extensionRangeOptions_VerificationStateToJSON;
|
|
14
16
|
exports.fieldDescriptorProto_TypeFromJSON = fieldDescriptorProto_TypeFromJSON;
|
|
@@ -41,6 +43,8 @@ exports.featureSet_JsonFormatFromJSON = featureSet_JsonFormatFromJSON;
|
|
|
41
43
|
exports.featureSet_JsonFormatToJSON = featureSet_JsonFormatToJSON;
|
|
42
44
|
exports.featureSet_EnforceNamingStyleFromJSON = featureSet_EnforceNamingStyleFromJSON;
|
|
43
45
|
exports.featureSet_EnforceNamingStyleToJSON = featureSet_EnforceNamingStyleToJSON;
|
|
46
|
+
exports.featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON = featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON;
|
|
47
|
+
exports.featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON = featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON;
|
|
44
48
|
exports.generatedCodeInfo_Annotation_SemanticFromJSON = generatedCodeInfo_Annotation_SemanticFromJSON;
|
|
45
49
|
exports.generatedCodeInfo_Annotation_SemanticToJSON = generatedCodeInfo_Annotation_SemanticToJSON;
|
|
46
50
|
/* eslint-disable */
|
|
@@ -163,6 +167,50 @@ function editionToJSON(object) {
|
|
|
163
167
|
return "UNRECOGNIZED";
|
|
164
168
|
}
|
|
165
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* Describes the 'visibility' of a symbol with respect to the proto import
|
|
172
|
+
* system. Symbols can only be imported when the visibility rules do not prevent
|
|
173
|
+
* it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
|
174
|
+
* on `message` and `enum` as they are the only types available to be referenced
|
|
175
|
+
* from other files.
|
|
176
|
+
*/
|
|
177
|
+
var SymbolVisibility;
|
|
178
|
+
(function (SymbolVisibility) {
|
|
179
|
+
SymbolVisibility[SymbolVisibility["VISIBILITY_UNSET"] = 0] = "VISIBILITY_UNSET";
|
|
180
|
+
SymbolVisibility[SymbolVisibility["VISIBILITY_LOCAL"] = 1] = "VISIBILITY_LOCAL";
|
|
181
|
+
SymbolVisibility[SymbolVisibility["VISIBILITY_EXPORT"] = 2] = "VISIBILITY_EXPORT";
|
|
182
|
+
SymbolVisibility[SymbolVisibility["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
183
|
+
})(SymbolVisibility || (exports.SymbolVisibility = SymbolVisibility = {}));
|
|
184
|
+
function symbolVisibilityFromJSON(object) {
|
|
185
|
+
switch (object) {
|
|
186
|
+
case 0:
|
|
187
|
+
case "VISIBILITY_UNSET":
|
|
188
|
+
return SymbolVisibility.VISIBILITY_UNSET;
|
|
189
|
+
case 1:
|
|
190
|
+
case "VISIBILITY_LOCAL":
|
|
191
|
+
return SymbolVisibility.VISIBILITY_LOCAL;
|
|
192
|
+
case 2:
|
|
193
|
+
case "VISIBILITY_EXPORT":
|
|
194
|
+
return SymbolVisibility.VISIBILITY_EXPORT;
|
|
195
|
+
case -1:
|
|
196
|
+
case "UNRECOGNIZED":
|
|
197
|
+
default:
|
|
198
|
+
return SymbolVisibility.UNRECOGNIZED;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
function symbolVisibilityToJSON(object) {
|
|
202
|
+
switch (object) {
|
|
203
|
+
case SymbolVisibility.VISIBILITY_UNSET:
|
|
204
|
+
return "VISIBILITY_UNSET";
|
|
205
|
+
case SymbolVisibility.VISIBILITY_LOCAL:
|
|
206
|
+
return "VISIBILITY_LOCAL";
|
|
207
|
+
case SymbolVisibility.VISIBILITY_EXPORT:
|
|
208
|
+
return "VISIBILITY_EXPORT";
|
|
209
|
+
case SymbolVisibility.UNRECOGNIZED:
|
|
210
|
+
default:
|
|
211
|
+
return "UNRECOGNIZED";
|
|
212
|
+
}
|
|
213
|
+
}
|
|
166
214
|
/** The verification state of the extension range. */
|
|
167
215
|
var ExtensionRangeOptions_VerificationState;
|
|
168
216
|
(function (ExtensionRangeOptions_VerificationState) {
|
|
@@ -947,6 +995,63 @@ function featureSet_EnforceNamingStyleToJSON(object) {
|
|
|
947
995
|
return "UNRECOGNIZED";
|
|
948
996
|
}
|
|
949
997
|
}
|
|
998
|
+
var FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
999
|
+
(function (FeatureSet_VisibilityFeature_DefaultSymbolVisibility) {
|
|
1000
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["DEFAULT_SYMBOL_VISIBILITY_UNKNOWN"] = 0] = "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN";
|
|
1001
|
+
/** EXPORT_ALL - Default pre-EDITION_2024, all UNSET visibility are export. */
|
|
1002
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["EXPORT_ALL"] = 1] = "EXPORT_ALL";
|
|
1003
|
+
/** EXPORT_TOP_LEVEL - All top-level symbols default to export, nested default to local. */
|
|
1004
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["EXPORT_TOP_LEVEL"] = 2] = "EXPORT_TOP_LEVEL";
|
|
1005
|
+
/** LOCAL_ALL - All symbols default to local. */
|
|
1006
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["LOCAL_ALL"] = 3] = "LOCAL_ALL";
|
|
1007
|
+
/**
|
|
1008
|
+
* STRICT - All symbols local by default. Nested types cannot be exported.
|
|
1009
|
+
* With special case caveat for message { enum {} reserved 1 to max; }
|
|
1010
|
+
* This is the recommended setting for new protos.
|
|
1011
|
+
*/
|
|
1012
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["STRICT"] = 4] = "STRICT";
|
|
1013
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1014
|
+
})(FeatureSet_VisibilityFeature_DefaultSymbolVisibility || (exports.FeatureSet_VisibilityFeature_DefaultSymbolVisibility = FeatureSet_VisibilityFeature_DefaultSymbolVisibility = {}));
|
|
1015
|
+
function featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON(object) {
|
|
1016
|
+
switch (object) {
|
|
1017
|
+
case 0:
|
|
1018
|
+
case "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN":
|
|
1019
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.DEFAULT_SYMBOL_VISIBILITY_UNKNOWN;
|
|
1020
|
+
case 1:
|
|
1021
|
+
case "EXPORT_ALL":
|
|
1022
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_ALL;
|
|
1023
|
+
case 2:
|
|
1024
|
+
case "EXPORT_TOP_LEVEL":
|
|
1025
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_TOP_LEVEL;
|
|
1026
|
+
case 3:
|
|
1027
|
+
case "LOCAL_ALL":
|
|
1028
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.LOCAL_ALL;
|
|
1029
|
+
case 4:
|
|
1030
|
+
case "STRICT":
|
|
1031
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.STRICT;
|
|
1032
|
+
case -1:
|
|
1033
|
+
case "UNRECOGNIZED":
|
|
1034
|
+
default:
|
|
1035
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.UNRECOGNIZED;
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
function featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON(object) {
|
|
1039
|
+
switch (object) {
|
|
1040
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.DEFAULT_SYMBOL_VISIBILITY_UNKNOWN:
|
|
1041
|
+
return "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN";
|
|
1042
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_ALL:
|
|
1043
|
+
return "EXPORT_ALL";
|
|
1044
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_TOP_LEVEL:
|
|
1045
|
+
return "EXPORT_TOP_LEVEL";
|
|
1046
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.LOCAL_ALL:
|
|
1047
|
+
return "LOCAL_ALL";
|
|
1048
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.STRICT:
|
|
1049
|
+
return "STRICT";
|
|
1050
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.UNRECOGNIZED:
|
|
1051
|
+
default:
|
|
1052
|
+
return "UNRECOGNIZED";
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
950
1055
|
/**
|
|
951
1056
|
* Represents the identified object's effect on the element in the original
|
|
952
1057
|
* .proto file.
|
|
@@ -1053,6 +1158,7 @@ function createBaseFileDescriptorProto() {
|
|
|
1053
1158
|
dependency: [],
|
|
1054
1159
|
publicDependency: [],
|
|
1055
1160
|
weakDependency: [],
|
|
1161
|
+
optionDependency: [],
|
|
1056
1162
|
messageType: [],
|
|
1057
1163
|
enumType: [],
|
|
1058
1164
|
service: [],
|
|
@@ -1084,6 +1190,9 @@ exports.FileDescriptorProto = {
|
|
|
1084
1190
|
writer.int32(v);
|
|
1085
1191
|
}
|
|
1086
1192
|
writer.join();
|
|
1193
|
+
for (const v of message.optionDependency) {
|
|
1194
|
+
writer.uint32(122).string(v);
|
|
1195
|
+
}
|
|
1087
1196
|
for (const v of message.messageType) {
|
|
1088
1197
|
exports.DescriptorProto.encode(v, writer.uint32(34).fork()).join();
|
|
1089
1198
|
}
|
|
@@ -1166,6 +1275,13 @@ exports.FileDescriptorProto = {
|
|
|
1166
1275
|
}
|
|
1167
1276
|
break;
|
|
1168
1277
|
}
|
|
1278
|
+
case 15: {
|
|
1279
|
+
if (tag !== 122) {
|
|
1280
|
+
break;
|
|
1281
|
+
}
|
|
1282
|
+
message.optionDependency.push(reader.string());
|
|
1283
|
+
continue;
|
|
1284
|
+
}
|
|
1169
1285
|
case 4: {
|
|
1170
1286
|
if (tag !== 34) {
|
|
1171
1287
|
break;
|
|
@@ -1243,6 +1359,9 @@ exports.FileDescriptorProto = {
|
|
|
1243
1359
|
weakDependency: globalThis.Array.isArray(object === null || object === void 0 ? void 0 : object.weakDependency)
|
|
1244
1360
|
? object.weakDependency.map((e) => globalThis.Number(e))
|
|
1245
1361
|
: [],
|
|
1362
|
+
optionDependency: globalThis.Array.isArray(object === null || object === void 0 ? void 0 : object.optionDependency)
|
|
1363
|
+
? object.optionDependency.map((e) => globalThis.String(e))
|
|
1364
|
+
: [],
|
|
1246
1365
|
messageType: globalThis.Array.isArray(object === null || object === void 0 ? void 0 : object.messageType)
|
|
1247
1366
|
? object.messageType.map((e) => exports.DescriptorProto.fromJSON(e))
|
|
1248
1367
|
: [],
|
|
@@ -1262,7 +1381,7 @@ exports.FileDescriptorProto = {
|
|
|
1262
1381
|
};
|
|
1263
1382
|
},
|
|
1264
1383
|
toJSON(message) {
|
|
1265
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
1384
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
1266
1385
|
const obj = {};
|
|
1267
1386
|
if (message.name !== undefined && message.name !== "") {
|
|
1268
1387
|
obj.name = message.name;
|
|
@@ -1279,16 +1398,19 @@ exports.FileDescriptorProto = {
|
|
|
1279
1398
|
if ((_c = message.weakDependency) === null || _c === void 0 ? void 0 : _c.length) {
|
|
1280
1399
|
obj.weakDependency = message.weakDependency.map((e) => Math.round(e));
|
|
1281
1400
|
}
|
|
1282
|
-
if ((_d = message.
|
|
1401
|
+
if ((_d = message.optionDependency) === null || _d === void 0 ? void 0 : _d.length) {
|
|
1402
|
+
obj.optionDependency = message.optionDependency;
|
|
1403
|
+
}
|
|
1404
|
+
if ((_e = message.messageType) === null || _e === void 0 ? void 0 : _e.length) {
|
|
1283
1405
|
obj.messageType = message.messageType.map((e) => exports.DescriptorProto.toJSON(e));
|
|
1284
1406
|
}
|
|
1285
|
-
if ((
|
|
1407
|
+
if ((_f = message.enumType) === null || _f === void 0 ? void 0 : _f.length) {
|
|
1286
1408
|
obj.enumType = message.enumType.map((e) => exports.EnumDescriptorProto.toJSON(e));
|
|
1287
1409
|
}
|
|
1288
|
-
if ((
|
|
1410
|
+
if ((_g = message.service) === null || _g === void 0 ? void 0 : _g.length) {
|
|
1289
1411
|
obj.service = message.service.map((e) => exports.ServiceDescriptorProto.toJSON(e));
|
|
1290
1412
|
}
|
|
1291
|
-
if ((
|
|
1413
|
+
if ((_h = message.extension) === null || _h === void 0 ? void 0 : _h.length) {
|
|
1292
1414
|
obj.extension = message.extension.map((e) => exports.FieldDescriptorProto.toJSON(e));
|
|
1293
1415
|
}
|
|
1294
1416
|
if (message.options !== undefined) {
|
|
@@ -1309,25 +1431,26 @@ exports.FileDescriptorProto = {
|
|
|
1309
1431
|
return exports.FileDescriptorProto.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
1310
1432
|
},
|
|
1311
1433
|
fromPartial(object) {
|
|
1312
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
1434
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
1313
1435
|
const message = createBaseFileDescriptorProto();
|
|
1314
1436
|
message.name = (_a = object.name) !== null && _a !== void 0 ? _a : "";
|
|
1315
1437
|
message.package = (_b = object.package) !== null && _b !== void 0 ? _b : "";
|
|
1316
1438
|
message.dependency = ((_c = object.dependency) === null || _c === void 0 ? void 0 : _c.map((e) => e)) || [];
|
|
1317
1439
|
message.publicDependency = ((_d = object.publicDependency) === null || _d === void 0 ? void 0 : _d.map((e) => e)) || [];
|
|
1318
1440
|
message.weakDependency = ((_e = object.weakDependency) === null || _e === void 0 ? void 0 : _e.map((e) => e)) || [];
|
|
1319
|
-
message.
|
|
1320
|
-
message.
|
|
1321
|
-
message.
|
|
1322
|
-
message.
|
|
1441
|
+
message.optionDependency = ((_f = object.optionDependency) === null || _f === void 0 ? void 0 : _f.map((e) => e)) || [];
|
|
1442
|
+
message.messageType = ((_g = object.messageType) === null || _g === void 0 ? void 0 : _g.map((e) => exports.DescriptorProto.fromPartial(e))) || [];
|
|
1443
|
+
message.enumType = ((_h = object.enumType) === null || _h === void 0 ? void 0 : _h.map((e) => exports.EnumDescriptorProto.fromPartial(e))) || [];
|
|
1444
|
+
message.service = ((_j = object.service) === null || _j === void 0 ? void 0 : _j.map((e) => exports.ServiceDescriptorProto.fromPartial(e))) || [];
|
|
1445
|
+
message.extension = ((_k = object.extension) === null || _k === void 0 ? void 0 : _k.map((e) => exports.FieldDescriptorProto.fromPartial(e))) || [];
|
|
1323
1446
|
message.options = (object.options !== undefined && object.options !== null)
|
|
1324
1447
|
? exports.FileOptions.fromPartial(object.options)
|
|
1325
1448
|
: undefined;
|
|
1326
1449
|
message.sourceCodeInfo = (object.sourceCodeInfo !== undefined && object.sourceCodeInfo !== null)
|
|
1327
1450
|
? exports.SourceCodeInfo.fromPartial(object.sourceCodeInfo)
|
|
1328
1451
|
: undefined;
|
|
1329
|
-
message.syntax = (
|
|
1330
|
-
message.edition = (
|
|
1452
|
+
message.syntax = (_l = object.syntax) !== null && _l !== void 0 ? _l : "";
|
|
1453
|
+
message.edition = (_m = object.edition) !== null && _m !== void 0 ? _m : 0;
|
|
1331
1454
|
return message;
|
|
1332
1455
|
},
|
|
1333
1456
|
};
|
|
@@ -1343,6 +1466,7 @@ function createBaseDescriptorProto() {
|
|
|
1343
1466
|
options: undefined,
|
|
1344
1467
|
reservedRange: [],
|
|
1345
1468
|
reservedName: [],
|
|
1469
|
+
visibility: 0,
|
|
1346
1470
|
};
|
|
1347
1471
|
}
|
|
1348
1472
|
exports.DescriptorProto = {
|
|
@@ -1377,6 +1501,9 @@ exports.DescriptorProto = {
|
|
|
1377
1501
|
for (const v of message.reservedName) {
|
|
1378
1502
|
writer.uint32(82).string(v);
|
|
1379
1503
|
}
|
|
1504
|
+
if (message.visibility !== undefined && message.visibility !== 0) {
|
|
1505
|
+
writer.uint32(88).int32(message.visibility);
|
|
1506
|
+
}
|
|
1380
1507
|
return writer;
|
|
1381
1508
|
},
|
|
1382
1509
|
decode(input, length) {
|
|
@@ -1456,6 +1583,13 @@ exports.DescriptorProto = {
|
|
|
1456
1583
|
message.reservedName.push(reader.string());
|
|
1457
1584
|
continue;
|
|
1458
1585
|
}
|
|
1586
|
+
case 11: {
|
|
1587
|
+
if (tag !== 88) {
|
|
1588
|
+
break;
|
|
1589
|
+
}
|
|
1590
|
+
message.visibility = reader.int32();
|
|
1591
|
+
continue;
|
|
1592
|
+
}
|
|
1459
1593
|
}
|
|
1460
1594
|
if ((tag & 7) === 4 || tag === 0) {
|
|
1461
1595
|
break;
|
|
@@ -1492,6 +1626,7 @@ exports.DescriptorProto = {
|
|
|
1492
1626
|
reservedName: globalThis.Array.isArray(object === null || object === void 0 ? void 0 : object.reservedName)
|
|
1493
1627
|
? object.reservedName.map((e) => globalThis.String(e))
|
|
1494
1628
|
: [],
|
|
1629
|
+
visibility: isSet(object.visibility) ? symbolVisibilityFromJSON(object.visibility) : 0,
|
|
1495
1630
|
};
|
|
1496
1631
|
},
|
|
1497
1632
|
toJSON(message) {
|
|
@@ -1527,13 +1662,16 @@ exports.DescriptorProto = {
|
|
|
1527
1662
|
if ((_h = message.reservedName) === null || _h === void 0 ? void 0 : _h.length) {
|
|
1528
1663
|
obj.reservedName = message.reservedName;
|
|
1529
1664
|
}
|
|
1665
|
+
if (message.visibility !== undefined && message.visibility !== 0) {
|
|
1666
|
+
obj.visibility = symbolVisibilityToJSON(message.visibility);
|
|
1667
|
+
}
|
|
1530
1668
|
return obj;
|
|
1531
1669
|
},
|
|
1532
1670
|
create(base) {
|
|
1533
1671
|
return exports.DescriptorProto.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
1534
1672
|
},
|
|
1535
1673
|
fromPartial(object) {
|
|
1536
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
1674
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
1537
1675
|
const message = createBaseDescriptorProto();
|
|
1538
1676
|
message.name = (_a = object.name) !== null && _a !== void 0 ? _a : "";
|
|
1539
1677
|
message.field = ((_b = object.field) === null || _b === void 0 ? void 0 : _b.map((e) => exports.FieldDescriptorProto.fromPartial(e))) || [];
|
|
@@ -1547,6 +1685,7 @@ exports.DescriptorProto = {
|
|
|
1547
1685
|
: undefined;
|
|
1548
1686
|
message.reservedRange = ((_h = object.reservedRange) === null || _h === void 0 ? void 0 : _h.map((e) => exports.DescriptorProto_ReservedRange.fromPartial(e))) || [];
|
|
1549
1687
|
message.reservedName = ((_j = object.reservedName) === null || _j === void 0 ? void 0 : _j.map((e) => e)) || [];
|
|
1688
|
+
message.visibility = (_k = object.visibility) !== null && _k !== void 0 ? _k : 0;
|
|
1550
1689
|
return message;
|
|
1551
1690
|
},
|
|
1552
1691
|
};
|
|
@@ -2217,7 +2356,7 @@ exports.OneofDescriptorProto = {
|
|
|
2217
2356
|
},
|
|
2218
2357
|
};
|
|
2219
2358
|
function createBaseEnumDescriptorProto() {
|
|
2220
|
-
return { name: "", value: [], options: undefined, reservedRange: [], reservedName: [] };
|
|
2359
|
+
return { name: "", value: [], options: undefined, reservedRange: [], reservedName: [], visibility: 0 };
|
|
2221
2360
|
}
|
|
2222
2361
|
exports.EnumDescriptorProto = {
|
|
2223
2362
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
@@ -2236,6 +2375,9 @@ exports.EnumDescriptorProto = {
|
|
|
2236
2375
|
for (const v of message.reservedName) {
|
|
2237
2376
|
writer.uint32(42).string(v);
|
|
2238
2377
|
}
|
|
2378
|
+
if (message.visibility !== undefined && message.visibility !== 0) {
|
|
2379
|
+
writer.uint32(48).int32(message.visibility);
|
|
2380
|
+
}
|
|
2239
2381
|
return writer;
|
|
2240
2382
|
},
|
|
2241
2383
|
decode(input, length) {
|
|
@@ -2280,6 +2422,13 @@ exports.EnumDescriptorProto = {
|
|
|
2280
2422
|
message.reservedName.push(reader.string());
|
|
2281
2423
|
continue;
|
|
2282
2424
|
}
|
|
2425
|
+
case 6: {
|
|
2426
|
+
if (tag !== 48) {
|
|
2427
|
+
break;
|
|
2428
|
+
}
|
|
2429
|
+
message.visibility = reader.int32();
|
|
2430
|
+
continue;
|
|
2431
|
+
}
|
|
2283
2432
|
}
|
|
2284
2433
|
if ((tag & 7) === 4 || tag === 0) {
|
|
2285
2434
|
break;
|
|
@@ -2301,6 +2450,7 @@ exports.EnumDescriptorProto = {
|
|
|
2301
2450
|
reservedName: globalThis.Array.isArray(object === null || object === void 0 ? void 0 : object.reservedName)
|
|
2302
2451
|
? object.reservedName.map((e) => globalThis.String(e))
|
|
2303
2452
|
: [],
|
|
2453
|
+
visibility: isSet(object.visibility) ? symbolVisibilityFromJSON(object.visibility) : 0,
|
|
2304
2454
|
};
|
|
2305
2455
|
},
|
|
2306
2456
|
toJSON(message) {
|
|
@@ -2321,13 +2471,16 @@ exports.EnumDescriptorProto = {
|
|
|
2321
2471
|
if ((_c = message.reservedName) === null || _c === void 0 ? void 0 : _c.length) {
|
|
2322
2472
|
obj.reservedName = message.reservedName;
|
|
2323
2473
|
}
|
|
2474
|
+
if (message.visibility !== undefined && message.visibility !== 0) {
|
|
2475
|
+
obj.visibility = symbolVisibilityToJSON(message.visibility);
|
|
2476
|
+
}
|
|
2324
2477
|
return obj;
|
|
2325
2478
|
},
|
|
2326
2479
|
create(base) {
|
|
2327
2480
|
return exports.EnumDescriptorProto.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
2328
2481
|
},
|
|
2329
2482
|
fromPartial(object) {
|
|
2330
|
-
var _a, _b, _c, _d;
|
|
2483
|
+
var _a, _b, _c, _d, _e;
|
|
2331
2484
|
const message = createBaseEnumDescriptorProto();
|
|
2332
2485
|
message.name = (_a = object.name) !== null && _a !== void 0 ? _a : "";
|
|
2333
2486
|
message.value = ((_b = object.value) === null || _b === void 0 ? void 0 : _b.map((e) => exports.EnumValueDescriptorProto.fromPartial(e))) || [];
|
|
@@ -2337,6 +2490,7 @@ exports.EnumDescriptorProto = {
|
|
|
2337
2490
|
message.reservedRange = ((_c = object.reservedRange) === null || _c === void 0 ? void 0 : _c.map((e) => exports.EnumDescriptorProto_EnumReservedRange.fromPartial(e))) ||
|
|
2338
2491
|
[];
|
|
2339
2492
|
message.reservedName = ((_d = object.reservedName) === null || _d === void 0 ? void 0 : _d.map((e) => e)) || [];
|
|
2493
|
+
message.visibility = (_e = object.visibility) !== null && _e !== void 0 ? _e : 0;
|
|
2340
2494
|
return message;
|
|
2341
2495
|
},
|
|
2342
2496
|
};
|
|
@@ -4480,6 +4634,7 @@ function createBaseFeatureSet() {
|
|
|
4480
4634
|
messageEncoding: 0,
|
|
4481
4635
|
jsonFormat: 0,
|
|
4482
4636
|
enforceNamingStyle: 0,
|
|
4637
|
+
defaultSymbolVisibility: 0,
|
|
4483
4638
|
};
|
|
4484
4639
|
}
|
|
4485
4640
|
exports.FeatureSet = {
|
|
@@ -4505,6 +4660,9 @@ exports.FeatureSet = {
|
|
|
4505
4660
|
if (message.enforceNamingStyle !== undefined && message.enforceNamingStyle !== 0) {
|
|
4506
4661
|
writer.uint32(56).int32(message.enforceNamingStyle);
|
|
4507
4662
|
}
|
|
4663
|
+
if (message.defaultSymbolVisibility !== undefined && message.defaultSymbolVisibility !== 0) {
|
|
4664
|
+
writer.uint32(64).int32(message.defaultSymbolVisibility);
|
|
4665
|
+
}
|
|
4508
4666
|
return writer;
|
|
4509
4667
|
},
|
|
4510
4668
|
decode(input, length) {
|
|
@@ -4563,6 +4721,13 @@ exports.FeatureSet = {
|
|
|
4563
4721
|
message.enforceNamingStyle = reader.int32();
|
|
4564
4722
|
continue;
|
|
4565
4723
|
}
|
|
4724
|
+
case 8: {
|
|
4725
|
+
if (tag !== 64) {
|
|
4726
|
+
break;
|
|
4727
|
+
}
|
|
4728
|
+
message.defaultSymbolVisibility = reader.int32();
|
|
4729
|
+
continue;
|
|
4730
|
+
}
|
|
4566
4731
|
}
|
|
4567
4732
|
if ((tag & 7) === 4 || tag === 0) {
|
|
4568
4733
|
break;
|
|
@@ -4584,6 +4749,9 @@ exports.FeatureSet = {
|
|
|
4584
4749
|
enforceNamingStyle: isSet(object.enforceNamingStyle)
|
|
4585
4750
|
? featureSet_EnforceNamingStyleFromJSON(object.enforceNamingStyle)
|
|
4586
4751
|
: 0,
|
|
4752
|
+
defaultSymbolVisibility: isSet(object.defaultSymbolVisibility)
|
|
4753
|
+
? featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON(object.defaultSymbolVisibility)
|
|
4754
|
+
: 0,
|
|
4587
4755
|
};
|
|
4588
4756
|
},
|
|
4589
4757
|
toJSON(message) {
|
|
@@ -4609,13 +4777,16 @@ exports.FeatureSet = {
|
|
|
4609
4777
|
if (message.enforceNamingStyle !== undefined && message.enforceNamingStyle !== 0) {
|
|
4610
4778
|
obj.enforceNamingStyle = featureSet_EnforceNamingStyleToJSON(message.enforceNamingStyle);
|
|
4611
4779
|
}
|
|
4780
|
+
if (message.defaultSymbolVisibility !== undefined && message.defaultSymbolVisibility !== 0) {
|
|
4781
|
+
obj.defaultSymbolVisibility = featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON(message.defaultSymbolVisibility);
|
|
4782
|
+
}
|
|
4612
4783
|
return obj;
|
|
4613
4784
|
},
|
|
4614
4785
|
create(base) {
|
|
4615
4786
|
return exports.FeatureSet.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
4616
4787
|
},
|
|
4617
4788
|
fromPartial(object) {
|
|
4618
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
4789
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
4619
4790
|
const message = createBaseFeatureSet();
|
|
4620
4791
|
message.fieldPresence = (_a = object.fieldPresence) !== null && _a !== void 0 ? _a : 0;
|
|
4621
4792
|
message.enumType = (_b = object.enumType) !== null && _b !== void 0 ? _b : 0;
|
|
@@ -4624,6 +4795,44 @@ exports.FeatureSet = {
|
|
|
4624
4795
|
message.messageEncoding = (_e = object.messageEncoding) !== null && _e !== void 0 ? _e : 0;
|
|
4625
4796
|
message.jsonFormat = (_f = object.jsonFormat) !== null && _f !== void 0 ? _f : 0;
|
|
4626
4797
|
message.enforceNamingStyle = (_g = object.enforceNamingStyle) !== null && _g !== void 0 ? _g : 0;
|
|
4798
|
+
message.defaultSymbolVisibility = (_h = object.defaultSymbolVisibility) !== null && _h !== void 0 ? _h : 0;
|
|
4799
|
+
return message;
|
|
4800
|
+
},
|
|
4801
|
+
};
|
|
4802
|
+
function createBaseFeatureSet_VisibilityFeature() {
|
|
4803
|
+
return {};
|
|
4804
|
+
}
|
|
4805
|
+
exports.FeatureSet_VisibilityFeature = {
|
|
4806
|
+
encode(_, writer = new wire_1.BinaryWriter()) {
|
|
4807
|
+
return writer;
|
|
4808
|
+
},
|
|
4809
|
+
decode(input, length) {
|
|
4810
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
4811
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
4812
|
+
const message = createBaseFeatureSet_VisibilityFeature();
|
|
4813
|
+
while (reader.pos < end) {
|
|
4814
|
+
const tag = reader.uint32();
|
|
4815
|
+
switch (tag >>> 3) {
|
|
4816
|
+
}
|
|
4817
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
4818
|
+
break;
|
|
4819
|
+
}
|
|
4820
|
+
reader.skip(tag & 7);
|
|
4821
|
+
}
|
|
4822
|
+
return message;
|
|
4823
|
+
},
|
|
4824
|
+
fromJSON(_) {
|
|
4825
|
+
return {};
|
|
4826
|
+
},
|
|
4827
|
+
toJSON(_) {
|
|
4828
|
+
const obj = {};
|
|
4829
|
+
return obj;
|
|
4830
|
+
},
|
|
4831
|
+
create(base) {
|
|
4832
|
+
return exports.FeatureSet_VisibilityFeature.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
4833
|
+
},
|
|
4834
|
+
fromPartial(_) {
|
|
4835
|
+
const message = createBaseFeatureSet_VisibilityFeature();
|
|
4627
4836
|
return message;
|
|
4628
4837
|
},
|
|
4629
4838
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
export * as configuration from './
|
|
2
|
-
export * as generate from './
|
|
3
|
-
export * as generateService from './
|
|
4
|
-
export * as
|
|
5
|
-
export * as
|
|
6
|
-
export * as
|
|
7
|
-
export * as
|
|
8
|
-
export * as
|
|
9
|
-
export * as
|
|
10
|
-
export * as
|
|
11
|
-
export * as
|
|
12
|
-
export * as
|
|
13
|
-
export * as
|
|
14
|
-
export * as
|
|
1
|
+
export * as configuration from './weaveapi/generate/v1/configuration.pb';
|
|
2
|
+
export * as generate from './weaveapi/generate/v1/generate.pb';
|
|
3
|
+
export * as generateService from './weaveapi/generate/v1/service.pb';
|
|
4
|
+
export * as server from './weaveapi/mcpregistry/v1/server.pb';
|
|
5
|
+
export * as mcpregistryService from './weaveapi/mcpregistry/v1/service.pb';
|
|
6
|
+
export * as auth from './weaveapi/storage/v1/auth.pb';
|
|
7
|
+
export * as nosqlDatabase from './weaveapi/storage/v1/nosql_database.pb';
|
|
8
|
+
export * as objectStore from './weaveapi/storage/v1/object_store.pb';
|
|
9
|
+
export * as storageService from './weaveapi/storage/v1/service.pb';
|
|
10
|
+
export * as sqlDatabase from './weaveapi/storage/v1/sql_database.pb';
|
|
11
|
+
export * as storage from './weaveapi/storage/v1/storage.pb';
|
|
12
|
+
export * as dataset from './weaveapi/synthesize/v1/dataset.pb';
|
|
13
|
+
export * as inlineData from './weaveapi/synthesize/v1/inline_data.pb';
|
|
14
|
+
export * as relationship from './weaveapi/synthesize/v1/relationship.pb';
|
|
15
|
+
export * as synthesizeService from './weaveapi/synthesize/v1/service.pb';
|
|
16
|
+
export * as training from './weaveapi/synthesize/v1/training.pb';
|
package/dist/index.js
CHANGED
|
@@ -34,21 +34,24 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
34
34
|
};
|
|
35
35
|
})();
|
|
36
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
-
exports.training = exports.synthesizeService = exports.relationship = exports.inlineData = exports.dataset = exports.storage = exports.sqlDatabase = exports.storageService = exports.objectStore = exports.nosqlDatabase = exports.auth = exports.generateService = exports.generate = exports.configuration = void 0;
|
|
38
|
-
// Re-export from
|
|
39
|
-
exports.configuration = __importStar(require("./
|
|
40
|
-
exports.generate = __importStar(require("./
|
|
41
|
-
exports.generateService = __importStar(require("./
|
|
42
|
-
// Re-export from
|
|
43
|
-
exports.
|
|
44
|
-
exports.
|
|
45
|
-
|
|
46
|
-
exports.
|
|
47
|
-
exports.
|
|
48
|
-
exports.
|
|
49
|
-
|
|
50
|
-
exports.
|
|
51
|
-
exports.
|
|
52
|
-
|
|
53
|
-
exports.
|
|
54
|
-
exports.
|
|
37
|
+
exports.training = exports.synthesizeService = exports.relationship = exports.inlineData = exports.dataset = exports.storage = exports.sqlDatabase = exports.storageService = exports.objectStore = exports.nosqlDatabase = exports.auth = exports.mcpregistryService = exports.server = exports.generateService = exports.generate = exports.configuration = void 0;
|
|
38
|
+
// Re-export from weaveapi/generate/v1
|
|
39
|
+
exports.configuration = __importStar(require("./weaveapi/generate/v1/configuration.pb"));
|
|
40
|
+
exports.generate = __importStar(require("./weaveapi/generate/v1/generate.pb"));
|
|
41
|
+
exports.generateService = __importStar(require("./weaveapi/generate/v1/service.pb"));
|
|
42
|
+
// Re-export from weaveapi/mcpregistry/v1
|
|
43
|
+
exports.server = __importStar(require("./weaveapi/mcpregistry/v1/server.pb"));
|
|
44
|
+
exports.mcpregistryService = __importStar(require("./weaveapi/mcpregistry/v1/service.pb"));
|
|
45
|
+
// Re-export from weaveapi/storage/v1
|
|
46
|
+
exports.auth = __importStar(require("./weaveapi/storage/v1/auth.pb"));
|
|
47
|
+
exports.nosqlDatabase = __importStar(require("./weaveapi/storage/v1/nosql_database.pb"));
|
|
48
|
+
exports.objectStore = __importStar(require("./weaveapi/storage/v1/object_store.pb"));
|
|
49
|
+
exports.storageService = __importStar(require("./weaveapi/storage/v1/service.pb"));
|
|
50
|
+
exports.sqlDatabase = __importStar(require("./weaveapi/storage/v1/sql_database.pb"));
|
|
51
|
+
exports.storage = __importStar(require("./weaveapi/storage/v1/storage.pb"));
|
|
52
|
+
// Re-export from weaveapi/synthesize/v1
|
|
53
|
+
exports.dataset = __importStar(require("./weaveapi/synthesize/v1/dataset.pb"));
|
|
54
|
+
exports.inlineData = __importStar(require("./weaveapi/synthesize/v1/inline_data.pb"));
|
|
55
|
+
exports.relationship = __importStar(require("./weaveapi/synthesize/v1/relationship.pb"));
|
|
56
|
+
exports.synthesizeService = __importStar(require("./weaveapi/synthesize/v1/service.pb"));
|
|
57
|
+
exports.training = __importStar(require("./weaveapi/synthesize/v1/training.pb"));
|