@authhero/adapter-interfaces 2.5.0 → 2.6.1
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/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +10911 -52339
- package/dist/adapter-interfaces.mjs +189 -211
- package/dist/tsconfig.types.tsbuildinfo +1 -0
- package/dist/types/adapters/ActionExecutions.d.ts +5 -0
- package/dist/types/adapters/ActionVersions.d.ts +20 -0
- package/dist/types/adapters/Actions.d.ts +12 -0
- package/dist/types/adapters/Analytics.d.ts +9 -0
- package/dist/types/adapters/AuthenticationMethods.d.ts +9 -0
- package/dist/types/adapters/Branding.d.ts +5 -0
- package/dist/types/adapters/Cache.d.ts +35 -0
- package/dist/types/adapters/ClientConnections.d.ts +26 -0
- package/dist/types/adapters/ClientGrants.d.ts +12 -0
- package/dist/types/adapters/ClientRegistrationTokens.d.ts +11 -0
- package/dist/types/adapters/Clients.d.ts +25 -0
- package/dist/types/adapters/CodeExecutor.d.ts +47 -0
- package/dist/types/adapters/Codes.d.ts +17 -0
- package/dist/types/adapters/Connections.d.ts +12 -0
- package/dist/types/adapters/CustomDomains.d.ts +9 -0
- package/dist/types/adapters/CustomText.d.ts +22 -0
- package/dist/types/adapters/EmailProviders.d.ts +7 -0
- package/dist/types/adapters/EmailService.d.ts +14 -0
- package/dist/types/adapters/EmailTemplates.d.ts +8 -0
- package/dist/types/adapters/Flows.d.ts +12 -0
- package/dist/types/adapters/Forms.d.ts +12 -0
- package/dist/types/adapters/Geo.d.ts +16 -0
- package/dist/types/adapters/HookCode.d.ts +7 -0
- package/dist/types/adapters/Hooks.d.ts +12 -0
- package/dist/types/adapters/Invites.d.ts +12 -0
- package/dist/types/adapters/Keys.d.ts +10 -0
- package/dist/types/adapters/LogStreams.d.ts +8 -0
- package/dist/types/adapters/LoginSessions.d.ts +7 -0
- package/dist/types/adapters/Logs.d.ts +11 -0
- package/dist/types/adapters/MigrationSources.d.ts +8 -0
- package/dist/types/adapters/OrganizationConnections.d.ts +8 -0
- package/dist/types/adapters/Organizations.d.ts +12 -0
- package/dist/types/adapters/Outbox.d.ts +59 -0
- package/dist/types/adapters/Passwords.d.ts +7 -0
- package/dist/types/adapters/PromptSettings.d.ts +5 -0
- package/dist/types/adapters/RateLimit.d.ts +27 -0
- package/dist/types/adapters/RefreshTokens.d.ts +36 -0
- package/dist/types/adapters/ResourceServers.d.ts +12 -0
- package/dist/types/adapters/RolePermissions.d.ts +7 -0
- package/dist/types/adapters/Roles.d.ts +13 -0
- package/dist/types/adapters/Sessions.d.ts +12 -0
- package/dist/types/adapters/SmsService.d.ts +11 -0
- package/dist/types/adapters/Stats.d.ts +15 -0
- package/dist/types/adapters/TenantSettings.d.ts +5 -0
- package/dist/types/adapters/Tenants.d.ts +21 -0
- package/dist/types/adapters/Themes.d.ts +7 -0
- package/dist/types/adapters/UniversalLoginTemplates.d.ts +8 -0
- package/dist/types/adapters/UserOrganizations.d.ts +27 -0
- package/dist/types/adapters/UserPermissions.d.ts +7 -0
- package/dist/types/adapters/UserRoles.d.ts +13 -0
- package/dist/types/adapters/Users.d.ts +20 -0
- package/dist/types/adapters/index.d.ts +217 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/types/Action.d.ts +87 -0
- package/dist/types/types/ActionExecution.d.ts +128 -0
- package/dist/types/types/ActionVersion.d.ts +44 -0
- package/dist/types/types/Analytics.d.ts +91 -0
- package/dist/types/types/AttackProtection.d.ts +79 -0
- package/dist/types/types/AuditEvent.d.ts +208 -0
- package/dist/types/types/AuthParams.d.ts +67 -0
- package/dist/types/types/AuthenticationMethod.d.ts +59 -0
- package/dist/types/types/BaseEntity.d.ts +5 -0
- package/dist/types/types/Branding.d.ts +24 -0
- package/dist/types/types/Client.d.ts +249 -0
- package/dist/types/types/ClientGrant.d.ts +61 -0
- package/dist/types/types/ClientRegistrationToken.d.ts +37 -0
- package/dist/types/types/Code.d.ts +68 -0
- package/dist/types/types/Connection.d.ts +470 -0
- package/dist/types/types/CustomDomain.d.ts +116 -0
- package/dist/types/types/CustomText.d.ts +81 -0
- package/dist/types/types/Device.d.ts +9 -0
- package/dist/types/types/EmailProvider.d.ts +9 -0
- package/dist/types/types/EmailTemplate.d.ts +41 -0
- package/dist/types/types/Flow.d.ts +267 -0
- package/dist/types/types/Flows.d.ts +572 -0
- package/dist/types/types/Forms.d.ts +4943 -0
- package/dist/types/types/Hook.d.ts +152 -0
- package/dist/types/types/HookCode.d.ts +15 -0
- package/dist/types/types/Identity.d.ts +36 -0
- package/dist/types/types/Invite.d.ts +50 -0
- package/dist/types/types/JWKS.d.ts +89 -0
- package/dist/types/types/ListParams.d.ts +14 -0
- package/dist/types/types/LogStream.d.ts +67 -0
- package/dist/types/types/LoginSession.d.ts +143 -0
- package/dist/types/types/Logs.d.ts +255 -0
- package/dist/types/types/MigrationSource.d.ts +58 -0
- package/dist/types/types/Organization.d.ts +77 -0
- package/dist/types/types/OrganizationConnection.d.ts +34 -0
- package/dist/types/types/Password.d.ts +25 -0
- package/dist/types/types/PromptSetting.d.ts +11 -0
- package/dist/types/types/RefreshTokens.d.ts +59 -0
- package/dist/types/types/ResourceServer.d.ts +124 -0
- package/dist/types/types/Role.d.ts +29 -0
- package/dist/types/types/RolePermission.d.ts +21 -0
- package/dist/types/types/Session.d.ts +43 -0
- package/dist/types/types/SigningKey.d.ts +22 -0
- package/dist/types/types/SmsProvider.d.ts +11 -0
- package/dist/types/types/Stats.d.ts +12 -0
- package/dist/types/types/Strategy.d.ts +21 -0
- package/dist/types/types/Tenant.d.ts +367 -0
- package/dist/types/types/TenantSettings.d.ts +96 -0
- package/dist/types/types/Theme.d.ts +341 -0
- package/dist/types/types/Token.d.ts +25 -0
- package/dist/types/types/User.d.ts +222 -0
- package/dist/types/types/UserOrganization.d.ts +14 -0
- package/dist/types/types/UserPermission.d.ts +46 -0
- package/dist/types/types/UserRole.d.ts +23 -0
- package/dist/types/types/auth0/Query.d.ts +8 -0
- package/dist/types/types/auth0/Totals.d.ts +13 -0
- package/dist/types/types/auth0/UserResponse.d.ts +46 -0
- package/dist/types/types/auth0/index.d.ts +3 -0
- package/dist/types/types/index.d.ts +53 -0
- package/dist/types/utils/connection-attributes.d.ts +25 -0
- package/dist/types/utils/guards.d.ts +1 -0
- package/dist/types/utils/index.d.ts +4 -0
- package/dist/types/utils/passthrough.d.ts +111 -0
- package/dist/types/utils/user-id.d.ts +4 -0
- package/package.json +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/line-counter.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/errors.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/doc/applyReviver.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/log.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/toJS.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/Scalar.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/stringify/stringify.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/Collection.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/YAMLSeq.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/types.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/common/map.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/common/seq.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/common/string.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/stringify/foldFlowLines.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyNumber.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyString.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/util.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/YAMLMap.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/identity.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/Schema.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/doc/createNode.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/Pair.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/tags.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/options.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/Node.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/cst-scalar.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/cst-stringify.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/cst-visit.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/cst.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/nodes/Alias.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/doc/Document.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/doc/directives.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/compose/composer.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/lexer.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/parse/parser.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/public-api.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/visit.d.ts","../../../node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/index.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/model/specification-extension.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/model/oas-common.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/model/openapi30.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/dsl/openapi-builder30.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/model/server.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/oas30.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/model/openapi31.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/dsl/openapi-builder31.d.ts","../../../node_modules/.pnpm/openapi3-ts@4.5.0/node_modules/openapi3-ts/dist/oas31.d.ts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/json-schema.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/standard-schema.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/registries.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/to-json-schema.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/util.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/versions.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/schemas.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/checks.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/errors.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/core.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/parse.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/regexes.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ar.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/az.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/be.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/bg.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ca.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/cs.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/da.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/de.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/el.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/en.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/eo.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/es.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fa.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fi.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fr.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fr-CA.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/he.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/hr.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/hu.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/hy.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/id.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/is.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/it.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ja.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ka.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/kh.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/km.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ko.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/lt.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/mk.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ms.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/nl.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/no.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ota.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ps.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/pl.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/pt.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ro.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ru.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/sl.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/sv.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ta.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/th.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/tr.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ua.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/uk.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ur.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/uz.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/vi.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/zh-CN.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/zh-TW.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/yo.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/index.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/doc.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/api.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/json-schema-processors.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/json-schema-generator.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/index.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/errors.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/parse.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/schemas.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/checks.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/compat.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/from-json-schema.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/iso.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/coerce.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/external.d.cts","../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/index.d.cts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/zod-extensions.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/openapi-metadata.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/openapi-registry.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/types.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/metadata.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/openapi-generator.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/v3.0/openapi-generator.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/v3.1/openapi-generator.d.ts","../../../node_modules/.pnpm/@asteasolutions+zod-to-openapi@8.5.0_zod@4.4.3/node_modules/@asteasolutions/zod-to-openapi/dist/index.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/request/constants.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/router.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/utils/headers.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/utils/http-status.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/utils/types.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/types.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/utils/body.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/request.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/utils/mime.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/context.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/hono-base.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/hono.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/client/types.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/client/client.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/client/fetch-result-please.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/client/utils.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/client/index.d.ts","../../../node_modules/.pnpm/hono@4.12.23/node_modules/hono/dist/types/index.d.ts","../../../node_modules/.pnpm/@hono+zod-openapi@1.4.0_hono@4.12.23_zod@4.4.3/node_modules/@hono/zod-openapi/dist/index.d.ts","../src/types/BaseEntity.ts","../src/types/Action.ts","../src/types/ActionExecution.ts","../src/types/ActionVersion.ts","../src/types/AuditEvent.ts","../src/types/Flow.ts","../src/types/auth0/Query.ts","../src/types/auth0/Totals.ts","../src/types/Identity.ts","../src/types/User.ts","../src/types/auth0/UserResponse.ts","../src/types/auth0/index.ts","../../../node_modules/.pnpm/nanoid@5.1.11/node_modules/nanoid/index.d.ts","../src/types/Client.ts","../src/types/ClientGrant.ts","../src/types/ClientRegistrationToken.ts","../src/types/Flows.ts","../src/types/AuthParams.ts","../src/types/Branding.ts","../src/types/Code.ts","../src/types/Connection.ts","../src/types/CustomDomain.ts","../src/types/Forms.ts","../src/types/Hook.ts","../src/types/HookCode.ts","../src/types/Invite.ts","../src/types/JWKS.ts","../src/types/ListParams.ts","../src/types/LoginSession.ts","../src/types/Logs.ts","../src/types/LogStream.ts","../src/types/MigrationSource.ts","../src/types/AttackProtection.ts","../src/types/Password.ts","../src/types/Device.ts","../src/types/Session.ts","../src/types/SigningKey.ts","../src/types/Tenant.ts","../src/types/Token.ts","../src/types/Theme.ts","../src/types/PromptSetting.ts","../src/types/EmailProvider.ts","../src/types/EmailTemplate.ts","../src/types/RefreshTokens.ts","../src/types/SmsProvider.ts","../src/types/ResourceServer.ts","../src/types/RolePermission.ts","../src/types/UserPermission.ts","../src/types/UserRole.ts","../src/types/Role.ts","../src/types/Organization.ts","../src/types/OrganizationConnection.ts","../src/types/UserOrganization.ts","../src/types/TenantSettings.ts","../src/types/Stats.ts","../src/types/Analytics.ts","../src/types/CustomText.ts","../src/types/Strategy.ts","../src/types/AuthenticationMethod.ts","../src/types/index.ts","../src/utils/user-id.ts","../src/utils/passthrough.ts","../src/utils/connection-attributes.ts","../src/utils/guards.ts","../src/utils/index.ts","../src/adapters/Actions.ts","../src/adapters/ActionExecutions.ts","../src/adapters/ActionVersions.ts","../src/adapters/Flows.ts","../src/adapters/Cache.ts","../src/adapters/Clients.ts","../src/adapters/ClientConnections.ts","../src/adapters/ClientGrants.ts","../src/adapters/ClientRegistrationTokens.ts","../src/adapters/Codes.ts","../src/adapters/Passwords.ts","../src/adapters/Sessions.ts","../src/adapters/Tenants.ts","../src/adapters/Users.ts","../src/adapters/Logs.ts","../src/adapters/LogStreams.ts","../src/adapters/MigrationSources.ts","../src/adapters/Connections.ts","../src/adapters/CustomDomains.ts","../src/adapters/Keys.ts","../src/adapters/Branding.ts","../src/adapters/Hooks.ts","../src/adapters/HookCode.ts","../src/adapters/Themes.ts","../src/adapters/LoginSessions.ts","../src/adapters/PromptSettings.ts","../src/adapters/EmailProviders.ts","../src/adapters/EmailTemplates.ts","../src/adapters/RefreshTokens.ts","../src/adapters/Forms.ts","../src/adapters/ResourceServers.ts","../src/adapters/RolePermissions.ts","../src/adapters/UserPermissions.ts","../src/adapters/Roles.ts","../src/adapters/UserRoles.ts","../src/adapters/Organizations.ts","../src/adapters/OrganizationConnections.ts","../src/adapters/UserOrganizations.ts","../src/adapters/Invites.ts","../src/adapters/Geo.ts","../src/adapters/AuthenticationMethods.ts","../src/adapters/Stats.ts","../src/adapters/Analytics.ts","../src/adapters/UniversalLoginTemplates.ts","../src/adapters/CustomText.ts","../src/adapters/EmailService.ts","../src/adapters/SmsService.ts","../src/adapters/Outbox.ts","../src/adapters/RateLimit.ts","../src/adapters/CodeExecutor.ts","../src/adapters/TenantSettings.ts","../src/adapters/index.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/index.d.ts"],"fileIdsList":[[213,214,215,217,219,220,364,413,430,431],[129,132,212,213,216,364,413,430,431],[212,213,215,216,364,413,430,431],[212,213,364,413,430,431],[129,132,212,213,364,413,430,431],[129,132,202,212,213,364,413,430,431],[129,212,213,215,218,364,413,430,431],[132,212,213,215,218,364,413,430,431],[129,132,212,213,221,225,226,227,239,364,413,430,431],[364,410,411,413,430,431],[364,412,413,430,431],[413,430,431],[364,413,418,430,431,448],[364,413,414,419,424,430,431,433,445,456],[364,413,414,415,424,430,431,433],[364,413,430,431],[359,360,361,364,413,430,431],[364,413,416,430,431,457],[364,413,417,418,425,430,431,434],[364,413,418,430,431,445,453],[364,413,419,421,424,430,431,433],[364,412,413,420,430,431],[364,413,421,422,430,431],[364,413,423,424,430,431],[364,412,413,424,430,431],[364,413,424,425,426,430,431,445,456],[364,413,424,425,426,430,431,440,445,448],[364,406,413,421,424,427,430,431,433,445,456],[364,413,424,425,427,428,430,431,433,445,453,456],[364,413,427,429,430,431,445,453,456],[362,363,364,365,366,367,368,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462],[364,413,424,430,431],[364,413,430,431,432,456],[364,413,421,424,430,431,433,445],[364,413,430,431,434],[364,413,430,431,435],[364,412,413,430,431,436],[364,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462],[364,413,430,431,438],[364,413,430,431,439],[364,413,424,430,431,440,441],[364,413,430,431,440,442,457,459],[364,413,425,430,431],[364,413,424,430,431,445,446,448],[364,413,430,431,447,448],[364,413,430,431,445,446],[364,413,430,431,448],[364,413,430,431,449],[364,410,413,430,431,445,450,456],[364,413,424,430,431,451,452],[364,413,430,431,451,452],[364,413,418,430,431,433,445,453],[364,413,430,431,454],[364,413,430,431,433,455],[364,413,427,430,431,439,456],[364,413,418,430,431,457],[364,413,430,431,445,458],[364,413,430,431,432,459],[364,413,430,431,460],[364,406,413,430,431],[364,406,413,424,426,430,431,436,445,448,456,458,459,461],[364,413,430,431,445,462],[226,233,234,364,413,430,431],[234,235,237,364,413,430,431],[223,225,226,227,232,233,364,413,430,431],[225,234,236,364,413,430,431],[223,224,225,226,227,229,230,364,413,430,431],[223,227,231,364,413,430,431],[227,232,364,413,430,431],[227,229,231,233,238,364,413,430,431],[222,223,224,226,227,228,364,413,430,431],[224,225,226,231,232,364,413,430,431],[229,364,413,430,431],[123,126,364,413,430,431],[123,130,364,413,430,431],[124,364,413,430,431],[124,125,364,413,430,431],[124,126,127,128,364,413,430,431],[124,128,130,131,364,413,430,431],[364,378,382,413,430,431,456],[364,378,413,430,431,445,456],[364,373,413,430,431],[364,375,378,413,430,431,453,456],[364,413,430,431,433,453],[364,413,430,431,463],[364,373,413,430,431,463],[364,375,378,413,430,431,433,456],[364,370,371,374,377,413,424,430,431,445,456],[364,378,385,413,430,431],[364,370,376,413,430,431],[364,378,399,400,413,430,431],[364,374,378,413,430,431,448,456,463],[364,399,413,430,431,463],[364,372,373,413,430,431,463],[364,378,413,430,431],[364,372,373,374,375,376,377,378,379,380,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,404,405,413,430,431],[364,378,393,413,430,431],[364,378,385,386,413,430,431],[364,376,378,386,387,413,430,431],[364,377,413,430,431],[364,370,373,378,413,430,431],[364,378,382,386,387,413,430,431],[364,382,413,430,431],[364,376,378,381,413,430,431,456],[364,370,375,378,385,413,430,431],[364,413,430,431,445],[364,373,378,399,413,430,431,461,463],[84,107,108,112,114,115,364,413,430,431],[84,88,91,100,101,102,105,107,108,113,115,364,413,430,431],[92,102,108,114,364,413,430,431],[114,364,413,430,431],[83,364,413,430,431],[83,84,88,91,92,100,101,102,105,106,107,108,112,113,114,116,117,118,119,120,121,122,364,413,430,431],[87,88,89,91,100,108,112,114,364,413,430,431],[101,102,108,364,413,430,431],[87,88,89,91,100,101,107,112,113,114,364,413,430,431],[87,89,101,102,103,104,108,112,364,413,430,431],[87,108,112,364,413,430,431],[87,88,89,90,99,102,105,108,112,364,413,430,431],[87,88,89,90,102,103,105,108,112,364,413,430,431],[87,100,105,364,413,430,431],[88,91,100,105,108,113,114,364,413,430,431],[108,114,364,413,430,431],[83,85,86,88,92,102,105,106,108,115,364,413,430,431],[84,88,108,112,364,413,430,431],[112,364,413,430,431],[109,110,111,364,413,430,431],[85,107,108,114,116,364,413,430,431],[92,101,105,107,364,413,430,431],[92,364,413,430,431],[92,107,364,413,430,431],[88,89,91,100,102,103,107,108,364,413,430,431],[87,91,92,99,100,102,364,413,430,431],[87,88,89,92,99,100,102,105,364,413,430,431],[107,113,114,364,413,430,431],[88,364,413,430,431],[88,89,364,413,430,431],[86,87,89,93,94,95,96,97,98,100,103,105,364,413,430,431],[211,364,413,430,431],[202,364,413,430,431],[202,205,364,413,430,431],[137,197,200,202,203,204,205,206,207,208,209,210,364,413,430,431],[133,135,205,364,413,430,431],[202,203,364,413,430,431],[134,202,204,364,413,430,431],[135,137,139,140,141,142,364,413,430,431],[137,139,141,142,364,413,430,431],[137,139,141,364,413,430,431],[134,137,139,140,142,364,413,430,431],[133,135,136,137,138,139,140,141,142,143,144,197,198,199,200,201,364,413,430,431],[133,135,136,139,364,413,430,431],[135,136,139,364,413,430,431],[139,142,364,413,430,431],[133,134,136,137,138,140,141,142,364,413,430,431],[133,134,135,139,202,364,413,430,431],[139,140,141,142,364,413,430,431],[141,364,413,430,431],[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,364,413,430,431],[300,364,413,430,431],[268,300,364,413,430,431],[296,364,413,430,431],[299,364,413,430,431],[262,364,413,430,431],[271,364,413,430,431],[272,364,413,430,431],[245,268,364,413,430,431],[268,287,364,413,430,431],[280,364,413,430,431],[268,291,293,300,364,413,430,431],[306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,364,413,430,431],[300,305,357,364,413,430,431],[240,241,364,413,430,431],[240,364,413,430,431],[240,241,242,364,413,430,431],[240,253,364,413,430,431],[240,258,364,413,430,431],[240,275,364,413,430,431],[240,273,364,413,430,431],[240,241,249,364,413,430,431],[240,250,364,413,430,431],[247,248,251,364,413,430,431],[242,243,244,245,246,249,250,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,364,413,430,431],[261,364,413,430,431],[301,302,303,304,364,413,430,431]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3dfcd0a3bfa70b53135db3cf2e4ddcb7eccc3e4418ce833ae24eecd06928328f","impliedFormat":1},{"version":"bea7cae6a8b2d41fd1a9d70475b54d741dd7ca2103904934858108eec0336a69","impliedFormat":1},{"version":"bc41a8e33caf4d193b0c49ec70d1e8db5ce3312eafe5447c6c1d5a2084fece12","impliedFormat":1},{"version":"7c33f11a56ba4e79efc4ddae85f8a4a888e216d2bf66c863f344d403437ffc74","impliedFormat":1},{"version":"cbef1abd1f8987dee5c9ed8c768a880fbfbff7f7053e063403090f48335c8e4e","impliedFormat":1},{"version":"afb5e9a110ff72b60783e0fe65ce1a28adbe6ab5f30d2dc31e2fb099e0f86de4","impliedFormat":1},{"version":"0132f67b7f128d4a47324f48d0918ec73cf4220a5e9ea8bd92b115397911254f","impliedFormat":1},{"version":"06b37153d512000a91cad6fcbae75ca795ecec00469effaa8916101a00d5b9e2","impliedFormat":1},{"version":"8a641e3402f2988bf993007bd814faba348b813fc4058fce5b06de3e81ed511a","impliedFormat":1},{"version":"281744305ba2dcb2d80e2021fae211b1b07e5d85cfc8e36f4520325fcf698dbb","impliedFormat":1},{"version":"e1b042779d17b69719d34f31822ddba8aa6f5eb15f221b02105785f4447e7f5b","impliedFormat":1},{"version":"6858337936b90bd31f1674c43bedda2edbab2a488d04adc02512aef47c792fd0","impliedFormat":1},{"version":"15cb3deecc635efb26133990f521f7f1cc95665d5db8d87e5056beaea564b0ce","impliedFormat":1},{"version":"e27605c8932e75b14e742558a4c3101d9f4fdd32e7e9a056b2ca83f37f973945","impliedFormat":1},{"version":"f0443725119ecde74b0d75c82555b1f95ee1c3cd371558e5528a83d1de8109de","impliedFormat":1},{"version":"7794810c4b3f03d2faa81189504b953a73eb80e5662a90e9030ea9a9a359a66f","impliedFormat":1},{"version":"b074516a691a30279f0fe6dff33cd76359c1daacf4ae024659e44a68756de602","impliedFormat":1},{"version":"57cbeb55ec95326d068a2ce33403e1b795f2113487f07c1f53b1eaf9c21ff2ce","impliedFormat":1},{"version":"a00362ee43d422bcd8239110b8b5da39f1122651a1809be83a518b1298fa6af8","impliedFormat":1},{"version":"a820499a28a5fcdbf4baec05cc069362041d735520ab5a94c38cc44db7df614c","impliedFormat":1},{"version":"33a6d7b07c85ac0cef9a021b78b52e2d901d2ebfd5458db68f229ca482c1910c","impliedFormat":1},{"version":"8f648847b52020c1c0cdfcc40d7bcab72ea470201a631004fde4d85ccbc0c4c7","impliedFormat":1},{"version":"7821d3b702e0c672329c4d036c7037ecf2e5e758eceb5e740dde1355606dc9f2","impliedFormat":1},{"version":"213e4f26ee5853e8ba314ecad3a73cd06ab244a0809749bb777cbc1619aa07d8","impliedFormat":1},{"version":"1720be851bdb7cdbff68061522a71d9ddaa69db1fe90c6819a26953da05942f2","impliedFormat":1},{"version":"961fa18e1658f3f8e38c23e1a9bc3f4d7be75b056a94700291d5f82f57524ff0","impliedFormat":1},{"version":"079c02dc397960da2786db71d7c9e716475377bcedd81dede034f8a9f94c71b8","impliedFormat":1},{"version":"a7595cbb1b354b54dff14a6bb87d471e6d53b63de101a1b4d9d82d3d3f6eddec","impliedFormat":1},{"version":"1f49a85a97e01a26245fd74232b3b301ebe408fb4e969e72e537aa6ffbd3fe14","impliedFormat":1},{"version":"9c38563e4eabfffa597c4d6b9aa16e11e7f9a636f0dd80dd0a8bce1f6f0b2108","impliedFormat":1},{"version":"a971cba9f67e1c87014a2a544c24bc58bad1983970dfa66051b42ae441da1f46","impliedFormat":1},{"version":"df9b266bceb94167c2e8ae25db37d31a28de02ae89ff58e8174708afdec26738","impliedFormat":1},{"version":"9e5b8137b7ee679d31b35221503282561e764116d8b007c5419b6f9d60765683","impliedFormat":1},{"version":"3e7ae921a43416e155d7bbe5b4229b7686cfa6a20af0a3ae5a79dfe127355c21","impliedFormat":1},{"version":"c7200ae85e414d5ed1d3c9507ae38c097050161f57eb1a70bef021d796af87a7","impliedFormat":1},{"version":"4edb4ff36b17b2cf19014b2c901a6bdcdd0d8f732bcf3a11aa6fd0a111198e27","impliedFormat":1},{"version":"810f0d14ce416a343dcdd0d3074c38c094505e664c90636b113d048471c292e2","impliedFormat":1},{"version":"9c37dc73c97cd17686edc94cc534486509e479a1b8809ef783067b7dde5c6713","impliedFormat":1},{"version":"5fe2ef29b33889d3279d5bc92f8e554ffd32145a02f48d272d30fc1eea8b4c89","impliedFormat":1},{"version":"e39090ffe9c45c59082c3746e2aa2546dc53e3c5eeb4ad83f8210be7e2e58022","impliedFormat":1},{"version":"9f85a1810d42f75e1abb4fc94be585aae1fdac8ae752c76b912d95aef61bf5de","impliedFormat":1},{"version":"f329bf8723d68b13f9e8ae2d798b3e4f9f1fa465521841e5d68af70acbc3c671","impliedFormat":1},{"version":"0ce2680ee454e7ea8095ff8c0a081639f710079418714ca1e359501c9d24d8a3","impliedFormat":1},{"version":"170b9a2ad1d17d6555098a224923ea346b9d3b1be097133696e27ea2bacf6e6f","impliedFormat":1},{"version":"ba04e8da6477145e8b8023c2756305a7a636973c0153db0c3b269f58fdc890ba","impliedFormat":1},{"version":"7996447df60c37ff3bb3a95e3548d36eb15852e0566b67234e230dac01f1a67b","impliedFormat":1},{"version":"bafd40a9cfdd53ab37b8632dceb51f78353d73059a5c1dac42d6646af82c6bb3","impliedFormat":1},{"version":"3489699bd620b8b427a3f718ae3da99ecfe02fd47c6f31413ca55ab9406bfb30","impliedFormat":1},{"version":"08e2af4847f7dd8c416ed453d9eaf31e6858cb200f3946b3c4d31a2972bc7163","impliedFormat":1},{"version":"4f572f283235fe6b8703177a892fd59c8b3be53568801a3f0e1ff08d0fd914e0","impliedFormat":1},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"40ba6c32eb732a09e4446ade5cb6ad0c147f186f9c9dc6878b90b4418ad9f6ea","impliedFormat":1},{"version":"fdd814741843f85c98281522c58f5a646590ba9019fad2efaa95987655e0611b","impliedFormat":1},{"version":"c78aff4fb58b28b8f642d5095fc7eeb79f00e652a67caa19693af1adabb833c9","impliedFormat":1},{"version":"f80a08ced8818dc99359c0acd5b3f12762e1ce53758007759b0d4e503cbf4a5e","impliedFormat":1},{"version":"37935fa7564bcc6e0bc845b766a24391098d26f7c8245d6e8ab37bc016816e94","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"0f8a263f4c8595c8a07de52e3f3927640c44386c1aa2984de9eae50d75e613b2","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"346fffde7c32da87c2196eb7494422449dc2ca82d3b4e6bf55be1d1a33ffc2b0","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8b5875e4958528042103fdd775e106a7f76bafc29709f0690df9a7d2241d52a7","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"aef26cf95593c8ace1c62c4724f9afac77bdfa756fb8a00613cd152117cb2f43","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"268fd6d9f2e807a39a6c5aa654b00f949feb63d3faa7dd0f9bba7dde9172159c","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},{"version":"f23702f28de6477d1a6f812ab44e3097954d5423b0a0e948ff8dcf1dd740bef6","impliedFormat":1},{"version":"ac3562d18b6da622e8b32893c26e65b909df824aa791853dbafc283cc533b2cb","impliedFormat":1},{"version":"e236d97bee4be2d818c235256c69b217a9c626a26f0fcabc4e20ee769218fdd2","impliedFormat":1},{"version":"f8890db99925e7480d7a667bf10b7a2a0613a554a421cc842306384c9936f83e","impliedFormat":1},{"version":"926bf98ce7a66a33e7b7e9d381b893115fe5b72ba37dba6a4cc333aaddaa4bd0","impliedFormat":1},{"version":"32f5b1b759906dea0441e7e2b5d4255367640ff66a02b26f2c74d3b8e1ff2061","impliedFormat":1},{"version":"4cca119af7229fcd6d54d36228bbe4c700c9cdcb4a93382c29b02338bae599ec","impliedFormat":1},{"version":"65d916329c390a1d312bdd90743eaa9eace1b599a456a4dc6b9c263d2120c858","impliedFormat":1},{"version":"fa08323d2eae16c85ce62286f90fbfadab02a413c176581be6848e297a13bbe3","impliedFormat":1},{"version":"a8cc184ee589bd3806e9e2c5b113f66c5953a20502775adabbce54ec30de8052","impliedFormat":1},{"version":"a033992e14caa339d5b5ba48061035be198e008296b95bc3f0cdaa5c02a845c8","impliedFormat":1},{"version":"b9c8c2b3e7b665f0d8f07c46e4ee4ef586f4fa6e2a9b7e05b453737d7e144d3e","impliedFormat":1},{"version":"984c26e8864dc326bf6f7a72f89625b3facd86a901d406b7e54aca3d6ef9d674","impliedFormat":1},{"version":"9065f8bfa4e2bbbb38964d8f93a052965e432beb813c444db26a6494434482aa","impliedFormat":1},{"version":"1c144f63cb608cdd32246c567cb6e4f979a446a2a8679478e52ff3941b80bc50","impliedFormat":1},{"version":"5c9b631fd684665b7ab77aadfae34060a03e049bf2b39166a4e3878a2fe978dc","impliedFormat":1},{"version":"c31a6401da71e1e32510b3fb56e97ccb2786df5591d5e13d4258229c73fc7df6","impliedFormat":1},{"version":"d67fecdd34c11726ab6fe677d272d5abc5a3e5094787f435547ad8185fa8fff3","impliedFormat":1},{"version":"1ab578c2a429a3c9cc09da99161712aca9730b56452bcf9d7d95c434a9ff2cc9","impliedFormat":1},{"version":"a9382cc4fe0533a57a86e32684d916899528dac08c03bae387a7afacde76cd4a","impliedFormat":1},{"version":"45dd008396b925f1d22bd7c9adbacce9cf66a929ddd4ffb80dc936863bffe103","impliedFormat":1},{"version":"2c01a3ba2a23b8a3a85e12de6e1c7347dfb6554da9e30b49bbb125f6fd217462","impliedFormat":1},{"version":"f19e3abbf04cb89295686f97190766a0b21d1a8191b86e52c63765cfd09b19ca","impliedFormat":1},{"version":"f5bfda545fc03ca1b3dae2cf4c44d06e74bc9865a6a038272ecc4de91dc78685","impliedFormat":1},{"version":"4f6a71f795afdbc9389eb2c8d7ea9f228d95b0d70dfff00a2cf357aecb26f394","impliedFormat":1},{"version":"a01c34217ba822ccd2dd0040822c1f615eeee8ea957efdcb62526152024d9dc6","impliedFormat":1},{"version":"476aba04e8bfbf4118af8cc6ea0cf3d44ab206eead09fe4edb2d38a07062c9d7","impliedFormat":1},{"version":"9a7715118d11a40588c9f5187305be8311dcbe035e3aa82580e7e034a9c14f8c","impliedFormat":99},{"version":"7d8d79726438d522e94358235847bdb1c41132b26e6be868662320ddfd240ea0","signature":"dd10d9a6eb46ce04e90d935b3dcf292eb8ba3043898645ab7da719224f6273ba"},{"version":"86c3af8eb6c13de4af7c9d49c73be48ebec0480814c283f7f111c626c5f58a52","signature":"ab7d09ba0bf86d3e7323b7082ebb9d3461e1f015225cd8041c60f3c43cd11669"},{"version":"d115c2798f1181a885040ccf49b85de648df13674ea9c8a684a6d3ee29c2a471","signature":"dd79befa4270fa8fda6c26cac2aabdde6a88078a622ede29d1123e9b0634992a"},{"version":"7179b7461c31fb46e8e9d414308d621aeb1b022b1f1310203e454e84dafce7ca","signature":"4d46bcecfc77e25530df39cdaefa2e77445d6bc44f33f935c42178c7f737314c"},{"version":"da618911e624b478022b8f24f0ad162eca53c7054b7f172e7f4f89687373b215","signature":"1108c9e4a666176d3a26133692305fa68e33b99363c8a07eff29793b56fb855c"},{"version":"116dbee439c3bdb786b722aa8caae08d42253de98c9977740f1f0fb09f6cfe2a","signature":"d003ae30d6826a6271e4c5cb2a49fb9327fdbda0842318babf99c1921c7eb5bd"},{"version":"c6e696b5c4ae5cbdade6333f422308fbd3b6b134d3f0c8aebad627f922cd8e82","signature":"2450dedc78a62de6582c0cc786c0dbf24e465c75cb1af70e9976ea6be265010b"},{"version":"4a982b195397021524679a144f6e98d53bebfff0d7c5a9eeca639e56474553ac","signature":"e75a15f2424c547c33c25b39312f28e75d60397150601bbfc7841e581747d68d"},{"version":"ed419a45318e355dc8aaa6c1a44ce9a631a9799d066781ce70e1dd32ee03f629","signature":"c44eb71d1aaec4a7a65f65810b3086f0a6af1f8c97d13f460e0c683a35a860e9"},{"version":"3030b7d107be033c2991d2bae9072c651fd220c051eb196721e3bc4bb31641d1","signature":"63de8a8a08c5ad7a9c39b8dc2f5e831122f73d271130167d3414788037cb8da6"},{"version":"f9df349b2dc958ab656c967fd5fa9dee7671e818e64aec9dbef0b8843e9a0794","signature":"afe46b2d7a203980a6fdd22478dfbb581cb0393c10912107e9cbeb8b5f86a794"},"1d4627c561b2f7f95018f614a2f5ad78513937cffe234b2d4dcbbc01af604c6e",{"version":"3637e4089eaf583a1675743fa74e25ff09144b400782ed787d37980fc36fa085","impliedFormat":99},{"version":"03e36df2bd91ccac81478a0de002b867d278da64d91711d008c953a0e5041b7a","signature":"3b464d82c001b3fde0695defc42f4dc1bf989402a7e1dc5b5a7474b29e0f13f8"},{"version":"fb9107c0bb028c055a8cb5388c11f2e3e43805911bab4b414010b330f0ac58f8","signature":"c7d5c873cf33aa2bcd77671b6557b64b1ee22c23efd615ebb3fd3f3bb6a05881"},{"version":"a818859653d5609c30c8ca098792610b592102728f52c608167c434503f832ff","signature":"b1ba52a346b01cd542e391e03b7aeacfcad2fc46cef2fafe52f095c3bd27caab"},{"version":"7fd0334a25328c5759c35eef5b34aa2341d5aef656eddd85a664f50b9730f4c4","signature":"b643229dd032ba55ddb0fc32c265981601abaef2c93d5c3bcb3d2f5938757270"},{"version":"12659e7a04d406a47498a095aa65f9e615bb3461435fbe3d01acbd4f87af1ce1","signature":"517cee49ced309efab32fad23d6f80e03e19c8f5c5f03b959cf56df397b55320"},{"version":"a3e41fbaa124ba37896923bf8be154773dcef7d258924a07f548b443f574bc65","signature":"7713d44cdb78dde3fd8e235d5b74bd32225e07450b24b58f96baf0ecae34ad07"},{"version":"5729761b88568c3bac504b48af6cd1e1aa7d0851002938cda9b9fb24c6a31db9","signature":"b0692e215ed6a074bd6e77219ee3a120c283c2a606ef79a979d5cb6f3fabf9fe"},{"version":"97834eff6698b72805cb8f8e56e8a75011b2b2bbe82d012f17e8df10df203b5d","signature":"aa8c9333a42926be933c275979e3f2cfe840057ef95cf72d49a0fe799defed78"},{"version":"425aa8532a03bdf3c47eac70c162011af83b52eb07d3a43c9064019b81d1901f","signature":"87492f9f1c11724376cd5eb0ebfda6714171ec3977055547b742497b6ee22569"},{"version":"fc2c90cc85cb263f90e770ce41dadab5205c52cfa544e7a853d760ad8f28ac0b","signature":"9b6f614f2259a0ee44818b13550a942fa5ebd9f3a45e39287fed9642d3493b09"},{"version":"d676873fbf0e6b2d576cbf99bb6e79684b60ab05bfc0b6d62d0d441f854868d7","signature":"170685b04c365542990e333df95d7c0d10f4d10f573c08e9c8b77f9aef4b303e"},{"version":"4ce851e54398f534403f608db2637b6dec0aa06cc0aad74a9f63d64dfa92d9df","signature":"be37312cd36fb9a53d015e3e783bc27c8e1ccbe741996e7ebe6ef85e6b268429"},{"version":"3a4f77a4e0044ecae073469c259be1757e6052ada902f1d800b7441a9f78182d","signature":"53e1907610b37c9d46a24052b68d0bf21fa580930fe6879610b6f313c1419d58"},{"version":"a18a258b46c74b0602a1983494def0a3ee83e7b0e6bfdfcf3ed1642be9420b02","signature":"f085064de34c32ee3c3ba45aab86ae92d55968bfd1ea86aa673ef4e8306eb0a6"},{"version":"aff1ccfcf445c3eabd7975dcc574b1e2f6e64dd22e132fb69c5084b8a3db2fa4","signature":"6abe54520626ac46023d8612a07a88f5743cad0020d19b6589b98f8695e7317a"},{"version":"bdda620a9de3c5b6795099d550f1e33853b55cd4ce4fa393f855928e6a15751d","signature":"37c7af324670b7ebf7aa7115e0ffe0fa424ffddabe879c4862ed3668296cf13b"},{"version":"7958c67ca94513a25a3368c6ece50083c3495d7ec4b2d4da97ce99cc0cb9e0e8","signature":"5ba2b08f323e57c50d61ad90f01615b1ef42126c170577be64bad9392f5d9e21"},{"version":"bf5c27c564573ce0916eaad1d5dba98aa231f641ce695d59475bc0b28e004967","signature":"4b023bcad9e4270cdaab16af138dc373a7fdf350e589c9f72d80b319e042ecbc"},{"version":"356092b5dc30978bc2054d40739fc6264b3d6d72e82ca56e609ba6a47ffb1353","signature":"fb05d6cef59f31f897d67d5159af9a04a9216497bba64e995ba93718d7c16732"},{"version":"9ac56ef9f329219e13ace0a7143de768370151a7d3eccfa8a640eed45060ce60","signature":"709f2699089c347fe63270de8278f329362ec58c9fad61c04863f7941f204deb"},{"version":"ae40291d4004cfc7ef6832612b5d87caaa33372c5577daddb26c2ab64465c4d5","signature":"e8b793c90a3715e9ae7174b23b42457505bfdad666170e4c79190cc6762871f6"},{"version":"6ef13c64132637363c2bf4445e89ba347ba201e39c58eb4174957c5526158697","signature":"9544bc2707000e89ca9d84f9245fafb45d33236891ecb70f123b683789da1c70"},{"version":"aebd1e8d7e7f91c45d48c9539fa5af3f4c9298230ff161f5bc8fbf7aa8d68670","signature":"72e60ef2b5de39126af0cd2711f508f61e5ca8d36c78a5e91454d13f8f5087f3"},{"version":"c316ddefb4aaecec37c87520ec69da2c10dbe28b33079017dea0ebaf0bbdf631","signature":"17cfe8e841487ee80b4c40c0b16774b57377ac84e7940151c79e28b2406d040b"},{"version":"de1783f4a05c979d90b80a5ac855325782841a72a9885327e3c32f1c81fac73e","signature":"07167aee571fa4e3dde7d7b1a3687fedf5888fa9e63bfae62d205cebc58c8535"},{"version":"f8c428c533761eec2b0d7bfdc1dcd6da054866e80845ce513d68157352552ae9","signature":"65e1fcd0b59c543c5ee837b358ec41546c12870f4b52f8746291f866b2d26e85"},{"version":"cda2466e72b4532d1993a2fd9a82eefcc44a4496a44efebeeb4a6bbb3911b56f","signature":"29556ec926cf0c20ae65fa3a548f5bee0ca47ad6a605ea86ac603b4e20feb50c"},{"version":"c29497668e4565685446faba5b28be011e47591f834be87fb4f0b00452d4ea43","signature":"0498f395bbaeb4e3ac34ccfa120d962e71ec5ca8589db6c082462b88671f84b8"},{"version":"f764bd0b61f730449a083da79097965ad9c41e5c0d3ddadf4abeed97ce976038","signature":"05ae40f09c9b861ce6ccf70ef5a9337d702701e7d650661cc49813fb2b379a87"},{"version":"0624dfe9bbe867294509dd9f82a9a98dd245014e0f577b2146c07c4eb3e2653c","signature":"590079bf4dc7fcc33f778ba6c9c4f114eed84212fa59eb1e5f5beb1596d5a39d"},{"version":"d112d20184a5c571a0c6c4fcb4adf8bfbdf37e734dc6c9cedddb313bd43f2efb","signature":"914a572af8dd0d9cc6928f11937d96c054d02e9a769486d5d55b9ab652cdd72b"},{"version":"3a4a2187dbef6525a9602ab855c811aee9e039d6e9df0a0e48badfd2bd183ba3","signature":"c6936986784ee5ba03504cdef109a8e5375b28345e8b399ee8e02fb05cdf41d3"},{"version":"e69012ce37418593bb378df85960d59c4f46a5522d8f1ce17c7f0ef9bdd74abc","signature":"83b15331237d342753f010a0e90bd1112f015cb71b792238530d26050a3dcf75"},{"version":"85b4b2032165aeca7cb6dea21621b28391c690f7f3d3c260ebf82a52d214071b","signature":"ec57ed8ec1fd88b5615d4debc17c1ae47a9d117d681118f12b15a52a18205759"},{"version":"c0cc217b93f6b410e4c839eb8e299412bf313619e46a43534857483223d79b33","signature":"c72857f3a7f309cf07d9af3eb8cd5087b38d88463c4e6404d36633a4b028b197"},{"version":"0e1b56327675a2ca4b89c46289211591667989fb8d306e7db5584eef221bfc4b","signature":"8a998ba87021d30b0efc4ce0c2389b4ed95e6af502e0304efb08cbd51912e2f4"},{"version":"a509a3dcfb2186923a7021590049b382456fac5d6abece25cfc4c7ac93d80a6f","signature":"6b397fe1e927268190e23c8f6bb0277789c6f424ecac18e3f3b414aed1094a21"},{"version":"15d7044e409185a5f8cc66d33c63af59b5b3ba8698a5180e0e782b6722f37524","signature":"db8d0dfc8fa2d06ae605c4830ca15948422986ce7a3a04d31bb9a1315d4c37af"},{"version":"d59c00cb5046fad87e54d7462d63691da0b3f117da2ea778be4dd13a8b80eff5","signature":"9b468fce0a58b570d99c4b799c0b495683756967e11731ff9090c3f2f3102ec4"},{"version":"d7d5978ce1d0314c33d47829eed28a20bd189390ee558f63e7f6c7858033e14a","signature":"743b16061bc361400695d4173b3092f5db47a7fcad28d06f82b6896ec2726352"},{"version":"dd7938c7c5282eccd9c025579dfb8ad5dc8534006f31b7899a16c6f921e94fe9","signature":"dc95490ac4eade77b54f5a3480baea124898ef600296a2223dab9ce258d57644"},{"version":"fe21f339d7261b165982108ae6c78726224abd539a7ff782db5b8fd56fb1a5b6","signature":"9cd1b78986b4aa7f29d4dd05f12893b55df063cf10ced9635db766b03f56911b"},{"version":"e5f0e026bd2f099642181975ba49fe2e52b64d6641937bb5629dd117570970bd","signature":"24a2f94b1b6795f6cbe6fb5ffa2a1344b631e0490dc3f767c87ed2c30dc2143e"},{"version":"15e81144dd3b46ec8acab22ce21e6486f70e9e7234c9a292998bfaf4ccaa42ad","signature":"a73a67fe2d138e184c0027b3cab9b6ff47e97f8f2b651b550275cb85c43d2aa9"},{"version":"b16b8d6a7ae1cd81530b841348cbf8faf34839e94044b056324884bbb1ddff2c","signature":"288506a661ffc9273e2fed1671c9891000ea7ce4afbb91fda6da79749e3e21a7"},{"version":"f86051959166cb9d5948402667cfa4d805575addb1e4b30a60d21fd35da1b159","signature":"47421fa3fdd436a6ff29b5372112f2cf6f04c5ec9a903f680d2c4e20930c5788"},{"version":"7abf12558acba70408a69baf9c45f9eac02b6df86b4ea2f46adb662b5aff0e78","signature":"ae1cd7dcab6d066e0020ab7d5fa4605786c5b5a13ee667367f5ef24784e3fca4"},{"version":"fc9f27b636fcb0676d65a5fbab9e371241fb0ed3237d1e11f8f21e2a3089c3ea","signature":"2506ed14e8f8be6a3e72c4a0ac60380dd635451f83ff12d0cfebbbaed186d0d2"},{"version":"2e0d40d36399035934b973150b2521784ed04515e19457f938947124d7501b2a","signature":"96d7f1e893dfe87d21edc053555e46f5327db504edf5fd1794e76d3a45653db7"},{"version":"6451966389e3fa0b6b51c6ebd11ed44845ab6bdc9b266738a4acefca39891ee0","signature":"247d243ce2c7a0bd39922fdc6870d4ddd48c592c72adef46eaa8397501a214ca"},{"version":"c6d5bf9aa24f00b53622ffb50ca6b536452a3f665cc2e7ea0e9c7fcda1d16303","signature":"d009f06f6be09f21df925960f329043c20afafab0da3b25fcb0a95ecffc372b6"},"367b55e62cc6f55bbbe042cddad73de454347795ba381f09b57106463e71f1e2",{"version":"c521a70f6e5b1525dfd604c04aa52bb8d11681bffb9ee904abcef82a67f66652","signature":"78e41100652ed2b413ce37ca0a3d7317b274dc6ec4097bdab37dca7ba33a4d66"},{"version":"13f2eae47730b1191106ecd92c20c687470691f01bc5cf61aaa0034ca04ded72","signature":"33e70166aebe60384bcc1ece15c05463f6dc81a00bff91dd12878cceafe4ec0a"},{"version":"55203a9c53188195cad31654c45ae58c7766f6c710ee4fd7407995ab3e9a24af","signature":"19c159175ea0913435de91568925a45ef9a7e0ab495de740c0248c41cbc4a7ed"},{"version":"043ac4e247e51dc423f93dd876edd14c30cfb54842aa10fd94c75dffefb266fa","signature":"48e452f0df1b2a7e6a982649e44344bcf7bd5b2d3f5feb7d0b0bfceb0d012ffd"},{"version":"540948d79f1f6cce0040551215b4bc1115ba007a8368d73ec940e041716c3a3d","signature":"596ce925129241e63c3b9ae9ce4d2019a4b86faf119e33319cd28411f6620ef2"},{"version":"bad5b19ad479ac338086fedef72a5c327090ff35160c291b7b02c92464b53e85","signature":"5427db478b1a0a81d18db11649eddc95034b3b21a07dcde77bc364bbb8b46359"},{"version":"a2ce2dcdf13f5729c8b8c9c83669f6254b558ca1ee6753851b32c340d12dcdf2","signature":"7cc48549c6e9954d32148d3ce63d804c8efd0d13db6d02384b64f3d720f4bb24"},{"version":"451259a7b572311afdaf8863857548ee8b23ae200ff3cbc526dab07e943697f9","signature":"b72df23e558fad5a47880e47053faada71fa3c60901f85401e805b7e45304c52"},{"version":"f4329b22b3600383fb4803a473ae6f74d84a64eed163d86568ce6eebb0cb0501","signature":"4e996469cc2f0a25a1bf456bfa6ffc31791fb52f0c1306b87cdffeca0a03f1fd"},{"version":"8b719cb40921efed2e0c83c45d7864b799302ffeba711996e8e0281334879434","signature":"6e61f7b0c9c64da0893027139da141025c40714929039bff84eee019b2e92ed3"},{"version":"1fe3f26a39dd0cb51a1942a3d0597e8013cf971183823da4baaf7064b9288407","signature":"a783e3afb63060fde5459f9cc7f977b1b653f0cbf8cc8d238c793c872cacd25c"},{"version":"52fb65e109b168b29948fc310594d4e3fa12b0ae8a2e63f8b44dd8b104be5f20","signature":"e3726d177446e4096bb8b13d7e1345b6bd58986b59e6e402f0692fe864a33d96"},{"version":"f07858e4603da3cc13bab49ad1f519d53fe7b1a4ab5f9d2a2befcb0eb643a4f8","signature":"a7291225dd861793703fec4926f223e9f9b79917cb0334a633c91546cd0d8ae8"},{"version":"7390fb00037a7f80cee8bfb98af098628ba45654542c75c7f422c712fd64546e","signature":"87f396783fd0cd9e667b760de9eca58cf51e90d1c929bc6f3fb1df48c41e097a"},{"version":"715c76062e6ccf90e3414fa597b7236ac3c004318b6631853b772f0ab9ed0ed2","signature":"02ca56ede86937cf24ef0506b6d56661c6cae16a0fb20c65db0dccd740a790c2"},{"version":"4a1e9d020673fdc0c4773dc477eb482214d48a38949ce22ce5d943dfa4f04944","signature":"d4833a7d743b67155ada0b62148e4b6629bd595e9926d74aa4577db7471a33ec"},{"version":"58c987ae882e2ca9de1193d62e85ad8fa7c53501a3479aebacba60faffb21aaf","signature":"a8f958a58e769a747d21585ba8361fafb26ea2bcd7e9246fe12aa597b2c142fe"},{"version":"5e5257cb320259eb0bb34f8ad379c6272be2fbfa90f036129aa71dd160c01eea","signature":"24ada27910f4da605f4a9607978e7a2bc96b3dc364216d11c2bae7fa30316eee"},{"version":"09528ceb6ac764fb91ee9e4ea172b03cb1137b45d28b4a3518d0edec2978c2f1","signature":"865532b01e8120f977b1d0bf9f05c2506b3d95c581ec64d68917b22ff774da4e"},{"version":"39a40930f2d7fb5caa467f69d81d19af8d5f062e3e091a1863256fb4acea9530","signature":"aacce63250dd1ea2bfee8394f9f548bf2194302a66a90d46bd44c838c3d93a28"},{"version":"8a6ca0ce14d5d816f45c5a892c4f8a1c9c1e357a13fa7ee66a2f51268f93740f","signature":"c816098cde81fda96c05f8e780ce109c542b162a2170ee936a4c1fd0a12dad4b"},{"version":"de35f5a1854da345af546247018b586371bf3cbbf7ed6d302ab65207f09a4dcc","signature":"204c7e8c0f86a5245fad719eea36ed91f6302434d3a618a38b9ce43a1fcb73ee"},{"version":"2764b68d2e51ae8965c170d45762339a8535f41ebbe6f5cffec7abaa20c7f5db","signature":"b0c66ddbced445761d83aad5b4ab5a200289a1372b61cebb428207abd1b71f0f"},{"version":"af6cc389d9cfd0c0fb33d2e203df790160ef53a03518379865c8594ae928d05f","signature":"b0b7777a493ee531681c631f6622a6a8f478f6803934a7ce90caac96127503d8"},{"version":"cce1a6debca8e49f040887837faecabb9b7ce5b267546c3b9588248f7baf8577","signature":"ea86fb32632d75e17b39191d8fddcbb7ad5d7dc2bdc4dd160285c0d7865ea04e"},{"version":"341afd4a448e5d0a695e2d3f12b627323a7fcdf0bb7d0672b8f3a32eeeabe556","signature":"bcc2026f3f41be3de90d06b346bfdb89280642d1a4b8a8c0fde24881d83a0bff"},{"version":"77d724aea2a5f98820807a00ad6e0691492cfc798af724e3c5d87bfd9d95e28c","signature":"9b2658d57126a8d39da10f8cb7075dc1806863212be08d68328dcee9eb2f957b"},{"version":"52f7a8b782c7c75666cfcb37c0ba07ff9b52805929911da95ae0880ccdb07105","signature":"99f1eff2a03cfca1f62d550854acd2db6611adc4516c81244643e3eaaadc5d8a"},{"version":"01d332a85fa2e36dcaaac71baa28fcdf80f1c9fd207ba6be853f562459a1191b","signature":"b15a61f426d7694d5e60a4d070f5ad577c741c89cfcb27d48724075485c751b5"},{"version":"ebb10bbde899dfd59ccf25b221e41ae288b865e2c6a4942557a797ed606388f7","signature":"d3fad6ce04e02f9dd1f448266c849d23033223ea7e5b05b4261b5e4e257c9275"},{"version":"0794f6c1ded76321d2b965870e671a1f7cb0bcd59b066028741abd5c5c6ac28a","signature":"a8b64a3d6b29aaf1bf6119802a4813e86c081aed7de0d6be8b36504e84e51961"},{"version":"4627e534980b49c1b63614d86a45b354ae2b4061b72df37700aa9d6b8333af10","signature":"1a2fbbf3e49565746dd04c13bed1de02b44c4e46ada0a8398ae976c6096a723e"},{"version":"df9a896fa1aa6e505923dc6f4d2290247e986278996020f2b579a9df2f14379f","signature":"129610b5f36b11572b0bc15f137b38fe2f7a02fde0b1786411799ff39c4e373a"},{"version":"a55a75d69ea8517dd54ae36a47eef613b72ce8353b5ac82e85ca43e4d82b1ddd","signature":"57a96e909ca302398e71a271ea876ccfcc6e5e3ada9f246fe84cde9c5858412e"},{"version":"24fd2adf0a70f5c91f470d54bd53d536e9ffa383848b7e6c85bb92ea3e4b209b","signature":"789fb913d990446183074a78707abd76aec46d00e575eae668ed5f8d8eb77592"},{"version":"5f11c85513d85350f8a4ae176fafd37a2c7070aeb6bb07abcbb9c42dbae6c3b6","signature":"5e2fa02dfd6575ee3797a2a55b25663b3dee40c5db011b25c17415f2132da781"},{"version":"b24a4bd626dd267709808d4874c8662a706d87d211b1c5dfece18c3725ee6f0b","signature":"1adf7057668e1827ba8137327f6bf1a6b0960e7be9a223cba6d3e12d98ccdf64"},{"version":"b4d46f767d73cbab3ee1c4138a8076605548282e31d9355ed88feee8cf9a998a","signature":"94990504b07e511b9334da241e5f2c1e96ccf7f363a9c0eb89a2f44bf4562df4"},{"version":"3cb50fcd43de1017c9478be18dfbde5707e5e2fad705da18852eefff2dd3a2e3","signature":"397e3a464c66fbdb412768f86eb0a1d66a774d410438c0b512c2676f8cc3e4d7"},{"version":"fbe0eb7545eedc997ae69cfae5dc060e1f29e6b290289d95ab50271a2db72cc6","signature":"734c5985b0222c5ce855c5cda8b5962125624134302a3c5612f08599ee01f050"},{"version":"c5a7b3e73b782ec12fd3e9f40d76a2869ed3182011aa7ff47c7caf3416fa5056","signature":"4454c0bba3465aa265958ed94081e3517b40cbb34acbe62457e20db60f263948"},{"version":"6fe201e48fa4e360a1f12e73defa0de039bb0b2899be81df5ddcc4c09e4f363a","signature":"214cb0c6b53d1d31dbcdd192caa7e331ca68808ed2456f39d0a25d30293a98b5"},{"version":"585c7e29ad29e5f481ea6967003201e0415409a4678a488822d7a3f63424a31a","signature":"cbb71bd391564a9dbd02c29363322a8d1ac8a3354a69853ef9e119eb87bb4c19"},{"version":"9cf1a4207d91606396f54784c7900ca9aecb24abb0b4583cf8a9c42bce5e41ca","signature":"6a92046c5e0e9f0d2867eb9fd1f60f664317dfbb194772eb10c6717fb9153184"},{"version":"086212e2ec53cb0af794a101f584cce780ea0d416ebc44e5f5ff7de74fcbec6a","signature":"fba3e2b45ca1098b49f01f1a28000f26782e40a706224e4bd8293a8f04941637"},{"version":"54ac3393cafe5756b4496d1efb8b607bee758f67543f700ecb40768b8636fe54","signature":"a04202aa7894672deb39f656cec5c69b85c376d4d3bd73bc23534f4fe361606a"},{"version":"85326ddf041d87efbb50d343f51977e97838abee1afe40bfa4acef45ee6f6120","signature":"bba1cbe32036abad341a2d4df4d6cf61372985a0cb4884427f9eb7a6246f7e5a"},{"version":"834f1d7e6ea030111f077320cb705ce7e9a2538eb2c013108353d3d9ff71cc7a","signature":"5c1bee8020761866d563859dc8e5ff4fb2ce7237d5288913279a5e7f9821d4d2"},{"version":"36638bdc6b358015b4d49b2311e4fde6ea7dce7818390b8dbb150bf93ac58dd4","signature":"16555cf70233d8c207222633f30a043ccd866a05aff43407f337564e4f87fd9f"},{"version":"1158eb699549fc3a4e1bbc184bdfff593ef076e28703789194d78f81ef0d9b06","signature":"f13ce5bdc64e3404ac91f130eb91a1d790000d5a62549603e14ad2b7c6b52670"},{"version":"906016b0266c1e94d9b69b16604c7a9c25598e1303f694104731cdf52e4760f3","signature":"00d3eaf6f854d9453c570ffefd6c259fac1314f838b12f431825b74c0cc25ead"},{"version":"bb73ce2ba2076138b54856589ca0674452a7deab46dacff27664ac3f865f021f","signature":"62cf70977a5596a11eec2475b7750a778286d287363f825174967f77f7d2b1a2"},{"version":"ea52c4158445e843b952cc3f88a46cd8003f31adf4244dbbec3e35d622b609ca","signature":"6506baa9ea9b777eef260f9d0a722dc77fa1d6494fb17c751dcd13fb1257b532"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"73b5fa37db36eeac90c4d752e39586f1b57187400c4f5280fd05f16437287a45","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"80523c00b8544a2000ae0143e4a90a00b47f99823eb7926c1e03c494216fc363","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"746911b62b329587939560deb5c036aca48aece03147b021fa680223255d5183","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[[241,252],[254,358]],"options":{"allowImportingTsExtensions":true,"allowJs":true,"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":true,"jsx":4,"module":99,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":99},"referencedMap":[[221,1],[217,2],[218,3],[214,4],[215,5],[216,6],[219,7],[220,8],[213,5],[240,9],[410,10],[411,10],[412,11],[364,12],[413,13],[414,14],[415,15],[359,16],[362,17],[360,16],[361,16],[416,18],[417,19],[418,20],[419,21],[420,22],[421,23],[422,23],[423,24],[424,25],[425,26],[426,27],[365,16],[363,16],[427,28],[428,29],[429,30],[463,31],[430,32],[431,16],[432,33],[433,34],[434,35],[435,36],[436,37],[437,38],[438,39],[439,40],[440,41],[441,41],[442,42],[443,16],[444,43],[445,44],[447,45],[446,46],[448,47],[449,48],[450,49],[451,50],[452,51],[453,52],[454,53],[455,54],[456,55],[457,56],[458,57],[459,58],[460,59],[366,16],[367,16],[368,16],[407,60],[408,16],[409,16],[461,61],[462,62],[369,16],[235,63],[236,16],[238,64],[234,65],[237,66],[231,67],[232,68],[233,69],[239,70],[229,71],[222,16],[223,16],[227,72],[228,73],[224,16],[225,16],[230,16],[226,16],[253,16],[127,74],[131,75],[125,76],[126,77],[130,77],[128,77],[124,16],[129,78],[132,79],[81,16],[82,16],[13,16],[14,16],[16,16],[15,16],[2,16],[17,16],[18,16],[19,16],[20,16],[21,16],[22,16],[23,16],[24,16],[3,16],[25,16],[26,16],[4,16],[27,16],[31,16],[28,16],[29,16],[30,16],[32,16],[33,16],[34,16],[5,16],[35,16],[36,16],[37,16],[38,16],[6,16],[42,16],[39,16],[40,16],[41,16],[43,16],[7,16],[44,16],[49,16],[50,16],[45,16],[46,16],[47,16],[48,16],[8,16],[54,16],[51,16],[52,16],[53,16],[55,16],[9,16],[56,16],[57,16],[58,16],[60,16],[59,16],[61,16],[62,16],[10,16],[63,16],[64,16],[65,16],[11,16],[66,16],[67,16],[68,16],[69,16],[70,16],[1,16],[71,16],[72,16],[12,16],[76,16],[74,16],[79,16],[78,16],[73,16],[77,16],[75,16],[80,16],[385,80],[395,81],[384,80],[405,82],[376,83],[375,84],[404,85],[398,86],[403,87],[378,88],[392,89],[377,90],[401,91],[373,92],[372,85],[402,93],[374,94],[379,95],[380,16],[383,95],[370,16],[406,96],[396,97],[387,98],[388,99],[390,100],[386,101],[389,102],[399,85],[381,103],[382,104],[391,105],[371,106],[394,97],[393,95],[397,16],[400,107],[116,108],[114,109],[85,16],[103,110],[115,111],[84,112],[123,113],[86,16],[113,114],[90,115],[108,116],[105,117],[88,118],[100,119],[91,120],[104,121],[101,122],[87,123],[107,124],[109,125],[110,126],[111,126],[112,127],[117,16],[83,16],[118,126],[119,128],[102,129],[93,130],[94,130],[95,130],[106,131],[92,132],[120,133],[121,134],[96,16],[89,135],[97,136],[98,137],[99,138],[122,122],[212,139],[206,140],[210,141],[207,141],[203,140],[211,142],[208,143],[209,141],[204,144],[205,145],[199,146],[140,147],[142,148],[198,16],[141,149],[202,150],[201,151],[200,152],[133,16],[143,147],[144,16],[135,153],[139,154],[134,16],[136,155],[137,156],[138,16],[145,157],[146,157],[147,157],[148,157],[149,157],[150,157],[151,157],[152,157],[153,157],[154,157],[155,157],[156,157],[157,157],[158,157],[160,157],[159,157],[161,157],[162,157],[163,157],[164,157],[165,157],[197,158],[166,157],[167,157],[168,157],[169,157],[170,157],[171,157],[172,157],[173,157],[174,157],[175,157],[176,157],[177,157],[178,157],[180,157],[179,157],[181,157],[182,157],[183,157],[184,157],[185,157],[186,157],[187,157],[188,157],[189,157],[190,157],[191,157],[192,157],[193,157],[196,157],[194,157],[195,157],[307,159],[308,160],[306,160],[348,161],[346,162],[326,159],[310,16],[312,159],[313,160],[314,159],[311,160],[355,16],[315,160],[323,160],[324,163],[350,159],[332,159],[351,159],[333,159],[309,160],[335,160],[345,16],[328,159],[327,160],[344,160],[325,160],[321,164],[330,159],[320,160],[322,165],[342,159],[341,160],[353,166],[316,159],[331,159],[354,16],[334,159],[336,160],[337,167],[339,160],[317,160],[352,16],[347,159],[356,159],[318,160],[329,168],[349,16],[343,169],[338,160],[340,160],[319,160],[357,170],[358,171],[242,172],[243,173],[244,174],[296,173],[273,173],[245,173],[258,173],[299,173],[241,173],[259,173],[254,175],[255,173],[256,173],[260,173],[261,176],[262,173],[297,173],[275,173],[282,173],[283,173],[246,172],[257,173],[263,172],[264,172],[265,172],[249,173],[266,173],[267,173],[268,16],[271,173],[269,176],[270,173],[272,173],[291,172],[292,173],[274,173],[281,173],[284,177],[286,173],[290,173],[287,173],[276,177],[277,173],[285,173],[295,173],[298,16],[278,178],[294,173],[280,173],[279,173],[250,179],[293,172],[288,173],[289,173],[247,173],[248,173],[251,180],[252,181],[300,182],[303,183],[304,16],[305,184],[302,16],[301,16]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.9.3"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ActionExecution, ActionExecutionInsert } from "../types";
|
|
2
|
+
export interface ActionExecutionsAdapter {
|
|
3
|
+
create: (tenant_id: string, execution: ActionExecutionInsert) => Promise<ActionExecution>;
|
|
4
|
+
get: (tenant_id: string, execution_id: string) => Promise<ActionExecution | null>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ActionVersion, ActionVersionInsert, Totals } from "../types";
|
|
2
|
+
import { ListParams } from "../types/ListParams";
|
|
3
|
+
export interface ListActionVersionsResponse extends Totals {
|
|
4
|
+
versions: ActionVersion[];
|
|
5
|
+
}
|
|
6
|
+
export interface ActionVersionsAdapter {
|
|
7
|
+
/**
|
|
8
|
+
* Append a new version row for an action. The adapter assigns the next
|
|
9
|
+
* sequential `number` per action_id and clears the `deployed` flag on any
|
|
10
|
+
* prior versions when the new one is created with `deployed: true`.
|
|
11
|
+
*/
|
|
12
|
+
create: (tenant_id: string, version: ActionVersionInsert) => Promise<ActionVersion>;
|
|
13
|
+
get: (tenant_id: string, action_id: string, version_id: string) => Promise<ActionVersion | null>;
|
|
14
|
+
list: (tenant_id: string, action_id: string, params?: ListParams) => Promise<ListActionVersionsResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Remove every version row for an action — used when the parent action is
|
|
17
|
+
* deleted. Returns the number of rows removed.
|
|
18
|
+
*/
|
|
19
|
+
removeForAction: (tenant_id: string, action_id: string) => Promise<number>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Action, ActionInsert, ActionUpdate, Totals } from "../types";
|
|
2
|
+
import { ListParams } from "../types/ListParams";
|
|
3
|
+
export interface ListActionsResponse extends Totals {
|
|
4
|
+
actions: Action[];
|
|
5
|
+
}
|
|
6
|
+
export interface ActionsAdapter {
|
|
7
|
+
create: (tenant_id: string, action: ActionInsert) => Promise<Action>;
|
|
8
|
+
get: (tenant_id: string, action_id: string) => Promise<Action | null>;
|
|
9
|
+
update: (tenant_id: string, action_id: string, action: ActionUpdate) => Promise<boolean>;
|
|
10
|
+
remove: (tenant_id: string, action_id: string) => Promise<boolean>;
|
|
11
|
+
list: (tenant_id: string, params?: ListParams) => Promise<ListActionsResponse>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AnalyticsQueryParams, AnalyticsQueryResponse, AnalyticsResource } from "../types/Analytics";
|
|
2
|
+
export interface AnalyticsAdapter {
|
|
3
|
+
/**
|
|
4
|
+
* Run an analytics query for a tenant. The adapter is responsible for
|
|
5
|
+
* injecting the tenant_id predicate; the route handler never trusts a
|
|
6
|
+
* tenant value from a client-controlled source.
|
|
7
|
+
*/
|
|
8
|
+
query(tenantId: string, resource: AnalyticsResource, params: AnalyticsQueryParams): Promise<AnalyticsQueryResponse>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AuthenticationMethod, AuthenticationMethodInsert, AuthenticationMethodUpdate } from "../types/AuthenticationMethod";
|
|
2
|
+
export interface AuthenticationMethodsAdapter {
|
|
3
|
+
create: (tenant_id: string, method: AuthenticationMethodInsert) => Promise<AuthenticationMethod>;
|
|
4
|
+
get: (tenant_id: string, method_id: string) => Promise<AuthenticationMethod | null>;
|
|
5
|
+
getByCredentialId: (tenant_id: string, credential_id: string) => Promise<AuthenticationMethod | null>;
|
|
6
|
+
list: (tenant_id: string, user_id: string) => Promise<AuthenticationMethod[]>;
|
|
7
|
+
update: (tenant_id: string, method_id: string, data: AuthenticationMethodUpdate) => Promise<AuthenticationMethod>;
|
|
8
|
+
remove: (tenant_id: string, method_id: string) => Promise<boolean>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export interface CacheItem<T = any> {
|
|
2
|
+
value: T;
|
|
3
|
+
expiresAt?: Date;
|
|
4
|
+
}
|
|
5
|
+
export interface CacheAdapter {
|
|
6
|
+
/**
|
|
7
|
+
* Get a value from the cache
|
|
8
|
+
* @param key The cache key
|
|
9
|
+
* @returns The cached value or null if not found or expired
|
|
10
|
+
*/
|
|
11
|
+
get<T = any>(key: string): Promise<T | null>;
|
|
12
|
+
/**
|
|
13
|
+
* Set a value in the cache
|
|
14
|
+
* @param key The cache key
|
|
15
|
+
* @param value The value to cache
|
|
16
|
+
* @param ttlSeconds Time to live in seconds (optional)
|
|
17
|
+
*/
|
|
18
|
+
set<T = any>(key: string, value: T, ttlSeconds?: number): Promise<void>;
|
|
19
|
+
/**
|
|
20
|
+
* Delete a value from the cache
|
|
21
|
+
* @param key The cache key
|
|
22
|
+
* @returns True if the key existed and was deleted, false otherwise
|
|
23
|
+
*/
|
|
24
|
+
delete(key: string): Promise<boolean>;
|
|
25
|
+
/**
|
|
26
|
+
* Delete all values from the cache that match a key prefix
|
|
27
|
+
* @param prefix The key prefix to match
|
|
28
|
+
* @returns The number of keys deleted
|
|
29
|
+
*/
|
|
30
|
+
deleteByPrefix(prefix: string): Promise<number>;
|
|
31
|
+
/**
|
|
32
|
+
* Clear all items from the cache
|
|
33
|
+
*/
|
|
34
|
+
clear(): Promise<void>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Connection } from "../types";
|
|
2
|
+
export interface ClientConnectionsAdapter {
|
|
3
|
+
/**
|
|
4
|
+
* Get all connections enabled for a specific client
|
|
5
|
+
* Returns connections in the order they were stored
|
|
6
|
+
*/
|
|
7
|
+
listByClient(tenant_id: string, client_id: string): Promise<Connection[]>;
|
|
8
|
+
/**
|
|
9
|
+
* Update the connections for a client
|
|
10
|
+
* The connection_ids array determines both which connections are enabled
|
|
11
|
+
* and their display order on the login page
|
|
12
|
+
*/
|
|
13
|
+
updateByClient(tenant_id: string, client_id: string, connection_ids: string[]): Promise<boolean>;
|
|
14
|
+
/**
|
|
15
|
+
* Get all clients that have a specific connection enabled
|
|
16
|
+
*/
|
|
17
|
+
listByConnection(tenant_id: string, connection_id: string): Promise<string[]>;
|
|
18
|
+
/**
|
|
19
|
+
* Add a client to a connection (add client_id to the list of clients using this connection)
|
|
20
|
+
*/
|
|
21
|
+
addClientToConnection(tenant_id: string, connection_id: string, client_id: string): Promise<boolean>;
|
|
22
|
+
/**
|
|
23
|
+
* Remove a client from a connection
|
|
24
|
+
*/
|
|
25
|
+
removeClientFromConnection(tenant_id: string, connection_id: string, client_id: string): Promise<boolean>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ListParams } from "../types/ListParams";
|
|
2
|
+
import { ClientGrant, ClientGrantInsert, Totals } from "../types";
|
|
3
|
+
export interface ListClientGrantsResponse extends Totals {
|
|
4
|
+
client_grants: ClientGrant[];
|
|
5
|
+
}
|
|
6
|
+
export interface ClientGrantsAdapter {
|
|
7
|
+
create(tenant_id: string, params: ClientGrantInsert): Promise<ClientGrant>;
|
|
8
|
+
get(tenant_id: string, id: string): Promise<ClientGrant | null>;
|
|
9
|
+
list(tenant_id: string, params?: ListParams): Promise<ListClientGrantsResponse>;
|
|
10
|
+
update(tenant_id: string, id: string, clientGrant: Partial<ClientGrantInsert>): Promise<boolean>;
|
|
11
|
+
remove(tenant_id: string, id: string): Promise<boolean>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ClientRegistrationToken, ClientRegistrationTokenInsert } from "../types";
|
|
2
|
+
export interface ClientRegistrationTokensAdapter {
|
|
3
|
+
create: (tenant_id: string, token: ClientRegistrationTokenInsert) => Promise<ClientRegistrationToken>;
|
|
4
|
+
get: (tenant_id: string, id: string) => Promise<ClientRegistrationToken | null>;
|
|
5
|
+
getByHash: (tenant_id: string, token_hash: string) => Promise<ClientRegistrationToken | null>;
|
|
6
|
+
listByClient: (tenant_id: string, client_id: string) => Promise<ClientRegistrationToken[]>;
|
|
7
|
+
markUsed: (tenant_id: string, id: string, used_at: string) => Promise<boolean>;
|
|
8
|
+
revoke: (tenant_id: string, id: string, revoked_at: string) => Promise<boolean>;
|
|
9
|
+
revokeByClient: (tenant_id: string, client_id: string, revoked_at: string) => Promise<number>;
|
|
10
|
+
remove: (tenant_id: string, id: string) => Promise<boolean>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Client, ClientInsert, Totals } from "../types";
|
|
2
|
+
import { ListParams } from "../types/ListParams";
|
|
3
|
+
/**
|
|
4
|
+
* Result from getByClientId including tenant_id since client_id alone
|
|
5
|
+
* is used to look up the client across all tenants
|
|
6
|
+
*/
|
|
7
|
+
export interface ClientWithTenantId extends Client {
|
|
8
|
+
tenant_id: string;
|
|
9
|
+
}
|
|
10
|
+
export interface ClientsAdapter {
|
|
11
|
+
create(tenant_id: string, params: ClientInsert): Promise<Client>;
|
|
12
|
+
get(tenant_id: string, client_id: string): Promise<Client | null>;
|
|
13
|
+
/**
|
|
14
|
+
* Get a client by client_id only (without tenant_id).
|
|
15
|
+
* Returns the client with its tenant_id since the caller needs to know
|
|
16
|
+
* which tenant the client belongs to.
|
|
17
|
+
*/
|
|
18
|
+
getByClientId(client_id: string): Promise<ClientWithTenantId | null>;
|
|
19
|
+
remove(tenant_id: string, client_id: string): Promise<boolean>;
|
|
20
|
+
list(tenant_id: string, params?: ListParams): Promise<{
|
|
21
|
+
clients: Client[];
|
|
22
|
+
totals?: Totals;
|
|
23
|
+
}>;
|
|
24
|
+
update(tenant_id: string, client_id: string, client: Partial<Client>): Promise<boolean>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export interface CodeExecutionLog {
|
|
2
|
+
level: "log" | "info" | "warn" | "error" | "debug";
|
|
3
|
+
message: string;
|
|
4
|
+
}
|
|
5
|
+
export interface CodeExecutionResult {
|
|
6
|
+
success: boolean;
|
|
7
|
+
error?: string;
|
|
8
|
+
durationMs: number;
|
|
9
|
+
apiCalls: Array<{
|
|
10
|
+
method: string;
|
|
11
|
+
args: unknown[];
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* Console output captured from the user code during execution. Populated by
|
|
15
|
+
* executors that shadow `console.*` inside the sandbox; absent on executors
|
|
16
|
+
* that don't support capture.
|
|
17
|
+
*/
|
|
18
|
+
logs?: CodeExecutionLog[];
|
|
19
|
+
}
|
|
20
|
+
export interface CodeExecutor {
|
|
21
|
+
execute(params: {
|
|
22
|
+
code: string;
|
|
23
|
+
hookCodeId?: string;
|
|
24
|
+
triggerId: string;
|
|
25
|
+
event: Record<string, unknown>;
|
|
26
|
+
/** Wall-clock timeout for the entire execution (ms). */
|
|
27
|
+
timeoutMs?: number;
|
|
28
|
+
/**
|
|
29
|
+
* CPU-time limit (ms) for runtimes that distinguish CPU time from
|
|
30
|
+
* wall-clock time (e.g. Cloudflare Workers for Platforms).
|
|
31
|
+
* Ignored by executors that do not support CPU-time limits.
|
|
32
|
+
*/
|
|
33
|
+
cpuLimitMs?: number;
|
|
34
|
+
}): Promise<CodeExecutionResult>;
|
|
35
|
+
/**
|
|
36
|
+
* Deploy user code to the execution environment.
|
|
37
|
+
* Called when hook code is created or updated.
|
|
38
|
+
* Optional — LocalCodeExecutor does not need this.
|
|
39
|
+
*/
|
|
40
|
+
deploy?(hookCodeId: string, code: string): Promise<void>;
|
|
41
|
+
/**
|
|
42
|
+
* Remove user code from the execution environment.
|
|
43
|
+
* Called when hook code is deleted.
|
|
44
|
+
* Optional — LocalCodeExecutor does not need this.
|
|
45
|
+
*/
|
|
46
|
+
remove?(hookCodeId: string): Promise<void>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ListParams } from "../types/ListParams";
|
|
2
|
+
import { Code, CodeInsert, CodeType, Totals } from "../types";
|
|
3
|
+
export interface ListCodesResponse extends Totals {
|
|
4
|
+
codes: Code[];
|
|
5
|
+
}
|
|
6
|
+
export interface CodesAdapter {
|
|
7
|
+
create: (tenant_id: string, code: CodeInsert) => Promise<Code>;
|
|
8
|
+
get: (tenant_id: string, code_id: string, type: CodeType) => Promise<Code | null>;
|
|
9
|
+
list: (tenant_id: string, params?: ListParams) => Promise<ListCodesResponse>;
|
|
10
|
+
used: (tenant_id: string, code_id: string) => Promise<boolean>;
|
|
11
|
+
/**
|
|
12
|
+
* Atomically mark a code as used only if it has not been used yet.
|
|
13
|
+
* Returns true if the code was successfully consumed (was unused), false otherwise.
|
|
14
|
+
*/
|
|
15
|
+
consume: (tenant_id: string, code_id: string) => Promise<boolean>;
|
|
16
|
+
remove: (tenant_id: string, code_id: string) => Promise<boolean>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Connection, ConnectionInsert, Totals } from "../types";
|
|
2
|
+
import { ListParams } from "../types/ListParams";
|
|
3
|
+
export interface ListConnectionsResponse extends Totals {
|
|
4
|
+
connections: Connection[];
|
|
5
|
+
}
|
|
6
|
+
export interface ConnectionsAdapter {
|
|
7
|
+
create(tenant_id: string, params: ConnectionInsert): Promise<Connection>;
|
|
8
|
+
remove(tenant_id: string, connection_id: string): Promise<boolean>;
|
|
9
|
+
get(tenant_id: string, connection_id: string): Promise<Connection | null>;
|
|
10
|
+
update(tenant_id: string, connection_id: string, params: Partial<ConnectionInsert>): Promise<boolean>;
|
|
11
|
+
list(tenant_id: string, params?: ListParams): Promise<ListConnectionsResponse>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CustomDomain, CustomDomainInsert, CustomDomainWithTenantId } from "../types/CustomDomain";
|
|
2
|
+
export interface CustomDomainsAdapter {
|
|
3
|
+
create: (tenant_id: string, custom_domain: CustomDomainInsert) => Promise<CustomDomain>;
|
|
4
|
+
get: (tenant_id: string, id: string) => Promise<CustomDomain | null>;
|
|
5
|
+
getByDomain: (domain: string) => Promise<CustomDomainWithTenantId | null>;
|
|
6
|
+
list: (tenant_id: string) => Promise<CustomDomain[]>;
|
|
7
|
+
remove: (tenant_id: string, id: string) => Promise<boolean>;
|
|
8
|
+
update: (tenant_id: string, id: string, custom_domain: Partial<CustomDomain>) => Promise<boolean>;
|
|
9
|
+
}
|