@supernova-studio/model 0.52.4 → 0.52.5
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 +360 -0
- package/dist/index.d.ts +360 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +16 -0
package/dist/index.js
CHANGED
|
@@ -4261,6 +4261,9 @@ var ExporterDestinationGithub = _zod.z.object({
|
|
|
4261
4261
|
// Location
|
|
4262
4262
|
branch: _zod.z.string(),
|
|
4263
4263
|
relativePath: nullishToOptional(_zod.z.string()),
|
|
4264
|
+
// Commit metadata
|
|
4265
|
+
commitAuthorName: nullishToOptional(_zod.z.string()),
|
|
4266
|
+
commitAuthorEmail: nullishToOptional(_zod.z.string()),
|
|
4264
4267
|
// Legacy deprecated fields. Use `credentialId` instead
|
|
4265
4268
|
connectionId: nullishToOptional(_zod.z.string()),
|
|
4266
4269
|
userId: nullishToOptional(_zod.z.number())
|
|
@@ -4271,6 +4274,9 @@ var ExporterDestinationAzure = _zod.z.object({
|
|
|
4271
4274
|
organizationId: _zod.z.string(),
|
|
4272
4275
|
projectId: _zod.z.string(),
|
|
4273
4276
|
repositoryId: _zod.z.string(),
|
|
4277
|
+
// Commit metadata
|
|
4278
|
+
commitAuthorName: nullishToOptional(_zod.z.string()),
|
|
4279
|
+
commitAuthorEmail: nullishToOptional(_zod.z.string()),
|
|
4274
4280
|
// Location
|
|
4275
4281
|
branch: _zod.z.string(),
|
|
4276
4282
|
relativePath: nullishToOptional(_zod.z.string()),
|
|
@@ -4284,6 +4290,9 @@ var ExporterDestinationGitlab = _zod.z.object({
|
|
|
4284
4290
|
credentialId: _zod.z.string().optional(),
|
|
4285
4291
|
// Repository
|
|
4286
4292
|
projectId: _zod.z.string(),
|
|
4293
|
+
// Commit metadata
|
|
4294
|
+
commitAuthorName: nullishToOptional(_zod.z.string()),
|
|
4295
|
+
commitAuthorEmail: nullishToOptional(_zod.z.string()),
|
|
4287
4296
|
// Location
|
|
4288
4297
|
branch: _zod.z.string(),
|
|
4289
4298
|
relativePath: nullishToOptional(_zod.z.string()),
|
|
@@ -4299,6 +4308,9 @@ var ExporterDestinationBitbucket = _zod.z.object({
|
|
|
4299
4308
|
workspaceSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
|
|
4300
4309
|
projectKey: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
|
|
4301
4310
|
repoSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
|
|
4311
|
+
// Commit metadata
|
|
4312
|
+
commitAuthorName: nullishToOptional(_zod.z.string()),
|
|
4313
|
+
commitAuthorEmail: nullishToOptional(_zod.z.string()),
|
|
4302
4314
|
// Location
|
|
4303
4315
|
branch: _zod.z.string(),
|
|
4304
4316
|
relativePath: nullishToOptional(_zod.z.string()),
|