@supernova-studio/client 1.12.1 → 1.12.2
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.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1786 -1776
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -214,6 +214,7 @@ var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr)
|
|
|
214
214
|
|
|
215
215
|
|
|
216
216
|
|
|
217
|
+
|
|
217
218
|
|
|
218
219
|
|
|
219
220
|
var __defProp2 = Object.defineProperty;
|
|
@@ -5524,6 +5525,15 @@ var ForgeMeta = _zod.z.object({
|
|
|
5524
5525
|
name: _zod.z.string(),
|
|
5525
5526
|
description: _zod.z.string().optional()
|
|
5526
5527
|
});
|
|
5528
|
+
var ForgeProjectArtifactContentData = DocumentationPageContentData;
|
|
5529
|
+
var ForgeProjectArtifactContent = _zod.z.object({
|
|
5530
|
+
id: _zod.z.string(),
|
|
5531
|
+
artifactId: _zod.z.string(),
|
|
5532
|
+
projectId: _zod.z.string(),
|
|
5533
|
+
createdAt: _zod.z.coerce.date(),
|
|
5534
|
+
updatedAt: _zod.z.coerce.date(),
|
|
5535
|
+
data: ForgeProjectArtifactContentData
|
|
5536
|
+
});
|
|
5527
5537
|
var ForgeProjectArtifact = _zod.z.object({
|
|
5528
5538
|
id: _zod.z.string(),
|
|
5529
5539
|
projectId: _zod.z.string(),
|