@redocly/config 0.43.0 → 0.44.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/lib/common.d.ts +241 -22
- package/lib/common.js +50 -37
- package/lib/constants/config.d.ts +12 -0
- package/lib/constants/config.js +17 -0
- package/lib/constants/entities.d.ts +45 -0
- package/lib/constants/entities.js +58 -0
- package/lib/constants/enum.d.ts +1 -0
- package/lib/constants/enum.js +6 -0
- package/lib/constants/shared.d.ts +15 -0
- package/lib/constants/shared.js +22 -0
- package/lib/default-theme-config-schema.d.ts +866 -723
- package/lib/default-theme-config-schema.js +1 -1
- package/lib/entities-catalog-entity-file-schema.js +22 -22
- package/lib/ex-theme-config-schemas.d.ts +96 -26
- package/lib/ex-theme-config-schemas.js +23 -2
- package/lib/index.d.ts +3 -1
- package/lib/index.js +13 -10
- package/lib/product-override-schema.d.ts +73 -20
- package/lib/root-config-schema.d.ts +2823 -1567
- package/lib/root-config-schema.js +18 -11
- package/lib/scorecards-config-schema.d.ts +6 -0
- package/lib/scorecards-config-schema.js +2 -4
- package/lib/types/portal-shared-types.d.ts +1 -1
- package/lib-esm/common.d.ts +241 -22
- package/lib-esm/common.js +29 -16
- package/lib-esm/constants/config.d.ts +12 -0
- package/lib-esm/constants/config.js +14 -0
- package/lib-esm/constants/entities.d.ts +45 -0
- package/lib-esm/constants/entities.js +55 -0
- package/lib-esm/constants/enum.d.ts +1 -0
- package/lib-esm/constants/enum.js +2 -0
- package/lib-esm/constants/shared.d.ts +15 -0
- package/lib-esm/constants/shared.js +19 -0
- package/lib-esm/default-theme-config-schema.d.ts +866 -723
- package/lib-esm/default-theme-config-schema.js +1 -1
- package/lib-esm/entities-catalog-entity-file-schema.js +21 -21
- package/lib-esm/ex-theme-config-schemas.d.ts +96 -26
- package/lib-esm/ex-theme-config-schemas.js +24 -3
- package/lib-esm/index.d.ts +3 -1
- package/lib-esm/index.js +3 -1
- package/lib-esm/product-override-schema.d.ts +73 -20
- package/lib-esm/root-config-schema.d.ts +2823 -1567
- package/lib-esm/root-config-schema.js +14 -7
- package/lib-esm/scorecards-config-schema.d.ts +6 -0
- package/lib-esm/scorecards-config-schema.js +2 -4
- package/lib-esm/types/portal-shared-types.d.ts +1 -1
- package/package.json +2 -2
- package/lib/constants.d.ts +0 -38
- package/lib/constants.js +0 -73
- package/lib-esm/constants.d.ts +0 -38
- package/lib-esm/constants.js +0 -70
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const DEFAULT_TEAM_CLAIM_NAME = "https://redocly.com/sso/teams";
|
|
2
|
+
export declare enum AuthProviderType {
|
|
3
|
+
OIDC = "OIDC",
|
|
4
|
+
SAML2 = "SAML2"
|
|
5
|
+
}
|
|
6
|
+
export declare enum ApigeeDevOnboardingIntegrationAuthType {
|
|
7
|
+
SERVICE_ACCOUNT = "SERVICE_ACCOUNT",
|
|
8
|
+
OAUTH2 = "OAUTH2"
|
|
9
|
+
}
|
|
10
|
+
export declare const REDOCLY_TEAMS_RBAC = "redocly::teams-rbac";
|
|
11
|
+
export declare const REDOCLY_ROUTE_RBAC = "redocly::route-rbac";
|
|
12
|
+
export declare enum LayoutVariant {
|
|
13
|
+
STACKED = "stacked",
|
|
14
|
+
THREE_PANEL = "three-panel"
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export const DEFAULT_TEAM_CLAIM_NAME = 'https://redocly.com/sso/teams';
|
|
2
|
+
export var AuthProviderType;
|
|
3
|
+
(function (AuthProviderType) {
|
|
4
|
+
AuthProviderType["OIDC"] = "OIDC";
|
|
5
|
+
AuthProviderType["SAML2"] = "SAML2";
|
|
6
|
+
})(AuthProviderType || (AuthProviderType = {}));
|
|
7
|
+
export var ApigeeDevOnboardingIntegrationAuthType;
|
|
8
|
+
(function (ApigeeDevOnboardingIntegrationAuthType) {
|
|
9
|
+
ApigeeDevOnboardingIntegrationAuthType["SERVICE_ACCOUNT"] = "SERVICE_ACCOUNT";
|
|
10
|
+
ApigeeDevOnboardingIntegrationAuthType["OAUTH2"] = "OAUTH2";
|
|
11
|
+
})(ApigeeDevOnboardingIntegrationAuthType || (ApigeeDevOnboardingIntegrationAuthType = {}));
|
|
12
|
+
export const REDOCLY_TEAMS_RBAC = 'redocly::teams-rbac';
|
|
13
|
+
export const REDOCLY_ROUTE_RBAC = 'redocly::route-rbac';
|
|
14
|
+
export var LayoutVariant;
|
|
15
|
+
(function (LayoutVariant) {
|
|
16
|
+
LayoutVariant["STACKED"] = "stacked";
|
|
17
|
+
LayoutVariant["THREE_PANEL"] = "three-panel";
|
|
18
|
+
})(LayoutVariant || (LayoutVariant = {}));
|
|
19
|
+
//# sourceMappingURL=shared.js.map
|