@byline/ai 3.17.1 → 3.18.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.
@@ -6,409 +6,409 @@
6
6
  * Copyright (c) Infonomic Company Limited
7
7
  */
8
8
  export declare const geminiGenerationSchema2: {
9
- readonly $schema: "http://json-schema.org/draft-07/schema#";
10
- readonly type: "object";
9
+ readonly $schema: 'http://json-schema.org/draft-07/schema#';
10
+ readonly type: 'object';
11
11
  readonly additionalProperties: false;
12
- readonly required: readonly ["title", "blocks"];
12
+ readonly required: readonly ['title', 'blocks'];
13
13
  readonly properties: {
14
14
  readonly title: {
15
- readonly type: readonly ["string", "null"];
15
+ readonly type: readonly ['string', 'null'];
16
16
  };
17
17
  readonly blocks: {
18
- readonly type: "array";
18
+ readonly type: 'array';
19
19
  readonly items: {
20
- readonly $ref: "#/$defs/Block";
20
+ readonly $ref: '#/$defs/Block';
21
21
  };
22
22
  };
23
23
  };
24
24
  readonly $defs: {
25
25
  readonly Marks: {
26
- readonly type: "object";
26
+ readonly type: 'object';
27
27
  readonly additionalProperties: false;
28
- readonly required: readonly ["bold", "italic", "underline", "code"];
28
+ readonly required: readonly ['bold', 'italic', 'underline', 'code'];
29
29
  readonly properties: {
30
30
  readonly bold: {
31
- readonly type: "boolean";
31
+ readonly type: 'boolean';
32
32
  };
33
33
  readonly italic: {
34
- readonly type: "boolean";
34
+ readonly type: 'boolean';
35
35
  };
36
36
  readonly underline: {
37
- readonly type: "boolean";
37
+ readonly type: 'boolean';
38
38
  };
39
39
  readonly code: {
40
- readonly type: "boolean";
40
+ readonly type: 'boolean';
41
41
  };
42
42
  };
43
43
  };
44
44
  readonly InlineText: {
45
- readonly type: "object";
45
+ readonly type: 'object';
46
46
  readonly additionalProperties: false;
47
- readonly required: readonly ["kind", "text", "marks"];
47
+ readonly required: readonly ['kind', 'text', 'marks'];
48
48
  readonly properties: {
49
49
  readonly kind: {
50
- readonly const: "text";
50
+ readonly const: 'text';
51
51
  };
52
52
  readonly text: {
53
- readonly type: "string";
53
+ readonly type: 'string';
54
54
  };
55
55
  readonly marks: {
56
- readonly $ref: "#/$defs/Marks";
56
+ readonly $ref: '#/$defs/Marks';
57
57
  };
58
58
  };
59
59
  };
60
60
  readonly InlineLink: {
61
- readonly type: "object";
61
+ readonly type: 'object';
62
62
  readonly additionalProperties: false;
63
- readonly required: readonly ["kind", "url", "text", "marks"];
63
+ readonly required: readonly ['kind', 'url', 'text', 'marks'];
64
64
  readonly properties: {
65
65
  readonly kind: {
66
- readonly const: "link";
66
+ readonly const: 'link';
67
67
  };
68
68
  readonly url: {
69
- readonly type: "string";
69
+ readonly type: 'string';
70
70
  };
71
71
  readonly text: {
72
- readonly type: "string";
72
+ readonly type: 'string';
73
73
  };
74
74
  readonly marks: {
75
- readonly $ref: "#/$defs/Marks";
75
+ readonly $ref: '#/$defs/Marks';
76
76
  };
77
77
  };
78
78
  };
79
79
  readonly InlineBr: {
80
- readonly type: "object";
80
+ readonly type: 'object';
81
81
  readonly additionalProperties: false;
82
- readonly required: readonly ["kind"];
82
+ readonly required: readonly ['kind'];
83
83
  readonly properties: {
84
84
  readonly kind: {
85
- readonly const: "br";
85
+ readonly const: 'br';
86
86
  };
87
87
  };
88
88
  };
89
89
  readonly Inline: {
90
90
  readonly anyOf: readonly [{
91
- readonly $ref: "#/$defs/InlineText";
91
+ readonly $ref: '#/$defs/InlineText';
92
92
  }, {
93
- readonly $ref: "#/$defs/InlineLink";
93
+ readonly $ref: '#/$defs/InlineLink';
94
94
  }, {
95
- readonly $ref: "#/$defs/InlineBr";
95
+ readonly $ref: '#/$defs/InlineBr';
96
96
  }];
97
97
  };
98
98
  readonly Paragraph: {
99
- readonly type: "object";
99
+ readonly type: 'object';
100
100
  readonly additionalProperties: false;
101
- readonly required: readonly ["kind", "align", "inlines"];
101
+ readonly required: readonly ['kind', 'align', 'inlines'];
102
102
  readonly properties: {
103
103
  readonly kind: {
104
- readonly const: "paragraph";
104
+ readonly const: 'paragraph';
105
105
  };
106
106
  readonly align: {
107
- readonly enum: readonly ["start", "center", "right"];
107
+ readonly enum: readonly ['start', 'center', 'right'];
108
108
  };
109
109
  readonly inlines: {
110
- readonly type: "array";
110
+ readonly type: 'array';
111
111
  readonly items: {
112
- readonly $ref: "#/$defs/Inline";
112
+ readonly $ref: '#/$defs/Inline';
113
113
  };
114
114
  };
115
115
  };
116
116
  };
117
117
  readonly Heading: {
118
- readonly type: "object";
118
+ readonly type: 'object';
119
119
  readonly additionalProperties: false;
120
- readonly required: readonly ["kind", "level", "inlines"];
120
+ readonly required: readonly ['kind', 'level', 'inlines'];
121
121
  readonly properties: {
122
122
  readonly kind: {
123
- readonly const: "heading";
123
+ readonly const: 'heading';
124
124
  };
125
125
  readonly level: {
126
126
  readonly enum: readonly [1, 2, 3];
127
127
  };
128
128
  readonly inlines: {
129
- readonly type: "array";
129
+ readonly type: 'array';
130
130
  readonly items: {
131
- readonly $ref: "#/$defs/Inline";
131
+ readonly $ref: '#/$defs/Inline';
132
132
  };
133
133
  };
134
134
  };
135
135
  };
136
136
  readonly Quote: {
137
- readonly type: "object";
137
+ readonly type: 'object';
138
138
  readonly additionalProperties: false;
139
- readonly required: readonly ["kind", "blocks"];
139
+ readonly required: readonly ['kind', 'blocks'];
140
140
  readonly properties: {
141
141
  readonly kind: {
142
- readonly const: "quote";
142
+ readonly const: 'quote';
143
143
  };
144
144
  readonly blocks: {
145
- readonly type: "array";
145
+ readonly type: 'array';
146
146
  readonly items: {
147
- readonly $ref: "#/$defs/Paragraph";
147
+ readonly $ref: '#/$defs/Paragraph';
148
148
  };
149
149
  };
150
150
  };
151
151
  };
152
152
  readonly Hr: {
153
- readonly type: "object";
153
+ readonly type: 'object';
154
154
  readonly additionalProperties: false;
155
- readonly required: readonly ["kind"];
155
+ readonly required: readonly ['kind'];
156
156
  readonly properties: {
157
157
  readonly kind: {
158
- readonly const: "hr";
158
+ readonly const: 'hr';
159
159
  };
160
160
  };
161
161
  };
162
162
  readonly ListItem: {
163
- readonly type: "object";
163
+ readonly type: 'object';
164
164
  readonly additionalProperties: false;
165
- readonly required: readonly ["indent", "blocks"];
165
+ readonly required: readonly ['indent', 'blocks'];
166
166
  readonly properties: {
167
167
  readonly indent: {
168
168
  readonly enum: readonly [0, 1];
169
169
  };
170
170
  readonly blocks: {
171
- readonly type: "array";
171
+ readonly type: 'array';
172
172
  readonly items: {
173
- readonly $ref: "#/$defs/Paragraph";
173
+ readonly $ref: '#/$defs/Paragraph';
174
174
  };
175
175
  };
176
176
  };
177
177
  };
178
178
  readonly List: {
179
- readonly type: "object";
179
+ readonly type: 'object';
180
180
  readonly additionalProperties: false;
181
- readonly required: readonly ["kind", "listType", "items"];
181
+ readonly required: readonly ['kind', 'listType', 'items'];
182
182
  readonly properties: {
183
183
  readonly kind: {
184
- readonly const: "list";
184
+ readonly const: 'list';
185
185
  };
186
186
  readonly listType: {
187
- readonly enum: readonly ["bullet", "number"];
187
+ readonly enum: readonly ['bullet', 'number'];
188
188
  };
189
189
  readonly items: {
190
- readonly type: "array";
190
+ readonly type: 'array';
191
191
  readonly items: {
192
- readonly $ref: "#/$defs/ListItem";
192
+ readonly $ref: '#/$defs/ListItem';
193
193
  };
194
194
  };
195
195
  };
196
196
  };
197
197
  readonly Block: {
198
198
  readonly anyOf: readonly [{
199
- readonly $ref: "#/$defs/Heading";
199
+ readonly $ref: '#/$defs/Heading';
200
200
  }, {
201
- readonly $ref: "#/$defs/Paragraph";
201
+ readonly $ref: '#/$defs/Paragraph';
202
202
  }, {
203
- readonly $ref: "#/$defs/List";
203
+ readonly $ref: '#/$defs/List';
204
204
  }, {
205
- readonly $ref: "#/$defs/Quote";
205
+ readonly $ref: '#/$defs/Quote';
206
206
  }, {
207
- readonly $ref: "#/$defs/Hr";
207
+ readonly $ref: '#/$defs/Hr';
208
208
  }];
209
209
  };
210
210
  };
211
211
  };
