@supernova-studio/client 0.54.10 → 0.54.12
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 +23 -14
- package/dist/index.d.ts +23 -14
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/export/pipeline.ts +1 -0
- package/src/api/dto/export/pipeline.ts +3 -0
- package/src/api/payloads/export/pipeline.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -3326,7 +3326,8 @@ var ThemeUpdateImportModelInput = z96.object({
|
|
|
3326
3326
|
});
|
|
3327
3327
|
var DesignTokenImportModelPart = z97.object({
|
|
3328
3328
|
collection: z97.string().optional(),
|
|
3329
|
-
codeSyntax: z97.record(z97.coerce.string()).optional()
|
|
3329
|
+
codeSyntax: z97.record(z97.coerce.string()).optional(),
|
|
3330
|
+
scopes: z97.array(z97.string()).optional()
|
|
3330
3331
|
});
|
|
3331
3332
|
var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
|
|
3332
3333
|
origin: DesignTokenOrigin
|
|
@@ -4912,6 +4913,7 @@ function pipelineToDto(pipeline) {
|
|
|
4912
4913
|
exporterId: pipeline.exporterId,
|
|
4913
4914
|
brandPersistentId: pipeline.brandPersistentId,
|
|
4914
4915
|
themePersistentId: pipeline.themePersistentId,
|
|
4916
|
+
themePersistentIds: pipeline.themePersistentIds,
|
|
4915
4917
|
destinationAzure: pipeline.destinationAzure,
|
|
4916
4918
|
destinationBitbucket: pipeline.destinationBitbucket,
|
|
4917
4919
|
destinationSnDocs: pipeline.destinationSnDocs,
|
|
@@ -5223,6 +5225,7 @@ var DTOPipelineCreateBody = z185.object({
|
|
|
5223
5225
|
eventType: PipelineEventType,
|
|
5224
5226
|
brandPersistentId: z185.string().optional(),
|
|
5225
5227
|
themePersistentId: z185.string().optional(),
|
|
5228
|
+
themePersistentIds: z185.string().array().optional(),
|
|
5226
5229
|
destination: PipelineDestinationType.optional(),
|
|
5227
5230
|
gitQuery: GitObjectsQuery,
|
|
5228
5231
|
destinations: z185.object({
|
|
@@ -5675,6 +5678,7 @@ var DTOPipeline = z202.object({
|
|
|
5675
5678
|
exporterId: z202.string(),
|
|
5676
5679
|
brandPersistentId: z202.string().optional(),
|
|
5677
5680
|
themePersistentId: z202.string().optional(),
|
|
5681
|
+
themePersistentIds: z202.string().array().optional(),
|
|
5678
5682
|
...ExportDestinationsMap.shape,
|
|
5679
5683
|
latestJobs: DTOExportJob.array()
|
|
5680
5684
|
});
|