@promptlycms/prompts 0.4.1 → 0.5.0
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/README.md +20 -2
- package/dist/cli.js +16 -3
- package/dist/index.cjs +7 -0
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +7 -0
- package/dist/schema.d.cts +1 -1
- package/dist/schema.d.ts +1 -1
- package/dist/{types-DIVyjOlH.d.cts → types-DaIU82yN.d.cts} +11 -6
- package/dist/{types-DIVyjOlH.d.ts → types-DaIU82yN.d.ts} +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -180,6 +180,24 @@ const [first, second] = await promptly.getComposers([
|
|
|
180
180
|
]);
|
|
181
181
|
```
|
|
182
182
|
|
|
183
|
+
### HTML blocks
|
|
184
|
+
|
|
185
|
+
Composers can contain raw HTML blocks (for vendor-specific markup like MSO conditional comments in transactional emails). These surface as a distinct `html_block` segment type:
|
|
186
|
+
|
|
187
|
+
```typescript
|
|
188
|
+
const composer = await promptly.getComposer('my-email-composer', {
|
|
189
|
+
input: { country: 'United Kingdom' },
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
for (const segment of composer.segments) {
|
|
193
|
+
if (segment.type === 'html_block') {
|
|
194
|
+
console.log(segment.html); // raw HTML, byte-exact
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Variable references inside an `html_block` (e.g. `<span data-variable-ref data-field-path="country">`) are interpolated normally during `formatComposer()` / `compose()`. Embedded prompt references inside an `html_block` are passed through opaquely — they aren't resolved as named prompts.
|
|
200
|
+
|
|
183
201
|
## Model auto-detection
|
|
184
202
|
|
|
185
203
|
The SDK automatically resolves models configured in the CMS to the correct AI SDK provider based on the model name prefix:
|
|
@@ -232,7 +250,7 @@ declare module '@promptlycms/prompts' {
|
|
|
232
250
|
}
|
|
233
251
|
```
|
|
234
252
|
|
|
235
|
-
With this file present, `getPrompt()` and `getPrompts()` return typed `userMessage` functions with autocomplete. `getComposer()` and `getComposers()`
|
|
253
|
+
With this file present, `getPrompt()` and `getPrompts()` return typed `userMessage` functions with autocomplete. `getComposer()` and `getComposers()` only accept generated composer IDs, with typed `input` and named prompt properties. Unknown prompt IDs fall back to `Record<string, unknown>`.
|
|
236
254
|
|
|
237
255
|
Add the generated file to version control so types are available without running codegen in CI. Re-run `npx promptly generate` whenever you add, remove, or rename template variables in the CMS.
|
|
238
256
|
|
|
@@ -286,7 +304,7 @@ Fetch a single composer. Returns `ComposerResult` with named prompt properties,
|
|
|
286
304
|
|
|
287
305
|
| Option | Type | Description |
|
|
288
306
|
|-----------|---------------------------|----------------------|
|
|
289
|
-
| `input` | `Record<string,
|
|
307
|
+
| `input` | `Record<string, unknown>` | Template variables to interpolate |
|
|
290
308
|
| `version` | `string` | Specific version to fetch (default: latest) |
|
|
291
309
|
|
|
292
310
|
### `client.getComposers(entries)`
|
package/dist/cli.js
CHANGED
|
@@ -148,6 +148,10 @@ var extractComposerVariables = (composer) => {
|
|
|
148
148
|
for (const v of extractStaticSegmentVariables(segment.content)) {
|
|
149
149
|
vars.add(v);
|
|
150
150
|
}
|
|
151
|
+
} else if (segment.type === "html_block") {
|
|
152
|
+
for (const v of extractStaticSegmentVariables(segment.html)) {
|
|
153
|
+
vars.add(v);
|
|
154
|
+
}
|
|
151
155
|
}
|
|
152
156
|
}
|
|
153
157
|
return [...vars];
|
|
@@ -277,6 +281,13 @@ var buildSchemaMap = (schema) => {
|
|
|
277
281
|
}
|
|
278
282
|
return map;
|
|
279
283
|
};
|
|
284
|
+
var TYPE_IDENTIFIER_RE = /^[A-Za-z_$][A-Za-z0-9_$]*$/;
|
|
285
|
+
var typePropertyKey = (key) => {
|
|
286
|
+
if (TYPE_IDENTIFIER_RE.test(key)) {
|
|
287
|
+
return key;
|
|
288
|
+
}
|
|
289
|
+
return `'${key.replaceAll("\\", "\\\\").replaceAll("'", "\\'")}'`;
|
|
290
|
+
};
|
|
280
291
|
var generateMappedTypeBlock = (group, indent, schemaMap = /* @__PURE__ */ new Map()) => {
|
|
281
292
|
const lines = [];
|
|
282
293
|
const { versions, variables } = group;
|
|
@@ -358,6 +369,7 @@ var generateTypeDeclaration = (prompts, composers = []) => {
|
|
|
358
369
|
lines.push(" interface ComposerVariableMap {");
|
|
359
370
|
for (const composer of composers) {
|
|
360
371
|
const variables = extractComposerVariables(composer);
|
|
372
|
+
const composerKey = typePropertyKey(composer.composerId);
|
|
361
373
|
const schemaMap = buildSchemaMap(composer.config.schema);
|
|
362
374
|
const versions = ["'latest'"];
|
|
363
375
|
if (composer.publishedVersions) {
|
|
@@ -367,7 +379,7 @@ var generateTypeDeclaration = (prompts, composers = []) => {
|
|
|
367
379
|
} else {
|
|
368
380
|
versions.push(`'${composer.version}'`);
|
|
369
381
|
}
|
|
370
|
-
lines.push(`
|
|
382
|
+
lines.push(` ${composerKey}: {`);
|
|
371
383
|
if (versions.length === 1) {
|
|
372
384
|
if (variables.length === 0) {
|
|
373
385
|
lines.push(` [V in ${versions[0]}]: Record<string, never>;`);
|
|
@@ -400,11 +412,12 @@ var generateTypeDeclaration = (prompts, composers = []) => {
|
|
|
400
412
|
lines.push(" interface ComposerPromptMap {");
|
|
401
413
|
for (const composer of composers) {
|
|
402
414
|
const names = extractComposerPromptNames(composer);
|
|
415
|
+
const composerKey = typePropertyKey(composer.composerId);
|
|
403
416
|
if (names.length === 0) {
|
|
404
|
-
lines.push(`
|
|
417
|
+
lines.push(` ${composerKey}: never;`);
|
|
405
418
|
} else {
|
|
406
419
|
const union = names.map((n) => `'${n}'`).join(" | ");
|
|
407
|
-
lines.push(`
|
|
420
|
+
lines.push(` ${composerKey}: ${union};`);
|
|
408
421
|
}
|
|
409
422
|
}
|
|
410
423
|
lines.push(" }");
|
package/dist/index.cjs
CHANGED
|
@@ -275,6 +275,13 @@ var createPromptlyClient = (config) => {
|
|
|
275
275
|
});
|
|
276
276
|
continue;
|
|
277
277
|
}
|
|
278
|
+
if (segment.type === "html_block") {
|
|
279
|
+
processedSegments.push({
|
|
280
|
+
type: "static",
|
|
281
|
+
content: interpolateStaticSegment(segment.html, input)
|
|
282
|
+
});
|
|
283
|
+
continue;
|
|
284
|
+
}
|
|
278
285
|
const camelName = toCamelCase(segment.promptName);
|
|
279
286
|
if (!promptsByName.has(camelName)) {
|
|
280
287
|
const segmentConfig = segment.config;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as PromptlyClientConfig, a as PromptlyClient, E as ErrorCode } from './types-
|
|
2
|
-
export { C as ComposerConfig, b as ComposerFormatFn, c as ComposerGenerateFn, d as
|
|
1
|
+
import { P as PromptlyClientConfig, a as PromptlyClient, E as ErrorCode } from './types-DaIU82yN.cjs';
|
|
2
|
+
export { C as ComposerConfig, b as ComposerFormatFn, c as ComposerGenerateFn, d as ComposerHtmlBlockSegment, e as ComposerId, f as ComposerInputFor, g as ComposerPrompt, h as ComposerPromptMap, i as ComposerPromptNamesFor, j as ComposerPromptSegment, k as ComposerRequest, l as ComposerResponse, m as ComposerResult, n as ComposerSegment, o as ComposerStaticSegment, p as ComposerVariableMap, q as ComposerVersion, r as ErrorResponse, F as FormatInput, G as GetComposerOptions, s as GetOptions, t as PromptConfig, u as PromptId, v as PromptMessage, w as PromptRequest, x as PromptResponse, y as PromptResult, z as PromptVariableMap, A as PromptVersion, B as PublishedVersion, S as SchemaField, D as SchemaFieldParams, V as ValidationRule } from './types-DaIU82yN.cjs';
|
|
3
3
|
import 'ai';
|
|
4
4
|
|
|
5
5
|
declare const getSdkModelId: (modelId: string) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as PromptlyClientConfig, a as PromptlyClient, E as ErrorCode } from './types-
|
|
2
|
-
export { C as ComposerConfig, b as ComposerFormatFn, c as ComposerGenerateFn, d as
|
|
1
|
+
import { P as PromptlyClientConfig, a as PromptlyClient, E as ErrorCode } from './types-DaIU82yN.js';
|
|
2
|
+
export { C as ComposerConfig, b as ComposerFormatFn, c as ComposerGenerateFn, d as ComposerHtmlBlockSegment, e as ComposerId, f as ComposerInputFor, g as ComposerPrompt, h as ComposerPromptMap, i as ComposerPromptNamesFor, j as ComposerPromptSegment, k as ComposerRequest, l as ComposerResponse, m as ComposerResult, n as ComposerSegment, o as ComposerStaticSegment, p as ComposerVariableMap, q as ComposerVersion, r as ErrorResponse, F as FormatInput, G as GetComposerOptions, s as GetOptions, t as PromptConfig, u as PromptId, v as PromptMessage, w as PromptRequest, x as PromptResponse, y as PromptResult, z as PromptVariableMap, A as PromptVersion, B as PublishedVersion, S as SchemaField, D as SchemaFieldParams, V as ValidationRule } from './types-DaIU82yN.js';
|
|
3
3
|
import 'ai';
|
|
4
4
|
|
|
5
5
|
declare const getSdkModelId: (modelId: string) => string;
|
package/dist/index.js
CHANGED
|
@@ -234,6 +234,13 @@ var createPromptlyClient = (config) => {
|
|
|
234
234
|
});
|
|
235
235
|
continue;
|
|
236
236
|
}
|
|
237
|
+
if (segment.type === "html_block") {
|
|
238
|
+
processedSegments.push({
|
|
239
|
+
type: "static",
|
|
240
|
+
content: interpolateStaticSegment(segment.html, input)
|
|
241
|
+
});
|
|
242
|
+
continue;
|
|
243
|
+
}
|
|
237
244
|
const camelName = toCamelCase(segment.promptName);
|
|
238
245
|
if (!promptsByName.has(camelName)) {
|
|
239
246
|
const segmentConfig = segment.config;
|
package/dist/schema.d.cts
CHANGED
package/dist/schema.d.ts
CHANGED
|
@@ -108,7 +108,11 @@ type ComposerPromptSegment = {
|
|
|
108
108
|
userMessage: string | null;
|
|
109
109
|
config: Record<string, unknown>;
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type ComposerHtmlBlockSegment = {
|
|
112
|
+
type: 'html_block';
|
|
113
|
+
html: string;
|
|
114
|
+
};
|
|
115
|
+
type ComposerSegment = ComposerStaticSegment | ComposerPromptSegment | ComposerHtmlBlockSegment;
|
|
112
116
|
type ComposerConfig = {
|
|
113
117
|
schema: SchemaField[];
|
|
114
118
|
inputData: unknown;
|
|
@@ -128,7 +132,8 @@ interface ComposerVariableMap {
|
|
|
128
132
|
}
|
|
129
133
|
interface ComposerPromptMap {
|
|
130
134
|
}
|
|
131
|
-
type
|
|
135
|
+
type KnownComposerId = Extract<keyof ComposerVariableMap, string>;
|
|
136
|
+
type ComposerId = [KnownComposerId] extends [never] ? string : KnownComposerId;
|
|
132
137
|
type ComposerVersion<Id extends string> = Id extends keyof ComposerVariableMap ? Exclude<keyof ComposerVariableMap[Id], 'latest'> : string;
|
|
133
138
|
type ComposerInputFor<Id extends string, Ver extends string = 'latest'> = Id extends keyof ComposerVariableMap ? Ver extends keyof ComposerVariableMap[Id] ? ComposerVariableMap[Id][Ver] : Record<string, unknown> : Record<string, unknown>;
|
|
134
139
|
type ComposerPromptNamesFor<Id extends string> = Id extends keyof ComposerPromptMap ? ComposerPromptMap[Id] : string;
|
|
@@ -159,12 +164,12 @@ type ComposerResult<Names extends string = string> = {
|
|
|
159
164
|
} & {
|
|
160
165
|
[K in Names]: ComposerPrompt;
|
|
161
166
|
};
|
|
162
|
-
type GetComposerOptions<Id extends string =
|
|
167
|
+
type GetComposerOptions<Id extends string = ComposerId, V extends string = 'latest'> = {
|
|
163
168
|
input?: ComposerInputFor<Id, V>;
|
|
164
169
|
version?: V;
|
|
165
170
|
};
|
|
166
171
|
type ComposerRequest = {
|
|
167
|
-
composerId:
|
|
172
|
+
composerId: ComposerId;
|
|
168
173
|
input?: Record<string, unknown>;
|
|
169
174
|
version?: string;
|
|
170
175
|
};
|
|
@@ -191,8 +196,8 @@ type GetOptions<V extends string = string> = {
|
|
|
191
196
|
type PromptlyClient = {
|
|
192
197
|
getPrompt: <T extends string, V extends PromptVersion<T> | 'latest' = 'latest'>(promptId: T, options?: GetOptions<V>) => Promise<PromptResult<VariablesFor<T, V>>>;
|
|
193
198
|
getPrompts: <const T extends readonly PromptRequest[]>(entries: T) => Promise<GetPromptsResults<T>>;
|
|
194
|
-
getComposer: <T extends
|
|
199
|
+
getComposer: <T extends ComposerId, V extends ComposerVersion<T> | 'latest' = 'latest'>(composerId: T, options?: GetComposerOptions<T, V>) => Promise<ComposerResult<ComposerPromptNamesFor<T>>>;
|
|
195
200
|
getComposers: <const T extends readonly ComposerRequest[]>(entries: T) => Promise<GetComposersResults<T>>;
|
|
196
201
|
};
|
|
197
202
|
|
|
198
|
-
export type {
|
|
203
|
+
export type { PromptVersion as A, PublishedVersion as B, ComposerConfig as C, SchemaFieldParams as D, ErrorCode as E, FormatInput as F, GetComposerOptions as G, PromptlyClientConfig as P, SchemaField as S, ValidationRule as V, PromptlyClient as a, ComposerFormatFn as b, ComposerGenerateFn as c, ComposerHtmlBlockSegment as d, ComposerId as e, ComposerInputFor as f, ComposerPrompt as g, ComposerPromptMap as h, ComposerPromptNamesFor as i, ComposerPromptSegment as j, ComposerRequest as k, ComposerResponse as l, ComposerResult as m, ComposerSegment as n, ComposerStaticSegment as o, ComposerVariableMap as p, ComposerVersion as q, ErrorResponse as r, GetOptions as s, PromptConfig as t, PromptId as u, PromptMessage as v, PromptRequest as w, PromptResponse as x, PromptResult as y, PromptVariableMap as z };
|
|
@@ -108,7 +108,11 @@ type ComposerPromptSegment = {
|
|
|
108
108
|
userMessage: string | null;
|
|
109
109
|
config: Record<string, unknown>;
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type ComposerHtmlBlockSegment = {
|
|
112
|
+
type: 'html_block';
|
|
113
|
+
html: string;
|
|
114
|
+
};
|
|
115
|
+
type ComposerSegment = ComposerStaticSegment | ComposerPromptSegment | ComposerHtmlBlockSegment;
|
|
112
116
|
type ComposerConfig = {
|
|
113
117
|
schema: SchemaField[];
|
|
114
118
|
inputData: unknown;
|
|
@@ -128,7 +132,8 @@ interface ComposerVariableMap {
|
|
|
128
132
|
}
|
|
129
133
|
interface ComposerPromptMap {
|
|
130
134
|
}
|
|
131
|
-
type
|
|
135
|
+
type KnownComposerId = Extract<keyof ComposerVariableMap, string>;
|
|
136
|
+
type ComposerId = [KnownComposerId] extends [never] ? string : KnownComposerId;
|
|
132
137
|
type ComposerVersion<Id extends string> = Id extends keyof ComposerVariableMap ? Exclude<keyof ComposerVariableMap[Id], 'latest'> : string;
|
|
133
138
|
type ComposerInputFor<Id extends string, Ver extends string = 'latest'> = Id extends keyof ComposerVariableMap ? Ver extends keyof ComposerVariableMap[Id] ? ComposerVariableMap[Id][Ver] : Record<string, unknown> : Record<string, unknown>;
|
|
134
139
|
type ComposerPromptNamesFor<Id extends string> = Id extends keyof ComposerPromptMap ? ComposerPromptMap[Id] : string;
|
|
@@ -159,12 +164,12 @@ type ComposerResult<Names extends string = string> = {
|
|
|
159
164
|
} & {
|
|
160
165
|
[K in Names]: ComposerPrompt;
|
|
161
166
|
};
|
|
162
|
-
type GetComposerOptions<Id extends string =
|
|
167
|
+
type GetComposerOptions<Id extends string = ComposerId, V extends string = 'latest'> = {
|
|
163
168
|
input?: ComposerInputFor<Id, V>;
|
|
164
169
|
version?: V;
|
|
165
170
|
};
|
|
166
171
|
type ComposerRequest = {
|
|
167
|
-
composerId:
|
|
172
|
+
composerId: ComposerId;
|
|
168
173
|
input?: Record<string, unknown>;
|
|
169
174
|
version?: string;
|
|
170
175
|
};
|
|
@@ -191,8 +196,8 @@ type GetOptions<V extends string = string> = {
|
|
|
191
196
|
type PromptlyClient = {
|
|
192
197
|
getPrompt: <T extends string, V extends PromptVersion<T> | 'latest' = 'latest'>(promptId: T, options?: GetOptions<V>) => Promise<PromptResult<VariablesFor<T, V>>>;
|
|
193
198
|
getPrompts: <const T extends readonly PromptRequest[]>(entries: T) => Promise<GetPromptsResults<T>>;
|
|
194
|
-
getComposer: <T extends
|
|
199
|
+
getComposer: <T extends ComposerId, V extends ComposerVersion<T> | 'latest' = 'latest'>(composerId: T, options?: GetComposerOptions<T, V>) => Promise<ComposerResult<ComposerPromptNamesFor<T>>>;
|
|
195
200
|
getComposers: <const T extends readonly ComposerRequest[]>(entries: T) => Promise<GetComposersResults<T>>;
|
|
196
201
|
};
|
|
197
202
|
|
|
198
|
-
export type {
|
|
203
|
+
export type { PromptVersion as A, PublishedVersion as B, ComposerConfig as C, SchemaFieldParams as D, ErrorCode as E, FormatInput as F, GetComposerOptions as G, PromptlyClientConfig as P, SchemaField as S, ValidationRule as V, PromptlyClient as a, ComposerFormatFn as b, ComposerGenerateFn as c, ComposerHtmlBlockSegment as d, ComposerId as e, ComposerInputFor as f, ComposerPrompt as g, ComposerPromptMap as h, ComposerPromptNamesFor as i, ComposerPromptSegment as j, ComposerRequest as k, ComposerResponse as l, ComposerResult as m, ComposerSegment as n, ComposerStaticSegment as o, ComposerVariableMap as p, ComposerVersion as q, ErrorResponse as r, GetOptions as s, PromptConfig as t, PromptId as u, PromptMessage as v, PromptRequest as w, PromptResponse as x, PromptResult as y, PromptVariableMap as z };
|