pika-shared 1.4.1 → 1.4.2

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.
@@ -65,7 +65,9 @@ function getOverridableFeatures(siteFeatures, chatApp, user) {
65
65
  completeExampleInstructionEnabled: false,
66
66
  completeExampleInstructionLine: void 0,
67
67
  jsonOnlyImperativeInstructionEnabled: false,
68
- jsonOnlyImperativeInstructionLine: void 0
68
+ jsonOnlyImperativeInstructionLine: void 0,
69
+ includeTypescriptBackedOutputFormattingRequirements: false,
70
+ typescriptBackedOutputFormattingRequirements: void 0
69
71
  },
70
72
  instructionAugmentation: {
71
73
  enabled: false,
@@ -168,7 +170,9 @@ function getOverridableFeatures(siteFeatures, chatApp, user) {
168
170
  completeExampleInstructionEnabled: feature.completeExampleInstructionLine?.enabled ?? false,
169
171
  completeExampleInstructionLine: feature.completeExampleInstructionLine?.mdLine ?? void 0,
170
172
  jsonOnlyImperativeInstructionEnabled: feature.jsonOnlyImperativeInstructionLine?.enabled ?? false,
171
- jsonOnlyImperativeInstructionLine: feature.jsonOnlyImperativeInstructionLine?.line ?? void 0
173
+ jsonOnlyImperativeInstructionLine: feature.jsonOnlyImperativeInstructionLine?.line ?? void 0,
174
+ includeTypescriptBackedOutputFormattingRequirements: feature.includeTypescriptBackedOutputFormattingRequirements?.enabled ?? false,
175
+ typescriptBackedOutputFormattingRequirements: feature.typescriptBackedOutputFormattingRequirements ?? void 0
172
176
  })
173
177
  );
174
178
  const effectiveInstructionAugmentationFeature = chatApp.override?.features?.instructionAugmentation || chatApp.features?.instructionAugmentation;