@teslemetry/tesla-protocol 0.5.0 → 1.0.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/README.md +1 -3
- package/dist/charging/charging.cjs +550 -0
- package/dist/charging/charging.d.cts +75 -0
- package/dist/charging/charging.d.mts +75 -0
- package/dist/charging/charging.mjs +543 -0
- package/dist/command/car_server.cjs +212 -11
- package/dist/command/car_server.d.cts +121 -96
- package/dist/command/car_server.d.mts +121 -96
- package/dist/command/car_server.mjs +206 -12
- package/dist/command/common.cjs +43 -0
- package/dist/command/common.d.cts +6 -2
- package/dist/command/common.d.mts +6 -2
- package/dist/command/common.mjs +43 -1
- package/dist/command/managed_charging.d.cts +1 -1
- package/dist/command/managed_charging.d.mts +1 -1
- package/dist/command/session.d.cts +0 -4
- package/dist/command/session.d.mts +0 -4
- package/dist/command/universal_message.cjs +8 -3
- package/dist/command/universal_message.d.cts +5 -3
- package/dist/command/universal_message.d.mts +5 -3
- package/dist/command/universal_message.mjs +8 -3
- package/dist/command/vcsec.cjs +124 -39
- package/dist/command/vcsec.d.cts +50 -40
- package/dist/command/vcsec.d.mts +50 -40
- package/dist/command/vcsec.mjs +123 -40
- package/dist/command/vehicle.cjs +156 -18
- package/dist/command/vehicle.d.cts +70 -57
- package/dist/command/vehicle.d.mts +70 -57
- package/dist/command/vehicle.mjs +156 -20
- package/dist/dashcam/dashcam_sei.cjs +263 -0
- package/dist/dashcam/dashcam_sei.d.cts +60 -0
- package/dist/dashcam/dashcam_sei.d.mts +60 -0
- package/dist/dashcam/dashcam_sei.mjs +255 -0
- package/dist/energy_command/identifier_type.cjs +0 -5
- package/dist/energy_command/identifier_type.d.cts +0 -5
- package/dist/energy_command/identifier_type.d.mts +0 -5
- package/dist/energy_command/identifier_type.mjs +0 -5
- package/dist/energy_device/authorization_api.d.cts +0 -5
- package/dist/energy_device/authorization_api.d.mts +0 -5
- package/dist/energy_device/authorization_types.cjs +0 -5
- package/dist/energy_device/authorization_types.d.cts +0 -5
- package/dist/energy_device/authorization_types.d.mts +0 -5
- package/dist/energy_device/authorization_types.mjs +0 -5
- package/dist/energy_device/common_api.cjs +604 -11
- package/dist/energy_device/common_api.d.cts +60 -8
- package/dist/energy_device/common_api.d.mts +60 -8
- package/dist/energy_device/common_api.mjs +596 -12
- package/dist/energy_device/device.cjs +129 -5
- package/dist/energy_device/device.d.cts +13 -6
- package/dist/energy_device/device.d.mts +13 -6
- package/dist/energy_device/device.mjs +127 -6
- package/dist/energy_device/energy.cjs +0 -5
- package/dist/energy_device/energy.d.cts +0 -5
- package/dist/energy_device/energy.d.mts +0 -5
- package/dist/energy_device/energy.mjs +0 -5
- package/dist/energy_device/energy_site_net.cjs +747 -5
- package/dist/energy_device/energy_site_net.d.cts +84 -6
- package/dist/energy_device/energy_site_net.d.mts +84 -6
- package/dist/energy_device/energy_site_net.mjs +736 -6
- package/dist/energy_device/error.d.cts +0 -5
- package/dist/energy_device/error.d.mts +0 -5
- package/dist/energy_device/filestore_api.cjs +570 -0
- package/dist/energy_device/filestore_api.d.cts +76 -0
- package/dist/energy_device/filestore_api.d.mts +76 -0
- package/dist/energy_device/filestore_api.mjs +558 -0
- package/dist/energy_device/google/protobuf/duration.cjs +71 -0
- package/dist/energy_device/google/protobuf/duration.d.cts +95 -0
- package/dist/energy_device/google/protobuf/duration.d.mts +95 -0
- package/dist/energy_device/google/protobuf/duration.mjs +69 -0
- package/dist/energy_device/graphql_api.cjs +444 -0
- package/dist/energy_device/graphql_api.d.cts +73 -0
- package/dist/energy_device/graphql_api.d.mts +73 -0
- package/dist/energy_device/graphql_api.mjs +429 -0
- package/dist/energy_device/intra_site_api.cjs +1693 -0
- package/dist/energy_device/intra_site_api.d.cts +222 -0
- package/dist/energy_device/intra_site_api.d.mts +222 -0
- package/dist/energy_device/intra_site_api.mjs +1639 -0
- package/dist/energy_device/local_auth_api.cjs +500 -0
- package/dist/energy_device/local_auth_api.d.cts +68 -0
- package/dist/energy_device/local_auth_api.d.mts +68 -0
- package/dist/energy_device/local_auth_api.mjs +487 -0
- package/dist/energy_device/networking.cjs +20 -7
- package/dist/energy_device/networking.d.cts +2 -5
- package/dist/energy_device/networking.d.mts +2 -5
- package/dist/energy_device/networking.mjs +20 -7
- package/dist/energy_device/neurio_meter_api.cjs +1437 -0
- package/dist/energy_device/neurio_meter_api.d.cts +197 -0
- package/dist/energy_device/neurio_meter_api.d.mts +197 -0
- package/dist/energy_device/neurio_meter_api.mjs +1396 -0
- package/dist/energy_device/pvi_api.cjs +2949 -0
- package/dist/energy_device/pvi_api.d.cts +314 -0
- package/dist/energy_device/pvi_api.d.mts +314 -0
- package/dist/energy_device/pvi_api.mjs +2887 -0
- package/dist/energy_device/teg_api.cjs +5179 -147
- package/dist/energy_device/teg_api.d.cts +490 -80
- package/dist/energy_device/teg_api.d.mts +490 -80
- package/dist/energy_device/teg_api.mjs +5059 -148
- package/dist/energy_device/transport.cjs +82 -7
- package/dist/energy_device/transport.d.cts +16 -10
- package/dist/energy_device/transport.d.mts +16 -10
- package/dist/energy_device/transport.mjs +82 -7
- package/dist/energy_device/update.cjs +33 -11
- package/dist/energy_device/update.d.cts +3 -5
- package/dist/energy_device/update.d.mts +3 -5
- package/dist/energy_device/update.mjs +33 -11
- package/dist/energy_device/wall_connector.cjs +6729 -10
- package/dist/energy_device/wall_connector.d.cts +696 -7
- package/dist/energy_device/wall_connector.d.mts +696 -7
- package/dist/energy_device/wall_connector.mjs +6591 -11
- package/dist/telemetry/vehicle_data.cjs +1 -1
- package/dist/telemetry/vehicle_data.d.cts +1 -1
- package/dist/telemetry/vehicle_data.d.mts +1 -1
- package/dist/telemetry/vehicle_data.mjs +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_energy_device_google_protobuf_wrappers = require("./google/protobuf/wrappers.cjs");
|
|
3
|
+
let _bufbuild_protobuf_wire = require("@bufbuild/protobuf/wire");
|
|
4
|
+
//#region src/energy_device/graphql_api.ts
|
|
5
|
+
const protobufPackage = "tesla.proto.energy_device.v1";
|
|
6
|
+
let GraphQLQueryFormat = /* @__PURE__ */ function(GraphQLQueryFormat) {
|
|
7
|
+
GraphQLQueryFormat[GraphQLQueryFormat["GRAPH_QL_QUERY_FORMAT_INVALID"] = 0] = "GRAPH_QL_QUERY_FORMAT_INVALID";
|
|
8
|
+
GraphQLQueryFormat[GraphQLQueryFormat["GRAPH_QL_QUERY_FORMAT_RAW"] = 1] = "GRAPH_QL_QUERY_FORMAT_RAW";
|
|
9
|
+
GraphQLQueryFormat[GraphQLQueryFormat["GRAPH_QL_QUERY_FORMAT_SIGNED_SHA256_ECDSA_ASN1"] = 2] = "GRAPH_QL_QUERY_FORMAT_SIGNED_SHA256_ECDSA_ASN1";
|
|
10
|
+
GraphQLQueryFormat[GraphQLQueryFormat["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
11
|
+
return GraphQLQueryFormat;
|
|
12
|
+
}({});
|
|
13
|
+
function graphQLQueryFormatFromJSON(object) {
|
|
14
|
+
switch (object) {
|
|
15
|
+
case 0:
|
|
16
|
+
case "GRAPH_QL_QUERY_FORMAT_INVALID": return 0;
|
|
17
|
+
case 1:
|
|
18
|
+
case "GRAPH_QL_QUERY_FORMAT_RAW": return 1;
|
|
19
|
+
case 2:
|
|
20
|
+
case "GRAPH_QL_QUERY_FORMAT_SIGNED_SHA256_ECDSA_ASN1": return 2;
|
|
21
|
+
default: return -1;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
function graphQLQueryFormatToJSON(object) {
|
|
25
|
+
switch (object) {
|
|
26
|
+
case 0: return "GRAPH_QL_QUERY_FORMAT_INVALID";
|
|
27
|
+
case 1: return "GRAPH_QL_QUERY_FORMAT_RAW";
|
|
28
|
+
case 2: return "GRAPH_QL_QUERY_FORMAT_SIGNED_SHA256_ECDSA_ASN1";
|
|
29
|
+
default: return "UNRECOGNIZED";
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
let GraphQLStatus = /* @__PURE__ */ function(GraphQLStatus) {
|
|
33
|
+
GraphQLStatus[GraphQLStatus["GRAPH_QL_STATUS_INVALID"] = 0] = "GRAPH_QL_STATUS_INVALID";
|
|
34
|
+
GraphQLStatus[GraphQLStatus["GRAPH_QL_STATUS_SUCCESS"] = 1] = "GRAPH_QL_STATUS_SUCCESS";
|
|
35
|
+
GraphQLStatus[GraphQLStatus["GRAPH_QL_STATUS_ERROR_PARTIAL"] = 2] = "GRAPH_QL_STATUS_ERROR_PARTIAL";
|
|
36
|
+
GraphQLStatus[GraphQLStatus["GRAPH_QL_STATUS_ERROR_FULL"] = 3] = "GRAPH_QL_STATUS_ERROR_FULL";
|
|
37
|
+
GraphQLStatus[GraphQLStatus["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
38
|
+
return GraphQLStatus;
|
|
39
|
+
}({});
|
|
40
|
+
function graphQLStatusFromJSON(object) {
|
|
41
|
+
switch (object) {
|
|
42
|
+
case 0:
|
|
43
|
+
case "GRAPH_QL_STATUS_INVALID": return 0;
|
|
44
|
+
case 1:
|
|
45
|
+
case "GRAPH_QL_STATUS_SUCCESS": return 1;
|
|
46
|
+
case 2:
|
|
47
|
+
case "GRAPH_QL_STATUS_ERROR_PARTIAL": return 2;
|
|
48
|
+
case 3:
|
|
49
|
+
case "GRAPH_QL_STATUS_ERROR_FULL": return 3;
|
|
50
|
+
default: return -1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
function graphQLStatusToJSON(object) {
|
|
54
|
+
switch (object) {
|
|
55
|
+
case 0: return "GRAPH_QL_STATUS_INVALID";
|
|
56
|
+
case 1: return "GRAPH_QL_STATUS_SUCCESS";
|
|
57
|
+
case 2: return "GRAPH_QL_STATUS_ERROR_PARTIAL";
|
|
58
|
+
case 3: return "GRAPH_QL_STATUS_ERROR_FULL";
|
|
59
|
+
default: return "UNRECOGNIZED";
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
let GraphQLErrorCode = /* @__PURE__ */ function(GraphQLErrorCode) {
|
|
63
|
+
GraphQLErrorCode[GraphQLErrorCode["GRAPH_QL_ERROR_CODE_INVALID"] = 0] = "GRAPH_QL_ERROR_CODE_INVALID";
|
|
64
|
+
GraphQLErrorCode[GraphQLErrorCode["GRAPH_QL_ERROR_CODE_FIELD_NOT_FOUND"] = 1] = "GRAPH_QL_ERROR_CODE_FIELD_NOT_FOUND";
|
|
65
|
+
GraphQLErrorCode[GraphQLErrorCode["GRAPH_QL_ERROR_CODE_UNAUTHORIZED"] = 2] = "GRAPH_QL_ERROR_CODE_UNAUTHORIZED";
|
|
66
|
+
GraphQLErrorCode[GraphQLErrorCode["GRAPH_QL_ERROR_CODE_RESOLVER_PROCESS_UNRESPONSIVE"] = 3] = "GRAPH_QL_ERROR_CODE_RESOLVER_PROCESS_UNRESPONSIVE";
|
|
67
|
+
GraphQLErrorCode[GraphQLErrorCode["GRAPH_QL_ERROR_CODE_RESPONSE_TOO_BIG"] = 4] = "GRAPH_QL_ERROR_CODE_RESPONSE_TOO_BIG";
|
|
68
|
+
GraphQLErrorCode[GraphQLErrorCode["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
69
|
+
return GraphQLErrorCode;
|
|
70
|
+
}({});
|
|
71
|
+
function graphQLErrorCodeFromJSON(object) {
|
|
72
|
+
switch (object) {
|
|
73
|
+
case 0:
|
|
74
|
+
case "GRAPH_QL_ERROR_CODE_INVALID": return 0;
|
|
75
|
+
case 1:
|
|
76
|
+
case "GRAPH_QL_ERROR_CODE_FIELD_NOT_FOUND": return 1;
|
|
77
|
+
case 2:
|
|
78
|
+
case "GRAPH_QL_ERROR_CODE_UNAUTHORIZED": return 2;
|
|
79
|
+
case 3:
|
|
80
|
+
case "GRAPH_QL_ERROR_CODE_RESOLVER_PROCESS_UNRESPONSIVE": return 3;
|
|
81
|
+
case 4:
|
|
82
|
+
case "GRAPH_QL_ERROR_CODE_RESPONSE_TOO_BIG": return 4;
|
|
83
|
+
default: return -1;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
function graphQLErrorCodeToJSON(object) {
|
|
87
|
+
switch (object) {
|
|
88
|
+
case 0: return "GRAPH_QL_ERROR_CODE_INVALID";
|
|
89
|
+
case 1: return "GRAPH_QL_ERROR_CODE_FIELD_NOT_FOUND";
|
|
90
|
+
case 2: return "GRAPH_QL_ERROR_CODE_UNAUTHORIZED";
|
|
91
|
+
case 3: return "GRAPH_QL_ERROR_CODE_RESOLVER_PROCESS_UNRESPONSIVE";
|
|
92
|
+
case 4: return "GRAPH_QL_ERROR_CODE_RESPONSE_TOO_BIG";
|
|
93
|
+
default: return "UNRECOGNIZED";
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
function createBaseSignedGraphQLQuery() {
|
|
97
|
+
return {
|
|
98
|
+
version: 0,
|
|
99
|
+
query: /* @__PURE__ */ new Uint8Array(0)
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
const SignedGraphQLQuery = {
|
|
103
|
+
encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
|
|
104
|
+
if (message.version !== 0) writer.uint32(8).uint32(message.version);
|
|
105
|
+
if (message.query.length !== 0) writer.uint32(18).bytes(message.query);
|
|
106
|
+
return writer;
|
|
107
|
+
},
|
|
108
|
+
decode(input, length) {
|
|
109
|
+
const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
|
|
110
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
111
|
+
const message = createBaseSignedGraphQLQuery();
|
|
112
|
+
while (reader.pos < end) {
|
|
113
|
+
const tag = reader.uint32();
|
|
114
|
+
switch (tag >>> 3) {
|
|
115
|
+
case 1:
|
|
116
|
+
if (tag !== 8) break;
|
|
117
|
+
message.version = reader.uint32();
|
|
118
|
+
continue;
|
|
119
|
+
case 2:
|
|
120
|
+
if (tag !== 18) break;
|
|
121
|
+
message.query = reader.bytes();
|
|
122
|
+
continue;
|
|
123
|
+
}
|
|
124
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
125
|
+
reader.skip(tag & 7);
|
|
126
|
+
}
|
|
127
|
+
return message;
|
|
128
|
+
},
|
|
129
|
+
fromJSON(object) {
|
|
130
|
+
return {
|
|
131
|
+
version: isSet(object.version) ? globalThis.Number(object.version) : 0,
|
|
132
|
+
query: isSet(object.query) ? bytesFromBase64(object.query) : /* @__PURE__ */ new Uint8Array(0)
|
|
133
|
+
};
|
|
134
|
+
},
|
|
135
|
+
toJSON(message) {
|
|
136
|
+
const obj = {};
|
|
137
|
+
if (message.version !== void 0) obj.version = Math.round(message.version);
|
|
138
|
+
if (message.query !== void 0) obj.query = base64FromBytes(message.query);
|
|
139
|
+
return obj;
|
|
140
|
+
},
|
|
141
|
+
create(base) {
|
|
142
|
+
return SignedGraphQLQuery.fromPartial(base ?? {});
|
|
143
|
+
},
|
|
144
|
+
fromPartial(object) {
|
|
145
|
+
const message = createBaseSignedGraphQLQuery();
|
|
146
|
+
message.version = object.version ?? 0;
|
|
147
|
+
message.query = object.query ?? /* @__PURE__ */ new Uint8Array(0);
|
|
148
|
+
return message;
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
function createBaseGraphQLError() {
|
|
152
|
+
return {
|
|
153
|
+
path: [],
|
|
154
|
+
code: 0,
|
|
155
|
+
message: ""
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
const GraphQLError = {
|
|
159
|
+
encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
|
|
160
|
+
for (const v of message.path) writer.uint32(10).string(v);
|
|
161
|
+
if (message.code !== 0) writer.uint32(16).int32(message.code);
|
|
162
|
+
if (message.message !== "") writer.uint32(26).string(message.message);
|
|
163
|
+
return writer;
|
|
164
|
+
},
|
|
165
|
+
decode(input, length) {
|
|
166
|
+
const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
|
|
167
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
168
|
+
const message = createBaseGraphQLError();
|
|
169
|
+
while (reader.pos < end) {
|
|
170
|
+
const tag = reader.uint32();
|
|
171
|
+
switch (tag >>> 3) {
|
|
172
|
+
case 1:
|
|
173
|
+
if (tag !== 10) break;
|
|
174
|
+
message.path.push(reader.string());
|
|
175
|
+
continue;
|
|
176
|
+
case 2:
|
|
177
|
+
if (tag !== 16) break;
|
|
178
|
+
message.code = reader.int32();
|
|
179
|
+
continue;
|
|
180
|
+
case 3:
|
|
181
|
+
if (tag !== 26) break;
|
|
182
|
+
message.message = reader.string();
|
|
183
|
+
continue;
|
|
184
|
+
}
|
|
185
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
186
|
+
reader.skip(tag & 7);
|
|
187
|
+
}
|
|
188
|
+
return message;
|
|
189
|
+
},
|
|
190
|
+
fromJSON(object) {
|
|
191
|
+
return {
|
|
192
|
+
path: globalThis.Array.isArray(object?.path) ? object.path.map((e) => globalThis.String(e)) : [],
|
|
193
|
+
code: isSet(object.code) ? graphQLErrorCodeFromJSON(object.code) : 0,
|
|
194
|
+
message: isSet(object.message) ? globalThis.String(object.message) : ""
|
|
195
|
+
};
|
|
196
|
+
},
|
|
197
|
+
toJSON(message) {
|
|
198
|
+
const obj = {};
|
|
199
|
+
if (message.path?.length) obj.path = message.path;
|
|
200
|
+
if (message.code !== void 0) obj.code = graphQLErrorCodeToJSON(message.code);
|
|
201
|
+
if (message.message !== void 0) obj.message = message.message;
|
|
202
|
+
return obj;
|
|
203
|
+
},
|
|
204
|
+
create(base) {
|
|
205
|
+
return GraphQLError.fromPartial(base ?? {});
|
|
206
|
+
},
|
|
207
|
+
fromPartial(object) {
|
|
208
|
+
const message = createBaseGraphQLError();
|
|
209
|
+
message.path = object.path?.map((e) => e) || [];
|
|
210
|
+
message.code = object.code ?? 0;
|
|
211
|
+
message.message = object.message ?? "";
|
|
212
|
+
return message;
|
|
213
|
+
}
|
|
214
|
+
};
|
|
215
|
+
function createBaseGraphQLAPIQueryRequest() {
|
|
216
|
+
return {
|
|
217
|
+
format: 0,
|
|
218
|
+
query: /* @__PURE__ */ new Uint8Array(0),
|
|
219
|
+
signature: /* @__PURE__ */ new Uint8Array(0),
|
|
220
|
+
variablesJson: void 0
|
|
221
|
+
};
|
|
222
|
+
}
|
|
223
|
+
const GraphQLAPIQueryRequest = {
|
|
224
|
+
encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
|
|
225
|
+
if (message.format !== 0) writer.uint32(8).int32(message.format);
|
|
226
|
+
if (message.query.length !== 0) writer.uint32(18).bytes(message.query);
|
|
227
|
+
if (message.signature.length !== 0) writer.uint32(26).bytes(message.signature);
|
|
228
|
+
if (message.variablesJson !== void 0) require_energy_device_google_protobuf_wrappers.StringValue.encode({ value: message.variablesJson }, writer.uint32(34).fork()).join();
|
|
229
|
+
return writer;
|
|
230
|
+
},
|
|
231
|
+
decode(input, length) {
|
|
232
|
+
const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
|
|
233
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
234
|
+
const message = createBaseGraphQLAPIQueryRequest();
|
|
235
|
+
while (reader.pos < end) {
|
|
236
|
+
const tag = reader.uint32();
|
|
237
|
+
switch (tag >>> 3) {
|
|
238
|
+
case 1:
|
|
239
|
+
if (tag !== 8) break;
|
|
240
|
+
message.format = reader.int32();
|
|
241
|
+
continue;
|
|
242
|
+
case 2:
|
|
243
|
+
if (tag !== 18) break;
|
|
244
|
+
message.query = reader.bytes();
|
|
245
|
+
continue;
|
|
246
|
+
case 3:
|
|
247
|
+
if (tag !== 26) break;
|
|
248
|
+
message.signature = reader.bytes();
|
|
249
|
+
continue;
|
|
250
|
+
case 4:
|
|
251
|
+
if (tag !== 34) break;
|
|
252
|
+
message.variablesJson = require_energy_device_google_protobuf_wrappers.StringValue.decode(reader, reader.uint32()).value;
|
|
253
|
+
continue;
|
|
254
|
+
}
|
|
255
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
256
|
+
reader.skip(tag & 7);
|
|
257
|
+
}
|
|
258
|
+
return message;
|
|
259
|
+
},
|
|
260
|
+
fromJSON(object) {
|
|
261
|
+
return {
|
|
262
|
+
format: isSet(object.format) ? graphQLQueryFormatFromJSON(object.format) : 0,
|
|
263
|
+
query: isSet(object.query) ? bytesFromBase64(object.query) : /* @__PURE__ */ new Uint8Array(0),
|
|
264
|
+
signature: isSet(object.signature) ? bytesFromBase64(object.signature) : /* @__PURE__ */ new Uint8Array(0),
|
|
265
|
+
variablesJson: isSet(object.variablesJson) ? String(object.variablesJson) : void 0
|
|
266
|
+
};
|
|
267
|
+
},
|
|
268
|
+
toJSON(message) {
|
|
269
|
+
const obj = {};
|
|
270
|
+
if (message.format !== void 0) obj.format = graphQLQueryFormatToJSON(message.format);
|
|
271
|
+
if (message.query !== void 0) obj.query = base64FromBytes(message.query);
|
|
272
|
+
if (message.signature !== void 0) obj.signature = base64FromBytes(message.signature);
|
|
273
|
+
if (message.variablesJson !== void 0) obj.variablesJson = message.variablesJson;
|
|
274
|
+
return obj;
|
|
275
|
+
},
|
|
276
|
+
create(base) {
|
|
277
|
+
return GraphQLAPIQueryRequest.fromPartial(base ?? {});
|
|
278
|
+
},
|
|
279
|
+
fromPartial(object) {
|
|
280
|
+
const message = createBaseGraphQLAPIQueryRequest();
|
|
281
|
+
message.format = object.format ?? 0;
|
|
282
|
+
message.query = object.query ?? /* @__PURE__ */ new Uint8Array(0);
|
|
283
|
+
message.signature = object.signature ?? /* @__PURE__ */ new Uint8Array(0);
|
|
284
|
+
message.variablesJson = object.variablesJson ?? void 0;
|
|
285
|
+
return message;
|
|
286
|
+
}
|
|
287
|
+
};
|
|
288
|
+
function createBaseGraphQLAPIQueryResponse() {
|
|
289
|
+
return {
|
|
290
|
+
status: 0,
|
|
291
|
+
data: "",
|
|
292
|
+
errors: []
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
const GraphQLAPIQueryResponse = {
|
|
296
|
+
encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
|
|
297
|
+
if (message.status !== 0) writer.uint32(8).int32(message.status);
|
|
298
|
+
if (message.data !== "") writer.uint32(18).string(message.data);
|
|
299
|
+
for (const v of message.errors) GraphQLError.encode(v, writer.uint32(26).fork()).join();
|
|
300
|
+
return writer;
|
|
301
|
+
},
|
|
302
|
+
decode(input, length) {
|
|
303
|
+
const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
|
|
304
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
305
|
+
const message = createBaseGraphQLAPIQueryResponse();
|
|
306
|
+
while (reader.pos < end) {
|
|
307
|
+
const tag = reader.uint32();
|
|
308
|
+
switch (tag >>> 3) {
|
|
309
|
+
case 1:
|
|
310
|
+
if (tag !== 8) break;
|
|
311
|
+
message.status = reader.int32();
|
|
312
|
+
continue;
|
|
313
|
+
case 2:
|
|
314
|
+
if (tag !== 18) break;
|
|
315
|
+
message.data = reader.string();
|
|
316
|
+
continue;
|
|
317
|
+
case 3:
|
|
318
|
+
if (tag !== 26) break;
|
|
319
|
+
message.errors.push(GraphQLError.decode(reader, reader.uint32()));
|
|
320
|
+
continue;
|
|
321
|
+
}
|
|
322
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
323
|
+
reader.skip(tag & 7);
|
|
324
|
+
}
|
|
325
|
+
return message;
|
|
326
|
+
},
|
|
327
|
+
fromJSON(object) {
|
|
328
|
+
return {
|
|
329
|
+
status: isSet(object.status) ? graphQLStatusFromJSON(object.status) : 0,
|
|
330
|
+
data: isSet(object.data) ? globalThis.String(object.data) : "",
|
|
331
|
+
errors: globalThis.Array.isArray(object?.errors) ? object.errors.map((e) => GraphQLError.fromJSON(e)) : []
|
|
332
|
+
};
|
|
333
|
+
},
|
|
334
|
+
toJSON(message) {
|
|
335
|
+
const obj = {};
|
|
336
|
+
if (message.status !== void 0) obj.status = graphQLStatusToJSON(message.status);
|
|
337
|
+
if (message.data !== void 0) obj.data = message.data;
|
|
338
|
+
if (message.errors?.length) obj.errors = message.errors.map((e) => GraphQLError.toJSON(e));
|
|
339
|
+
return obj;
|
|
340
|
+
},
|
|
341
|
+
create(base) {
|
|
342
|
+
return GraphQLAPIQueryResponse.fromPartial(base ?? {});
|
|
343
|
+
},
|
|
344
|
+
fromPartial(object) {
|
|
345
|
+
const message = createBaseGraphQLAPIQueryResponse();
|
|
346
|
+
message.status = object.status ?? 0;
|
|
347
|
+
message.data = object.data ?? "";
|
|
348
|
+
message.errors = object.errors?.map((e) => GraphQLError.fromPartial(e)) || [];
|
|
349
|
+
return message;
|
|
350
|
+
}
|
|
351
|
+
};
|
|
352
|
+
function createBaseGraphQLMessages() {
|
|
353
|
+
return {
|
|
354
|
+
queryRequest: void 0,
|
|
355
|
+
queryResponse: void 0
|
|
356
|
+
};
|
|
357
|
+
}
|
|
358
|
+
const GraphQLMessages = {
|
|
359
|
+
encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
|
|
360
|
+
if (message.queryRequest !== void 0) GraphQLAPIQueryRequest.encode(message.queryRequest, writer.uint32(10).fork()).join();
|
|
361
|
+
if (message.queryResponse !== void 0) GraphQLAPIQueryResponse.encode(message.queryResponse, writer.uint32(18).fork()).join();
|
|
362
|
+
return writer;
|
|
363
|
+
},
|
|
364
|
+
decode(input, length) {
|
|
365
|
+
const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
|
|
366
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
367
|
+
const message = createBaseGraphQLMessages();
|
|
368
|
+
while (reader.pos < end) {
|
|
369
|
+
const tag = reader.uint32();
|
|
370
|
+
switch (tag >>> 3) {
|
|
371
|
+
case 1:
|
|
372
|
+
if (tag !== 10) break;
|
|
373
|
+
message.queryRequest = GraphQLAPIQueryRequest.decode(reader, reader.uint32());
|
|
374
|
+
continue;
|
|
375
|
+
case 2:
|
|
376
|
+
if (tag !== 18) break;
|
|
377
|
+
message.queryResponse = GraphQLAPIQueryResponse.decode(reader, reader.uint32());
|
|
378
|
+
continue;
|
|
379
|
+
}
|
|
380
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
381
|
+
reader.skip(tag & 7);
|
|
382
|
+
}
|
|
383
|
+
return message;
|
|
384
|
+
},
|
|
385
|
+
fromJSON(object) {
|
|
386
|
+
return {
|
|
387
|
+
queryRequest: isSet(object.queryRequest) ? GraphQLAPIQueryRequest.fromJSON(object.queryRequest) : void 0,
|
|
388
|
+
queryResponse: isSet(object.queryResponse) ? GraphQLAPIQueryResponse.fromJSON(object.queryResponse) : void 0
|
|
389
|
+
};
|
|
390
|
+
},
|
|
391
|
+
toJSON(message) {
|
|
392
|
+
const obj = {};
|
|
393
|
+
if (message.queryRequest !== void 0) obj.queryRequest = GraphQLAPIQueryRequest.toJSON(message.queryRequest);
|
|
394
|
+
if (message.queryResponse !== void 0) obj.queryResponse = GraphQLAPIQueryResponse.toJSON(message.queryResponse);
|
|
395
|
+
return obj;
|
|
396
|
+
},
|
|
397
|
+
create(base) {
|
|
398
|
+
return GraphQLMessages.fromPartial(base ?? {});
|
|
399
|
+
},
|
|
400
|
+
fromPartial(object) {
|
|
401
|
+
const message = createBaseGraphQLMessages();
|
|
402
|
+
message.queryRequest = object.queryRequest !== void 0 && object.queryRequest !== null ? GraphQLAPIQueryRequest.fromPartial(object.queryRequest) : void 0;
|
|
403
|
+
message.queryResponse = object.queryResponse !== void 0 && object.queryResponse !== null ? GraphQLAPIQueryResponse.fromPartial(object.queryResponse) : void 0;
|
|
404
|
+
return message;
|
|
405
|
+
}
|
|
406
|
+
};
|
|
407
|
+
function bytesFromBase64(b64) {
|
|
408
|
+
if (globalThis.Buffer) return Uint8Array.from(globalThis.Buffer.from(b64, "base64"));
|
|
409
|
+
else {
|
|
410
|
+
const bin = globalThis.atob(b64);
|
|
411
|
+
const arr = new Uint8Array(bin.length);
|
|
412
|
+
for (let i = 0; i < bin.length; ++i) arr[i] = bin.charCodeAt(i);
|
|
413
|
+
return arr;
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
function base64FromBytes(arr) {
|
|
417
|
+
if (globalThis.Buffer) return globalThis.Buffer.from(arr).toString("base64");
|
|
418
|
+
else {
|
|
419
|
+
const bin = [];
|
|
420
|
+
arr.forEach((byte) => {
|
|
421
|
+
bin.push(globalThis.String.fromCharCode(byte));
|
|
422
|
+
});
|
|
423
|
+
return globalThis.btoa(bin.join(""));
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
function isSet(value) {
|
|
427
|
+
return value !== null && value !== void 0;
|
|
428
|
+
}
|
|
429
|
+
//#endregion
|
|
430
|
+
exports.GraphQLAPIQueryRequest = GraphQLAPIQueryRequest;
|
|
431
|
+
exports.GraphQLAPIQueryResponse = GraphQLAPIQueryResponse;
|
|
432
|
+
exports.GraphQLError = GraphQLError;
|
|
433
|
+
exports.GraphQLErrorCode = GraphQLErrorCode;
|
|
434
|
+
exports.GraphQLMessages = GraphQLMessages;
|
|
435
|
+
exports.GraphQLQueryFormat = GraphQLQueryFormat;
|
|
436
|
+
exports.GraphQLStatus = GraphQLStatus;
|
|
437
|
+
exports.SignedGraphQLQuery = SignedGraphQLQuery;
|
|
438
|
+
exports.graphQLErrorCodeFromJSON = graphQLErrorCodeFromJSON;
|
|
439
|
+
exports.graphQLErrorCodeToJSON = graphQLErrorCodeToJSON;
|
|
440
|
+
exports.graphQLQueryFormatFromJSON = graphQLQueryFormatFromJSON;
|
|
441
|
+
exports.graphQLQueryFormatToJSON = graphQLQueryFormatToJSON;
|
|
442
|
+
exports.graphQLStatusFromJSON = graphQLStatusFromJSON;
|
|
443
|
+
exports.graphQLStatusToJSON = graphQLStatusToJSON;
|
|
444
|
+
exports.protobufPackage = protobufPackage;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
//#region src/energy_device/graphql_api.d.ts
|
|
3
|
+
declare const protobufPackage = "tesla.proto.energy_device.v1";
|
|
4
|
+
declare enum GraphQLQueryFormat {
|
|
5
|
+
GRAPH_QL_QUERY_FORMAT_INVALID = 0,
|
|
6
|
+
GRAPH_QL_QUERY_FORMAT_RAW = 1,
|
|
7
|
+
GRAPH_QL_QUERY_FORMAT_SIGNED_SHA256_ECDSA_ASN1 = 2,
|
|
8
|
+
UNRECOGNIZED = -1
|
|
9
|
+
}
|
|
10
|
+
declare function graphQLQueryFormatFromJSON(object: any): GraphQLQueryFormat;
|
|
11
|
+
declare function graphQLQueryFormatToJSON(object: GraphQLQueryFormat): string;
|
|
12
|
+
declare enum GraphQLStatus {
|
|
13
|
+
GRAPH_QL_STATUS_INVALID = 0,
|
|
14
|
+
GRAPH_QL_STATUS_SUCCESS = 1,
|
|
15
|
+
GRAPH_QL_STATUS_ERROR_PARTIAL = 2,
|
|
16
|
+
GRAPH_QL_STATUS_ERROR_FULL = 3,
|
|
17
|
+
UNRECOGNIZED = -1
|
|
18
|
+
}
|
|
19
|
+
declare function graphQLStatusFromJSON(object: any): GraphQLStatus;
|
|
20
|
+
declare function graphQLStatusToJSON(object: GraphQLStatus): string;
|
|
21
|
+
declare enum GraphQLErrorCode {
|
|
22
|
+
GRAPH_QL_ERROR_CODE_INVALID = 0,
|
|
23
|
+
GRAPH_QL_ERROR_CODE_FIELD_NOT_FOUND = 1,
|
|
24
|
+
GRAPH_QL_ERROR_CODE_UNAUTHORIZED = 2,
|
|
25
|
+
GRAPH_QL_ERROR_CODE_RESOLVER_PROCESS_UNRESPONSIVE = 3,
|
|
26
|
+
GRAPH_QL_ERROR_CODE_RESPONSE_TOO_BIG = 4,
|
|
27
|
+
UNRECOGNIZED = -1
|
|
28
|
+
}
|
|
29
|
+
declare function graphQLErrorCodeFromJSON(object: any): GraphQLErrorCode;
|
|
30
|
+
declare function graphQLErrorCodeToJSON(object: GraphQLErrorCode): string;
|
|
31
|
+
interface SignedGraphQLQuery {
|
|
32
|
+
version: number;
|
|
33
|
+
query: Uint8Array;
|
|
34
|
+
}
|
|
35
|
+
interface GraphQLError {
|
|
36
|
+
path: string[];
|
|
37
|
+
code: GraphQLErrorCode;
|
|
38
|
+
message: string;
|
|
39
|
+
}
|
|
40
|
+
interface GraphQLAPIQueryRequest {
|
|
41
|
+
format: GraphQLQueryFormat;
|
|
42
|
+
query: Uint8Array;
|
|
43
|
+
signature: Uint8Array;
|
|
44
|
+
variablesJson: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
interface GraphQLAPIQueryResponse {
|
|
47
|
+
status: GraphQLStatus;
|
|
48
|
+
data: string;
|
|
49
|
+
errors: GraphQLError[];
|
|
50
|
+
}
|
|
51
|
+
interface GraphQLMessages {
|
|
52
|
+
queryRequest?: GraphQLAPIQueryRequest | undefined;
|
|
53
|
+
queryResponse?: GraphQLAPIQueryResponse | undefined;
|
|
54
|
+
}
|
|
55
|
+
declare const SignedGraphQLQuery: MessageFns<SignedGraphQLQuery>;
|
|
56
|
+
declare const GraphQLError: MessageFns<GraphQLError>;
|
|
57
|
+
declare const GraphQLAPIQueryRequest: MessageFns<GraphQLAPIQueryRequest>;
|
|
58
|
+
declare const GraphQLAPIQueryResponse: MessageFns<GraphQLAPIQueryResponse>;
|
|
59
|
+
declare const GraphQLMessages: MessageFns<GraphQLMessages>;
|
|
60
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
61
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]>; } : Partial<T>;
|
|
62
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
63
|
+
type Exact<P, I extends P> = P extends Builtin ? P : P & { [K in keyof P]: Exact<P[K], I[K]>; } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never; };
|
|
64
|
+
interface MessageFns<T> {
|
|
65
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
66
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
67
|
+
fromJSON(object: any): T;
|
|
68
|
+
toJSON(message: T): unknown;
|
|
69
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
70
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
71
|
+
}
|
|
72
|
+
//#endregion
|
|
73
|
+
export { DeepPartial, Exact, GraphQLAPIQueryRequest, GraphQLAPIQueryResponse, GraphQLError, GraphQLErrorCode, GraphQLMessages, GraphQLQueryFormat, GraphQLStatus, MessageFns, SignedGraphQLQuery, graphQLErrorCodeFromJSON, graphQLErrorCodeToJSON, graphQLQueryFormatFromJSON, graphQLQueryFormatToJSON, graphQLStatusFromJSON, graphQLStatusToJSON, protobufPackage };
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
//#region src/energy_device/graphql_api.d.ts
|
|
3
|
+
declare const protobufPackage = "tesla.proto.energy_device.v1";
|
|
4
|
+
declare enum GraphQLQueryFormat {
|
|
5
|
+
GRAPH_QL_QUERY_FORMAT_INVALID = 0,
|
|
6
|
+
GRAPH_QL_QUERY_FORMAT_RAW = 1,
|
|
7
|
+
GRAPH_QL_QUERY_FORMAT_SIGNED_SHA256_ECDSA_ASN1 = 2,
|
|
8
|
+
UNRECOGNIZED = -1
|
|
9
|
+
}
|
|
10
|
+
declare function graphQLQueryFormatFromJSON(object: any): GraphQLQueryFormat;
|
|
11
|
+
declare function graphQLQueryFormatToJSON(object: GraphQLQueryFormat): string;
|
|
12
|
+
declare enum GraphQLStatus {
|
|
13
|
+
GRAPH_QL_STATUS_INVALID = 0,
|
|
14
|
+
GRAPH_QL_STATUS_SUCCESS = 1,
|
|
15
|
+
GRAPH_QL_STATUS_ERROR_PARTIAL = 2,
|
|
16
|
+
GRAPH_QL_STATUS_ERROR_FULL = 3,
|
|
17
|
+
UNRECOGNIZED = -1
|
|
18
|
+
}
|
|
19
|
+
declare function graphQLStatusFromJSON(object: any): GraphQLStatus;
|
|
20
|
+
declare function graphQLStatusToJSON(object: GraphQLStatus): string;
|
|
21
|
+
declare enum GraphQLErrorCode {
|
|
22
|
+
GRAPH_QL_ERROR_CODE_INVALID = 0,
|
|
23
|
+
GRAPH_QL_ERROR_CODE_FIELD_NOT_FOUND = 1,
|
|
24
|
+
GRAPH_QL_ERROR_CODE_UNAUTHORIZED = 2,
|
|
25
|
+
GRAPH_QL_ERROR_CODE_RESOLVER_PROCESS_UNRESPONSIVE = 3,
|
|
26
|
+
GRAPH_QL_ERROR_CODE_RESPONSE_TOO_BIG = 4,
|
|
27
|
+
UNRECOGNIZED = -1
|
|
28
|
+
}
|
|
29
|
+
declare function graphQLErrorCodeFromJSON(object: any): GraphQLErrorCode;
|
|
30
|
+
declare function graphQLErrorCodeToJSON(object: GraphQLErrorCode): string;
|
|
31
|
+
interface SignedGraphQLQuery {
|
|
32
|
+
version: number;
|
|
33
|
+
query: Uint8Array;
|
|
34
|
+
}
|
|
35
|
+
interface GraphQLError {
|
|
36
|
+
path: string[];
|
|
37
|
+
code: GraphQLErrorCode;
|
|
38
|
+
message: string;
|
|
39
|
+
}
|
|
40
|
+
interface GraphQLAPIQueryRequest {
|
|
41
|
+
format: GraphQLQueryFormat;
|
|
42
|
+
query: Uint8Array;
|
|
43
|
+
signature: Uint8Array;
|
|
44
|
+
variablesJson: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
interface GraphQLAPIQueryResponse {
|
|
47
|
+
status: GraphQLStatus;
|
|
48
|
+
data: string;
|
|
49
|
+
errors: GraphQLError[];
|
|
50
|
+
}
|
|
51
|
+
interface GraphQLMessages {
|
|
52
|
+
queryRequest?: GraphQLAPIQueryRequest | undefined;
|
|
53
|
+
queryResponse?: GraphQLAPIQueryResponse | undefined;
|
|
54
|
+
}
|
|
55
|
+
declare const SignedGraphQLQuery: MessageFns<SignedGraphQLQuery>;
|
|
56
|
+
declare const GraphQLError: MessageFns<GraphQLError>;
|
|
57
|
+
declare const GraphQLAPIQueryRequest: MessageFns<GraphQLAPIQueryRequest>;
|
|
58
|
+
declare const GraphQLAPIQueryResponse: MessageFns<GraphQLAPIQueryResponse>;
|
|
59
|
+
declare const GraphQLMessages: MessageFns<GraphQLMessages>;
|
|
60
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
61
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]>; } : Partial<T>;
|
|
62
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
63
|
+
type Exact<P, I extends P> = P extends Builtin ? P : P & { [K in keyof P]: Exact<P[K], I[K]>; } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never; };
|
|
64
|
+
interface MessageFns<T> {
|
|
65
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
66
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
67
|
+
fromJSON(object: any): T;
|
|
68
|
+
toJSON(message: T): unknown;
|
|
69
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
70
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
71
|
+
}
|
|
72
|
+
//#endregion
|
|
73
|
+
export { DeepPartial, Exact, GraphQLAPIQueryRequest, GraphQLAPIQueryResponse, GraphQLError, GraphQLErrorCode, GraphQLMessages, GraphQLQueryFormat, GraphQLStatus, MessageFns, SignedGraphQLQuery, graphQLErrorCodeFromJSON, graphQLErrorCodeToJSON, graphQLQueryFormatFromJSON, graphQLQueryFormatToJSON, graphQLStatusFromJSON, graphQLStatusToJSON, protobufPackage };
|