@supernova-studio/client 0.48.15 → 0.48.16
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 +37 -1
- package/dist/index.d.ts +37 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- 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/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({
|
|
@@ -11024,6 +11030,7 @@ export {
|
|
|
11024
11030
|
DTOExportJobDesignSystemVersionPreview,
|
|
11025
11031
|
DTOExportJobDestinations,
|
|
11026
11032
|
DTOExportJobResponse,
|
|
11033
|
+
DTOExportJobsListFilter,
|
|
11027
11034
|
DTOExporter,
|
|
11028
11035
|
DTOExporterCreateInput,
|
|
11029
11036
|
DTOExporterCreateOutput,
|