@supernova-studio/client 0.52.3 → 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.mjs CHANGED
@@ -3775,6 +3775,9 @@ var ExporterDestinationGithub = z125.object({
3775
3775
  // Location
3776
3776
  branch: z125.string(),
3777
3777
  relativePath: nullishToOptional(z125.string()),
3778
+ // Commit metadata
3779
+ commitAuthorName: nullishToOptional(z125.string()),
3780
+ commitAuthorEmail: nullishToOptional(z125.string()),
3778
3781
  // Legacy deprecated fields. Use `credentialId` instead
3779
3782
  connectionId: nullishToOptional(z125.string()),
3780
3783
  userId: nullishToOptional(z125.number())
@@ -3785,6 +3788,9 @@ var ExporterDestinationAzure = z125.object({
3785
3788
  organizationId: z125.string(),
3786
3789
  projectId: z125.string(),
3787
3790
  repositoryId: z125.string(),
3791
+ // Commit metadata
3792
+ commitAuthorName: nullishToOptional(z125.string()),
3793
+ commitAuthorEmail: nullishToOptional(z125.string()),
3788
3794
  // Location
3789
3795
  branch: z125.string(),
3790
3796
  relativePath: nullishToOptional(z125.string()),
@@ -3798,6 +3804,9 @@ var ExporterDestinationGitlab = z125.object({
3798
3804
  credentialId: z125.string().optional(),
3799
3805
  // Repository
3800
3806
  projectId: z125.string(),
3807
+ // Commit metadata
3808
+ commitAuthorName: nullishToOptional(z125.string()),
3809
+ commitAuthorEmail: nullishToOptional(z125.string()),
3801
3810
  // Location
3802
3811
  branch: z125.string(),
3803
3812
  relativePath: nullishToOptional(z125.string()),
@@ -3813,6 +3822,9 @@ var ExporterDestinationBitbucket = z125.object({
3813
3822
  workspaceSlug: z125.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
3814
3823
  projectKey: z125.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
3815
3824
  repoSlug: z125.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
3825
+ // Commit metadata
3826
+ commitAuthorName: nullishToOptional(z125.string()),
3827
+ commitAuthorEmail: nullishToOptional(z125.string()),
3816
3828
  // Location
3817
3829
  branch: z125.string(),
3818
3830
  relativePath: nullishToOptional(z125.string()),
@@ -6751,7 +6763,7 @@ var FrontendVersionRoomYDoc = class {
6751
6763
  persistentId: g.persistentId,
6752
6764
  groupId: g.id
6753
6765
  };
6754
- result.set(g.persistentId, approvalState);
6766
+ result.set(g.id, approvalState);
6755
6767
  }
6756
6768
  return result;
6757
6769
  }