@ionite/server 0.0.24-beta.20260922.10 → 0.0.24-beta.20260922.11

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.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- import { ConfigChangeCallback, ConfigSource as ConfigSource9, FrameworkConfigInput, FrameworkStores as FrameworkStores2, Ionite as Ionite6, ModifiableFrameworkConfig, RemoteConfig as RemoteConfig3, RemoteConfigRetryHook, RemoteConfigRetryOptions, RoutingOptions as RoutingOptions2 } from "@ionite/core";
1
+ import { ConfigChangeCallback, ConfigSource as ConfigSource9, FrameworkConfigInput, FrameworkStores as FrameworkStores2, Ionite as Ionite7, ModifiableFrameworkConfig, RemoteConfig as RemoteConfig3, RemoteConfigRetryHook, RemoteConfigRetryOptions, RoutingOptions as RoutingOptions2 } from "@ionite/core";
2
2
  import { CapabilityKey as CapabilityKey2 } from "@ionite/core";
3
3
  export * from "@ionite/core";
4
4
  import { AccessCheckReason, AccessCheckResult, AssignmentPolicyError, CreateTenantRequest as CreateTenantRequest2, EnvironmentType, FrameworkOtelConfig, FrameworkStores as FrameworkStores3, generateULID, IamAssignmentPolicy, IoniteError, IoniteErrorOptions, listGenerator, Otel, OtelConfig, OtelLevels, OtelLogLevel, OtelLogRecord, OtelMetricsSignalConfig, OtelOAuthClientCredentialsConfig, OtelProviderType, OtelSignalConfig, SubjectScope, SubjectType as SubjectType3, TenantResponse, TenantStatus, TenantValidators as TenantValidators2, TenantWebhookPayload, UpdateTenantRequest as UpdateTenantRequest2 } from "@ionite/core";
5
- import { AfterLoginContext, AfterLoginHook, AfterLogoutContext, AfterLogoutHook, BeforeLoginContext, BeforeLoginHook, BeforeLogoutContext, BeforeLogoutHook, CatalogView, ReconcileStores, RedirectContext, RedirectPolicy, RedirectResult, RedirectRule, RedirectRuleContext, RedirectVerdict, ReferencedDefinitions } from "@ionite/core/server";
6
- import { allowHosts, allowOrigins, allowRelativePaths, allowSameOrigin, blockDangerousUrls, CatalogAdjacencyCache, callback, captureRedirect, ciam, collectReferencedDefinitions, defaultRedirectPolicies, discoverSessionRecords, discoverSessions, expandRoot, getCustomer, getUser, has, hasAll as hasAll2, hasAllScope, hasAny as hasAny2, hasAnyScope, hasGroup as hasGroup2, hasPermission as hasPermission2, hasRole as hasRole2, hasScope, InMemoryTenantStore, iam, initiateLogin, isRedirectAllowed, listSsoClientIdsFromCookies, reconcileSubjectAccess, resolveAfterRedirect, resolveCapturedRedirect, resolveRedirect, SessionDiscoveryOptions, SessionResponse, sameOriginRedirectRules, sendTenantWebhook, sso, VerifyUserOptions, verifyUser, withSetCookies } from "@ionite/core/server";
5
+ import { AfterLoginContext, AfterLoginHook, AfterLogoutContext, AfterLogoutHook, BeforeLoginContext, BeforeLoginHook, BeforeLogoutContext, BeforeLogoutHook, CatalogView, ReconcileStores, RedirectContext, RedirectPolicy, RedirectResult, RedirectRule, RedirectRuleContext, RedirectVerdict, ReferencedDefinitions, ResolveTenantOwnerOptions, ResolveTenantSessionOptions, TenantAccessDenial, TenantAccessDenialReason, TenantAccessLoginUrlOptions, TenantAccessResult, TenantAccessSession, TenantAccessSessionKind } from "@ionite/core/server";
6
+ import { allowHosts, allowOrigins, allowRelativePaths, allowSameOrigin, blockDangerousUrls, CatalogAdjacencyCache, callback, captureRedirect, ciam, collectReferencedDefinitions, defaultRedirectPolicies, discoverSessionRecords, discoverSessions, expandRoot, getCustomer, getOwnedTenantIds, getUser, has, hasAll as hasAll2, hasAllScope, hasAny as hasAny2, hasAnyScope, hasGroup as hasGroup2, hasPermission as hasPermission2, hasRole as hasRole2, hasScope, InMemoryTenantStore, iam, initiateLogin, isRedirectAllowed, listSsoClientIdsFromCookies, reconcileSubjectAccess, resolveAfterRedirect, resolveCapturedRedirect, resolveRedirect, resolveTenantOwner, resolveTenantSession, SessionDiscoveryOptions, SessionResponse, sameOriginRedirectRules, sendTenantWebhook, sso, TENANT_OWNER_PERMISSION, tenantAccessLoginUrl, tenantOwnerEntitlementId, tenantOwnerPermission, tenantResourceId, VerifyUserOptions, verifyUser, withSetCookies } from "@ionite/core/server";
7
7
  import { AccessAssignmentStore, AccessChange, ListOptions, ListResult, OaaAccessTargetType, SubjectType } from "@ionite/core";
