From 6414425d5e7a65b21e9258a592293a16f333a832 Mon Sep 17 00:00:00 2001 From: Timo Ley Date: Mon, 10 Apr 2023 16:12:50 +0200 Subject: [PATCH] change usebuilder to use_builder --- docs/api/features/builder.md | 4 ++-- docs/schema/manifest.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/features/builder.md b/docs/api/features/builder.md index 066cf0f..ec5c397 100644 --- a/docs/api/features/builder.md +++ b/docs/api/features/builder.md @@ -4,12 +4,12 @@ ### Build launch environment -`POST {base URL}/v2/env` +`POST {base URL}/v2/builder` This endpoint can be used to build the launch environment for an [instance addon](../../concepts/instance.md). If an [instance addon](../../concepts/instance.md), which has to provide a launch configuration, has -[`use_builder`](../../schema/manifest.md#usebuilder) set to `true`, AddonScript will send a request to this +[`use_builder`](../../schema/manifest.md#use_builder) set to `true`, AddonScript will send a request to this endpoint of an API instance, on which the [repository](../../schema/repository.md) of the [namespace](../../schema/manifest.md#namespace) of this addon can be found. This request contains information about the AddonScript [schema version](../../schema/api_builder_request.md#addonscript), diff --git a/docs/schema/manifest.md b/docs/schema/manifest.md index 84c7403..75c4369 100644 --- a/docs/schema/manifest.md +++ b/docs/schema/manifest.md @@ -55,7 +55,7 @@ This is an array of [relation objects](relation.md) which represent addons in re This is an array of [repository objects](repository.md). Each repository object defines one repository from which files or addons can be retrieved. Each AddonScript manifest SHOULD have a repository for the [canonical namespace](#namespace) of -that manifest, from which AddonScript implementations MAY check for updates for this addon. If [use_builder](#usebuilder) is `true`, +that manifest, from which AddonScript implementations MAY check for updates for this addon. If [use_builder](#use_builder) is `true`, this addon MUST have such a repository to provide API instances, which can be used to request the [launch environment](../api/features/builder.md#build-launch-environment).