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.
- package/dist/types/chatbot/chatbot-types.d.mts +400 -24
- package/dist/types/chatbot/chatbot-types.d.ts +400 -24
- package/dist/types/chatbot/chatbot-types.js +7 -1
- package/dist/types/chatbot/chatbot-types.js.map +1 -1
- package/dist/types/chatbot/chatbot-types.mjs +5 -2
- package/dist/types/chatbot/chatbot-types.mjs.map +1 -1
- package/dist/types/chatbot/webcomp-types.d.mts +223 -4
- package/dist/types/chatbot/webcomp-types.d.ts +223 -4
- package/dist/util/icon-utils.d.mts +12 -0
- package/dist/util/icon-utils.d.ts +12 -0
- package/dist/util/icon-utils.js +26 -0
- package/dist/util/icon-utils.js.map +1 -0
- package/dist/util/icon-utils.mjs +24 -0
- package/dist/util/icon-utils.mjs.map +1 -0
- package/dist/util/instruction-assistance-utils.d.mts +28 -1
- package/dist/util/instruction-assistance-utils.d.ts +28 -1
- package/dist/util/instruction-assistance-utils.js +56 -8
- package/dist/util/instruction-assistance-utils.js.map +1 -1
- package/dist/util/instruction-assistance-utils.mjs +55 -9
- package/dist/util/instruction-assistance-utils.mjs.map +1 -1
- package/dist/util/server-utils.js +6 -2
- package/dist/util/server-utils.js.map +1 -1
- package/dist/util/server-utils.mjs +6 -2
- package/dist/util/server-utils.mjs.map +1 -1
- package/dist/util/wc-utils.js +1 -1
- package/dist/util/wc-utils.js.map +1 -1
- package/dist/util/wc-utils.mjs +1 -1
- package/dist/util/wc-utils.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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;
|