212
212
  export declare const geminiGenerationSchema: {
213
- readonly $schema: "http://json-schema.org/draft-07/schema#";
214
- readonly type: "object";
213
+ readonly $schema: 'http://json-schema.org/draft-07/schema#';
214
+ readonly type: 'object';
215
215
  readonly additionalProperties: false;
216
- readonly required: readonly ["title", "blocks"];
216
+ readonly required: readonly ['title', 'blocks'];
217
217
  readonly properties: {
218
218
  readonly title: {
219
- readonly type: readonly ["string", "null"];
219
+ readonly type: readonly ['string', 'null'];
220
220
  };
221
221
  readonly blocks: {
222
- readonly type: "array";
222
+ readonly type: 'array';
223
223
  readonly items: {
224
- readonly $ref: "#/$defs/Block";
224
+ readonly $ref: '#/$defs/Block';
225
225
  };
226
226
  };
227
227
  };
228
228
  readonly $defs: {
229
229
  readonly Marks: {
230
- readonly type: "object";
230
+ readonly type: 'object';
231
231
  readonly additionalProperties: false;
232
- readonly required: readonly ["bold", "italic", "underline", "code"];
232
+ readonly required: readonly ['bold', 'italic', 'underline', 'code'];
233
233
  readonly properties: {
234
234
  readonly bold: {
235
- readonly type: "boolean";
235
+ readonly type: 'boolean';
236
236
  };
237
237
  readonly italic: {
238
- readonly type: "boolean";
238
+ readonly type: 'boolean';
239
239
  };
240
240
  readonly underline: {
241
- readonly type: "boolean";
241
+ readonly type: 'boolean';
242
242
  };
243
243
  readonly code: {
244
- readonly type: "boolean";
244
+ readonly type: 'boolean';
245
245
  };
246
246
  };
247
247
  };
248
248
  readonly InlineText: {
249
- readonly type: "object";
249
+ readonly type: 'object';
250
250
  readonly additionalProperties: false;
251
- readonly required: readonly ["kind", "text", "marks"];
251
+ readonly required: readonly ['kind', 'text', 'marks'];
252
252
  readonly properties: {
253
253
  readonly kind: {
254
- readonly const: "text";
254
+ readonly const: 'text';
255
255
  };
256
256
  readonly text: {
257
- readonly type: "string";
257
+ readonly type: 'string';
258
258
  };
259
259
  readonly marks: {
260
- readonly $ref: "#/$defs/Marks";
260
+ readonly $ref: '#/$defs/Marks';
261
261
  };
262
262
  };
263
263
  };
264
264
  readonly InlineLink: {
265
- readonly type: "object";
265
+ readonly type: 'object';
266
266
  readonly additionalProperties: false;
267
- readonly required: readonly ["kind", "url", "text", "marks"];
267
+ readonly required: readonly ['kind', 'url', 'text', 'marks'];
268
268
  readonly properties: {
269
269
  readonly kind: {
270
- readonly const: "link";
270
+ readonly const: 'link';
271
271
  };
272
272
  readonly url: {
273
- readonly type: "string";
273
+ readonly type: 'string';
274
274
  };
275
275
  readonly text: {
276
- readonly type: "string";
276
+ readonly type: 'string';
277
277
  };
278
278
  readonly marks: {
279
- readonly $ref: "#/$defs/Marks";
279
+ readonly $ref: '#/$defs/Marks';
280
280
  };
281
281
  };
282
282
  };
283
283
  readonly InlineBr: {
284
- readonly type: "object";
284
+ readonly type: 'object';
285
285
  readonly additionalProperties: false;
286
- readonly required: readonly ["kind"];
286
+ readonly required: readonly ['kind'];
287
287
  readonly properties: {
288
288
  readonly kind: {
289
- readonly const: "br";
289
+ readonly const: 'br';
290
290
  };
291
291
  };
292
292
  };
293
293
  readonly Inline: {
294
294
  readonly anyOf: readonly [{
295
- readonly $ref: "#/$defs/InlineText";
295
+ readonly $ref: '#/$defs/InlineText';
296
296
  }, {
297
- readonly $ref: "#/$defs/InlineLink";
297
+ readonly $ref: '#/$defs/InlineLink';
298
298
  }, {
299
- readonly $ref: "#/$defs/InlineBr";
299
+ readonly $ref: '#/$defs/InlineBr';
300
300
  }];
301
301
  };
302
302
  readonly Paragraph: {
303
- readonly type: "object";
303
+ readonly type: 'object';
304
304
  readonly additionalProperties: false;
305
- readonly required: readonly ["kind", "align", "inlines"];
305
+ readonly required: readonly ['kind', 'align', 'inlines'];
306
306
  readonly properties: {
307
307
  readonly kind: {
308
- readonly const: "paragraph";
308
+ readonly const: 'paragraph';
309
309
  };
310
310
  readonly align: {
311
- readonly enum: readonly ["start", "center", "right", "left"];
311
+ readonly enum: readonly ['start', 'center', 'right', 'left'];
312
312
  };
313
313
  readonly inlines: {
314
- readonly type: "array";
314
+ readonly type: 'array';
315
315
  readonly items: {
316
- readonly $ref: "#/$defs/Inline";
316
+ readonly $ref: '#/$defs/Inline';
317
317
  };
318
318
  };
319
319
  };
320
320
  };
321
321
  readonly Heading: {
322
- readonly type: "object";
322
+ readonly type: 'object';
323
323
  readonly additionalProperties: false;
324
- readonly required: readonly ["kind", "level", "inlines"];
324
+ readonly required: readonly ['kind', 'level', 'inlines'];
325
325
  readonly properties: {
326
326
  readonly kind: {
327
- readonly const: "heading";
327
+ readonly const: 'heading';
328
328
  };
329
329
  readonly level: {
330
330
  readonly enum: readonly [1, 2, 3];
331
331
  };
332
332
  readonly inlines: {
333
- readonly type: "array";
333
+ readonly type: 'array';
334
334
  readonly items: {
335
- readonly $ref: "#/$defs/Inline";
335
+ readonly $ref: '#/$defs/Inline';
336
336
  };
337
337
  };
338
338
  };
339
339
  };
340
340
  readonly Quote: {
341
- readonly type: "object";
341
+ readonly type: 'object';
342
342
  readonly additionalProperties: false;
343
- readonly required: readonly ["kind", "blocks"];
343
+ readonly required: readonly ['kind', 'blocks'];
344
344
  readonly properties: {
345
345
  readonly kind: {
346
- readonly const: "quote";
346
+ readonly const: 'quote';
347
347
  };
348
348
  readonly blocks: {
349
- readonly type: "array";
349
+ readonly type: 'array';
350
350
  readonly items: {
351
- readonly $ref: "#/$defs/Paragraph";
351
+ readonly $ref: '#/$defs/Paragraph';
352
352
  };
353
353
  };
354
354
  };
355
355
  };
356
356
  readonly Hr: {
357
- readonly type: "object";
357
+ readonly type: 'object';
358
358
  readonly additionalProperties: false;
359
- readonly required: readonly ["kind"];
359
+ readonly required: readonly ['kind'];
360
360
  readonly properties: {
361
361
  readonly kind: {
362
- readonly const: "hr";
362
+ readonly const: 'hr';
363
363
  };
364
364
  };
365
365
  };
366
366
  readonly ListItem: {
367
- readonly type: "object";
367
+ readonly type: 'object';
368
368
  readonly additionalProperties: false;
369
- readonly required: readonly ["indent", "blocks"];
369
+ readonly required: readonly ['indent', 'blocks'];
370
370
  readonly properties: {
371
371
  readonly indent: {
372
372
  readonly enum: readonly [0, 1];
373
373
  };
374
374
  readonly blocks: {
375
- readonly type: "array";
375
+ readonly type: 'array';
376
376
  readonly items: {
377
- readonly $ref: "#/$defs/Paragraph";
377
+ readonly $ref: '#/$defs/Paragraph';
378
378
  };
379
379
  };
380
380
  };
381
381
  };
382
382
  readonly List: {
383
- readonly type: "object";
383
+ readonly type: 'object';
384
384
  readonly additionalProperties: false;
385
- readonly required: readonly ["kind", "listType", "items"];
385
+ readonly required: readonly ['kind', 'listType', 'items'];
386
386
  readonly properties: {
387
387
  readonly kind: {
388
- readonly const: "list";
388
+ readonly const: 'list';
389
389
  };
390
390
  readonly listType: {
391
- readonly enum: readonly ["bullet", "number"];
391
+ readonly enum: readonly ['bullet', 'number'];
392
392
  };
393
393
  readonly items: {
394
- readonly type: "array";
394
+ readonly type: 'array';
395
395
  readonly items: {
396
- readonly $ref: "#/$defs/ListItem";
396
+ readonly $ref: '#/$defs/ListItem';
397
397
  };
398
398
  };
399
399
  };
400
400
  };
401
401
  readonly Block: {
402
402
  readonly anyOf: readonly [{
403
- readonly $ref: "#/$defs/Heading";
403
+ readonly $ref: '#/$defs/Heading';
404
404
  }, {
405
- readonly $ref: "#/$defs/Paragraph";
405
+ readonly $ref: '#/$defs/Paragraph';
406
406
  }, {
407
- readonly $ref: "#/$defs/List";
407
+ readonly $ref: '#/$defs/List';
408
408
  }, {
409
- readonly $ref: "#/$defs/Quote";
409
+ readonly $ref: '#/$defs/Quote';
410
410
  }, {
411
- readonly $ref: "#/$defs/Hr";
411
+ readonly $ref: '#/$defs/Hr';
412
412
  }];
413
413
  };
414
414
  };
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/models/google/schema.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0H1B,CAAA;AAEV,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0HzB,CAAA"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/models/google/schema.ts"],"names":[],"mappings":"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"}