weave-typescript 0.10.18 → 0.11.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.
- package/dist/google/api/annotations.pb.js +1 -1
- package/dist/google/api/http.pb.js +4 -4
- package/dist/google/protobuf/descriptor.pb.js +38 -44
- package/dist/google/protobuf/go_features.pb.d.ts +55 -0
- package/dist/google/protobuf/go_features.pb.js +195 -0
- package/dist/google/protobuf/struct.pb.js +5 -5
- package/dist/google/protobuf/timestamp.pb.js +2 -2
- package/dist/weaveapi/auth/v1/service.pb.d.ts +45 -49
- package/dist/weaveapi/auth/v1/service.pb.js +47 -47
- package/dist/weaveapi/auth/v1/session.pb.js +2 -2
- package/dist/weaveapi/auth/v1/usage.pb.js +6 -6
- package/dist/weaveapi/auth/v1/user.pb.js +8 -8
- package/dist/weaveapi/generate/v1/configuration.pb.d.ts +0 -1
- package/dist/weaveapi/generate/v1/configuration.pb.js +7 -7
- package/dist/weaveapi/generate/v1/generate.pb.js +2 -2
- package/dist/weaveapi/generate/v1/service.pb.d.ts +9 -9
- package/dist/weaveapi/generate/v1/service.pb.js +9 -9
- package/dist/weaveapi/llmx/v1/architecture.pb.js +6 -6
- package/dist/weaveapi/llmx/v1/capabilities.pb.js +15 -15
- package/dist/weaveapi/llmx/v1/model.pb.js +9 -9
- package/dist/weaveapi/llmx/v1/pricing.pb.js +5 -5
- package/dist/weaveapi/llmx/v1/provider.pb.js +2 -2
- package/dist/weaveapi/llmx/v1/service.pb.d.ts +25 -25
- package/dist/weaveapi/llmx/v1/service.pb.js +43 -43
- package/dist/weaveapi/mcpregistry/v1/server.pb.js +3 -3
- package/dist/weaveapi/mcpregistry/v1/service.pb.d.ts +13 -13
- package/dist/weaveapi/mcpregistry/v1/service.pb.js +13 -13
- package/dist/weaveapi/payment/v1/invoice.pb.js +5 -5
- package/dist/weaveapi/payment/v1/service.pb.d.ts +39 -42
- package/dist/weaveapi/payment/v1/service.pb.js +47 -47
- package/dist/weaveapi/payment/v1/subscription.pb.d.ts +0 -2
- package/dist/weaveapi/payment/v1/subscription.pb.js +10 -10
- package/dist/weaveapi/storage/v1/auth.pb.js +2 -2
- package/dist/weaveapi/storage/v1/nosql_database.pb.js +10 -10
- package/dist/weaveapi/storage/v1/object_store.pb.js +5 -5
- package/dist/weaveapi/storage/v1/service.pb.d.ts +13 -13
- package/dist/weaveapi/storage/v1/service.pb.js +16 -16
- package/dist/weaveapi/storage/v1/sql_database.pb.js +10 -10
- package/dist/weaveapi/storage/v1/storage.pb.js +2 -2
- package/dist/weaveapi/synthesize/v1/dataset.pb.js +4 -4
- package/dist/weaveapi/synthesize/v1/inline_data.pb.js +2 -2
- package/dist/weaveapi/synthesize/v1/relationship.pb.js +3 -3
- package/dist/weaveapi/synthesize/v1/service.pb.d.ts +9 -9
- package/dist/weaveapi/synthesize/v1/service.pb.js +10 -10
- package/dist/weaveapi/synthesize/v1/training.pb.js +3 -3
- package/package.json +1 -1
|
@@ -11,9 +11,7 @@ export interface SubscriptionStatus {
|
|
|
11
11
|
plan: PricingPlan | undefined;
|
|
12
12
|
currentPeriodStart: Date | undefined;
|
|
13
13
|
currentPeriodEnd: Date | undefined;
|
|
14
|
-
/** Set if cancellation scheduled */
|
|
15
14
|
cancelAt: Date | undefined;
|
|
16
|
-
/** When it was canceled */
|
|
17
15
|
canceledAt: Date | undefined;
|
|
18
16
|
cancelAtPeriodEnd: boolean;
|
|
19
17
|
/** Payment */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/payment/v1/subscription.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -96,7 +96,7 @@ exports.SubscriptionStatus = {
|
|
|
96
96
|
},
|
|
97
97
|
decode(input, length) {
|
|
98
98
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
99
|
-
|
|
99
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
100
100
|
const message = createBaseSubscriptionStatus();
|
|
101
101
|
while (reader.pos < end) {
|
|
102
102
|
const tag = reader.uint32();
|
|
@@ -422,7 +422,7 @@ exports.PricingPlan = {
|
|
|
422
422
|
},
|
|
423
423
|
decode(input, length) {
|
|
424
424
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
425
|
-
|
|
425
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
426
426
|
const message = createBasePricingPlan();
|
|
427
427
|
while (reader.pos < end) {
|
|
428
428
|
const tag = reader.uint32();
|
|
@@ -671,7 +671,7 @@ exports.SubscriptionFeatures = {
|
|
|
671
671
|
},
|
|
672
672
|
decode(input, length) {
|
|
673
673
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
674
|
-
|
|
674
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
675
675
|
const message = createBaseSubscriptionFeatures();
|
|
676
676
|
while (reader.pos < end) {
|
|
677
677
|
const tag = reader.uint32();
|
|
@@ -919,7 +919,7 @@ exports.PaymentMethod = {
|
|
|
919
919
|
},
|
|
920
920
|
decode(input, length) {
|
|
921
921
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
922
|
-
|
|
922
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
923
923
|
const message = createBasePaymentMethod();
|
|
924
924
|
while (reader.pos < end) {
|
|
925
925
|
const tag = reader.uint32();
|
|
@@ -1069,7 +1069,7 @@ exports.CardDetails = {
|
|
|
1069
1069
|
},
|
|
1070
1070
|
decode(input, length) {
|
|
1071
1071
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1072
|
-
|
|
1072
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1073
1073
|
const message = createBaseCardDetails();
|
|
1074
1074
|
while (reader.pos < end) {
|
|
1075
1075
|
const tag = reader.uint32();
|
|
@@ -1207,7 +1207,7 @@ exports.BankDetails = {
|
|
|
1207
1207
|
},
|
|
1208
1208
|
decode(input, length) {
|
|
1209
1209
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1210
|
-
|
|
1210
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1211
1211
|
const message = createBaseBankDetails();
|
|
1212
1212
|
while (reader.pos < end) {
|
|
1213
1213
|
const tag = reader.uint32();
|
|
@@ -1318,7 +1318,7 @@ exports.BillingDetails = {
|
|
|
1318
1318
|
},
|
|
1319
1319
|
decode(input, length) {
|
|
1320
1320
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1321
|
-
|
|
1321
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1322
1322
|
const message = createBaseBillingDetails();
|
|
1323
1323
|
while (reader.pos < end) {
|
|
1324
1324
|
const tag = reader.uint32();
|
|
@@ -1425,7 +1425,7 @@ exports.Address = {
|
|
|
1425
1425
|
},
|
|
1426
1426
|
decode(input, length) {
|
|
1427
1427
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1428
|
-
|
|
1428
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1429
1429
|
const message = createBaseAddress();
|
|
1430
1430
|
while (reader.pos < end) {
|
|
1431
1431
|
const tag = reader.uint32();
|
|
@@ -1573,7 +1573,7 @@ exports.Discount = {
|
|
|
1573
1573
|
},
|
|
1574
1574
|
decode(input, length) {
|
|
1575
1575
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1576
|
-
|
|
1576
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1577
1577
|
const message = createBaseDiscount();
|
|
1578
1578
|
while (reader.pos < end) {
|
|
1579
1579
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/storage/v1/auth.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -27,7 +27,7 @@ exports.AwsCredentials = {
|
|
|
27
27
|
},
|
|
28
28
|
decode(input, length) {
|
|
29
29
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
30
|
-
|
|
30
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
31
31
|
const message = createBaseAwsCredentials();
|
|
32
32
|
while (reader.pos < end) {
|
|
33
33
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/storage/v1/nosql_database.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -52,7 +52,7 @@ exports.NoSqlDatabase = {
|
|
|
52
52
|
},
|
|
53
53
|
decode(input, length) {
|
|
54
54
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
55
|
-
|
|
55
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
56
56
|
const message = createBaseNoSqlDatabase();
|
|
57
57
|
while (reader.pos < end) {
|
|
58
58
|
const tag = reader.uint32();
|
|
@@ -229,7 +229,7 @@ exports.Cassandra = {
|
|
|
229
229
|
},
|
|
230
230
|
decode(input, length) {
|
|
231
231
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
232
|
-
|
|
232
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
233
233
|
const message = createBaseCassandra();
|
|
234
234
|
while (reader.pos < end) {
|
|
235
235
|
const tag = reader.uint32();
|
|
@@ -361,7 +361,7 @@ exports.MongoDB = {
|
|
|
361
361
|
},
|
|
362
362
|
decode(input, length) {
|
|
363
363
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
364
|
-
|
|
364
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
365
365
|
const message = createBaseMongoDB();
|
|
366
366
|
while (reader.pos < end) {
|
|
367
367
|
const tag = reader.uint32();
|
|
@@ -448,7 +448,7 @@ exports.DynamoDB = {
|
|
|
448
448
|
},
|
|
449
449
|
decode(input, length) {
|
|
450
450
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
451
|
-
|
|
451
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
452
452
|
const message = createBaseDynamoDB();
|
|
453
453
|
while (reader.pos < end) {
|
|
454
454
|
const tag = reader.uint32();
|
|
@@ -549,7 +549,7 @@ exports.CosmosDB = {
|
|
|
549
549
|
},
|
|
550
550
|
decode(input, length) {
|
|
551
551
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
552
|
-
|
|
552
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
553
553
|
const message = createBaseCosmosDB();
|
|
554
554
|
while (reader.pos < end) {
|
|
555
555
|
const tag = reader.uint32();
|
|
@@ -648,7 +648,7 @@ exports.Redis = {
|
|
|
648
648
|
},
|
|
649
649
|
decode(input, length) {
|
|
650
650
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
651
|
-
|
|
651
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
652
652
|
const message = createBaseRedis();
|
|
653
653
|
while (reader.pos < end) {
|
|
654
654
|
const tag = reader.uint32();
|
|
@@ -748,7 +748,7 @@ exports.Valkey = {
|
|
|
748
748
|
},
|
|
749
749
|
decode(input, length) {
|
|
750
750
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
751
|
-
|
|
751
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
752
752
|
const message = createBaseValkey();
|
|
753
753
|
while (reader.pos < end) {
|
|
754
754
|
const tag = reader.uint32();
|
|
@@ -848,7 +848,7 @@ exports.Elasticsearch = {
|
|
|
848
848
|
},
|
|
849
849
|
decode(input, length) {
|
|
850
850
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
851
|
-
|
|
851
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
852
852
|
const message = createBaseElasticsearch();
|
|
853
853
|
while (reader.pos < end) {
|
|
854
854
|
const tag = reader.uint32();
|
|
@@ -947,7 +947,7 @@ exports.OpenSearch = {
|
|
|
947
947
|
},
|
|
948
948
|
decode(input, length) {
|
|
949
949
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
950
|
-
|
|
950
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
951
951
|
const message = createBaseOpenSearch();
|
|
952
952
|
while (reader.pos < end) {
|
|
953
953
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/storage/v1/object_store.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -28,7 +28,7 @@ exports.ObjectStore = {
|
|
|
28
28
|
},
|
|
29
29
|
decode(input, length) {
|
|
30
30
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
31
|
-
|
|
31
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
32
32
|
const message = createBaseObjectStore();
|
|
33
33
|
while (reader.pos < end) {
|
|
34
34
|
const tag = reader.uint32();
|
|
@@ -120,7 +120,7 @@ exports.AwsS3 = {
|
|
|
120
120
|
},
|
|
121
121
|
decode(input, length) {
|
|
122
122
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
123
|
-
|
|
123
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
124
124
|
const message = createBaseAwsS3();
|
|
125
125
|
while (reader.pos < end) {
|
|
126
126
|
const tag = reader.uint32();
|
|
@@ -224,7 +224,7 @@ exports.AzureBlobStorage = {
|
|
|
224
224
|
},
|
|
225
225
|
decode(input, length) {
|
|
226
226
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
227
|
-
|
|
227
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
228
228
|
const message = createBaseAzureBlobStorage();
|
|
229
229
|
while (reader.pos < end) {
|
|
230
230
|
const tag = reader.uint32();
|
|
@@ -332,7 +332,7 @@ exports.GoogleCloudStorage = {
|
|
|
332
332
|
},
|
|
333
333
|
decode(input, length) {
|
|
334
334
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
335
|
-
|
|
335
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
336
336
|
const message = createBaseGoogleCloudStorage();
|
|
337
337
|
while (reader.pos < end) {
|
|
338
338
|
const tag = reader.uint32();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
-
import { type CallOptions, ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
2
|
+
import { type CallOptions, type ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, type Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
3
3
|
import { StorageConnection } from "./storage.pb";
|
|
4
4
|
export declare const protobufPackage = "weaveapi.storage.v1";
|
|
5
5
|
/** StorageConfig represents a named storage configuration with metadata */
|
|
@@ -135,9 +135,9 @@ export declare const StorageService: {
|
|
|
135
135
|
readonly path: "/weaveapi.storage.v1.Storage/CreateStorage";
|
|
136
136
|
readonly requestStream: false;
|
|
137
137
|
readonly responseStream: false;
|
|
138
|
-
readonly requestSerialize: (value: CreateStorageRequest) => Buffer
|
|
138
|
+
readonly requestSerialize: (value: CreateStorageRequest) => Buffer;
|
|
139
139
|
readonly requestDeserialize: (value: Buffer) => CreateStorageRequest;
|
|
140
|
-
readonly responseSerialize: (value: CreateStorageResponse) => Buffer
|
|
140
|
+
readonly responseSerialize: (value: CreateStorageResponse) => Buffer;
|
|
141
141
|
readonly responseDeserialize: (value: Buffer) => CreateStorageResponse;
|
|
142
142
|
};
|
|
143
143
|
/** GetStorage retrieves a storage configuration by ID */
|
|
@@ -145,9 +145,9 @@ export declare const StorageService: {
|
|
|
145
145
|
readonly path: "/weaveapi.storage.v1.Storage/GetStorage";
|
|
146
146
|
readonly requestStream: false;
|
|
147
147
|
readonly responseStream: false;
|
|
148
|
-
readonly requestSerialize: (value: GetStorageRequest) => Buffer
|
|
148
|
+
readonly requestSerialize: (value: GetStorageRequest) => Buffer;
|
|
149
149
|
readonly requestDeserialize: (value: Buffer) => GetStorageRequest;
|
|
150
|
-
readonly responseSerialize: (value: GetStorageResponse) => Buffer
|
|
150
|
+
readonly responseSerialize: (value: GetStorageResponse) => Buffer;
|
|
151
151
|
readonly responseDeserialize: (value: Buffer) => GetStorageResponse;
|
|
152
152
|
};
|
|
153
153
|
/** ListStorages retrieves all storage configurations with optional filtering */
|
|
@@ -155,9 +155,9 @@ export declare const StorageService: {
|
|
|
155
155
|
readonly path: "/weaveapi.storage.v1.Storage/ListStorages";
|
|
156
156
|
readonly requestStream: false;
|
|
157
157
|
readonly responseStream: false;
|
|
158
|
-
readonly requestSerialize: (value: ListStoragesRequest) => Buffer
|
|
158
|
+
readonly requestSerialize: (value: ListStoragesRequest) => Buffer;
|
|
159
159
|
readonly requestDeserialize: (value: Buffer) => ListStoragesRequest;
|
|
160
|
-
readonly responseSerialize: (value: ListStoragesResponse) => Buffer
|
|
160
|
+
readonly responseSerialize: (value: ListStoragesResponse) => Buffer;
|
|
161
161
|
readonly responseDeserialize: (value: Buffer) => ListStoragesResponse;
|
|
162
162
|
};
|
|
163
163
|
/** UpdateStorage updates an existing storage configuration */
|
|
@@ -165,9 +165,9 @@ export declare const StorageService: {
|
|
|
165
165
|
readonly path: "/weaveapi.storage.v1.Storage/UpdateStorage";
|
|
166
166
|
readonly requestStream: false;
|
|
167
167
|
readonly responseStream: false;
|
|
168
|
-
readonly requestSerialize: (value: UpdateStorageRequest) => Buffer
|
|
168
|
+
readonly requestSerialize: (value: UpdateStorageRequest) => Buffer;
|
|
169
169
|
readonly requestDeserialize: (value: Buffer) => UpdateStorageRequest;
|
|
170
|
-
readonly responseSerialize: (value: UpdateStorageResponse) => Buffer
|
|
170
|
+
readonly responseSerialize: (value: UpdateStorageResponse) => Buffer;
|
|
171
171
|
readonly responseDeserialize: (value: Buffer) => UpdateStorageResponse;
|
|
172
172
|
};
|
|
173
173
|
/** DeleteStorage deletes a storage configuration by ID */
|
|
@@ -175,9 +175,9 @@ export declare const StorageService: {
|
|
|
175
175
|
readonly path: "/weaveapi.storage.v1.Storage/DeleteStorage";
|
|
176
176
|
readonly requestStream: false;
|
|
177
177
|
readonly responseStream: false;
|
|
178
|
-
readonly requestSerialize: (value: DeleteStorageRequest) => Buffer
|
|
178
|
+
readonly requestSerialize: (value: DeleteStorageRequest) => Buffer;
|
|
179
179
|
readonly requestDeserialize: (value: Buffer) => DeleteStorageRequest;
|
|
180
|
-
readonly responseSerialize: (value: DeleteStorageResponse) => Buffer
|
|
180
|
+
readonly responseSerialize: (value: DeleteStorageResponse) => Buffer;
|
|
181
181
|
readonly responseDeserialize: (value: Buffer) => DeleteStorageResponse;
|
|
182
182
|
};
|
|
183
183
|
/** TestStorageConnection tests the connection to a storage */
|
|
@@ -185,9 +185,9 @@ export declare const StorageService: {
|
|
|
185
185
|
readonly path: "/weaveapi.storage.v1.Storage/TestStorageConnection";
|
|
186
186
|
readonly requestStream: false;
|
|
187
187
|
readonly responseStream: false;
|
|
188
|
-
readonly requestSerialize: (value: TestStorageConnectionRequest) => Buffer
|
|
188
|
+
readonly requestSerialize: (value: TestStorageConnectionRequest) => Buffer;
|
|
189
189
|
readonly requestDeserialize: (value: Buffer) => TestStorageConnectionRequest;
|
|
190
|
-
readonly responseSerialize: (value: TestStorageConnectionResponse) => Buffer
|
|
190
|
+
readonly responseSerialize: (value: TestStorageConnectionResponse) => Buffer;
|
|
191
191
|
readonly responseDeserialize: (value: Buffer) => TestStorageConnectionResponse;
|
|
192
192
|
};
|
|
193
193
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/storage/v1/service.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -32,7 +32,7 @@ exports.StorageDetails = {
|
|
|
32
32
|
},
|
|
33
33
|
decode(input, length) {
|
|
34
34
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
35
|
-
|
|
35
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
36
36
|
const message = createBaseStorageDetails();
|
|
37
37
|
while (reader.pos < end) {
|
|
38
38
|
const tag = reader.uint32();
|
|
@@ -132,7 +132,7 @@ exports.CreateStorageRequest = {
|
|
|
132
132
|
},
|
|
133
133
|
decode(input, length) {
|
|
134
134
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
135
|
-
|
|
135
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
136
136
|
const message = createBaseCreateStorageRequest();
|
|
137
137
|
while (reader.pos < end) {
|
|
138
138
|
const tag = reader.uint32();
|
|
@@ -214,7 +214,7 @@ exports.CreateStorageResponse = {
|
|
|
214
214
|
},
|
|
215
215
|
decode(input, length) {
|
|
216
216
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
217
|
-
|
|
217
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
218
218
|
const message = createBaseCreateStorageResponse();
|
|
219
219
|
while (reader.pos < end) {
|
|
220
220
|
const tag = reader.uint32();
|
|
@@ -269,7 +269,7 @@ exports.GetStorageRequest = {
|
|
|
269
269
|
},
|
|
270
270
|
decode(input, length) {
|
|
271
271
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
272
|
-
|
|
272
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
273
273
|
const message = createBaseGetStorageRequest();
|
|
274
274
|
while (reader.pos < end) {
|
|
275
275
|
const tag = reader.uint32();
|
|
@@ -321,7 +321,7 @@ exports.GetStorageResponse = {
|
|
|
321
321
|
},
|
|
322
322
|
decode(input, length) {
|
|
323
323
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
324
|
-
|
|
324
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
325
325
|
const message = createBaseGetStorageResponse();
|
|
326
326
|
while (reader.pos < end) {
|
|
327
327
|
const tag = reader.uint32();
|
|
@@ -382,7 +382,7 @@ exports.ListStoragesRequest = {
|
|
|
382
382
|
},
|
|
383
383
|
decode(input, length) {
|
|
384
384
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
385
|
-
|
|
385
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
386
386
|
const message = createBaseListStoragesRequest();
|
|
387
387
|
while (reader.pos < end) {
|
|
388
388
|
const tag = reader.uint32();
|
|
@@ -470,7 +470,7 @@ exports.StorageTypeFilter = {
|
|
|
470
470
|
},
|
|
471
471
|
decode(input, length) {
|
|
472
472
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
473
|
-
|
|
473
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
474
474
|
const message = createBaseStorageTypeFilter();
|
|
475
475
|
while (reader.pos < end) {
|
|
476
476
|
const tag = reader.uint32();
|
|
@@ -556,7 +556,7 @@ exports.ListStoragesResponse = {
|
|
|
556
556
|
},
|
|
557
557
|
decode(input, length) {
|
|
558
558
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
559
|
-
|
|
559
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
560
560
|
const message = createBaseListStoragesResponse();
|
|
561
561
|
while (reader.pos < end) {
|
|
562
562
|
const tag = reader.uint32();
|
|
@@ -646,7 +646,7 @@ exports.UpdateStorageRequest = {
|
|
|
646
646
|
},
|
|
647
647
|
decode(input, length) {
|
|
648
648
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
649
|
-
|
|
649
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
650
650
|
const message = createBaseUpdateStorageRequest();
|
|
651
651
|
while (reader.pos < end) {
|
|
652
652
|
const tag = reader.uint32();
|
|
@@ -740,7 +740,7 @@ exports.UpdateStorageResponse = {
|
|
|
740
740
|
},
|
|
741
741
|
decode(input, length) {
|
|
742
742
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
743
|
-
|
|
743
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
744
744
|
const message = createBaseUpdateStorageResponse();
|
|
745
745
|
while (reader.pos < end) {
|
|
746
746
|
const tag = reader.uint32();
|
|
@@ -793,7 +793,7 @@ exports.DeleteStorageRequest = {
|
|
|
793
793
|
},
|
|
794
794
|
decode(input, length) {
|
|
795
795
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
796
|
-
|
|
796
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
797
797
|
const message = createBaseDeleteStorageRequest();
|
|
798
798
|
while (reader.pos < end) {
|
|
799
799
|
const tag = reader.uint32();
|
|
@@ -842,7 +842,7 @@ exports.DeleteStorageResponse = {
|
|
|
842
842
|
},
|
|
843
843
|
decode(input, length) {
|
|
844
844
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
845
|
-
|
|
845
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
846
846
|
const message = createBaseDeleteStorageResponse();
|
|
847
847
|
while (reader.pos < end) {
|
|
848
848
|
const tag = reader.uint32();
|
|
@@ -885,7 +885,7 @@ exports.TestStorageConnectionRequest = {
|
|
|
885
885
|
},
|
|
886
886
|
decode(input, length) {
|
|
887
887
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
888
|
-
|
|
888
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
889
889
|
const message = createBaseTestStorageConnectionRequest();
|
|
890
890
|
while (reader.pos < end) {
|
|
891
891
|
const tag = reader.uint32();
|
|
@@ -961,7 +961,7 @@ exports.TestStorageConnectionResponse = {
|
|
|
961
961
|
},
|
|
962
962
|
decode(input, length) {
|
|
963
963
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
964
|
-
|
|
964
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
965
965
|
const message = createBaseTestStorageConnectionResponse();
|
|
966
966
|
while (reader.pos < end) {
|
|
967
967
|
const tag = reader.uint32();
|
|
@@ -1049,7 +1049,7 @@ exports.ConnectionDetails = {
|
|
|
1049
1049
|
},
|
|
1050
1050
|
decode(input, length) {
|
|
1051
1051
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1052
|
-
|
|
1052
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1053
1053
|
const message = createBaseConnectionDetails();
|
|
1054
1054
|
while (reader.pos < end) {
|
|
1055
1055
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/storage/v1/sql_database.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -55,7 +55,7 @@ exports.SqlDatabase = {
|
|
|
55
55
|
},
|
|
56
56
|
decode(input, length) {
|
|
57
57
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
58
|
-
|
|
58
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
59
59
|
const message = createBaseSqlDatabase();
|
|
60
60
|
while (reader.pos < end) {
|
|
61
61
|
const tag = reader.uint32();
|
|
@@ -235,7 +235,7 @@ exports.Mysql = {
|
|
|
235
235
|
},
|
|
236
236
|
decode(input, length) {
|
|
237
237
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
238
|
-
|
|
238
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
239
239
|
const message = createBaseMysql();
|
|
240
240
|
while (reader.pos < end) {
|
|
241
241
|
const tag = reader.uint32();
|
|
@@ -364,7 +364,7 @@ exports.Postgres = {
|
|
|
364
364
|
},
|
|
365
365
|
decode(input, length) {
|
|
366
366
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
367
|
-
|
|
367
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
368
368
|
const message = createBasePostgres();
|
|
369
369
|
while (reader.pos < end) {
|
|
370
370
|
const tag = reader.uint32();
|
|
@@ -493,7 +493,7 @@ exports.SqlServer = {
|
|
|
493
493
|
},
|
|
494
494
|
decode(input, length) {
|
|
495
495
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
496
|
-
|
|
496
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
497
497
|
const message = createBaseSqlServer();
|
|
498
498
|
while (reader.pos < end) {
|
|
499
499
|
const tag = reader.uint32();
|
|
@@ -613,7 +613,7 @@ exports.Oracle = {
|
|
|
613
613
|
},
|
|
614
614
|
decode(input, length) {
|
|
615
615
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
616
|
-
|
|
616
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
617
617
|
const message = createBaseOracle();
|
|
618
618
|
while (reader.pos < end) {
|
|
619
619
|
const tag = reader.uint32();
|
|
@@ -706,7 +706,7 @@ exports.MariaDB = {
|
|
|
706
706
|
},
|
|
707
707
|
decode(input, length) {
|
|
708
708
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
709
|
-
|
|
709
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
710
710
|
const message = createBaseMariaDB();
|
|
711
711
|
while (reader.pos < end) {
|
|
712
712
|
const tag = reader.uint32();
|
|
@@ -838,7 +838,7 @@ exports.Snowflake = {
|
|
|
838
838
|
},
|
|
839
839
|
decode(input, length) {
|
|
840
840
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
841
|
-
|
|
841
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
842
842
|
const message = createBaseSnowflake();
|
|
843
843
|
while (reader.pos < end) {
|
|
844
844
|
const tag = reader.uint32();
|
|
@@ -973,7 +973,7 @@ exports.BigQuery = {
|
|
|
973
973
|
},
|
|
974
974
|
decode(input, length) {
|
|
975
975
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
976
|
-
|
|
976
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
977
977
|
const message = createBaseBigQuery();
|
|
978
978
|
while (reader.pos < end) {
|
|
979
979
|
const tag = reader.uint32();
|
|
@@ -1071,7 +1071,7 @@ exports.Databricks = {
|
|
|
1071
1071
|
},
|
|
1072
1072
|
decode(input, length) {
|
|
1073
1073
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1074
|
-
|
|
1074
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1075
1075
|
const message = createBaseDatabricks();
|
|
1076
1076
|
while (reader.pos < end) {
|
|
1077
1077
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/storage/v1/storage.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -46,7 +46,7 @@ exports.StorageConnection = {
|
|
|
46
46
|
},
|
|
47
47
|
decode(input, length) {
|
|
48
48
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
49
|
-
|
|
49
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
50
50
|
const message = createBaseStorageConnection();
|
|
51
51
|
while (reader.pos < end) {
|
|
52
52
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/synthesize/v1/dataset.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -118,7 +118,7 @@ exports.Dataset = {
|
|
|
118
118
|
},
|
|
119
119
|
decode(input, length) {
|
|
120
120
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
121
|
-
|
|
121
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
122
122
|
const message = createBaseDataset();
|
|
123
123
|
while (reader.pos < end) {
|
|
124
124
|
const tag = reader.uint32();
|
|
@@ -241,7 +241,7 @@ exports.Schema = {
|
|
|
241
241
|
},
|
|
242
242
|
decode(input, length) {
|
|
243
243
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
244
|
-
|
|
244
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
245
245
|
const message = createBaseSchema();
|
|
246
246
|
while (reader.pos < end) {
|
|
247
247
|
const tag = reader.uint32();
|
|
@@ -344,7 +344,7 @@ exports.Column = {
|
|
|
344
344
|
},
|
|
345
345
|
decode(input, length) {
|
|
346
346
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
347
|
-
|
|
347
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
348
348
|
const message = createBaseColumn();
|
|
349
349
|
while (reader.pos < end) {
|
|
350
350
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/synthesize/v1/inline_data.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -82,7 +82,7 @@ exports.InlineData = {
|
|
|
82
82
|
},
|
|
83
83
|
decode(input, length) {
|
|
84
84
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
85
|
-
|
|
85
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
86
86
|
const message = createBaseInlineData();
|
|
87
87
|
while (reader.pos < end) {
|
|
88
88
|
const tag = reader.uint32();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.
|
|
4
|
+
// protoc-gen-ts_proto v2.8.3
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/synthesize/v1/relationship.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -97,7 +97,7 @@ exports.ColumnRelationship = {
|
|
|
97
97
|
},
|
|
98
98
|
decode(input, length) {
|
|
99
99
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
100
|
-
|
|
100
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
101
101
|
const message = createBaseColumnRelationship();
|
|
102
102
|
while (reader.pos < end) {
|
|
103
103
|
const tag = reader.uint32();
|
|
@@ -182,7 +182,7 @@ exports.ColumnReference = {
|
|
|
182
182
|
},
|
|
183
183
|
decode(input, length) {
|
|
184
184
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
185
|
-
|
|
185
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
186
186
|
const message = createBaseColumnReference();
|
|
187
187
|
while (reader.pos < end) {
|
|
188
188
|
const tag = reader.uint32();
|