@supernova-studio/client 1.33.1 → 1.34.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 +99 -0
- package/dist/index.d.ts +99 -0
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -9227,7 +9227,7 @@ var DTOFeatureIterationTag = z312.object({
|
|
|
9227
9227
|
iterationId: Id
|
|
9228
9228
|
});
|
|
9229
9229
|
var DTOFeatureSandbox = z312.object({
|
|
9230
|
-
id:
|
|
9230
|
+
id: z312.string(),
|
|
9231
9231
|
url: z312.string(),
|
|
9232
9232
|
staticPreviewUrl: z312.string().optional(),
|
|
9233
9233
|
parentMessageId: Id.optional(),
|
|
@@ -10344,6 +10344,12 @@ var DocumentationEndpoint = class {
|
|
|
10344
10344
|
}
|
|
10345
10345
|
);
|
|
10346
10346
|
}
|
|
10347
|
+
documentationPageContent(dsId, versionId, pageId) {
|
|
10348
|
+
return this.requestExecutor.json(
|
|
10349
|
+
`/design-systems/${dsId}/versions/${versionId}/documentation/pages/${pageId}/content`,
|
|
10350
|
+
DTODocumentationPageContentGetResponse
|
|
10351
|
+
);
|
|
10352
|
+
}
|
|
10347
10353
|
};
|
|
10348
10354
|
|
|
10349
10355
|
// src/api/endpoints/design-system/versions/ds-components.ts
|