@influxdata/influxdb3-client 2.2.0 → 2.3.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 +48 -1
- package/dist/index.browser.js +13 -9
- package/dist/index.browser.js.gz +0 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +13 -9
- package/dist/index.browser.mjs.gz +0 -0
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.d.mts +57 -3
- package/dist/index.d.ts +57 -3
- package/dist/index.js +12 -8
- package/dist/index.js.gz +0 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -8
- package/dist/index.mjs.gz +0 -0
- package/dist/index.mjs.map +1 -1
- package/dist/influxdb.js +18 -14
- package/dist/influxdb.js.gz +0 -0
- package/dist/influxdb.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -88,7 +88,7 @@ set INFLUX_TOKEN=<token>
|
|
|
88
88
|
To get started with influxdb client import `@influxdata/influxdb3-client` package.
|
|
89
89
|
|
|
90
90
|
```ts
|
|
91
|
-
import {InfluxDBClient, Point} from '@influxdata/influxdb3-client'
|
|
91
|
+
import {InfluxDBClient, PartialWriteError, Point} from '@influxdata/influxdb3-client'
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
Assign values for environment variables, and then instantiate `InfluxDBClient` inside of an asynchronous function.
|
|
@@ -159,6 +159,53 @@ await client.write(point, database, undefined, {
|
|
|
159
159
|
})
|
|
160
160
|
```
|
|
161
161
|
|
|
162
|
+
#### Accept partial writes and inspect failed lines
|
|
163
|
+
|
|
164
|
+
Partial writes are enabled by default when writing through the V3 API endpoint (`useV2Api=false`).
|
|
165
|
+
Configure `acceptPartial` using client `writeOptions`, per-write options, or
|
|
166
|
+
connection/env (`writeAcceptPartial`, `INFLUX_WRITE_ACCEPT_PARTIAL`).
|
|
167
|
+
|
|
168
|
+
When only part of a V3 write request is rejected, the client throws
|
|
169
|
+
`PartialWriteError` with structured `lineErrors`.
|
|
170
|
+
If partial writes are disabled (`acceptPartial: false`), a rejected line causes
|
|
171
|
+
the whole batch to be rejected.
|
|
172
|
+
|
|
173
|
+
To inspect line-level failures, write through the V3 API endpoint and catch
|
|
174
|
+
`PartialWriteError`:
|
|
175
|
+
|
|
176
|
+
```ts
|
|
177
|
+
const lp = [
|
|
178
|
+
'home,room=Sunroom temp=96 1735545600',
|
|
179
|
+
'home,room=Sunroom temp="hi" 1735549200',
|
|
180
|
+
].join('\n')
|
|
181
|
+
|
|
182
|
+
try {
|
|
183
|
+
await client.write(lp, database, undefined, {
|
|
184
|
+
useV2Api: false,
|
|
185
|
+
})
|
|
186
|
+
} catch (e: any) {
|
|
187
|
+
if (e instanceof PartialWriteError) {
|
|
188
|
+
for (const lineErr of e.lineErrors) {
|
|
189
|
+
console.log(`line ${lineErr.lineNumber}: ${lineErr.errorMessage} (${lineErr.originalLine})`)
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
#### Compatibility with InfluxDB Clustered and InfluxDB Cloud Dedicated/Serverless
|
|
196
|
+
|
|
197
|
+
Writes use the V2 API endpoint by default.
|
|
198
|
+
You can set `useV2Api` in client `writeOptions`, per-write options, or via
|
|
199
|
+
connection/env (`writeUseV2Api`, `INFLUX_WRITE_USE_V2_API`).
|
|
200
|
+
|
|
201
|
+
Set `useV2Api: false` to write through the V3 API endpoint (InfluxDB 3 Core/Enterprise),
|
|
202
|
+
which supports `noSync` and `acceptPartial` controls.
|
|
203
|
+
|
|
204
|
+
When writing through the V2 API endpoint, `acceptPartial` is not used by the client.
|
|
205
|
+
Rejected writes return flat V2 errors.
|
|
206
|
+
`noSync` cannot be used with `useV2Api`; this combination is rejected before request
|
|
207
|
+
dispatch with `invalid write options: noSync requires useV2Api=false`.
|
|
208
|
+
|
|
162
209
|
### Query data
|
|
163
210
|
|
|
164
211
|
To query data stored in InfluxDB, call `client.query` with an SQL query and the database (or bucket) name. To change to using InfluxQL add a QueryOptions object with the type 'influxql' (e.g. `client.query(query, database, { type: 'influxql'})`).
|
package/dist/index.browser.js
CHANGED
|
@@ -3,15 +3,19 @@
|
|
|
3
3
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@influxdata/influxdb-client"] = {}));
|
|
5
5
|
})(this, (function (exports) {
|
|
6
|
-
"use strict";var influxdb=(()=>{var
|
|
7
|
-
${
|
|
8
|
-
`)}
|
|
9
|
-
|
|
10
|
-
\r `,["\\,","\\ ","\\=","\\n","\\r","\\t"])};var xt="000000000";function It(r){return!1}It(!0);var Tt=Date.now(),Ce=0;function Le(){{let r=Date.now();r!==Tt?(Tt=r,Ce=0):Ce++;let e=String(Ce);return String(r)+xt.substr(0,6-e.length)+e}}function wt(){return String(Date.now())+xt.substr(0,3)}function Ot(){return String(Date.now())}function Ft(){return String(Math.floor(Date.now()/1e3))}var Nt={s:Ft,ms:Ot,us:wt,ns:Le,seconds:Ft,millis:Ot,micros:wt,nanos:Le},_t={s:r=>`${Math.floor(r.getTime()/1e3)}`,ms:r=>`${r.getTime()}`,us:r=>`${r.getTime()}000`,ns:r=>`${r.getTime()}000000`};function Be(r){return r===void 0?Le():typeof r=="string"?r.length>0?r:void 0:r instanceof Date?`${r.getTime()}000000`:String(typeof r=="number"?Math.floor(r):r)}var Ve=(r,e="ns")=>r===void 0?Nt[e]():typeof r=="string"?r.length>0?r:void 0:r instanceof Date?_t[e](r):String(typeof r=="number"?Math.floor(r):r);var V=r=>{throw r},Et=r=>r!==void 0,kt=r=>r instanceof Array||r instanceof Object&&typeof r.length=="number"&&(r.length===0||Object.getOwnPropertyNames(r).some(e=>e==="0")),St=r=>{let e=new Uint8Array(4);return e[0]=r>>0,e[1]=r>>8,e[2]=r>>16,e[3]=r>>24,e},Rt=async r=>{let e=[];for await(let t of r)e.push(t);return e},v=r=>r===null||typeof r=="string"&&(r===""||r.indexOf(" ")!==-1)?!1:r!==""&&!isNaN(Number(r==null?void 0:r.toString())),At=r=>v(r)?typeof r=="string"?Number(r)>=0:typeof r=="number"&&r>=0:!1;var ve=(r,e,t)=>{let n=kt(r)&&typeof r!="string"?Array.from(r):[r];return n.length===0?[]:typeof n[0]=="string"?n:n.map(s=>s.toLineProtocol(void 0,e,t)).filter(Et)};var Or=r=>typeof r=="number"?"float":typeof r=="string"?"string":typeof r=="boolean"?"boolean":void 0,re=class r extends Error{constructor(e,t,n){super(`field ${e} of type ${n} doesn't match expected type ${t}!`),this.name="GetFieldTypeMissmatchError",Object.setPrototypeOf(this,r.prototype)}},R=class r{constructor(){d(this,"_name");d(this,"_time");d(this,"_tags",{});d(this,"_fields",{})}getMeasurement(){return this._name}setMeasurement(e){return this._name=e,this}getTimestamp(){return this._time}setTimestamp(e){return this._time=e,this}getTag(e){return this._tags[e]}setTag(e,t){return this._tags[e]=t,this}removeTag(e){return delete this._tags[e],this}getTagNames(){return Object.keys(this._tags)}getFloatField(e){return this.getField(e,"float")}setFloatField(e,t){let n;if(typeof t=="number"?n=t:n=parseFloat(t),!isFinite(n))throw new Error(`invalid float value for field '${e}': '${t}'!`);return this._fields[e]=["float",n],this}getIntegerField(e){return this.getField(e,"integer")}setIntegerField(e,t){let n;if(typeof t=="number"?n=t:n=parseInt(String(t)),isNaN(n)||n<=-9223372036854776e3||n>=9223372036854776e3)throw new Error(`invalid integer value for field '${e}': '${t}'!`);return this._fields[e]=["integer",Math.floor(n)],this}getUintegerField(e){return this.getField(e,"uinteger")}setUintegerField(e,t){if(typeof t=="number"){if(isNaN(t)||t<0||t>Number.MAX_SAFE_INTEGER)throw new Error(`uint value for field '${e}' out of range: ${t}`);this._fields[e]=["uinteger",Math.floor(t)]}else{let n=String(t);for(let i=0;i<n.length;i++){let s=n.charCodeAt(i);if(s<48||s>57)throw new Error(`uint value has an unsupported character at pos ${i}: ${t}`)}if(n.length>20||n.length===20&&n.localeCompare("18446744073709551615")>0)throw new Error(`uint value for field '${e}' out of range: ${n}`);this._fields[e]=["uinteger",+n]}return this}getStringField(e){return this.getField(e,"string")}setStringField(e,t){return t!=null&&(typeof t!="string"&&(t=String(t)),this._fields[e]=["string",t]),this}getBooleanField(e){return this.getField(e,"boolean")}setBooleanField(e,t){return this._fields[e]=["boolean",!!t],this}getField(e,t){let n=this._fields[e];if(!n)return;let[i,s]=n;if(t!==void 0&&t!==i)throw new re(e,t,i);return s}getFieldType(e){let t=this._fields[e];if(t)return t[0]}setField(e,t,n){switch(n!=null?n:Or(t)){case"string":return this.setStringField(e,t);case"boolean":return this.setBooleanField(e,t);case"float":return this.setFloatField(e,t);case"integer":return this.setIntegerField(e,t);case"uinteger":return this.setUintegerField(e,t);case void 0:return this;default:throw new Error(`invalid field type for field '${e}': type -> ${n}, value -> ${t}!`)}}setFields(e){for(let[t,n]of Object.entries(e))this.setField(t,n);return this}removeField(e){return delete this._fields[e],this}getFieldNames(){return Object.keys(this._fields)}hasFields(){return this.getFieldNames().length>0}copy(){let e=new r;return e._name=this._name,e._time=this._time,e._tags=Object.fromEntries(Object.entries(this._tags)),e._fields=Object.fromEntries(Object.entries(this._fields).map(t=>[...t])),e}asPoint(e){return X.fromValues(e?this.setMeasurement(e):this)}};var Fr=(r,e)=>{switch(r){case"string":return U.quoted(e);case"boolean":return e?"T":"F";case"float":return`${e}`;case"integer":return`${e}i`;case"uinteger":return`${e}u`}},xr=(r,e)=>{if(!e)return[];let t=new Set(r);return Object.keys(e).filter(n=>!t.has(n)).sort()},Ir=(r,e)=>{if(!e||e.length===0)return r;let t=new Set(r),n=[],i=new Set;for(let o of e)!o||i.has(o)||!t.has(o)||(n.push(o),i.add(o),t.delete(o));let s=Array.from(t).sort();return n.concat(s)},X=class r{constructor(e){d(this,"_values");e instanceof R?this._values=e:this._values=new R,typeof e=="string"&&this._values.setMeasurement(e)}static measurement(e){return new r(e)}static fromValues(e){if(!e.getMeasurement()||e.getMeasurement()==="")throw new Error("Cannot convert values to point without measurement set!");return new r(e)}getMeasurement(){return this._values.getMeasurement()}setMeasurement(e){return e!==""&&this._values.setMeasurement(e),this}getTimestamp(){return this._values.getTimestamp()}setTimestamp(e){return this._values.setTimestamp(e),this}getTag(e){return this._values.getTag(e)}setTag(e,t){return this._values.setTag(e,t),this}removeTag(e){return this._values.removeTag(e),this}getTagNames(){return this._values.getTagNames()}getFloatField(e){return this._values.getFloatField(e)}setFloatField(e,t){return this._values.setFloatField(e,t),this}getIntegerField(e){return this._values.getIntegerField(e)}setIntegerField(e,t){return this._values.setIntegerField(e,t),this}getUintegerField(e){return this._values.getUintegerField(e)}setUintegerField(e,t){return this._values.setUintegerField(e,t),this}getStringField(e){return this._values.getStringField(e)}setStringField(e,t){return this._values.setStringField(e,t),this}getBooleanField(e){return this._values.getBooleanField(e)}setBooleanField(e,t){return this._values.setBooleanField(e,t),this}getField(e,t){return this._values.getField(e,t)}getFieldType(e){return this._values.getFieldType(e)}setField(e,t,n){return this._values.setField(e,t,n),this}setFields(e){return this._values.setFields(e),this}removeField(e){return this._values.removeField(e),this}getFieldNames(){return this._values.getFieldNames()}hasFields(){return this._values.hasFields()}copy(){return new r(this._values.copy())}toLineProtocol(e,t,n){if(!this._values.getMeasurement())return;let i="";if(this._values.getFieldNames().sort().forEach(f=>{if(f){let m=this._values.getFieldType(f),p=this._values.getField(f);if(m===void 0||p===void 0)return;let O=Fr(m,p);i.length>0&&(i+=","),i+=`${U.tag(f)}=${O}`}}),i.length===0)return;let s="",o=this._values.getTagNames().sort(),a=xr(o,t);Ir(a.concat(o),n).forEach(f=>{if(f){let m=this._values.getTag(f),p=m!==void 0?m:t==null?void 0:t[f];p&&(s+=",",s+=`${U.tag(f)}=${U.tag(p)}`)}});let c=this._values.getTimestamp();return e?typeof e=="string"?c=Ve(c,e):c=e(c):c=Be(c),`${U.measurement(this.getMeasurement())}${s} ${i}${c!==void 0?` ${c}`:""}`}toString(){let e=this.toLineProtocol(void 0);return e||`invalid point: ${JSON.stringify(this,void 0)}`}};function Me(r={}){let e=0,t={next:n=>{if(e===0&&r.next&&n!==null&&n!==void 0)return r.next(n)},error:n=>{e===0&&(e=1,r.error&&r.error(n))},complete:()=>{e===0&&(e=2,r.complete&&r.complete())},responseStarted:(n,i)=>{r.responseStarted&&r.responseStarted(n,i)}};return r.useCancellable&&(t.useCancellable=r.useCancellable.bind(r)),r.useResume&&(t.useResume=r.useResume.bind(r)),t}function ne(r){let e={};return r.headers.forEach((t,n)=>{let i=e[n];i===void 0?e[n]=t:Array.isArray(i)?i.push(t):e[n]=[i,t]}),e}var J=class{constructor(e){this._connectionOptions=e;d(this,"chunkCombiner",_e());d(this,"_defaultHeaders");d(this,"_url");d(this,"requestDecorator",function(){});var t;if(this._defaultHeaders={"content-type":"application/json; charset=utf-8",...e.headers},this._connectionOptions.token){let n=(t=this._connectionOptions.authScheme)!=null?t:"Token";this._defaultHeaders.Authorization=`${n} ${this._connectionOptions.token}`}this._url=String(this._connectionOptions.host),this._url.endsWith("/")&&(this._url=this._url.substring(0,this._url.length-1)),this._url.endsWith("/api/v2")&&(this._url=this._url.substring(0,this._url.length-7),D.warn(`Please remove '/api/v2' context path from InfluxDB base url, using ${this._url} !`))}_connectionOptions;send(e,t,n,i){let s=Me(i),o=!1,a=n.signal,u,c=()=>{},f=c;if(i&&i.useCancellable){let m=new AbortController;a||(a=m.signal,n={...n,signal:a}),a.addEventListener("abort",()=>{f()}),i.useCancellable({cancel(){o=!0,m.abort()},isCancelled(){return o||a.aborted}})}this._fetch(e,t,n).then(async m=>{if(i!=null&&i.responseStarted&&s.responseStarted(ne(m),m.status),await this._throwOnErrorResponse(m),m.body){let p=m.body.getReader(),O;do{if(u&&await u,o)break;if(O=await p.read(),s.next(O.value)===!1){let h=s.useResume;if(!h){let x="Unable to pause, useResume is not configured!";return await p.cancel(x),Promise.reject(new Error(x))}u=new Promise(x=>{f=()=>{x(),u=void 0,f=c},h(f)})}}while(!O.done)}else if(m.arrayBuffer){let p=await m.arrayBuffer();s.next(new Uint8Array(p))}else{let p=await m.text();s.next(new TextEncoder().encode(p))}}).catch(m=>{o||s.error(m)}).finally(()=>s.complete())}async _throwOnErrorResponse(e){if(e.status>=300){let t="";try{if(t=await e.text(),!t){let n=e.headers.get("x-influxdb-error");n&&(t=n)}}catch(n){throw D.warn("Unable to receive error body",n),new _(e.status,e.statusText,void 0,e.headers.get("content-type"),ne(e))}throw new _(e.status,e.statusText,t,e.headers.get("content-type"),ne(e))}}async*iterate(e,t,n){var s;let i=await this._fetch(e,t,n);if(await this._throwOnErrorResponse(i),i.body){let o=i.body.getReader();for(;;){let{value:a,done:u}=await o.read();if(u)break;if((s=n.signal)!=null&&s.aborted)throw await i.body.cancel(),new j;yield a}}else if(i.arrayBuffer){let o=await i.arrayBuffer();yield new Uint8Array(o)}else{let o=await i.text();yield new TextEncoder().encode(o)}}async request(e,t,n,i){var c,f;let s=await this._fetch(e,t,n),{headers:o}=s,a=o.get("content-type")||"";i&&i(ne(s),s.status),await this._throwOnErrorResponse(s);let u=(f=(c=n.headers)==null?void 0:c.accept)!=null?f:a;if(u.includes("json"))return await s.json();if(u.includes("text")||u.startsWith("application/csv"))return await s.text()}_fetch(e,t,n){let{method:i,headers:s,...o}=n,a=`${this._url}${e}`,u={method:i,body:i==="GET"||i==="HEAD"?void 0:typeof t=="string"?t:JSON.stringify(t),headers:{...this._defaultHeaders,...s},credentials:"omit",...this._connectionOptions.transportOptions,...o};return this.requestDecorator(u,n,a),fetch(a,u)}};var Pt=H("@protobuf-ts/grpcweb-transport"),Dt=({host:r,timeout:e,clientOptions:t})=>{var i;(t!=null&&t.grpcOptions||(i=t==null?void 0:t.queryOptions)!=null&&i.grpcOptions)&&console.warn(`Detected grpcClientOptions: such options are ignored in the GrpcWebFetchTransport:
|
|
6
|
+
"use strict";var influxdb=(()=>{var re=Object.defineProperty;var yr=Object.getOwnPropertyDescriptor;var wr=Object.getOwnPropertyNames;var Tr=Object.prototype.hasOwnProperty;var Fr=(r,e,t)=>e in r?re(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var X=(r=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(r,{get:(e,t)=>(typeof require!="undefined"?require:e)[t]}):r)(function(r){if(typeof require!="undefined")return require.apply(this,arguments);throw Error('Dynamic require of "'+r+'" is not supported')});var xr=(r,e)=>{for(var t in e)re(r,t,{get:e[t],enumerable:!0})},Or=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of wr(e))!Tr.call(r,i)&&i!==t&&re(r,i,{get:()=>e[i],enumerable:!(n=yr(e,i))||n.enumerable});return r};var Ir=r=>Or(re({},"__esModule",{value:!0}),r);var d=(r,e,t)=>Fr(r,typeof e!="symbol"?e+"":e,t);var en={};xr(en,{AbortError:()=>G,DEFAULT_ConnectionOptions:()=>Se,DEFAULT_QueryOptions:()=>ne,DEFAULT_WriteOptions:()=>Pe,GetFieldTypeMissmatchError:()=>se,HttpError:()=>E,IllegalArgumentError:()=>A,InfluxDBClient:()=>te,Log:()=>U,PartialWriteError:()=>J,Point:()=>K,PointValues:()=>R,RequestTimedOutError:()=>ke,collectAll:()=>Vt,consoleLogger:()=>Nt,convertTime:()=>We,convertTimeToNanos:()=>Me,createTextDecoderCombiner:()=>Ae,currentTime:()=>Rt,dateToProtocolTimestamp:()=>Dt,escape:()=>L,fromConnectionString:()=>Re,fromEnv:()=>De,isNumber:()=>W,parsePrecision:()=>Ce,precisionToV2ApiString:()=>Ue,precisionToV3ApiString:()=>Le,setLogger:()=>kr,useProcessHrtime:()=>Pt,writableDataToLineProtocol:()=>$e});function Ft(r){if(typeof r!="string"||r.length===0)return!1;let e=r.toLowerCase();return e.includes("partial write of line protocol occurred")||e.includes("parsing failed for write_lp endpoint")}function Nr(r){if(r==null)return 0;if(typeof r=="number"&&Number.isFinite(r))return r;throw new Error("line_number must be number")}function Er(r){if(r==null)return"";if(typeof r=="string")return r;throw new Error("original_line must be string")}function xt(r){if(r==null)return null;if(typeof r!="object"||Array.isArray(r))throw new Error("item is not an object");let e=r.error_message;if(typeof e!="string")throw new Error("error_message must be string");if(e.length===0)return null;let t=Nr(r.line_number),n=Er(r.original_line);return{lineNumber:t,errorMessage:e,originalLine:n}}function Ot(r){if(!Array.isArray(r))return;let e=[];try{for(let t of r){let n=xt(t);n&&e.push(n)}}catch(t){return}return e.length>0?e:void 0}function It(r){var e;try{return(e=xt(r))!=null?e:void 0}catch(t){return}}function Tt(r){let e=[];for(let t of r)t.lineNumber!==0?t.originalLine.length>0?e.push(` line ${t.lineNumber}: ${t.errorMessage} (${t.originalLine})`):e.push(` line ${t.lineNumber}: ${t.errorMessage}`):e.push(` ${t.errorMessage}`);return e}function _r(r){if(!r||typeof r!="object"||Array.isArray(r))return;let e=typeof r.message=="string"?r.message:void 0;if(e)return e;let t=typeof r.error=="string"?r.error:void 0,n=r.data;if(t&&Ft(t)){let i=Ot(n);if(i){let o=Tt(i);return`${t}:
|
|
7
|
+
${o.join(`
|
|
8
|
+
`)}`}if(Array.isArray(n)){let o=[];for(let a of n){if(a==null)continue;let u=JSON.stringify(a);u&&u.toLowerCase()!=="null"&&o.push(` ${u}`)}return o.length?`${t}:
|
|
9
|
+
${o.join(`
|
|
10
|
+
`)}`:t}let s=It(n);return s?`${t}:
|
|
11
|
+
${Tt([s]).join(`
|
|
12
|
+
`)}`:t}if(t)return t}var A=class r extends Error{constructor(e){super(e),this.name="IllegalArgumentError",Object.setPrototypeOf(this,r.prototype)}},E=class r extends Error{constructor(t,n,i,s,o,a){var u;super();this.statusCode=t;this.statusMessage=n;this.body=i;this.contentType=s;this.headers=o;d(this,"code");d(this,"json");if(Object.setPrototypeOf(this,r.prototype),a)this.message=a;else if(i&&(s!=null&&s.startsWith("application/json")||!s))try{this.json=JSON.parse(i),typeof((u=this.json)==null?void 0:u.code)=="string"&&(this.code=this.json.code);let c=_r(this.json);c&&(this.message=c)}catch(c){}this.message||(this.message=`${t} ${n} : ${i}`),this.name="HttpError"}statusCode;statusMessage;body;contentType;headers},J=class r extends E{constructor(t,n,i,s,o,a,u){super(t,n,i,s,o);this.lineErrors=u;this.message=a,this.name="PartialWriteError",Object.setPrototypeOf(this,r.prototype)}lineErrors;static fromHttpError(t){let n=t.json;if(!n||typeof n!="object"||Array.isArray(n))return;let i=n.error;if(!Ft(i))return;let s=n.data,o=Ot(s);if(o)return new r(t.statusCode,t.statusMessage,t.body,t.contentType,t.headers,t.message,o);let a=It(s);if(a)return new r(t.statusCode,t.statusMessage,t.body,t.contentType,t.headers,t.message,[a])}},ke=class r extends Error{constructor(){super(),Object.setPrototypeOf(this,r.prototype),this.name="RequestTimedOutError",this.message="Request timed out"}},G=class r extends Error{constructor(){super(),this.name="AbortError",Object.setPrototypeOf(this,r.prototype),this.message="Response aborted"}};function Ae(){let r=new TextDecoder("utf-8");return{concat(e,t){let n=new Uint8Array(e.length+t.length);return n.set(e),n.set(t,e.length),n},copy(e,t,n){let i=new Uint8Array(n-t);return i.set(e.subarray(t,n)),i},toUtf8String(e,t,n){return r.decode(e.subarray(t,n))}}}var Se={timeout:void 0,writeTimeout:1e4,queryTimeout:6e4},Pe={precision:"ns",gzipThreshold:1e3,noSync:!1,acceptPartial:!0,useV2Api:!0},ne={type:"sql"};function S(r){return r.writeOptions||(r.writeOptions={}),r.writeOptions}function Re(r){if(!r)throw Error("Connection string not set!");let e=new URL(r.trim(),"http://localhost"),t={host:r.indexOf("://")>0?e.origin+e.pathname:e.pathname};return e.searchParams.has("token")&&(t.token=e.searchParams.get("token")),e.searchParams.has("authScheme")&&(t.authScheme=e.searchParams.get("authScheme")),e.searchParams.has("database")&&(t.database=e.searchParams.get("database")),e.searchParams.has("timeout")&&(t.timeout=parseInt(e.searchParams.get("timeout"))),e.searchParams.has("precision")&&(S(t).precision=Ce(e.searchParams.get("precision"))),e.searchParams.has("gzipThreshold")&&(S(t).gzipThreshold=parseInt(e.searchParams.get("gzipThreshold"))),e.searchParams.has("writeNoSync")&&(S(t).noSync=v(e.searchParams.get("writeNoSync"))),e.searchParams.has("writeAcceptPartial")&&(S(t).acceptPartial=v(e.searchParams.get("writeAcceptPartial"))),e.searchParams.has("writeUseV2Api")&&(S(t).useV2Api=v(e.searchParams.get("writeUseV2Api"))),t}function De(){if(!process.env.INFLUX_HOST)throw Error("INFLUX_HOST variable not set!");if(!process.env.INFLUX_TOKEN)throw Error("INFLUX_TOKEN variable not set!");let r={host:process.env.INFLUX_HOST.trim()};if(process.env.INFLUX_TOKEN&&(r.token=process.env.INFLUX_TOKEN.trim()),process.env.INFLUX_AUTH_SCHEME&&(r.authScheme=process.env.INFLUX_AUTH_SCHEME.trim()),process.env.INFLUX_DATABASE&&(r.database=process.env.INFLUX_DATABASE.trim()),process.env.INFLUX_TIMEOUT&&(r.timeout=parseInt(process.env.INFLUX_TIMEOUT.trim())),process.env.INFLUX_PRECISION&&(S(r).precision=Ce(process.env.INFLUX_PRECISION)),process.env.INFLUX_GZIP_THRESHOLD&&(S(r).gzipThreshold=parseInt(process.env.INFLUX_GZIP_THRESHOLD)),process.env.INFLUX_WRITE_NO_SYNC&&(S(r).noSync=v(process.env.INFLUX_WRITE_NO_SYNC)),process.env.INFLUX_WRITE_ACCEPT_PARTIAL&&(S(r).acceptPartial=v(process.env.INFLUX_WRITE_ACCEPT_PARTIAL)),process.env.INFLUX_WRITE_USE_V2_API&&(S(r).useV2Api=v(process.env.INFLUX_WRITE_USE_V2_API)),process.env.INFLUX_GRPC_OPTIONS){let e=process.env.INFLUX_GRPC_OPTIONS.split(",");r.grpcOptions||(r.grpcOptions={});for(let t of e){let n=t.split("=");if(n.length!=2)continue;let i=parseInt(n[1]);Number.isNaN(i)&&(i=parseFloat(n[1]),Number.isNaN(i)&&(i=n[1])),r.grpcOptions[n[0]]=i}}return r}function v(r){return["true","1","t","y","yes"].includes(r.trim().toLowerCase())}function Ue(r){switch(r){case"ns":case"us":case"ms":case"s":return r;default:throw Error(`Unsupported precision '${r}'`)}}function Le(r){switch(r){case"ns":return"nanosecond";case"us":return"microsecond";case"ms":return"millisecond";case"s":return"second";default:throw Error(`Unsupported precision '${r}'`)}}function Ce(r){switch(r.trim().toLowerCase()){case"ns":case"nanosecond":return"ns";case"us":case"microsecond":return"us";case"ms":case"millisecond":return"ms";case"s":case"second":return"s";default:throw Error(`Unsupported precision '${r}'`)}}var Nt={error(r,e){console.error(`ERROR: ${r}`,e||"")},warn(r,e){console.warn(`WARN: ${r}`,e||"")}},ie=Nt,U={error(r,e){ie.error(r,e)},warn(r,e){ie.warn(r,e)}};function kr(r){let e=ie;return ie=r,e}function Ve(r,e){return function(t){let n="",i=0,s=0;for(;s<t.length;){let o=r.indexOf(t[s]);o>=0&&(n+=t.substring(i,s),n+=e[o],i=s+1),s++}return i==0?t:(i<t.length&&(n+=t.substring(i,t.length)),n)}}function Ar(r,e){let t=Ve(r,e);return n=>`"${t(n)}"`}var L={measurement:Ve(`,
|
|
13
|
+
\r `,["\\,","\\ ","\\n","\\r","\\t"]),quoted:Ar('"\\',['\\"',"\\\\"]),tag:Ve(`, =
|
|
14
|
+
\r `,["\\,","\\ ","\\=","\\n","\\r","\\t"])};var St="000000000";function Pt(r){return!1}Pt(!0);var Et=Date.now(),Be=0;function ve(){{let r=Date.now();r!==Et?(Et=r,Be=0):Be++;let e=String(Be);return String(r)+St.substr(0,6-e.length)+e}}function _t(){return String(Date.now())+St.substr(0,3)}function kt(){return String(Date.now())}function At(){return String(Math.floor(Date.now()/1e3))}var Rt={s:At,ms:kt,us:_t,ns:ve,seconds:At,millis:kt,micros:_t,nanos:ve},Dt={s:r=>`${Math.floor(r.getTime()/1e3)}`,ms:r=>`${r.getTime()}`,us:r=>`${r.getTime()}000`,ns:r=>`${r.getTime()}000000`};function Me(r){return r===void 0?ve():typeof r=="string"?r.length>0?r:void 0:r instanceof Date?`${r.getTime()}000000`:String(typeof r=="number"?Math.floor(r):r)}var We=(r,e="ns")=>r===void 0?Rt[e]():typeof r=="string"?r.length>0?r:void 0:r instanceof Date?Dt[e](r):String(typeof r=="number"?Math.floor(r):r);var M=r=>{throw r},Ut=r=>r!==void 0,Lt=r=>r instanceof Array||r instanceof Object&&typeof r.length=="number"&&(r.length===0||Object.getOwnPropertyNames(r).some(e=>e==="0")),Ct=r=>{let e=new Uint8Array(4);return e[0]=r>>0,e[1]=r>>8,e[2]=r>>16,e[3]=r>>24,e},Vt=async r=>{let e=[];for await(let t of r)e.push(t);return e},W=r=>r===null||typeof r=="string"&&(r===""||r.indexOf(" ")!==-1)?!1:r!==""&&!isNaN(Number(r==null?void 0:r.toString())),Bt=r=>W(r)?typeof r=="string"?Number(r)>=0:typeof r=="number"&&r>=0:!1;var $e=(r,e,t,n)=>{let i=Lt(r)&&typeof r!="string"?Array.from(r):[r];return i.length===0?[]:typeof i[0]=="string"?i:i.map(o=>o.getTimestamp()instanceof Date||o.getTimestamp()===void 0?o.toLineProtocol(n,e,t):o.toLineProtocol(void 0,e,t)).filter(Ut)};var Sr=r=>typeof r=="number"?"float":typeof r=="string"?"string":typeof r=="boolean"?"boolean":void 0,se=class r extends Error{constructor(e,t,n){super(`field ${e} of type ${n} doesn't match expected type ${t}!`),this.name="GetFieldTypeMissmatchError",Object.setPrototypeOf(this,r.prototype)}},R=class r{constructor(){d(this,"_name");d(this,"_time");d(this,"_tags",{});d(this,"_fields",{})}getMeasurement(){return this._name}setMeasurement(e){return this._name=e,this}getTimestamp(){return this._time}setTimestamp(e){return this._time=e,this}getTag(e){return this._tags[e]}setTag(e,t){return this._tags[e]=t,this}removeTag(e){return delete this._tags[e],this}getTagNames(){return Object.keys(this._tags)}getFloatField(e){return this.getField(e,"float")}setFloatField(e,t){let n;if(typeof t=="number"?n=t:n=parseFloat(t),!isFinite(n))throw new Error(`invalid float value for field '${e}': '${t}'!`);return this._fields[e]=["float",n],this}getIntegerField(e){return this.getField(e,"integer")}setIntegerField(e,t){let n;if(typeof t=="number"?n=t:n=parseInt(String(t)),isNaN(n)||n<=-9223372036854776e3||n>=9223372036854776e3)throw new Error(`invalid integer value for field '${e}': '${t}'!`);return this._fields[e]=["integer",Math.floor(n)],this}getUintegerField(e){return this.getField(e,"uinteger")}setUintegerField(e,t){if(typeof t=="number"){if(isNaN(t)||t<0||t>Number.MAX_SAFE_INTEGER)throw new Error(`uint value for field '${e}' out of range: ${t}`);this._fields[e]=["uinteger",Math.floor(t)]}else{let n=String(t);for(let i=0;i<n.length;i++){let s=n.charCodeAt(i);if(s<48||s>57)throw new Error(`uint value has an unsupported character at pos ${i}: ${t}`)}if(n.length>20||n.length===20&&n.localeCompare("18446744073709551615")>0)throw new Error(`uint value for field '${e}' out of range: ${n}`);this._fields[e]=["uinteger",+n]}return this}getStringField(e){return this.getField(e,"string")}setStringField(e,t){return t!=null&&(typeof t!="string"&&(t=String(t)),this._fields[e]=["string",t]),this}getBooleanField(e){return this.getField(e,"boolean")}setBooleanField(e,t){return this._fields[e]=["boolean",!!t],this}getField(e,t){let n=this._fields[e];if(!n)return;let[i,s]=n;if(t!==void 0&&t!==i)throw new se(e,t,i);return s}getFieldType(e){let t=this._fields[e];if(t)return t[0]}setField(e,t,n){switch(n!=null?n:Sr(t)){case"string":return this.setStringField(e,t);case"boolean":return this.setBooleanField(e,t);case"float":return this.setFloatField(e,t);case"integer":return this.setIntegerField(e,t);case"uinteger":return this.setUintegerField(e,t);case void 0:return this;default:throw new Error(`invalid field type for field '${e}': type -> ${n}, value -> ${t}!`)}}setFields(e){for(let[t,n]of Object.entries(e))this.setField(t,n);return this}removeField(e){return delete this._fields[e],this}getFieldNames(){return Object.keys(this._fields)}hasFields(){return this.getFieldNames().length>0}copy(){let e=new r;return e._name=this._name,e._time=this._time,e._tags=Object.fromEntries(Object.entries(this._tags)),e._fields=Object.fromEntries(Object.entries(this._fields).map(t=>[...t])),e}asPoint(e){return K.fromValues(e?this.setMeasurement(e):this)}};var Pr=(r,e)=>{switch(r){case"string":return L.quoted(e);case"boolean":return e?"T":"F";case"float":return`${e}`;case"integer":return`${e}i`;case"uinteger":return`${e}u`}},Rr=(r,e)=>{if(!e)return[];let t=new Set(r);return Object.keys(e).filter(n=>!t.has(n)).sort()},Dr=(r,e)=>{if(!e||e.length===0)return r;let t=new Set(r),n=[],i=new Set;for(let o of e)!o||i.has(o)||!t.has(o)||(n.push(o),i.add(o),t.delete(o));let s=Array.from(t).sort();return n.concat(s)},K=class r{constructor(e){d(this,"_values");e instanceof R?this._values=e:this._values=new R,typeof e=="string"&&this._values.setMeasurement(e)}static measurement(e){return new r(e)}static fromValues(e){if(!e.getMeasurement()||e.getMeasurement()==="")throw new Error("Cannot convert values to point without measurement set!");return new r(e)}getMeasurement(){return this._values.getMeasurement()}setMeasurement(e){return e!==""&&this._values.setMeasurement(e),this}getTimestamp(){return this._values.getTimestamp()}setTimestamp(e){return this._values.setTimestamp(e),this}getTag(e){return this._values.getTag(e)}setTag(e,t){return this._values.setTag(e,t),this}removeTag(e){return this._values.removeTag(e),this}getTagNames(){return this._values.getTagNames()}getFloatField(e){return this._values.getFloatField(e)}setFloatField(e,t){return this._values.setFloatField(e,t),this}getIntegerField(e){return this._values.getIntegerField(e)}setIntegerField(e,t){return this._values.setIntegerField(e,t),this}getUintegerField(e){return this._values.getUintegerField(e)}setUintegerField(e,t){return this._values.setUintegerField(e,t),this}getStringField(e){return this._values.getStringField(e)}setStringField(e,t){return this._values.setStringField(e,t),this}getBooleanField(e){return this._values.getBooleanField(e)}setBooleanField(e,t){return this._values.setBooleanField(e,t),this}getField(e,t){return this._values.getField(e,t)}getFieldType(e){return this._values.getFieldType(e)}setField(e,t,n){return this._values.setField(e,t,n),this}setFields(e){return this._values.setFields(e),this}removeField(e){return this._values.removeField(e),this}getFieldNames(){return this._values.getFieldNames()}hasFields(){return this._values.hasFields()}copy(){return new r(this._values.copy())}toLineProtocol(e,t,n){if(!this._values.getMeasurement())return;let i="";if(this._values.getFieldNames().sort().forEach(f=>{if(f){let m=this._values.getFieldType(f),p=this._values.getField(f);if(m===void 0||p===void 0)return;let F=Pr(m,p);i.length>0&&(i+=","),i+=`${L.tag(f)}=${F}`}}),i.length===0)return;let s="",o=this._values.getTagNames().sort(),a=Rr(o,t);Dr(a.concat(o),n).forEach(f=>{if(f){let m=this._values.getTag(f),p=m!==void 0?m:t==null?void 0:t[f];p&&(s+=",",s+=`${L.tag(f)}=${L.tag(p)}`)}});let c=this._values.getTimestamp();return e?typeof e=="string"?c=We(c,e):c=e(c):c=Me(c),`${L.measurement(this.getMeasurement())}${s} ${i}${c!==void 0?` ${c}`:""}`}toString(){let e=this.toLineProtocol(void 0);return e||`invalid point: ${JSON.stringify(this,void 0)}`}};function qe(r={}){let e=0,t={next:n=>{if(e===0&&r.next&&n!==null&&n!==void 0)return r.next(n)},error:n=>{e===0&&(e=1,r.error&&r.error(n))},complete:()=>{e===0&&(e=2,r.complete&&r.complete())},responseStarted:(n,i)=>{r.responseStarted&&r.responseStarted(n,i)}};return r.useCancellable&&(t.useCancellable=r.useCancellable.bind(r)),r.useResume&&(t.useResume=r.useResume.bind(r)),t}function oe(r){let e={};return r.headers.forEach((t,n)=>{let i=e[n];i===void 0?e[n]=t:Array.isArray(i)?i.push(t):e[n]=[i,t]}),e}var Q=class{constructor(e){this._connectionOptions=e;d(this,"chunkCombiner",Ae());d(this,"_defaultHeaders");d(this,"_url");d(this,"requestDecorator",function(){});var t;if(this._defaultHeaders={"content-type":"application/json; charset=utf-8",...e.headers},this._connectionOptions.token){let n=(t=this._connectionOptions.authScheme)!=null?t:"Token";this._defaultHeaders.Authorization=`${n} ${this._connectionOptions.token}`}this._url=String(this._connectionOptions.host),this._url.endsWith("/")&&(this._url=this._url.substring(0,this._url.length-1)),this._url.endsWith("/api/v2")&&(this._url=this._url.substring(0,this._url.length-7),U.warn(`Please remove '/api/v2' context path from InfluxDB base url, using ${this._url} !`))}_connectionOptions;send(e,t,n,i){let s=qe(i),o=!1,a=n.signal,u,c=()=>{},f=c;if(i&&i.useCancellable){let m=new AbortController;a||(a=m.signal,n={...n,signal:a}),a.addEventListener("abort",()=>{f()}),i.useCancellable({cancel(){o=!0,m.abort()},isCancelled(){return o||a.aborted}})}this._fetch(e,t,n).then(async m=>{if(i!=null&&i.responseStarted&&s.responseStarted(oe(m),m.status),await this._throwOnErrorResponse(m),m.body){let p=m.body.getReader(),F;do{if(u&&await u,o)break;if(F=await p.read(),s.next(F.value)===!1){let h=s.useResume;if(!h){let O="Unable to pause, useResume is not configured!";return await p.cancel(O),Promise.reject(new Error(O))}u=new Promise(O=>{f=()=>{O(),u=void 0,f=c},h(f)})}}while(!F.done)}else if(m.arrayBuffer){let p=await m.arrayBuffer();s.next(new Uint8Array(p))}else{let p=await m.text();s.next(new TextEncoder().encode(p))}}).catch(m=>{o||s.error(m)}).finally(()=>s.complete())}async _throwOnErrorResponse(e){if(e.status>=300){let t="";try{if(t=await e.text(),!t){let n=e.headers.get("x-influxdb-error");n&&(t=n)}}catch(n){throw U.warn("Unable to receive error body",n),new E(e.status,e.statusText,void 0,e.headers.get("content-type"),oe(e))}throw new E(e.status,e.statusText,t,e.headers.get("content-type"),oe(e))}}async*iterate(e,t,n){var s;let i=await this._fetch(e,t,n);if(await this._throwOnErrorResponse(i),i.body){let o=i.body.getReader();for(;;){let{value:a,done:u}=await o.read();if(u)break;if((s=n.signal)!=null&&s.aborted)throw await i.body.cancel(),new G;yield a}}else if(i.arrayBuffer){let o=await i.arrayBuffer();yield new Uint8Array(o)}else{let o=await i.text();yield new TextEncoder().encode(o)}}async request(e,t,n,i){var c,f;let s=await this._fetch(e,t,n),{headers:o}=s,a=o.get("content-type")||"";i&&i(oe(s),s.status),await this._throwOnErrorResponse(s);let u=(f=(c=n.headers)==null?void 0:c.accept)!=null?f:a;if(u.includes("json"))return await s.json();if(u.includes("text")||u.startsWith("application/csv"))return await s.text()}_fetch(e,t,n){let{method:i,headers:s,...o}=n,a=`${this._url}${e}`,u={method:i,body:i==="GET"||i==="HEAD"?void 0:typeof t=="string"?t:JSON.stringify(t),headers:{...this._defaultHeaders,...s},credentials:"omit",...this._connectionOptions.transportOptions,...o};return this.requestDecorator(u,n,a),fetch(a,u)}};var vt=X("@protobuf-ts/grpcweb-transport"),Mt=({host:r,timeout:e,clientOptions:t})=>{var i;(t!=null&&t.grpcOptions||(i=t==null?void 0:t.queryOptions)!=null&&i.grpcOptions)&&console.warn(`Detected grpcClientOptions: such options are ignored in the GrpcWebFetchTransport:
|
|
11
15
|
|
|
12
|
-
${JSON.stringify(t)}`);let{interceptors:n}=t!=null?t:{};return new
|
|
13
|
-
`),
|
|
14
|
-
`:case"\r":case" ":case" ":continue;default:throw Error("invalid base64 string.")}switch(i){case 0:o=s,i=1;break;case 1:t[n++]=o<<2|(s&48)>>4,o=s,i=2;break;case 2:t[n++]=(o&15)<<4|(s&60)>>2,o=s,i=3;break;case 3:t[n++]=(o&3)<<6|s,i=0;break}}if(i==1)throw Error("invalid base64 string.");return t.subarray(0,n)}function Ct(r){let e="",t=0,n,i=0;for(let s=0;s<r.length;s++)switch(n=r[s],t){case 0:e+=k[n>>2],i=(n&3)<<4,t=1;break;case 1:e+=k[i|n>>4],i=(n&15)<<2,t=2;break;case 2:e+=k[i|n>>6],e+=k[n&63],t=0;break}return t&&(e+=k[i],e+="=",t==1&&(e+="=")),e}var M;(function(r){r.symbol=Symbol.for("protobuf-ts/unknown"),r.onRead=(t,n,i,s,o)=>{(e(n)?n[r.symbol]:n[r.symbol]=[]).push({no:i,wireType:s,data:o})},r.onWrite=(t,n,i)=>{for(let{no:s,wireType:o,data:a}of r.list(n))i.tag(s,o).raw(a)},r.list=(t,n)=>{if(e(t)){let i=t[r.symbol];return n?i.filter(s=>s.no==n):i}return[]},r.last=(t,n)=>r.list(t,n).slice(-1)[0];let e=t=>t&&Array.isArray(t[r.symbol])})(M||(M={}));var w;(function(r){r[r.Varint=0]="Varint",r[r.Bit64=1]="Bit64",r[r.LengthDelimited=2]="LengthDelimited",r[r.StartGroup=3]="StartGroup",r[r.EndGroup=4]="EndGroup",r[r.Bit32=5]="Bit32"})(w||(w={}));function Lt(){let r=0,e=0;for(let n=0;n<28;n+=7){let i=this.buf[this.pos++];if(r|=(i&127)<<n,(i&128)==0)return this.assertBounds(),[r,e]}let t=this.buf[this.pos++];if(r|=(t&15)<<28,e=(t&112)>>4,(t&128)==0)return this.assertBounds(),[r,e];for(let n=3;n<=31;n+=7){let i=this.buf[this.pos++];if(e|=(i&127)<<n,(i&128)==0)return this.assertBounds(),[r,e]}throw new Error("invalid varint")}function oe(r,e,t){for(let s=0;s<28;s=s+7){let o=r>>>s,a=!(!(o>>>7)&&e==0),u=(a?o|128:o)&255;if(t.push(u),!a)return}let n=r>>>28&15|(e&7)<<4,i=e>>3!=0;if(t.push((i?n|128:n)&255),!!i){for(let s=3;s<31;s=s+7){let o=e>>>s,a=!!(o>>>7),u=(a?o|128:o)&255;if(t.push(u),!a)return}t.push(e>>>31&1)}}var se=65536*65536;function $e(r){let e=r[0]=="-";e&&(r=r.slice(1));let t=1e6,n=0,i=0;function s(o,a){let u=Number(r.slice(o,a));i*=t,n=n*t+u,n>=se&&(i=i+(n/se|0),n=n%se)}return s(-24,-18),s(-18,-12),s(-12,-6),s(-6),[e,n,i]}function ae(r,e){if(e>>>0<=2097151)return""+(se*e+(r>>>0));let t=r&16777215,n=(r>>>24|e<<8)>>>0&16777215,i=e>>16&65535,s=t+n*6777216+i*6710656,o=n+i*8147497,a=i*2,u=1e7;s>=u&&(o+=Math.floor(s/u),s%=u),o>=u&&(a+=Math.floor(o/u),o%=u);function c(f,m){let p=f?String(f):"";return m?"0000000".slice(p.length)+p:p}return c(a,0)+c(o,a)+c(s,1)}function qe(r,e){if(r>=0){for(;r>127;)e.push(r&127|128),r=r>>>7;e.push(r)}else{for(let t=0;t<9;t++)e.push(r&127|128),r=r>>7;e.push(1)}}function Bt(){let r=this.buf[this.pos++],e=r&127;if((r&128)==0)return this.assertBounds(),e;if(r=this.buf[this.pos++],e|=(r&127)<<7,(r&128)==0)return this.assertBounds(),e;if(r=this.buf[this.pos++],e|=(r&127)<<14,(r&128)==0)return this.assertBounds(),e;if(r=this.buf[this.pos++],e|=(r&127)<<21,(r&128)==0)return this.assertBounds(),e;r=this.buf[this.pos++],e|=(r&15)<<28;for(let t=5;(r&128)!==0&&t<10;t++)r=this.buf[this.pos++];if((r&128)!=0)throw new Error("invalid varint");return this.assertBounds(),e>>>0}var y;function _r(){let r=new DataView(new ArrayBuffer(8));y=globalThis.BigInt!==void 0&&typeof r.getBigInt64=="function"&&typeof r.getBigUint64=="function"&&typeof r.setBigInt64=="function"&&typeof r.setBigUint64=="function"?{MIN:BigInt("-9223372036854775808"),MAX:BigInt("9223372036854775807"),UMIN:BigInt("0"),UMAX:BigInt("18446744073709551615"),C:BigInt,V:r}:void 0}_r();function Vt(r){if(!r)throw new Error("BigInt unavailable, see https://github.com/timostamm/protobuf-ts/blob/v1.0.8/MANUAL.md#bigint-support")}var vt=/^-?[0-9]+$/,le=4294967296,ue=2147483648,ce=class{constructor(e,t){this.lo=e|0,this.hi=t|0}isZero(){return this.lo==0&&this.hi==0}toNumber(){let e=this.hi*le+(this.lo>>>0);if(!Number.isSafeInteger(e))throw new Error("cannot convert to safe number");return e}},F=class r extends ce{static from(e){if(y)switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=="")throw new Error("string is no integer");e=y.C(e);case"number":if(e===0)return this.ZERO;e=y.C(e);case"bigint":if(!e)return this.ZERO;if(e<y.UMIN)throw new Error("signed value for ulong");if(e>y.UMAX)throw new Error("ulong too large");return y.V.setBigUint64(0,e,!0),new r(y.V.getInt32(0,!0),y.V.getInt32(4,!0))}else switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=e.trim(),!vt.test(e))throw new Error("string is no integer");let[t,n,i]=$e(e);if(t)throw new Error("signed value for ulong");return new r(n,i);case"number":if(e==0)return this.ZERO;if(!Number.isSafeInteger(e))throw new Error("number is no integer");if(e<0)throw new Error("signed value for ulong");return new r(e,e/le)}throw new Error("unknown value "+typeof e)}toString(){return y?this.toBigInt().toString():ae(this.lo,this.hi)}toBigInt(){return Vt(y),y.V.setInt32(0,this.lo,!0),y.V.setInt32(4,this.hi,!0),y.V.getBigUint64(0,!0)}};F.ZERO=new F(0,0);var b=class r extends ce{static from(e){if(y)switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=="")throw new Error("string is no integer");e=y.C(e);case"number":if(e===0)return this.ZERO;e=y.C(e);case"bigint":if(!e)return this.ZERO;if(e<y.MIN)throw new Error("signed long too small");if(e>y.MAX)throw new Error("signed long too large");return y.V.setBigInt64(0,e,!0),new r(y.V.getInt32(0,!0),y.V.getInt32(4,!0))}else switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=e.trim(),!vt.test(e))throw new Error("string is no integer");let[t,n,i]=$e(e);if(t){if(i>ue||i==ue&&n!=0)throw new Error("signed long too small")}else if(i>=ue)throw new Error("signed long too large");let s=new r(n,i);return t?s.negate():s;case"number":if(e==0)return this.ZERO;if(!Number.isSafeInteger(e))throw new Error("number is no integer");return e>0?new r(e,e/le):new r(-e,-e/le).negate()}throw new Error("unknown value "+typeof e)}isNegative(){return(this.hi&ue)!==0}negate(){let e=~this.hi,t=this.lo;return t?t=~t+1:e+=1,new r(t,e)}toString(){if(y)return this.toBigInt().toString();if(this.isNegative()){let e=this.negate();return"-"+ae(e.lo,e.hi)}return ae(this.lo,this.hi)}toBigInt(){return Vt(y),y.V.setInt32(0,this.lo,!0),y.V.setInt32(4,this.hi,!0),y.V.getBigInt64(0,!0)}};b.ZERO=new b(0,0);var Mt={readUnknownField:!0,readerFactory:r=>new He(r)};function Wt(r){return r?Object.assign(Object.assign({},Mt),r):Mt}var He=class{constructor(e,t){this.varint64=Lt,this.uint32=Bt,this.buf=e,this.len=e.length,this.pos=0,this.view=new DataView(e.buffer,e.byteOffset,e.byteLength),this.textDecoder=t!=null?t:new TextDecoder("utf-8",{fatal:!0,ignoreBOM:!0})}tag(){let e=this.uint32(),t=e>>>3,n=e&7;if(t<=0||n<0||n>5)throw new Error("illegal tag: field no "+t+" wire type "+n);return[t,n]}skip(e){let t=this.pos;switch(e){case w.Varint:for(;this.buf[this.pos++]&128;);break;case w.Bit64:this.pos+=4;case w.Bit32:this.pos+=4;break;case w.LengthDelimited:let n=this.uint32();this.pos+=n;break;case w.StartGroup:let i;for(;(i=this.tag()[1])!==w.EndGroup;)this.skip(i);break;default:throw new Error("cant skip wire type "+e)}return this.assertBounds(),this.buf.subarray(t,this.pos)}assertBounds(){if(this.pos>this.len)throw new RangeError("premature EOF")}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)}int64(){return new b(...this.varint64())}uint64(){return new F(...this.varint64())}sint64(){let[e,t]=this.varint64(),n=-(e&1);return e=(e>>>1|(t&1)<<31)^n,t=t>>>1^n,new b(e,t)}bool(){let[e,t]=this.varint64();return e!==0||t!==0}fixed32(){return this.view.getUint32((this.pos+=4)-4,!0)}sfixed32(){return this.view.getInt32((this.pos+=4)-4,!0)}fixed64(){return new F(this.sfixed32(),this.sfixed32())}sfixed64(){return new b(this.sfixed32(),this.sfixed32())}float(){return this.view.getFloat32((this.pos+=4)-4,!0)}double(){return this.view.getFloat64((this.pos+=8)-8,!0)}bytes(){let e=this.uint32(),t=this.pos;return this.pos+=e,this.assertBounds(),this.buf.subarray(t,t+e)}string(){return this.textDecoder.decode(this.bytes())}};function g(r,e){if(!r)throw new Error(e)}var Er=34028234663852886e22,kr=-34028234663852886e22,Sr=4294967295,Rr=2147483647,Ar=-2147483648;function A(r){if(typeof r!="number")throw new Error("invalid int 32: "+typeof r);if(!Number.isInteger(r)||r>Rr||r<Ar)throw new Error("invalid int 32: "+r)}function B(r){if(typeof r!="number")throw new Error("invalid uint 32: "+typeof r);if(!Number.isInteger(r)||r>Sr||r<0)throw new Error("invalid uint 32: "+r)}function W(r){if(typeof r!="number")throw new Error("invalid float 32: "+typeof r);if(Number.isFinite(r)&&(r>Er||r<kr))throw new Error("invalid float 32: "+r)}var $t={writeUnknownFields:!0,writerFactory:()=>new je};function qt(r){return r?Object.assign(Object.assign({},$t),r):$t}var je=class{constructor(e){this.stack=[],this.textEncoder=e!=null?e:new TextEncoder,this.chunks=[],this.buf=[]}finish(){this.chunks.push(new Uint8Array(this.buf));let e=0;for(let i=0;i<this.chunks.length;i++)e+=this.chunks[i].length;let t=new Uint8Array(e),n=0;for(let i=0;i<this.chunks.length;i++)t.set(this.chunks[i],n),n+=this.chunks[i].length;return this.chunks=[],t}fork(){return this.stack.push({chunks:this.chunks,buf:this.buf}),this.chunks=[],this.buf=[],this}join(){let e=this.finish(),t=this.stack.pop();if(!t)throw new Error("invalid state, fork stack empty");return this.chunks=t.chunks,this.buf=t.buf,this.uint32(e.byteLength),this.raw(e)}tag(e,t){return this.uint32((e<<3|t)>>>0)}raw(e){return this.buf.length&&(this.chunks.push(new Uint8Array(this.buf)),this.buf=[]),this.chunks.push(e),this}uint32(e){for(B(e);e>127;)this.buf.push(e&127|128),e=e>>>7;return this.buf.push(e),this}int32(e){return A(e),qe(e,this.buf),this}bool(e){return this.buf.push(e?1:0),this}bytes(e){return this.uint32(e.byteLength),this.raw(e)}string(e){let t=this.textEncoder.encode(e);return this.uint32(t.byteLength),this.raw(t)}float(e){W(e);let t=new Uint8Array(4);return new DataView(t.buffer).setFloat32(0,e,!0),this.raw(t)}double(e){let t=new Uint8Array(8);return new DataView(t.buffer).setFloat64(0,e,!0),this.raw(t)}fixed32(e){B(e);let t=new Uint8Array(4);return new DataView(t.buffer).setUint32(0,e,!0),this.raw(t)}sfixed32(e){A(e);let t=new Uint8Array(4);return new DataView(t.buffer).setInt32(0,e,!0),this.raw(t)}sint32(e){return A(e),e=(e<<1^e>>31)>>>0,qe(e,this.buf),this}sfixed64(e){let t=new Uint8Array(8),n=new DataView(t.buffer),i=b.from(e);return n.setInt32(0,i.lo,!0),n.setInt32(4,i.hi,!0),this.raw(t)}fixed64(e){let t=new Uint8Array(8),n=new DataView(t.buffer),i=F.from(e);return n.setInt32(0,i.lo,!0),n.setInt32(4,i.hi,!0),this.raw(t)}int64(e){let t=b.from(e);return oe(t.lo,t.hi,this.buf),this}sint64(e){let t=b.from(e),n=t.hi>>31,i=t.lo<<1^n,s=(t.hi<<1|t.lo>>>31)^n;return oe(i,s,this.buf),this}uint64(e){let t=F.from(e);return oe(t.lo,t.hi,this.buf),this}};var Ht={emitDefaultValues:!1,enumAsInteger:!1,useProtoFieldName:!1,prettySpaces:0},jt={ignoreUnknownFields:!1};function Xt(r){return r?Object.assign(Object.assign({},jt),r):jt}function Jt(r){return r?Object.assign(Object.assign({},Ht),r):Ht}var fe=Symbol.for("protobuf-ts/message-type");function Xe(r){let e=!1,t=[];for(let n=0;n<r.length;n++){let i=r.charAt(n);i=="_"?e=!0:/\d/.test(i)?(t.push(i),e=!0):e?(t.push(i.toUpperCase()),e=!1):n==0?t.push(i.toLowerCase()):t.push(i)}return t.join("")}var l;(function(r){r[r.DOUBLE=1]="DOUBLE",r[r.FLOAT=2]="FLOAT",r[r.INT64=3]="INT64",r[r.UINT64=4]="UINT64",r[r.INT32=5]="INT32",r[r.FIXED64=6]="FIXED64",r[r.FIXED32=7]="FIXED32",r[r.BOOL=8]="BOOL",r[r.STRING=9]="STRING",r[r.BYTES=12]="BYTES",r[r.UINT32=13]="UINT32",r[r.SFIXED32=15]="SFIXED32",r[r.SFIXED64=16]="SFIXED64",r[r.SINT32=17]="SINT32",r[r.SINT64=18]="SINT64"})(l||(l={}));var I;(function(r){r[r.BIGINT=0]="BIGINT",r[r.STRING=1]="STRING",r[r.NUMBER=2]="NUMBER"})(I||(I={}));var K;(function(r){r[r.NO=0]="NO",r[r.PACKED=1]="PACKED",r[r.UNPACKED=2]="UNPACKED"})(K||(K={}));function Gt(r){var e,t,n,i;return r.localName=(e=r.localName)!==null&&e!==void 0?e:Xe(r.name),r.jsonName=(t=r.jsonName)!==null&&t!==void 0?t:Xe(r.name),r.repeat=(n=r.repeat)!==null&&n!==void 0?n:K.NO,r.opt=(i=r.opt)!==null&&i!==void 0?i:r.repeat||r.oneof?!1:r.kind=="message",r}function Kt(r){if(typeof r!="object"||r===null||!r.hasOwnProperty("oneofKind"))return!1;switch(typeof r.oneofKind){case"string":return r[r.oneofKind]===void 0?!1:Object.keys(r).length==2;case"undefined":return Object.keys(r).length==1;default:return!1}}var pe=class{constructor(e){var t;this.fields=(t=e.fields)!==null&&t!==void 0?t:[]}prepare(){if(this.data)return;let e=[],t=[],n=[];for(let i of this.fields)if(i.oneof)n.includes(i.oneof)||(n.push(i.oneof),e.push(i.oneof),t.push(i.oneof));else switch(t.push(i.localName),i.kind){case"scalar":case"enum":(!i.opt||i.repeat)&&e.push(i.localName);break;case"message":i.repeat&&e.push(i.localName);break;case"map":e.push(i.localName);break}this.data={req:e,known:t,oneofs:Object.values(n)}}is(e,t,n=!1){if(t<0)return!0;if(e==null||typeof e!="object")return!1;this.prepare();let i=Object.keys(e),s=this.data;if(i.length<s.req.length||s.req.some(o=>!i.includes(o))||!n&&i.some(o=>!s.known.includes(o)))return!1;if(t<1)return!0;for(let o of s.oneofs){let a=e[o];if(!Kt(a))return!1;if(a.oneofKind===void 0)continue;let u=this.fields.find(c=>c.localName===a.oneofKind);if(!u||!this.field(a[a.oneofKind],u,n,t))return!1}for(let o of this.fields)if(o.oneof===void 0&&!this.field(e[o.localName],o,n,t))return!1;return!0}field(e,t,n,i){let s=t.repeat;switch(t.kind){case"scalar":return e===void 0?t.opt:s?this.scalars(e,t.T,i,t.L):this.scalar(e,t.T,t.L);case"enum":return e===void 0?t.opt:s?this.scalars(e,l.INT32,i):this.scalar(e,l.INT32);case"message":return e===void 0?!0:s?this.messages(e,t.T(),n,i):this.message(e,t.T(),n,i);case"map":if(typeof e!="object"||e===null)return!1;if(i<2)return!0;if(!this.mapKeys(e,t.K,i))return!1;switch(t.V.kind){case"scalar":return this.scalars(Object.values(e),t.V.T,i,t.V.L);case"enum":return this.scalars(Object.values(e),l.INT32,i);case"message":return this.messages(Object.values(e),t.V.T(),n,i)}break}return!0}message(e,t,n,i){return n?t.isAssignable(e,i):t.is(e,i)}messages(e,t,n,i){if(!Array.isArray(e))return!1;if(i<2)return!0;if(n){for(let s=0;s<e.length&&s<i;s++)if(!t.isAssignable(e[s],i-1))return!1}else for(let s=0;s<e.length&&s<i;s++)if(!t.is(e[s],i-1))return!1;return!0}scalar(e,t,n){let i=typeof e;switch(t){case l.UINT64:case l.FIXED64:case l.INT64:case l.SFIXED64:case l.SINT64:switch(n){case I.BIGINT:return i=="bigint";case I.NUMBER:return i=="number"&&!isNaN(e);default:return i=="string"}case l.BOOL:return i=="boolean";case l.STRING:return i=="string";case l.BYTES:return e instanceof Uint8Array;case l.DOUBLE:case l.FLOAT:return i=="number"&&!isNaN(e);default:return i=="number"&&Number.isInteger(e)}}scalars(e,t,n,i){if(!Array.isArray(e))return!1;if(n<2)return!0;if(Array.isArray(e)){for(let s=0;s<e.length&&s<n;s++)if(!this.scalar(e[s],t,i))return!1}return!0}mapKeys(e,t,n){let i=Object.keys(e);switch(t){case l.INT32:case l.FIXED32:case l.SFIXED32:case l.SINT32:case l.UINT32:return this.scalars(i.slice(0,n).map(s=>parseInt(s)),t,n);case l.BOOL:return this.scalars(i.slice(0,n).map(s=>s=="true"?!0:s=="false"?!1:s),t,n);default:return this.scalars(i,t,n,I.STRING)}}};function N(r,e){switch(e){case I.BIGINT:return r.toBigInt();case I.NUMBER:return r.toNumber();default:return r.toString()}}var me=class{constructor(e){this.info=e}prepare(){var e;if(this.fMap===void 0){this.fMap={};let t=(e=this.info.fields)!==null&&e!==void 0?e:[];for(let n of t)this.fMap[n.name]=n,this.fMap[n.jsonName]=n,this.fMap[n.localName]=n}}assert(e,t,n){if(!e){let i=L(n);throw(i=="number"||i=="boolean")&&(i=n.toString()),new Error(`Cannot parse JSON ${i} for ${this.info.typeName}#${t}`)}}read(e,t,n){this.prepare();let i=[];for(let[s,o]of Object.entries(e)){let a=this.fMap[s];if(!a){if(!n.ignoreUnknownFields)throw new Error(`Found unknown field while reading ${this.info.typeName} from JSON format. JSON key: ${s}`);continue}let u=a.localName,c;if(a.oneof){if(o===null&&(a.kind!=="enum"||a.T()[0]!=="google.protobuf.NullValue"))continue;if(i.includes(a.oneof))throw new Error(`Multiple members of the oneof group "${a.oneof}" of ${this.info.typeName} are present in JSON.`);i.push(a.oneof),c=t[a.oneof]={oneofKind:u}}else c=t;if(a.kind=="map"){if(o===null)continue;this.assert(We(o),a.name,o);let f=c[u];for(let[m,p]of Object.entries(o)){this.assert(p!==null,a.name+" map value",null);let O;switch(a.V.kind){case"message":O=a.V.T().internalJsonRead(p,n);break;case"enum":if(O=this.enum(a.V.T(),p,a.name,n.ignoreUnknownFields),O===!1)continue;break;case"scalar":O=this.scalar(p,a.V.T,a.V.L,a.name);break}this.assert(O!==void 0,a.name+" map value",p);let h=m;a.K==l.BOOL&&(h=h=="true"?!0:h=="false"?!1:h),h=this.scalar(h,a.K,I.STRING,a.name).toString(),f[h]=O}}else if(a.repeat){if(o===null)continue;this.assert(Array.isArray(o),a.name,o);let f=c[u];for(let m of o){this.assert(m!==null,a.name,null);let p;switch(a.kind){case"message":p=a.T().internalJsonRead(m,n);break;case"enum":if(p=this.enum(a.T(),m,a.name,n.ignoreUnknownFields),p===!1)continue;break;case"scalar":p=this.scalar(m,a.T,a.L,a.name);break}this.assert(p!==void 0,a.name,o),f.push(p)}}else switch(a.kind){case"message":if(o===null&&a.T().typeName!="google.protobuf.Value"){this.assert(a.oneof===void 0,a.name+" (oneof member)",null);continue}c[u]=a.T().internalJsonRead(o,n,c[u]);break;case"enum":if(o===null)continue;let f=this.enum(a.T(),o,a.name,n.ignoreUnknownFields);if(f===!1)continue;c[u]=f;break;case"scalar":if(o===null)continue;c[u]=this.scalar(o,a.T,a.L,a.name);break}}}enum(e,t,n,i){if(e[0]=="google.protobuf.NullValue"&&g(t===null||t==="NULL_VALUE",`Unable to parse field ${this.info.typeName}#${n}, enum ${e[0]} only accepts null.`),t===null)return 0;switch(typeof t){case"number":return g(Number.isInteger(t),`Unable to parse field ${this.info.typeName}#${n}, enum can only be integral number, got ${t}.`),t;case"string":let s=t;e[2]&&t.substring(0,e[2].length)===e[2]&&(s=t.substring(e[2].length));let o=e[1][s];return typeof o=="undefined"&&i?!1:(g(typeof o=="number",`Unable to parse field ${this.info.typeName}#${n}, enum ${e[0]} has no value for "${t}".`),o)}g(!1,`Unable to parse field ${this.info.typeName}#${n}, cannot parse enum value from ${typeof t}".`)}scalar(e,t,n,i){let s;try{switch(t){case l.DOUBLE:case l.FLOAT:if(e===null)return 0;if(e==="NaN")return Number.NaN;if(e==="Infinity")return Number.POSITIVE_INFINITY;if(e==="-Infinity")return Number.NEGATIVE_INFINITY;if(e===""){s="empty string";break}if(typeof e=="string"&&e.trim().length!==e.length){s="extra whitespace";break}if(typeof e!="string"&&typeof e!="number")break;let o=Number(e);if(Number.isNaN(o)){s="not a number";break}if(!Number.isFinite(o)){s="too large or small";break}return t==l.FLOAT&&W(o),o;case l.INT32:case l.FIXED32:case l.SFIXED32:case l.SINT32:case l.UINT32:if(e===null)return 0;let a;if(typeof e=="number"?a=e:e===""?s="empty string":typeof e=="string"&&(e.trim().length!==e.length?s="extra whitespace":a=Number(e)),a===void 0)break;return t==l.UINT32?B(a):A(a),a;case l.INT64:case l.SFIXED64:case l.SINT64:if(e===null)return N(b.ZERO,n);if(typeof e!="number"&&typeof e!="string")break;return N(b.from(e),n);case l.FIXED64:case l.UINT64:if(e===null)return N(F.ZERO,n);if(typeof e!="number"&&typeof e!="string")break;return N(F.from(e),n);case l.BOOL:if(e===null)return!1;if(typeof e!="boolean")break;return e;case l.STRING:if(e===null)return"";if(typeof e!="string"){s="extra whitespace";break}try{encodeURIComponent(e)}catch(u){u="invalid UTF8";break}return e;case l.BYTES:if(e===null||e==="")return new Uint8Array(0);if(typeof e!="string")break;return Ut(e)}}catch(o){s=o.message}this.assert(!1,i+(s?" - "+s:""),e)}};var he=class{constructor(e){var t;this.fields=(t=e.fields)!==null&&t!==void 0?t:[]}write(e,t){let n={},i=e;for(let s of this.fields){if(!s.oneof){let c=this.field(s,i[s.localName],t);c!==void 0&&(n[t.useProtoFieldName?s.name:s.jsonName]=c);continue}let o=i[s.oneof];if(o.oneofKind!==s.localName)continue;let a=s.kind=="scalar"||s.kind=="enum"?Object.assign(Object.assign({},t),{emitDefaultValues:!0}):t,u=this.field(s,o[s.localName],a);g(u!==void 0),n[t.useProtoFieldName?s.name:s.jsonName]=u}return n}field(e,t,n){let i;if(e.kind=="map"){g(typeof t=="object"&&t!==null);let s={};switch(e.V.kind){case"scalar":for(let[u,c]of Object.entries(t)){let f=this.scalar(e.V.T,c,e.name,!1,!0);g(f!==void 0),s[u.toString()]=f}break;case"message":let o=e.V.T();for(let[u,c]of Object.entries(t)){let f=this.message(o,c,e.name,n);g(f!==void 0),s[u.toString()]=f}break;case"enum":let a=e.V.T();for(let[u,c]of Object.entries(t)){g(c===void 0||typeof c=="number");let f=this.enum(a,c,e.name,!1,!0,n.enumAsInteger);g(f!==void 0),s[u.toString()]=f}break}(n.emitDefaultValues||Object.keys(s).length>0)&&(i=s)}else if(e.repeat){g(Array.isArray(t));let s=[];switch(e.kind){case"scalar":for(let u=0;u<t.length;u++){let c=this.scalar(e.T,t[u],e.name,e.opt,!0);g(c!==void 0),s.push(c)}break;case"enum":let o=e.T();for(let u=0;u<t.length;u++){g(t[u]===void 0||typeof t[u]=="number");let c=this.enum(o,t[u],e.name,e.opt,!0,n.enumAsInteger);g(c!==void 0),s.push(c)}break;case"message":let a=e.T();for(let u=0;u<t.length;u++){let c=this.message(a,t[u],e.name,n);g(c!==void 0),s.push(c)}break}(n.emitDefaultValues||s.length>0||n.emitDefaultValues)&&(i=s)}else switch(e.kind){case"scalar":i=this.scalar(e.T,t,e.name,e.opt,n.emitDefaultValues);break;case"enum":i=this.enum(e.T(),t,e.name,e.opt,n.emitDefaultValues,n.enumAsInteger);break;case"message":i=this.message(e.T(),t,e.name,n);break}return i}enum(e,t,n,i,s,o){if(e[0]=="google.protobuf.NullValue")return!s&&!i?void 0:null;if(t===void 0){g(i);return}if(!(t===0&&!s&&!i))return g(typeof t=="number"),g(Number.isInteger(t)),o||!e[1].hasOwnProperty(t)?t:e[2]?e[2]+e[1][t]:e[1][t]}message(e,t,n,i){return t===void 0?i.emitDefaultValues?null:void 0:e.internalJsonWrite(t,i)}scalar(e,t,n,i,s){if(t===void 0){g(i);return}let o=s||i;switch(e){case l.INT32:case l.SFIXED32:case l.SINT32:return t===0?o?0:void 0:(A(t),t);case l.FIXED32:case l.UINT32:return t===0?o?0:void 0:(B(t),t);case l.FLOAT:W(t);case l.DOUBLE:return t===0?o?0:void 0:(g(typeof t=="number"),Number.isNaN(t)?"NaN":t===Number.POSITIVE_INFINITY?"Infinity":t===Number.NEGATIVE_INFINITY?"-Infinity":t);case l.STRING:return t===""?o?"":void 0:(g(typeof t=="string"),t);case l.BOOL:return t===!1?o?!1:void 0:(g(typeof t=="boolean"),t);case l.UINT64:case l.FIXED64:g(typeof t=="number"||typeof t=="string"||typeof t=="bigint");let a=F.from(t);return a.isZero()&&!o?void 0:a.toString();case l.INT64:case l.SFIXED64:case l.SINT64:g(typeof t=="number"||typeof t=="string"||typeof t=="bigint");let u=b.from(t);return u.isZero()&&!o?void 0:u.toString();case l.BYTES:return g(t instanceof Uint8Array),t.byteLength?Ct(t):o?"":void 0}}};function Q(r,e=I.STRING){switch(r){case l.BOOL:return!1;case l.UINT64:case l.FIXED64:return N(F.ZERO,e);case l.INT64:case l.SFIXED64:case l.SINT64:return N(b.ZERO,e);case l.DOUBLE:case l.FLOAT:return 0;case l.BYTES:return new Uint8Array(0);case l.STRING:return"";default:return 0}}var de=class{constructor(e){this.info=e}prepare(){var e;if(!this.fieldNoToField){let t=(e=this.info.fields)!==null&&e!==void 0?e:[];this.fieldNoToField=new Map(t.map(n=>[n.no,n]))}}read(e,t,n,i){this.prepare();let s=i===void 0?e.len:e.pos+i;for(;e.pos<s;){let[o,a]=e.tag(),u=this.fieldNoToField.get(o);if(!u){let p=n.readUnknownField;if(p=="throw")throw new Error(`Unknown field ${o} (wire type ${a}) for ${this.info.typeName}`);let O=e.skip(a);p!==!1&&(p===!0?M.onRead:p)(this.info.typeName,t,o,a,O);continue}let c=t,f=u.repeat,m=u.localName;switch(u.oneof&&(c=c[u.oneof],c.oneofKind!==m&&(c=t[u.oneof]={oneofKind:m})),u.kind){case"scalar":case"enum":let p=u.kind=="enum"?l.INT32:u.T,O=u.kind=="scalar"?u.L:void 0;if(f){let P=c[m];if(a==w.LengthDelimited&&p!=l.STRING&&p!=l.BYTES){let q=e.uint32()+e.pos;for(;e.pos<q;)P.push(this.scalar(e,p,O))}else P.push(this.scalar(e,p,O))}else c[m]=this.scalar(e,p,O);break;case"message":if(f){let P=c[m],q=u.T().internalBinaryRead(e,e.uint32(),n);P.push(q)}else c[m]=u.T().internalBinaryRead(e,e.uint32(),n,c[m]);break;case"map":let[h,x]=this.mapEntry(u,e,n);c[m][h]=x;break}}}mapEntry(e,t,n){let i=t.uint32(),s=t.pos+i,o,a;for(;t.pos<s;){let[u,c]=t.tag();switch(u){case 1:e.K==l.BOOL?o=t.bool().toString():o=this.scalar(t,e.K,I.STRING);break;case 2:switch(e.V.kind){case"scalar":a=this.scalar(t,e.V.T,e.V.L);break;case"enum":a=t.int32();break;case"message":a=e.V.T().internalBinaryRead(t,t.uint32(),n);break}break;default:throw new Error(`Unknown field ${u} (wire type ${c}) in map entry for ${this.info.typeName}#${e.name}`)}}if(o===void 0){let u=Q(e.K);o=e.K==l.BOOL?u.toString():u}if(a===void 0)switch(e.V.kind){case"scalar":a=Q(e.V.T,e.V.L);break;case"enum":a=0;break;case"message":a=e.V.T().create();break}return[o,a]}scalar(e,t,n){switch(t){case l.INT32:return e.int32();case l.STRING:return e.string();case l.BOOL:return e.bool();case l.DOUBLE:return e.double();case l.FLOAT:return e.float();case l.INT64:return N(e.int64(),n);case l.UINT64:return N(e.uint64(),n);case l.FIXED64:return N(e.fixed64(),n);case l.FIXED32:return e.fixed32();case l.BYTES:return e.bytes();case l.UINT32:return e.uint32();case l.SFIXED32:return e.sfixed32();case l.SFIXED64:return N(e.sfixed64(),n);case l.SINT32:return e.sint32();case l.SINT64:return N(e.sint64(),n)}}};var ge=class{constructor(e){this.info=e}prepare(){if(!this.fields){let e=this.info.fields?this.info.fields.concat():[];this.fields=e.sort((t,n)=>t.no-n.no)}}write(e,t,n){this.prepare();for(let s of this.fields){let o,a,u=s.repeat,c=s.localName;if(s.oneof){let f=e[s.oneof];if(f.oneofKind!==c)continue;o=f[c],a=!0}else o=e[c],a=!1;switch(s.kind){case"scalar":case"enum":let f=s.kind=="enum"?l.INT32:s.T;if(u)if(g(Array.isArray(o)),u==K.PACKED)this.packed(t,f,s.no,o);else for(let m of o)this.scalar(t,f,s.no,m,!0);else o===void 0?g(s.opt):this.scalar(t,f,s.no,o,a||s.opt);break;case"message":if(u){g(Array.isArray(o));for(let m of o)this.message(t,n,s.T(),s.no,m)}else this.message(t,n,s.T(),s.no,o);break;case"map":g(typeof o=="object"&&o!==null);for(let[m,p]of Object.entries(o))this.mapEntry(t,n,s,m,p);break}}let i=n.writeUnknownFields;i!==!1&&(i===!0?M.onWrite:i)(this.info.typeName,e,t)}mapEntry(e,t,n,i,s){e.tag(n.no,w.LengthDelimited),e.fork();let o=i;switch(n.K){case l.INT32:case l.FIXED32:case l.UINT32:case l.SFIXED32:case l.SINT32:o=Number.parseInt(i);break;case l.BOOL:g(i=="true"||i=="false"),o=i=="true";break}switch(this.scalar(e,n.K,1,o,!0),n.V.kind){case"scalar":this.scalar(e,n.V.T,2,s,!0);break;case"enum":this.scalar(e,l.INT32,2,s,!0);break;case"message":this.message(e,t,n.V.T(),2,s);break}e.join()}message(e,t,n,i,s){s!==void 0&&(n.internalBinaryWrite(s,e.tag(i,w.LengthDelimited).fork(),t),e.join())}scalar(e,t,n,i,s){let[o,a,u]=this.scalarInfo(t,i);(!u||s)&&(e.tag(n,o),e[a](i))}packed(e,t,n,i){if(!i.length)return;g(t!==l.BYTES&&t!==l.STRING),e.tag(n,w.LengthDelimited),e.fork();let[,s]=this.scalarInfo(t);for(let o=0;o<i.length;o++)e[s](i[o]);e.join()}scalarInfo(e,t){let n=w.Varint,i,s=t===void 0,o=t===0;switch(e){case l.INT32:i="int32";break;case l.STRING:o=s||!t.length,n=w.LengthDelimited,i="string";break;case l.BOOL:o=t===!1,i="bool";break;case l.UINT32:i="uint32";break;case l.DOUBLE:n=w.Bit64,i="double";break;case l.FLOAT:n=w.Bit32,i="float";break;case l.INT64:o=s||b.from(t).isZero(),i="int64";break;case l.UINT64:o=s||F.from(t).isZero(),i="uint64";break;case l.FIXED64:o=s||F.from(t).isZero(),n=w.Bit64,i="fixed64";break;case l.BYTES:o=s||!t.byteLength,n=w.LengthDelimited,i="bytes";break;case l.FIXED32:n=w.Bit32,i="fixed32";break;case l.SFIXED32:n=w.Bit32,i="sfixed32";break;case l.SFIXED64:o=s||b.from(t).isZero(),n=w.Bit64,i="sfixed64";break;case l.SINT32:i="sint32";break;case l.SINT64:o=s||b.from(t).isZero(),i="sint64";break}return[n,i,s||o]}};function Qt(r){let e=r.messagePrototype?Object.create(r.messagePrototype):Object.defineProperty({},fe,{value:r});for(let t of r.fields){let n=t.localName;if(!t.opt)if(t.oneof)e[t.oneof]={oneofKind:void 0};else if(t.repeat)e[n]=[];else switch(t.kind){case"scalar":e[n]=Q(t.T,t.L);break;case"enum":e[n]=0;break;case"map":e[n]={};break}}return e}function be(r,e,t){let n,i=t,s;for(let o of r.fields){let a=o.localName;if(o.oneof){let u=i[o.oneof];if((u==null?void 0:u.oneofKind)==null)continue;if(n=u[a],s=e[o.oneof],s.oneofKind=u.oneofKind,n==null){delete s[a];continue}}else if(n=i[a],s=e,n==null)continue;switch(o.repeat&&(s[a].length=n.length),o.kind){case"scalar":case"enum":if(o.repeat)for(let c=0;c<n.length;c++)s[a][c]=n[c];else s[a]=n;break;case"message":let u=o.T();if(o.repeat)for(let c=0;c<n.length;c++)s[a][c]=u.create(n[c]);else s[a]===void 0?s[a]=u.create(n):u.mergePartial(s[a],n);break;case"map":switch(o.V.kind){case"scalar":case"enum":Object.assign(s[a],n);break;case"message":let c=o.V.T();for(let f of Object.keys(n))s[a][f]=c.create(n[f]);break}break}}}function zt(r,e,t){if(e===t)return!0;if(!e||!t)return!1;for(let n of r.fields){let i=n.localName,s=n.oneof?e[n.oneof][i]:e[i],o=n.oneof?t[n.oneof][i]:t[i];switch(n.kind){case"enum":case"scalar":let a=n.kind=="enum"?l.INT32:n.T;if(!(n.repeat?Zt(a,s,o):er(a,s,o)))return!1;break;case"map":if(!(n.V.kind=="message"?Yt(n.V.T(),ye(s),ye(o)):Zt(n.V.kind=="enum"?l.INT32:n.V.T,ye(s),ye(o))))return!1;break;case"message":let u=n.T();if(!(n.repeat?Yt(u,s,o):u.equals(s,o)))return!1;break}}return!0}var ye=Object.values;function er(r,e,t){if(e===t)return!0;if(r!==l.BYTES)return!1;let n=e,i=t;if(n.length!==i.length)return!1;for(let s=0;s<n.length;s++)if(n[s]!=i[s])return!1;return!0}function Zt(r,e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!er(r,e[n],t[n]))return!1;return!0}function Yt(r,e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!r.equals(e[n],t[n]))return!1;return!0}var tr=Object.getOwnPropertyDescriptors(Object.getPrototypeOf({})),Pr=tr[fe]={},T=class{constructor(e,t,n){this.defaultCheckDepth=16,this.typeName=e,this.fields=t.map(Gt),this.options=n!=null?n:{},Pr.value=this,this.messagePrototype=Object.create(null,tr),this.refTypeCheck=new pe(this),this.refJsonReader=new me(this),this.refJsonWriter=new he(this),this.refBinReader=new de(this),this.refBinWriter=new ge(this)}create(e){let t=Qt(this);return e!==void 0&&be(this,t,e),t}clone(e){let t=this.create();return be(this,t,e),t}equals(e,t){return zt(this,e,t)}is(e,t=this.defaultCheckDepth){return this.refTypeCheck.is(e,t,!1)}isAssignable(e,t=this.defaultCheckDepth){return this.refTypeCheck.is(e,t,!0)}mergePartial(e,t){be(this,e,t)}fromBinary(e,t){let n=Wt(t);return this.internalBinaryRead(n.readerFactory(e),e.byteLength,n)}fromJson(e,t){return this.internalJsonRead(e,Xt(t))}fromJsonString(e,t){let n=JSON.parse(e);return this.fromJson(n,t)}toJson(e,t){return this.internalJsonWrite(e,Jt(t))}toJsonString(e,t){var n;let i=this.toJson(e,t);return JSON.stringify(i,null,(n=t==null?void 0:t.prettySpaces)!==null&&n!==void 0?n:0)}toBinary(e,t){let n=qt(t);return this.internalBinaryWrite(e,n.writerFactory(),n).finish()}internalJsonRead(e,t,n){if(e!==null&&typeof e=="object"&&!Array.isArray(e)){let i=n!=null?n:this.create();return this.refJsonReader.read(e,i,t),i}throw new Error(`Unable to parse message ${this.typeName} from JSON ${L(e)}.`)}internalJsonWrite(e,t){return this.refJsonWriter.write(e,t)}internalBinaryWrite(e,t,n){return this.refBinWriter.write(e,t,n),t}internalBinaryRead(e,t,n,i){let s=i!=null?i:this.create();return this.refBinReader.read(e,s,n,t),s}};var Je=class extends T{constructor(){super("google.protobuf.Timestamp",[{no:1,name:"seconds",kind:"scalar",T:3,L:0},{no:2,name:"nanos",kind:"scalar",T:5}])}now(){let e=this.create(),t=Date.now();return e.seconds=b.from(Math.floor(t/1e3)).toBigInt(),e.nanos=t%1e3*1e6,e}toDate(e){return new Date(b.from(e.seconds).toNumber()*1e3+Math.ceil(e.nanos/1e6))}fromDate(e){let t=this.create(),n=e.getTime();return t.seconds=b.from(Math.floor(n/1e3)).toBigInt(),t.nanos=n%1e3*1e6,t}internalJsonWrite(e,t){let n=b.from(e.seconds).toNumber()*1e3;if(n<Date.parse("0001-01-01T00:00:00Z")||n>Date.parse("9999-12-31T23:59:59Z"))throw new Error("Unable to encode Timestamp to JSON. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.");if(e.nanos<0)throw new Error("Unable to encode invalid Timestamp to JSON. Nanos must not be negative.");let i="Z";if(e.nanos>0){let s=(e.nanos+1e9).toString().substring(1);s.substring(3)==="000000"?i="."+s.substring(0,3)+"Z":s.substring(6)==="000"?i="."+s.substring(0,6)+"Z":i="."+s+"Z"}return new Date(n).toISOString().replace(".000Z",i)}internalJsonRead(e,t,n){if(typeof e!="string")throw new Error("Unable to parse Timestamp from JSON "+L(e)+".");let i=e.match(/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(?:Z|\.([0-9]{3,9})Z|([+-][0-9][0-9]:[0-9][0-9]))$/);if(!i)throw new Error("Unable to parse Timestamp from JSON. Invalid format.");let s=Date.parse(i[1]+"-"+i[2]+"-"+i[3]+"T"+i[4]+":"+i[5]+":"+i[6]+(i[8]?i[8]:"Z"));if(Number.isNaN(s))throw new Error("Unable to parse Timestamp from JSON. Invalid value.");if(s<Date.parse("0001-01-01T00:00:00Z")||s>Date.parse("9999-12-31T23:59:59Z"))throw new globalThis.Error("Unable to parse Timestamp from JSON. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.");return n||(n=this.create()),n.seconds=b.from(s/1e3).toBigInt(),n.nanos=0,i[7]&&(n.nanos=parseInt("1"+i[7]+"0".repeat(9-i[7].length))-1e9),n}},Ge=new Je;var nr=(n=>(n[n.UNKNOWN=0]="UNKNOWN",n[n.PATH=1]="PATH",n[n.CMD=2]="CMD",n))(nr||{}),ir=(i=>(i[i.UNSPECIFIED=0]="UNSPECIFIED",i[i.CANCELLED=1]="CANCELLED",i[i.CANCELLING=2]="CANCELLING",i[i.NOT_CANCELLABLE=3]="NOT_CANCELLABLE",i))(ir||{}),Ke=class extends T{constructor(){super("arrow.flight.protocol.HandshakeRequest",[{no:1,name:"protocol_version",kind:"scalar",T:4,L:0},{no:2,name:"payload",kind:"scalar",T:12}])}},Dr=new Ke,Qe=class extends T{constructor(){super("arrow.flight.protocol.HandshakeResponse",[{no:1,name:"protocol_version",kind:"scalar",T:4,L:0},{no:2,name:"payload",kind:"scalar",T:12}])}},Ur=new Qe,Ze=class extends T{constructor(){super("arrow.flight.protocol.BasicAuth",[{no:2,name:"username",kind:"scalar",T:9},{no:3,name:"password",kind:"scalar",T:9}])}},bs=new Ze,Ye=class extends T{constructor(){super("arrow.flight.protocol.Empty",[])}},Cr=new Ye,ze=class extends T{constructor(){super("arrow.flight.protocol.ActionType",[{no:1,name:"type",kind:"scalar",T:9},{no:2,name:"description",kind:"scalar",T:9}])}},Lr=new ze,et=class extends T{constructor(){super("arrow.flight.protocol.Criteria",[{no:1,name:"expression",kind:"scalar",T:12}])}},Br=new et,tt=class extends T{constructor(){super("arrow.flight.protocol.Action",[{no:1,name:"type",kind:"scalar",T:9},{no:2,name:"body",kind:"scalar",T:12}])}},Vr=new tt,rt=class extends T{constructor(){super("arrow.flight.protocol.CancelFlightInfoRequest",[{no:1,name:"info",kind:"message",T:()=>we}])}},ys=new rt,nt=class extends T{constructor(){super("arrow.flight.protocol.RenewFlightEndpointRequest",[{no:1,name:"endpoint",kind:"message",T:()=>sr}])}},Ts=new nt,it=class extends T{constructor(){super("arrow.flight.protocol.Result",[{no:1,name:"body",kind:"scalar",T:12}])}},vr=new it,st=class extends T{constructor(){super("arrow.flight.protocol.CancelFlightInfoResult",[{no:1,name:"status",kind:"enum",T:()=>["arrow.flight.protocol.CancelStatus",ir,"CANCEL_STATUS_"]}])}},ws=new st,ot=class extends T{constructor(){super("arrow.flight.protocol.SchemaResult",[{no:1,name:"schema",kind:"scalar",T:12}])}},Mr=new ot,at=class extends T{constructor(){super("arrow.flight.protocol.FlightDescriptor",[{no:1,name:"type",kind:"enum",T:()=>["arrow.flight.protocol.FlightDescriptor.DescriptorType",nr]},{no:2,name:"cmd",kind:"scalar",T:12},{no:3,name:"path",kind:"scalar",repeat:2,T:9}])}},$=new at,ut=class extends T{constructor(){super("arrow.flight.protocol.FlightInfo",[{no:1,name:"schema",kind:"scalar",T:12},{no:2,name:"flight_descriptor",kind:"message",T:()=>$},{no:3,name:"endpoint",kind:"message",repeat:1,T:()=>sr},{no:4,name:"total_records",kind:"scalar",T:3,L:0},{no:5,name:"total_bytes",kind:"scalar",T:3,L:0},{no:6,name:"ordered",kind:"scalar",T:8},{no:7,name:"app_metadata",kind:"scalar",T:12}])}},we=new ut,lt=class extends T{constructor(){super("arrow.flight.protocol.PollInfo",[{no:1,name:"info",kind:"message",T:()=>we},{no:2,name:"flight_descriptor",kind:"message",T:()=>$},{no:3,name:"progress",kind:"scalar",opt:!0,T:1},{no:4,name:"expiration_time",kind:"message",T:()=>Ge}])}},Wr=new lt,ct=class extends T{constructor(){super("arrow.flight.protocol.FlightEndpoint",[{no:1,name:"ticket",kind:"message",T:()=>Oe},{no:2,name:"location",kind:"message",repeat:1,T:()=>$r},{no:3,name:"expiration_time",kind:"message",T:()=>Ge},{no:4,name:"app_metadata",kind:"scalar",T:12}])}},sr=new ct,ft=class extends T{constructor(){super("arrow.flight.protocol.Location",[{no:1,name:"uri",kind:"scalar",T:9}])}},$r=new ft,pt=class extends T{constructor(){super("arrow.flight.protocol.Ticket",[{no:1,name:"ticket",kind:"scalar",T:12}])}},Oe=new pt,mt=class extends T{constructor(){super("arrow.flight.protocol.FlightData",[{no:1,name:"flight_descriptor",kind:"message",T:()=>$},{no:2,name:"data_header",kind:"scalar",T:12},{no:3,name:"app_metadata",kind:"scalar",T:12},{no:1e3,name:"data_body",kind:"scalar",T:12}])}},Te=new mt,ht=class extends T{constructor(){super("arrow.flight.protocol.PutResult",[{no:1,name:"app_metadata",kind:"scalar",T:12}])}},qr=new ht,Fe=new rr.ServiceType("arrow.flight.protocol.FlightService",[{name:"Handshake",serverStreaming:!0,clientStreaming:!0,options:{},I:Dr,O:Ur},{name:"ListFlights",serverStreaming:!0,options:{},I:Br,O:we},{name:"GetFlightInfo",options:{},I:$,O:we},{name:"PollFlightInfo",options:{},I:$,O:Wr},{name:"GetSchema",options:{},I:$,O:Mr},{name:"DoGet",serverStreaming:!0,options:{},I:Oe,O:Te},{name:"DoPut",serverStreaming:!0,clientStreaming:!0,options:{},I:Te,O:qr},{name:"DoExchange",serverStreaming:!0,clientStreaming:!0,options:{},I:Te,O:Te},{name:"DoAction",serverStreaming:!0,options:{},I:Vr,O:vr},{name:"ListActions",serverStreaming:!0,options:{},I:Cr,O:Lr}]);var E=H("@protobuf-ts/runtime-rpc");var xe=class{constructor(e){this._transport=e;d(this,"typeName",Fe.typeName);d(this,"methods",Fe.methods);d(this,"options",Fe.options)}_transport;handshake(e){let t=this.methods[0],n=this._transport.mergeOptions(e);return(0,E.stackIntercept)("duplex",this._transport,t,n)}listFlights(e,t){let n=this.methods[1],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("serverStreaming",this._transport,n,i,e)}getFlightInfo(e,t){let n=this.methods[2],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("unary",this._transport,n,i,e)}pollFlightInfo(e,t){let n=this.methods[3],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("unary",this._transport,n,i,e)}getSchema(e,t){let n=this.methods[4],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("unary",this._transport,n,i,e)}doGet(e,t){let n=this.methods[5],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("serverStreaming",this._transport,n,i,e)}doPut(e){let t=this.methods[6],n=this._transport.mergeOptions(e);return(0,E.stackIntercept)("duplex",this._transport,t,n)}doExchange(e){let t=this.methods[7],n=this._transport.mergeOptions(e);return(0,E.stackIntercept)("duplex",this._transport,t,n)}doAction(e,t){let n=this.methods[8],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("serverStreaming",this._transport,n,i,e)}listActions(e,t){let n=this.methods[9],i=this._transport.mergeOptions(t);return(0,E.stackIntercept)("serverStreaming",this._transport,n,i,e)}};var or=/\$(\w+)/g;function ar(r){return!!r.match(or)}function ur(r,e){let t=r.match(or);if(t)for(let n of t)e[n.trim().replace("$","")]||V(new Error(`No parameter matching ${n} provided in the query params map`));return!0}var Hr="2.2.0",lr=`influxdb3-js/${Hr}`;var cr=H("apache-arrow/enum");function dt(r,e){if(e==null)return null;let t=r.metadata.get("iox::column::type");if(!t||r.typeId===cr.Type.Timestamp)return e;let[,,n,i]=t.split("::");if(n==="field")switch(i){case"integer":return v(e)?parseInt(e):(console.warn(`Value ${e} is not an integer`),e);case"uinteger":return At(e)?parseInt(e):(console.warn(`Value ${e} is not an unsigned integer`),e);case"float":return v(e)?parseFloat(e):(console.warn(`Value ${e} is not a float`),e);case"boolean":return typeof e=="boolean"||console.warn(`Value ${e} is not a boolean`),e;case"string":return typeof e=="string"?String(e):(console.warn(`Value ${e} is not a string`),e);default:return e}return e}var Z=class{constructor(e){this._options=e;d(this,"_closed",!1);d(this,"_flightClient");d(this,"_transport");d(this,"_defaultHeaders");let{host:t,queryTimeout:n,grpcOptions:i}=this._options;this._defaultHeaders=this._options.headers;let s={};i!==void 0&&(s=i),this._transport=C.queryTransport({host:t,timeout:n,clientOptions:{...s}}),this._flightClient=new xe(this._transport)}_options;prepareTicket(e,t,n){let i={database:e,sql_query:t,query_type:n.type};if(n.params){let s={};for(let o of Object.keys(n.params))n.params[o]&&(s[o]=n.params[o]);i.params=s}return Oe.create({ticket:new TextEncoder().encode(JSON.stringify(i))})}prepareMetadata(e){let t={"User-Agent":lr,...this._defaultHeaders,...e},n=this._options.token;return n&&(t.authorization=`Bearer ${n}`),t}async*_queryRawBatches(e,t,n){var m;if(n.params&&ar(e)&&ur(e,n.params),this._closed)throw new Error("queryApi: already closed!");let i=this._flightClient,s=this.prepareTicket(t,e,n),a={meta:this.prepareMetadata(n.headers)};a.timeout=(m=n.timeout)!=null?m:this._options.queryTimeout;let u=i.doGet(s,a),c=(async function*(){for await(let p of u.responses)yield St(p.dataHeader.length),yield p.dataHeader,yield p.dataBody})();yield*await Ie.RecordBatchReader.from(c)}async*query(e,t,n){let i=this._queryRawBatches(e,t,n);for await(let s of i)for(let o of s){let a={};for(let u of s.schema.fields){let c=o[u.name];a[u.name]=dt(u,c)}yield a}}async*queryPoints(e,t,n){var s;let i=this._queryRawBatches(e,t,n);for await(let o of i)for(let a=0;a<o.numRows;a++){let u=new R;for(let c=0;c<o.numCols;c++){let f=o.schema.fields[c],m=f.name,p=(s=o.getChildAt(c))==null?void 0:s.get(a),O=f.typeId,h=f.metadata.get("iox::column::type");if(p==null)continue;if((m==="measurement"||m=="iox::measurement")&&typeof p=="string"){u.setMeasurement(p);continue}if(!h){m==="time"&&O===Ie.Type.Timestamp?u.setTimestamp(p):u.setField(m,p);continue}let[,,x,P]=h.split("::");if(x==="field"){if(P&&p!==void 0&&p!==null){let q=dt(f,p);u.setField(m,q,P)}}else x==="tag"?u.setTag(m,p):x==="timestamp"&&u.setTimestamp(p)}yield u}}async close(){var e,t;this._closed=!0,(t=(e=this._transport).close)==null||t.call(e)}};var gt=`Please specify the 'database' as a method parameter or use default configuration at 'ClientOptions.database'
|
|
15
|
-
`,
|
|
16
|
+
${JSON.stringify(t)}`);let{interceptors:n}=t!=null?t:{};return new vt.GrpcWebFetchTransport({baseUrl:r,timeout:e,interceptors:n})};var Ur={writeTransport:r=>new Q(r),queryTransport:Mt},C=Ur;var Z=class{constructor(e){this._options=e;d(this,"_closed",!1);d(this,"_transport");var t;this._transport=(t=this._options.transport)!=null?t:C.writeTransport(this._options),this.doWrite=this.doWrite.bind(this)}_options;_createWritePath(e,t,n){let i=t.precision,s,o=[];return n&&o.push(`org=${encodeURIComponent(n)}`),t.useV2Api?(s="/api/v2/write",o.push(`bucket=${encodeURIComponent(e)}`),o.push(`precision=${Ue(i)}`)):(s="/api/v3/write_lp",o.push(`db=${encodeURIComponent(e)}`),o.push(`precision=${Le(i)}`),t.noSync&&o.push("no_sync=true"),t.acceptPartial===!1&&o.push("accept_partial=false")),`${s}?${o.join("&")}`}doWrite(e,t,n,i){if(this._closed)return Promise.reject(new Error("writeApi: already closed!"));let o={...Pe,...i};if(o.useV2Api&&o.noSync)return Promise.reject(new A("invalid write options: noSync requires useV2Api=false"));if(e.length<=0||e.length===1&&e[0]==="")return Promise.resolve();let a,u,c=new Promise((h,O)=>{a=h,u=O}),f,m,p={responseStarted(h,O){f=O,m=h},error(h){if(h instanceof E&&h.json&&typeof h.json.error=="string"&&h.json.error.includes("hinted handoff queue not empty")){U.warn(`Write to InfluxDB returns: ${h.json.error}`),f=204,p.complete();return}if(h instanceof E){let O=f!=null?f:h.statusCode;O===405&&o.useV2Api&&(h.message="Server doesn't support the V2 API endpoint (/api/v2/write). Set useV2Api=false to use the V3 API endpoint."),O===405&&!o.useV2Api&&(h.message="Server doesn't support the V3 API endpoint (/api/v3/write_lp). Set useV2Api=true to use the V2 API endpoint.");let k=J.fromHttpError(h);k&&(h=k)}U.error("Write to InfluxDB failed.",h),u(h)},complete(){if(f==null||f>=200&&f<300)a();else{let h=`2xx HTTP response status code expected, but ${f} returned`,O=new E(f,h,void 0,"0",m);O.message=h,p.error(O)}}},F={method:"POST",headers:{"content-type":"text/plain; charset=utf-8",...i==null?void 0:i.headers},gzipThreshold:o.gzipThreshold,timeout:o.timeout};return this._transport.send(this._createWritePath(t,o,n),e.join(`
|
|
17
|
+
`),F,p),c}async close(){this._closed=!0}};var _e=X("apache-arrow");var lr=X("@protobuf-ts/runtime-rpc");function V(r){let e=typeof r;if(e=="object"){if(Array.isArray(r))return"array";if(r===null)return"null"}return e}function je(r){return r!==null&&typeof r=="object"&&!Array.isArray(r)}var P="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),ae=[];for(let r=0;r<P.length;r++)ae[P[r].charCodeAt(0)]=r;ae[45]=P.indexOf("+");ae[95]=P.indexOf("/");function Wt(r){let e=r.length*3/4;r[r.length-2]=="="?e-=2:r[r.length-1]=="="&&(e-=1);let t=new Uint8Array(e),n=0,i=0,s,o=0;for(let a=0;a<r.length;a++){if(s=ae[r.charCodeAt(a)],s===void 0)switch(r[a]){case"=":i=0;case`
|
|
18
|
+
`:case"\r":case" ":case" ":continue;default:throw Error("invalid base64 string.")}switch(i){case 0:o=s,i=1;break;case 1:t[n++]=o<<2|(s&48)>>4,o=s,i=2;break;case 2:t[n++]=(o&15)<<4|(s&60)>>2,o=s,i=3;break;case 3:t[n++]=(o&3)<<6|s,i=0;break}}if(i==1)throw Error("invalid base64 string.");return t.subarray(0,n)}function $t(r){let e="",t=0,n,i=0;for(let s=0;s<r.length;s++)switch(n=r[s],t){case 0:e+=P[n>>2],i=(n&3)<<4,t=1;break;case 1:e+=P[i|n>>4],i=(n&15)<<2,t=2;break;case 2:e+=P[i|n>>6],e+=P[n&63],t=0;break}return t&&(e+=P[i],e+="=",t==1&&(e+="=")),e}var $;(function(r){r.symbol=Symbol.for("protobuf-ts/unknown"),r.onRead=(t,n,i,s,o)=>{(e(n)?n[r.symbol]:n[r.symbol]=[]).push({no:i,wireType:s,data:o})},r.onWrite=(t,n,i)=>{for(let{no:s,wireType:o,data:a}of r.list(n))i.tag(s,o).raw(a)},r.list=(t,n)=>{if(e(t)){let i=t[r.symbol];return n?i.filter(s=>s.no==n):i}return[]},r.last=(t,n)=>r.list(t,n).slice(-1)[0];let e=t=>t&&Array.isArray(t[r.symbol])})($||($={}));var T;(function(r){r[r.Varint=0]="Varint",r[r.Bit64=1]="Bit64",r[r.LengthDelimited=2]="LengthDelimited",r[r.StartGroup=3]="StartGroup",r[r.EndGroup=4]="EndGroup",r[r.Bit32=5]="Bit32"})(T||(T={}));function qt(){let r=0,e=0;for(let n=0;n<28;n+=7){let i=this.buf[this.pos++];if(r|=(i&127)<<n,(i&128)==0)return this.assertBounds(),[r,e]}let t=this.buf[this.pos++];if(r|=(t&15)<<28,e=(t&112)>>4,(t&128)==0)return this.assertBounds(),[r,e];for(let n=3;n<=31;n+=7){let i=this.buf[this.pos++];if(e|=(i&127)<<n,(i&128)==0)return this.assertBounds(),[r,e]}throw new Error("invalid varint")}function le(r,e,t){for(let s=0;s<28;s=s+7){let o=r>>>s,a=!(!(o>>>7)&&e==0),u=(a?o|128:o)&255;if(t.push(u),!a)return}let n=r>>>28&15|(e&7)<<4,i=e>>3!=0;if(t.push((i?n|128:n)&255),!!i){for(let s=3;s<31;s=s+7){let o=e>>>s,a=!!(o>>>7),u=(a?o|128:o)&255;if(t.push(u),!a)return}t.push(e>>>31&1)}}var ue=65536*65536;function He(r){let e=r[0]=="-";e&&(r=r.slice(1));let t=1e6,n=0,i=0;function s(o,a){let u=Number(r.slice(o,a));i*=t,n=n*t+u,n>=ue&&(i=i+(n/ue|0),n=n%ue)}return s(-24,-18),s(-18,-12),s(-12,-6),s(-6),[e,n,i]}function ce(r,e){if(e>>>0<=2097151)return""+(ue*e+(r>>>0));let t=r&16777215,n=(r>>>24|e<<8)>>>0&16777215,i=e>>16&65535,s=t+n*6777216+i*6710656,o=n+i*8147497,a=i*2,u=1e7;s>=u&&(o+=Math.floor(s/u),s%=u),o>=u&&(a+=Math.floor(o/u),o%=u);function c(f,m){let p=f?String(f):"";return m?"0000000".slice(p.length)+p:p}return c(a,0)+c(o,a)+c(s,1)}function Xe(r,e){if(r>=0){for(;r>127;)e.push(r&127|128),r=r>>>7;e.push(r)}else{for(let t=0;t<9;t++)e.push(r&127|128),r=r>>7;e.push(1)}}function jt(){let r=this.buf[this.pos++],e=r&127;if((r&128)==0)return this.assertBounds(),e;if(r=this.buf[this.pos++],e|=(r&127)<<7,(r&128)==0)return this.assertBounds(),e;if(r=this.buf[this.pos++],e|=(r&127)<<14,(r&128)==0)return this.assertBounds(),e;if(r=this.buf[this.pos++],e|=(r&127)<<21,(r&128)==0)return this.assertBounds(),e;r=this.buf[this.pos++],e|=(r&15)<<28;for(let t=5;(r&128)!==0&&t<10;t++)r=this.buf[this.pos++];if((r&128)!=0)throw new Error("invalid varint");return this.assertBounds(),e>>>0}var y;function Lr(){let r=new DataView(new ArrayBuffer(8));y=globalThis.BigInt!==void 0&&typeof r.getBigInt64=="function"&&typeof r.getBigUint64=="function"&&typeof r.setBigInt64=="function"&&typeof r.setBigUint64=="function"?{MIN:BigInt("-9223372036854775808"),MAX:BigInt("9223372036854775807"),UMIN:BigInt("0"),UMAX:BigInt("18446744073709551615"),C:BigInt,V:r}:void 0}Lr();function Ht(r){if(!r)throw new Error("BigInt unavailable, see https://github.com/timostamm/protobuf-ts/blob/v1.0.8/MANUAL.md#bigint-support")}var Xt=/^-?[0-9]+$/,pe=4294967296,fe=2147483648,me=class{constructor(e,t){this.lo=e|0,this.hi=t|0}isZero(){return this.lo==0&&this.hi==0}toNumber(){let e=this.hi*pe+(this.lo>>>0);if(!Number.isSafeInteger(e))throw new Error("cannot convert to safe number");return e}},x=class r extends me{static from(e){if(y)switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=="")throw new Error("string is no integer");e=y.C(e);case"number":if(e===0)return this.ZERO;e=y.C(e);case"bigint":if(!e)return this.ZERO;if(e<y.UMIN)throw new Error("signed value for ulong");if(e>y.UMAX)throw new Error("ulong too large");return y.V.setBigUint64(0,e,!0),new r(y.V.getInt32(0,!0),y.V.getInt32(4,!0))}else switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=e.trim(),!Xt.test(e))throw new Error("string is no integer");let[t,n,i]=He(e);if(t)throw new Error("signed value for ulong");return new r(n,i);case"number":if(e==0)return this.ZERO;if(!Number.isSafeInteger(e))throw new Error("number is no integer");if(e<0)throw new Error("signed value for ulong");return new r(e,e/pe)}throw new Error("unknown value "+typeof e)}toString(){return y?this.toBigInt().toString():ce(this.lo,this.hi)}toBigInt(){return Ht(y),y.V.setInt32(0,this.lo,!0),y.V.setInt32(4,this.hi,!0),y.V.getBigUint64(0,!0)}};x.ZERO=new x(0,0);var b=class r extends me{static from(e){if(y)switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=="")throw new Error("string is no integer");e=y.C(e);case"number":if(e===0)return this.ZERO;e=y.C(e);case"bigint":if(!e)return this.ZERO;if(e<y.MIN)throw new Error("signed long too small");if(e>y.MAX)throw new Error("signed long too large");return y.V.setBigInt64(0,e,!0),new r(y.V.getInt32(0,!0),y.V.getInt32(4,!0))}else switch(typeof e){case"string":if(e=="0")return this.ZERO;if(e=e.trim(),!Xt.test(e))throw new Error("string is no integer");let[t,n,i]=He(e);if(t){if(i>fe||i==fe&&n!=0)throw new Error("signed long too small")}else if(i>=fe)throw new Error("signed long too large");let s=new r(n,i);return t?s.negate():s;case"number":if(e==0)return this.ZERO;if(!Number.isSafeInteger(e))throw new Error("number is no integer");return e>0?new r(e,e/pe):new r(-e,-e/pe).negate()}throw new Error("unknown value "+typeof e)}isNegative(){return(this.hi&fe)!==0}negate(){let e=~this.hi,t=this.lo;return t?t=~t+1:e+=1,new r(t,e)}toString(){if(y)return this.toBigInt().toString();if(this.isNegative()){let e=this.negate();return"-"+ce(e.lo,e.hi)}return ce(this.lo,this.hi)}toBigInt(){return Ht(y),y.V.setInt32(0,this.lo,!0),y.V.setInt32(4,this.hi,!0),y.V.getBigInt64(0,!0)}};b.ZERO=new b(0,0);var Jt={readUnknownField:!0,readerFactory:r=>new Je(r)};function Gt(r){return r?Object.assign(Object.assign({},Jt),r):Jt}var Je=class{constructor(e,t){this.varint64=qt,this.uint32=jt,this.buf=e,this.len=e.length,this.pos=0,this.view=new DataView(e.buffer,e.byteOffset,e.byteLength),this.textDecoder=t!=null?t:new TextDecoder("utf-8",{fatal:!0,ignoreBOM:!0})}tag(){let e=this.uint32(),t=e>>>3,n=e&7;if(t<=0||n<0||n>5)throw new Error("illegal tag: field no "+t+" wire type "+n);return[t,n]}skip(e){let t=this.pos;switch(e){case T.Varint:for(;this.buf[this.pos++]&128;);break;case T.Bit64:this.pos+=4;case T.Bit32:this.pos+=4;break;case T.LengthDelimited:let n=this.uint32();this.pos+=n;break;case T.StartGroup:let i;for(;(i=this.tag()[1])!==T.EndGroup;)this.skip(i);break;default:throw new Error("cant skip wire type "+e)}return this.assertBounds(),this.buf.subarray(t,this.pos)}assertBounds(){if(this.pos>this.len)throw new RangeError("premature EOF")}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)}int64(){return new b(...this.varint64())}uint64(){return new x(...this.varint64())}sint64(){let[e,t]=this.varint64(),n=-(e&1);return e=(e>>>1|(t&1)<<31)^n,t=t>>>1^n,new b(e,t)}bool(){let[e,t]=this.varint64();return e!==0||t!==0}fixed32(){return this.view.getUint32((this.pos+=4)-4,!0)}sfixed32(){return this.view.getInt32((this.pos+=4)-4,!0)}fixed64(){return new x(this.sfixed32(),this.sfixed32())}sfixed64(){return new b(this.sfixed32(),this.sfixed32())}float(){return this.view.getFloat32((this.pos+=4)-4,!0)}double(){return this.view.getFloat64((this.pos+=8)-8,!0)}bytes(){let e=this.uint32(),t=this.pos;return this.pos+=e,this.assertBounds(),this.buf.subarray(t,t+e)}string(){return this.textDecoder.decode(this.bytes())}};function g(r,e){if(!r)throw new Error(e)}var Cr=34028234663852886e22,Vr=-34028234663852886e22,Br=4294967295,vr=2147483647,Mr=-2147483648;function D(r){if(typeof r!="number")throw new Error("invalid int 32: "+typeof r);if(!Number.isInteger(r)||r>vr||r<Mr)throw new Error("invalid int 32: "+r)}function B(r){if(typeof r!="number")throw new Error("invalid uint 32: "+typeof r);if(!Number.isInteger(r)||r>Br||r<0)throw new Error("invalid uint 32: "+r)}function q(r){if(typeof r!="number")throw new Error("invalid float 32: "+typeof r);if(Number.isFinite(r)&&(r>Cr||r<Vr))throw new Error("invalid float 32: "+r)}var Kt={writeUnknownFields:!0,writerFactory:()=>new Ge};function Qt(r){return r?Object.assign(Object.assign({},Kt),r):Kt}var Ge=class{constructor(e){this.stack=[],this.textEncoder=e!=null?e:new TextEncoder,this.chunks=[],this.buf=[]}finish(){this.chunks.push(new Uint8Array(this.buf));let e=0;for(let i=0;i<this.chunks.length;i++)e+=this.chunks[i].length;let t=new Uint8Array(e),n=0;for(let i=0;i<this.chunks.length;i++)t.set(this.chunks[i],n),n+=this.chunks[i].length;return this.chunks=[],t}fork(){return this.stack.push({chunks:this.chunks,buf:this.buf}),this.chunks=[],this.buf=[],this}join(){let e=this.finish(),t=this.stack.pop();if(!t)throw new Error("invalid state, fork stack empty");return this.chunks=t.chunks,this.buf=t.buf,this.uint32(e.byteLength),this.raw(e)}tag(e,t){return this.uint32((e<<3|t)>>>0)}raw(e){return this.buf.length&&(this.chunks.push(new Uint8Array(this.buf)),this.buf=[]),this.chunks.push(e),this}uint32(e){for(B(e);e>127;)this.buf.push(e&127|128),e=e>>>7;return this.buf.push(e),this}int32(e){return D(e),Xe(e,this.buf),this}bool(e){return this.buf.push(e?1:0),this}bytes(e){return this.uint32(e.byteLength),this.raw(e)}string(e){let t=this.textEncoder.encode(e);return this.uint32(t.byteLength),this.raw(t)}float(e){q(e);let t=new Uint8Array(4);return new DataView(t.buffer).setFloat32(0,e,!0),this.raw(t)}double(e){let t=new Uint8Array(8);return new DataView(t.buffer).setFloat64(0,e,!0),this.raw(t)}fixed32(e){B(e);let t=new Uint8Array(4);return new DataView(t.buffer).setUint32(0,e,!0),this.raw(t)}sfixed32(e){D(e);let t=new Uint8Array(4);return new DataView(t.buffer).setInt32(0,e,!0),this.raw(t)}sint32(e){return D(e),e=(e<<1^e>>31)>>>0,Xe(e,this.buf),this}sfixed64(e){let t=new Uint8Array(8),n=new DataView(t.buffer),i=b.from(e);return n.setInt32(0,i.lo,!0),n.setInt32(4,i.hi,!0),this.raw(t)}fixed64(e){let t=new Uint8Array(8),n=new DataView(t.buffer),i=x.from(e);return n.setInt32(0,i.lo,!0),n.setInt32(4,i.hi,!0),this.raw(t)}int64(e){let t=b.from(e);return le(t.lo,t.hi,this.buf),this}sint64(e){let t=b.from(e),n=t.hi>>31,i=t.lo<<1^n,s=(t.hi<<1|t.lo>>>31)^n;return le(i,s,this.buf),this}uint64(e){let t=x.from(e);return le(t.lo,t.hi,this.buf),this}};var Zt={emitDefaultValues:!1,enumAsInteger:!1,useProtoFieldName:!1,prettySpaces:0},Yt={ignoreUnknownFields:!1};function zt(r){return r?Object.assign(Object.assign({},Yt),r):Yt}function er(r){return r?Object.assign(Object.assign({},Zt),r):Zt}var he=Symbol.for("protobuf-ts/message-type");function Ke(r){let e=!1,t=[];for(let n=0;n<r.length;n++){let i=r.charAt(n);i=="_"?e=!0:/\d/.test(i)?(t.push(i),e=!0):e?(t.push(i.toUpperCase()),e=!1):n==0?t.push(i.toLowerCase()):t.push(i)}return t.join("")}var l;(function(r){r[r.DOUBLE=1]="DOUBLE",r[r.FLOAT=2]="FLOAT",r[r.INT64=3]="INT64",r[r.UINT64=4]="UINT64",r[r.INT32=5]="INT32",r[r.FIXED64=6]="FIXED64",r[r.FIXED32=7]="FIXED32",r[r.BOOL=8]="BOOL",r[r.STRING=9]="STRING",r[r.BYTES=12]="BYTES",r[r.UINT32=13]="UINT32",r[r.SFIXED32=15]="SFIXED32",r[r.SFIXED64=16]="SFIXED64",r[r.SINT32=17]="SINT32",r[r.SINT64=18]="SINT64"})(l||(l={}));var I;(function(r){r[r.BIGINT=0]="BIGINT",r[r.STRING=1]="STRING",r[r.NUMBER=2]="NUMBER"})(I||(I={}));var Y;(function(r){r[r.NO=0]="NO",r[r.PACKED=1]="PACKED",r[r.UNPACKED=2]="UNPACKED"})(Y||(Y={}));function tr(r){var e,t,n,i;return r.localName=(e=r.localName)!==null&&e!==void 0?e:Ke(r.name),r.jsonName=(t=r.jsonName)!==null&&t!==void 0?t:Ke(r.name),r.repeat=(n=r.repeat)!==null&&n!==void 0?n:Y.NO,r.opt=(i=r.opt)!==null&&i!==void 0?i:r.repeat||r.oneof?!1:r.kind=="message",r}function rr(r){if(typeof r!="object"||r===null||!r.hasOwnProperty("oneofKind"))return!1;switch(typeof r.oneofKind){case"string":return r[r.oneofKind]===void 0?!1:Object.keys(r).length==2;case"undefined":return Object.keys(r).length==1;default:return!1}}var de=class{constructor(e){var t;this.fields=(t=e.fields)!==null&&t!==void 0?t:[]}prepare(){if(this.data)return;let e=[],t=[],n=[];for(let i of this.fields)if(i.oneof)n.includes(i.oneof)||(n.push(i.oneof),e.push(i.oneof),t.push(i.oneof));else switch(t.push(i.localName),i.kind){case"scalar":case"enum":(!i.opt||i.repeat)&&e.push(i.localName);break;case"message":i.repeat&&e.push(i.localName);break;case"map":e.push(i.localName);break}this.data={req:e,known:t,oneofs:Object.values(n)}}is(e,t,n=!1){if(t<0)return!0;if(e==null||typeof e!="object")return!1;this.prepare();let i=Object.keys(e),s=this.data;if(i.length<s.req.length||s.req.some(o=>!i.includes(o))||!n&&i.some(o=>!s.known.includes(o)))return!1;if(t<1)return!0;for(let o of s.oneofs){let a=e[o];if(!rr(a))return!1;if(a.oneofKind===void 0)continue;let u=this.fields.find(c=>c.localName===a.oneofKind);if(!u||!this.field(a[a.oneofKind],u,n,t))return!1}for(let o of this.fields)if(o.oneof===void 0&&!this.field(e[o.localName],o,n,t))return!1;return!0}field(e,t,n,i){let s=t.repeat;switch(t.kind){case"scalar":return e===void 0?t.opt:s?this.scalars(e,t.T,i,t.L):this.scalar(e,t.T,t.L);case"enum":return e===void 0?t.opt:s?this.scalars(e,l.INT32,i):this.scalar(e,l.INT32);case"message":return e===void 0?!0:s?this.messages(e,t.T(),n,i):this.message(e,t.T(),n,i);case"map":if(typeof e!="object"||e===null)return!1;if(i<2)return!0;if(!this.mapKeys(e,t.K,i))return!1;switch(t.V.kind){case"scalar":return this.scalars(Object.values(e),t.V.T,i,t.V.L);case"enum":return this.scalars(Object.values(e),l.INT32,i);case"message":return this.messages(Object.values(e),t.V.T(),n,i)}break}return!0}message(e,t,n,i){return n?t.isAssignable(e,i):t.is(e,i)}messages(e,t,n,i){if(!Array.isArray(e))return!1;if(i<2)return!0;if(n){for(let s=0;s<e.length&&s<i;s++)if(!t.isAssignable(e[s],i-1))return!1}else for(let s=0;s<e.length&&s<i;s++)if(!t.is(e[s],i-1))return!1;return!0}scalar(e,t,n){let i=typeof e;switch(t){case l.UINT64:case l.FIXED64:case l.INT64:case l.SFIXED64:case l.SINT64:switch(n){case I.BIGINT:return i=="bigint";case I.NUMBER:return i=="number"&&!isNaN(e);default:return i=="string"}case l.BOOL:return i=="boolean";case l.STRING:return i=="string";case l.BYTES:return e instanceof Uint8Array;case l.DOUBLE:case l.FLOAT:return i=="number"&&!isNaN(e);default:return i=="number"&&Number.isInteger(e)}}scalars(e,t,n,i){if(!Array.isArray(e))return!1;if(n<2)return!0;if(Array.isArray(e)){for(let s=0;s<e.length&&s<n;s++)if(!this.scalar(e[s],t,i))return!1}return!0}mapKeys(e,t,n){let i=Object.keys(e);switch(t){case l.INT32:case l.FIXED32:case l.SFIXED32:case l.SINT32:case l.UINT32:return this.scalars(i.slice(0,n).map(s=>parseInt(s)),t,n);case l.BOOL:return this.scalars(i.slice(0,n).map(s=>s=="true"?!0:s=="false"?!1:s),t,n);default:return this.scalars(i,t,n,I.STRING)}}};function N(r,e){switch(e){case I.BIGINT:return r.toBigInt();case I.NUMBER:return r.toNumber();default:return r.toString()}}var ge=class{constructor(e){this.info=e}prepare(){var e;if(this.fMap===void 0){this.fMap={};let t=(e=this.info.fields)!==null&&e!==void 0?e:[];for(let n of t)this.fMap[n.name]=n,this.fMap[n.jsonName]=n,this.fMap[n.localName]=n}}assert(e,t,n){if(!e){let i=V(n);throw(i=="number"||i=="boolean")&&(i=n.toString()),new Error(`Cannot parse JSON ${i} for ${this.info.typeName}#${t}`)}}read(e,t,n){this.prepare();let i=[];for(let[s,o]of Object.entries(e)){let a=this.fMap[s];if(!a){if(!n.ignoreUnknownFields)throw new Error(`Found unknown field while reading ${this.info.typeName} from JSON format. JSON key: ${s}`);continue}let u=a.localName,c;if(a.oneof){if(o===null&&(a.kind!=="enum"||a.T()[0]!=="google.protobuf.NullValue"))continue;if(i.includes(a.oneof))throw new Error(`Multiple members of the oneof group "${a.oneof}" of ${this.info.typeName} are present in JSON.`);i.push(a.oneof),c=t[a.oneof]={oneofKind:u}}else c=t;if(a.kind=="map"){if(o===null)continue;this.assert(je(o),a.name,o);let f=c[u];for(let[m,p]of Object.entries(o)){this.assert(p!==null,a.name+" map value",null);let F;switch(a.V.kind){case"message":F=a.V.T().internalJsonRead(p,n);break;case"enum":if(F=this.enum(a.V.T(),p,a.name,n.ignoreUnknownFields),F===!1)continue;break;case"scalar":F=this.scalar(p,a.V.T,a.V.L,a.name);break}this.assert(F!==void 0,a.name+" map value",p);let h=m;a.K==l.BOOL&&(h=h=="true"?!0:h=="false"?!1:h),h=this.scalar(h,a.K,I.STRING,a.name).toString(),f[h]=F}}else if(a.repeat){if(o===null)continue;this.assert(Array.isArray(o),a.name,o);let f=c[u];for(let m of o){this.assert(m!==null,a.name,null);let p;switch(a.kind){case"message":p=a.T().internalJsonRead(m,n);break;case"enum":if(p=this.enum(a.T(),m,a.name,n.ignoreUnknownFields),p===!1)continue;break;case"scalar":p=this.scalar(m,a.T,a.L,a.name);break}this.assert(p!==void 0,a.name,o),f.push(p)}}else switch(a.kind){case"message":if(o===null&&a.T().typeName!="google.protobuf.Value"){this.assert(a.oneof===void 0,a.name+" (oneof member)",null);continue}c[u]=a.T().internalJsonRead(o,n,c[u]);break;case"enum":if(o===null)continue;let f=this.enum(a.T(),o,a.name,n.ignoreUnknownFields);if(f===!1)continue;c[u]=f;break;case"scalar":if(o===null)continue;c[u]=this.scalar(o,a.T,a.L,a.name);break}}}enum(e,t,n,i){if(e[0]=="google.protobuf.NullValue"&&g(t===null||t==="NULL_VALUE",`Unable to parse field ${this.info.typeName}#${n}, enum ${e[0]} only accepts null.`),t===null)return 0;switch(typeof t){case"number":return g(Number.isInteger(t),`Unable to parse field ${this.info.typeName}#${n}, enum can only be integral number, got ${t}.`),t;case"string":let s=t;e[2]&&t.substring(0,e[2].length)===e[2]&&(s=t.substring(e[2].length));let o=e[1][s];return typeof o=="undefined"&&i?!1:(g(typeof o=="number",`Unable to parse field ${this.info.typeName}#${n}, enum ${e[0]} has no value for "${t}".`),o)}g(!1,`Unable to parse field ${this.info.typeName}#${n}, cannot parse enum value from ${typeof t}".`)}scalar(e,t,n,i){let s;try{switch(t){case l.DOUBLE:case l.FLOAT:if(e===null)return 0;if(e==="NaN")return Number.NaN;if(e==="Infinity")return Number.POSITIVE_INFINITY;if(e==="-Infinity")return Number.NEGATIVE_INFINITY;if(e===""){s="empty string";break}if(typeof e=="string"&&e.trim().length!==e.length){s="extra whitespace";break}if(typeof e!="string"&&typeof e!="number")break;let o=Number(e);if(Number.isNaN(o)){s="not a number";break}if(!Number.isFinite(o)){s="too large or small";break}return t==l.FLOAT&&q(o),o;case l.INT32:case l.FIXED32:case l.SFIXED32:case l.SINT32:case l.UINT32:if(e===null)return 0;let a;if(typeof e=="number"?a=e:e===""?s="empty string":typeof e=="string"&&(e.trim().length!==e.length?s="extra whitespace":a=Number(e)),a===void 0)break;return t==l.UINT32?B(a):D(a),a;case l.INT64:case l.SFIXED64:case l.SINT64:if(e===null)return N(b.ZERO,n);if(typeof e!="number"&&typeof e!="string")break;return N(b.from(e),n);case l.FIXED64:case l.UINT64:if(e===null)return N(x.ZERO,n);if(typeof e!="number"&&typeof e!="string")break;return N(x.from(e),n);case l.BOOL:if(e===null)return!1;if(typeof e!="boolean")break;return e;case l.STRING:if(e===null)return"";if(typeof e!="string"){s="extra whitespace";break}try{encodeURIComponent(e)}catch(u){u="invalid UTF8";break}return e;case l.BYTES:if(e===null||e==="")return new Uint8Array(0);if(typeof e!="string")break;return Wt(e)}}catch(o){s=o.message}this.assert(!1,i+(s?" - "+s:""),e)}};var be=class{constructor(e){var t;this.fields=(t=e.fields)!==null&&t!==void 0?t:[]}write(e,t){let n={},i=e;for(let s of this.fields){if(!s.oneof){let c=this.field(s,i[s.localName],t);c!==void 0&&(n[t.useProtoFieldName?s.name:s.jsonName]=c);continue}let o=i[s.oneof];if(o.oneofKind!==s.localName)continue;let a=s.kind=="scalar"||s.kind=="enum"?Object.assign(Object.assign({},t),{emitDefaultValues:!0}):t,u=this.field(s,o[s.localName],a);g(u!==void 0),n[t.useProtoFieldName?s.name:s.jsonName]=u}return n}field(e,t,n){let i;if(e.kind=="map"){g(typeof t=="object"&&t!==null);let s={};switch(e.V.kind){case"scalar":for(let[u,c]of Object.entries(t)){let f=this.scalar(e.V.T,c,e.name,!1,!0);g(f!==void 0),s[u.toString()]=f}break;case"message":let o=e.V.T();for(let[u,c]of Object.entries(t)){let f=this.message(o,c,e.name,n);g(f!==void 0),s[u.toString()]=f}break;case"enum":let a=e.V.T();for(let[u,c]of Object.entries(t)){g(c===void 0||typeof c=="number");let f=this.enum(a,c,e.name,!1,!0,n.enumAsInteger);g(f!==void 0),s[u.toString()]=f}break}(n.emitDefaultValues||Object.keys(s).length>0)&&(i=s)}else if(e.repeat){g(Array.isArray(t));let s=[];switch(e.kind){case"scalar":for(let u=0;u<t.length;u++){let c=this.scalar(e.T,t[u],e.name,e.opt,!0);g(c!==void 0),s.push(c)}break;case"enum":let o=e.T();for(let u=0;u<t.length;u++){g(t[u]===void 0||typeof t[u]=="number");let c=this.enum(o,t[u],e.name,e.opt,!0,n.enumAsInteger);g(c!==void 0),s.push(c)}break;case"message":let a=e.T();for(let u=0;u<t.length;u++){let c=this.message(a,t[u],e.name,n);g(c!==void 0),s.push(c)}break}(n.emitDefaultValues||s.length>0||n.emitDefaultValues)&&(i=s)}else switch(e.kind){case"scalar":i=this.scalar(e.T,t,e.name,e.opt,n.emitDefaultValues);break;case"enum":i=this.enum(e.T(),t,e.name,e.opt,n.emitDefaultValues,n.enumAsInteger);break;case"message":i=this.message(e.T(),t,e.name,n);break}return i}enum(e,t,n,i,s,o){if(e[0]=="google.protobuf.NullValue")return!s&&!i?void 0:null;if(t===void 0){g(i);return}if(!(t===0&&!s&&!i))return g(typeof t=="number"),g(Number.isInteger(t)),o||!e[1].hasOwnProperty(t)?t:e[2]?e[2]+e[1][t]:e[1][t]}message(e,t,n,i){return t===void 0?i.emitDefaultValues?null:void 0:e.internalJsonWrite(t,i)}scalar(e,t,n,i,s){if(t===void 0){g(i);return}let o=s||i;switch(e){case l.INT32:case l.SFIXED32:case l.SINT32:return t===0?o?0:void 0:(D(t),t);case l.FIXED32:case l.UINT32:return t===0?o?0:void 0:(B(t),t);case l.FLOAT:q(t);case l.DOUBLE:return t===0?o?0:void 0:(g(typeof t=="number"),Number.isNaN(t)?"NaN":t===Number.POSITIVE_INFINITY?"Infinity":t===Number.NEGATIVE_INFINITY?"-Infinity":t);case l.STRING:return t===""?o?"":void 0:(g(typeof t=="string"),t);case l.BOOL:return t===!1?o?!1:void 0:(g(typeof t=="boolean"),t);case l.UINT64:case l.FIXED64:g(typeof t=="number"||typeof t=="string"||typeof t=="bigint");let a=x.from(t);return a.isZero()&&!o?void 0:a.toString();case l.INT64:case l.SFIXED64:case l.SINT64:g(typeof t=="number"||typeof t=="string"||typeof t=="bigint");let u=b.from(t);return u.isZero()&&!o?void 0:u.toString();case l.BYTES:return g(t instanceof Uint8Array),t.byteLength?$t(t):o?"":void 0}}};function z(r,e=I.STRING){switch(r){case l.BOOL:return!1;case l.UINT64:case l.FIXED64:return N(x.ZERO,e);case l.INT64:case l.SFIXED64:case l.SINT64:return N(b.ZERO,e);case l.DOUBLE:case l.FLOAT:return 0;case l.BYTES:return new Uint8Array(0);case l.STRING:return"";default:return 0}}var ye=class{constructor(e){this.info=e}prepare(){var e;if(!this.fieldNoToField){let t=(e=this.info.fields)!==null&&e!==void 0?e:[];this.fieldNoToField=new Map(t.map(n=>[n.no,n]))}}read(e,t,n,i){this.prepare();let s=i===void 0?e.len:e.pos+i;for(;e.pos<s;){let[o,a]=e.tag(),u=this.fieldNoToField.get(o);if(!u){let p=n.readUnknownField;if(p=="throw")throw new Error(`Unknown field ${o} (wire type ${a}) for ${this.info.typeName}`);let F=e.skip(a);p!==!1&&(p===!0?$.onRead:p)(this.info.typeName,t,o,a,F);continue}let c=t,f=u.repeat,m=u.localName;switch(u.oneof&&(c=c[u.oneof],c.oneofKind!==m&&(c=t[u.oneof]={oneofKind:m})),u.kind){case"scalar":case"enum":let p=u.kind=="enum"?l.INT32:u.T,F=u.kind=="scalar"?u.L:void 0;if(f){let k=c[m];if(a==T.LengthDelimited&&p!=l.STRING&&p!=l.BYTES){let H=e.uint32()+e.pos;for(;e.pos<H;)k.push(this.scalar(e,p,F))}else k.push(this.scalar(e,p,F))}else c[m]=this.scalar(e,p,F);break;case"message":if(f){let k=c[m],H=u.T().internalBinaryRead(e,e.uint32(),n);k.push(H)}else c[m]=u.T().internalBinaryRead(e,e.uint32(),n,c[m]);break;case"map":let[h,O]=this.mapEntry(u,e,n);c[m][h]=O;break}}}mapEntry(e,t,n){let i=t.uint32(),s=t.pos+i,o,a;for(;t.pos<s;){let[u,c]=t.tag();switch(u){case 1:e.K==l.BOOL?o=t.bool().toString():o=this.scalar(t,e.K,I.STRING);break;case 2:switch(e.V.kind){case"scalar":a=this.scalar(t,e.V.T,e.V.L);break;case"enum":a=t.int32();break;case"message":a=e.V.T().internalBinaryRead(t,t.uint32(),n);break}break;default:throw new Error(`Unknown field ${u} (wire type ${c}) in map entry for ${this.info.typeName}#${e.name}`)}}if(o===void 0){let u=z(e.K);o=e.K==l.BOOL?u.toString():u}if(a===void 0)switch(e.V.kind){case"scalar":a=z(e.V.T,e.V.L);break;case"enum":a=0;break;case"message":a=e.V.T().create();break}return[o,a]}scalar(e,t,n){switch(t){case l.INT32:return e.int32();case l.STRING:return e.string();case l.BOOL:return e.bool();case l.DOUBLE:return e.double();case l.FLOAT:return e.float();case l.INT64:return N(e.int64(),n);case l.UINT64:return N(e.uint64(),n);case l.FIXED64:return N(e.fixed64(),n);case l.FIXED32:return e.fixed32();case l.BYTES:return e.bytes();case l.UINT32:return e.uint32();case l.SFIXED32:return e.sfixed32();case l.SFIXED64:return N(e.sfixed64(),n);case l.SINT32:return e.sint32();case l.SINT64:return N(e.sint64(),n)}}};var we=class{constructor(e){this.info=e}prepare(){if(!this.fields){let e=this.info.fields?this.info.fields.concat():[];this.fields=e.sort((t,n)=>t.no-n.no)}}write(e,t,n){this.prepare();for(let s of this.fields){let o,a,u=s.repeat,c=s.localName;if(s.oneof){let f=e[s.oneof];if(f.oneofKind!==c)continue;o=f[c],a=!0}else o=e[c],a=!1;switch(s.kind){case"scalar":case"enum":let f=s.kind=="enum"?l.INT32:s.T;if(u)if(g(Array.isArray(o)),u==Y.PACKED)this.packed(t,f,s.no,o);else for(let m of o)this.scalar(t,f,s.no,m,!0);else o===void 0?g(s.opt):this.scalar(t,f,s.no,o,a||s.opt);break;case"message":if(u){g(Array.isArray(o));for(let m of o)this.message(t,n,s.T(),s.no,m)}else this.message(t,n,s.T(),s.no,o);break;case"map":g(typeof o=="object"&&o!==null);for(let[m,p]of Object.entries(o))this.mapEntry(t,n,s,m,p);break}}let i=n.writeUnknownFields;i!==!1&&(i===!0?$.onWrite:i)(this.info.typeName,e,t)}mapEntry(e,t,n,i,s){e.tag(n.no,T.LengthDelimited),e.fork();let o=i;switch(n.K){case l.INT32:case l.FIXED32:case l.UINT32:case l.SFIXED32:case l.SINT32:o=Number.parseInt(i);break;case l.BOOL:g(i=="true"||i=="false"),o=i=="true";break}switch(this.scalar(e,n.K,1,o,!0),n.V.kind){case"scalar":this.scalar(e,n.V.T,2,s,!0);break;case"enum":this.scalar(e,l.INT32,2,s,!0);break;case"message":this.message(e,t,n.V.T(),2,s);break}e.join()}message(e,t,n,i,s){s!==void 0&&(n.internalBinaryWrite(s,e.tag(i,T.LengthDelimited).fork(),t),e.join())}scalar(e,t,n,i,s){let[o,a,u]=this.scalarInfo(t,i);(!u||s)&&(e.tag(n,o),e[a](i))}packed(e,t,n,i){if(!i.length)return;g(t!==l.BYTES&&t!==l.STRING),e.tag(n,T.LengthDelimited),e.fork();let[,s]=this.scalarInfo(t);for(let o=0;o<i.length;o++)e[s](i[o]);e.join()}scalarInfo(e,t){let n=T.Varint,i,s=t===void 0,o=t===0;switch(e){case l.INT32:i="int32";break;case l.STRING:o=s||!t.length,n=T.LengthDelimited,i="string";break;case l.BOOL:o=t===!1,i="bool";break;case l.UINT32:i="uint32";break;case l.DOUBLE:n=T.Bit64,i="double";break;case l.FLOAT:n=T.Bit32,i="float";break;case l.INT64:o=s||b.from(t).isZero(),i="int64";break;case l.UINT64:o=s||x.from(t).isZero(),i="uint64";break;case l.FIXED64:o=s||x.from(t).isZero(),n=T.Bit64,i="fixed64";break;case l.BYTES:o=s||!t.byteLength,n=T.LengthDelimited,i="bytes";break;case l.FIXED32:n=T.Bit32,i="fixed32";break;case l.SFIXED32:n=T.Bit32,i="sfixed32";break;case l.SFIXED64:o=s||b.from(t).isZero(),n=T.Bit64,i="sfixed64";break;case l.SINT32:i="sint32";break;case l.SINT64:o=s||b.from(t).isZero(),i="sint64";break}return[n,i,s||o]}};function nr(r){let e=r.messagePrototype?Object.create(r.messagePrototype):Object.defineProperty({},he,{value:r});for(let t of r.fields){let n=t.localName;if(!t.opt)if(t.oneof)e[t.oneof]={oneofKind:void 0};else if(t.repeat)e[n]=[];else switch(t.kind){case"scalar":e[n]=z(t.T,t.L);break;case"enum":e[n]=0;break;case"map":e[n]={};break}}return e}function Te(r,e,t){let n,i=t,s;for(let o of r.fields){let a=o.localName;if(o.oneof){let u=i[o.oneof];if((u==null?void 0:u.oneofKind)==null)continue;if(n=u[a],s=e[o.oneof],s.oneofKind=u.oneofKind,n==null){delete s[a];continue}}else if(n=i[a],s=e,n==null)continue;switch(o.repeat&&(s[a].length=n.length),o.kind){case"scalar":case"enum":if(o.repeat)for(let c=0;c<n.length;c++)s[a][c]=n[c];else s[a]=n;break;case"message":let u=o.T();if(o.repeat)for(let c=0;c<n.length;c++)s[a][c]=u.create(n[c]);else s[a]===void 0?s[a]=u.create(n):u.mergePartial(s[a],n);break;case"map":switch(o.V.kind){case"scalar":case"enum":Object.assign(s[a],n);break;case"message":let c=o.V.T();for(let f of Object.keys(n))s[a][f]=c.create(n[f]);break}break}}}function or(r,e,t){if(e===t)return!0;if(!e||!t)return!1;for(let n of r.fields){let i=n.localName,s=n.oneof?e[n.oneof][i]:e[i],o=n.oneof?t[n.oneof][i]:t[i];switch(n.kind){case"enum":case"scalar":let a=n.kind=="enum"?l.INT32:n.T;if(!(n.repeat?ir(a,s,o):ar(a,s,o)))return!1;break;case"map":if(!(n.V.kind=="message"?sr(n.V.T(),Fe(s),Fe(o)):ir(n.V.kind=="enum"?l.INT32:n.V.T,Fe(s),Fe(o))))return!1;break;case"message":let u=n.T();if(!(n.repeat?sr(u,s,o):u.equals(s,o)))return!1;break}}return!0}var Fe=Object.values;function ar(r,e,t){if(e===t)return!0;if(r!==l.BYTES)return!1;let n=e,i=t;if(n.length!==i.length)return!1;for(let s=0;s<n.length;s++)if(n[s]!=i[s])return!1;return!0}function ir(r,e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!ar(r,e[n],t[n]))return!1;return!0}function sr(r,e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!r.equals(e[n],t[n]))return!1;return!0}var ur=Object.getOwnPropertyDescriptors(Object.getPrototypeOf({})),Wr=ur[he]={},w=class{constructor(e,t,n){this.defaultCheckDepth=16,this.typeName=e,this.fields=t.map(tr),this.options=n!=null?n:{},Wr.value=this,this.messagePrototype=Object.create(null,ur),this.refTypeCheck=new de(this),this.refJsonReader=new ge(this),this.refJsonWriter=new be(this),this.refBinReader=new ye(this),this.refBinWriter=new we(this)}create(e){let t=nr(this);return e!==void 0&&Te(this,t,e),t}clone(e){let t=this.create();return Te(this,t,e),t}equals(e,t){return or(this,e,t)}is(e,t=this.defaultCheckDepth){return this.refTypeCheck.is(e,t,!1)}isAssignable(e,t=this.defaultCheckDepth){return this.refTypeCheck.is(e,t,!0)}mergePartial(e,t){Te(this,e,t)}fromBinary(e,t){let n=Gt(t);return this.internalBinaryRead(n.readerFactory(e),e.byteLength,n)}fromJson(e,t){return this.internalJsonRead(e,zt(t))}fromJsonString(e,t){let n=JSON.parse(e);return this.fromJson(n,t)}toJson(e,t){return this.internalJsonWrite(e,er(t))}toJsonString(e,t){var n;let i=this.toJson(e,t);return JSON.stringify(i,null,(n=t==null?void 0:t.prettySpaces)!==null&&n!==void 0?n:0)}toBinary(e,t){let n=Qt(t);return this.internalBinaryWrite(e,n.writerFactory(),n).finish()}internalJsonRead(e,t,n){if(e!==null&&typeof e=="object"&&!Array.isArray(e)){let i=n!=null?n:this.create();return this.refJsonReader.read(e,i,t),i}throw new Error(`Unable to parse message ${this.typeName} from JSON ${V(e)}.`)}internalJsonWrite(e,t){return this.refJsonWriter.write(e,t)}internalBinaryWrite(e,t,n){return this.refBinWriter.write(e,t,n),t}internalBinaryRead(e,t,n,i){let s=i!=null?i:this.create();return this.refBinReader.read(e,s,n,t),s}};var Qe=class extends w{constructor(){super("google.protobuf.Timestamp",[{no:1,name:"seconds",kind:"scalar",T:3,L:0},{no:2,name:"nanos",kind:"scalar",T:5}])}now(){let e=this.create(),t=Date.now();return e.seconds=b.from(Math.floor(t/1e3)).toBigInt(),e.nanos=t%1e3*1e6,e}toDate(e){return new Date(b.from(e.seconds).toNumber()*1e3+Math.ceil(e.nanos/1e6))}fromDate(e){let t=this.create(),n=e.getTime();return t.seconds=b.from(Math.floor(n/1e3)).toBigInt(),t.nanos=n%1e3*1e6,t}internalJsonWrite(e,t){let n=b.from(e.seconds).toNumber()*1e3;if(n<Date.parse("0001-01-01T00:00:00Z")||n>Date.parse("9999-12-31T23:59:59Z"))throw new Error("Unable to encode Timestamp to JSON. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.");if(e.nanos<0)throw new Error("Unable to encode invalid Timestamp to JSON. Nanos must not be negative.");let i="Z";if(e.nanos>0){let s=(e.nanos+1e9).toString().substring(1);s.substring(3)==="000000"?i="."+s.substring(0,3)+"Z":s.substring(6)==="000"?i="."+s.substring(0,6)+"Z":i="."+s+"Z"}return new Date(n).toISOString().replace(".000Z",i)}internalJsonRead(e,t,n){if(typeof e!="string")throw new Error("Unable to parse Timestamp from JSON "+V(e)+".");let i=e.match(/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(?:Z|\.([0-9]{3,9})Z|([+-][0-9][0-9]:[0-9][0-9]))$/);if(!i)throw new Error("Unable to parse Timestamp from JSON. Invalid format.");let s=Date.parse(i[1]+"-"+i[2]+"-"+i[3]+"T"+i[4]+":"+i[5]+":"+i[6]+(i[8]?i[8]:"Z"));if(Number.isNaN(s))throw new Error("Unable to parse Timestamp from JSON. Invalid value.");if(s<Date.parse("0001-01-01T00:00:00Z")||s>Date.parse("9999-12-31T23:59:59Z"))throw new globalThis.Error("Unable to parse Timestamp from JSON. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.");return n||(n=this.create()),n.seconds=b.from(s/1e3).toBigInt(),n.nanos=0,i[7]&&(n.nanos=parseInt("1"+i[7]+"0".repeat(9-i[7].length))-1e9),n}},Ze=new Qe;var cr=(n=>(n[n.UNKNOWN=0]="UNKNOWN",n[n.PATH=1]="PATH",n[n.CMD=2]="CMD",n))(cr||{}),fr=(i=>(i[i.UNSPECIFIED=0]="UNSPECIFIED",i[i.CANCELLED=1]="CANCELLED",i[i.CANCELLING=2]="CANCELLING",i[i.NOT_CANCELLABLE=3]="NOT_CANCELLABLE",i))(fr||{}),Ye=class extends w{constructor(){super("arrow.flight.protocol.HandshakeRequest",[{no:1,name:"protocol_version",kind:"scalar",T:4,L:0},{no:2,name:"payload",kind:"scalar",T:12}])}},$r=new Ye,ze=class extends w{constructor(){super("arrow.flight.protocol.HandshakeResponse",[{no:1,name:"protocol_version",kind:"scalar",T:4,L:0},{no:2,name:"payload",kind:"scalar",T:12}])}},qr=new ze,et=class extends w{constructor(){super("arrow.flight.protocol.BasicAuth",[{no:2,name:"username",kind:"scalar",T:9},{no:3,name:"password",kind:"scalar",T:9}])}},Es=new et,tt=class extends w{constructor(){super("arrow.flight.protocol.Empty",[])}},jr=new tt,rt=class extends w{constructor(){super("arrow.flight.protocol.ActionType",[{no:1,name:"type",kind:"scalar",T:9},{no:2,name:"description",kind:"scalar",T:9}])}},Hr=new rt,nt=class extends w{constructor(){super("arrow.flight.protocol.Criteria",[{no:1,name:"expression",kind:"scalar",T:12}])}},Xr=new nt,it=class extends w{constructor(){super("arrow.flight.protocol.Action",[{no:1,name:"type",kind:"scalar",T:9},{no:2,name:"body",kind:"scalar",T:12}])}},Jr=new it,st=class extends w{constructor(){super("arrow.flight.protocol.CancelFlightInfoRequest",[{no:1,name:"info",kind:"message",T:()=>Oe}])}},_s=new st,ot=class extends w{constructor(){super("arrow.flight.protocol.RenewFlightEndpointRequest",[{no:1,name:"endpoint",kind:"message",T:()=>pr}])}},ks=new ot,at=class extends w{constructor(){super("arrow.flight.protocol.Result",[{no:1,name:"body",kind:"scalar",T:12}])}},Gr=new at,ut=class extends w{constructor(){super("arrow.flight.protocol.CancelFlightInfoResult",[{no:1,name:"status",kind:"enum",T:()=>["arrow.flight.protocol.CancelStatus",fr,"CANCEL_STATUS_"]}])}},As=new ut,lt=class extends w{constructor(){super("arrow.flight.protocol.SchemaResult",[{no:1,name:"schema",kind:"scalar",T:12}])}},Kr=new lt,ct=class extends w{constructor(){super("arrow.flight.protocol.FlightDescriptor",[{no:1,name:"type",kind:"enum",T:()=>["arrow.flight.protocol.FlightDescriptor.DescriptorType",cr]},{no:2,name:"cmd",kind:"scalar",T:12},{no:3,name:"path",kind:"scalar",repeat:2,T:9}])}},j=new ct,ft=class extends w{constructor(){super("arrow.flight.protocol.FlightInfo",[{no:1,name:"schema",kind:"scalar",T:12},{no:2,name:"flight_descriptor",kind:"message",T:()=>j},{no:3,name:"endpoint",kind:"message",repeat:1,T:()=>pr},{no:4,name:"total_records",kind:"scalar",T:3,L:0},{no:5,name:"total_bytes",kind:"scalar",T:3,L:0},{no:6,name:"ordered",kind:"scalar",T:8},{no:7,name:"app_metadata",kind:"scalar",T:12}])}},Oe=new ft,pt=class extends w{constructor(){super("arrow.flight.protocol.PollInfo",[{no:1,name:"info",kind:"message",T:()=>Oe},{no:2,name:"flight_descriptor",kind:"message",T:()=>j},{no:3,name:"progress",kind:"scalar",opt:!0,T:1},{no:4,name:"expiration_time",kind:"message",T:()=>Ze}])}},Qr=new pt,mt=class extends w{constructor(){super("arrow.flight.protocol.FlightEndpoint",[{no:1,name:"ticket",kind:"message",T:()=>Ie},{no:2,name:"location",kind:"message",repeat:1,T:()=>Zr},{no:3,name:"expiration_time",kind:"message",T:()=>Ze},{no:4,name:"app_metadata",kind:"scalar",T:12}])}},pr=new mt,ht=class extends w{constructor(){super("arrow.flight.protocol.Location",[{no:1,name:"uri",kind:"scalar",T:9}])}},Zr=new ht,dt=class extends w{constructor(){super("arrow.flight.protocol.Ticket",[{no:1,name:"ticket",kind:"scalar",T:12}])}},Ie=new dt,gt=class extends w{constructor(){super("arrow.flight.protocol.FlightData",[{no:1,name:"flight_descriptor",kind:"message",T:()=>j},{no:2,name:"data_header",kind:"scalar",T:12},{no:3,name:"app_metadata",kind:"scalar",T:12},{no:1e3,name:"data_body",kind:"scalar",T:12}])}},xe=new gt,bt=class extends w{constructor(){super("arrow.flight.protocol.PutResult",[{no:1,name:"app_metadata",kind:"scalar",T:12}])}},Yr=new bt,Ne=new lr.ServiceType("arrow.flight.protocol.FlightService",[{name:"Handshake",serverStreaming:!0,clientStreaming:!0,options:{},I:$r,O:qr},{name:"ListFlights",serverStreaming:!0,options:{},I:Xr,O:Oe},{name:"GetFlightInfo",options:{},I:j,O:Oe},{name:"PollFlightInfo",options:{},I:j,O:Qr},{name:"GetSchema",options:{},I:j,O:Kr},{name:"DoGet",serverStreaming:!0,options:{},I:Ie,O:xe},{name:"DoPut",serverStreaming:!0,clientStreaming:!0,options:{},I:xe,O:Yr},{name:"DoExchange",serverStreaming:!0,clientStreaming:!0,options:{},I:xe,O:xe},{name:"DoAction",serverStreaming:!0,options:{},I:Jr,O:Gr},{name:"ListActions",serverStreaming:!0,options:{},I:jr,O:Hr}]);var _=X("@protobuf-ts/runtime-rpc");var Ee=class{constructor(e){this._transport=e;d(this,"typeName",Ne.typeName);d(this,"methods",Ne.methods);d(this,"options",Ne.options)}_transport;handshake(e){let t=this.methods[0],n=this._transport.mergeOptions(e);return(0,_.stackIntercept)("duplex",this._transport,t,n)}listFlights(e,t){let n=this.methods[1],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("serverStreaming",this._transport,n,i,e)}getFlightInfo(e,t){let n=this.methods[2],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("unary",this._transport,n,i,e)}pollFlightInfo(e,t){let n=this.methods[3],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("unary",this._transport,n,i,e)}getSchema(e,t){let n=this.methods[4],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("unary",this._transport,n,i,e)}doGet(e,t){let n=this.methods[5],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("serverStreaming",this._transport,n,i,e)}doPut(e){let t=this.methods[6],n=this._transport.mergeOptions(e);return(0,_.stackIntercept)("duplex",this._transport,t,n)}doExchange(e){let t=this.methods[7],n=this._transport.mergeOptions(e);return(0,_.stackIntercept)("duplex",this._transport,t,n)}doAction(e,t){let n=this.methods[8],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("serverStreaming",this._transport,n,i,e)}listActions(e,t){let n=this.methods[9],i=this._transport.mergeOptions(t);return(0,_.stackIntercept)("serverStreaming",this._transport,n,i,e)}};var mr=/\$(\w+)/g;function hr(r){return!!r.match(mr)}function dr(r,e){let t=r.match(mr);if(t)for(let n of t)e[n.trim().replace("$","")]||M(new Error(`No parameter matching ${n} provided in the query params map`));return!0}var zr="2.3.0",gr=`influxdb3-js/${zr}`;var br=X("apache-arrow/enum");function yt(r,e){if(e==null)return null;let t=r.metadata.get("iox::column::type");if(!t||r.typeId===br.Type.Timestamp)return e;let[,,n,i]=t.split("::");if(n==="field")switch(i){case"integer":return W(e)?parseInt(e):(console.warn(`Value ${e} is not an integer`),e);case"uinteger":return Bt(e)?parseInt(e):(console.warn(`Value ${e} is not an unsigned integer`),e);case"float":return W(e)?parseFloat(e):(console.warn(`Value ${e} is not a float`),e);case"boolean":return typeof e=="boolean"||console.warn(`Value ${e} is not a boolean`),e;case"string":return typeof e=="string"?String(e):(console.warn(`Value ${e} is not a string`),e);default:return e}return e}var ee=class{constructor(e){this._options=e;d(this,"_closed",!1);d(this,"_flightClient");d(this,"_transport");d(this,"_defaultHeaders");let{host:t,queryTimeout:n,grpcOptions:i}=this._options;this._defaultHeaders=this._options.headers;let s={};i!==void 0&&(s=i),this._transport=C.queryTransport({host:t,timeout:n,clientOptions:{...s}}),this._flightClient=new Ee(this._transport)}_options;prepareTicket(e,t,n){let i={database:e,sql_query:t,query_type:n.type};if(n.params){let s={};for(let o of Object.keys(n.params))n.params[o]&&(s[o]=n.params[o]);i.params=s}return Ie.create({ticket:new TextEncoder().encode(JSON.stringify(i))})}prepareMetadata(e){let t={"User-Agent":gr,...this._defaultHeaders,...e},n=this._options.token;return n&&(t.authorization=`Bearer ${n}`),t}async*_queryRawBatches(e,t,n){var m;if(n.params&&hr(e)&&dr(e,n.params),this._closed)throw new Error("queryApi: already closed!");let i=this._flightClient,s=this.prepareTicket(t,e,n),a={meta:this.prepareMetadata(n.headers)};a.timeout=(m=n.timeout)!=null?m:this._options.queryTimeout;let u=i.doGet(s,a),c=(async function*(){for await(let p of u.responses)yield Ct(p.dataHeader.length),yield p.dataHeader,yield p.dataBody})();yield*await _e.RecordBatchReader.from(c)}async*query(e,t,n){let i=this._queryRawBatches(e,t,n);for await(let s of i)for(let o of s){let a={};for(let u of s.schema.fields){let c=o[u.name];a[u.name]=yt(u,c)}yield a}}async*queryPoints(e,t,n){var s;let i=this._queryRawBatches(e,t,n);for await(let o of i)for(let a=0;a<o.numRows;a++){let u=new R;for(let c=0;c<o.numCols;c++){let f=o.schema.fields[c],m=f.name,p=(s=o.getChildAt(c))==null?void 0:s.get(a),F=f.typeId,h=f.metadata.get("iox::column::type");if(p==null)continue;if((m==="measurement"||m=="iox::measurement")&&typeof p=="string"){u.setMeasurement(p);continue}if(!h){m==="time"&&F===_e.Type.Timestamp?u.setTimestamp(p):u.setField(m,p);continue}let[,,O,k]=h.split("::");if(O==="field"){if(k&&p!==void 0&&p!==null){let H=yt(f,p);u.setField(m,H,k)}}else O==="tag"?u.setTag(m,p):O==="timestamp"&&u.setTimestamp(p)}yield u}}async close(){var e,t;this._closed=!0,(t=(e=this._transport).close)==null||t.call(e)}};var wt=`Please specify the 'database' as a method parameter or use default configuration at 'ClientOptions.database'
|
|
19
|
+
`,te=class{constructor(...e){d(this,"_options");d(this,"_writeApi");d(this,"_queryApi");d(this,"_transport");d(this,"_mergeWriteOptions",e=>{var i;let t={...(i=this._options.writeOptions)==null?void 0:i.headers,...e==null?void 0:e.headers},n={...this._options.writeOptions,...e};return n.headers=t,n});d(this,"_mergeQueryOptions",e=>{var s,o;let t={...(s=this._options.queryOptions)==null?void 0:s.headers,...e==null?void 0:e.headers},n={...(o=this._options.queryOptions)==null?void 0:o.params,...e==null?void 0:e.params},i={...this._options.queryOptions,...e};return i.headers=t,i.params=n,i});var s,o,a,u,c,f,m,p;let t;switch(e.length){case 0:{t=De();break}case 1:{if(e[0]==null)throw new A("No configuration specified!");typeof e[0]=="string"?t=Re(e[0]):t=e[0];break}default:throw new A("Multiple arguments specified!")}this._options={...Se,...t},this._options.grpcOptions?this._options.queryOptions={...t.queryOptions,grpcOptions:{...this._options.grpcOptions}}:(s=t.queryOptions)!=null&&s.grpcOptions&&(this._options.grpcOptions=(o=t.queryOptions)==null?void 0:o.grpcOptions);let n=this._options.host;if(typeof n!="string")throw new A("No host specified!");if(n.endsWith("/")&&(this._options.host=n.substring(0,n.length-1)),typeof this._options.token!="string")throw new A("No token specified!");this._queryApi=new ee({...this._options,queryTimeout:(c=(a=this._options.queryOptions)==null?void 0:a.timeout)!=null?c:(u=this._options)==null?void 0:u.queryTimeout});let i=(p=(m=this._options.timeout)!=null?m:(f=this._options.writeOptions)==null?void 0:f.timeout)!=null?p:this._options.writeTimeout;this._transport=C.writeTransport({...this._options,writeTimeout:i}),this._writeApi=new Z({transport:this._transport,...this._options})}async write(e,t,n,i){var o;let s=this._mergeWriteOptions(i);await this._writeApi.doWrite($e(e,s==null?void 0:s.defaultTags,s==null?void 0:s.tagOrder,s==null?void 0:s.precision),(o=t!=null?t:this._options.database)!=null?o:M(new Error(wt)),n,s)}query(e,t,n=(i=>(i=this._options.queryOptions)!=null?i:ne)()){var o;let s=this._mergeQueryOptions(n);return this._queryApi.query(e,(o=t!=null?t:this._options.database)!=null?o:M(new Error(wt)),s)}queryPoints(e,t,n=(i=>(i=this._options.queryOptions)!=null?i:ne)()){var o;let s=this._mergeQueryOptions(n);return this._queryApi.queryPoints(e,(o=t!=null?t:this._options.database)!=null?o:M(new Error(wt)),s)}async getServerVersion(){let e;try{let t=await this._transport.request("/ping",null,{method:"GET"},(n,i)=>{var s;e=(s=n["X-Influxdb-Version"])!=null?s:n["x-influxdb-version"]});t&&!e&&(e=t.version)}catch(t){return Promise.reject(t)}return Promise.resolve(e)}async close(){await this._writeApi.close(),await this._queryApi.close()}};return Ir(en);})();
|
|
16
20
|
Object.defineProperty(exports, '__esModule', { value: true });Object.assign(exports, influxdb);}));
|
|
17
21
|
//# sourceMappingURL=index.browser.js.map
|
package/dist/index.browser.js.gz
CHANGED
|
Binary file
|