@fullevent/node 0.0.1 → 2026.1.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/dist/index.d.mts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -162,7 +162,7 @@ interface WideLoggerConfig {
|
|
|
162
162
|
* @example
|
|
163
163
|
* ```typescript
|
|
164
164
|
* import { Hono } from 'hono';
|
|
165
|
-
* import { wideLogger, WideEventVariables } from '@fullevent/node
|
|
165
|
+
* import { wideLogger, WideEventVariables } from '@fullevent/node';
|
|
166
166
|
*
|
|
167
167
|
* const app = new Hono<{ Variables: WideEventVariables }>();
|
|
168
168
|
*
|
|
@@ -208,7 +208,7 @@ type WideEventVariables = {
|
|
|
208
208
|
* @example Quick Start
|
|
209
209
|
* ```typescript
|
|
210
210
|
* import { Hono } from 'hono';
|
|
211
|
-
* import { wideLogger, WideEventVariables } from '@fullevent/node
|
|
211
|
+
* import { wideLogger, WideEventVariables } from '@fullevent/node';
|
|
212
212
|
*
|
|
213
213
|
* const app = new Hono<{ Variables: WideEventVariables }>();
|
|
214
214
|
*
|
|
@@ -304,7 +304,7 @@ declare global {
|
|
|
304
304
|
* @example Quick Start
|
|
305
305
|
* ```typescript
|
|
306
306
|
* import express from 'express';
|
|
307
|
-
* import { expressWideLogger } from '@fullevent/node
|
|
307
|
+
* import { expressWideLogger } from '@fullevent/node';
|
|
308
308
|
*
|
|
309
309
|
* const app = express();
|
|
310
310
|
*
|
|
@@ -474,7 +474,7 @@ interface HttpRequestProperties {
|
|
|
474
474
|
*
|
|
475
475
|
* @example Basic Usage
|
|
476
476
|
* ```typescript
|
|
477
|
-
* import { FullEvent } from '@fullevent/node
|
|
477
|
+
* import { FullEvent } from '@fullevent/node';
|
|
478
478
|
*
|
|
479
479
|
* const client = new FullEvent({
|
|
480
480
|
* apiKey: process.env.FULLEVENT_API_KEY!,
|
|
@@ -868,7 +868,7 @@ declare class WideEventBuilder {
|
|
|
868
868
|
* ## Installation
|
|
869
869
|
*
|
|
870
870
|
* ```bash
|
|
871
|
-
* npm install @fullevent/node
|
|
871
|
+
* npm install @fullevent/node
|
|
872
872
|
* ```
|
|
873
873
|
*
|
|
874
874
|
* ## Quick Start
|
|
@@ -876,7 +876,7 @@ declare class WideEventBuilder {
|
|
|
876
876
|
* ### Direct Event Ingestion
|
|
877
877
|
*
|
|
878
878
|
* ```typescript
|
|
879
|
-
* import { FullEvent } from '@fullevent/node
|
|
879
|
+
* import { FullEvent } from '@fullevent/node';
|
|
880
880
|
*
|
|
881
881
|
* const client = new FullEvent({
|
|
882
882
|
* apiKey: process.env.FULLEVENT_API_KEY!,
|
|
@@ -889,7 +889,7 @@ declare class WideEventBuilder {
|
|
|
889
889
|
*
|
|
890
890
|
* ```typescript
|
|
891
891
|
* import { Hono } from 'hono';
|
|
892
|
-
* import { wideLogger, WideEventVariables } from '@fullevent/node
|
|
892
|
+
* import { wideLogger, WideEventVariables } from '@fullevent/node';
|
|
893
893
|
*
|
|
894
894
|
* const app = new Hono<{ Variables: WideEventVariables }>();
|
|
895
895
|
*
|
|
@@ -906,7 +906,7 @@ declare class WideEventBuilder {
|
|
|
906
906
|
* });
|
|
907
907
|
* ```
|
|
908
908
|
*
|
|
909
|
-
* @module @fullevent/node
|
|
909
|
+
* @module @fullevent/node
|
|
910
910
|
*/
|
|
911
911
|
|
|
912
912
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -162,7 +162,7 @@ interface WideLoggerConfig {
|
|
|
162
162
|
* @example
|
|
163
163
|
* ```typescript
|
|
164
164
|
* import { Hono } from 'hono';
|
|
165
|
-
* import { wideLogger, WideEventVariables } from '@fullevent/node
|
|
165
|
+
* import { wideLogger, WideEventVariables } from '@fullevent/node';
|
|
166
166
|
*
|
|
167
167
|
* const app = new Hono<{ Variables: WideEventVariables }>();
|
|
168
168
|
*
|
|
@@ -208,7 +208,7 @@ type WideEventVariables = {
|
|
|
208
208
|
* @example Quick Start
|
|
209
209
|
* ```typescript
|
|
210
210
|
* import { Hono } from 'hono';
|
|
211
|
-
* import { wideLogger, WideEventVariables } from '@fullevent/node
|
|
211
|
+
* import { wideLogger, WideEventVariables } from '@fullevent/node';
|
|
212
212
|
*
|
|
213
213
|
* const app = new Hono<{ Variables: WideEventVariables }>();
|
|
214
214
|
*
|
|
@@ -304,7 +304,7 @@ declare global {
|
|
|
304
304
|
* @example Quick Start
|
|
305
305
|
* ```typescript
|
|
306
306
|
* import express from 'express';
|
|
307
|
-
* import { expressWideLogger } from '@fullevent/node
|
|
307
|
+
* import { expressWideLogger } from '@fullevent/node';
|
|
308
308
|
*
|
|
309
309
|
* const app = express();
|
|
310
310
|
*
|
|
@@ -474,7 +474,7 @@ interface HttpRequestProperties {
|
|
|
474
474
|
*
|
|
475
475
|
* @example Basic Usage
|
|
476
476
|
* ```typescript
|
|
477
|
-
* import { FullEvent } from '@fullevent/node
|
|
477
|
+
* import { FullEvent } from '@fullevent/node';
|
|
478
478
|
*
|
|
479
479
|
* const client = new FullEvent({
|
|
480
480
|
* apiKey: process.env.FULLEVENT_API_KEY!,
|
|
@@ -868,7 +868,7 @@ declare class WideEventBuilder {
|
|
|
868
868
|
* ## Installation
|
|
869
869
|
*
|
|
870
870
|
* ```bash
|
|
871
|
-
* npm install @fullevent/node
|
|
871
|
+
* npm install @fullevent/node
|
|
872
872
|
* ```
|
|
873
873
|
*
|
|
874
874
|
* ## Quick Start
|
|
@@ -876,7 +876,7 @@ declare class WideEventBuilder {
|
|
|
876
876
|
* ### Direct Event Ingestion
|
|
877
877
|
*
|
|
878
878
|
* ```typescript
|
|
879
|
-
* import { FullEvent } from '@fullevent/node
|
|
879
|
+
* import { FullEvent } from '@fullevent/node';
|
|
880
880
|
*
|
|
881
881
|
* const client = new FullEvent({
|
|
882
882
|
* apiKey: process.env.FULLEVENT_API_KEY!,
|
|
@@ -889,7 +889,7 @@ declare class WideEventBuilder {
|
|
|
889
889
|
*
|
|
890
890
|
* ```typescript
|
|
891
891
|
* import { Hono } from 'hono';
|
|
892
|
-
* import { wideLogger, WideEventVariables } from '@fullevent/node
|
|
892
|
+
* import { wideLogger, WideEventVariables } from '@fullevent/node';
|
|
893
893
|
*
|
|
894
894
|
* const app = new Hono<{ Variables: WideEventVariables }>();
|
|
895
895
|
*
|
|
@@ -906,7 +906,7 @@ declare class WideEventBuilder {
|
|
|
906
906
|
* });
|
|
907
907
|
* ```
|
|
908
908
|
*
|
|
909
|
-
* @module @fullevent/node
|
|
909
|
+
* @module @fullevent/node
|
|
910
910
|
*/
|
|
911
911
|
|
|
912
912
|
/**
|
package/dist/index.js
CHANGED
|
@@ -162,7 +162,7 @@ var FullEvent = class {
|
|
|
162
162
|
duration_ms: 0,
|
|
163
163
|
// Will be updated after
|
|
164
164
|
// SDK info
|
|
165
|
-
sdk: "@fullevent/node
|
|
165
|
+
sdk: "@fullevent/node",
|
|
166
166
|
sdk_version: "1.0.0",
|
|
167
167
|
// Runtime info
|
|
168
168
|
runtime: typeof process !== "undefined" ? "node" : "browser",
|
package/dist/index.mjs
CHANGED
|
@@ -133,7 +133,7 @@ var FullEvent = class {
|
|
|
133
133
|
duration_ms: 0,
|
|
134
134
|
// Will be updated after
|
|
135
135
|
// SDK info
|
|
136
|
-
sdk: "@fullevent/node
|
|
136
|
+
sdk: "@fullevent/node",
|
|
137
137
|
sdk_version: "1.0.0",
|
|
138
138
|
// Runtime info
|
|
139
139
|
runtime: typeof process !== "undefined" ? "node" : "browser",
|