@mytegroupinc/myte-core 0.0.50 → 0.0.52

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mytegroupinc/myte-core",
3
- "version": "0.0.50",
3
+ "version": "0.0.52",
4
4
  "description": "Myte CLI core implementation.",
5
5
  "type": "commonjs",
6
6
  "main": "cli.js",
@@ -728,13 +728,14 @@ async function main() {
728
728
  }
729
729
 
730
730
  const staleGuardFeedbackId = createdFeedbackIds[4];
731
+ const staleProposalTitle = `${namespace} stale local proposal`;
731
732
  const staleDraft = runCli([
732
733
  "feedback",
733
734
  "edit",
734
735
  "--feedback-id",
735
736
  staleGuardFeedbackId,
736
737
  "--title",
737
- `${namespace} stale local proposal`,
738
+ staleProposalTitle,
738
739
  "--reason",
739
740
  "Harness creates this artifact before a remote revision.",
740
741
  "--json",
@@ -803,7 +804,7 @@ async function main() {
803
804
  ...baseArgs,
804
805
  ], workspace, { apiKey: ownerApiKey }).stdout;
805
806
  assert(
806
- String(forcedStaleApply.feedback?.title || "") === `${namespace} stale proposal`,
807
+ String(forcedStaleApply.feedback?.title || "") === staleProposalTitle,
807
808
  `Owner forced stale override did not apply the intended title: ${JSON.stringify(forcedStaleApply, null, 2)}`,
808
809
  );
809
810
  assert(
@@ -966,9 +967,14 @@ async function main() {
966
967
  );
967
968
  writeCertificationManifest(manifestPath, manifest);
968
969
 
970
+ runCli(
971
+ ["feedback-sync", "--json", ...baseArgs],
972
+ workspace,
973
+ { apiKey: collaboratorWriteKey },
974
+ );
969
975
  for (const feedbackId of createdFeedbackIds) {
970
976
  const draft = runCli([
971
- "feedback",
977
+ "feedback",
972
978
  "status",
973
979
  "--feedback-id",
974
980
  feedbackId,