8
8
  /**
9
9
  * In-memory store of granted access **roots** (source of truth). Roots are keyed by their
@@ -130,10 +130,29 @@ declare function deriveIonUrls(basePath: string): UrlMap;
130
130
  * Anything beyond a prototype needs durability: `@ionite/redis` / `@ionite/ioredis` stores, or
131
131
  * app-owned SQL stores. Authz stores (`catalogStore`, `accessStore`, `accessIndex`, `resources`)
132
132
  * are intentionally NOT included — they gate IAM/authz capabilities and must be chosen
133
- * deliberately (in-memory variants exist for prototypes: `InMemoryAccessCatalogStore`,
134
- * `InMemoryAccessAssignmentStore`, `InMemoryAccessIndex`, `InMemoryResourceStore`).
133
+ * deliberately; {@link inMemoryAuthzStores} / {@link inMemoryAuthzDomains} are the explicit
134
+ * prototype opt-in for those.
135
135
  */
136
136
  declare function devInMemoryStores(): FrameworkStores;
137
+ type InMemoryAuthzStores = {
138
+ catalogStore: InMemoryAccessCatalogStore;
139
+ accessStore: InMemoryAccessAssignmentStore;
140
+ accessIndex: InMemoryAccessIndex;
141
+ resources: InMemoryResourceStore;
142
+ };
143
+ /**
144
+ * Prototype-only authz store bundle — the deliberate opt-in that `devInMemoryStores` excludes.
145
+ * Grants and catalog rows vanish on restart and are never shared across replicas; anything beyond
146
+ * a prototype needs durable authz stores.
147
+ */
148
+ declare function inMemoryAuthzStores(): InMemoryAuthzStores;
149
+ /**
150
+ * Lazily-created, isolated {@link inMemoryAuthzStores} bundles per authz domain: call with no
151
+ * tenant id for the root domain, or with a tenant id for that tenant's domain. Isolation is the
152
+ * point — grants in one tenant's domain must never be readable from another's, matching the
153
+ * root-vs-tenant store split a durable deployment would use.
154
+ */
155
+ declare function inMemoryAuthzDomains(): (tenantId?: string) => InMemoryAuthzStores;
137
156
  import { AwsSecretsConfig, ConfigSource, SecretsSource } from "@ionite/core";
138
157
  type AwsConfigSourceOptions = Omit<AwsSecretsConfig, "type"> & {
139
158
  vault?: SecretsSource;
@@ -692,8 +711,35 @@ declare class InMemorySessionStore<TExtended = Record<string, never>> implements
692
711
  update(sid: string, data: Partial<Session<TExtended>>): Promise<void>;
693
712
  delete(sid: string): Promise<void>;
694
713
  }
