@supernova-studio/client 0.48.15 → 0.48.17
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 +587 -350
- package/dist/index.d.ts +587 -350
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/aux/index.ts +1 -0
- package/src/api/dto/aux/pagination.ts +8 -0
- package/src/api/dto/export/filter.ts +6 -0
- package/src/api/dto/export/index.ts +1 -0
- package/src/api/dto/export/job.ts +9 -1
- package/src/api/dto/index.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -85,8 +85,8 @@ import { z as z69 } from "zod";
|
|
|
85
85
|
import { z as z70 } from "zod";
|
|
86
86
|
import { z as z71 } from "zod";
|
|
87
87
|
import { z as z72 } from "zod";
|
|
88
|
-
import { z as z74 } from "zod";
|
|
89
88
|
import { z as z73 } from "zod";
|
|
89
|
+
import { z as z74 } from "zod";
|
|
90
90
|
import { z as z76 } from "zod";
|
|
91
91
|
import { z as z75 } from "zod";
|
|
92
92
|
import { z as z77 } from "zod";
|
|
@@ -1627,6 +1627,9 @@ var Component = BaseComponent.extend({
|
|
|
1627
1627
|
componentSetId: z74.string().optional(),
|
|
1628
1628
|
properties: FigmaComponentProperties.optional()
|
|
1629
1629
|
});
|
|
1630
|
+
var ComponentSet = BaseComponent.extend({
|
|
1631
|
+
properties: FigmaComponentSetProperties
|
|
1632
|
+
});
|
|
1630
1633
|
var ElementGroup = DesignElementBase.extend(DesignElementGroupablePart.shape).extend(DesignElementSlugPart.shape).extend(DesignElementBrandedPart.partial().shape).extend({
|
|
1631
1634
|
shortPersistentId: z75.string().optional(),
|
|
1632
1635
|
childType: DesignElementType,
|
|
@@ -5274,6 +5277,9 @@ var DTOExporterUpdateInput = z189.object({
|
|
|
5274
5277
|
url: z189.string().optional()
|
|
5275
5278
|
});
|
|
5276
5279
|
|
|
5280
|
+
// src/api/dto/export/filter.ts
|
|
5281
|
+
var DTOExportJobsListFilter = ExportJobFindByFilter;
|
|
5282
|
+
|
|
5277
5283
|
// src/api/dto/export/job.ts
|
|
5278
5284
|
import { z as z190 } from "zod";
|
|
5279
5285
|
var DTOExportJobCreatedBy = z190.object({
|
|
@@ -5299,6 +5305,11 @@ var DTOExportJobDestinations = z190.object({
|
|
|
5299
5305
|
documentation: ExporterDestinationDocs.optional(),
|
|
5300
5306
|
webhookUrl: z190.string().optional()
|
|
5301
5307
|
});
|
|
5308
|
+
var DTOExportJobResult = ExportJobResult.omit({
|
|
5309
|
+
sndocs: true
|
|
5310
|
+
}).extend({
|
|
5311
|
+
documentation: ExportJobDocsDestinationResult.optional()
|
|
5312
|
+
});
|
|
5302
5313
|
var DTOExportJob = z190.object({
|
|
5303
5314
|
id: z190.string(),
|
|
5304
5315
|
createdAt: z190.coerce.date(),
|
|
@@ -5312,7 +5323,7 @@ var DTOExportJob = z190.object({
|
|
|
5312
5323
|
destinations: DTOExportJobDestinations,
|
|
5313
5324
|
exporterId: z190.string(),
|
|
5314
5325
|
scheduleId: z190.string().optional(),
|
|
5315
|
-
result:
|
|
5326
|
+
result: DTOExportJobResult.optional(),
|
|
5316
5327
|
brandPersistentId: z190.string().optional(),
|
|
5317
5328
|
themePersistentId: z190.string().optional()
|
|
5318
5329
|
});
|
|
@@ -11024,6 +11035,8 @@ export {
|
|
|
11024
11035
|
DTOExportJobDesignSystemVersionPreview,
|
|
11025
11036
|
DTOExportJobDestinations,
|
|
11026
11037
|
DTOExportJobResponse,
|
|
11038
|
+
DTOExportJobResult,
|
|
11039
|
+
DTOExportJobsListFilter,
|
|
11027
11040
|
DTOExporter,
|
|
11028
11041
|
DTOExporterCreateInput,
|
|
11029
11042
|
DTOExporterCreateOutput,
|