@zuplo/cli 7.7.6 → 7.7.8
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/node_modules/@posthog/core/dist/error-tracking/index.d.ts +1 -1
- package/node_modules/@posthog/core/dist/error-tracking/index.d.ts.map +1 -1
- package/node_modules/@posthog/core/package.json +2 -2
- package/node_modules/@posthog/core/src/error-tracking/index.ts +24 -1
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/{chunk-YDOBWNLO.js → chunk-DRQ5CMVC.js} +108 -108
- package/node_modules/@zuplo/runtime/out/esm/chunk-DRQ5CMVC.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mocks/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +6 -6
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/package.json +11 -11
- package/node_modules/@zuplo/runtime/out/esm/chunk-YDOBWNLO.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-YDOBWNLO.js.LEGAL.txt → chunk-DRQ5CMVC.js.LEGAL.txt} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './error-properties-builder';
|
|
2
|
-
export type
|
|
2
|
+
export type { severityLevels, SeverityLevel, PolymorphicEvent, EventHint, PreviouslyCapturedError, ErrorProperties, Exception, ExceptionList, Mechanism, GetModuleFn, StackParser, StackLineParser, StackFrameModifierFn, Platform, StackFrame, CoercingContext, ChunkIdMapType, ParsingContext, ErrorTrackingCoercer, ExceptionLike, ParsedException, } from './types';
|
|
3
3
|
export * from './parsers';
|
|
4
4
|
export * from './coercers';
|
|
5
5
|
export * from './utils';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/error-tracking/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/error-tracking/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA;AAE1C,YAAY,EACV,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,SAAS,EACT,uBAAuB,EACvB,eAAe,EACf,SAAS,EACT,aAAa,EACb,SAAS,EACT,WAAW,EACX,WAAW,EACX,eAAe,EACf,oBAAoB,EACpB,QAAQ,EACR,UAAU,EACV,eAAe,EACf,cAAc,EACd,cAAc,EACd,oBAAoB,EACpB,aAAa,EACb,eAAe,GAChB,MAAM,SAAS,CAAA;AAChB,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@posthog/core",
|
|
3
|
-
"version": "1.52.
|
|
3
|
+
"version": "1.52.1",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/PostHog/posthog-js/issues"
|
|
6
6
|
},
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@posthog/types": "^1.
|
|
73
|
+
"@posthog/types": "^1.410.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@rslib/core": "0.23.2",
|
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
export * from './error-properties-builder'
|
|
2
|
-
|
|
2
|
+
// Named type exports keep this barrel compatible with TypeScript 4.7.
|
|
3
|
+
export type {
|
|
4
|
+
severityLevels,
|
|
5
|
+
SeverityLevel,
|
|
6
|
+
PolymorphicEvent,
|
|
7
|
+
EventHint,
|
|
8
|
+
PreviouslyCapturedError,
|
|
9
|
+
ErrorProperties,
|
|
10
|
+
Exception,
|
|
11
|
+
ExceptionList,
|
|
12
|
+
Mechanism,
|
|
13
|
+
GetModuleFn,
|
|
14
|
+
StackParser,
|
|
15
|
+
StackLineParser,
|
|
16
|
+
StackFrameModifierFn,
|
|
17
|
+
Platform,
|
|
18
|
+
StackFrame,
|
|
19
|
+
CoercingContext,
|
|
20
|
+
ChunkIdMapType,
|
|
21
|
+
ParsingContext,
|
|
22
|
+
ErrorTrackingCoercer,
|
|
23
|
+
ExceptionLike,
|
|
24
|
+
ParsedException,
|
|
25
|
+
} from './types'
|
|
3
26
|
export * from './parsers'
|
|
4
27
|
export * from './coercers'
|
|
5
28
|
export * from './utils'
|