@supernova-studio/client 1.9.20 → 1.10.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 +1467 -3
- package/dist/index.d.ts +1467 -3
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4846,7 +4846,8 @@ var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
|
|
|
4846
4846
|
var BITBUCKET_MAX_LENGTH = 64;
|
|
4847
4847
|
var ExportJobDocumentationChanges = _zod.z.object({
|
|
4848
4848
|
pagePersistentIds: _zod.z.string().array(),
|
|
4849
|
-
groupPersistentIds: _zod.z.string().array()
|
|
4849
|
+
groupPersistentIds: _zod.z.string().array(),
|
|
4850
|
+
selectivePublishing: _zod.z.boolean().optional()
|
|
4850
4851
|
});
|
|
4851
4852
|
var ExporterDestinationDocs = _zod.z.object({
|
|
4852
4853
|
environment: PublishedDocEnvironment,
|
|
@@ -4860,7 +4861,10 @@ var GitCommonDestinationOptions = _zod.z.object({
|
|
|
4860
4861
|
commitAuthorEmail: nullishToOptional(_zod.z.string()),
|
|
4861
4862
|
commitMessage: nullishToOptional(_zod.z.string()),
|
|
4862
4863
|
pullRequestTitle: nullishToOptional(_zod.z.string()),
|
|
4863
|
-
pullRequestDescription: nullishToOptional(_zod.z.string())
|
|
4864
|
+
pullRequestDescription: nullishToOptional(_zod.z.string()),
|
|
4865
|
+
checkoutNoTags: nullishToOptional(_zod.z.boolean()),
|
|
4866
|
+
checkoutNoBlobs: nullishToOptional(_zod.z.boolean()),
|
|
4867
|
+
checkoutSparse: nullishToOptional(_zod.z.boolean())
|
|
4864
4868
|
});
|
|
4865
4869
|
var ExporterDestinationS3 = _zod.z.object({});
|
|
4866
4870
|
var ExporterDestinationGithub = _zod.z.object({
|
|
@@ -6391,7 +6395,7 @@ var DTOStorybookSourceUpdatePayload = _zod.z.object({
|
|
|
6391
6395
|
fileName: _zod.z.string().optional()
|
|
6392
6396
|
});
|
|
6393
6397
|
var DTOFigmaSourceUpdatePayload = _zod.z.object({
|
|
6394
|
-
themeId: _zod.z.string().
|
|
6398
|
+
themeId: _zod.z.string().nullish(),
|
|
6395
6399
|
scope: DataSourceFigmaScope.optional(),
|
|
6396
6400
|
autoImportMode: DataSourceAutoImportMode.optional()
|
|
6397
6401
|
});
|