@quenty/influxdbclient 7.24.2-canary.a3ac54d.0 → 7.24.3-canary.607f741.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/CHANGELOG.md CHANGED
@@ -3,7 +3,15 @@
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.2-canary.a3ac54d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@7.24.1...@quenty/influxdbclient@7.24.2-canary.a3ac54d.0) (2025-11-22)
6
+ ## [7.24.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@7.24.2...@quenty/influxdbclient@7.24.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/influxdbclient
9
+
10
+
11
+
12
+
13
+
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
9
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/influxdbclient",
3
- "version": "7.24.2-canary.a3ac54d.0",
3
+ "version": "7.24.3-canary.607f741.0",
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.1",
36
+ "@quenty/servicebag": "11.13.2-canary.607f741.0",
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.2-canary.a3ac54d.0"
40
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "a3ac54d43aafa1c37b0e8c9b6e7b20b3f3362742"
45
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
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 = typeof(setmetatable(
24
- {} :: {
25
- _clientConfig: ValueObject.ValueObject<InfluxDBClientConfigUtils.InfluxDBClientConfig>,
26
- _writeApis: { [string]: { [string]: InfluxDBWriteAPI.InfluxDBWriteAPI } },
27
- _flushAllPromises: Promise.Promise<()>,
28
- },
29
- {} :: typeof({ __index = InfluxDBClient })
30
- )) & BaseObject.BaseObject
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 = typeof(setmetatable(
28
- {} :: {
29
- RequestFinished: Signal.Signal<(any)>,
30
- Destroying: Signal.Signal<()>,
31
-
32
- _clientConfig: ValueObject.ValueObject<InfluxDBClientConfigUtils.InfluxDBClientConfig>,
33
- _printDebugWriteEnabled: boolean,
34
- _org: string,
35
- _bucket: string,
36
- _precision: string,
37
- _pointSettings: InfluxDBPointSettings.InfluxDBPointSettings,
38
- _writeOptions: InfluxDBWriteOptionUtils.InfluxDBWriteOptions,
39
- _writeBuffer: InfluxDBWriteBuffer.InfluxDBWriteBuffer,
40
- },
41
- {} :: typeof({ __index = InfluxDBWriteAPI })
42
- )) & BaseObject.BaseObject
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 = typeof(setmetatable(
23
- {} :: {
24
- _bytes: number,
25
- _length: number,
26
- _entries: { string },
27
- _writeOptions: InfluxDBWriteOptionUtils.InfluxDBWriteOptions,
28
- _promiseHandleFlush: PromiseHandleFlush,
29
- _requestQueueNext: Signal.Signal<()>,
30
- },
31
- {} :: typeof({ __index = InfluxDBWriteBuffer })
32
- )) & BaseObject.BaseObject
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.