@supernova-studio/client 0.58.9 → 0.58.11

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.
Files changed (39) hide show
  1. package/dist/index.d.mts +2478 -228
  2. package/dist/index.d.ts +2478 -228
  3. package/dist/index.js +312 -146
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +910 -744
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +1 -1
  8. package/src/api/dto/design-systems/brand.ts +23 -1
  9. package/src/api/dto/design-systems/component.ts +32 -2
  10. package/src/api/dto/design-systems/index.ts +0 -1
  11. package/src/api/dto/elements/components/figma-component-group.ts +19 -0
  12. package/src/api/dto/elements/components/index.ts +1 -0
  13. package/src/api/dto/elements/frame-node-structures/frame-node-structure.ts +17 -0
  14. package/src/api/dto/elements/frame-node-structures/index.ts +1 -0
  15. package/src/api/dto/elements/index.ts +1 -0
  16. package/src/api/dto/export/exporter-property.ts +95 -0
  17. package/src/api/dto/export/exporter.ts +2 -0
  18. package/src/api/dto/export/index.ts +1 -0
  19. package/src/api/dto/export/job.ts +3 -0
  20. package/src/api/dto/export/pipeline.ts +3 -0
  21. package/src/api/endpoints/codegen/exporters.ts +2 -7
  22. package/src/api/endpoints/design-system/versions/brands.ts +16 -3
  23. package/src/api/endpoints/design-system/versions/ds-components.ts +28 -0
  24. package/src/api/endpoints/design-system/versions/elements-action.ts +16 -59
  25. package/src/api/endpoints/design-system/versions/elements.ts +13 -0
  26. package/src/api/endpoints/design-system/versions/figma-component-groups.ts +13 -0
  27. package/src/api/endpoints/design-system/versions/figma-components.ts +13 -0
  28. package/src/api/endpoints/design-system/versions/figma-frame-structures.ts +13 -0
  29. package/src/api/endpoints/design-system/versions/index.ts +5 -1
  30. package/src/api/endpoints/design-system/versions/versions.ts +13 -1
  31. package/src/api/payloads/design-systems/index.ts +0 -1
  32. package/src/api/payloads/export/pipeline.ts +3 -0
  33. package/src/api/transport/request-executor-error.ts +1 -1
  34. package/src/api/transport/request-executor.ts +2 -0
  35. package/src/utils/index.ts +1 -0
  36. package/src/utils/query.ts +18 -0
  37. package/src/api/dto/design-systems/exporter-property.ts +0 -8
  38. package/src/api/endpoints/design-system/versions/components.ts +0 -15
  39. package/src/api/payloads/design-systems/brand.ts +0 -12
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ var __publicField = (obj, key, value) => {
6
6
  };
7
7
 
8
8
  // ../model/dist/index.mjs
9
- var _zod = require('zod');
9
+ var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
10
10
 
11
11
 
12
12
 
@@ -572,7 +572,7 @@ var FigmaFileDownloadScope = _zod.z.object({
572
572
  });
573
573
  var FigmaFileAccessData = _zod.z.object({
574
574
  accessToken: _zod.z.string(),
575
- accessTokenType: _zod.z.enum(["OAuth2", "PAT"])
575
+ accessTokenType: _zod.z.enum(["OAuth2", "PAT"]).default("OAuth2")
576
576
  });
