@supernova-studio/client 0.46.7 → 0.46.8

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({
@@ -2540,17 +2643,38 @@ var VersionCreationJob = _zod.z.object({
2540
2643
  status: VersionCreationJobStatus,
2541
2644
  errorMessage: nullishToOptional(_zod.z.string())
2542
2645
  });
2543
- var ExporterDestinationSnDocs = _zod.z.object({
2646
+ var ExportJobDocumentationContext = _zod.z.object({
2647
+ isSingleVersionDocs: _zod.z.boolean(),
2648
+ versionSlug: _zod.z.string(),
2649
+ environment: PublishedDocEnvironment
2650
+ });
2651
+ var ExportJobContext = _zod.z.object({
2652
+ apiUrl: _zod.z.string(),
2653
+ accessToken: _zod.z.string(),
2654
+ designSystemId: _zod.z.string(),
2655
+ designSystemVersionId: _zod.z.string(),
2656
+ brandId: _zod.z.string().optional(),
2657
+ exporterPackageUrl: _zod.z.string(),
2658
+ exporterPropertyValues: ExporterPropertyValue.array(),
2659
+ documentation: ExportJobDocumentationContext.optional()
2660
+ });
2661
+ var ExporterFunctionPayload = _zod.z.object({
2662
+ exportJobId: _zod.z.string(),
2663
+ exportContextId: _zod.z.string(),
2664
+ designSystemId: _zod.z.string()
2665
+ });
2666
+ var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
2667
+ var BITBUCKET_MAX_LENGTH = 64;
2668
+ var ExporterDestinationDocs = _zod.z.object({
2544
2669
  environment: PublishedDocEnvironment
2545
2670
  });
2546
2671
  var ExporterDestinationS3 = _zod.z.object({});
2547
2672
  var ExporterDestinationGithub = _zod.z.object({
2548
2673
  connectionId: _zod.z.string(),
2549
- url: _zod.z.string(),
2550
2674
  branch: _zod.z.string(),
2551
- relativePath: _zod.z.string(),
2552
- // +
2553
- userId: _zod.z.coerce.string()
2675
+ relativePath: _zod.z.string()
2676
+ // // +
2677
+ // userId: z.coerce.string(),
2554
2678
  });
2555
2679
  var ExporterDestinationAzure = _zod.z.object({
2556
2680
  connectionId: _zod.z.string(),
@@ -2558,89 +2682,89 @@ var ExporterDestinationAzure = _zod.z.object({
2558
2682
  projectId: _zod.z.string(),
2559
2683
  repositoryId: _zod.z.string(),
2560
2684
  branch: _zod.z.string(),
2561
- relativePath: _zod.z.string(),
2562
- // +
2563
- userId: _zod.z.coerce.string(),
2564
- url: _zod.z.string()
2685
+ relativePath: _zod.z.string()
2686
+ // // +
2687
+ // userId: z.coerce.string(),
2688
+ // url: z.string(),
2565
2689
  });
2566
2690
  var ExporterDestinationGitlab = _zod.z.object({
2567
2691
  connectionId: _zod.z.string(),
2568
2692
  projectId: _zod.z.string(),
2569
2693
  branch: _zod.z.string(),
2570
- relativePath: _zod.z.string(),
2571
- // +
2572
- userId: _zod.z.coerce.string(),
2573
- url: _zod.z.string()
2694
+ relativePath: _zod.z.string()
2695
+ // // +
2696
+ // userId: z.coerce.string(),
2697
+ // url: z.string(),
2574
2698
  });
2575
- var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
2576
- var BITBUCKET_MAX_LENGTH = 64;
2577
2699
  var ExporterDestinationBitbucket = _zod.z.object({
2578
2700
  connectionId: _zod.z.string(),
2579
2701
  workspaceSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2580
2702
  projectKey: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2581
2703
  repoSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2582
2704
  branch: _zod.z.string(),
2583
- relativePath: _zod.z.string(),
2584
- // +
2585
- userId: _zod.z.coerce.string(),
2586
- url: _zod.z.string()
2705
+ relativePath: _zod.z.string()
2706
+ // // +
2707
+ // userId: z.string(),
2708
+ // url: z.string(),
2587
2709
  });
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({
2710
+ var ExportDestinationsMap = _zod.z.object({
2711
+ webhookUrl: _zod.z.string().optional(),
2712
+ destinationSnDocs: ExporterDestinationDocs.optional(),
2713
+ destinationS3: ExporterDestinationS3.optional(),
2714
+ destinationGithub: ExporterDestinationGithub.optional(),
2715
+ destinationAzure: ExporterDestinationAzure.optional(),
2716
+ destinationGitlab: ExporterDestinationGitlab.optional(),
2717
+ destinationBitbucket: ExporterDestinationBitbucket.optional()
2718
+ });
2719
+ var ExportJobDestinationType = _zod.z.enum(["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]);
2720
+ var ExportJobStatus = _zod.z.enum(["InProgress", "Success", "Failed", "Timeout"]);
2721
+ var ExportJobLogEntryType = _zod.z.enum(["success", "info", "warning", "error", "user"]);
2722
+ var ExportJobLogEntry = _zod.z.object({
2592
2723
  id: _zod.z.string().optional(),
2593
2724
  time: _zod.z.coerce.date(),
2594
- type: ExporterJobLogEntryType,
2725
+ type: ExportJobLogEntryType,
2595
2726
  message: _zod.z.string()
2596
2727
  });
2597
- var ExporterJobResultPullRequestDestination = _zod.z.object({
2728
+ var ExportJobPullRequestDestinationResult = _zod.z.object({
2598
2729
  pullRequestUrl: _zod.z.string()
2599
2730
  });
2600
- var ExporterJobResultS3Destination = _zod.z.object({
2731
+ var ExportJobS3DestinationResult = _zod.z.object({
2601
2732
  bucket: _zod.z.string(),
2602
2733
  urlPrefix: _zod.z.string().optional(),
2603
2734
  path: _zod.z.string(),
2604
2735
  files: _zod.z.array(_zod.z.string())
2605
2736
  });
2606
- var ExporterJobResultDocsDestination = _zod.z.object({
2737
+ var ExportJobDocsDestinationResult = _zod.z.object({
2607
2738
  url: _zod.z.string()
2608
2739
  });
2609
- var ExporterJobResult = _zod.z.object({
2740
+ var ExportJobResult = _zod.z.object({
2610
2741
  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(),
2742
+ s3: ExportJobS3DestinationResult.optional(),
2743
+ github: ExportJobPullRequestDestinationResult.optional(),
2744
+ azure: ExportJobPullRequestDestinationResult.optional(),
2745
+ gitlab: ExportJobPullRequestDestinationResult.optional(),
2746
+ bitbucket: ExportJobPullRequestDestinationResult.optional(),
2747
+ sndocs: ExportJobDocsDestinationResult.optional()
2748
+ });
2749
+ var ExportJob = _zod.z.object({
2750
+ id: _zod.z.string(),
2751
+ createdAt: _zod.z.date(),
2752
+ finishedAt: _zod.z.date().optional(),
2753
+ designSystemId: _zod.z.string(),
2754
+ designSystemVersionId: _zod.z.string(),
2755
+ workspaceId: _zod.z.string(),
2756
+ scheduleId: _zod.z.string().nullish(),
2757
+ exporterId: _zod.z.string(),
2758
+ brandId: _zod.z.string().optional(),
2759
+ themeId: _zod.z.string().optional(),
2630
2760
  estimatedExecutionTime: _zod.z.number().optional(),
2631
- status: ExporterJobStatus,
2632
- result: ExporterJobResult.optional(),
2761
+ status: ExportJobStatus,
2762
+ result: ExportJobResult.optional(),
2633
2763
  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()
2764
+ // Destinations
2765
+ ...ExportDestinationsMap.shape
2642
2766
  });
2643
- var ExporterJobFindByFilter = ExporterJob.pick({
2767
+ var ExportJobFindByFilter = ExportJob.pick({
2644
2768
  exporterId: true,
2645
2769
  designSystemVersionId: true,
2646
2770
  destinations: true,
@@ -2651,28 +2775,22 @@ var ExporterJobFindByFilter = ExporterJob.pick({
2651
2775
  themeId: true,
2652
2776
  brandId: true
2653
2777
  }).extend({
2654
- destinations: _zod.z.array(ExporterJobDestination),
2778
+ destinations: _zod.z.array(ExportJobDestinationType),
2655
2779
  docsEnvironment: PublishedDocEnvironment
2656
2780
  }).partial();
2657
- var ExporterScheduleEventType = _zod.z.enum(["InProgress", "Success", "Failed", "Timeout"]);
2781
+ var ExporterScheduleEventType = _zod.z.enum(["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]);
2658
2782
  var ExporterSchedule = _zod.z.object({
2659
- id: _zod.z.coerce.string(),
2660
- name: _zod.z.coerce.string(),
2783
+ id: _zod.z.string(),
2784
+ name: _zod.z.string(),
2661
2785
  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()
2786
+ isEnabled: _zod.z.boolean(),
2787
+ workspaceId: _zod.z.string(),
2788
+ designSystemId: _zod.z.string(),
2789
+ exporterId: _zod.z.string(),
2790
+ brandId: _zod.z.string().optional(),
2791
+ themeId: _zod.z.string().optional(),
2792
+ // Destinations
2793
+ ...ExportDestinationsMap.shape
2676
2794
  });
2677
2795
  var ExporterWorkspaceMembershipRole = _zod.z.enum(["Owner", "OwnerArchived", "User"]);
2678
2796
  var ExporterWorkspaceMembership = _zod.z.object({
@@ -2767,107 +2885,6 @@ var Exporter = _zod.z.object({
2767
2885
  exporterType: nullishToOptional(ExporterType).default("code"),
2768
2886
  storagePath: nullishToOptional(_zod.z.string()).default("")
2769
2887
  });
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
2888
  var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]);
2872
2889
  var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
2873
2890
  var FeatureFlag = _zod.z.object({
@@ -4873,6 +4890,47 @@ var DTOElementsGetOutput = _zod.z.object({
4873
4890
  figmaNodes: _zod.z.array(DTOFigmaNode).optional()
4874
4891
  });
4875
4892
 
4893
+ // src/api/dto/export/job.ts
4894
+
4895
+ var DTOExportJobCreatedBy = _zod.z.object({
4896
+ userId: _zod.z.string(),
4897
+ userName: _zod.z.string()
4898
+ });
4899
+ var DTOExportJobDesignSystemPreview = _zod.z.object({
4900
+ id: _zod.z.string(),
4901
+ meta: ObjectMeta
4902
+ });
4903
+ var DTOExportJobDesignSystemVersionPreview = _zod.z.object({
4904
+ id: _zod.z.string(),
4905
+ meta: ObjectMeta,
4906
+ version: _zod.z.string(),
4907
+ isReadonly: _zod.z.boolean()
4908
+ });
4909
+ var DTOExportJobDestinations = _zod.z.object({
4910
+ s3: ExporterDestinationS3.optional(),
4911
+ azure: ExporterDestinationAzure.optional(),
4912
+ bitbucket: ExporterDestinationBitbucket.optional(),
4913
+ github: ExporterDestinationGithub.optional(),
4914
+ gitlab: ExporterDestinationGitlab.optional(),
4915
+ documentation: ExporterDestinationDocs.optional(),
4916
+ webhookUrl: _zod.z.string().optional()
4917
+ });
4918
+ var DTOExportJob = _zod.z.object({
4919
+ id: _zod.z.string(),
4920
+ createdAt: _zod.z.date(),
4921
+ finishedAt: _zod.z.date().optional(),
4922
+ index: _zod.z.number().optional(),
4923
+ status: ExportJobStatus,
4924
+ estimatedExecutionTime: _zod.z.number().optional(),
4925
+ createdBy: DTOExportJobCreatedBy,
4926
+ designSystem: DTOExportJobDesignSystemPreview,
4927
+ designSystemVersion: DTOExportJobDesignSystemVersionPreview,
4928
+ destinations: DTOExportJobDestinations,
4929
+ exporterId: _zod.z.string(),
4930
+ scheduleId: _zod.z.string(),
4931
+ result: ExportJobResult.optional()
4932
+ });
4933
+
4876
4934
  // src/api/dto/liveblocks/auth-response.ts
4877
4935
 
4878
4936
  var DTOLiveblocksAuthResponse = _zod.z.object({
@@ -8837,5 +8895,10 @@ function mapByUnique2(items, keyFn) {
8837
8895
 
8838
8896
 
8839
8897
 
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;
8898
+
8899
+
8900
+
8901
+
8902
+
8903
+ 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
8904
  //# sourceMappingURL=index.js.map