@fern-api/fern-api-dev 3.40.1 → 3.42.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/cli.cjs +161 -38
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1307518,6 +1307518,7 @@ __export(serialization_exports, {
|
|
|
1307518
1307518
|
AiChatLocation: () => AiChatLocation2,
|
|
1307519
1307519
|
AiChatModel: () => AiChatModel2,
|
|
1307520
1307520
|
AiChatWebsiteDatasource: () => AiChatWebsiteDatasource,
|
|
1307521
|
+
AiExamplesConfig: () => AiExamplesConfig,
|
|
1307521
1307522
|
AnalyticsConfig: () => AnalyticsConfig,
|
|
1307522
1307523
|
AnnouncementConfig: () => AnnouncementConfig,
|
|
1307523
1307524
|
ApiReferenceConfiguration: () => ApiReferenceConfiguration,
|
|
@@ -1307645,6 +1307646,7 @@ __export(docs_exports2, {
|
|
|
1307645
1307646
|
AiChatLocation: () => AiChatLocation2,
|
|
1307646
1307647
|
AiChatModel: () => AiChatModel2,
|
|
1307647
1307648
|
AiChatWebsiteDatasource: () => AiChatWebsiteDatasource,
|
|
1307649
|
+
AiExamplesConfig: () => AiExamplesConfig,
|
|
1307648
1307650
|
AnalyticsConfig: () => AnalyticsConfig,
|
|
1307649
1307651
|
AnnouncementConfig: () => AnnouncementConfig,
|
|
1307650
1307652
|
ApiReferenceConfiguration: () => ApiReferenceConfiguration,
|
|
@@ -1309152,6 +1309154,12 @@ var AnalyticsConfig = schemas_exports.object({
|
|
|
1309152
1309154
|
ga4: GoogleAnalytics4Config.optional()
|
|
1309153
1309155
|
});
|
|
1309154
1309156
|
|
|
1309157
|
+
// ../configuration/lib/docs-yml/schemas/sdk/serialization/resources/docs/types/AiExamplesConfig.js
|
|
1309158
|
+
var AiExamplesConfig = schemas_exports.object({
|
|
1309159
|
+
enabled: schemas_exports.boolean().optional(),
|
|
1309160
|
+
style: schemas_exports.string().optional()
|
|
1309161
|
+
});
|
|
1309162
|
+
|
|
1309155
1309163
|
// ../configuration/lib/docs-yml/schemas/sdk/serialization/resources/docs/types/CustomDomain.js
|
|
1309156
1309164
|
var CustomDomain = schemas_exports.undiscriminatedUnion([
|
|
1309157
1309165
|
schemas_exports.string(),
|
|
@@ -1309719,6 +1309727,7 @@ var DocsConfiguration = schemas_exports.object({
|
|
|
1309719
1309727
|
languages: schemas_exports.list(Language2).optional(),
|
|
1309720
1309728
|
aiChat: schemas_exports.property("ai-chat", AiChatConfig.optional()),
|
|
1309721
1309729
|
aiSearch: schemas_exports.property("ai-search", AiChatConfig.optional()),
|
|
1309730
|
+
aiExamples: schemas_exports.property("ai-examples", AiExamplesConfig.optional()),
|
|
1309722
1309731
|
metadata: MetadataConfig.optional(),
|
|
1309723
1309732
|
redirects: schemas_exports.list(RedirectConfig).optional(),
|
|
1309724
1309733
|
logo: LogoConfiguration.optional(),
|
|
@@ -1309770,11 +1309779,11 @@ var PlaygroundButtonSettings = schemas_exports.object({
|
|
|
1309770
1309779
|
|
|
1309771
1309780
|
// ../configuration/lib/docs-yml/schemas/sdk/serialization/resources/docs/types/PlaygroundSettings.js
|
|
1309772
1309781
|
var PlaygroundSettings = schemas_exports.object({
|
|
1309782
|
+
hidden: schemas_exports.boolean().optional(),
|
|
1309773
1309783
|
environments: schemas_exports.list(schemas_exports.string()).optional(),
|
|
1309774
1309784
|
button: PlaygroundButtonSettings.optional(),
|
|
1309775
1309785
|
oauth: schemas_exports.boolean().optional(),
|
|
1309776
|
-
limitWebsocketMessagesPerConnection: schemas_exports.property("limit-websocket-messages-per-connection", schemas_exports.number().optional())
|
|
1309777
|
-
hidden: schemas_exports.boolean().optional()
|
|
1309786
|
+
limitWebsocketMessagesPerConnection: schemas_exports.property("limit-websocket-messages-per-connection", schemas_exports.number().optional())
|
|
1309778
1309787
|
});
|
|
1309779
1309788
|
|
|
1309780
1309789
|
// ../configuration/lib/docs-yml/schemas/sdk/serialization/resources/docs/types/ApiReferenceConfiguration.js
|
|
@@ -1415650,7 +1415659,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1415650
1415659
|
properties: {
|
|
1415651
1415660
|
...event,
|
|
1415652
1415661
|
...event.properties,
|
|
1415653
|
-
version: "3.
|
|
1415662
|
+
version: "3.42.0",
|
|
1415654
1415663
|
usingAccessToken: true
|
|
1415655
1415664
|
}
|
|
1415656
1415665
|
});
|
|
@@ -1415749,7 +1415758,7 @@ var UserPosthogManager = class {
|
|
|
1415749
1415758
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1415750
1415759
|
event: "CLI",
|
|
1415751
1415760
|
properties: {
|
|
1415752
|
-
version: "3.
|
|
1415761
|
+
version: "3.42.0",
|
|
1415753
1415762
|
...event,
|
|
1415754
1415763
|
...event.properties,
|
|
1415755
1415764
|
usingAccessToken: false,
|
|
@@ -1495940,7 +1495949,7 @@ var CliContext = class {
|
|
|
1495940
1495949
|
if (false) {
|
|
1495941
1495950
|
this.logger.error("CLI_VERSION is not defined");
|
|
1495942
1495951
|
}
|
|
1495943
|
-
return "3.
|
|
1495952
|
+
return "3.42.0";
|
|
1495944
1495953
|
}
|
|
1495945
1495954
|
getCliName() {
|
|
1495946
1495955
|
if (false) {
|
|
@@ -1507225,6 +1507234,7 @@ var OneOfSchema2 = schemas_exports8.union("type", {
|
|
|
1507225
1507234
|
// ../api-importers/openapi/openapi-ir/lib/sdk/serialization/resources/finalIr/types/DiscriminatedOneOfSchema.js
|
|
1507226
1507235
|
var DiscriminatedOneOfSchema = schemas_exports8.objectWithoutOptionalProperties({
|
|
1507227
1507236
|
discriminantProperty: schemas_exports8.string(),
|
|
1507237
|
+
discriminantPropertyNameOverride: schemas_exports8.string().optional(),
|
|
1507228
1507238
|
commonProperties: schemas_exports8.list(schemas_exports8.lazyObject(() => CommonProperty)),
|
|
1507229
1507239
|
schemas: schemas_exports8.record(schemas_exports8.string(), schemas_exports8.lazy(() => Schema4))
|
|
1507230
1507240
|
}).extend(WithSdkGroupName).extend(WithNamespace).extend(WithName3).extend(WithDescription).extend(WithAvailability3).extend(WithEncoding).extend(WithSource).extend(WithTitle).extend(WithInline);
|
|
@@ -1507714,6 +1507724,7 @@ var OneOfSchemaWithExample2 = schemas_exports8.union("type", {
|
|
|
1507714
1507724
|
// ../api-importers/openapi/openapi-ir/lib/sdk/serialization/resources/parseIr/types/DiscriminatedOneOfSchemaWithExample.js
|
|
1507715
1507725
|
var DiscriminatedOneOfSchemaWithExample = schemas_exports8.objectWithoutOptionalProperties({
|
|
1507716
1507726
|
discriminantProperty: schemas_exports8.string(),
|
|
1507727
|
+
discriminantPropertyNameOverride: schemas_exports8.string().optional(),
|
|
1507717
1507728
|
commonProperties: schemas_exports8.list(schemas_exports8.lazyObject(() => CommonPropertyWithExample)),
|
|
1507718
1507729
|
schemas: schemas_exports8.record(schemas_exports8.string(), schemas_exports8.lazy(() => SchemaWithExample2))
|
|
1507719
1507730
|
}).extend(WithSdkGroupName).extend(WithNamespace).extend(WithName3).extend(WithDescription).extend(WithAvailability3).extend(WithEncoding).extend(WithSource).extend(WithTitle).extend(WithInline);
|
|
@@ -1509196,7 +1509207,7 @@ function buildOneOfTypeDeclaration({ schema: schema2, context: context2, declara
|
|
|
1509196
1509207
|
return {
|
|
1509197
1509208
|
name: schema2.nameOverride ?? schema2.generatedName,
|
|
1509198
1509209
|
schema: {
|
|
1509199
|
-
discriminant: schema2.discriminantProperty,
|
|
1509210
|
+
discriminant: schema2.discriminantPropertyNameOverride != null ? { name: schema2.discriminantPropertyNameOverride, value: schema2.discriminantProperty } : schema2.discriminantProperty,
|
|
1509200
1509211
|
"base-properties": baseProperties,
|
|
1509201
1509212
|
docs: schema2.description ?? void 0,
|
|
1509202
1509213
|
availability: schema2.availability != null ? convertAvailability2(schema2.availability) : void 0,
|
|
@@ -1514290,6 +1514301,7 @@ function convertAvailability3(propertySchema) {
|
|
|
1514290
1514301
|
// ../api-importers/openapi/openapi-ir-parser/lib/schema/convertDiscriminatedOneOf.js
|
|
1514291
1514302
|
function convertDiscriminatedOneOf({ nameOverride, generatedName, title: title5, breadcrumbs, properties: properties7, description, availability, required: required5, wrapAsOptional, wrapAsNullable, discriminator, context: context2, namespace, groupName, encoding, source: source2 }) {
|
|
1514292
1514303
|
const discriminant8 = discriminator.propertyName;
|
|
1514304
|
+
const discriminantNameOverride = getExtension(discriminator, FernOpenAPIExtension.FERN_PROPERTY_NAME);
|
|
1514293
1514305
|
const unionSubTypes = Object.fromEntries(Object.entries(discriminator.mapping ?? {}).map(([discriminantValue, schema2]) => {
|
|
1514294
1514306
|
const subtypeReference = convertReferenceObject({
|
|
1514295
1514307
|
$ref: schema2
|
|
@@ -1514320,6 +1514332,7 @@ function convertDiscriminatedOneOf({ nameOverride, generatedName, title: title5,
|
|
|
1514320
1514332
|
description,
|
|
1514321
1514333
|
availability,
|
|
1514322
1514334
|
discriminant: discriminant8,
|
|
1514335
|
+
discriminantNameOverride,
|
|
1514323
1514336
|
subtypes: unionSubTypes,
|
|
1514324
1514337
|
namespace,
|
|
1514325
1514338
|
groupName,
|
|
@@ -1514358,17 +1514371,19 @@ function convertDiscriminatedOneOfWithVariants({ nameOverride, generatedName, ti
|
|
|
1514358
1514371
|
description,
|
|
1514359
1514372
|
availability,
|
|
1514360
1514373
|
discriminant: discriminant8,
|
|
1514374
|
+
discriminantNameOverride: void 0,
|
|
1514361
1514375
|
subtypes: unionSubTypes,
|
|
1514362
1514376
|
namespace,
|
|
1514363
1514377
|
groupName,
|
|
1514364
1514378
|
source: source2
|
|
1514365
1514379
|
});
|
|
1514366
1514380
|
}
|
|
1514367
|
-
function wrapDiscriminatedOneOf({ nameOverride, generatedName, title: title5, wrapAsOptional, wrapAsNullable, properties: properties7, description, availability, discriminant: discriminant8, subtypes, namespace, groupName, source: source2 }) {
|
|
1514381
|
+
function wrapDiscriminatedOneOf({ nameOverride, generatedName, title: title5, wrapAsOptional, wrapAsNullable, properties: properties7, description, availability, discriminant: discriminant8, discriminantNameOverride, subtypes, namespace, groupName, source: source2 }) {
|
|
1514368
1514382
|
let result = SchemaWithExample.oneOf(OneOfSchemaWithExample.discriminated({
|
|
1514369
1514383
|
description,
|
|
1514370
1514384
|
availability,
|
|
1514371
1514385
|
discriminantProperty: discriminant8,
|
|
1514386
|
+
discriminantPropertyNameOverride: discriminantNameOverride,
|
|
1514372
1514387
|
nameOverride,
|
|
1514373
1514388
|
generatedName,
|
|
1514374
1514389
|
title: title5,
|
|
@@ -1515045,6 +1515060,7 @@ function convertToOneOf(oneOfSchema) {
|
|
|
1515045
1515060
|
description: oneOfSchema.description,
|
|
1515046
1515061
|
availability: oneOfSchema.availability,
|
|
1515047
1515062
|
discriminantProperty: oneOfSchema.discriminantProperty,
|
|
1515063
|
+
discriminantPropertyNameOverride: oneOfSchema.discriminantPropertyNameOverride,
|
|
1515048
1515064
|
generatedName: oneOfSchema.generatedName,
|
|
1515049
1515065
|
title: oneOfSchema.title,
|
|
1515050
1515066
|
nameOverride: oneOfSchema.nameOverride,
|
|
@@ -1518255,6 +1518271,7 @@ function convertToOneOf2(oneOfSchema) {
|
|
|
1518255
1518271
|
description: oneOfSchema.description,
|
|
1518256
1518272
|
availability: oneOfSchema.availability,
|
|
1518257
1518273
|
discriminantProperty: oneOfSchema.discriminantProperty,
|
|
1518274
|
+
discriminantPropertyNameOverride: oneOfSchema.discriminantPropertyNameOverride,
|
|
1518258
1518275
|
generatedName: oneOfSchema.generatedName,
|
|
1518259
1518276
|
nameOverride: oneOfSchema.nameOverride,
|
|
1518260
1518277
|
title: oneOfSchema.title,
|
|
@@ -1542670,6 +1542687,16 @@ var properties4 = {
|
|
|
1542670
1542687
|
}
|
|
1542671
1542688
|
]
|
|
1542672
1542689
|
},
|
|
1542690
|
+
"ai-examples": {
|
|
1542691
|
+
oneOf: [
|
|
1542692
|
+
{
|
|
1542693
|
+
$ref: "#/definitions/docs.AiExamplesConfig"
|
|
1542694
|
+
},
|
|
1542695
|
+
{
|
|
1542696
|
+
type: "null"
|
|
1542697
|
+
}
|
|
1542698
|
+
]
|
|
1542699
|
+
},
|
|
1542673
1542700
|
metadata: {
|
|
1542674
1542701
|
oneOf: [
|
|
1542675
1542702
|
{
|
|
@@ -1544027,6 +1544054,16 @@ var definitions4 = {
|
|
|
1544027
1544054
|
"docs.PlaygroundSettings": {
|
|
1544028
1544055
|
type: "object",
|
|
1544029
1544056
|
properties: {
|
|
1544057
|
+
hidden: {
|
|
1544058
|
+
oneOf: [
|
|
1544059
|
+
{
|
|
1544060
|
+
type: "boolean"
|
|
1544061
|
+
},
|
|
1544062
|
+
{
|
|
1544063
|
+
type: "null"
|
|
1544064
|
+
}
|
|
1544065
|
+
]
|
|
1544066
|
+
},
|
|
1544030
1544067
|
environments: {
|
|
1544031
1544068
|
oneOf: [
|
|
1544032
1544069
|
{
|
|
@@ -1546386,6 +1546423,32 @@ var definitions4 = {
|
|
|
1546386
1546423
|
},
|
|
1546387
1546424
|
additionalProperties: false
|
|
1546388
1546425
|
},
|
|
1546426
|
+
"docs.AiExamplesConfig": {
|
|
1546427
|
+
type: "object",
|
|
1546428
|
+
properties: {
|
|
1546429
|
+
enabled: {
|
|
1546430
|
+
oneOf: [
|
|
1546431
|
+
{
|
|
1546432
|
+
type: "boolean"
|
|
1546433
|
+
},
|
|
1546434
|
+
{
|
|
1546435
|
+
type: "null"
|
|
1546436
|
+
}
|
|
1546437
|
+
]
|
|
1546438
|
+
},
|
|
1546439
|
+
style: {
|
|
1546440
|
+
oneOf: [
|
|
1546441
|
+
{
|
|
1546442
|
+
type: "string"
|
|
1546443
|
+
},
|
|
1546444
|
+
{
|
|
1546445
|
+
type: "null"
|
|
1546446
|
+
}
|
|
1546447
|
+
]
|
|
1546448
|
+
}
|
|
1546449
|
+
},
|
|
1546450
|
+
additionalProperties: false
|
|
1546451
|
+
},
|
|
1546389
1546452
|
"docs.TwitterCardSetting": {
|
|
1546390
1546453
|
type: "string",
|
|
1546391
1546454
|
enum: [
|
|
@@ -1579076,7 +1579139,6 @@ var ConcurrentEndpointProcessor = class {
|
|
|
1579076
1579139
|
return { ...this.stats };
|
|
1579077
1579140
|
}
|
|
1579078
1579141
|
};
|
|
1579079
|
-
var hasLoggedInfoMessage = false;
|
|
1579080
1579142
|
function isOpenApiSpec(specContent) {
|
|
1579081
1579143
|
try {
|
|
1579082
1579144
|
try {
|
|
@@ -1579168,17 +1579230,6 @@ async function enhanceExamplesWithAI(apiDefinition, config2, context2, token, or
|
|
|
1579168
1579230
|
}
|
|
1579169
1579231
|
}
|
|
1579170
1579232
|
async function performAIEnhancement(apiDefinition, config2, context2, token, organizationId, sourceFilePath, apiName) {
|
|
1579171
|
-
if (!hasLoggedInfoMessage) {
|
|
1579172
|
-
const message = source_default.blue("Notice: new feature added (experimental)!\n\n") + "We are generating realistic examples for endpoints in your spec.\nThis will not override your current examples. Please wait a moment.\n\nFuture runs will use saved examples. If you wish to override the content of the\nexamples, please edit and commit auto-generated `ai_examples_override.yml` files.";
|
|
1579173
|
-
const boxedMessage = boxen(message, {
|
|
1579174
|
-
padding: 1,
|
|
1579175
|
-
textAlignment: "left",
|
|
1579176
|
-
borderColor: "blue",
|
|
1579177
|
-
borderStyle: "round"
|
|
1579178
|
-
});
|
|
1579179
|
-
context2.logger.info("\n" + boxedMessage + "\n");
|
|
1579180
|
-
hasLoggedInfoMessage = true;
|
|
1579181
|
-
}
|
|
1579182
1579233
|
const enhancer = new LambdaExampleEnhancer(config2, context2, token, organizationId);
|
|
1579183
1579234
|
const circuitBreaker = new CircuitBreaker();
|
|
1579184
1579235
|
let openApiSpec;
|
|
@@ -1582462,7 +1582513,7 @@ https://buildwithfern.com/learn/docs/getting-started/project-structure#api-defin
|
|
|
1582462
1582513
|
link: async (value) => this.toLinkNode(value),
|
|
1582463
1582514
|
changelog: async (value) => this.toChangelogNode(value, parentSlug),
|
|
1582464
1582515
|
// Library sections are handled by FDR during registration, returning placeholder
|
|
1582465
|
-
pythonDocsSection: async () => this.toPythonDocsSectionPlaceholder(parentSlug)
|
|
1582516
|
+
pythonDocsSection: async (value) => this.toPythonDocsSectionPlaceholder(value, parentSlug)
|
|
1582466
1582517
|
});
|
|
1582467
1582518
|
}
|
|
1582468
1582519
|
async toNavigationChild({ prefix: prefix2, item, parentSlug, hideChildren, parentAvailability }) {
|
|
@@ -1582473,7 +1582524,7 @@ https://buildwithfern.com/learn/docs/getting-started/project-structure#api-defin
|
|
|
1582473
1582524
|
link: async (value) => this.toLinkNode(value),
|
|
1582474
1582525
|
changelog: async (value) => this.toChangelogNode(value, parentSlug, hideChildren),
|
|
1582475
1582526
|
// Library sections are handled by FDR during registration, returning placeholder
|
|
1582476
|
-
pythonDocsSection: async () => this.toPythonDocsSectionPlaceholder(parentSlug)
|
|
1582527
|
+
pythonDocsSection: async (value) => this.toPythonDocsSectionPlaceholder(value, parentSlug)
|
|
1582477
1582528
|
});
|
|
1582478
1582529
|
}
|
|
1582479
1582530
|
async toApiSectionNode({ item, parentSlug, hideChildren, parentAvailability }) {
|
|
@@ -1582591,28 +1582642,72 @@ https://buildwithfern.com/learn/docs/getting-started/project-structure#api-defin
|
|
|
1582591
1582642
|
* The CLI starts the generation job, polls for completion, and passes the jobId to FDR.
|
|
1582592
1582643
|
* FDR then merges the generated Python docs into the navigation.
|
|
1582593
1582644
|
*
|
|
1582594
|
-
*
|
|
1582645
|
+
* In dev mode (fern docs dev), this placeholder returns a visible page with helpful content
|
|
1582646
|
+
* explaining that Python library docs are only generated during `fern generate --docs`.
|
|
1582647
|
+
*
|
|
1582648
|
+
* In production mode, FDR replaces/augments this with the actual generated documentation.
|
|
1582595
1582649
|
*/
|
|
1582596
|
-
toPythonDocsSectionPlaceholder(parentSlug) {
|
|
1582597
|
-
const
|
|
1582650
|
+
toPythonDocsSectionPlaceholder(item, parentSlug) {
|
|
1582651
|
+
const title5 = item.title ?? "Python Reference";
|
|
1582652
|
+
const urlSlug = item.slug ?? "python-docs";
|
|
1582653
|
+
const slug = parentSlug.apply({ urlSlug });
|
|
1582654
|
+
const syntheticPageId = `__python-docs-placeholder-${urlSlug}__.mdx`;
|
|
1582655
|
+
const pageId = navigation_exports2.PageId(syntheticPageId);
|
|
1582656
|
+
const placeholderMarkdown = `---
|
|
1582657
|
+
title: ${title5}
|
|
1582658
|
+
---
|
|
1582659
|
+
|
|
1582660
|
+
<Warning>
|
|
1582661
|
+
Python library documentation is not yet supported with \`fern docs dev\`. This feature will be added in a future release. To view the generated documentation, run \`fern generate --docs --preview\`.
|
|
1582662
|
+
</Warning>
|
|
1582663
|
+
|
|
1582664
|
+
## About Python Library Docs
|
|
1582665
|
+
|
|
1582666
|
+
When you publish your documentation using \`fern generate --docs\`, Fern will:
|
|
1582667
|
+
|
|
1582668
|
+
1. Clone and analyze your Python repository from: \`${item.githubUrl}\`
|
|
1582669
|
+
2. Parse the Python source code to extract docstrings and type information
|
|
1582670
|
+
3. Generate comprehensive API reference documentation
|
|
1582671
|
+
4. Integrate the generated docs into your documentation site
|
|
1582672
|
+
|
|
1582673
|
+
## How to Generate
|
|
1582674
|
+
|
|
1582675
|
+
To generate the full Python library documentation, run:
|
|
1582676
|
+
|
|
1582677
|
+
\`\`\`bash
|
|
1582678
|
+
fern generate --docs
|
|
1582679
|
+
\`\`\`
|
|
1582680
|
+
|
|
1582681
|
+
Or to preview without publishing:
|
|
1582682
|
+
|
|
1582683
|
+
\`\`\`bash
|
|
1582684
|
+
fern generate --docs --preview
|
|
1582685
|
+
\`\`\`
|
|
1582686
|
+
|
|
1582687
|
+
The generated documentation will replace this placeholder page with complete API reference content including:
|
|
1582688
|
+
|
|
1582689
|
+
- Module and package documentation
|
|
1582690
|
+
- Class and function references
|
|
1582691
|
+
- Type annotations and signatures
|
|
1582692
|
+
- Docstring content
|
|
1582693
|
+
`;
|
|
1582694
|
+
this.parsedDocsConfig.pages[RelativeFilePath2.of(syntheticPageId)] = placeholderMarkdown;
|
|
1582695
|
+
const id2 = this.#idgen.get(pageId);
|
|
1582598
1582696
|
return {
|
|
1582599
|
-
|
|
1582600
|
-
|
|
1582697
|
+
id: id2,
|
|
1582698
|
+
type: "page",
|
|
1582601
1582699
|
slug: slug.get(),
|
|
1582602
|
-
title:
|
|
1582603
|
-
collapsed: false,
|
|
1582604
|
-
hidden: true,
|
|
1582605
|
-
// Hidden - actual content comes from FDR
|
|
1582606
|
-
children: [],
|
|
1582607
|
-
overviewPageId: void 0,
|
|
1582700
|
+
title: title5,
|
|
1582608
1582701
|
icon: void 0,
|
|
1582702
|
+
hidden: false,
|
|
1582609
1582703
|
viewers: void 0,
|
|
1582610
1582704
|
orphaned: void 0,
|
|
1582705
|
+
pageId,
|
|
1582611
1582706
|
authed: void 0,
|
|
1582612
|
-
|
|
1582613
|
-
|
|
1582707
|
+
noindex: true,
|
|
1582708
|
+
// Don't index placeholder pages
|
|
1582614
1582709
|
featureFlags: void 0,
|
|
1582615
|
-
|
|
1582710
|
+
availability: void 0
|
|
1582616
1582711
|
};
|
|
1582617
1582712
|
}
|
|
1582618
1582713
|
async toPageNode({ item, parentSlug, hideChildren, parentAvailability }) {
|
|
@@ -1591635,7 +1591730,7 @@ var import_path37 = __toESM(require("path"), 1);
|
|
|
1591635
1591730
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1591636
1591731
|
var LOGS_FOLDER_NAME = "logs";
|
|
1591637
1591732
|
function getCliSource() {
|
|
1591638
|
-
const version6 = "3.
|
|
1591733
|
+
const version6 = "3.42.0";
|
|
1591639
1591734
|
return `cli@${version6}`;
|
|
1591640
1591735
|
}
|
|
1591641
1591736
|
var DebugLogger = class {
|
|
@@ -1595107,6 +1595202,16 @@ var definitions5 = {
|
|
|
1595107
1595202
|
"docs.PlaygroundSettings": {
|
|
1595108
1595203
|
type: "object",
|
|
1595109
1595204
|
properties: {
|
|
1595205
|
+
hidden: {
|
|
1595206
|
+
oneOf: [
|
|
1595207
|
+
{
|
|
1595208
|
+
type: "boolean"
|
|
1595209
|
+
},
|
|
1595210
|
+
{
|
|
1595211
|
+
type: "null"
|
|
1595212
|
+
}
|
|
1595213
|
+
]
|
|
1595214
|
+
},
|
|
1595110
1595215
|
environments: {
|
|
1595111
1595216
|
oneOf: [
|
|
1595112
1595217
|
{
|
|
@@ -1596934,6 +1597039,16 @@ var definitions6 = {
|
|
|
1596934
1597039
|
"docs.PlaygroundSettings": {
|
|
1596935
1597040
|
type: "object",
|
|
1596936
1597041
|
properties: {
|
|
1597042
|
+
hidden: {
|
|
1597043
|
+
oneOf: [
|
|
1597044
|
+
{
|
|
1597045
|
+
type: "boolean"
|
|
1597046
|
+
},
|
|
1597047
|
+
{
|
|
1597048
|
+
type: "null"
|
|
1597049
|
+
}
|
|
1597050
|
+
]
|
|
1597051
|
+
},
|
|
1596937
1597052
|
environments: {
|
|
1596938
1597053
|
oneOf: [
|
|
1596939
1597054
|
{
|
|
@@ -1598394,6 +1598509,14 @@ async function visitDocsConfigFileYamlAst({ contents, visitor, absoluteFilepathT
|
|
|
1598394
1598509
|
analytics: noop2,
|
|
1598395
1598510
|
aiChat: noop2,
|
|
1598396
1598511
|
aiSearch: noop2,
|
|
1598512
|
+
aiExamples: async (aiExamples) => {
|
|
1598513
|
+
if (aiExamples != null && typeof aiExamples === "object") {
|
|
1598514
|
+
await visitObjectAsync(aiExamples, {
|
|
1598515
|
+
enabled: noop2,
|
|
1598516
|
+
style: noop2
|
|
1598517
|
+
});
|
|
1598518
|
+
}
|
|
1598519
|
+
},
|
|
1598397
1598520
|
pageActions: noop2,
|
|
1598398
1598521
|
announcement: noop2,
|
|
1598399
1598522
|
backgroundImage: async (background) => {
|
|
@@ -1626826,7 +1626949,7 @@ async function publishDocs({ token, organization, docsWorkspace, domain: domain2
|
|
|
1626826
1626949
|
},
|
|
1626827
1626950
|
registerApi: async ({ ir: ir14, snippetsConfig, playgroundConfig, apiName, workspace }) => {
|
|
1626828
1626951
|
let apiDefinition = convertIrToFdrApi({ ir: ir14, snippetsConfig, playgroundConfig, context: context2 });
|
|
1626829
|
-
const aiEnhancerConfig = getAIEnhancerConfig(withAiExamples, docsWorkspace.config.experimental?.aiExampleStyleInstructions);
|
|
1626952
|
+
const aiEnhancerConfig = getAIEnhancerConfig(withAiExamples, docsWorkspace.config.aiExamples?.style ?? docsWorkspace.config.experimental?.aiExampleStyleInstructions);
|
|
1626830
1626953
|
if (aiEnhancerConfig && workspace) {
|
|
1626831
1626954
|
const sources = workspace.getSources();
|
|
1626832
1626955
|
const openApiSource = sources.find((source2) => source2.type === "openapi");
|
|
@@ -1627566,7 +1627689,7 @@ async function runRemoteGenerationForDocsWorkspace({ organization, apiWorkspaces
|
|
|
1627566
1627689
|
isPrivate: maybeInstance.private,
|
|
1627567
1627690
|
disableTemplates,
|
|
1627568
1627691
|
skipUpload,
|
|
1627569
|
-
withAiExamples: docsWorkspace.config.experimental?.aiExamples ?? true,
|
|
1627692
|
+
withAiExamples: docsWorkspace.config.aiExamples?.enabled ?? docsWorkspace.config.experimental?.aiExamples ?? true,
|
|
1627570
1627693
|
targetAudiences: maybeInstance.audiences ? Array.isArray(maybeInstance.audiences) ? maybeInstance.audiences : [maybeInstance.audiences] : void 0
|
|
1627571
1627694
|
});
|
|
1627572
1627695
|
const publishTime = performance.now() - publishStart;
|
package/package.json
CHANGED