@supernova-studio/client 1.0.0-alpha.8 → 1.0.0-alpha.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.d.mts +6800 -2823
- package/dist/index.d.ts +6800 -2823
- package/dist/index.js +346 -98
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3191 -2943
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -46,6 +46,7 @@ var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
|
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
|
|
49
|
+
|
|
49
50
|
|
|
50
51
|
|
|
51
52
|
var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequireDefault(_slugify);
|
|
@@ -128,6 +129,7 @@ var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequire
|
|
|
128
129
|
|
|
129
130
|
|
|
130
131
|
|
|
132
|
+
|
|
131
133
|
|
|
132
134
|
|
|
133
135
|
var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
|
|
@@ -477,6 +479,63 @@ var PulsarCustomBlock = _zod.z.object({
|
|
|
477
479
|
mode: nullishToOptional(_zod.z.enum(["array", "block"])),
|
|
478
480
|
properties: nullishToOptional(_zod.z.array(PulsarBaseProperty)).transform((v) => _nullishCoalesce(v, () => ( [])))
|
|
479
481
|
});
|
|
482
|
+
var PrimitiveValue = _zod.z.number().or(_zod.z.boolean()).or(_zod.z.string());
|
|
483
|
+
var ArrayValue = _zod.z.array(_zod.z.string());
|
|
484
|
+
var ObjectValue = _zod.z.record(_zod.z.string());
|
|
485
|
+
var ExporterPropertyDefinitionValue = PrimitiveValue.or(ArrayValue).or(ObjectValue);
|
|
486
|
+
var ExporterPropertyType = _zod.z.enum(["Enum", "Boolean", "String", "Number", "Array", "Object"]);
|
|
487
|
+
var PropertyDefinitionBase = _zod.z.object({
|
|
488
|
+
key: _zod.z.string(),
|
|
489
|
+
title: _zod.z.string(),
|
|
490
|
+
description: _zod.z.string(),
|
|
491
|
+
category: _zod.z.string().optional(),
|
|
492
|
+
dependsOn: _zod.z.record(_zod.z.boolean()).optional()
|
|
493
|
+
});
|
|
494
|
+
var ExporterPropertyDefinitionEnumOption = _zod.z.object({
|
|
495
|
+
label: _zod.z.string(),
|
|
496
|
+
description: _zod.z.string()
|
|
497
|
+
});
|
|
498
|
+
var ExporterPropertyDefinitionEnum = PropertyDefinitionBase.extend({
|
|
499
|
+
type: _zod.z.literal(ExporterPropertyType.Enum.Enum),
|
|
500
|
+
options: _zod.z.record(ExporterPropertyDefinitionEnumOption),
|
|
501
|
+
default: _zod.z.string()
|
|
502
|
+
});
|
|
503
|
+
var ExporterPropertyDefinitionBoolean = PropertyDefinitionBase.extend({
|
|
504
|
+
type: _zod.z.literal(ExporterPropertyType.Enum.Boolean),
|
|
505
|
+
default: _zod.z.boolean()
|
|
506
|
+
});
|
|
507
|
+
var ExporterPropertyDefinitionString = PropertyDefinitionBase.extend({
|
|
508
|
+
type: _zod.z.literal(ExporterPropertyType.Enum.String),
|
|
509
|
+
default: _zod.z.string()
|
|
510
|
+
});
|
|
511
|
+
var ExporterPropertyDefinitionNumber = PropertyDefinitionBase.extend({
|
|
512
|
+
type: _zod.z.literal(ExporterPropertyType.Enum.Number),
|
|
513
|
+
default: _zod.z.number()
|
|
514
|
+
});
|
|
515
|
+
var ExporterPropertyDefinitionArray = PropertyDefinitionBase.extend({
|
|
516
|
+
type: _zod.z.literal(ExporterPropertyType.Enum.Array),
|
|
517
|
+
default: ArrayValue
|
|
518
|
+
});
|
|
519
|
+
var ExporterPropertyDefinitionObject = PropertyDefinitionBase.extend({
|
|
520
|
+
type: _zod.z.literal(ExporterPropertyType.Enum.Object),
|
|
521
|
+
default: ObjectValue,
|
|
522
|
+
allowedKeys: _zod.z.object({
|
|
523
|
+
options: _zod.z.string().array(),
|
|
524
|
+
type: _zod.z.string()
|
|
525
|
+
}).optional(),
|
|
526
|
+
allowedValues: _zod.z.object({
|
|
527
|
+
type: _zod.z.string()
|
|
528
|
+
}).optional()
|
|
529
|
+
});
|
|
530
|
+
var ExporterPropertyDefinition = _zod.z.discriminatedUnion("type", [
|
|
531
|
+
ExporterPropertyDefinitionEnum,
|
|
532
|
+
ExporterPropertyDefinitionBoolean,
|
|
533
|
+
ExporterPropertyDefinitionString,
|
|
534
|
+
ExporterPropertyDefinitionNumber,
|
|
535
|
+
ExporterPropertyDefinitionArray,
|
|
536
|
+
ExporterPropertyDefinitionObject
|
|
537
|
+
]);
|
|
538
|
+
var ExporterPropertyDefinitionValueMap = _zod.z.record(ExporterPropertyDefinitionValue);
|
|
480
539
|
var ExporterType = _zod.z.enum(["code", "documentation"]);
|
|
481
540
|
var ExporterSource = _zod.z.enum(["git", "upload"]);
|
|
482
541
|
var ExporterTag = _zod.z.string();
|
|
@@ -494,6 +553,7 @@ var ExporterPulsarDetails = _zod.z.object({
|
|
|
494
553
|
configurationProperties: nullishToOptional(_zod.z.array(PulsarContributionConfigurationProperty)).default([]),
|
|
495
554
|
customBlocks: nullishToOptional(_zod.z.array(PulsarCustomBlock)).default([]),
|
|
496
555
|
blockVariants: nullishToOptional(_zod.z.record(_zod.z.string(), _zod.z.array(PulsarContributionVariant))).default({}),
|
|
556
|
+
properties: nullishToOptional(ExporterPropertyDefinition.array()),
|
|
497
557
|
usesBrands: nullishToOptional(_zod.z.boolean()).default(false),
|
|
498
558
|
usesThemes: nullishToOptional(_zod.z.boolean()).default(false),
|
|
499
559
|
usesLocale: nullishToOptional(_zod.z.boolean()).default(false)
|
|
@@ -512,7 +572,8 @@ var Exporter = _zod.z.object({
|
|
|
512
572
|
isPrivate: _zod.z.boolean(),
|
|
513
573
|
details: ExporterDetails,
|
|
514
574
|
exporterType: nullishToOptional(ExporterType).default("code"),
|
|
515
|
-
storagePath: nullishToOptional(_zod.z.string()).default("")
|
|
575
|
+
storagePath: nullishToOptional(_zod.z.string()).default(""),
|
|
576
|
+
properties: nullishToOptional(ExporterPropertyDefinition.array())
|
|
516
577
|
});
|
|
517
578
|
var AssetDynamoRecord = _zod.z.object({
|
|
518
579
|
path: _zod.z.string(),
|
|
@@ -2653,23 +2714,33 @@ var FigmaFileStructureElementData = _zod.z.object({
|
|
|
2653
2714
|
assetsInFile: FigmaFileStructureStatistics
|
|
2654
2715
|
})
|
|
2655
2716
|
});
|
|
2717
|
+
var FigmaNodeRenderState = _zod.z.enum(["InProgress", "Success", "Failed"]);
|
|
2656
2718
|
var FigmaNodeRenderFormat = _zod.z.enum(["Png", "Svg"]);
|
|
2657
|
-
var
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
fileId: _zod.z.string().optional(),
|
|
2661
|
-
valid: _zod.z.boolean(),
|
|
2662
|
-
format: FigmaNodeRenderFormat.default("Png"),
|
|
2663
|
-
// Asset data
|
|
2664
|
-
assetId: _zod.z.string().optional(),
|
|
2665
|
-
assetScale: _zod.z.number().optional(),
|
|
2666
|
-
assetWidth: _zod.z.number().optional(),
|
|
2667
|
-
assetHeight: _zod.z.number().optional(),
|
|
2668
|
-
assetUrl: _zod.z.string().optional(),
|
|
2669
|
-
assetOriginKey: _zod.z.string().optional()
|
|
2719
|
+
var FigmaNodeRenderErrorType = _zod.z.enum(["MissingIntegration", "NodeNotFound", "RenderError"]);
|
|
2720
|
+
var FigmaNodeRelinkData = _zod.z.object({
|
|
2721
|
+
fileId: _zod.z.string()
|
|
2670
2722
|
});
|
|
2671
|
-
var
|
|
2672
|
-
|
|
2723
|
+
var FigmaNodeRenderedImage = _zod.z.object({
|
|
2724
|
+
resourceId: _zod.z.string(),
|
|
2725
|
+
format: FigmaNodeRenderFormat,
|
|
2726
|
+
scale: nullishToOptional(_zod.z.number()),
|
|
2727
|
+
width: nullishToOptional(_zod.z.number()),
|
|
2728
|
+
height: nullishToOptional(_zod.z.number()),
|
|
2729
|
+
url: nullishToOptional(_zod.z.string()),
|
|
2730
|
+
originKey: nullishToOptional(_zod.z.string())
|
|
2731
|
+
});
|
|
2732
|
+
var FigmaNodeRenderError = _zod.z.object({
|
|
2733
|
+
type: FigmaNodeRenderErrorType
|
|
2734
|
+
});
|
|
2735
|
+
var FigmaNodeReferenceData = _zod.z.object({
|
|
2736
|
+
sceneNodeId: _zod.z.string(),
|
|
2737
|
+
format: FigmaNodeRenderFormat,
|
|
2738
|
+
scale: nullishToOptional(_zod.z.number()),
|
|
2739
|
+
renderState: FigmaNodeRenderState,
|
|
2740
|
+
renderedImage: FigmaNodeRenderedImage.optional(),
|
|
2741
|
+
renderError: FigmaNodeRenderError.optional(),
|
|
2742
|
+
hasSource: _zod.z.boolean(),
|
|
2743
|
+
relinkData: FigmaNodeRelinkData.optional()
|
|
2673
2744
|
});
|
|
2674
2745
|
var FontFamilyValue = _zod.z.string();
|
|
2675
2746
|
var FontFamilyTokenData = tokenAliasOrValue(FontFamilyValue);
|
|
@@ -3275,7 +3346,8 @@ var FigmaImportBaseContext = _zod.z.object({
|
|
|
3275
3346
|
var FeatureFlagsKeepAliases = _zod.z.object({
|
|
3276
3347
|
isTypographyPropsKeepAliasesEnabled: _zod.z.boolean().default(false),
|
|
3277
3348
|
isGradientPropsKeepAliasesEnabled: _zod.z.boolean().default(false),
|
|
3278
|
-
isShadowPropsKeepAliasesEnabled: _zod.z.boolean().default(false)
|
|
3349
|
+
isShadowPropsKeepAliasesEnabled: _zod.z.boolean().default(false),
|
|
3350
|
+
isNonCompatibleTypeChangesEnabled: _zod.z.boolean().default(false)
|
|
3279
3351
|
});
|
|
3280
3352
|
var FigmaImportContextWithSourcesState = FigmaImportBaseContext.extend({
|
|
3281
3353
|
sourcesWithMissingAccess: _zod.z.array(_zod.z.string()).default([]),
|
|
@@ -3699,6 +3771,11 @@ var ElementGroupSnapshot = DesignElementSnapshotBase.extend({
|
|
|
3699
3771
|
function pickLatestGroupSnapshots(snapshots) {
|
|
3700
3772
|
return pickLatestSnapshots(snapshots, (s) => s.group.id);
|
|
3701
3773
|
}
|
|
3774
|
+
var FigmaNodeRendererPayload = _zod.z.object({
|
|
3775
|
+
designSystemId: _zod.z.string(),
|
|
3776
|
+
versionId: _zod.z.string(),
|
|
3777
|
+
figmaNodePersistentIds: _zod.z.string().array()
|
|
3778
|
+
});
|
|
3702
3779
|
var NpmRegistryAuthType = _zod.z.enum(["Basic", "Bearer", "None", "Custom"]);
|
|
3703
3780
|
var NpmRegistryType = _zod.z.enum(["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]);
|
|
3704
3781
|
var NpmRegistryBasicAuthConfig = _zod.z.object({
|
|
@@ -3867,6 +3944,16 @@ var UserNotificationSettings = _zod.z.object({
|
|
|
3867
3944
|
});
|
|
3868
3945
|
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
3869
3946
|
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
3947
|
+
var UserTheme = _zod.z.object({
|
|
3948
|
+
preset: _zod.z.enum(["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]).optional(),
|
|
3949
|
+
backgroundColor: _zod.z.string().optional(),
|
|
3950
|
+
accentColor: _zod.z.string().optional(),
|
|
3951
|
+
contrast: _zod.z.number().min(16).max(100).optional(),
|
|
3952
|
+
isSecondaryEnabled: _zod.z.boolean().optional(),
|
|
3953
|
+
secondaryBackgroundColor: _zod.z.string().optional(),
|
|
3954
|
+
secondaryContrast: _zod.z.number().min(16).max(100).optional(),
|
|
3955
|
+
isEditorWhite: _zod.z.boolean().optional()
|
|
3956
|
+
});
|
|
3870
3957
|
var UserOnboarding = _zod.z.object({
|
|
3871
3958
|
companyName: _zod.z.string().optional(),
|
|
3872
3959
|
numberOfPeopleInOrg: _zod.z.string().optional(),
|
|
@@ -3885,7 +3972,8 @@ var UserProfile = _zod.z.object({
|
|
|
3885
3972
|
name: _zod.z.string(),
|
|
3886
3973
|
avatar: _zod.z.string().optional(),
|
|
3887
3974
|
nickname: _zod.z.string().optional(),
|
|
3888
|
-
onboarding: UserOnboarding.optional()
|
|
3975
|
+
onboarding: UserOnboarding.optional(),
|
|
3976
|
+
theme: UserTheme.optional()
|
|
3889
3977
|
});
|
|
3890
3978
|
var UserProfileUpdate = UserProfile.partial().omit({
|
|
3891
3979
|
avatar: true
|
|
@@ -4255,6 +4343,7 @@ var Pipeline = _zod.z.object({
|
|
|
4255
4343
|
brandPersistentId: _zod.z.string().optional(),
|
|
4256
4344
|
themePersistentId: _zod.z.string().optional(),
|
|
4257
4345
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
4346
|
+
exporterConfigurationProperties: ExporterPropertyDefinitionValueMap.optional(),
|
|
4258
4347
|
// Destinations
|
|
4259
4348
|
...ExportDestinationsMap.shape
|
|
4260
4349
|
});
|
|
@@ -4285,7 +4374,8 @@ var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
|
4285
4374
|
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
4286
4375
|
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
4287
4376
|
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
4288
|
-
internalSettings: DesignSystemVersionRoomInternalSettings
|
|
4377
|
+
internalSettings: DesignSystemVersionRoomInternalSettings,
|
|
4378
|
+
pageHashes: _zod.z.record(_zod.z.string()).optional()
|
|
4289
4379
|
});
|
|
4290
4380
|
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
4291
4381
|
pages: _zod.z.array(DocumentationPageV2),
|
|
@@ -4563,7 +4653,8 @@ var ExportJobContext = _zod.z.object({
|
|
|
4563
4653
|
});
|
|
4564
4654
|
var ExportJobExporterConfiguration = _zod.z.object({
|
|
4565
4655
|
exporterPackageUrl: _zod.z.string(),
|
|
4566
|
-
exporterPropertyValues: ExporterPropertyValue.array()
|
|
4656
|
+
exporterPropertyValues: ExporterPropertyValue.array(),
|
|
4657
|
+
exporterConfigurationProperties: ExporterPropertyDefinitionValueMap.optional()
|
|
4567
4658
|
});
|
|
4568
4659
|
var ExporterFunctionPayload = _zod.z.object({
|
|
4569
4660
|
exportJobId: _zod.z.string(),
|
|
@@ -4628,6 +4719,7 @@ var ExportJob = _zod.z.object({
|
|
|
4628
4719
|
status: ExportJobStatus,
|
|
4629
4720
|
result: ExportJobResult.optional(),
|
|
4630
4721
|
createdByUserId: _zod.z.string().optional(),
|
|
4722
|
+
exporterConfigurationProperties: ExporterPropertyDefinitionValueMap.optional(),
|
|
4631
4723
|
// Destinations
|
|
4632
4724
|
...ExportDestinationsMap.shape
|
|
4633
4725
|
});
|
|
@@ -4658,7 +4750,8 @@ var FlaggedFeature = _zod.z.enum([
|
|
|
4658
4750
|
"VariablesOrder",
|
|
4659
4751
|
"TypographyPropsKeepAliases",
|
|
4660
4752
|
"GradientPropsKeepAliases",
|
|
4661
|
-
"ShadowPropsKeepAliases"
|
|
4753
|
+
"ShadowPropsKeepAliases",
|
|
4754
|
+
"NonCompatibleTypeChanges"
|
|
4662
4755
|
]);
|
|
4663
4756
|
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
4664
4757
|
var FeatureFlag = _zod.z.object({
|
|
@@ -5127,6 +5220,7 @@ function pipelineToDto(pipeline) {
|
|
|
5127
5220
|
destinationGithub: pipeline.destinationGithub,
|
|
5128
5221
|
destinationGitlab: pipeline.destinationGitlab,
|
|
5129
5222
|
destinationS3: pipeline.destinationS3,
|
|
5223
|
+
exporterConfigurationProperties: pipeline.exporterConfigurationProperties,
|
|
5130
5224
|
webhookUrl: pipeline.webhookUrl,
|
|
5131
5225
|
latestJobs: []
|
|
5132
5226
|
};
|
|
@@ -5735,45 +5829,52 @@ var DTODocumentationPublishTypeQueryParams = _zod.z.object({
|
|
|
5735
5829
|
|
|
5736
5830
|
// src/api/dto/export/exporter-property.ts
|
|
5737
5831
|
|
|
5738
|
-
var
|
|
5739
|
-
var
|
|
5740
|
-
var
|
|
5741
|
-
var DTOExporterPropertyDefinitionValue =
|
|
5832
|
+
var PrimitiveValue2 = _zod.z.number().or(_zod.z.boolean()).or(_zod.z.string());
|
|
5833
|
+
var ArrayValue2 = _zod.z.array(_zod.z.string());
|
|
5834
|
+
var ObjectValue2 = _zod.z.record(_zod.z.string());
|
|
5835
|
+
var DTOExporterPropertyDefinitionValue = PrimitiveValue2.or(ArrayValue2).or(ObjectValue2);
|
|
5742
5836
|
var DTOExporterPropertyType = _zod.z.enum(["Enum", "Boolean", "String", "Number", "Array", "Object"]);
|
|
5743
|
-
var
|
|
5837
|
+
var PropertyDefinitionBase2 = _zod.z.object({
|
|
5744
5838
|
key: _zod.z.string(),
|
|
5745
5839
|
title: _zod.z.string(),
|
|
5840
|
+
description: _zod.z.string(),
|
|
5841
|
+
category: _zod.z.string().optional(),
|
|
5842
|
+
dependsOn: _zod.z.record(_zod.z.boolean()).optional()
|
|
5843
|
+
});
|
|
5844
|
+
var DTOExporterPropertyDefinitionEnumOption = _zod.z.object({
|
|
5845
|
+
label: _zod.z.string(),
|
|
5746
5846
|
description: _zod.z.string()
|
|
5747
5847
|
});
|
|
5748
|
-
var DTOExporterPropertyDefinitionEnum =
|
|
5848
|
+
var DTOExporterPropertyDefinitionEnum = PropertyDefinitionBase2.extend({
|
|
5749
5849
|
type: _zod.z.literal(DTOExporterPropertyType.Enum.Enum),
|
|
5750
|
-
options: _zod.z.
|
|
5850
|
+
options: _zod.z.record(DTOExporterPropertyDefinitionEnumOption),
|
|
5751
5851
|
default: _zod.z.string()
|
|
5752
5852
|
});
|
|
5753
|
-
var DTOExporterPropertyDefinitionBoolean =
|
|
5853
|
+
var DTOExporterPropertyDefinitionBoolean = PropertyDefinitionBase2.extend({
|
|
5754
5854
|
type: _zod.z.literal(DTOExporterPropertyType.Enum.Boolean),
|
|
5755
5855
|
default: _zod.z.boolean()
|
|
5756
5856
|
});
|
|
5757
|
-
var DTOExporterPropertyDefinitionString =
|
|
5857
|
+
var DTOExporterPropertyDefinitionString = PropertyDefinitionBase2.extend({
|
|
5758
5858
|
type: _zod.z.literal(DTOExporterPropertyType.Enum.String),
|
|
5759
5859
|
default: _zod.z.string()
|
|
5760
5860
|
});
|
|
5761
|
-
var DTOExporterPropertyDefinitionNumber =
|
|
5861
|
+
var DTOExporterPropertyDefinitionNumber = PropertyDefinitionBase2.extend({
|
|
5762
5862
|
type: _zod.z.literal(DTOExporterPropertyType.Enum.Number),
|
|
5763
5863
|
default: _zod.z.number()
|
|
5764
5864
|
});
|
|
5765
|
-
var DTOExporterPropertyDefinitionArray =
|
|
5865
|
+
var DTOExporterPropertyDefinitionArray = PropertyDefinitionBase2.extend({
|
|
5766
5866
|
type: _zod.z.literal(DTOExporterPropertyType.Enum.Array),
|
|
5767
|
-
default:
|
|
5867
|
+
default: ArrayValue2
|
|
5768
5868
|
});
|
|
5769
|
-
var DTOExporterPropertyDefinitionObject =
|
|
5869
|
+
var DTOExporterPropertyDefinitionObject = PropertyDefinitionBase2.extend({
|
|
5770
5870
|
type: _zod.z.literal(DTOExporterPropertyType.Enum.Object),
|
|
5771
|
-
default:
|
|
5871
|
+
default: ObjectValue2,
|
|
5772
5872
|
allowedKeys: _zod.z.object({
|
|
5773
|
-
options: _zod.z.string().array()
|
|
5873
|
+
options: _zod.z.string().array(),
|
|
5874
|
+
type: _zod.z.string()
|
|
5774
5875
|
}).optional(),
|
|
5775
5876
|
allowedValues: _zod.z.object({
|
|
5776
|
-
|
|
5877
|
+
type: _zod.z.string()
|
|
5777
5878
|
}).optional()
|
|
5778
5879
|
});
|
|
5779
5880
|
var DTOExporterPropertyDefinition = _zod.z.discriminatedUnion("type", [
|
|
@@ -5799,7 +5900,7 @@ var DTOPipelineCreateBody = _zod.z.object({
|
|
|
5799
5900
|
brandPersistentId: _zod.z.string().optional(),
|
|
5800
5901
|
themePersistentId: _zod.z.string().optional(),
|
|
5801
5902
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
5802
|
-
|
|
5903
|
+
exporterConfigurationProperties: DTOExporterPropertyDefinitionValueMap.optional(),
|
|
5803
5904
|
destination: PipelineDestinationType.optional(),
|
|
5804
5905
|
gitQuery: GitObjectsQuery,
|
|
5805
5906
|
destinations: _zod.z.object({
|
|
@@ -5812,8 +5913,26 @@ var DTOPipelineCreateBody = _zod.z.object({
|
|
|
5812
5913
|
webhookUrl: _zod.z.string().nullish()
|
|
5813
5914
|
})
|
|
5814
5915
|
});
|
|
5815
|
-
var DTOPipelineUpdateBody =
|
|
5816
|
-
|
|
5916
|
+
var DTOPipelineUpdateBody = _zod.z.object({
|
|
5917
|
+
exporterId: _zod.z.string().optional(),
|
|
5918
|
+
name: _zod.z.string().optional(),
|
|
5919
|
+
isEnabled: _zod.z.boolean().optional(),
|
|
5920
|
+
eventType: PipelineEventType.optional(),
|
|
5921
|
+
brandPersistentId: _zod.z.string().optional(),
|
|
5922
|
+
themePersistentId: _zod.z.string().optional(),
|
|
5923
|
+
themePersistentIds: _zod.z.string().array().optional(),
|
|
5924
|
+
exporterConfigurationProperties: DTOExporterPropertyDefinitionValueMap.optional(),
|
|
5925
|
+
destination: PipelineDestinationType.optional(),
|
|
5926
|
+
gitQuery: GitObjectsQuery.optional(),
|
|
5927
|
+
destinations: _zod.z.object({
|
|
5928
|
+
s3: ExporterDestinationS3.nullish(),
|
|
5929
|
+
azure: ExporterDestinationAzure.nullish(),
|
|
5930
|
+
bitbucket: ExporterDestinationBitbucket.nullish(),
|
|
5931
|
+
github: ExporterDestinationGithub.nullish(),
|
|
5932
|
+
gitlab: ExporterDestinationGitlab.nullish(),
|
|
5933
|
+
documentation: ExporterDestinationDocs.nullish(),
|
|
5934
|
+
webhookUrl: _zod.z.string().nullish()
|
|
5935
|
+
}).optional()
|
|
5817
5936
|
});
|
|
5818
5937
|
var DTOPipelineTriggerBody = _zod.z.object({
|
|
5819
5938
|
designSystemVersionId: _zod.z.string()
|
|
@@ -6473,7 +6592,7 @@ var DTOExportJob = _zod.z.object({
|
|
|
6473
6592
|
brandPersistentId: _zod.z.string().optional(),
|
|
6474
6593
|
themePersistentId: _zod.z.string().optional(),
|
|
6475
6594
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
6476
|
-
|
|
6595
|
+
exporterConfigurationProperties: DTOExporterPropertyDefinitionValueMap.optional()
|
|
6477
6596
|
});
|
|
6478
6597
|
var DTOExportJobResponse = _zod.z.object({
|
|
6479
6598
|
job: DTOExportJob
|
|
@@ -6503,7 +6622,7 @@ var DTOPipeline = _zod.z.object({
|
|
|
6503
6622
|
brandPersistentId: _zod.z.string().optional(),
|
|
6504
6623
|
themePersistentId: _zod.z.string().optional(),
|
|
6505
6624
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
6506
|
-
|
|
6625
|
+
exporterConfigurationProperties: DTOExporterPropertyDefinitionValueMap.optional(),
|
|
6507
6626
|
...ExportDestinationsMap.shape,
|
|
6508
6627
|
latestJobs: DTOExportJob.array()
|
|
6509
6628
|
});
|
|
@@ -6903,6 +7022,9 @@ var DTODocumentationStructure = _zod.z.object({
|
|
|
6903
7022
|
items: _zod.z.array(DTODocumentationStructureItem)
|
|
6904
7023
|
});
|
|
6905
7024
|
|
|
7025
|
+
// src/api/dto/elements/figma-nodes/figma-node-v1.ts
|
|
7026
|
+
|
|
7027
|
+
|
|
6906
7028
|
// src/api/dto/elements/figma-nodes/figma-node.ts
|
|
6907
7029
|
|
|
6908
7030
|
var DTOFigmaNodeRenderFormat = FigmaNodeRenderFormat;
|
|
@@ -6911,32 +7033,15 @@ var DTOFigmaNodeOrigin = _zod.z.object({
|
|
|
6911
7033
|
fileId: _zod.z.string().optional(),
|
|
6912
7034
|
parentName: _zod.z.string().optional()
|
|
6913
7035
|
});
|
|
6914
|
-
var DTOFigmaNodeData = _zod.z.object({
|
|
6915
|
-
// Id of the node in the Figma file
|
|
6916
|
-
figmaNodeId: _zod.z.string(),
|
|
6917
|
-
// Validity
|
|
6918
|
-
isValid: _zod.z.boolean(),
|
|
6919
|
-
// Asset data
|
|
6920
|
-
assetId: _zod.z.string(),
|
|
6921
|
-
assetUrl: _zod.z.string(),
|
|
6922
|
-
assetFormat: DTOFigmaNodeRenderFormat,
|
|
6923
|
-
// Asset metadata
|
|
6924
|
-
assetScale: _zod.z.number(),
|
|
6925
|
-
assetWidth: _zod.z.number().optional(),
|
|
6926
|
-
assetHeight: _zod.z.number().optional()
|
|
6927
|
-
});
|
|
6928
|
-
var DTOFigmaNode = FigmaNodeReference.omit({
|
|
6929
|
-
data: true,
|
|
6930
|
-
origin: true
|
|
6931
|
-
}).extend({
|
|
6932
|
-
data: DTOFigmaNodeData,
|
|
6933
|
-
origin: DTOFigmaNodeOrigin
|
|
6934
|
-
});
|
|
6935
7036
|
var DTOFigmaNodeRenderInputBase = _zod.z.object({
|
|
6936
7037
|
/**
|
|
6937
7038
|
* Format in which the node must be rendered, png by default.
|
|
6938
7039
|
*/
|
|
6939
|
-
format: FigmaNodeRenderFormat.default("Png")
|
|
7040
|
+
format: FigmaNodeRenderFormat.default("Png"),
|
|
7041
|
+
/**
|
|
7042
|
+
* Scale to apply to PNG images, can be between 1 and 4. Scale is ignored for other image formats.
|
|
7043
|
+
*/
|
|
7044
|
+
scale: _zod.z.number().optional()
|
|
6940
7045
|
});
|
|
6941
7046
|
var DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderInputBase.extend({
|
|
6942
7047
|
inputType: _zod.z.literal("NodeId").optional().transform((v) => _nullishCoalesce(v, () => ( "NodeId"))),
|
|
@@ -6954,22 +7059,84 @@ var DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderInputBase.extend({
|
|
|
6954
7059
|
/**
|
|
6955
7060
|
* Id of a design system's data source representing a linked Figma file
|
|
6956
7061
|
*/
|
|
6957
|
-
figmaNodeUrl: _zod.z.string()
|
|
7062
|
+
figmaNodeUrl: _zod.z.string(),
|
|
7063
|
+
/**
|
|
7064
|
+
* Brand persistent id to use in case a source has to be created for this render
|
|
7065
|
+
*/
|
|
7066
|
+
brandPersistentId: _zod.z.string()
|
|
7067
|
+
});
|
|
7068
|
+
var DTOFigmaNodeRerenderInput = _zod.z.object({
|
|
7069
|
+
inputType: _zod.z.literal("Rerender"),
|
|
7070
|
+
/**
|
|
7071
|
+
* Persistent ID of an existing Figma node
|
|
7072
|
+
*/
|
|
7073
|
+
figmaNodePersistentId: _zod.z.string()
|
|
6958
7074
|
});
|
|
6959
7075
|
var DTOFigmaNodeRenderInput = _zod.z.discriminatedUnion("inputType", [
|
|
6960
7076
|
DTOFigmaNodeRenderIdInput,
|
|
6961
|
-
DTOFigmaNodeRenderUrlInput
|
|
7077
|
+
DTOFigmaNodeRenderUrlInput,
|
|
7078
|
+
DTOFigmaNodeRerenderInput
|
|
6962
7079
|
]);
|
|
6963
7080
|
|
|
7081
|
+
// src/api/dto/elements/figma-nodes/figma-node-v1.ts
|
|
7082
|
+
var DTOFigmaNodeData = _zod.z.object({
|
|
7083
|
+
// Id of the node in the Figma file
|
|
7084
|
+
figmaNodeId: _zod.z.string(),
|
|
7085
|
+
// Validity
|
|
7086
|
+
isValid: _zod.z.boolean(),
|
|
7087
|
+
// Asset data
|
|
7088
|
+
assetId: _zod.z.string(),
|
|
7089
|
+
assetUrl: _zod.z.string(),
|
|
7090
|
+
assetFormat: DTOFigmaNodeRenderFormat,
|
|
7091
|
+
// Asset metadata
|
|
7092
|
+
assetScale: _zod.z.number(),
|
|
7093
|
+
assetWidth: _zod.z.number().optional(),
|
|
7094
|
+
assetHeight: _zod.z.number().optional()
|
|
7095
|
+
});
|
|
7096
|
+
var DTOFigmaNode = FigmaNodeReference.omit({
|
|
7097
|
+
data: true,
|
|
7098
|
+
origin: true
|
|
7099
|
+
}).extend({
|
|
7100
|
+
data: DTOFigmaNodeData,
|
|
7101
|
+
origin: DTOFigmaNodeOrigin
|
|
7102
|
+
});
|
|
7103
|
+
|
|
7104
|
+
// src/api/dto/elements/figma-nodes/figma-node-v2.ts
|
|
7105
|
+
|
|
7106
|
+
var DTOFigmaNodeDataV2 = _zod.z.object({
|
|
7107
|
+
sceneNodeId: _zod.z.string(),
|
|
7108
|
+
format: FigmaNodeRenderFormat,
|
|
7109
|
+
scale: _zod.z.number().optional(),
|
|
7110
|
+
renderState: FigmaNodeRenderState,
|
|
7111
|
+
renderedImage: FigmaNodeRenderedImage.optional(),
|
|
7112
|
+
renderError: FigmaNodeRenderError.optional(),
|
|
7113
|
+
hasSource: _zod.z.boolean()
|
|
7114
|
+
});
|
|
7115
|
+
var DTOFigmaNodeV2 = FigmaNodeReference.omit({
|
|
7116
|
+
data: true,
|
|
7117
|
+
origin: true
|
|
7118
|
+
}).extend({
|
|
7119
|
+
data: DTOFigmaNodeDataV2,
|
|
7120
|
+
origin: DTOFigmaNodeOrigin
|
|
7121
|
+
});
|
|
7122
|
+
|
|
6964
7123
|
// src/api/dto/elements/figma-nodes/node-actions-v2.ts
|
|
6965
7124
|
|
|
6966
7125
|
var DTOFigmaNodeRenderActionOutput = _zod.z.object({
|
|
6967
7126
|
type: _zod.z.literal("FigmaNodeRender"),
|
|
6968
7127
|
figmaNodes: _zod.z.array(DTOFigmaNode)
|
|
6969
7128
|
});
|
|
7129
|
+
var DTOFigmaNodeRenderAsyncActionOutput = _zod.z.object({
|
|
7130
|
+
type: _zod.z.literal("FigmaNodeRenderAsync"),
|
|
7131
|
+
figmaNodes: _zod.z.array(DTOFigmaNodeV2)
|
|
7132
|
+
});
|
|
6970
7133
|
var DTOFigmaNodeRenderActionInput = _zod.z.object({
|
|
6971
7134
|
type: _zod.z.literal("FigmaNodeRender"),
|
|
6972
|
-
input:
|
|
7135
|
+
input: DTOFigmaNodeRenderIdInput.array()
|
|
7136
|
+
});
|
|
7137
|
+
var DTOFigmaNodeRenderAsyncActionInput = _zod.z.object({
|
|
7138
|
+
type: _zod.z.literal("FigmaNodeRenderAsync"),
|
|
7139
|
+
nodes: DTOFigmaNodeRenderInput.array()
|
|
6973
7140
|
});
|
|
6974
7141
|
|
|
6975
7142
|
// src/api/dto/elements/frame-node-structures/frame-node-structure.ts
|
|
@@ -7069,6 +7236,7 @@ var DTOElementActionOutput = _zod.z.discriminatedUnion("type", [
|
|
|
7069
7236
|
DTODocumentationTabGroupDeleteActionOutputV2,
|
|
7070
7237
|
// Figma frames
|
|
7071
7238
|
DTOFigmaNodeRenderActionOutput,
|
|
7239
|
+
DTOFigmaNodeRenderAsyncActionOutput,
|
|
7072
7240
|
// Restore
|
|
7073
7241
|
DTODocumentationPageRestoreActionOutput,
|
|
7074
7242
|
DTODocumentationGroupRestoreActionOutput,
|
|
@@ -7092,6 +7260,7 @@ var DTOElementActionInput = _zod.z.discriminatedUnion("type", [
|
|
|
7092
7260
|
DTODocumentationTabGroupDeleteActionInputV2,
|
|
7093
7261
|
// Figma frames
|
|
7094
7262
|
DTOFigmaNodeRenderActionInput,
|
|
7263
|
+
DTOFigmaNodeRenderAsyncActionInput,
|
|
7095
7264
|
// Restore
|
|
7096
7265
|
DTODocumentationPageRestoreActionInput,
|
|
7097
7266
|
DTODocumentationGroupRestoreActionInput,
|
|
@@ -7103,11 +7272,15 @@ var DTOElementActionInput = _zod.z.discriminatedUnion("type", [
|
|
|
7103
7272
|
|
|
7104
7273
|
var DTOElementsGetTypeFilter = _zod.z.enum(["FigmaNode"]);
|
|
7105
7274
|
var DTOElementsGetQuerySchema = _zod.z.object({
|
|
7106
|
-
types: _zod.z.string().transform((val) => val.split(",").map((v) => DTOElementsGetTypeFilter.parse(v)))
|
|
7275
|
+
types: _zod.z.string().transform((val) => val.split(",").map((v) => DTOElementsGetTypeFilter.parse(v))),
|
|
7276
|
+
responseVersion: _zod.z.coerce.number().default(1)
|
|
7107
7277
|
});
|
|
7108
7278
|
var DTOElementsGetOutput = _zod.z.object({
|
|
7109
7279
|
figmaNodes: _zod.z.array(DTOFigmaNode).optional()
|
|
7110
7280
|
});
|
|
7281
|
+
var DTOElementsGetOutputV2 = _zod.z.object({
|
|
7282
|
+
figmaNodes: _zod.z.array(DTOFigmaNodeV2).optional()
|
|
7283
|
+
});
|
|
7111
7284
|
|
|
7112
7285
|
// src/api/dto/figma-components/assets/download.ts
|
|
7113
7286
|
|
|
@@ -7179,23 +7352,32 @@ var DTOThemeCreatePayload = _zod.z.object({
|
|
|
7179
7352
|
|
|
7180
7353
|
// src/utils/figma.ts
|
|
7181
7354
|
var figmaFileIdRegex = /^[0-9a-zA-Z]{22,128}$/;
|
|
7182
|
-
var nodeIdRegex =
|
|
7355
|
+
var nodeIdRegex = /^\d+-\d+$/;
|
|
7183
7356
|
var nodeTypeRegex = /^[0-9a-zA-Z]^/;
|
|
7357
|
+
var ParsedFigmaFileURLError = /* @__PURE__ */ ((ParsedFigmaFileURLError2) => {
|
|
7358
|
+
ParsedFigmaFileURLError2["InvalidUrl"] = "InvalidUrl";
|
|
7359
|
+
ParsedFigmaFileURLError2["InvalidFigmaFileId"] = "InvalidFigmaFileId";
|
|
7360
|
+
return ParsedFigmaFileURLError2;
|
|
7361
|
+
})(ParsedFigmaFileURLError || {});
|
|
7184
7362
|
var FigmaUtils = {
|
|
7185
7363
|
tryParseFigmaFileURL(urlString) {
|
|
7186
|
-
if (!URL.canParse(urlString))
|
|
7187
|
-
return
|
|
7364
|
+
if (!URL.canParse(urlString)) {
|
|
7365
|
+
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
7366
|
+
}
|
|
7188
7367
|
const url = new URL(urlString);
|
|
7189
|
-
if (!url.hostname.endsWith("figma.com"))
|
|
7190
|
-
return
|
|
7368
|
+
if (!url.hostname.endsWith("figma.com")) {
|
|
7369
|
+
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
7370
|
+
}
|
|
7191
7371
|
const pathSegments = url.pathname.split("/");
|
|
7192
|
-
if (pathSegments[
|
|
7193
|
-
return
|
|
7194
|
-
|
|
7195
|
-
|
|
7196
|
-
|
|
7372
|
+
if (pathSegments[1] !== "design" && pathSegments[1] !== "file") {
|
|
7373
|
+
return { status: "Error", error: "InvalidUrl" /* InvalidUrl */ };
|
|
7374
|
+
}
|
|
7375
|
+
const fileId = pathSegments[2];
|
|
7376
|
+
if (!fileId || !fileId.match(figmaFileIdRegex)) {
|
|
7377
|
+
return { status: "Error", error: "InvalidFigmaFileId" /* InvalidFigmaFileId */ };
|
|
7378
|
+
}
|
|
7197
7379
|
let fileName = null;
|
|
7198
|
-
const rawFileName = pathSegments[
|
|
7380
|
+
const rawFileName = pathSegments[3];
|
|
7199
7381
|
if (rawFileName) {
|
|
7200
7382
|
fileName = rawFileName.replaceAll("-", " ");
|
|
7201
7383
|
}
|
|
@@ -7209,7 +7391,7 @@ var FigmaUtils = {
|
|
|
7209
7391
|
if (nodeTypeRaw && nodeTypeRaw.match(nodeTypeRegex)) {
|
|
7210
7392
|
nodeType = nodeTypeRaw;
|
|
7211
7393
|
}
|
|
7212
|
-
return { fileId, fileName, nodeId, nodeType };
|
|
7394
|
+
return { status: "Success", fileId, fileName, nodeId, nodeType };
|
|
7213
7395
|
}
|
|
7214
7396
|
};
|
|
7215
7397
|
|
|
@@ -7339,6 +7521,12 @@ var PipelinesEndpoint = class {
|
|
|
7339
7521
|
method: "POST"
|
|
7340
7522
|
});
|
|
7341
7523
|
}
|
|
7524
|
+
update(designSystemId, pipelineId, payload) {
|
|
7525
|
+
return this.requestExecutor.json(`/design-systems/${designSystemId}/pipelines/${pipelineId}`, DTOPipelineResponse, {
|
|
7526
|
+
body: payload,
|
|
7527
|
+
method: "PUT"
|
|
7528
|
+
});
|
|
7529
|
+
}
|
|
7342
7530
|
trigger(workspaceId, pipelineId, payload) {
|
|
7343
7531
|
return this.requestExecutor.json(
|
|
7344
7532
|
`/codegen/workspaces/${workspaceId}/pipelines/${pipelineId}/trigger`,
|
|
@@ -7479,6 +7667,9 @@ var ElementsActionEndpoint = class {
|
|
|
7479
7667
|
async renderNodes(dsId, vId, input) {
|
|
7480
7668
|
return this.action(dsId, vId, { type: "FigmaNodeRender", input });
|
|
7481
7669
|
}
|
|
7670
|
+
async renderNodesAsync(dsId, vId, nodes) {
|
|
7671
|
+
return this.action(dsId, vId, { type: "FigmaNodeRenderAsync", nodes });
|
|
7672
|
+
}
|
|
7482
7673
|
async action(dsId, vId, input) {
|
|
7483
7674
|
return this.requestExecutor.json(
|
|
7484
7675
|
`/design-systems/${dsId}/versions/${vId}/elements-action`,
|
|
@@ -7496,11 +7687,20 @@ var ElementsEndpoint = class {
|
|
|
7496
7687
|
constructor(requestExecutor) {
|
|
7497
7688
|
this.requestExecutor = requestExecutor;
|
|
7498
7689
|
}
|
|
7499
|
-
|
|
7690
|
+
getElementsV1(dsId, vId, query) {
|
|
7500
7691
|
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/elements`, DTOElementsGetOutput, {
|
|
7501
7692
|
query: serializeQuery(query)
|
|
7502
7693
|
});
|
|
7503
7694
|
}
|
|
7695
|
+
getElementsV2(dsId, vId, query) {
|
|
7696
|
+
const fullQuery = {
|
|
7697
|
+
...query,
|
|
7698
|
+
responseVersion: 2
|
|
7699
|
+
};
|
|
7700
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/elements`, DTOElementsGetOutputV2, {
|
|
7701
|
+
query: serializeQuery(fullQuery)
|
|
7702
|
+
});
|
|
7703
|
+
}
|
|
7504
7704
|
};
|
|
7505
7705
|
|
|
7506
7706
|
// src/api/endpoints/design-system/versions/figma-component-groups.ts
|
|
@@ -11821,49 +12021,87 @@ var blocks = [
|
|
|
11821
12021
|
},
|
|
11822
12022
|
{
|
|
11823
12023
|
id: "io.supernova.block.assets",
|
|
11824
|
-
name: "
|
|
12024
|
+
name: "Vector assets",
|
|
11825
12025
|
description: "Display icons or illustrations",
|
|
11826
12026
|
category: "Assets",
|
|
11827
12027
|
icon: "https://cdn-assets.supernova.io/blocks/icons/v2/assets.svg",
|
|
11828
|
-
searchKeywords: ["icons", "illustrations", "grid", "svg", "logos"],
|
|
12028
|
+
searchKeywords: ["icons", "illustrations", "grid", "svg", "logos", "vectors"],
|
|
11829
12029
|
item: {
|
|
11830
|
-
properties: [
|
|
11831
|
-
|
|
12030
|
+
properties: [
|
|
12031
|
+
{
|
|
12032
|
+
id: "assets",
|
|
12033
|
+
name: "Assets",
|
|
12034
|
+
type: "Asset",
|
|
12035
|
+
options: {}
|
|
12036
|
+
}
|
|
12037
|
+
],
|
|
12038
|
+
appearance: {
|
|
12039
|
+
isBordered: true,
|
|
12040
|
+
hasBackground: false
|
|
12041
|
+
},
|
|
11832
12042
|
variants: [
|
|
11833
12043
|
{
|
|
11834
12044
|
id: "default",
|
|
11835
12045
|
name: "Simple grid",
|
|
11836
12046
|
image: "https://cdn-assets.supernova.io/blocks/variants/assets-simple-grid.svg",
|
|
11837
|
-
description: "A simple grid
|
|
11838
|
-
layout: {
|
|
12047
|
+
description: "A simple grid. Both the title and description are displayed below the preview.",
|
|
12048
|
+
layout: {
|
|
12049
|
+
type: "Column",
|
|
12050
|
+
children: ["assets"],
|
|
12051
|
+
columnAlign: "Start",
|
|
12052
|
+
columnResizing: "Fill",
|
|
12053
|
+
gap: "Medium"
|
|
12054
|
+
},
|
|
11839
12055
|
maxColumns: 8,
|
|
11840
|
-
defaultColumns:
|
|
12056
|
+
defaultColumns: 4,
|
|
11841
12057
|
appearance: {}
|
|
11842
12058
|
},
|
|
11843
12059
|
{
|
|
11844
12060
|
id: "square-grid",
|
|
11845
12061
|
name: "Square grid",
|
|
11846
12062
|
image: "https://cdn-assets.supernova.io/blocks/variants/assets-square-grid.svg",
|
|
11847
|
-
description: "Bordered square grid tailored for displaying icon assets.
|
|
11848
|
-
layout: {
|
|
12063
|
+
description: "Bordered square grid tailored for displaying icon assets.",
|
|
12064
|
+
layout: {
|
|
12065
|
+
type: "Column",
|
|
12066
|
+
children: ["assets"],
|
|
12067
|
+
columnAlign: "Start",
|
|
12068
|
+
columnResizing: "Fill",
|
|
12069
|
+
gap: "Medium"
|
|
12070
|
+
},
|
|
11849
12071
|
maxColumns: 8,
|
|
11850
|
-
defaultColumns:
|
|
11851
|
-
appearance: {
|
|
12072
|
+
defaultColumns: 4,
|
|
12073
|
+
appearance: {
|
|
12074
|
+
isEditorPresentationDifferent: true
|
|
12075
|
+
}
|
|
11852
12076
|
},
|
|
11853
12077
|
{
|
|
11854
12078
|
id: "borderless-grid",
|
|
11855
12079
|
name: "Borderless grid",
|
|
11856
12080
|
image: "https://cdn-assets.supernova.io/blocks/variants/assets-borderless-grid.svg",
|
|
11857
|
-
description: "Borderless grid, perfect for displaying assets of the same height.
|
|
11858
|
-
layout: {
|
|
12081
|
+
description: "Borderless grid, perfect for displaying vector assets of the same height.",
|
|
12082
|
+
layout: {
|
|
12083
|
+
type: "Column",
|
|
12084
|
+
children: ["assets"],
|
|
12085
|
+
columnAlign: "Start",
|
|
12086
|
+
columnResizing: "Fill",
|
|
12087
|
+
gap: "Medium"
|
|
12088
|
+
},
|
|
11859
12089
|
maxColumns: 8,
|
|
11860
|
-
defaultColumns:
|
|
11861
|
-
appearance: {
|
|
12090
|
+
defaultColumns: 4,
|
|
12091
|
+
appearance: {
|
|
12092
|
+
isEditorPresentationDifferent: true
|
|
12093
|
+
}
|
|
11862
12094
|
}
|
|
11863
12095
|
],
|
|
11864
12096
|
defaultVariantKey: "default"
|
|
11865
12097
|
},
|
|
11866
|
-
behavior: {
|
|
12098
|
+
behavior: {
|
|
12099
|
+
dataType: "Asset",
|
|
12100
|
+
entities: {
|
|
12101
|
+
selectionType: "EntityAndGroup",
|
|
12102
|
+
maxSelected: 0
|
|
12103
|
+
}
|
|
12104
|
+
},
|
|
11867
12105
|
editorOptions: {
|
|
11868
12106
|
onboarding: {
|
|
11869
12107
|
helpText: "Display a grid of icons or illustrations.",
|
|
@@ -13706,5 +13944,15 @@ var TransactionQueue = class {
|
|
|
13706
13944
|
|
|
13707
13945
|
|
|
13708
13946
|
|
|
13709
|
-
exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; 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.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; 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.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; 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.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; 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.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionValue = DTOExporterPropertyDefinitionValue; exports.DTOExporterPropertyDefinitionValueMap = DTOExporterPropertyDefinitionValueMap; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; 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.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUser = DTOUser; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdate = DTOUserProfileUpdate; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserSource = DTOUserSource; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepo = DocsStructureRepo; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FormattedCollections = FormattedCollections; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalStorage = LocalStorage; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
13947
|
+
|
|
13948
|
+
|
|
13949
|
+
|
|
13950
|
+
|
|
13951
|
+
|
|
13952
|
+
|
|
13953
|
+
|
|
13954
|
+
|
|
13955
|
+
|
|
13956
|
+
|
|
13957
|
+
exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; 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.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; 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.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; 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.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; 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.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionValue = DTOExporterPropertyDefinitionValue; exports.DTOExporterPropertyDefinitionValueMap = DTOExporterPropertyDefinitionValueMap; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; 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.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUser = DTOUser; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdate = DTOUserProfileUpdate; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserSource = DTOUserSource; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepo = DocsStructureRepo; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FormattedCollections = FormattedCollections; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalStorage = LocalStorage; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
13710
13958
|
//# sourceMappingURL=index.js.map
|