714
+ import { Group as Group3, Ionite as Ionite2 } from "@ionite/core";
715
+ type MaterializeTenantOwnerEntitlementOptions = {
716
+ tenantId: string;
717
+ displayName?: string;
718
+ };
719
+ type PurgeTenantEntitlementsResult = {
720
+ revoked: number;
721
+ deleted: number;
722
+ };
723
+ /**
724
+ * Publish the requestable owner entitlement for one tenant resource. This is an explicit
725
+ * request-path lifecycle operation; it never runs during config apply. Pair with
726
+ * {@link purgeTenantEntitlements} on tenant delete so the entitlement's grants cannot outlive
727
+ * the tenant.
728
+ */
729
+ declare function materializeTenantOwnerEntitlement(ion: Ionite2, options: MaterializeTenantOwnerEntitlementOptions): Promise<Group3>;
730
+ /**
731
+ * Security teardown for a deleted tenant: revokes every grant rooted at the tenant's requestable
732
+ * owner entitlement (`tenant.owner.<tenantId>`) and then deletes that entitlement from the
733
+ * catalog. Revocation must come first so a reused tenant id/slug can never resurrect a previous
734
+ * customer's owner access. The shared non-requestable `tenant.owner` permission stays in the
735
+ * catalog (every tenant's entitlement references it), and tenant resources are untouched
736
+ * (`ResourceProvider` is read-only). Idempotent: a second call revokes and deletes nothing.
737
+ */
738
+ declare function purgeTenantEntitlements(ion: Ionite2, options: {
739
+ tenantId: string;
740
+ }): Promise<PurgeTenantEntitlementsResult>;
695
741
  import { BaseTenant as BaseTenant2, CreateTenantRequest, FrameworkTmConfig, TenantValidators, UpdateTenantRequest, Workload as Workload2 } from "@ionite/core";
