@supernova-studio/model 0.55.15 → 0.55.17
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 +346 -282
- package/dist/index.d.ts +346 -282
- package/dist/index.js +381 -359
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +650 -628
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +5 -1
- package/src/dsm/membership/design-system-membership.ts +27 -1
package/dist/index.js
CHANGED
|
@@ -2367,7 +2367,9 @@ var PageBlockItemFigmaComponentValue = _zod.z.object({
|
|
|
2367
2367
|
_zod.z.object({
|
|
2368
2368
|
entityId: _zod.z.string(),
|
|
2369
2369
|
entityType: _zod.z.enum(["FigmaComponent"]),
|
|
2370
|
-
|
|
2370
|
+
entityMeta: _zod.z.object({
|
|
2371
|
+
selectedComponentProperties: _zod.z.string().array().optional()
|
|
2372
|
+
}).optional()
|
|
2371
2373
|
})
|
|
2372
2374
|
).default([])
|
|
2373
2375
|
});
|
|
@@ -4008,393 +4010,130 @@ function pickLatestGroupSnapshots(snapshots) {
|
|
|
4008
4010
|
// src/dsm/membership/design-system-membership.ts
|
|
4009
4011
|
|
|
4010
4012
|
|
|
4011
|
-
// src/workspace/npm-registry-settings.ts
|
|
4012
|
-
|
|
4013
|
-
var NpmRegistryAuthType = _zod.z.enum(["Basic", "Bearer", "None", "Custom"]);
|
|
4014
|
-
var NpmRegistryType = _zod.z.enum(["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]);
|
|
4015
|
-
var NpmRegistryBasicAuthConfig = _zod.z.object({
|
|
4016
|
-
authType: _zod.z.literal(NpmRegistryAuthType.Enum.Basic),
|
|
4017
|
-
username: _zod.z.string(),
|
|
4018
|
-
password: _zod.z.string()
|
|
4019
|
-
});
|
|
4020
|
-
var NpmRegistryBearerAuthConfig = _zod.z.object({
|
|
4021
|
-
authType: _zod.z.literal(NpmRegistryAuthType.Enum.Bearer),
|
|
4022
|
-
accessToken: _zod.z.string()
|
|
4023
|
-
});
|
|
4024
|
-
var NpmRegistryNoAuthConfig = _zod.z.object({
|
|
4025
|
-
authType: _zod.z.literal(NpmRegistryAuthType.Enum.None)
|
|
4026
|
-
});
|
|
4027
|
-
var NpmRegistrCustomAuthConfig = _zod.z.object({
|
|
4028
|
-
authType: _zod.z.literal(NpmRegistryAuthType.Enum.Custom),
|
|
4029
|
-
authHeaderName: _zod.z.string(),
|
|
4030
|
-
authHeaderValue: _zod.z.string()
|
|
4031
|
-
});
|
|
4032
|
-
var NpmRegistryAuthConfig = _zod.z.discriminatedUnion("authType", [
|
|
4033
|
-
NpmRegistryBasicAuthConfig,
|
|
4034
|
-
NpmRegistryBearerAuthConfig,
|
|
4035
|
-
NpmRegistryNoAuthConfig,
|
|
4036
|
-
NpmRegistrCustomAuthConfig
|
|
4037
|
-
]);
|
|
4038
|
-
var NpmRegistryConfigBase = _zod.z.object({
|
|
4039
|
-
registryType: NpmRegistryType,
|
|
4040
|
-
enabledScopes: _zod.z.array(_zod.z.string()),
|
|
4041
|
-
customRegistryUrl: _zod.z.string().optional(),
|
|
4042
|
-
bypassProxy: _zod.z.boolean().default(false),
|
|
4043
|
-
npmProxyRegistryConfigId: _zod.z.string().optional(),
|
|
4044
|
-
npmProxyVersion: _zod.z.number().optional()
|
|
4045
|
-
});
|
|
4046
|
-
var NpmRegistryConfig = NpmRegistryConfigBase.and(NpmRegistryAuthConfig);
|
|
4047
|
-
|
|
4048
|
-
// src/workspace/sso-provider.ts
|
|
4049
|
-
|
|
4050
|
-
var SsoProvider = _zod.z.object({
|
|
4051
|
-
providerId: _zod.z.string(),
|
|
4052
|
-
defaultAutoInviteValue: _zod.z.boolean(),
|
|
4053
|
-
autoInviteDomains: _zod.z.record(_zod.z.string(), _zod.z.boolean()),
|
|
4054
|
-
skipDocsSupernovaLogin: _zod.z.boolean(),
|
|
4055
|
-
areInvitesDisabled: _zod.z.boolean(),
|
|
4056
|
-
isTestMode: _zod.z.boolean(),
|
|
4057
|
-
emailDomains: _zod.z.array(_zod.z.string()),
|
|
4058
|
-
metadataXml: _zod.z.string().nullish()
|
|
4059
|
-
});
|
|
4060
|
-
|
|
4061
|
-
// src/workspace/user-invite.ts
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
4013
|
// src/workspace/workspace-role.ts
|
|
4065
4014
|
|
|
4066
4015
|
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]);
|
|
4067
4016
|
var WorkspaceRole = WorkspaceRoleSchema.enum;
|
|
4068
4017
|
|
|
4069
|
-
// src/
|
|
4070
|
-
var MAX_MEMBERS_COUNT = 100;
|
|
4071
|
-
var UserInvite = _zod.z.object({
|
|
4072
|
-
email: _zod.z.string().email().trim().transform((value) => value.toLowerCase()),
|
|
4073
|
-
role: WorkspaceRoleSchema
|
|
4074
|
-
});
|
|
4075
|
-
var UserInvites = _zod.z.array(UserInvite).max(MAX_MEMBERS_COUNT);
|
|
4076
|
-
|
|
4077
|
-
// src/workspace/workspace-configuration.ts
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
// src/workspace/workspace.ts
|
|
4081
|
-
var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
|
|
4018
|
+
// src/dsm/membership/invitations.ts
|
|
4082
4019
|
|
|
4083
|
-
var
|
|
4084
|
-
return _ipcidr2.default.isValidAddress(value);
|
|
4085
|
-
};
|
|
4086
|
-
var WorkspaceIpWhitelistEntry = _zod.z.object({
|
|
4087
|
-
isEnabled: _zod.z.boolean(),
|
|
4088
|
-
name: _zod.z.string(),
|
|
4089
|
-
range: _zod.z.string().refine(isValidCIDR, {
|
|
4090
|
-
message: "Invalid IP CIDR"
|
|
4091
|
-
})
|
|
4092
|
-
});
|
|
4093
|
-
var WorkspaceIpSettings = _zod.z.object({
|
|
4094
|
-
isEnabledForCloud: _zod.z.boolean(),
|
|
4095
|
-
isEnabledForDocs: _zod.z.boolean(),
|
|
4096
|
-
entries: _zod.z.array(WorkspaceIpWhitelistEntry)
|
|
4097
|
-
});
|
|
4098
|
-
var WorkspaceProfile = _zod.z.object({
|
|
4099
|
-
name: _zod.z.string(),
|
|
4100
|
-
handle: _zod.z.string(),
|
|
4101
|
-
color: _zod.z.string(),
|
|
4102
|
-
avatar: nullishToOptional(_zod.z.string()),
|
|
4103
|
-
billingDetails: nullishToOptional(BillingDetails)
|
|
4104
|
-
});
|
|
4105
|
-
var WorkspaceProfileUpdate = WorkspaceProfile.omit({
|
|
4106
|
-
avatar: true
|
|
4107
|
-
});
|
|
4108
|
-
var Workspace = _zod.z.object({
|
|
4020
|
+
var DesignSystemInvitation = _zod.z.object({
|
|
4109
4021
|
id: _zod.z.string(),
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
4113
|
-
sso: nullishToOptional(SsoProvider),
|
|
4114
|
-
npmRegistrySettings: nullishToOptional(NpmRegistryConfig)
|
|
4115
|
-
});
|
|
4116
|
-
var WorkspaceWithDesignSystems = _zod.z.object({
|
|
4117
|
-
workspace: Workspace,
|
|
4118
|
-
designSystems: _zod.z.array(DesignSystem)
|
|
4022
|
+
designSystemId: _zod.z.string(),
|
|
4023
|
+
workspaceInvitationId: _zod.z.string()
|
|
4119
4024
|
});
|
|
4120
4025
|
|
|
4121
|
-
// src/
|
|
4122
|
-
var
|
|
4026
|
+
// src/dsm/membership/design-system-membership.ts
|
|
4027
|
+
var DesignSystemRole = _zod.z.enum([
|
|
4028
|
+
WorkspaceRole.Admin,
|
|
4029
|
+
WorkspaceRole.Contributor,
|
|
4030
|
+
WorkspaceRole.Creator,
|
|
4031
|
+
WorkspaceRole.Viewer
|
|
4032
|
+
]);
|
|
4033
|
+
var DesignSystemMembership = _zod.z.object({
|
|
4123
4034
|
id: _zod.z.string(),
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
profile: WorkspaceProfileUpdate.optional()
|
|
4035
|
+
userId: _zod.z.string(),
|
|
4036
|
+
designSystemId: _zod.z.string(),
|
|
4037
|
+
workspaceMembershipId: _zod.z.string()
|
|
4128
4038
|
});
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
var WorkspaceContext = _zod.z.object({
|
|
4133
|
-
workspaceId: _zod.z.string(),
|
|
4134
|
-
product: ProductCodeSchema,
|
|
4135
|
-
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
4136
|
-
publicDesignSystem: _zod.z.boolean().optional()
|
|
4039
|
+
var DesignSystemMembers = _zod.z.object({
|
|
4040
|
+
members: DesignSystemMembership.array(),
|
|
4041
|
+
invitations: DesignSystemInvitation.array()
|
|
4137
4042
|
});
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
var CreateWorkspaceInput = _zod.z.object({
|
|
4146
|
-
name: _zod.z.string().min(WORKSPACE_NAME_MIN_LENGTH).max(WORKSPACE_NAME_MAX_LENGTH).trim(),
|
|
4147
|
-
handle: _zod.z.string().regex(slugRegex).min(HANDLE_MIN_LENGTH).max(HANDLE_MAX_LENGTH).refine((value) => _optionalChain([value, 'optionalAccess', _6 => _6.length]) > 0).optional()
|
|
4043
|
+
var DesignSystemPendingMemberInvitation = _zod.z.object({
|
|
4044
|
+
inviteId: _zod.z.string(),
|
|
4045
|
+
/**
|
|
4046
|
+
* Role that the user will have in the design system, undefined
|
|
4047
|
+
* if it should be inherited from the workspace
|
|
4048
|
+
*/
|
|
4049
|
+
designSystemRole: DesignSystemRole.optional()
|
|
4148
4050
|
});
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4051
|
+
var DesignSystemUserInvitation = _zod.z.object({
|
|
4052
|
+
userId: _zod.z.string(),
|
|
4053
|
+
/**
|
|
4054
|
+
* Role that the user will have in the design system, undefined
|
|
4055
|
+
* if it should be inherited from the workspace
|
|
4056
|
+
*/
|
|
4057
|
+
designSystemRole: DesignSystemRole.optional()
|
|
4058
|
+
});
|
|
4059
|
+
var DesignSystemInvite = _zod.z.object({
|
|
4060
|
+
email: _zod.z.string(),
|
|
4061
|
+
workspaceRole: WorkspaceRoleSchema,
|
|
4062
|
+
/**
|
|
4063
|
+
* Role that the user will have in the design system, undefined
|
|
4064
|
+
* if it should be inherited from the workspace
|
|
4065
|
+
*/
|
|
4066
|
+
designSystemRole: DesignSystemRole.optional()
|
|
4067
|
+
});
|
|
4068
|
+
var DesignSystemMembershipUpdates = _zod.z.object({
|
|
4069
|
+
usersToInvite: DesignSystemUserInvitation.array().optional(),
|
|
4070
|
+
invitesToInvite: DesignSystemPendingMemberInvitation.array().optional(),
|
|
4071
|
+
emailsToInvite: DesignSystemInvite.array().optional(),
|
|
4072
|
+
removeUserIds: _zod.z.string().array().optional(),
|
|
4073
|
+
deleteInvitationIds: _zod.z.string().array().optional()
|
|
4160
4074
|
});
|
|
4161
4075
|
|
|
4162
|
-
// src/
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
// src/users/linked-integrations.ts
|
|
4076
|
+
// src/dsm/views/column.ts
|
|
4166
4077
|
|
|
4167
|
-
var
|
|
4168
|
-
var
|
|
4169
|
-
_zod.z.literal("
|
|
4170
|
-
_zod.z.literal("
|
|
4171
|
-
_zod.z.literal("
|
|
4172
|
-
_zod.z.literal("gitlab"),
|
|
4173
|
-
_zod.z.literal("bitbucket")
|
|
4078
|
+
var ElementViewBaseColumnType = _zod.z.enum(["Name", "Description", "Value", "UpdatedAt"]);
|
|
4079
|
+
var ElementViewColumnType = _zod.z.union([
|
|
4080
|
+
_zod.z.literal("BaseProperty"),
|
|
4081
|
+
_zod.z.literal("PropertyDefinition"),
|
|
4082
|
+
_zod.z.literal("Theme")
|
|
4174
4083
|
]);
|
|
4175
|
-
var
|
|
4084
|
+
var ElementViewColumnSharedAttributes = _zod.z.object({
|
|
4176
4085
|
id: _zod.z.string(),
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
customUrl: _zod.z.string().optional()
|
|
4086
|
+
persistentId: _zod.z.string(),
|
|
4087
|
+
elementDataViewId: _zod.z.string(),
|
|
4088
|
+
sortPosition: _zod.z.number(),
|
|
4089
|
+
width: _zod.z.number()
|
|
4182
4090
|
});
|
|
4183
|
-
var
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
azure: IntegrationUserInfo.array().optional(),
|
|
4187
|
-
gitlab: IntegrationUserInfo.array().optional(),
|
|
4188
|
-
bitbucket: IntegrationUserInfo.array().optional()
|
|
4091
|
+
var ElementViewBasePropertyColumn = ElementViewColumnSharedAttributes.extend({
|
|
4092
|
+
type: _zod.z.literal("BaseProperty"),
|
|
4093
|
+
basePropertyType: ElementViewBaseColumnType
|
|
4189
4094
|
});
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
var UserAnalyticsCleanupSchedule = _zod.z.object({
|
|
4194
|
-
userId: _zod.z.string(),
|
|
4195
|
-
createdAt: _zod.z.coerce.date(),
|
|
4196
|
-
deleteAt: _zod.z.coerce.date()
|
|
4095
|
+
var ElementViewPropertyDefinitionColumn = ElementViewColumnSharedAttributes.extend({
|
|
4096
|
+
type: _zod.z.literal("PropertyDefinition"),
|
|
4097
|
+
propertyDefinitionId: _zod.z.string()
|
|
4197
4098
|
});
|
|
4198
|
-
var
|
|
4199
|
-
|
|
4099
|
+
var ElementViewThemeColumn = ElementViewColumnSharedAttributes.extend({
|
|
4100
|
+
type: _zod.z.literal("Theme"),
|
|
4101
|
+
themeId: _zod.z.string()
|
|
4200
4102
|
});
|
|
4103
|
+
var ElementViewColumn = _zod.z.discriminatedUnion("type", [
|
|
4104
|
+
ElementViewBasePropertyColumn,
|
|
4105
|
+
ElementViewPropertyDefinitionColumn,
|
|
4106
|
+
ElementViewThemeColumn
|
|
4107
|
+
]);
|
|
4201
4108
|
|
|
4202
|
-
// src/
|
|
4109
|
+
// src/dsm/views/view.ts
|
|
4203
4110
|
|
|
4204
|
-
var
|
|
4111
|
+
var ElementView = _zod.z.object({
|
|
4205
4112
|
id: _zod.z.string(),
|
|
4206
|
-
|
|
4113
|
+
persistentId: _zod.z.string(),
|
|
4114
|
+
designSystemVersionId: _zod.z.string(),
|
|
4115
|
+
name: _zod.z.string(),
|
|
4116
|
+
description: _zod.z.string(),
|
|
4117
|
+
targetElementType: ElementPropertyTargetType,
|
|
4118
|
+
isDefault: _zod.z.boolean()
|
|
4207
4119
|
});
|
|
4208
4120
|
|
|
4209
|
-
// src/
|
|
4121
|
+
// src/dsm/brand.ts
|
|
4210
4122
|
|
|
4211
|
-
var
|
|
4123
|
+
var Brand = _zod.z.object({
|
|
4212
4124
|
id: _zod.z.string(),
|
|
4125
|
+
designSystemVersionId: _zod.z.string(),
|
|
4126
|
+
persistentId: _zod.z.string(),
|
|
4213
4127
|
name: _zod.z.string(),
|
|
4214
|
-
|
|
4215
|
-
avatar: _zod.z.string().optional()
|
|
4128
|
+
description: _zod.z.string()
|
|
4216
4129
|
});
|
|
4217
4130
|
|
|
4218
|
-
// src/
|
|
4131
|
+
// src/dsm/design-system.ts
|
|
4219
4132
|
|
|
4220
|
-
var
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
4225
|
-
});
|
|
4226
|
-
var defaultNotificationSettings = {
|
|
4227
|
-
liveblocksNotificationSettings: {
|
|
4228
|
-
sendCommentNotificationEmails: true
|
|
4229
|
-
}
|
|
4230
|
-
};
|
|
4231
|
-
|
|
4232
|
-
// src/users/user-profile.ts
|
|
4233
|
-
|
|
4234
|
-
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
4235
|
-
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
4236
|
-
var UserOnboarding = _zod.z.object({
|
|
4237
|
-
companyName: _zod.z.string().optional(),
|
|
4238
|
-
numberOfPeopleInOrg: _zod.z.string().optional(),
|
|
4239
|
-
numberOfPeopleInDesignTeam: _zod.z.string().optional(),
|
|
4240
|
-
department: UserOnboardingDepartment.optional(),
|
|
4241
|
-
jobTitle: _zod.z.string().optional(),
|
|
4242
|
-
phase: _zod.z.string().optional(),
|
|
4243
|
-
jobLevel: UserOnboardingJobLevel.optional(),
|
|
4244
|
-
designSystemName: _zod.z.string().optional(),
|
|
4245
|
-
defaultDestination: _zod.z.string().optional(),
|
|
4246
|
-
figmaUrl: _zod.z.string().optional(),
|
|
4247
|
-
isPageDraftOnboardingFinished: _zod.z.boolean().optional(),
|
|
4248
|
-
isApprovalsOnboardingFinished: _zod.z.boolean().optional()
|
|
4249
|
-
});
|
|
4250
|
-
var UserProfile = _zod.z.object({
|
|
4251
|
-
name: _zod.z.string(),
|
|
4252
|
-
avatar: _zod.z.string().optional(),
|
|
4253
|
-
nickname: _zod.z.string().optional(),
|
|
4254
|
-
onboarding: UserOnboarding.optional()
|
|
4255
|
-
});
|
|
4256
|
-
var UserProfileUpdate = UserProfile.partial().omit({
|
|
4257
|
-
avatar: true
|
|
4258
|
-
});
|
|
4259
|
-
|
|
4260
|
-
// src/users/user-test.ts
|
|
4261
|
-
|
|
4262
|
-
var UserTest = _zod.z.object({
|
|
4263
|
-
id: _zod.z.string(),
|
|
4264
|
-
email: _zod.z.string()
|
|
4265
|
-
});
|
|
4266
|
-
|
|
4267
|
-
// src/users/user.ts
|
|
4268
|
-
|
|
4269
|
-
var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
|
|
4270
|
-
var User = _zod.z.object({
|
|
4271
|
-
id: _zod.z.string(),
|
|
4272
|
-
email: _zod.z.string(),
|
|
4273
|
-
emailVerified: _zod.z.boolean(),
|
|
4274
|
-
createdAt: _zod.z.coerce.date(),
|
|
4275
|
-
trialExpiresAt: _zod.z.coerce.date().optional(),
|
|
4276
|
-
profile: UserProfile,
|
|
4277
|
-
linkedIntegrations: UserLinkedIntegrations.optional(),
|
|
4278
|
-
loggedOutAt: _zod.z.coerce.date().optional(),
|
|
4279
|
-
isProtected: _zod.z.boolean(),
|
|
4280
|
-
source: UserSource.optional()
|
|
4281
|
-
});
|
|
4282
|
-
|
|
4283
|
-
// src/workspace/workspace-membership.ts
|
|
4284
|
-
var WorkspaceMembership = _zod.z.object({
|
|
4285
|
-
id: _zod.z.string(),
|
|
4286
|
-
userId: _zod.z.string(),
|
|
4287
|
-
workspaceId: _zod.z.string(),
|
|
4288
|
-
workspaceRole: _zod.z.nativeEnum(WorkspaceRole),
|
|
4289
|
-
notificationSettings: UserNotificationSettings
|
|
4290
|
-
});
|
|
4291
|
-
var UpdateMembershipRolesInput = _zod.z.object({
|
|
4292
|
-
members: _zod.z.array(
|
|
4293
|
-
_zod.z.object({
|
|
4294
|
-
userId: _zod.z.string(),
|
|
4295
|
-
role: _zod.z.nativeEnum(WorkspaceRole)
|
|
4296
|
-
})
|
|
4297
|
-
)
|
|
4298
|
-
});
|
|
4299
|
-
|
|
4300
|
-
// src/dsm/membership/invitations.ts
|
|
4301
|
-
|
|
4302
|
-
var DesignSystemInvitation = _zod.z.object({
|
|
4303
|
-
id: _zod.z.string(),
|
|
4304
|
-
designSystemId: _zod.z.string(),
|
|
4305
|
-
workspaceInvitationId: _zod.z.string()
|
|
4306
|
-
});
|
|
4307
|
-
|
|
4308
|
-
// src/dsm/membership/design-system-membership.ts
|
|
4309
|
-
var DesignSystemMembership = _zod.z.object({
|
|
4310
|
-
id: _zod.z.string(),
|
|
4311
|
-
userId: _zod.z.string(),
|
|
4312
|
-
designSystemId: _zod.z.string(),
|
|
4313
|
-
workspaceMembershipId: _zod.z.string()
|
|
4314
|
-
});
|
|
4315
|
-
var DesignSystemMembers = _zod.z.object({
|
|
4316
|
-
members: DesignSystemMembership.array(),
|
|
4317
|
-
invitations: DesignSystemInvitation.array()
|
|
4318
|
-
});
|
|
4319
|
-
var DesignSystemPendingMemberInvitation = _zod.z.object({
|
|
4320
|
-
inviteId: _zod.z.string()
|
|
4321
|
-
});
|
|
4322
|
-
var DesignSystemUserInvitation = _zod.z.object({
|
|
4323
|
-
userId: _zod.z.string()
|
|
4324
|
-
});
|
|
4325
|
-
var DesignSystemInvite = _zod.z.object({
|
|
4326
|
-
email: _zod.z.string(),
|
|
4327
|
-
workspaceRole: WorkspaceRoleSchema
|
|
4328
|
-
});
|
|
4329
|
-
var DesignSystemMembershipUpdates = _zod.z.object({
|
|
4330
|
-
usersToInvite: DesignSystemUserInvitation.array().optional(),
|
|
4331
|
-
invitesToInvite: DesignSystemPendingMemberInvitation.array().optional(),
|
|
4332
|
-
emailsToInvite: DesignSystemInvite.array().optional(),
|
|
4333
|
-
removeUserIds: _zod.z.string().array().optional(),
|
|
4334
|
-
deleteInvitationIds: _zod.z.string().array().optional()
|
|
4335
|
-
});
|
|
4336
|
-
|
|
4337
|
-
// src/dsm/views/column.ts
|
|
4338
|
-
|
|
4339
|
-
var ElementViewBaseColumnType = _zod.z.enum(["Name", "Description", "Value", "UpdatedAt"]);
|
|
4340
|
-
var ElementViewColumnType = _zod.z.union([
|
|
4341
|
-
_zod.z.literal("BaseProperty"),
|
|
4342
|
-
_zod.z.literal("PropertyDefinition"),
|
|
4343
|
-
_zod.z.literal("Theme")
|
|
4344
|
-
]);
|
|
4345
|
-
var ElementViewColumnSharedAttributes = _zod.z.object({
|
|
4346
|
-
id: _zod.z.string(),
|
|
4347
|
-
persistentId: _zod.z.string(),
|
|
4348
|
-
elementDataViewId: _zod.z.string(),
|
|
4349
|
-
sortPosition: _zod.z.number(),
|
|
4350
|
-
width: _zod.z.number()
|
|
4351
|
-
});
|
|
4352
|
-
var ElementViewBasePropertyColumn = ElementViewColumnSharedAttributes.extend({
|
|
4353
|
-
type: _zod.z.literal("BaseProperty"),
|
|
4354
|
-
basePropertyType: ElementViewBaseColumnType
|
|
4355
|
-
});
|
|
4356
|
-
var ElementViewPropertyDefinitionColumn = ElementViewColumnSharedAttributes.extend({
|
|
4357
|
-
type: _zod.z.literal("PropertyDefinition"),
|
|
4358
|
-
propertyDefinitionId: _zod.z.string()
|
|
4359
|
-
});
|
|
4360
|
-
var ElementViewThemeColumn = ElementViewColumnSharedAttributes.extend({
|
|
4361
|
-
type: _zod.z.literal("Theme"),
|
|
4362
|
-
themeId: _zod.z.string()
|
|
4363
|
-
});
|
|
4364
|
-
var ElementViewColumn = _zod.z.discriminatedUnion("type", [
|
|
4365
|
-
ElementViewBasePropertyColumn,
|
|
4366
|
-
ElementViewPropertyDefinitionColumn,
|
|
4367
|
-
ElementViewThemeColumn
|
|
4368
|
-
]);
|
|
4369
|
-
|
|
4370
|
-
// src/dsm/views/view.ts
|
|
4371
|
-
|
|
4372
|
-
var ElementView = _zod.z.object({
|
|
4373
|
-
id: _zod.z.string(),
|
|
4374
|
-
persistentId: _zod.z.string(),
|
|
4375
|
-
designSystemVersionId: _zod.z.string(),
|
|
4376
|
-
name: _zod.z.string(),
|
|
4377
|
-
description: _zod.z.string(),
|
|
4378
|
-
targetElementType: ElementPropertyTargetType,
|
|
4379
|
-
isDefault: _zod.z.boolean()
|
|
4380
|
-
});
|
|
4381
|
-
|
|
4382
|
-
// src/dsm/brand.ts
|
|
4383
|
-
|
|
4384
|
-
var Brand = _zod.z.object({
|
|
4385
|
-
id: _zod.z.string(),
|
|
4386
|
-
designSystemVersionId: _zod.z.string(),
|
|
4387
|
-
persistentId: _zod.z.string(),
|
|
4388
|
-
name: _zod.z.string(),
|
|
4389
|
-
description: _zod.z.string()
|
|
4390
|
-
});
|
|
4391
|
-
|
|
4392
|
-
// src/dsm/design-system.ts
|
|
4393
|
-
|
|
4394
|
-
var DesignSystemAccessMode = _zod.z.enum(["Open", "InviteOnly"]);
|
|
4395
|
-
var DesignSystemSwitcher = _zod.z.object({
|
|
4396
|
-
isEnabled: _zod.z.boolean(),
|
|
4397
|
-
designSystemIds: _zod.z.array(_zod.z.string())
|
|
4133
|
+
var DesignSystemAccessMode = _zod.z.enum(["Open", "InviteOnly"]);
|
|
4134
|
+
var DesignSystemSwitcher = _zod.z.object({
|
|
4135
|
+
isEnabled: _zod.z.boolean(),
|
|
4136
|
+
designSystemIds: _zod.z.array(_zod.z.string())
|
|
4398
4137
|
});
|
|
4399
4138
|
var DesignSystem = _zod.z.object({
|
|
4400
4139
|
id: _zod.z.string(),
|
|
@@ -4448,8 +4187,8 @@ var ExporterPropertyValuesCollection = _zod.z.object({
|
|
|
4448
4187
|
var SHORT_PERSISTENT_ID_LENGTH = 8;
|
|
4449
4188
|
function tryParseShortPersistentId(url = "/") {
|
|
4450
4189
|
const lastUrlPart = url.split("/").pop() || "";
|
|
4451
|
-
const shortPersistentId = _optionalChain([lastUrlPart, 'access',
|
|
4452
|
-
return _optionalChain([shortPersistentId, 'optionalAccess',
|
|
4190
|
+
const shortPersistentId = _optionalChain([lastUrlPart, 'access', _6 => _6.split, 'call', _7 => _7("-"), 'access', _8 => _8.pop, 'call', _9 => _9(), 'optionalAccess', _10 => _10.replaceAll, 'call', _11 => _11(".html", "")]) || null;
|
|
4191
|
+
return _optionalChain([shortPersistentId, 'optionalAccess', _12 => _12.length]) === SHORT_PERSISTENT_ID_LENGTH ? shortPersistentId : null;
|
|
4453
4192
|
}
|
|
4454
4193
|
var PublishedDocPage = _zod.z.object({
|
|
4455
4194
|
id: _zod.z.string(),
|
|
@@ -4769,6 +4508,124 @@ var DesignSystemDump = _zod.z.object({
|
|
|
4769
4508
|
// src/data-dumps/user-data-dump.ts
|
|
4770
4509
|
|
|
4771
4510
|
|
|
4511
|
+
// src/users/linked-integrations.ts
|
|
4512
|
+
|
|
4513
|
+
var IntegrationAuthType = _zod.z.union([_zod.z.literal("OAuth2"), _zod.z.literal("PAT")]);
|
|
4514
|
+
var ExternalServiceType = _zod.z.union([
|
|
4515
|
+
_zod.z.literal("figma"),
|
|
4516
|
+
_zod.z.literal("github"),
|
|
4517
|
+
_zod.z.literal("azure"),
|
|
4518
|
+
_zod.z.literal("gitlab"),
|
|
4519
|
+
_zod.z.literal("bitbucket")
|
|
4520
|
+
]);
|
|
4521
|
+
var IntegrationUserInfo = _zod.z.object({
|
|
4522
|
+
id: _zod.z.string(),
|
|
4523
|
+
handle: _zod.z.string().optional(),
|
|
4524
|
+
avatarUrl: _zod.z.string().optional(),
|
|
4525
|
+
email: _zod.z.string().optional(),
|
|
4526
|
+
authType: IntegrationAuthType.optional(),
|
|
4527
|
+
customUrl: _zod.z.string().optional()
|
|
4528
|
+
});
|
|
4529
|
+
var UserLinkedIntegrations = _zod.z.object({
|
|
4530
|
+
figma: IntegrationUserInfo.optional(),
|
|
4531
|
+
github: IntegrationUserInfo.array().optional(),
|
|
4532
|
+
azure: IntegrationUserInfo.array().optional(),
|
|
4533
|
+
gitlab: IntegrationUserInfo.array().optional(),
|
|
4534
|
+
bitbucket: IntegrationUserInfo.array().optional()
|
|
4535
|
+
});
|
|
4536
|
+
|
|
4537
|
+
// src/users/user-analytics-cleanup-schedule.ts
|
|
4538
|
+
|
|
4539
|
+
var UserAnalyticsCleanupSchedule = _zod.z.object({
|
|
4540
|
+
userId: _zod.z.string(),
|
|
4541
|
+
createdAt: _zod.z.coerce.date(),
|
|
4542
|
+
deleteAt: _zod.z.coerce.date()
|
|
4543
|
+
});
|
|
4544
|
+
var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
|
|
4545
|
+
createdAt: true
|
|
4546
|
+
});
|
|
4547
|
+
|
|
4548
|
+
// src/users/user-identity.ts
|
|
4549
|
+
|
|
4550
|
+
var UserIdentity = _zod.z.object({
|
|
4551
|
+
id: _zod.z.string(),
|
|
4552
|
+
userId: _zod.z.string()
|
|
4553
|
+
});
|
|
4554
|
+
|
|
4555
|
+
// src/users/user-minified.ts
|
|
4556
|
+
|
|
4557
|
+
var UserMinified = _zod.z.object({
|
|
4558
|
+
id: _zod.z.string(),
|
|
4559
|
+
name: _zod.z.string(),
|
|
4560
|
+
email: _zod.z.string(),
|
|
4561
|
+
avatar: _zod.z.string().optional()
|
|
4562
|
+
});
|
|
4563
|
+
|
|
4564
|
+
// src/users/user-notification-settings.ts
|
|
4565
|
+
|
|
4566
|
+
var LiveblocksNotificationSettings = _zod.z.object({
|
|
4567
|
+
sendCommentNotificationEmails: _zod.z.boolean()
|
|
4568
|
+
});
|
|
4569
|
+
var UserNotificationSettings = _zod.z.object({
|
|
4570
|
+
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
4571
|
+
});
|
|
4572
|
+
var defaultNotificationSettings = {
|
|
4573
|
+
liveblocksNotificationSettings: {
|
|
4574
|
+
sendCommentNotificationEmails: true
|
|
4575
|
+
}
|
|
4576
|
+
};
|
|
4577
|
+
|
|
4578
|
+
// src/users/user-profile.ts
|
|
4579
|
+
|
|
4580
|
+
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
4581
|
+
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
4582
|
+
var UserOnboarding = _zod.z.object({
|
|
4583
|
+
companyName: _zod.z.string().optional(),
|
|
4584
|
+
numberOfPeopleInOrg: _zod.z.string().optional(),
|
|
4585
|
+
numberOfPeopleInDesignTeam: _zod.z.string().optional(),
|
|
4586
|
+
department: UserOnboardingDepartment.optional(),
|
|
4587
|
+
jobTitle: _zod.z.string().optional(),
|
|
4588
|
+
phase: _zod.z.string().optional(),
|
|
4589
|
+
jobLevel: UserOnboardingJobLevel.optional(),
|
|
4590
|
+
designSystemName: _zod.z.string().optional(),
|
|
4591
|
+
defaultDestination: _zod.z.string().optional(),
|
|
4592
|
+
figmaUrl: _zod.z.string().optional(),
|
|
4593
|
+
isPageDraftOnboardingFinished: _zod.z.boolean().optional(),
|
|
4594
|
+
isApprovalsOnboardingFinished: _zod.z.boolean().optional()
|
|
4595
|
+
});
|
|
4596
|
+
var UserProfile = _zod.z.object({
|
|
4597
|
+
name: _zod.z.string(),
|
|
4598
|
+
avatar: _zod.z.string().optional(),
|
|
4599
|
+
nickname: _zod.z.string().optional(),
|
|
4600
|
+
onboarding: UserOnboarding.optional()
|
|
4601
|
+
});
|
|
4602
|
+
var UserProfileUpdate = UserProfile.partial().omit({
|
|
4603
|
+
avatar: true
|
|
4604
|
+
});
|
|
4605
|
+
|
|
4606
|
+
// src/users/user-test.ts
|
|
4607
|
+
|
|
4608
|
+
var UserTest = _zod.z.object({
|
|
4609
|
+
id: _zod.z.string(),
|
|
4610
|
+
email: _zod.z.string()
|
|
4611
|
+
});
|
|
4612
|
+
|
|
4613
|
+
// src/users/user.ts
|
|
4614
|
+
|
|
4615
|
+
var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
|
|
4616
|
+
var User = _zod.z.object({
|
|
4617
|
+
id: _zod.z.string(),
|
|
4618
|
+
email: _zod.z.string(),
|
|
4619
|
+
emailVerified: _zod.z.boolean(),
|
|
4620
|
+
createdAt: _zod.z.coerce.date(),
|
|
4621
|
+
trialExpiresAt: _zod.z.coerce.date().optional(),
|
|
4622
|
+
profile: UserProfile,
|
|
4623
|
+
linkedIntegrations: UserLinkedIntegrations.optional(),
|
|
4624
|
+
loggedOutAt: _zod.z.coerce.date().optional(),
|
|
4625
|
+
isProtected: _zod.z.boolean(),
|
|
4626
|
+
source: UserSource.optional()
|
|
4627
|
+
});
|
|
4628
|
+
|
|
4772
4629
|
// src/data-dumps/workspace-dump.ts
|
|
4773
4630
|
|
|
4774
4631
|
|
|
@@ -4841,7 +4698,7 @@ var IntegrationToken = _zod.z.object({
|
|
|
4841
4698
|
token_bitbucket_username: _zod.z.string().optional(),
|
|
4842
4699
|
// Bitbucket only
|
|
4843
4700
|
custom_url: _zod.z.string().optional().transform((value) => {
|
|
4844
|
-
if (!_optionalChain([value, 'optionalAccess',
|
|
4701
|
+
if (!_optionalChain([value, 'optionalAccess', _13 => _13.trim, 'call', _14 => _14()]))
|
|
4845
4702
|
return void 0;
|
|
4846
4703
|
return formatCustomUrl(value);
|
|
4847
4704
|
})
|
|
@@ -4877,6 +4734,99 @@ function formatCustomUrl(url) {
|
|
|
4877
4734
|
return forbiddenCustomUrlDomainList.some((domain) => formattedUrl.includes(domain)) ? void 0 : formattedUrl;
|
|
4878
4735
|
}
|
|
4879
4736
|
|
|
4737
|
+
// src/workspace/workspace.ts
|
|
4738
|
+
var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
|
|
4739
|
+
|
|
4740
|
+
|
|
4741
|
+
// src/workspace/npm-registry-settings.ts
|
|
4742
|
+
|
|
4743
|
+
var NpmRegistryAuthType = _zod.z.enum(["Basic", "Bearer", "None", "Custom"]);
|
|
4744
|
+
var NpmRegistryType = _zod.z.enum(["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]);
|
|
4745
|
+
var NpmRegistryBasicAuthConfig = _zod.z.object({
|
|
4746
|
+
authType: _zod.z.literal(NpmRegistryAuthType.Enum.Basic),
|
|
4747
|
+
username: _zod.z.string(),
|
|
4748
|
+
password: _zod.z.string()
|
|
4749
|
+
});
|
|
4750
|
+
var NpmRegistryBearerAuthConfig = _zod.z.object({
|
|
4751
|
+
authType: _zod.z.literal(NpmRegistryAuthType.Enum.Bearer),
|
|
4752
|
+
accessToken: _zod.z.string()
|
|
4753
|
+
});
|
|
4754
|
+
var NpmRegistryNoAuthConfig = _zod.z.object({
|
|
4755
|
+
authType: _zod.z.literal(NpmRegistryAuthType.Enum.None)
|
|
4756
|
+
});
|
|
4757
|
+
var NpmRegistrCustomAuthConfig = _zod.z.object({
|
|
4758
|
+
authType: _zod.z.literal(NpmRegistryAuthType.Enum.Custom),
|
|
4759
|
+
authHeaderName: _zod.z.string(),
|
|
4760
|
+
authHeaderValue: _zod.z.string()
|
|
4761
|
+
});
|
|
4762
|
+
var NpmRegistryAuthConfig = _zod.z.discriminatedUnion("authType", [
|
|
4763
|
+
NpmRegistryBasicAuthConfig,
|
|
4764
|
+
NpmRegistryBearerAuthConfig,
|
|
4765
|
+
NpmRegistryNoAuthConfig,
|
|
4766
|
+
NpmRegistrCustomAuthConfig
|
|
4767
|
+
]);
|
|
4768
|
+
var NpmRegistryConfigBase = _zod.z.object({
|
|
4769
|
+
registryType: NpmRegistryType,
|
|
4770
|
+
enabledScopes: _zod.z.array(_zod.z.string()),
|
|
4771
|
+
customRegistryUrl: _zod.z.string().optional(),
|
|
4772
|
+
bypassProxy: _zod.z.boolean().default(false),
|
|
4773
|
+
npmProxyRegistryConfigId: _zod.z.string().optional(),
|
|
4774
|
+
npmProxyVersion: _zod.z.number().optional()
|
|
4775
|
+
});
|
|
4776
|
+
var NpmRegistryConfig = NpmRegistryConfigBase.and(NpmRegistryAuthConfig);
|
|
4777
|
+
|
|
4778
|
+
// src/workspace/sso-provider.ts
|
|
4779
|
+
|
|
4780
|
+
var SsoProvider = _zod.z.object({
|
|
4781
|
+
providerId: _zod.z.string(),
|
|
4782
|
+
defaultAutoInviteValue: _zod.z.boolean(),
|
|
4783
|
+
autoInviteDomains: _zod.z.record(_zod.z.string(), _zod.z.boolean()),
|
|
4784
|
+
skipDocsSupernovaLogin: _zod.z.boolean(),
|
|
4785
|
+
areInvitesDisabled: _zod.z.boolean(),
|
|
4786
|
+
isTestMode: _zod.z.boolean(),
|
|
4787
|
+
emailDomains: _zod.z.array(_zod.z.string()),
|
|
4788
|
+
metadataXml: _zod.z.string().nullish()
|
|
4789
|
+
});
|
|
4790
|
+
|
|
4791
|
+
// src/workspace/workspace.ts
|
|
4792
|
+
var isValidCIDR = (value) => {
|
|
4793
|
+
return _ipcidr2.default.isValidAddress(value);
|
|
4794
|
+
};
|
|
4795
|
+
var WorkspaceIpWhitelistEntry = _zod.z.object({
|
|
4796
|
+
isEnabled: _zod.z.boolean(),
|
|
4797
|
+
name: _zod.z.string(),
|
|
4798
|
+
range: _zod.z.string().refine(isValidCIDR, {
|
|
4799
|
+
message: "Invalid IP CIDR"
|
|
4800
|
+
})
|
|
4801
|
+
});
|
|
4802
|
+
var WorkspaceIpSettings = _zod.z.object({
|
|
4803
|
+
isEnabledForCloud: _zod.z.boolean(),
|
|
4804
|
+
isEnabledForDocs: _zod.z.boolean(),
|
|
4805
|
+
entries: _zod.z.array(WorkspaceIpWhitelistEntry)
|
|
4806
|
+
});
|
|
4807
|
+
var WorkspaceProfile = _zod.z.object({
|
|
4808
|
+
name: _zod.z.string(),
|
|
4809
|
+
handle: _zod.z.string(),
|
|
4810
|
+
color: _zod.z.string(),
|
|
4811
|
+
avatar: nullishToOptional(_zod.z.string()),
|
|
4812
|
+
billingDetails: nullishToOptional(BillingDetails)
|
|
4813
|
+
});
|
|
4814
|
+
var WorkspaceProfileUpdate = WorkspaceProfile.omit({
|
|
4815
|
+
avatar: true
|
|
4816
|
+
});
|
|
4817
|
+
var Workspace = _zod.z.object({
|
|
4818
|
+
id: _zod.z.string(),
|
|
4819
|
+
profile: WorkspaceProfile,
|
|
4820
|
+
subscription: Subscription,
|
|
4821
|
+
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
4822
|
+
sso: nullishToOptional(SsoProvider),
|
|
4823
|
+
npmRegistrySettings: nullishToOptional(NpmRegistryConfig)
|
|
4824
|
+
});
|
|
4825
|
+
var WorkspaceWithDesignSystems = _zod.z.object({
|
|
4826
|
+
workspace: Workspace,
|
|
4827
|
+
designSystems: _zod.z.array(DesignSystem)
|
|
4828
|
+
});
|
|
4829
|
+
|
|
4880
4830
|
// src/data-dumps/workspace-dump.ts
|
|
4881
4831
|
var WorkspaceDump = _zod.z.object({
|
|
4882
4832
|
workspace: Workspace,
|
|
@@ -4918,6 +4868,77 @@ var UserSession = _zod.z.object({
|
|
|
4918
4868
|
|
|
4919
4869
|
// src/emails/design-system-invite.ts
|
|
4920
4870
|
|
|
4871
|
+
|
|
4872
|
+
// src/workspace/user-invite.ts
|
|
4873
|
+
|
|
4874
|
+
var MAX_MEMBERS_COUNT = 100;
|
|
4875
|
+
var UserInvite = _zod.z.object({
|
|
4876
|
+
email: _zod.z.string().email().trim().transform((value) => value.toLowerCase()),
|
|
4877
|
+
role: WorkspaceRoleSchema
|
|
4878
|
+
});
|
|
4879
|
+
var UserInvites = _zod.z.array(UserInvite).max(MAX_MEMBERS_COUNT);
|
|
4880
|
+
|
|
4881
|
+
// src/workspace/workspace-configuration.ts
|
|
4882
|
+
|
|
4883
|
+
var WorkspaceConfigurationUpdate = _zod.z.object({
|
|
4884
|
+
id: _zod.z.string(),
|
|
4885
|
+
ipWhitelist: WorkspaceIpSettings.optional(),
|
|
4886
|
+
sso: SsoProvider.optional(),
|
|
4887
|
+
npmRegistrySettings: NpmRegistryConfig.optional(),
|
|
4888
|
+
profile: WorkspaceProfileUpdate.optional()
|
|
4889
|
+
});
|
|
4890
|
+
|
|
4891
|
+
// src/workspace/workspace-context.ts
|
|
4892
|
+
|
|
4893
|
+
var WorkspaceContext = _zod.z.object({
|
|
4894
|
+
workspaceId: _zod.z.string(),
|
|
4895
|
+
product: ProductCodeSchema,
|
|
4896
|
+
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
4897
|
+
publicDesignSystem: _zod.z.boolean().optional()
|
|
4898
|
+
});
|
|
4899
|
+
|
|
4900
|
+
// src/workspace/workspace-create.ts
|
|
4901
|
+
|
|
4902
|
+
var WORKSPACE_NAME_MIN_LENGTH = 2;
|
|
4903
|
+
var WORKSPACE_NAME_MAX_LENGTH = 64;
|
|
4904
|
+
var HANDLE_MIN_LENGTH = 2;
|
|
4905
|
+
var HANDLE_MAX_LENGTH = 64;
|
|
4906
|
+
var CreateWorkspaceInput = _zod.z.object({
|
|
4907
|
+
name: _zod.z.string().min(WORKSPACE_NAME_MIN_LENGTH).max(WORKSPACE_NAME_MAX_LENGTH).trim(),
|
|
4908
|
+
handle: _zod.z.string().regex(slugRegex).min(HANDLE_MIN_LENGTH).max(HANDLE_MAX_LENGTH).refine((value) => _optionalChain([value, 'optionalAccess', _15 => _15.length]) > 0).optional()
|
|
4909
|
+
});
|
|
4910
|
+
|
|
4911
|
+
// src/workspace/workspace-invitations.ts
|
|
4912
|
+
|
|
4913
|
+
var WorkspaceInvitation = _zod.z.object({
|
|
4914
|
+
id: _zod.z.string(),
|
|
4915
|
+
email: _zod.z.string().email(),
|
|
4916
|
+
createdAt: _zod.z.coerce.date(),
|
|
4917
|
+
resentAt: _zod.z.coerce.date().nullish(),
|
|
4918
|
+
role: _zod.z.nativeEnum(WorkspaceRole),
|
|
4919
|
+
workspaceId: _zod.z.string(),
|
|
4920
|
+
invitedBy: _zod.z.string()
|
|
4921
|
+
});
|
|
4922
|
+
|
|
4923
|
+
// src/workspace/workspace-membership.ts
|
|
4924
|
+
|
|
4925
|
+
var WorkspaceMembership = _zod.z.object({
|
|
4926
|
+
id: _zod.z.string(),
|
|
4927
|
+
userId: _zod.z.string(),
|
|
4928
|
+
workspaceId: _zod.z.string(),
|
|
4929
|
+
workspaceRole: _zod.z.nativeEnum(WorkspaceRole),
|
|
4930
|
+
notificationSettings: UserNotificationSettings
|
|
4931
|
+
});
|
|
4932
|
+
var UpdateMembershipRolesInput = _zod.z.object({
|
|
4933
|
+
members: _zod.z.array(
|
|
4934
|
+
_zod.z.object({
|
|
4935
|
+
userId: _zod.z.string(),
|
|
4936
|
+
role: _zod.z.nativeEnum(WorkspaceRole)
|
|
4937
|
+
})
|
|
4938
|
+
)
|
|
4939
|
+
});
|
|
4940
|
+
|
|
4941
|
+
// src/emails/design-system-invite.ts
|
|
4921
4942
|
var DesignSystemInviteEmailRecipient = _zod.z.object({
|
|
4922
4943
|
email: _zod.z.string(),
|
|
4923
4944
|
role: WorkspaceRoleSchema
|
|
@@ -5896,5 +5917,6 @@ var PersonalAccessToken = _zod.z.object({
|
|
|
5896
5917
|
|
|
5897
5918
|
|
|
5898
5919
|
|
|
5899
|
-
exports.Address = Address; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProcessStatus = AssetProcessStatus; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.Brand = Brand; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.CodeIntegrationDump = CodeIntegrationDump; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.ComponentElementData = ComponentElementData; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSource = DataSource; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemAccessMode = DesignSystemAccessMode; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemInvitation = DesignSystemInvitation; exports.DesignSystemInvite = DesignSystemInvite; exports.DesignSystemInviteEmailData = DesignSystemInviteEmailData; exports.DesignSystemInviteEmailRecipient = DesignSystemInviteEmailRecipient; exports.DesignSystemMembers = DesignSystemMembers; exports.DesignSystemMembership = DesignSystemMembership; exports.DesignSystemMembershipUpdates = DesignSystemMembershipUpdates; exports.DesignSystemPendingMemberInvitation = DesignSystemPendingMemberInvitation; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUserInvitation = DesignSystemUserInvitation; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationComment = DocumentationComment; exports.DocumentationCommentThread = DocumentationCommentThread; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupV1 = DocumentationGroupV1; exports.DocumentationItemConfigurationV1 = DocumentationItemConfigurationV1; exports.DocumentationItemConfigurationV2 = DocumentationItemConfigurationV2; exports.DocumentationItemHeaderAlignment = DocumentationItemHeaderAlignment; exports.DocumentationItemHeaderAlignmentSchema = DocumentationItemHeaderAlignmentSchema; exports.DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleType; exports.DocumentationItemHeaderImageScaleTypeSchema = DocumentationItemHeaderImageScaleTypeSchema; exports.DocumentationItemHeaderV1 = DocumentationItemHeaderV1; exports.DocumentationItemHeaderV2 = DocumentationItemHeaderV2; exports.DocumentationLinkPreview = DocumentationLinkPreview; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageAnchor = DocumentationPageAnchor; exports.DocumentationPageApproval = DocumentationPageApproval; exports.DocumentationPageApprovalState = DocumentationPageApprovalState; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationSettings = DocumentationSettings; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyTypeSchema = ElementPropertyTypeSchema; exports.ElementPropertyValue = ElementPropertyValue; exports.ElementView = ElementView; exports.ElementViewBaseColumnType = ElementViewBaseColumnType; exports.ElementViewBasePropertyColumn = ElementViewBasePropertyColumn; exports.ElementViewColumn = ElementViewColumn; exports.ElementViewColumnSharedAttributes = ElementViewColumnSharedAttributes; exports.ElementViewColumnType = ElementViewColumnType; exports.ElementViewPropertyDefinitionColumn = ElementViewPropertyDefinitionColumn; exports.ElementViewThemeColumn = ElementViewThemeColumn; exports.Entity = Entity; exports.Event = Event; exports.EventDataSourceImported = EventDataSourceImported; exports.EventVersionReleased = EventVersionReleased; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationChanges = ExportJobDocumentationChanges; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobFindByFilter = ExportJobFindByFilter; exports.ExportJobLogEntry = ExportJobLogEntry; exports.ExportJobLogEntryType = ExportJobLogEntryType; exports.ExportJobPullRequestDestinationResult = ExportJobPullRequestDestinationResult; exports.ExportJobResult = ExportJobResult; exports.ExportJobS3DestinationResult = ExportJobS3DestinationResult; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterDestinationAzure = ExporterDestinationAzure; exports.ExporterDestinationBitbucket = ExporterDestinationBitbucket; exports.ExporterDestinationDocs = ExporterDestinationDocs; exports.ExporterDestinationGithub = ExporterDestinationGithub; exports.ExporterDestinationGitlab = ExporterDestinationGitlab; exports.ExporterDestinationS3 = ExporterDestinationS3; exports.ExporterDetails = ExporterDetails; exports.ExporterFunctionPayload = ExporterFunctionPayload; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValuesCollection = ExporterPropertyValuesCollection; exports.ExporterPulsarDetails = ExporterPulsarDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExtendedIntegrationType = ExtendedIntegrationType; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagMap = FeatureFlagMap; exports.FeaturesSummary = FeaturesSummary; exports.FigmaComponent = FigmaComponent; exports.FigmaComponentBooleanProperty = FigmaComponentBooleanProperty; exports.FigmaComponentImportModel = FigmaComponentImportModel; exports.FigmaComponentImportModelInput = FigmaComponentImportModelInput; exports.FigmaComponentInstanceSwapProperty = FigmaComponentInstanceSwapProperty; exports.FigmaComponentOrigin = FigmaComponentOrigin; exports.FigmaComponentOriginPart = FigmaComponentOriginPart; exports.FigmaComponentProperty = FigmaComponentProperty; exports.FigmaComponentPropertyMap = FigmaComponentPropertyMap; exports.FigmaComponentPropertyOrigin = FigmaComponentPropertyOrigin; exports.FigmaComponentPropertyType = FigmaComponentPropertyType; exports.FigmaComponentTextProperty = FigmaComponentTextProperty; exports.FigmaComponentVariantProperty = FigmaComponentVariantProperty; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaImportContextWithSourcesState = FigmaImportContextWithSourcesState; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceElementData = FigmaNodeReferenceElementData; exports.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaNodeRenderFormat = FigmaNodeRenderFormat; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontTokenData = FontTokenData; exports.FontValue = FontValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.GitBranch = GitBranch; exports.GitIntegrationType = GitIntegrationType; exports.GitObjectsQuery = GitObjectsQuery; exports.GitOrganization = GitOrganization; exports.GitProject = GitProject; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GitRepository = GitRepository; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.HierarchicalElements = HierarchicalElements; exports.IconSet = IconSet; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.Integration = Integration; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationCredentials = IntegrationCredentials; exports.IntegrationCredentialsProfile = IntegrationCredentialsProfile; exports.IntegrationCredentialsState = IntegrationCredentialsState; exports.IntegrationCredentialsType = IntegrationCredentialsType; exports.IntegrationDesignSystem = IntegrationDesignSystem; exports.IntegrationToken = IntegrationToken; exports.IntegrationTokenSchemaOld = IntegrationTokenSchemaOld; exports.IntegrationType = IntegrationType; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.LiveblocksNotificationSettings = LiveblocksNotificationSettings; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetEntityMeta = PageBlockAssetEntityMeta; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBaseV1 = PageBlockBaseV1; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockColorV2 = PageBlockColorV2; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanOptions = PageBlockDefinitionBooleanOptions; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionComponentOptions = PageBlockDefinitionComponentOptions; exports.PageBlockDefinitionFigmaComponentOptions = PageBlockDefinitionFigmaComponentOptions; exports.PageBlockDefinitionImageAspectRatio = PageBlockDefinitionImageAspectRatio; exports.PageBlockDefinitionImageOptions = PageBlockDefinitionImageOptions; exports.PageBlockDefinitionImageWidth = PageBlockDefinitionImageWidth; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionMutiRichTextOptions = PageBlockDefinitionMutiRichTextOptions; exports.PageBlockDefinitionNumberOptions = PageBlockDefinitionNumberOptions; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextEditorOptions = PageBlockDefinitionRichTextEditorOptions; exports.PageBlockDefinitionRichTextEditorPropertyStyle = PageBlockDefinitionRichTextEditorPropertyStyle; exports.PageBlockDefinitionRichTextOptions = PageBlockDefinitionRichTextOptions; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSelectChoice = PageBlockDefinitionSelectChoice; exports.PageBlockDefinitionSelectOptions = PageBlockDefinitionSelectOptions; exports.PageBlockDefinitionSingleSelectPropertyColor = PageBlockDefinitionSingleSelectPropertyColor; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextOptions = PageBlockDefinitionTextOptions; exports.PageBlockDefinitionTextPropertyColor = PageBlockDefinitionTextPropertyColor; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionUntypedPropertyOptions = PageBlockDefinitionUntypedPropertyOptions; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockDefinitionsMap = PageBlockDefinitionsMap; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaComponentBlockConfig = PageBlockFigmaComponentBlockConfig; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockGuideline = PageBlockGuideline; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageReference = PageBlockImageReference; exports.PageBlockImageResourceReference = PageBlockImageResourceReference; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemFigmaComponentValue = PageBlockItemFigmaComponentValue; exports.PageBlockItemFigmaNodeValue = PageBlockItemFigmaNodeValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextEditorListNode = PageBlockItemRichTextEditorListNode; exports.PageBlockItemRichTextEditorNode = PageBlockItemRichTextEditorNode; exports.PageBlockItemRichTextEditorParagraphNode = PageBlockItemRichTextEditorParagraphNode; exports.PageBlockItemRichTextEditorValue = PageBlockItemRichTextEditorValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemSwatch = PageBlockItemSwatch; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; exports.PageBlockItemTableNode = PageBlockItemTableNode; exports.PageBlockItemTableRichTextNode = PageBlockItemTableRichTextNode; exports.PageBlockItemTableRow = PageBlockItemTableRow; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockPreviewContainerSize = PageBlockPreviewContainerSize; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockResourceFrameNodeReference = PageBlockResourceFrameNodeReference; exports.PageBlockSelectedFigmaComponent = PageBlockSelectedFigmaComponent; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockSwatch = PageBlockSwatch; exports.PageBlockTableCellAlignment = PageBlockTableCellAlignment; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeDisplayMode = PageBlockThemeDisplayMode; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageSectionAppearanceV2 = PageSectionAppearanceV2; exports.PageSectionColumnV2 = PageSectionColumnV2; exports.PageSectionEditorModelV2 = PageSectionEditorModelV2; exports.PageSectionItemV2 = PageSectionItemV2; exports.PageSectionPaddingV2 = PageSectionPaddingV2; exports.PageSectionTypeV2 = PageSectionTypeV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.Pipeline = Pipeline; exports.PipelineDestinationExtraType = PipelineDestinationExtraType; exports.PipelineDestinationGitType = PipelineDestinationGitType; exports.PipelineDestinationType = PipelineDestinationType; exports.PipelineEventType = PipelineEventType; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PublishedDocsDump = PublishedDocsDump; exports.PulsarBaseProperty = PulsarBaseProperty; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarCustomBlock = PulsarCustomBlock; exports.PulsarPropertyType = PulsarPropertyType; exports.RESERVED_SLUGS = RESERVED_SLUGS; exports.RESERVED_SLUG_PREFIX = RESERVED_SLUG_PREFIX; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RestoredDocumentationGroup = RestoredDocumentationGroup; exports.RestoredDocumentationPage = RestoredDocumentationPage; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserMinified = UserMinified; exports.UserNotificationSettings = UserNotificationSettings; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserProfileUpdate = UserProfileUpdate; exports.UserSession = UserSession; exports.UserSource = UserSource; exports.UserTest = UserTest; exports.VersionCreationJob = VersionCreationJob; exports.VersionCreationJobStatus = VersionCreationJobStatus; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceConfigurationUpdate = WorkspaceConfigurationUpdate; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceInviteEmailData = WorkspaceInviteEmailData; exports.WorkspaceInviteEmailRecipient = WorkspaceInviteEmailRecipient; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceOAuthRequestSchema = WorkspaceOAuthRequestSchema; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceProfileUpdate = WorkspaceProfileUpdate; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceRoom = WorkspaceRoom; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.areShallowObjectsEqual = areShallowObjectsEqual; exports.buildConstantEnum = buildConstantEnum; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedDesignToken = isImportedDesignToken; exports.isImportedFigmaComponent = isImportedFigmaComponent; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.joinRepeatingSpans = joinRepeatingSpans; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.parseUrl = parseUrl; exports.pickLatestGroupSnapshots = pickLatestGroupSnapshots; exports.pickLatestPageSnapshots = pickLatestPageSnapshots; exports.pickLatestSnapshots = pickLatestSnapshots; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.removeCommentSpans = removeCommentSpans; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlockItemValuesV2 = traversePageBlockItemValuesV2; exports.traversePageBlockItemsV2 = traversePageBlockItemsV2; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traversePageItemsV2 = traversePageItemsV2; exports.traverseStructure = traverseStructure; exports.trimLeadingSlash = trimLeadingSlash; exports.trimTrailingSlash = trimTrailingSlash; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.tryParseUrl = tryParseUrl; exports.uniqueBy = uniqueBy; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
5920
|
+
|
|
5921
|
+
exports.Address = Address; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProcessStatus = AssetProcessStatus; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.Brand = Brand; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.CodeIntegrationDump = CodeIntegrationDump; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.ComponentElementData = ComponentElementData; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSource = DataSource; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemAccessMode = DesignSystemAccessMode; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemInvitation = DesignSystemInvitation; exports.DesignSystemInvite = DesignSystemInvite; exports.DesignSystemInviteEmailData = DesignSystemInviteEmailData; exports.DesignSystemInviteEmailRecipient = DesignSystemInviteEmailRecipient; exports.DesignSystemMembers = DesignSystemMembers; exports.DesignSystemMembership = DesignSystemMembership; exports.DesignSystemMembershipUpdates = DesignSystemMembershipUpdates; exports.DesignSystemPendingMemberInvitation = DesignSystemPendingMemberInvitation; exports.DesignSystemRole = DesignSystemRole; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUserInvitation = DesignSystemUserInvitation; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationComment = DocumentationComment; exports.DocumentationCommentThread = DocumentationCommentThread; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupV1 = DocumentationGroupV1; exports.DocumentationItemConfigurationV1 = DocumentationItemConfigurationV1; exports.DocumentationItemConfigurationV2 = DocumentationItemConfigurationV2; exports.DocumentationItemHeaderAlignment = DocumentationItemHeaderAlignment; exports.DocumentationItemHeaderAlignmentSchema = DocumentationItemHeaderAlignmentSchema; exports.DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleType; exports.DocumentationItemHeaderImageScaleTypeSchema = DocumentationItemHeaderImageScaleTypeSchema; exports.DocumentationItemHeaderV1 = DocumentationItemHeaderV1; exports.DocumentationItemHeaderV2 = DocumentationItemHeaderV2; exports.DocumentationLinkPreview = DocumentationLinkPreview; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageAnchor = DocumentationPageAnchor; exports.DocumentationPageApproval = DocumentationPageApproval; exports.DocumentationPageApprovalState = DocumentationPageApprovalState; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationSettings = DocumentationSettings; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyTypeSchema = ElementPropertyTypeSchema; exports.ElementPropertyValue = ElementPropertyValue; exports.ElementView = ElementView; exports.ElementViewBaseColumnType = ElementViewBaseColumnType; exports.ElementViewBasePropertyColumn = ElementViewBasePropertyColumn; exports.ElementViewColumn = ElementViewColumn; exports.ElementViewColumnSharedAttributes = ElementViewColumnSharedAttributes; exports.ElementViewColumnType = ElementViewColumnType; exports.ElementViewPropertyDefinitionColumn = ElementViewPropertyDefinitionColumn; exports.ElementViewThemeColumn = ElementViewThemeColumn; exports.Entity = Entity; exports.Event = Event; exports.EventDataSourceImported = EventDataSourceImported; exports.EventVersionReleased = EventVersionReleased; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationChanges = ExportJobDocumentationChanges; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobFindByFilter = ExportJobFindByFilter; exports.ExportJobLogEntry = ExportJobLogEntry; exports.ExportJobLogEntryType = ExportJobLogEntryType; exports.ExportJobPullRequestDestinationResult = ExportJobPullRequestDestinationResult; exports.ExportJobResult = ExportJobResult; exports.ExportJobS3DestinationResult = ExportJobS3DestinationResult; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterDestinationAzure = ExporterDestinationAzure; exports.ExporterDestinationBitbucket = ExporterDestinationBitbucket; exports.ExporterDestinationDocs = ExporterDestinationDocs; exports.ExporterDestinationGithub = ExporterDestinationGithub; exports.ExporterDestinationGitlab = ExporterDestinationGitlab; exports.ExporterDestinationS3 = ExporterDestinationS3; exports.ExporterDetails = ExporterDetails; exports.ExporterFunctionPayload = ExporterFunctionPayload; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValuesCollection = ExporterPropertyValuesCollection; exports.ExporterPulsarDetails = ExporterPulsarDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExtendedIntegrationType = ExtendedIntegrationType; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagMap = FeatureFlagMap; exports.FeaturesSummary = FeaturesSummary; exports.FigmaComponent = FigmaComponent; exports.FigmaComponentBooleanProperty = FigmaComponentBooleanProperty; exports.FigmaComponentImportModel = FigmaComponentImportModel; exports.FigmaComponentImportModelInput = FigmaComponentImportModelInput; exports.FigmaComponentInstanceSwapProperty = FigmaComponentInstanceSwapProperty; exports.FigmaComponentOrigin = FigmaComponentOrigin; exports.FigmaComponentOriginPart = FigmaComponentOriginPart; exports.FigmaComponentProperty = FigmaComponentProperty; exports.FigmaComponentPropertyMap = FigmaComponentPropertyMap; exports.FigmaComponentPropertyOrigin = FigmaComponentPropertyOrigin; exports.FigmaComponentPropertyType = FigmaComponentPropertyType; exports.FigmaComponentTextProperty = FigmaComponentTextProperty; exports.FigmaComponentVariantProperty = FigmaComponentVariantProperty; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaImportContextWithSourcesState = FigmaImportContextWithSourcesState; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceElementData = FigmaNodeReferenceElementData; exports.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaNodeRenderFormat = FigmaNodeRenderFormat; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontTokenData = FontTokenData; exports.FontValue = FontValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.GitBranch = GitBranch; exports.GitIntegrationType = GitIntegrationType; exports.GitObjectsQuery = GitObjectsQuery; exports.GitOrganization = GitOrganization; exports.GitProject = GitProject; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GitRepository = GitRepository; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.HierarchicalElements = HierarchicalElements; exports.IconSet = IconSet; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.Integration = Integration; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationCredentials = IntegrationCredentials; exports.IntegrationCredentialsProfile = IntegrationCredentialsProfile; exports.IntegrationCredentialsState = IntegrationCredentialsState; exports.IntegrationCredentialsType = IntegrationCredentialsType; exports.IntegrationDesignSystem = IntegrationDesignSystem; exports.IntegrationToken = IntegrationToken; exports.IntegrationTokenSchemaOld = IntegrationTokenSchemaOld; exports.IntegrationType = IntegrationType; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.LiveblocksNotificationSettings = LiveblocksNotificationSettings; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetEntityMeta = PageBlockAssetEntityMeta; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBaseV1 = PageBlockBaseV1; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockColorV2 = PageBlockColorV2; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanOptions = PageBlockDefinitionBooleanOptions; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionComponentOptions = PageBlockDefinitionComponentOptions; exports.PageBlockDefinitionFigmaComponentOptions = PageBlockDefinitionFigmaComponentOptions; exports.PageBlockDefinitionImageAspectRatio = PageBlockDefinitionImageAspectRatio; exports.PageBlockDefinitionImageOptions = PageBlockDefinitionImageOptions; exports.PageBlockDefinitionImageWidth = PageBlockDefinitionImageWidth; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionMutiRichTextOptions = PageBlockDefinitionMutiRichTextOptions; exports.PageBlockDefinitionNumberOptions = PageBlockDefinitionNumberOptions; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextEditorOptions = PageBlockDefinitionRichTextEditorOptions; exports.PageBlockDefinitionRichTextEditorPropertyStyle = PageBlockDefinitionRichTextEditorPropertyStyle; exports.PageBlockDefinitionRichTextOptions = PageBlockDefinitionRichTextOptions; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSelectChoice = PageBlockDefinitionSelectChoice; exports.PageBlockDefinitionSelectOptions = PageBlockDefinitionSelectOptions; exports.PageBlockDefinitionSingleSelectPropertyColor = PageBlockDefinitionSingleSelectPropertyColor; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextOptions = PageBlockDefinitionTextOptions; exports.PageBlockDefinitionTextPropertyColor = PageBlockDefinitionTextPropertyColor; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionUntypedPropertyOptions = PageBlockDefinitionUntypedPropertyOptions; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockDefinitionsMap = PageBlockDefinitionsMap; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaComponentBlockConfig = PageBlockFigmaComponentBlockConfig; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockGuideline = PageBlockGuideline; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageReference = PageBlockImageReference; exports.PageBlockImageResourceReference = PageBlockImageResourceReference; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemFigmaComponentValue = PageBlockItemFigmaComponentValue; exports.PageBlockItemFigmaNodeValue = PageBlockItemFigmaNodeValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextEditorListNode = PageBlockItemRichTextEditorListNode; exports.PageBlockItemRichTextEditorNode = PageBlockItemRichTextEditorNode; exports.PageBlockItemRichTextEditorParagraphNode = PageBlockItemRichTextEditorParagraphNode; exports.PageBlockItemRichTextEditorValue = PageBlockItemRichTextEditorValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemSwatch = PageBlockItemSwatch; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; exports.PageBlockItemTableNode = PageBlockItemTableNode; exports.PageBlockItemTableRichTextNode = PageBlockItemTableRichTextNode; exports.PageBlockItemTableRow = PageBlockItemTableRow; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockPreviewContainerSize = PageBlockPreviewContainerSize; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockResourceFrameNodeReference = PageBlockResourceFrameNodeReference; exports.PageBlockSelectedFigmaComponent = PageBlockSelectedFigmaComponent; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockSwatch = PageBlockSwatch; exports.PageBlockTableCellAlignment = PageBlockTableCellAlignment; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeDisplayMode = PageBlockThemeDisplayMode; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageSectionAppearanceV2 = PageSectionAppearanceV2; exports.PageSectionColumnV2 = PageSectionColumnV2; exports.PageSectionEditorModelV2 = PageSectionEditorModelV2; exports.PageSectionItemV2 = PageSectionItemV2; exports.PageSectionPaddingV2 = PageSectionPaddingV2; exports.PageSectionTypeV2 = PageSectionTypeV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.Pipeline = Pipeline; exports.PipelineDestinationExtraType = PipelineDestinationExtraType; exports.PipelineDestinationGitType = PipelineDestinationGitType; exports.PipelineDestinationType = PipelineDestinationType; exports.PipelineEventType = PipelineEventType; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PublishedDocsDump = PublishedDocsDump; exports.PulsarBaseProperty = PulsarBaseProperty; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarCustomBlock = PulsarCustomBlock; exports.PulsarPropertyType = PulsarPropertyType; exports.RESERVED_SLUGS = RESERVED_SLUGS; exports.RESERVED_SLUG_PREFIX = RESERVED_SLUG_PREFIX; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RestoredDocumentationGroup = RestoredDocumentationGroup; exports.RestoredDocumentationPage = RestoredDocumentationPage; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserMinified = UserMinified; exports.UserNotificationSettings = UserNotificationSettings; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserProfileUpdate = UserProfileUpdate; exports.UserSession = UserSession; exports.UserSource = UserSource; exports.UserTest = UserTest; exports.VersionCreationJob = VersionCreationJob; exports.VersionCreationJobStatus = VersionCreationJobStatus; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceConfigurationUpdate = WorkspaceConfigurationUpdate; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceInviteEmailData = WorkspaceInviteEmailData; exports.WorkspaceInviteEmailRecipient = WorkspaceInviteEmailRecipient; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceOAuthRequestSchema = WorkspaceOAuthRequestSchema; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceProfileUpdate = WorkspaceProfileUpdate; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceRoom = WorkspaceRoom; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.areShallowObjectsEqual = areShallowObjectsEqual; exports.buildConstantEnum = buildConstantEnum; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedDesignToken = isImportedDesignToken; exports.isImportedFigmaComponent = isImportedFigmaComponent; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.joinRepeatingSpans = joinRepeatingSpans; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.parseUrl = parseUrl; exports.pickLatestGroupSnapshots = pickLatestGroupSnapshots; exports.pickLatestPageSnapshots = pickLatestPageSnapshots; exports.pickLatestSnapshots = pickLatestSnapshots; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.removeCommentSpans = removeCommentSpans; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlockItemValuesV2 = traversePageBlockItemValuesV2; exports.traversePageBlockItemsV2 = traversePageBlockItemsV2; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traversePageItemsV2 = traversePageItemsV2; exports.traverseStructure = traverseStructure; exports.trimLeadingSlash = trimLeadingSlash; exports.trimTrailingSlash = trimTrailingSlash; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.tryParseUrl = tryParseUrl; exports.uniqueBy = uniqueBy; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
5900
5922
|
//# sourceMappingURL=index.js.map
|