@supernova-studio/client 1.0.3 → 1.0.4
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 +123 -3
- package/dist/index.d.ts +123 -3
- package/dist/index.js +18 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5245,7 +5245,9 @@ function pipelineToDto(pipeline) {
|
|
|
5245
5245
|
destinationS3: pipeline.destinationS3,
|
|
5246
5246
|
exporterPropertyValues: pipeline.exporterPropertyValues,
|
|
5247
5247
|
webhookUrl: pipeline.webhookUrl,
|
|
5248
|
-
latestJobs: []
|
|
5248
|
+
latestJobs: [],
|
|
5249
|
+
// TODO Brady: replace with an actual value
|
|
5250
|
+
isExporterDeprecated: false
|
|
5249
5251
|
};
|
|
5250
5252
|
}
|
|
5251
5253
|
|
|
@@ -6587,7 +6589,10 @@ var DTOExporter = z230.object({
|
|
|
6587
6589
|
source: DTOExporterSource,
|
|
6588
6590
|
gitUrl: nullishToOptional(z230.string()),
|
|
6589
6591
|
gitBranch: nullishToOptional(z230.string()),
|
|
6590
|
-
gitDirectory: nullishToOptional(z230.string())
|
|
6592
|
+
gitDirectory: nullishToOptional(z230.string()),
|
|
6593
|
+
isDeprecated: z230.boolean(),
|
|
6594
|
+
deprecationNote: z230.string().optional(),
|
|
6595
|
+
replacementExporterId: z230.string().optional()
|
|
6591
6596
|
});
|
|
6592
6597
|
var DTOExporterMembership = z230.object({
|
|
6593
6598
|
workspaceId: z230.string(),
|
|
@@ -6610,6 +6615,11 @@ var DTOExporterCreateInput = z230.object({
|
|
|
6610
6615
|
var DTOExporterUpdateInput = z230.object({
|
|
6611
6616
|
url: z230.string().optional()
|
|
6612
6617
|
});
|
|
6618
|
+
var DTOExporterDeprecationInput = z230.object({
|
|
6619
|
+
isDeprecated: z230.boolean(),
|
|
6620
|
+
deprecationNote: z230.string().optional(),
|
|
6621
|
+
replacementExporterId: z230.string().optional()
|
|
6622
|
+
});
|
|
6613
6623
|
|
|
6614
6624
|
// src/api/dto/export/filter.ts
|
|
6615
6625
|
var DTOExportJobsListFilter = ExportJobFindByFilter;
|
|
@@ -6703,7 +6713,8 @@ var DTOPipeline = z232.object({
|
|
|
6703
6713
|
themePersistentIds: z232.string().array().optional(),
|
|
6704
6714
|
exporterPropertyValues: DTOExporterPropertyValueMap.optional(),
|
|
6705
6715
|
...ExportDestinationsMap.shape,
|
|
6706
|
-
latestJobs: DTOExportJob.array()
|
|
6716
|
+
latestJobs: DTOExportJob.array(),
|
|
6717
|
+
isExporterDeprecated: z232.boolean()
|
|
6707
6718
|
});
|
|
6708
6719
|
var DTOPipelineListResponse = z232.object({
|
|
6709
6720
|
pipelines: DTOPipeline.array()
|
|
@@ -14141,6 +14152,7 @@ export {
|
|
|
14141
14152
|
DTOExportJobsListFilter,
|
|
14142
14153
|
DTOExporter,
|
|
14143
14154
|
DTOExporterCreateInput,
|
|
14155
|
+
DTOExporterDeprecationInput,
|
|
14144
14156
|
DTOExporterGitProviderEnum,
|
|
14145
14157
|
DTOExporterListQuery,
|
|
14146
14158
|
DTOExporterListResponse,
|
|
@@ -14302,6 +14314,7 @@ export {
|
|
|
14302
14314
|
ImportJobsEndpoint,
|
|
14303
14315
|
ListTreeBuilder,
|
|
14304
14316
|
LiveblocksEndpoint,
|
|
14317
|
+
LocalDocsElementActionExecutor,
|
|
14305
14318
|
NpmRegistryInput,
|
|
14306
14319
|
ObjectMeta2 as ObjectMeta,
|
|
14307
14320
|
OverridesEndpoint,
|
|
@@ -14333,6 +14346,7 @@ export {
|
|
|
14333
14346
|
WorkspaceInvitationsEndpoint,
|
|
14334
14347
|
WorkspaceMembersEndpoint,
|
|
14335
14348
|
WorkspacesEndpoint,
|
|
14349
|
+
applyActionsLocally,
|
|
14336
14350
|
applyPrivacyConfigurationToNestedItems,
|
|
14337
14351
|
blockToProsemirrorNode,
|
|
14338
14352
|
buildDocPagePublishPaths,
|