696
- import { BaseTenant, ConfigLocator as ConfigLocator4, Ionite as Ionite2, LfvCallbackKind as LfvCallbackKind2, Logger as Logger5, RemoteConfig as RemoteConfig2, Secret as Secret3, SecretsSource as SecretsSource10, TenantStore } from "@ionite/core";
742
+ import { BaseTenant, ConfigLocator as ConfigLocator4, Ionite as Ionite3, LfvCallbackKind as LfvCallbackKind2, Logger as Logger5, RemoteConfig as RemoteConfig2, Secret as Secret3, SecretsSource as SecretsSource10, TenantStore } from "@ionite/core";
697
743
  type TenantMirrorHooks<TTenant extends BaseTenant = BaseTenant> = {
698
744
  onRemoteConfigChange?(tenant: TTenant, config: RemoteConfig2, secret: Secret3<Record<string, unknown>>): void | Promise<void>;
699
745
  onRemoteConfigRevoke?(tenant: TTenant): void | Promise<void>;
@@ -724,7 +770,7 @@ type TenantMirror = {
724
770
  * Maintains per-tenant RemoteConfig mirrors. Tenant records own the upstream locators; app code owns
725
771
  * the destination source and path mapping.
726
772
  */
727
- declare function tenantMirror<TTenant extends BaseTenant = BaseTenant>(ion: Ionite2, options: TenantMirrorOptions<TTenant>): TenantMirror;
773
+ declare function tenantMirror<TTenant extends BaseTenant = BaseTenant>(ion: Ionite3, options: TenantMirrorOptions<TTenant>): TenantMirror;
728
774
  type TenantManagerOptions<
729
775
  TCreateTenantRequest extends CreateTenantRequest = CreateTenantRequest,
730
776
  TUpdateTenantRequest extends UpdateTenantRequest = UpdateTenantRequest,
@@ -749,7 +795,7 @@ type TenantIonUrls = {
749
795
  ionUrls: UrlMap;
750
796
  };
751
797
  declare function hashIntegrationHandle(handle: string): Promise<string>;
752
- import { Ionite as Ionite4, TenantPathNamespace, TenantRoutingStrategy } from "@ionite/core";
798
+ import { Ionite as Ionite5, TenantPathNamespace, TenantRoutingStrategy } from "@ionite/core";
753
799
  type MaybePromise<T> = Promise<T> | T;
754
800
  type TenantResolutionContext = {
755
801
  namespace: "api" | "ui";
@@ -768,23 +814,23 @@ type ResolveTenantFromRequestOptions = {
768
814
  };
769
815
  type CreateTenantIonResolverOptions = {
770
816
  store: {
771
- getIon(id: string): Promise<Ionite4 | undefined>;
817
+ getIon(id: string): Promise<Ionite5 | undefined>;
772
818
  };
773
819
  getIon?: never;
774
820
  } | {
775
821
  store?: never;
776
- getIon: (id: string) => Promise<Ionite4 | null | undefined>;
822
+ getIon: (id: string) => Promise<Ionite5 | null | undefined>;
777
823
  };
778
- type TenantIonResolver = (id: string) => Promise<Ionite4 | undefined>;
824
+ type TenantIonResolver = (id: string) => Promise<Ionite5 | undefined>;
779
825
  type CreateTenantIonHandlerOptions = {
780
- getIon: (id: string, request: Request) => MaybePromise<Ionite4 | null | undefined>;
826
+ getIon: (id: string, request: Request) => MaybePromise<Ionite5 | null | undefined>;
781
827
  resolveTenant?: (request: Request) => MaybePromise<{
782
828
  id: string;
783
829
  context?: TenantResolutionContext;
784
830
  } | string | null | undefined>;
785
831
  rewriteRequest?: (request: Request, details: {
786
832
  id: string;
787
- ion: Ionite4;
833
+ ion: Ionite5;
788
834
  context?: TenantResolutionContext;
789
835
  }) => MaybePromise<Request>;
790
836
  onMissingTenant?: (request: Request) => MaybePromise<Response>;
@@ -853,8 +899,8 @@ declare function closeAllVaultSockets(): void;
853
899
  *
854
900
  * Keep this synchronized with packages/server/package.json via publish.ts.
855
901
  */
856
- declare const ION_SDK_VERSION = "0.0.24-beta.20260922.10";
857
- import { Workload as CoreWorkload, FrameworkWorkloadConfig, Ionite as Ionite5, JWTAssertionClaims, Logger as Logger7, TokenValidationResult, TrustedIdp, WorkloadConfigMap, WorkloadGetToken, WorkloadIdentityStore as WorkloadIdentityStore2, WorkloadIncomingOutgoing, WorkloadTokenResponse, WorkloadTokenStore } from "@ionite/core";
902
+ declare const ION_SDK_VERSION = "0.0.24-beta.20260922.11";
903
+ import { Workload as CoreWorkload, FrameworkWorkloadConfig, Ionite as Ionite6, JWTAssertionClaims, Logger as Logger7, TokenValidationResult, TrustedIdp, WorkloadConfigMap, WorkloadGetToken, WorkloadIdentityStore as WorkloadIdentityStore2, WorkloadIncomingOutgoing, WorkloadTokenResponse, WorkloadTokenStore } from "@ionite/core";
858
904
  import { StandardSchemaV1 } from "@standard-schema/spec";
859
905
  /**
860
906
  * Common fields shared across all workload authentication modes
@@ -1094,28 +1140,28 @@ declare function workload(validators: WorkloadValidators, log: Logger7, fromVaul
1094
1140
  /**
1095
1141
  * Get the workload identity from an incoming request.
1096
1142
  */
1097
- declare function getWorkload(request: Request, ion: Ionite5): Promise<WorkloadIdentity | undefined>;
1143
+ declare function getWorkload(request: Request, ion: Ionite6): Promise<WorkloadIdentity | undefined>;
1098
1144
  /**
1099
1145
  * Get an access token for the configured workload identity.
1100
1146
  * Client is required and must be one of the configured outgoing workload clients.
1101
1147
  * Throws when no outgoing clients are configured on this Ionite instance.
1102
1148
  * Scope defaults to the config for the chosen client (e.g. workload.outgoing.<name>.scope); pass scope to override.
1103
1149
  */
1104
- declare function getWorkloadToken(client: string, ion: Ionite5, scope?: string): Promise<string>;
1150
+ declare function getWorkloadToken(client: string, ion: Ionite6, scope?: string): Promise<string>;
1105
1151
  /**
1106
1152
  * Validate a workload token from an incoming request.
1107
1153
  * Accepts either an Ionite instance (uses its workload) or a Workload instance directly
1108
1154
  * (e.g. a server-only Workload used for tenant creation auth).
1109
1155
  */
1110
- declare function validateWorkloadToken(request: Request, ionOrWorkload: Ionite5 | CoreWorkload): Promise<TokenValidationResult>;
1156
+ declare function validateWorkloadToken(request: Request, ionOrWorkload: Ionite6 | CoreWorkload): Promise<TokenValidationResult>;
1111
1157
  /**
1112
1158
  * Revoke a workload access token.
1113
1159
  */
1114
- declare function revokeWorkloadToken(token: string, ion: Ionite5): Promise<void>;
1160
+ declare function revokeWorkloadToken(token: string, ion: Ionite6): Promise<void>;
1115
1161
  /**
1116
1162
  * Framework-agnostic request handler for the Workload module (token, validate, jwks, refresh routes).
1117
1163
  */
1118
- declare function workloadHandler(request: Request, ion: Ionite5): Promise<Response>;
1164
+ declare function workloadHandler(request: Request, ion: Ionite6): Promise<Response>;
1119
1165
  import { BaseWorkloadIdentity as BaseWorkloadIdentity2, ListOptions as ListOptions5, ListResult as ListResult5, WorkloadIdentityStore as WorkloadIdentityStore3 } from "@ionite/core";
1120
1166
  /**
1121
1167
  * In-memory {@link WorkloadIdentityStore} implementation using Maps. Suitable for development and
@@ -1167,10 +1213,10 @@ type IoniteConfig<C extends FrameworkConfigInput = FrameworkConfigInput> = C & {
1167
1213
  */
1168
1214
  readyTimeoutMs?: number;
1169
1215
  beforeChange?: ConfigChangeCallback;
1170
- afterChange?: (ion: Ionite6, config: RemoteConfig3, frameworkConfig: ModifiableFrameworkConfig, oldConfig: RemoteConfig3 | undefined) => void;
1216
+ afterChange?: (ion: Ionite7, config: RemoteConfig3, frameworkConfig: ModifiableFrameworkConfig, oldConfig: RemoteConfig3 | undefined) => void;
1171
1217
  routing?: RoutingOptions2;
1172
1218
  configRetry?: RemoteConfigRetryOptions;
1173
1219
  onConfigLoadError?: RemoteConfigRetryHook;
1174
1220
  };
1175
- declare function ionite<const C extends FrameworkConfigInput = FrameworkConfigInput>(source: ConfigSource9, config: IoniteConfig<C> | FrameworkConfigInput): Ionite6;
1176
- export { AccessCheckReason, AccessCheckResult, AfterLoginContext, AfterLoginHook, AfterLogoutContext, AfterLogoutHook, AssignmentPolicyError, AwsConfigSourceOptions, AzureConfigSourceOptions, BeforeLoginContext, BeforeLoginHook, BeforeLogoutContext, BeforeLogoutHook, CapabilityDescriptor, CapabilityKey2 as CapabilityKey, CatalogAdjacencyCache, CatalogView, ConfigFromSourceOptions, CreateTenantIonHandlerOptions, CreateTenantIonResolverOptions, CreateTenantRequest2 as CreateTenantRequest, EnvConfigOptions, EnvironmentType, FrameworkOtelConfig, FrameworkStores3 as FrameworkStores, GcpConfigSourceOptions, HttpPollingHooks, ION_CAPABILITY_CATALOG, ION_CAPABILITY_CATALOG_VERSION, ION_READY_DEFAULT_TIMEOUT_MS, ION_SDK_VERSION, IamAssignmentPolicy, IamDeltaConfig, IamDeltaDeps, InMemoryAccessAssignmentStore, InMemoryAccessCatalogStore, InMemoryAccessIndex, InMemoryCustomerStore, InMemoryMagicLinkStore, InMemoryResourceStore, InMemorySessionStore, InMemoryTenantStore, InMemoryUserStore, InMemoryWorkloadIdentityStore, InMemoryWorkloadTokenStore, IoniteConfig, IoniteError, IoniteErrorOptions, LfvSecretsSource, MirrorSecretsOptions, MirroredConfigOptions, MirroredConfigSource, Otel, OtelConfig, OtelLevels, OtelLogLevel, OtelLogRecord, OtelMetricsSignalConfig, OtelOAuthClientCredentialsConfig, OtelProviderType, OtelSignalConfig, ReconcileStores, RedirectContext, RedirectPolicy, RedirectResult, RedirectRule, RedirectRuleContext, RedirectVerdict, ReferencedDefinitions, ResolveTenantFromRequestOptions, ScimOutboundClient, ScimOutboundClientOptions, ScimOutboundOutcome, ScimOutboundReceiptCallbacks, ScimOutboundResource, SecretsMirror, SessionDiscoveryOptions, SessionReadCacheOptions, SessionResponse, SubjectScope, SubjectType3 as SubjectType, TenantIonResolver, TenantIonUrls, TenantManagerOptions, TenantMirror, TenantMirrorHooks, TenantMirrorOptions, TenantResolutionContext, TenantResponse, TenantStatus, TenantValidators2 as TenantValidators, TenantWebhookPayload, UpdateTenantRequest2 as UpdateTenantRequest, UrlMap, VAULT_MIN_POLLING_TTL_MS, VaultConfigInvalidPayloadError, VaultConfigSourceOptions, VaultConfigWaitingForSecretError, VaultSubscribeNotSupportedError, VerifyUserOptions, allowHosts, allowOrigins, allowRelativePaths, allowSameOrigin, awsConfig, azureConfig, blockDangerousUrls, callback, captureRedirect, ciam, closeAllVaultSockets, collectReferencedDefinitions, configFromSource, configLocatorFromEnvValues, configSourceFromEnvValues, configSourceFromLocator, createManagedIamDelta, createSessionReadCache, createTenantIonHandler, createTenantIonResolver, defaultRedirectPolicies, deriveIonUrls, devInMemoryStores, discoverSessionRecords, discoverSessions, enforceEndpointAuthz, envConfig, escapeScimFilterValue, expandRoot, gcpConfig, generateULID, getCustomer, getUser, getWorkload, getWorkloadToken, has, hasAll2 as hasAll, hasAllScope, hasAny2 as hasAny, hasAnyScope, hasGroup2 as hasGroup, hasPermission2 as hasPermission, hasRole2 as hasRole, hasScope, hashIntegrationHandle, iam, initiateLogin, ionite, isRedirectAllowed, isVaultConfigInvalidPayloadError, isVaultConfigWaitingForSecretError, lfvVault, listGenerator, listSsoClientIdsFromCookies, mirrorSecrets, mirroredConfig, reconcileSubjectAccess, resolveAfterRedirect, resolveCapturedRedirect, resolveDefaultRoute, resolveRedirect, resolveTenantFromRequest, revokeWorkloadToken, rewriteRequestForDefaultTenantApi, rewriteRequestForDefaultTenantUi, rewriteRequestForTenantPath, rewriteRequestPath, routeRequest, sameOriginRedirectRules, secretConfigSource, sendTenantWebhook, setVaultWebSocketCommandTimeout, sso, subscribeSecretPathWithHttpPolling, tenantMirror, validateWorkloadToken, vault, vaultConfig, vaultSocketDiagnostics, verifyUser, withSetCookies, workload, workloadHandler };
1221
+ declare function ionite<const C extends FrameworkConfigInput = FrameworkConfigInput>(source: ConfigSource9, config: IoniteConfig<C> | FrameworkConfigInput): Ionite7;
1222
+ export { AccessCheckReason, AccessCheckResult, AfterLoginContext, AfterLoginHook, AfterLogoutContext, AfterLogoutHook, AssignmentPolicyError, AwsConfigSourceOptions, AzureConfigSourceOptions, BeforeLoginContext, BeforeLoginHook, BeforeLogoutContext, BeforeLogoutHook, CapabilityDescriptor, CapabilityKey2 as CapabilityKey, CatalogAdjacencyCache, CatalogView, ConfigFromSourceOptions, CreateTenantIonHandlerOptions, CreateTenantIonResolverOptions, CreateTenantRequest2 as CreateTenantRequest, EnvConfigOptions, EnvironmentType, FrameworkOtelConfig, FrameworkStores3 as FrameworkStores, GcpConfigSourceOptions, HttpPollingHooks, ION_CAPABILITY_CATALOG, ION_CAPABILITY_CATALOG_VERSION, ION_READY_DEFAULT_TIMEOUT_MS, ION_SDK_VERSION, IamAssignmentPolicy, IamDeltaConfig, IamDeltaDeps, InMemoryAccessAssignmentStore, InMemoryAccessCatalogStore, InMemoryAccessIndex, InMemoryAuthzStores, InMemoryCustomerStore, InMemoryMagicLinkStore, InMemoryResourceStore, InMemorySessionStore, InMemoryTenantStore, InMemoryUserStore, InMemoryWorkloadIdentityStore, InMemoryWorkloadTokenStore, IoniteConfig, IoniteError, IoniteErrorOptions, LfvSecretsSource, MaterializeTenantOwnerEntitlementOptions, MirrorSecretsOptions, MirroredConfigOptions, MirroredConfigSource, Otel, OtelConfig, OtelLevels, OtelLogLevel, OtelLogRecord, OtelMetricsSignalConfig, OtelOAuthClientCredentialsConfig, OtelProviderType, OtelSignalConfig, PurgeTenantEntitlementsResult, ReconcileStores, RedirectContext, RedirectPolicy, RedirectResult, RedirectRule, RedirectRuleContext, RedirectVerdict, ReferencedDefinitions, ResolveTenantFromRequestOptions, ResolveTenantOwnerOptions, ResolveTenantSessionOptions, ScimOutboundClient, ScimOutboundClientOptions, ScimOutboundOutcome, ScimOutboundReceiptCallbacks, ScimOutboundResource, SecretsMirror, SessionDiscoveryOptions, SessionReadCacheOptions, SessionResponse, SubjectScope, SubjectType3 as SubjectType, TENANT_OWNER_PERMISSION, TenantAccessDenial, TenantAccessDenialReason, TenantAccessLoginUrlOptions, TenantAccessResult, TenantAccessSession, TenantAccessSessionKind, TenantIonResolver, TenantIonUrls, TenantManagerOptions, TenantMirror, TenantMirrorHooks, TenantMirrorOptions, TenantResolutionContext, TenantResponse, TenantStatus, TenantValidators2 as TenantValidators, TenantWebhookPayload, UpdateTenantRequest2 as UpdateTenantRequest, UrlMap, VAULT_MIN_POLLING_TTL_MS, VaultConfigInvalidPayloadError, VaultConfigSourceOptions, VaultConfigWaitingForSecretError, VaultSubscribeNotSupportedError, VerifyUserOptions, allowHosts, allowOrigins, allowRelativePaths, allowSameOrigin, awsConfig, azureConfig, blockDangerousUrls, callback, captureRedirect, ciam, closeAllVaultSockets, collectReferencedDefinitions, configFromSource, configLocatorFromEnvValues, configSourceFromEnvValues, configSourceFromLocator, createManagedIamDelta, createSessionReadCache, createTenantIonHandler, createTenantIonResolver, defaultRedirectPolicies, deriveIonUrls, devInMemoryStores, discoverSessionRecords, discoverSessions, enforceEndpointAuthz, envConfig, escapeScimFilterValue, expandRoot, gcpConfig, generateULID, getCustomer, getOwnedTenantIds, getUser, getWorkload, getWorkloadToken, has, hasAll2 as hasAll, hasAllScope, hasAny2 as hasAny, hasAnyScope, hasGroup2 as hasGroup, hasPermission2 as hasPermission, hasRole2 as hasRole, hasScope, hashIntegrationHandle, iam, inMemoryAuthzDomains, inMemoryAuthzStores, initiateLogin, ionite, isRedirectAllowed, isVaultConfigInvalidPayloadError, isVaultConfigWaitingForSecretError, lfvVault, listGenerator, listSsoClientIdsFromCookies, materializeTenantOwnerEntitlement, mirrorSecrets, mirroredConfig, purgeTenantEntitlements, reconcileSubjectAccess, resolveAfterRedirect, resolveCapturedRedirect, resolveDefaultRoute, resolveRedirect, resolveTenantFromRequest, resolveTenantOwner, resolveTenantSession, revokeWorkloadToken, rewriteRequestForDefaultTenantApi, rewriteRequestForDefaultTenantUi, rewriteRequestForTenantPath, rewriteRequestPath, routeRequest, sameOriginRedirectRules, secretConfigSource, sendTenantWebhook, setVaultWebSocketCommandTimeout, sso, subscribeSecretPathWithHttpPolling, tenantAccessLoginUrl, tenantMirror, tenantOwnerEntitlementId, tenantOwnerPermission, tenantResourceId, validateWorkloadToken, vault, vaultConfig, vaultSocketDiagnostics, verifyUser, withSetCookies, workload, workloadHandler };