@agentconnect.md/setup 1.44.0-rc.63 → 1.44.0-rc.64
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/index.js +16 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -56543,9 +56543,23 @@ function effectiveOrgKeyPrefix(transitKey, configured) {
|
|
|
56543
56543
|
return configured ?? `${transitKey}-org-`;
|
|
56544
56544
|
}
|
|
56545
56545
|
//#endregion
|
|
56546
|
-
//#region ../
|
|
56547
|
-
/** The default value of the host axis
|
|
56546
|
+
//#region ../protocol/dist/consts.js
|
|
56547
|
+
/** The default value of the GitLab host axis (§24.1). An absent host on a replicated
|
|
56548
|
+
* agent spec, a compiled hook rule, trusted hook metadata, or a credential grant means
|
|
56549
|
+
* this — the default of one axis, never a separate mode. */
|
|
56548
56550
|
const GITLAB_DEFAULT_BASE_URL = "https://gitlab.com";
|
|
56551
|
+
//#endregion
|
|
56552
|
+
//#region ../control-plane/dist/gitlab/config.js
|
|
56553
|
+
/**
|
|
56554
|
+
* GitLab OAuth application identity (gitlab-com-integration.md §18.3, §24.1).
|
|
56555
|
+
*
|
|
56556
|
+
* Deployment config: one OAuth application per deployment, used ONLY as the
|
|
56557
|
+
* administration identity (project discovery, provisioning). The instance base
|
|
56558
|
+
* URL is one axis beside that pair, not a mode: absent means GitLab.com, so no
|
|
56559
|
+
* code path branches on "is this GitLab.com". Opt-in mirrors the GitHub App:
|
|
56560
|
+
* both client vars set ⇒ enabled, none ⇒ module not assembled, partial ⇒ fail
|
|
56561
|
+
* fast — and a base URL without the pair is a configuration error too.
|
|
56562
|
+
*/
|
|
56549
56563
|
/** The public callback path, in its gateway form (deploy-public-url-prefix decision). */
|
|
56550
56564
|
const GITLAB_OAUTH_CALLBACK_PATH = "/v1/gitlab/oauth/callback";
|
|
56551
56565
|
/** The one normalization of the host axis (§24.1); downstream sees only its
|