@quenty/influxdbclient 7.24.2 → 7.24.3
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.24.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@7.24.2...@quenty/influxdbclient@7.24.3) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/influxdbclient
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [7.24.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@7.24.1...@quenty/influxdbclient@7.24.2) (2025-11-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/influxdbclient
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/influxdbclient",
|
|
3
|
-
"version": "7.24.
|
|
3
|
+
"version": "7.24.3",
|
|
4
4
|
"description": "Provides a Roblox Lua InfluxDB client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"@quenty/math": "^2.7.3",
|
|
34
34
|
"@quenty/promise": "^10.12.0",
|
|
35
35
|
"@quenty/rx": "^13.20.0",
|
|
36
|
-
"@quenty/servicebag": "^11.13.
|
|
36
|
+
"@quenty/servicebag": "^11.13.2",
|
|
37
37
|
"@quenty/signal": "^7.11.1",
|
|
38
38
|
"@quenty/string": "^3.3.3",
|
|
39
39
|
"@quenty/table": "^3.8.0",
|
|
40
|
-
"@quenty/valueobject": "^13.21.
|
|
40
|
+
"@quenty/valueobject": "^13.21.3"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
|
|
46
46
|
}
|
|
@@ -20,14 +20,16 @@ local InfluxDBClient = setmetatable({}, BaseObject)
|
|
|
20
20
|
InfluxDBClient.ClassName = "InfluxDBClient"
|
|
21
21
|
InfluxDBClient.__index = InfluxDBClient
|
|
22
22
|
|
|
23
|
-
export type InfluxDBClient =
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
23
|
+
export type InfluxDBClient =
|
|
24
|
+
typeof(setmetatable(
|
|
25
|
+
{} :: {
|
|
26
|
+
_clientConfig: ValueObject.ValueObject<InfluxDBClientConfigUtils.InfluxDBClientConfig>,
|
|
27
|
+
_writeApis: { [string]: { [string]: InfluxDBWriteAPI.InfluxDBWriteAPI } },
|
|
28
|
+
_flushAllPromises: Promise.Promise<()>,
|
|
29
|
+
},
|
|
30
|
+
{} :: typeof({ __index = InfluxDBClient })
|
|
31
|
+
))
|
|
32
|
+
& BaseObject.BaseObject
|
|
31
33
|
|
|
32
34
|
--[=[
|
|
33
35
|
Creates a new InfluxDB client
|
|
@@ -24,22 +24,24 @@ local InfluxDBWriteAPI = setmetatable({}, BaseObject)
|
|
|
24
24
|
InfluxDBWriteAPI.ClassName = "InfluxDBWriteAPI"
|
|
25
25
|
InfluxDBWriteAPI.__index = InfluxDBWriteAPI
|
|
26
26
|
|
|
27
|
-
export type InfluxDBWriteAPI =
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
27
|
+
export type InfluxDBWriteAPI =
|
|
28
|
+
typeof(setmetatable(
|
|
29
|
+
{} :: {
|
|
30
|
+
RequestFinished: Signal.Signal<(any)>,
|
|
31
|
+
Destroying: Signal.Signal<()>,
|
|
32
|
+
|
|
33
|
+
_clientConfig: ValueObject.ValueObject<InfluxDBClientConfigUtils.InfluxDBClientConfig>,
|
|
34
|
+
_printDebugWriteEnabled: boolean,
|
|
35
|
+
_org: string,
|
|
36
|
+
_bucket: string,
|
|
37
|
+
_precision: string,
|
|
38
|
+
_pointSettings: InfluxDBPointSettings.InfluxDBPointSettings,
|
|
39
|
+
_writeOptions: InfluxDBWriteOptionUtils.InfluxDBWriteOptions,
|
|
40
|
+
_writeBuffer: InfluxDBWriteBuffer.InfluxDBWriteBuffer,
|
|
41
|
+
},
|
|
42
|
+
{} :: typeof({ __index = InfluxDBWriteAPI })
|
|
43
|
+
))
|
|
44
|
+
& BaseObject.BaseObject
|
|
43
45
|
|
|
44
46
|
--[=[
|
|
45
47
|
Creates a new InfluxDB write API. Retrieve this from the [InfluxDBClient].
|
|
@@ -19,17 +19,19 @@ InfluxDBWriteBuffer.__index = InfluxDBWriteBuffer
|
|
|
19
19
|
|
|
20
20
|
export type PromiseHandleFlush = (entries: { string }) -> Promise.Promise<()>
|
|
21
21
|
|
|
22
|
-
export type InfluxDBWriteBuffer =
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
22
|
+
export type InfluxDBWriteBuffer =
|
|
23
|
+
typeof(setmetatable(
|
|
24
|
+
{} :: {
|
|
25
|
+
_bytes: number,
|
|
26
|
+
_length: number,
|
|
27
|
+
_entries: { string },
|
|
28
|
+
_writeOptions: InfluxDBWriteOptionUtils.InfluxDBWriteOptions,
|
|
29
|
+
_promiseHandleFlush: PromiseHandleFlush,
|
|
30
|
+
_requestQueueNext: Signal.Signal<()>,
|
|
31
|
+
},
|
|
32
|
+
{} :: typeof({ __index = InfluxDBWriteBuffer })
|
|
33
|
+
))
|
|
34
|
+
& BaseObject.BaseObject
|
|
33
35
|
|
|
34
36
|
--[=[
|
|
35
37
|
Creates a new InfluxDB write buffer.
|