577
577
  var ImportWarningType = _zod.z.enum([
578
578
  "NoVersionFound",
@@ -5168,14 +5168,37 @@ var DTOBrandCreateResponse = _zod.z.object({
5168
5168
  brand: DTOBrand
5169
5169
  });
5170
5170
  var DTOBrandsListResponse = _zod.z.object({ brands: _zod.z.array(DTOBrand) });
5171
+ var DTOBrandCreatePayload = _zod.z.object({
5172
+ persistentId: _zod.z.string().uuid(),
5173
+ meta: DTOObjectMeta
5174
+ });
5175
+ var DTOBrandUpdatePayload = _zod.z.object({
5176
+ meta: DTOObjectMeta.optional(),
5177
+ persistentId: _zod.z.string()
5178
+ });
5171
5179
 
5172
5180
  // src/api/dto/design-systems/component.ts
5173
5181
 
5182
+ var DTODesignSystemComponent = _zod.z.object({
5183
+ id: _zod.z.string(),
5184
+ persistentId: _zod.z.string(),
5185
+ designSystemVersionId: _zod.z.string(),
5186
+ brandId: _zod.z.string(),
5187
+ meta: DTOObjectMeta,
5188
+ createdAt: _zod.z.coerce.date(),
5189
+ updatedAt: _zod.z.coerce.date()
5190
+ });
5191
+ var DTODesignSystemComponentResponse = _zod.z.object({
5192
+ designSystemComponent: DTODesignSystemComponent
5193
+ });
5194
+ var DTODesignSystemComponentListResponse = _zod.z.object({
5195
+ designSystemComponents: DTODesignSystemComponent.array()
5196
+ });
5174
5197
  var DTODesignSystemComponentCreateInput = _zod.z.object({
5175
5198
  brandId: _zod.z.string(),
5176
5199
  // Persistent ID,
5177
5200
  persistentId: _zod.z.string(),
5178
- meta: ObjectMeta
5201
+ meta: DTOObjectMeta
5179
5202
  });
5180
5203
 
5181
5204
  // src/api/dto/design-systems/contact.ts
@@ -5444,11 +5467,6 @@ var DTODesignElementsDataDiffResponse = _zod.z.object({
5444
5467
  assets: DTODiffCountBase
5445
5468
  });
5446
5469
 
5447
- // src/api/dto/design-systems/exporter-property.ts
5448
-
5449
- var DTOExporterProperty = _zod.z.any({});
5450
- var DTOExporterPropertyListResponse = _zod.z.object({ items: _zod.z.array(DTOExporterProperty) });
5451
-
5452
5470
  // src/api/dto/design-systems/figma-variables.ts
5453
5471
 
5454
5472
  var DimensionsVariableScopeSchema = _zod.z.enum([
@@ -5577,16 +5595,6 @@ var DTODesignSystemVersionStatsQuery = _zod.z.object({
5577
5595
  // src/api/dto/design-systems/version.ts
5578
5596
 
5579
5597
 
5580
- // src/api/payloads/design-systems/brand.ts
5581
-
5582
- var DTOCreateBrandInput = _zod.z.object({
5583
- persistentId: _zod.z.string().uuid(),
5584
- meta: _zod.z.object({
5585
- name: _zod.z.string(),
5586
- description: _zod.z.string()
5587
- })
5588
- });
5589
-
5590
5598
  // src/api/payloads/design-systems/update-design-system.ts
5591
5599
 
5592
5600
  var DTODesignSystemUpdateInput = DesignSystem.partial().omit({
@@ -5657,6 +5665,64 @@ var DTODocumentationPublishTypeQueryParams = _zod.z.object({
5657
5665
 
5658
5666
  // src/api/payloads/export/pipeline.ts
5659
5667
 
5668
+
5669
+ // src/api/dto/export/exporter-property.ts
5670
+
5671
+ var PrimitiveValue = _zod.z.number().or(_zod.z.boolean()).or(_zod.z.string());
5672
+ var ArrayValue = _zod.z.array(_zod.z.string());
5673
+ var ObjectValue = _zod.z.record(_zod.z.string());
5674
+ var DTOExporterPropertyDefinitionValue = PrimitiveValue.or(ArrayValue).or(ObjectValue);
5675
+ var DTOExporterPropertyType = _zod.z.enum(["Enum", "Boolean", "String", "Number", "Array", "Object"]);
5676
+ var PropertyDefinitionBase = _zod.z.object({
5677
+ key: _zod.z.string(),
5678
+ title: _zod.z.string(),
5679
+ description: _zod.z.string()
5680
+ });
5681
+ var DTOExporterPropertyDefinitionEnum = PropertyDefinitionBase.extend({
5682
+ type: _zod.z.literal(DTOExporterPropertyType.Enum.Enum),
5683
+ options: _zod.z.string().array(),
5684
+ default: _zod.z.string()
5685
+ });
5686
+ var DTOExporterPropertyDefinitionBoolean = PropertyDefinitionBase.extend({
5687
+ type: _zod.z.literal(DTOExporterPropertyType.Enum.Boolean),
5688
+ default: _zod.z.boolean()
5689
+ });
5690
+ var DTOExporterPropertyDefinitionString = PropertyDefinitionBase.extend({
5691
+ type: _zod.z.literal(DTOExporterPropertyType.Enum.String),
5692
+ default: _zod.z.string()
5693
+ });
5694
+ var DTOExporterPropertyDefinitionNumber = PropertyDefinitionBase.extend({
5695
+ type: _zod.z.literal(DTOExporterPropertyType.Enum.Number),
5696
+ default: _zod.z.number()
5697
+ });
5698
+ var DTOExporterPropertyDefinitionArray = PropertyDefinitionBase.extend({
5699
+ type: _zod.z.literal(DTOExporterPropertyType.Enum.Array),
5700
+ default: ArrayValue
5701
+ });
5702
+ var DTOExporterPropertyDefinitionObject = PropertyDefinitionBase.extend({
5703
+ type: _zod.z.literal(DTOExporterPropertyType.Enum.Object),
5704
+ default: ObjectValue,
5705
+ allowedKeys: _zod.z.object({
5706
+ options: _zod.z.string().array()
5707
+ }).optional(),
5708
+ allowedValues: _zod.z.object({
5709
+ options: _zod.z.string().array()
5710
+ }).optional()
5711
+ });
5712
+ var DTOExporterPropertyDefinition = _zod.z.discriminatedUnion("type", [
5713
+ DTOExporterPropertyDefinitionEnum,
5714
+ DTOExporterPropertyDefinitionBoolean,
5715
+ DTOExporterPropertyDefinitionString,
5716
+ DTOExporterPropertyDefinitionNumber,
5717
+ DTOExporterPropertyDefinitionArray,
5718
+ DTOExporterPropertyDefinitionObject
5719
+ ]);
5720
+ var DTOExporterPropertyDefinitionsResponse = _zod.z.object({
5721
+ properties: DTOExporterPropertyDefinition.array()
5722
+ });
5723
+ var DTOExporterPropertyDefinitionValueMap = _zod.z.record(DTOExporterPropertyDefinitionValue);
5724
+
5725
+ // src/api/payloads/export/pipeline.ts
5660
5726
  var DTOPipelineCreateBody = _zod.z.object({
5661
5727
  name: _zod.z.string(),
5662
5728
  exporterId: _zod.z.string(),
@@ -5666,6 +5732,7 @@ var DTOPipelineCreateBody = _zod.z.object({
5666
5732
  brandPersistentId: _zod.z.string().optional(),
5667
5733
  themePersistentId: _zod.z.string().optional(),
5668
5734
  themePersistentIds: _zod.z.string().array().optional(),
5735
+ exporterConfiguration: DTOExporterPropertyDefinitionValueMap.optional(),
5669
5736
  destination: PipelineDestinationType.optional(),
5670
5737
  gitQuery: GitObjectsQuery,
5671
5738
  destinations: _zod.z.object({
@@ -6255,6 +6322,7 @@ var DTOExporter = _zod.z.object({
6255
6322
  isDefaultDocumentationExporter: _zod.z.boolean(),
6256
6323
  iconURL: _zod.z.string().optional(),
6257
6324
  configurationProperties: PulsarContributionConfigurationProperty.array(),
6325
+ properties: DTOExporterPropertyDefinition.array().optional(),
6258
6326
  customBlocks: PulsarCustomBlock.array(),
6259
6327
  blockVariants: _zod.z.record(_zod.z.string(), PulsarContributionVariant.array()),
6260
6328
  usesBrands: _zod.z.boolean(),
@@ -6335,7 +6403,8 @@ var DTOExportJob = _zod.z.object({
6335
6403
  result: DTOExportJobResult.optional(),
6336
6404
  brandPersistentId: _zod.z.string().optional(),
6337
6405
  themePersistentId: _zod.z.string().optional(),
6338
- themePersistentIds: _zod.z.string().array().optional()
6406
+ themePersistentIds: _zod.z.string().array().optional(),
6407
+ exporterConfiguration: DTOExporterPropertyDefinitionValueMap.optional()
6339
6408
  });
6340
6409
  var DTOExportJobResponse = _zod.z.object({
6341
6410
  job: DTOExportJob
@@ -6359,6 +6428,7 @@ var DTOPipeline = _zod.z.object({
6359
6428
  brandPersistentId: _zod.z.string().optional(),
6360
6429
  themePersistentId: _zod.z.string().optional(),
6361
6430
  themePersistentIds: _zod.z.string().array().optional(),
6431
+ exporterConfiguration: DTOExporterPropertyDefinitionValueMap.optional(),
6362
6432
  ...ExportDestinationsMap.shape,
6363
6433
  latestJobs: DTOExportJob.array()
6364
6434
  });
@@ -6383,6 +6453,21 @@ var DTOPublishDocumentationResponse = _zod.z.object({
6383
6453
  job: DTOExportJob
6384
6454
  });
6385
6455
 
6456
+ // src/api/dto/elements/components/figma-component-group.ts
6457
+
6458
+ var DTOFigmaComponentGroup = _zod2.default.object({
6459
+ id: _zod2.default.string(),
6460
+ designSystemVersionId: _zod2.default.string(),
6461
+ persistentId: _zod2.default.string(),
6462
+ isRoot: _zod2.default.boolean(),
6463
+ brandId: _zod2.default.string(),
6464
+ meta: DTOObjectMeta,
6465
+ childrenIds: _zod2.default.string().array()
6466
+ });
6467
+ var DTOFigmaComponentGroupListResponse = _zod2.default.object({
6468
+ groups: DTOFigmaComponentGroup.array()
6469
+ });
6470
+
6386
6471
  // src/api/dto/elements/components/figma-component.ts
6387
6472
 
6388
6473
  var DTOFigmaComponentProperty = FigmaComponentProperty;
@@ -6789,6 +6874,19 @@ var DTOFigmaNodeRenderActionInput = _zod.z.object({
6789
6874
  input: DTOFigmaNodeRenderInput.array()
6790
6875
  });
6791
6876
 
6877
+ // src/api/dto/elements/frame-node-structures/frame-node-structure.ts
6878
+
6879
+ var DTOFrameNodeStructure = _zod.z.object({
6880
+ id: _zod.z.string(),
6881
+ persistentId: _zod.z.string(),
6882
+ designSystemVersionId: _zod.z.string(),
6883
+ origin: FigmaFileStructureOrigin,
6884
+ assetsInFile: FigmaFileStructureStatistics
6885
+ });
6886
+ var DTOFrameNodeStructureListResponse = _zod.z.object({
6887
+ structures: DTOFrameNodeStructure.array()
6888
+ });
6889
+
6792
6890
  // src/api/dto/elements/properties/property-definitions.ts
6793
6891
 
6794
6892
  var CODE_NAME_REGEX2 = /^[a-zA-Z_$][a-zA-Z_$0-9]{1,99}$/;
@@ -6981,17 +7079,86 @@ var DTOThemeCreatePayload = _zod.z.object({
6981
7079
  overrides: DTOThemeOverride.array()
6982
7080
  });
6983
7081
 
7082
+ // src/utils/hash.ts
7083
+ function hash(input) {
7084
+ return farmhash(input).toString(16);
7085
+ }
7086
+ function farmhash(input) {
7087
+ const seed = 2654435769;
7088
+ let hash2 = seed;
7089
+ for (let i = 0; i < input.length; i++) {
7090
+ const charCode = input.charCodeAt(i);
7091
+ hash2 ^= charCode;
7092
+ hash2 = Math.imul(hash2, 1540483477);
7093
+ hash2 ^= hash2 >>> 15;
7094
+ }
7095
+ hash2 = Math.imul(hash2, 1540483477);
7096
+ hash2 ^= hash2 >>> 13;
7097
+ hash2 = Math.imul(hash2, 1540483477);
7098
+ hash2 ^= hash2 >>> 15;
7099
+ return hash2 >>> 0;
7100
+ }
7101
+ function prepareObject(obj) {
7102
+ if (obj === null || typeof obj !== "object") {
7103
+ return obj;
7104
+ }
7105
+ if (Array.isArray(obj)) {
7106
+ return obj.map(prepareObject);
7107
+ }
7108
+ const sortedObj = {};
7109
+ for (const key of Object.keys(obj).sort()) {
7110
+ if (obj[key] === null || obj[key] === void 0) {
7111
+ continue;
7112
+ }
7113
+ sortedObj[key] = prepareObject(obj[key]);
7114
+ }
7115
+ return sortedObj;
7116
+ }
7117
+ function generateHash(input, debug = false) {
7118
+ if (typeof input === "object") {
7119
+ const sanitized = JSON.stringify(prepareObject(input));
7120
+ if (debug) {
7121
+ console.log("Hashing sanitized string:");
7122
+ console.log(sanitized);
7123
+ }
7124
+ return hash(sanitized);
7125
+ } else {
7126
+ try {
7127
+ const obj = JSON.parse(input);
7128
+ const sanitized = JSON.stringify(prepareObject(obj));
7129
+ if (debug) {
7130
+ console.log("Hashing sanitized string:");
7131
+ console.log(sanitized);
7132
+ }
7133
+ return hash(sanitized);
7134
+ } catch (e2) {
7135
+ return hash(input);
7136
+ }
7137
+ }
7138
+ }
7139
+
7140
+ // src/utils/query.ts
7141
+ function serializeQuery(query) {
7142
+ const queryWithStrings = Object.fromEntries(
7143
+ Object.entries(query).filter((e) => !!e[1]).map(([k, v]) => {
7144
+ if (Array.isArray(v)) {
7145
+ return [k, v.join(", ")];
7146
+ } else {
7147
+ return [k, v.toString()];
7148
+ }
7149
+ })
7150
+ );
7151
+ return new URLSearchParams(queryWithStrings);
7152
+ }
7153
+
6984
7154
  // src/api/endpoints/codegen/exporters.ts
6985
7155
  var ExportersEndpoint = class {
6986
7156
  constructor(requestExecutor) {
6987
7157
  this.requestExecutor = requestExecutor;
6988
7158
  }
6989
7159
  list(workspaceId, query) {
6990
- const queryWithStrings = Object.fromEntries(
6991
- Object.entries(query).filter((e) => !!e[1]).map(([k, v]) => [k, v.toString()])
6992
- );
6993
7160
  return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/exporters`, DTOExporterListResponse, {
6994
- query: new URLSearchParams(queryWithStrings)
7161
+ query: serializeQuery(query)
6995
7162
  });
6996
7163
  }
6997
7164
  };
@@ -7039,6 +7206,7 @@ var CodegenEndpoint = class {
7039
7206
  };
7040
7207
 
7041
7208
  // src/api/endpoints/design-system/versions/brands.ts
7209
+
7042
7210
  var BrandsEndpoint = class {
7043
7211
  constructor(requestExecutor) {
7044
7212
  this.requestExecutor = requestExecutor;
@@ -7065,18 +7233,15 @@ var BrandsEndpoint = class {
7065
7233
  }
7066
7234
  );
7067
7235
  }
7068
- };
7069
-
7070
- // src/api/endpoints/design-system/versions/components.ts
7071
-
7072
- var DesignSystemComponentEndpoint = class {
7073
- constructor(requestExecutor) {
7074
- this.requestExecutor = requestExecutor;
7236
+ update(dsId, vId, brandId, body) {
7237
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, DTOBrandGetResponse, {
7238
+ method: "PUT",
7239
+ body
7240
+ });
7075
7241
  }
7076
- async create(dsId, vId, body) {
7077
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/design-system-components`, _zod.z.any(), {
7078
- body,
7079
- method: "POST"
7242
+ delete(dsId, vId, brandId) {
7243
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, _zod.z.any(), {
7244
+ method: "DELETE"
7080
7245
  });
7081
7246
  }
7082
7247
  };
@@ -7103,87 +7268,114 @@ var DocumentationEndpoint = class {
7103
7268
  }
7104
7269
  };
7105
7270
 
7106
- // src/api/endpoints/design-system/versions/elements-action.ts
7107
- var ElementsActionEndpoint = class {
7271
+ // src/api/endpoints/design-system/versions/ds-components.ts
7272
+ var DesignSystemComponentEndpoint = class {
7108
7273
  constructor(requestExecutor) {
7109
7274
  this.requestExecutor = requestExecutor;
7110
7275
  }
7111
- async createDocPage(dsId, vId, input) {
7276
+ async list(dsId, vId) {
7112
7277
  return this.requestExecutor.json(
7113
- `/design-systems/${dsId}/versions/${vId}/elements-action`,
7114
- DTOElementActionOutput,
7115
- {
7116
- body: {
7117
- type: "DocumentationPageCreate",
7118
- input
7119
- },
7120
- method: "POST"
7121
- }
7278
+ `/design-systems/${dsId}/versions/${vId}/design-system-components`,
7279
+ DTODesignSystemComponentListResponse
7122
7280
  );
7123
7281
  }
7124
- async createDocGroup(dsId, vId, input) {
7282
+ async create(dsId, vId, body) {
7125
7283
  return this.requestExecutor.json(
7126
- `/design-systems/${dsId}/versions/${vId}/elements-action`,
7127
- DTOElementActionOutput,
7284
+ `/design-systems/${dsId}/versions/${vId}/design-system-components`,
7285
+ DTODesignSystemComponentResponse,
7128
7286
  {
7129
- body: {
7130
- type: "DocumentationGroupCreate",
7131
- input
7132
- },
7287
+ body,
7133
7288
  method: "POST"
7134
7289
  }
7135
7290
  );
7136
7291
  }
7292
+ };
7293
+
7294
+ // src/api/endpoints/design-system/versions/elements-action.ts
7295
+ var ElementsActionEndpoint = class {
7296
+ constructor(requestExecutor) {
7297
+ this.requestExecutor = requestExecutor;
7298
+ }
7299
+ async createDocPage(dsId, vId, input) {
7300
+ return this.action(dsId, vId, { type: "DocumentationPageCreate", input });
7301
+ }
7302
+ async createDocGroup(dsId, vId, input) {
7303
+ return this.action(dsId, vId, { type: "DocumentationGroupCreate", input });
7304
+ }
7137
7305
  async moveDocGroup(dsId, vId, input) {
7306
+ return this.action(dsId, vId, { type: "DocumentationGroupMove", input });
7307
+ }
7308
+ async updateDocPage(dsId, vId, input) {
7309
+ return this.action(dsId, vId, { type: "DocumentationPageUpdate", input });
7310
+ }
7311
+ async updateDocGroup(dsId, vId, input) {
7312
+ return this.action(dsId, vId, { type: "DocumentationGroupUpdate", input });
7313
+ }
7314
+ async createDocTab(dsId, vId, input) {
7315
+ return this.action(dsId, vId, { type: "DocumentationTabCreate", input });
7316
+ }
7317
+ async renderNodes(dsId, vId, input) {
7318
+ return this.action(dsId, vId, { type: "FigmaNodeRender", input });
7319
+ }
7320
+ async action(dsId, vId, input) {
7138
7321
  return this.requestExecutor.json(
7139
7322
  `/design-systems/${dsId}/versions/${vId}/elements-action`,
7140
7323
  DTOElementActionOutput,
7141
7324
  {
7142
- body: {
7143
- type: "DocumentationGroupMove",
7144
- input
7145
- },
7325
+ body: input,
7146
7326
  method: "POST"
7147
7327
  }
7148
7328
  );
7149
7329
  }
7150
- async updateDocPage(dsId, vId, input) {
7330
+ };
7331
+
7332
+ // src/api/endpoints/design-system/versions/elements.ts
7333
+ var ElementsEndpoint = class {
7334
+ constructor(requestExecutor) {
7335
+ this.requestExecutor = requestExecutor;
7336
+ }
7337
+ getElements(dsId, vId, query) {
7338
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/elements`, DTOElementsGetOutput, {
7339
+ query: serializeQuery(query)
7340
+ });
7341
+ }
7342
+ };
7343
+
7344
+ // src/api/endpoints/design-system/versions/figma-component-groups.ts
7345
+ var FigmaComponentGroupsEndpoint = class {
7346
+ constructor(requestExecutor) {
7347
+ this.requestExecutor = requestExecutor;
7348
+ }
7349
+ async list(dsId, vId) {
7151
7350
  return this.requestExecutor.json(
7152
- `/design-systems/${dsId}/versions/${vId}/elements-action`,
7153
- DTOElementActionOutput,
7154
- {
7155
- body: {
7156
- type: "DocumentationPageUpdate",
7157
- input
7158
- },
7159
- method: "POST"
7160
- }
7351
+ `/design-systems/${dsId}/versions/${vId}/component-groups`,
7352
+ DTOFigmaComponentGroupListResponse
7161
7353
  );
7162
7354
  }
7163
- async updateDocGroup(dsId, vId, input) {
7355
+ };
7356
+
7357
+ // src/api/endpoints/design-system/versions/figma-components.ts
7358
+ var FigmaComponentsEndpoint = class {
7359
+ constructor(requestExecutor) {
7360
+ this.requestExecutor = requestExecutor;
7361
+ }
7362
+ async list(dsId, vId) {
7164
7363
  return this.requestExecutor.json(
7165
- `/design-systems/${dsId}/versions/${vId}/elements-action`,
7166
- DTOElementActionOutput,
7167
- {
7168
- body: {
7169
- type: "DocumentationGroupUpdate",
7170
- input
7171
- },
7172
- method: "POST"
7173
- }
7364
+ `/design-systems/${dsId}/versions/${vId}/components`,
7365
+ DTOFigmaComponentListResponse
7174
7366
  );
7175
7367
  }
7176
- async createDocTab(dsId, vId, input) {
7368
+ };
7369
+
7370
+ // src/api/endpoints/design-system/versions/figma-frame-structures.ts
7371
+ var FigmaFrameStructuresEndpoint = class {
7372
+ constructor(requestExecutor) {
7373
+ this.requestExecutor = requestExecutor;
7374
+ }
7375
+ list(dsId, vId) {
7177
7376
  return this.requestExecutor.json(
7178
- `/design-systems/${dsId}/versions/${vId}/elements-action`,
7179
- DTOElementActionOutput,
7180
- {
7181
- body: {
7182
- type: "DocumentationTabCreate",
7183
- input
7184
- },
7185
- method: "POST"
7186
- }
7377
+ `/design-systems/${dsId}/versions/${vId}/figma-frames/node-structures`,
7378
+ DTOFrameNodeStructureListResponse
7187
7379
  );
7188
7380
  }
7189
7381
  };
@@ -7387,10 +7579,14 @@ var DesignSystemVersionsEndpoint = class {
7387
7579
  __publicField(this, "importJobs");
7388
7580
  __publicField(this, "tokens");
7389
7581
  __publicField(this, "tokenGroups");
7582
+ __publicField(this, "figmaComponents");
7583
+ __publicField(this, "figmaComponentGroups");
7584
+ __publicField(this, "figmaFrameStructures");
7390
7585
  __publicField(this, "stats");
7391
7586
  __publicField(this, "elementPropertyDefinitions");
7392
7587
  __publicField(this, "elementPropertyValues");
7393
7588
  __publicField(this, "elementsAction");
7589
+ __publicField(this, "elements");
7394
7590
  __publicField(this, "designSystemComponents");
7395
7591
  __publicField(this, "documentation");
7396
7592
  this.themes = new ThemesEndpoint(requestExecutor);
@@ -7399,10 +7595,14 @@ var DesignSystemVersionsEndpoint = class {
7399
7595
  this.importJobs = new ImportJobsEndpoint(requestExecutor);
7400
7596
  this.tokens = new TokensEndpoint(requestExecutor);
7401
7597
  this.tokenGroups = new TokenGroupsEndpoint(requestExecutor);
7598
+ this.figmaComponents = new FigmaComponentsEndpoint(requestExecutor);
7599
+ this.figmaComponentGroups = new FigmaComponentGroupsEndpoint(requestExecutor);
7600
+ this.figmaFrameStructures = new FigmaFrameStructuresEndpoint(requestExecutor);
7402
7601
  this.stats = new VersionStatsEndpoint(requestExecutor);
7403
7602
  this.elementPropertyDefinitions = new ElementPropertyDefinitionsEndpoint(requestExecutor);
7404
7603
  this.elementPropertyValues = new ElementPropertyValuesEndpoint(requestExecutor);
7405
7604
  this.elementsAction = new ElementsActionEndpoint(requestExecutor);
7605
+ this.elements = new ElementsEndpoint(requestExecutor);
7406
7606
  this.designSystemComponents = new DesignSystemComponentEndpoint(requestExecutor);
7407
7607
  this.documentation = new DocumentationEndpoint(requestExecutor);
7408
7608
  }
@@ -7747,6 +7947,8 @@ var RequestExecutor = class {
7747
7947
  }
7748
7948
  const responseParseResult = schema.safeParse(wrapperParseResult.data.result);
7749
7949
  if (!responseParseResult.success) {
7950
+ console.error(`Response was:`);
7951
+ console.error(wrapperParseResult.data.result);
7750
7952
  throw RequestExecutorError.responseParsingError(endpoint, responseParseResult.error);
7751
7953
  }
7752
7954
  return responseParseResult.data;
@@ -7778,64 +7980,6 @@ var SupernovaApiClient = class {
7778
7980
  }
7779
7981
  };
7780
7982
 
7781
- // src/utils/hash.ts
7782
- function hash(input) {
7783
- return farmhash(input).toString(16);
7784
- }
7785
- function farmhash(input) {
7786
- const seed = 2654435769;
7787
- let hash2 = seed;
7788
- for (let i = 0; i < input.length; i++) {
7789
- const charCode = input.charCodeAt(i);
7790
- hash2 ^= charCode;
7791
- hash2 = Math.imul(hash2, 1540483477);
7792
- hash2 ^= hash2 >>> 15;
7793
- }
7794
- hash2 = Math.imul(hash2, 1540483477);
7795
- hash2 ^= hash2 >>> 13;
7796
- hash2 = Math.imul(hash2, 1540483477);
7797
- hash2 ^= hash2 >>> 15;
7798
- return hash2 >>> 0;
7799
- }
7800
- function prepareObject(obj) {
7801
- if (obj === null || typeof obj !== "object") {
7802
- return obj;
7803
- }
7804
- if (Array.isArray(obj)) {
7805
- return obj.map(prepareObject);
7806
- }
7807
- const sortedObj = {};
7808
- for (const key of Object.keys(obj).sort()) {
7809
- if (obj[key] === null || obj[key] === void 0) {
7810
- continue;
7811
- }
7812
- sortedObj[key] = prepareObject(obj[key]);
7813
- }
7814
- return sortedObj;
7815
- }
7816
- function generateHash(input, debug = false) {
7817
- if (typeof input === "object") {
7818
- const sanitized = JSON.stringify(prepareObject(input));
7819
- if (debug) {
7820
- console.log("Hashing sanitized string:");
7821
- console.log(sanitized);
7822
- }
7823
- return hash(sanitized);
7824
- } else {
7825
- try {
7826
- const obj = JSON.parse(input);
7827
- const sanitized = JSON.stringify(prepareObject(obj));
7828
- if (debug) {
7829
- console.log("Hashing sanitized string:");
7830
- console.log(sanitized);
7831
- }
7832
- return hash(sanitized);
7833
- } catch (e2) {
7834
- return hash(input);
7835
- }
7836
- }
7837
- }
7838
-
7839
7983
  // src/yjs/design-system-content/documentation-hierarchy.ts
7840
7984
 
7841
7985
 
@@ -13045,5 +13189,27 @@ var BackendVersionRoomYDoc = class {
13045
13189
 
13046
13190
 
13047
13191
 
13048
- 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.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateBrandInput = DTOCreateBrandInput; 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.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; 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.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; 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.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterCreateOutput = DTOExporterCreateOutput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; 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.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.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; 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.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.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
13192
+
13193
+
13194
+
13195
+
13196
+
13197
+
13198
+
13199
+
13200
+
13201
+
13202
+
13203
+
13204
+
13205
+
13206
+
13207
+
13208
+
13209
+
13210
+
13211
+
13212
+
13213
+
13214
+ 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.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; 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.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterCreateOutput = DTOExporterCreateOutput; 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.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.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FormattedCollections = FormattedCollections; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; 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.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;
13049
13215
  //# sourceMappingURL=index.js.map