@supernova-studio/client 0.46.7 → 0.46.9

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.js CHANGED
@@ -116,7 +116,6 @@ var _zod = require('zod');
116
116
 
117
117
 
118
118
 
119
- var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
120
119
 
121
120
 
122
121
 
@@ -126,6 +125,9 @@ var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr)
126
125
 
127
126
 
128
127
 
128
+ var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
129
+
130
+
129
131
 
130
132
 
131
133
 
@@ -361,6 +363,116 @@ var Subscription = _zod.z.object({
361
363
  billingType: BillingTypeSchema.optional(),
362
364
  daysUntilDue: _zod.z.number().optional()
363
365
  });
366
+ var Entity = _zod.z.object({
367
+ id: _zod.z.string(),
368
+ createdAt: _zod.z.coerce.date(),
369
+ updatedAt: _zod.z.coerce.date()
370
+ });
371
+ var ObjectMeta = _zod.z.object({
372
+ name: _zod.z.string(),
373
+ description: _zod.z.string().optional()
374
+ });
375
+ var CustomDomain = _zod.z.object({
376
+ id: _zod.z.string(),
377
+ designSystemId: _zod.z.string(),
378
+ state: _zod.z.string(),
379
+ supernovaDomain: _zod.z.string(),
380
+ customerDomain: _zod.z.string().nullish(),
381
+ error: _zod.z.string().nullish(),
382
+ errorCode: _zod.z.string().nullish()
383
+ });
384
+ var IntegrationAuthType = _zod.z.union([_zod.z.literal("OAuth2"), _zod.z.literal("PAT")]);
385
+ var ExternalServiceType = _zod.z.union([
386
+ _zod.z.literal("figma"),
387
+ _zod.z.literal("github"),
388
+ _zod.z.literal("azure"),
389
+ _zod.z.literal("gitlab"),
390
+ _zod.z.literal("bitbucket")
391
+ ]);
392
+ var IntegrationUserInfo = _zod.z.object({
393
+ id: _zod.z.string(),
394
+ handle: _zod.z.string().optional(),
395
+ avatarUrl: _zod.z.string().optional(),
396
+ email: _zod.z.string().optional(),
397
+ authType: IntegrationAuthType.optional(),
398
+ customUrl: _zod.z.string().optional()
399
+ });
400
+ var UserLinkedIntegrations = _zod.z.object({
401
+ figma: IntegrationUserInfo.optional(),
402
+ github: IntegrationUserInfo.array().optional(),
403
+ azure: IntegrationUserInfo.array().optional(),
404
+ gitlab: IntegrationUserInfo.array().optional(),
405
+ bitbucket: IntegrationUserInfo.array().optional()
406
+ });
407
+ var CreateUserInput = _zod.z.object({
408
+ email: _zod.z.string(),
409
+ name: _zod.z.string(),
410
+ username: _zod.z.string()
411
+ });
412
+ var UserIdentity = _zod.z.object({
413
+ id: _zod.z.string(),
414
+ userId: _zod.z.string()
415
+ });
416
+ var UserMinified = _zod.z.object({
417
+ id: _zod.z.string(),
418
+ name: _zod.z.string(),
419
+ email: _zod.z.string(),
420
+ avatar: _zod.z.string().optional()
421
+ });
422
+ var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
423
+ var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
424
+ var UserOnboarding = _zod.z.object({
425
+ companyName: _zod.z.string().optional(),
426
+ numberOfPeopleInOrg: _zod.z.string().optional(),
427
+ numberOfPeopleInDesignTeam: _zod.z.string().optional(),
428
+ department: UserOnboardingDepartment.optional(),
429
+ jobTitle: _zod.z.string().optional(),
430
+ phase: _zod.z.string().optional(),
431
+ jobLevel: UserOnboardingJobLevel.optional()
432
+ });
433
+ var UserProfile = _zod.z.object({
434
+ name: _zod.z.string(),
435
+ avatar: _zod.z.string().optional(),
436
+ nickname: _zod.z.string().optional(),
437
+ onboarding: UserOnboarding.optional()
438
+ });
439
+ var UserTest = _zod.z.object({
440
+ id: _zod.z.string(),
441
+ email: _zod.z.string()
442
+ });
443
+ var User = _zod.z.object({
444
+ id: _zod.z.string(),
445
+ email: _zod.z.string(),
446
+ emailVerified: _zod.z.boolean(),
447
+ createdAt: _zod.z.coerce.date(),
448
+ trialExpiresAt: _zod.z.coerce.date().optional(),
449
+ profile: UserProfile,
450
+ linkedIntegrations: UserLinkedIntegrations.optional(),
451
+ loggedOutAt: _zod.z.coerce.date().optional(),
452
+ isProtected: _zod.z.boolean()
453
+ });
454
+ var NpmProxyToken = _zod.z.object({
455
+ access: _zod.z.string(),
456
+ expiresAt: _zod.z.number()
457
+ });
458
+ var SessionData = _zod.z.object({
459
+ returnToUrl: _zod.z.string().optional(),
460
+ npmProxyToken: NpmProxyToken.optional()
461
+ });
462
+ var Session = _zod.z.object({
463
+ id: _zod.z.string(),
464
+ expiresAt: _zod.z.coerce.date(),
465
+ userId: _zod.z.string().nullable(),
466
+ data: SessionData
467
+ });
468
+ var AuthTokens = _zod.z.object({
469
+ access: _zod.z.string(),
470
+ refresh: _zod.z.string()
471
+ });
472
+ var UserSession = _zod.z.object({
473
+ session: Session,
474
+ user: User.nullable()
475
+ });
364
476
  var AssetDynamoRecord = _zod.z.object({
365
477
  path: _zod.z.string(),
366
478
  id: _zod.z.string(),
@@ -472,15 +584,6 @@ var DataSourceVersion = _zod.z.object({
472
584
  function zeroNumberByDefault() {
473
585
  return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
474
586
  }
475
- var Entity = _zod.z.object({
476
- id: _zod.z.string(),
477
- createdAt: _zod.z.coerce.date(),
478
- updatedAt: _zod.z.coerce.date()
479
- });
480
- var ObjectMeta = _zod.z.object({
481
- name: _zod.z.string(),
482
- description: _zod.z.string().optional()
483
- });
484
587
  var ImportJobState = _zod.z.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);
485
588
  var ImportJobOperation = _zod.z.enum(["Check", "Import"]);
486
589
  var ImportJob = Entity.extend({
@@ -1686,7 +1789,8 @@ var ThemeOrigin = _zod.z.object({
1686
1789
  });
1687
1790
  var Theme = DesignElementBase.extend(DesignElementBrandedPart.shape).extend({
1688
1791
  origin: ThemeOrigin.optional(),
1689
- overrides: _zod.z.array(ThemeOverride)
1792
+ overrides: _zod.z.array(ThemeOverride),
1793
+ codeName: _zod.z.string()
1690
1794
  });
1691
1795
  var FigmaFileDownloadScope = _zod.z.object({
1692
1796
  styles: _zod.z.boolean(),
@@ -2540,17 +2644,38 @@ var VersionCreationJob = _zod.z.object({
2540
2644
  status: VersionCreationJobStatus,
2541
2645
  errorMessage: nullishToOptional(_zod.z.string())
2542
2646
  });
2543
- var ExporterDestinationSnDocs = _zod.z.object({
2647
+ var ExportJobDocumentationContext = _zod.z.object({
2648
+ isSingleVersionDocs: _zod.z.boolean(),
2649
+ versionSlug: _zod.z.string(),
2650
+ environment: PublishedDocEnvironment
2651
+ });
2652
+ var ExportJobContext = _zod.z.object({
2653
+ apiUrl: _zod.z.string(),
2654
+ accessToken: _zod.z.string(),
2655
+ designSystemId: _zod.z.string(),
2656
+ designSystemVersionId: _zod.z.string(),
2657
+ brandId: _zod.z.string().optional(),
2658
+ exporterPackageUrl: _zod.z.string(),
2659
+ exporterPropertyValues: ExporterPropertyValue.array(),
2660
+ documentation: ExportJobDocumentationContext.optional()
2661
+ });
2662
+ var ExporterFunctionPayload = _zod.z.object({
2663
+ exportJobId: _zod.z.string(),
2664
+ exportContextId: _zod.z.string(),
2665
+ designSystemId: _zod.z.string()
2666
+ });
2667
+ var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
2668
+ var BITBUCKET_MAX_LENGTH = 64;
2669
+ var ExporterDestinationDocs = _zod.z.object({
2544
2670
  environment: PublishedDocEnvironment
2545
2671
  });
2546
2672
  var ExporterDestinationS3 = _zod.z.object({});
2547
2673
  var ExporterDestinationGithub = _zod.z.object({
2548
2674
  connectionId: _zod.z.string(),
2549
- url: _zod.z.string(),
2550
2675
  branch: _zod.z.string(),
2551
- relativePath: _zod.z.string(),
2552
- // +
2553
- userId: _zod.z.coerce.string()
2676
+ relativePath: _zod.z.string()
2677
+ // // +
2678
+ // userId: z.coerce.string(),
2554
2679
  });
2555
2680
  var ExporterDestinationAzure = _zod.z.object({
2556
2681
  connectionId: _zod.z.string(),
@@ -2558,89 +2683,89 @@ var ExporterDestinationAzure = _zod.z.object({
2558
2683
  projectId: _zod.z.string(),
2559
2684
  repositoryId: _zod.z.string(),
2560
2685
  branch: _zod.z.string(),
2561
- relativePath: _zod.z.string(),
2562
- // +
2563
- userId: _zod.z.coerce.string(),
2564
- url: _zod.z.string()
2686
+ relativePath: _zod.z.string()
2687
+ // // +
2688
+ // userId: z.coerce.string(),
2689
+ // url: z.string(),
2565
2690
  });
2566
2691
  var ExporterDestinationGitlab = _zod.z.object({
2567
2692
  connectionId: _zod.z.string(),
2568
2693
  projectId: _zod.z.string(),
2569
2694
  branch: _zod.z.string(),
2570
- relativePath: _zod.z.string(),
2571
- // +
2572
- userId: _zod.z.coerce.string(),
2573
- url: _zod.z.string()
2695
+ relativePath: _zod.z.string()
2696
+ // // +
2697
+ // userId: z.coerce.string(),
2698
+ // url: z.string(),
2574
2699
  });
2575
- var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
2576
- var BITBUCKET_MAX_LENGTH = 64;
2577
2700
  var ExporterDestinationBitbucket = _zod.z.object({
2578
2701
  connectionId: _zod.z.string(),
2579
2702
  workspaceSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2580
2703
  projectKey: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2581
2704
  repoSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2582
2705
  branch: _zod.z.string(),
2583
- relativePath: _zod.z.string(),
2584
- // +
2585
- userId: _zod.z.coerce.string(),
2586
- url: _zod.z.string()
2706
+ relativePath: _zod.z.string()
2707
+ // // +
2708
+ // userId: z.string(),
2709
+ // url: z.string(),
2587
2710
  });
2588
- var ExporterJobDestination = _zod.z.enum(["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]);
2589
- var ExporterJobStatus = _zod.z.enum(["InProgress", "Success", "Failed", "Timeout"]);
2590
- var ExporterJobLogEntryType = _zod.z.enum(["success", "info", "warning", "error", "user"]);
2591
- var ExporterJobLogEntry = _zod.z.object({
2711
+ var ExportDestinationsMap = _zod.z.object({
2712
+ webhookUrl: _zod.z.string().optional(),
2713
+ destinationSnDocs: ExporterDestinationDocs.optional(),
2714
+ destinationS3: ExporterDestinationS3.optional(),
2715
+ destinationGithub: ExporterDestinationGithub.optional(),
2716
+ destinationAzure: ExporterDestinationAzure.optional(),
2717
+ destinationGitlab: ExporterDestinationGitlab.optional(),
2718
+ destinationBitbucket: ExporterDestinationBitbucket.optional()
2719
+ });
2720
+ var ExportJobDestinationType = _zod.z.enum(["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]);
2721
+ var ExportJobStatus = _zod.z.enum(["InProgress", "Success", "Failed", "Timeout"]);
2722
+ var ExportJobLogEntryType = _zod.z.enum(["success", "info", "warning", "error", "user"]);
2723
+ var ExportJobLogEntry = _zod.z.object({
2592
2724
  id: _zod.z.string().optional(),
2593
2725
  time: _zod.z.coerce.date(),
2594
- type: ExporterJobLogEntryType,
2726
+ type: ExportJobLogEntryType,
2595
2727
  message: _zod.z.string()
2596
2728
  });
2597
- var ExporterJobResultPullRequestDestination = _zod.z.object({
2729
+ var ExportJobPullRequestDestinationResult = _zod.z.object({
2598
2730
  pullRequestUrl: _zod.z.string()
2599
2731
  });
2600
- var ExporterJobResultS3Destination = _zod.z.object({
2732
+ var ExportJobS3DestinationResult = _zod.z.object({
2601
2733
  bucket: _zod.z.string(),
2602
2734
  urlPrefix: _zod.z.string().optional(),
2603
2735
  path: _zod.z.string(),
2604
2736
  files: _zod.z.array(_zod.z.string())
2605
2737
  });
2606
- var ExporterJobResultDocsDestination = _zod.z.object({
2738
+ var ExportJobDocsDestinationResult = _zod.z.object({
2607
2739
  url: _zod.z.string()
2608
2740
  });
2609
- var ExporterJobResult = _zod.z.object({
2741
+ var ExportJobResult = _zod.z.object({
2610
2742
  error: _zod.z.string().optional(),
2611
- logs: _zod.z.array(ExporterJobLogEntry).optional(),
2612
- s3: ExporterJobResultS3Destination.optional(),
2613
- github: ExporterJobResultPullRequestDestination.optional(),
2614
- azure: ExporterJobResultPullRequestDestination.optional(),
2615
- gitlab: ExporterJobResultPullRequestDestination.optional(),
2616
- bitbucket: ExporterJobResultPullRequestDestination.optional(),
2617
- sndocs: ExporterJobResultDocsDestination.optional()
2618
- });
2619
- var ExporterJob = _zod.z.object({
2620
- id: _zod.z.coerce.string(),
2621
- createdAt: _zod.z.coerce.date(),
2622
- finishedAt: _zod.z.coerce.date().optional(),
2623
- designSystemId: _zod.z.coerce.string(),
2624
- designSystemVersionId: _zod.z.coerce.string(),
2625
- workspaceId: _zod.z.coerce.string(),
2626
- scheduleId: _zod.z.coerce.string().nullish(),
2627
- exporterId: _zod.z.coerce.string(),
2628
- brandId: _zod.z.coerce.string().optional(),
2629
- themeId: _zod.z.coerce.string().optional(),
2743
+ s3: ExportJobS3DestinationResult.optional(),
2744
+ github: ExportJobPullRequestDestinationResult.optional(),
2745
+ azure: ExportJobPullRequestDestinationResult.optional(),
2746
+ gitlab: ExportJobPullRequestDestinationResult.optional(),
2747
+ bitbucket: ExportJobPullRequestDestinationResult.optional(),
2748
+ sndocs: ExportJobDocsDestinationResult.optional()
2749
+ });
2750
+ var ExportJob = _zod.z.object({
2751
+ id: _zod.z.string(),
2752
+ createdAt: _zod.z.date(),
2753
+ finishedAt: _zod.z.date().optional(),
2754
+ designSystemId: _zod.z.string(),
2755
+ designSystemVersionId: _zod.z.string(),
2756
+ workspaceId: _zod.z.string(),
2757
+ scheduleId: _zod.z.string().nullish(),
2758
+ exporterId: _zod.z.string(),
2759
+ brandId: _zod.z.string().optional(),
2760
+ themeId: _zod.z.string().optional(),
2630
2761
  estimatedExecutionTime: _zod.z.number().optional(),
2631
- status: ExporterJobStatus,
2632
- result: ExporterJobResult.optional(),
2762
+ status: ExportJobStatus,
2763
+ result: ExportJobResult.optional(),
2633
2764
  createdByUserId: _zod.z.string().optional(),
2634
- // CodegenDestinationsModel
2635
- webhookUrl: _zod.z.string().optional(),
2636
- destinationSnDocs: ExporterDestinationSnDocs.optional(),
2637
- destinationS3: ExporterDestinationS3.optional(),
2638
- destinationGithub: ExporterDestinationGithub.optional(),
2639
- destinationAzure: ExporterDestinationAzure.optional(),
2640
- destinationGitlab: ExporterDestinationGitlab.optional(),
2641
- destinationBitbucket: ExporterDestinationBitbucket.optional()
2765
+ // Destinations
2766
+ ...ExportDestinationsMap.shape
2642
2767
  });
2643
- var ExporterJobFindByFilter = ExporterJob.pick({
2768
+ var ExportJobFindByFilter = ExportJob.pick({
2644
2769
  exporterId: true,
2645
2770
  designSystemVersionId: true,
2646
2771
  destinations: true,
@@ -2651,28 +2776,22 @@ var ExporterJobFindByFilter = ExporterJob.pick({
2651
2776
  themeId: true,
2652
2777
  brandId: true
2653
2778
  }).extend({
2654
- destinations: _zod.z.array(ExporterJobDestination),
2779
+ destinations: _zod.z.array(ExportJobDestinationType),
2655
2780
  docsEnvironment: PublishedDocEnvironment
2656
2781
  }).partial();
2657
- var ExporterScheduleEventType = _zod.z.enum(["InProgress", "Success", "Failed", "Timeout"]);
2782
+ var ExporterScheduleEventType = _zod.z.enum(["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]);
2658
2783
  var ExporterSchedule = _zod.z.object({
2659
- id: _zod.z.coerce.string(),
2660
- name: _zod.z.coerce.string(),
2784
+ id: _zod.z.string(),
2785
+ name: _zod.z.string(),
2661
2786
  eventType: ExporterScheduleEventType,
2662
- isEnabled: _zod.z.coerce.boolean(),
2663
- workspaceId: _zod.z.coerce.string(),
2664
- designSystemId: _zod.z.coerce.string(),
2665
- exporterId: _zod.z.coerce.string(),
2666
- brandId: _zod.z.coerce.string().optional(),
2667
- themeId: _zod.z.coerce.string().optional(),
2668
- // CodegenDestinationsModel
2669
- webhookUrl: _zod.z.string().optional(),
2670
- destinationSnDocs: ExporterDestinationSnDocs.optional(),
2671
- destinationS3: ExporterDestinationS3.optional(),
2672
- destinationGithub: ExporterDestinationGithub.optional(),
2673
- destinationAzure: ExporterDestinationAzure.optional(),
2674
- destinationGitlab: ExporterDestinationGitlab.optional(),
2675
- destinationBitbucket: ExporterDestinationBitbucket.optional()
2787
+ isEnabled: _zod.z.boolean(),
2788
+ workspaceId: _zod.z.string(),
2789
+ designSystemId: _zod.z.string(),
2790
+ exporterId: _zod.z.string(),
2791
+ brandId: _zod.z.string().optional(),
2792
+ themeId: _zod.z.string().optional(),
2793
+ // Destinations
2794
+ ...ExportDestinationsMap.shape
2676
2795
  });
2677
2796
  var ExporterWorkspaceMembershipRole = _zod.z.enum(["Owner", "OwnerArchived", "User"]);
2678
2797
  var ExporterWorkspaceMembership = _zod.z.object({
@@ -2767,107 +2886,6 @@ var Exporter = _zod.z.object({
2767
2886
  exporterType: nullishToOptional(ExporterType).default("code"),
2768
2887
  storagePath: nullishToOptional(_zod.z.string()).default("")
2769
2888
  });
2770
- var CustomDomain = _zod.z.object({
2771
- id: _zod.z.string(),
2772
- designSystemId: _zod.z.string(),
2773
- state: _zod.z.string(),
2774
- supernovaDomain: _zod.z.string(),
2775
- customerDomain: _zod.z.string().nullish(),
2776
- error: _zod.z.string().nullish(),
2777
- errorCode: _zod.z.string().nullish()
2778
- });
2779
- var IntegrationAuthType = _zod.z.union([_zod.z.literal("OAuth2"), _zod.z.literal("PAT")]);
2780
- var ExternalServiceType = _zod.z.union([
2781
- _zod.z.literal("figma"),
2782
- _zod.z.literal("github"),
2783
- _zod.z.literal("azure"),
2784
- _zod.z.literal("gitlab"),
2785
- _zod.z.literal("bitbucket")
2786
- ]);
2787
- var IntegrationUserInfo = _zod.z.object({
2788
- id: _zod.z.string(),
2789
- handle: _zod.z.string().optional(),
2790
- avatarUrl: _zod.z.string().optional(),
2791
- email: _zod.z.string().optional(),
2792
- authType: IntegrationAuthType.optional(),
2793
- customUrl: _zod.z.string().optional()
2794
- });
2795
- var UserLinkedIntegrations = _zod.z.object({
2796
- figma: IntegrationUserInfo.optional(),
2797
- github: IntegrationUserInfo.array().optional(),
2798
- azure: IntegrationUserInfo.array().optional(),
2799
- gitlab: IntegrationUserInfo.array().optional(),
2800
- bitbucket: IntegrationUserInfo.array().optional()
2801
- });
2802
- var CreateUserInput = _zod.z.object({
2803
- email: _zod.z.string(),
2804
- name: _zod.z.string(),
2805
- username: _zod.z.string()
2806
- });
2807
- var UserIdentity = _zod.z.object({
2808
- id: _zod.z.string(),
2809
- userId: _zod.z.string()
2810
- });
2811
- var UserMinified = _zod.z.object({
2812
- id: _zod.z.string(),
2813
- name: _zod.z.string(),
2814
- email: _zod.z.string(),
2815
- avatar: _zod.z.string().optional()
2816
- });
2817
- var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
2818
- var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
2819
- var UserOnboarding = _zod.z.object({
2820
- companyName: _zod.z.string().optional(),
2821
- numberOfPeopleInOrg: _zod.z.string().optional(),
2822
- numberOfPeopleInDesignTeam: _zod.z.string().optional(),
2823
- department: UserOnboardingDepartment.optional(),
2824
- jobTitle: _zod.z.string().optional(),
2825
- phase: _zod.z.string().optional(),
2826
- jobLevel: UserOnboardingJobLevel.optional()
2827
- });
2828
- var UserProfile = _zod.z.object({
2829
- name: _zod.z.string(),
2830
- avatar: _zod.z.string().optional(),
2831
- nickname: _zod.z.string().optional(),
2832
- onboarding: UserOnboarding.optional()
2833
- });
2834
- var UserTest = _zod.z.object({
2835
- id: _zod.z.string(),
2836
- email: _zod.z.string()
2837
- });
2838
- var User = _zod.z.object({
2839
- id: _zod.z.string(),
2840
- email: _zod.z.string(),
2841
- emailVerified: _zod.z.boolean(),
2842
- createdAt: _zod.z.coerce.date(),
2843
- trialExpiresAt: _zod.z.coerce.date().optional(),
2844
- profile: UserProfile,
2845
- linkedIntegrations: UserLinkedIntegrations.optional(),
2846
- loggedOutAt: _zod.z.coerce.date().optional(),
2847
- isProtected: _zod.z.boolean()
2848
- });
2849
- var NpmProxyToken = _zod.z.object({
2850
- access: _zod.z.string(),
2851
- expiresAt: _zod.z.number()
2852
- });
2853
- var SessionData = _zod.z.object({
2854
- returnToUrl: _zod.z.string().optional(),
2855
- npmProxyToken: NpmProxyToken.optional()
2856
- });
2857
- var Session = _zod.z.object({
2858
- id: _zod.z.string(),
2859
- expiresAt: _zod.z.coerce.date(),
2860
- userId: _zod.z.string().nullable(),
2861
- data: SessionData
2862
- });
2863
- var AuthTokens = _zod.z.object({
2864
- access: _zod.z.string(),
2865
- refresh: _zod.z.string()
2866
- });
2867
- var UserSession = _zod.z.object({
2868
- session: Session,
2869
- user: User.nullable()
2870
- });
2871
2889
  var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]);
2872
2890
  var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
2873
2891
  var FeatureFlag = _zod.z.object({
@@ -4873,6 +4891,47 @@ var DTOElementsGetOutput = _zod.z.object({
4873
4891
  figmaNodes: _zod.z.array(DTOFigmaNode).optional()
4874
4892
  });
4875
4893
 
4894
+ // src/api/dto/export/job.ts
4895
+
4896
+ var DTOExportJobCreatedBy = _zod.z.object({
4897
+ userId: _zod.z.string(),
4898
+ userName: _zod.z.string()
4899
+ });
4900
+ var DTOExportJobDesignSystemPreview = _zod.z.object({
4901
+ id: _zod.z.string(),
4902
+ meta: ObjectMeta
4903
+ });
4904
+ var DTOExportJobDesignSystemVersionPreview = _zod.z.object({
4905
+ id: _zod.z.string(),
4906
+ meta: ObjectMeta,
4907
+ version: _zod.z.string(),
4908
+ isReadonly: _zod.z.boolean()
4909
+ });
4910
+ var DTOExportJobDestinations = _zod.z.object({
4911
+ s3: ExporterDestinationS3.optional(),
4912
+ azure: ExporterDestinationAzure.optional(),
4913
+ bitbucket: ExporterDestinationBitbucket.optional(),
4914
+ github: ExporterDestinationGithub.optional(),
4915
+ gitlab: ExporterDestinationGitlab.optional(),
4916
+ documentation: ExporterDestinationDocs.optional(),
4917
+ webhookUrl: _zod.z.string().optional()
4918
+ });
4919
+ var DTOExportJob = _zod.z.object({
4920
+ id: _zod.z.string(),
4921
+ createdAt: _zod.z.date(),
4922
+ finishedAt: _zod.z.date().optional(),
4923
+ index: _zod.z.number().optional(),
4924
+ status: ExportJobStatus,
4925
+ estimatedExecutionTime: _zod.z.number().optional(),
4926
+ createdBy: DTOExportJobCreatedBy,
4927
+ designSystem: DTOExportJobDesignSystemPreview,
4928
+ designSystemVersion: DTOExportJobDesignSystemVersionPreview,
4929
+ destinations: DTOExportJobDestinations,
4930
+ exporterId: _zod.z.string(),
4931
+ scheduleId: _zod.z.string(),
4932
+ result: ExportJobResult.optional()
4933
+ });
4934
+
4876
4935
  // src/api/dto/liveblocks/auth-response.ts
4877
4936
 
4878
4937
  var DTOLiveblocksAuthResponse = _zod.z.object({
@@ -8837,5 +8896,10 @@ function mapByUnique2(items, keyFn) {
8837
8896
 
8838
8897
 
8839
8898
 
8840
- exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
8899
+
8900
+
8901
+
8902
+
8903
+
8904
+ exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
8841
8905
  //# sourceMappingURL=index.js.map