@influxdata/influxdb3-client-browser 0.13.0-nightly.7346 → 0.13.0-nightly.7600
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.d.mts +9 -9
- package/dist/index.d.ts +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/influxdb.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -234,7 +234,7 @@ declare class Point {
|
|
|
234
234
|
* or an undefined value. An undefined value instructs to assign a local timestamp using
|
|
235
235
|
* the client's clock. An empty string can be used to let the server assign
|
|
236
236
|
* the timestamp. A number value represents time as a count of time units since epoch, the
|
|
237
|
-
* exact time unit then depends on the {@link InfluxDBClient.write | precision} of the API
|
|
237
|
+
* exact time unit then depends on the {@link InfluxDBClient.default.write | precision} of the API
|
|
238
238
|
* that writes the point.
|
|
239
239
|
*
|
|
240
240
|
* Beware that the current time in nanoseconds can't precisely fit into a JS number,
|
|
@@ -283,7 +283,7 @@ declare class Point {
|
|
|
283
283
|
* If the field is not present, returns undefined.
|
|
284
284
|
*
|
|
285
285
|
* @param name - field name
|
|
286
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match float type.
|
|
286
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match float type.
|
|
287
287
|
* @returns The float field value or undefined.
|
|
288
288
|
*/
|
|
289
289
|
getFloatField(name: string): number | undefined;
|
|
@@ -302,7 +302,7 @@ declare class Point {
|
|
|
302
302
|
* If the field is not present, returns undefined.
|
|
303
303
|
*
|
|
304
304
|
* @param name - field name
|
|
305
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match integer type.
|
|
305
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match integer type.
|
|
306
306
|
* @returns The integer field value or undefined.
|
|
307
307
|
*/
|
|
308
308
|
getIntegerField(name: string): number | undefined;
|
|
@@ -321,7 +321,7 @@ declare class Point {
|
|
|
321
321
|
* If the field is not present, returns undefined.
|
|
322
322
|
*
|
|
323
323
|
* @param name - field name
|
|
324
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match uint type.
|
|
324
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match uint type.
|
|
325
325
|
* @returns The uint field value or undefined.
|
|
326
326
|
*/
|
|
327
327
|
getUintegerField(name: string): number | undefined;
|
|
@@ -340,7 +340,7 @@ declare class Point {
|
|
|
340
340
|
* If the field is not present, returns undefined.
|
|
341
341
|
*
|
|
342
342
|
* @param name - field name
|
|
343
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match string type.
|
|
343
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match string type.
|
|
344
344
|
* @returns The string field value or undefined.
|
|
345
345
|
*/
|
|
346
346
|
getStringField(name: string): string | undefined;
|
|
@@ -358,7 +358,7 @@ declare class Point {
|
|
|
358
358
|
* If the field is not present, returns undefined.
|
|
359
359
|
*
|
|
360
360
|
* @param name - field name
|
|
361
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match boolean type.
|
|
361
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match boolean type.
|
|
362
362
|
* @returns The boolean field value or undefined.
|
|
363
363
|
*/
|
|
364
364
|
getBooleanField(name: string): boolean | undefined;
|
|
@@ -507,7 +507,7 @@ declare class PointValues {
|
|
|
507
507
|
* or an undefined value. An undefined value instructs to assign a local timestamp using
|
|
508
508
|
* the client's clock. An empty string can be used to let the server assign
|
|
509
509
|
* the timestamp. A number value represents time as a count of time units since epoch, the
|
|
510
|
-
* exact time unit then depends on the {@link InfluxDBClient.write | precision} of the API
|
|
510
|
+
* exact time unit then depends on the {@link InfluxDBClient.default.write | precision} of the API
|
|
511
511
|
* that writes the point.
|
|
512
512
|
*
|
|
513
513
|
* Beware that the current time in nanoseconds can't precisely fit into a JS number,
|
|
@@ -796,7 +796,7 @@ interface ConnectionOptions {
|
|
|
796
796
|
/** default connection options */
|
|
797
797
|
declare const DEFAULT_ConnectionOptions: Partial<ConnectionOptions>;
|
|
798
798
|
/**
|
|
799
|
-
* Options used by {@link InfluxDBClient.write} .
|
|
799
|
+
* Options used by {@link InfluxDBClient.default.write} .
|
|
800
800
|
*
|
|
801
801
|
* @example WriteOptions in write call
|
|
802
802
|
* ```typescript
|
|
@@ -861,7 +861,7 @@ interface WriteOptions {
|
|
|
861
861
|
declare const DEFAULT_WriteOptions: WriteOptions;
|
|
862
862
|
type QueryType = 'sql' | 'influxql';
|
|
863
863
|
/**
|
|
864
|
-
* Options used by {@link InfluxDBClient.query} and by {@link InfluxDBClient.queryPoints}.
|
|
864
|
+
* Options used by {@link InfluxDBClient.default.query} and by {@link InfluxDBClient.default.queryPoints}.
|
|
865
865
|
*
|
|
866
866
|
* @example QueryOptions in queryCall
|
|
867
867
|
* ```typescript
|
package/dist/index.d.ts
CHANGED
|
@@ -234,7 +234,7 @@ declare class Point {
|
|
|
234
234
|
* or an undefined value. An undefined value instructs to assign a local timestamp using
|
|
235
235
|
* the client's clock. An empty string can be used to let the server assign
|
|
236
236
|
* the timestamp. A number value represents time as a count of time units since epoch, the
|
|
237
|
-
* exact time unit then depends on the {@link InfluxDBClient.write | precision} of the API
|
|
237
|
+
* exact time unit then depends on the {@link InfluxDBClient.default.write | precision} of the API
|
|
238
238
|
* that writes the point.
|
|
239
239
|
*
|
|
240
240
|
* Beware that the current time in nanoseconds can't precisely fit into a JS number,
|
|
@@ -283,7 +283,7 @@ declare class Point {
|
|
|
283
283
|
* If the field is not present, returns undefined.
|
|
284
284
|
*
|
|
285
285
|
* @param name - field name
|
|
286
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match float type.
|
|
286
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match float type.
|
|
287
287
|
* @returns The float field value or undefined.
|
|
288
288
|
*/
|
|
289
289
|
getFloatField(name: string): number | undefined;
|
|
@@ -302,7 +302,7 @@ declare class Point {
|
|
|
302
302
|
* If the field is not present, returns undefined.
|
|
303
303
|
*
|
|
304
304
|
* @param name - field name
|
|
305
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match integer type.
|
|
305
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match integer type.
|
|
306
306
|
* @returns The integer field value or undefined.
|
|
307
307
|
*/
|
|
308
308
|
getIntegerField(name: string): number | undefined;
|
|
@@ -321,7 +321,7 @@ declare class Point {
|
|
|
321
321
|
* If the field is not present, returns undefined.
|
|
322
322
|
*
|
|
323
323
|
* @param name - field name
|
|
324
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match uint type.
|
|
324
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match uint type.
|
|
325
325
|
* @returns The uint field value or undefined.
|
|
326
326
|
*/
|
|
327
327
|
getUintegerField(name: string): number | undefined;
|
|
@@ -340,7 +340,7 @@ declare class Point {
|
|
|
340
340
|
* If the field is not present, returns undefined.
|
|
341
341
|
*
|
|
342
342
|
* @param name - field name
|
|
343
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match string type.
|
|
343
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match string type.
|
|
344
344
|
* @returns The string field value or undefined.
|
|
345
345
|
*/
|
|
346
346
|
getStringField(name: string): string | undefined;
|
|
@@ -358,7 +358,7 @@ declare class Point {
|
|
|
358
358
|
* If the field is not present, returns undefined.
|
|
359
359
|
*
|
|
360
360
|
* @param name - field name
|
|
361
|
-
* @throws {@link GetFieldTypeMissmatchError} Actual type of field doesn't match boolean type.
|
|
361
|
+
* @throws {@link PointValues.GetFieldTypeMissmatchError} Actual type of field doesn't match boolean type.
|
|
362
362
|
* @returns The boolean field value or undefined.
|
|
363
363
|
*/
|
|
364
364
|
getBooleanField(name: string): boolean | undefined;
|
|
@@ -507,7 +507,7 @@ declare class PointValues {
|
|
|
507
507
|
* or an undefined value. An undefined value instructs to assign a local timestamp using
|
|
508
508
|
* the client's clock. An empty string can be used to let the server assign
|
|
509
509
|
* the timestamp. A number value represents time as a count of time units since epoch, the
|
|
510
|
-
* exact time unit then depends on the {@link InfluxDBClient.write | precision} of the API
|
|
510
|
+
* exact time unit then depends on the {@link InfluxDBClient.default.write | precision} of the API
|
|
511
511
|
* that writes the point.
|
|
512
512
|
*
|
|
513
513
|
* Beware that the current time in nanoseconds can't precisely fit into a JS number,
|
|
@@ -796,7 +796,7 @@ interface ConnectionOptions {
|
|
|
796
796
|
/** default connection options */
|
|
797
797
|
declare const DEFAULT_ConnectionOptions: Partial<ConnectionOptions>;
|
|
798
798
|
/**
|
|
799
|
-
* Options used by {@link InfluxDBClient.write} .
|
|
799
|
+
* Options used by {@link InfluxDBClient.default.write} .
|
|
800
800
|
*
|
|
801
801
|
* @example WriteOptions in write call
|
|
802
802
|
* ```typescript
|
|
@@ -861,7 +861,7 @@ interface WriteOptions {
|
|
|
861
861
|
declare const DEFAULT_WriteOptions: WriteOptions;
|
|
862
862
|
type QueryType = 'sql' | 'influxql';
|
|
863
863
|
/**
|
|
864
|
-
* Options used by {@link InfluxDBClient.query} and by {@link InfluxDBClient.queryPoints}.
|
|
864
|
+
* Options used by {@link InfluxDBClient.default.query} and by {@link InfluxDBClient.default.queryPoints}.
|
|
865
865
|
*
|
|
866
866
|
* @example QueryOptions in queryCall
|
|
867
867
|
* ```typescript
|