@stackone/core 1.68.2 → 1.69.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 +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ZodType, z } from "zod/v4";
|
|
1
|
+
import { ZodType, z } from "@stackone/utils";
|
|
3
2
|
import http from "node:http";
|
|
4
3
|
import https from "node:https";
|
|
4
|
+
import * as zod_v40 from "zod/v4";
|
|
5
5
|
import * as zod_v4_core0 from "zod/v4/core";
|
|
6
6
|
|
|
7
7
|
//#region src/categories/types.d.ts
|
|
@@ -643,6 +643,7 @@ type Operation = {
|
|
|
643
643
|
description: string;
|
|
644
644
|
schema?: Schema;
|
|
645
645
|
schemaType: 'native' | 'unified';
|
|
646
|
+
endpoint?: string;
|
|
646
647
|
context?: string;
|
|
647
648
|
operationType: OperationType;
|
|
648
649
|
tags?: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ZodType, z } from "zod/v4";
|
|
1
|
+
import { ZodType, z } from "@stackone/utils";
|
|
3
2
|
import http from "node:http";
|
|
4
3
|
import https from "node:https";
|
|
4
|
+
import * as zod_v40 from "zod/v4";
|
|
5
5
|
import * as zod_v4_core0 from "zod/v4/core";
|
|
6
6
|
|
|
7
7
|
//#region src/categories/types.d.ts
|
|
@@ -643,6 +643,7 @@ type Operation = {
|
|
|
643
643
|
description: string;
|
|
644
644
|
schema?: Schema;
|
|
645
645
|
schemaType: 'native' | 'unified';
|
|
646
|
+
endpoint?: string;
|
|
646
647
|
context?: string;
|
|
647
648
|
operationType: OperationType;
|
|
648
649
|
tags?: string[];
|