@go-mondo/identity-sdk 0.0.1 → 0.0.2-beta.3
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/.github/workflows/release.yaml +105 -0
- package/.release-please-manifest.json +3 -1
- package/.tsbuildinfo/cjs.json +1 -0
- package/.tsbuildinfo/esm.json +1 -0
- package/.vscode/settings.json +41 -0
- package/CHANGELOG.md +38 -0
- package/biome.json +1 -1
- package/dist/cjs/action/index.d.ts +2 -0
- package/dist/cjs/action/index.d.ts.map +1 -0
- package/dist/cjs/action/index.js +17 -0
- package/dist/cjs/action/schema/base.d.ts +21 -0
- package/dist/cjs/action/schema/base.d.ts.map +1 -0
- package/dist/cjs/action/schema/base.js +19 -0
- package/dist/cjs/action/schema/operations/set-password.d.ts +31 -0
- package/dist/cjs/action/schema/operations/set-password.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/set-password.js +18 -0
- package/dist/cjs/action/schema/operations/sign-up-verification.d.ts +22 -0
- package/dist/cjs/action/schema/operations/sign-up-verification.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/sign-up-verification.js +15 -0
- package/dist/cjs/action/schema/operations/sign-up.d.ts +44 -0
- package/dist/cjs/action/schema/operations/sign-up.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/sign-up.js +21 -0
- package/dist/cjs/action/schema/operations/user-attribute-verification.d.ts +20 -0
- package/dist/cjs/action/schema/operations/user-attribute-verification.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/user-attribute-verification.js +13 -0
- package/dist/cjs/action/schema/schema.d.ts +92 -0
- package/dist/cjs/action/schema/schema.d.ts.map +1 -0
- package/dist/cjs/action/schema/schema.js +40 -0
- package/dist/cjs/activity/index.d.ts +2 -0
- package/dist/cjs/activity/index.d.ts.map +1 -0
- package/dist/cjs/activity/index.js +17 -0
- package/dist/cjs/activity/schema/base.d.ts +54 -0
- package/dist/cjs/activity/schema/base.d.ts.map +1 -0
- package/dist/cjs/activity/schema/base.js +34 -0
- package/dist/cjs/activity/schema/schema.d.ts +156 -0
- package/dist/cjs/activity/schema/schema.d.ts.map +1 -0
- package/dist/cjs/activity/schema/schema.js +54 -0
- package/dist/cjs/activity/schema/types/authentication.d.ts +29 -0
- package/dist/cjs/activity/schema/types/authentication.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/authentication.js +16 -0
- package/dist/cjs/activity/schema/types/authorization.d.ts +29 -0
- package/dist/cjs/activity/schema/types/authorization.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/authorization.js +17 -0
- package/dist/cjs/activity/schema/types/note.d.ts +51 -0
- package/dist/cjs/activity/schema/types/note.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/note.js +17 -0
- package/dist/cjs/activity/schema/types/operation.d.ts +31 -0
- package/dist/cjs/activity/schema/types/operation.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/operation.js +18 -0
- package/dist/cjs/activity/schema/types/unknown.d.ts +22 -0
- package/dist/cjs/activity/schema/types/unknown.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/unknown.js +9 -0
- package/dist/cjs/activity/schema/utils.d.ts +7 -0
- package/dist/cjs/activity/schema/utils.d.ts.map +1 -0
- package/dist/cjs/activity/schema/utils.js +16 -0
- package/dist/cjs/app/index.d.ts +2 -0
- package/dist/cjs/app/index.d.ts.map +1 -0
- package/dist/cjs/app/index.js +17 -0
- package/dist/cjs/app/schema/app.d.ts +58 -0
- package/dist/cjs/app/schema/app.d.ts.map +1 -0
- package/dist/cjs/app/schema/app.js +43 -0
- package/dist/cjs/app/schema/authorization.d.ts +37 -0
- package/dist/cjs/app/schema/authorization.d.ts.map +1 -0
- package/dist/cjs/app/schema/authorization.js +44 -0
- package/dist/cjs/app/schema/oauth.d.ts +30 -0
- package/dist/cjs/app/schema/oauth.d.ts.map +1 -0
- package/dist/cjs/app/schema/oauth.js +21 -0
- package/dist/cjs/app/schema/oidc.d.ts +28 -0
- package/dist/cjs/app/schema/oidc.d.ts.map +1 -0
- package/dist/cjs/app/schema/oidc.js +13 -0
- package/dist/cjs/app/schema/registration.d.ts +22 -0
- package/dist/cjs/app/schema/registration.d.ts.map +1 -0
- package/dist/cjs/app/schema/registration.js +16 -0
- package/dist/cjs/app/schema/saml.d.ts +28 -0
- package/dist/cjs/app/schema/saml.d.ts.map +1 -0
- package/dist/cjs/app/schema/saml.js +13 -0
- package/dist/cjs/app/schema/schema.d.ts +8 -0
- package/dist/cjs/app/schema/schema.d.ts.map +1 -0
- package/dist/cjs/app/schema/schema.js +23 -0
- package/dist/cjs/app/schema/utils.d.ts +11 -0
- package/dist/cjs/app/schema/utils.d.ts.map +1 -0
- package/dist/cjs/app/schema/utils.js +23 -0
- package/dist/cjs/association/index.d.ts +2 -0
- package/dist/cjs/association/index.d.ts.map +1 -0
- package/dist/cjs/association/index.js +17 -0
- package/dist/cjs/association/schema/association.d.ts +82 -0
- package/dist/cjs/association/schema/association.d.ts.map +1 -0
- package/dist/cjs/association/schema/association.js +26 -0
- package/dist/cjs/association/schema/schema.d.ts +2 -0
- package/dist/cjs/association/schema/schema.d.ts.map +1 -0
- package/dist/cjs/association/schema/schema.js +17 -0
- package/dist/cjs/authentication/index.d.ts +2 -0
- package/dist/cjs/authentication/index.d.ts.map +1 -0
- package/dist/cjs/authentication/index.js +17 -0
- package/dist/cjs/authentication/schema/factors.d.ts +48 -0
- package/dist/cjs/authentication/schema/factors.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/factors.js +28 -0
- package/dist/cjs/authentication/schema/factors.test.d.ts +2 -0
- package/dist/cjs/authentication/schema/factors.test.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/factors.test.js +123 -0
- package/dist/cjs/authentication/schema/provider.d.ts +27 -0
- package/dist/cjs/authentication/schema/provider.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/provider.js +24 -0
- package/dist/cjs/authentication/schema/schema.d.ts +6 -0
- package/dist/cjs/authentication/schema/schema.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/schema.js +21 -0
- package/dist/cjs/authentication/schema/session.d.ts +59 -0
- package/dist/cjs/authentication/schema/session.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/session.js +46 -0
- package/dist/cjs/authentication/schema/settings.d.ts +46 -0
- package/dist/cjs/authentication/schema/settings.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/settings.js +16 -0
- package/dist/cjs/authentication/schema/strategy/base.d.ts +54 -0
- package/dist/cjs/authentication/schema/strategy/base.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/strategy/base.js +39 -0
- package/dist/cjs/authentication/schema/strategy/schema.d.ts +158 -0
- package/dist/cjs/authentication/schema/strategy/schema.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/strategy/schema.js +39 -0
- package/dist/cjs/authentication/schema/strategy/types/email.d.ts +44 -0
- package/dist/cjs/authentication/schema/strategy/types/email.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/strategy/types/email.js +20 -0
- package/dist/cjs/authentication/schema/strategy/types/password.d.ts +99 -0
- package/dist/cjs/authentication/schema/strategy/types/password.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/strategy/types/password.js +35 -0
- package/dist/cjs/authentication/schema/strategy/types/totp.d.ts +91 -0
- package/dist/cjs/authentication/schema/strategy/types/totp.d.ts.map +1 -0
- package/dist/cjs/authentication/schema/strategy/types/totp.js +48 -0
- package/dist/cjs/authorization/index.d.ts +6 -0
- package/dist/cjs/authorization/index.d.ts.map +1 -0
- package/dist/cjs/authorization/index.js +21 -0
- package/dist/cjs/authorization/permissions/resources.d.ts +20 -0
- package/dist/cjs/authorization/permissions/resources.d.ts.map +1 -0
- package/dist/cjs/authorization/permissions/resources.js +57 -0
- package/dist/cjs/authorization/permissions/schema.d.ts +104 -0
- package/dist/cjs/authorization/permissions/schema.d.ts.map +1 -0
- package/dist/cjs/authorization/permissions/schema.js +66 -0
- package/dist/cjs/authorization/roles/resources.d.ts +20 -0
- package/dist/cjs/authorization/roles/resources.d.ts.map +1 -0
- package/dist/cjs/authorization/roles/resources.js +57 -0
- package/dist/cjs/authorization/roles/schema.d.ts +113 -0
- package/dist/cjs/authorization/roles/schema.d.ts.map +1 -0
- package/dist/cjs/authorization/roles/schema.js +72 -0
- package/dist/cjs/authorization/utils.d.ts +11 -0
- package/dist/cjs/authorization/utils.d.ts.map +1 -0
- package/dist/cjs/authorization/utils.js +23 -0
- package/dist/cjs/common/errors/http.d.ts +17 -0
- package/dist/cjs/common/errors/http.d.ts.map +1 -0
- package/dist/cjs/common/errors/http.js +18 -0
- package/dist/cjs/common/errors/validation.d.ts +11 -0
- package/dist/cjs/common/errors/validation.d.ts.map +1 -0
- package/dist/cjs/common/errors/validation.js +12 -0
- package/dist/cjs/common/index.d.ts +6 -0
- package/dist/cjs/common/index.d.ts.map +1 -0
- package/dist/cjs/common/index.js +21 -0
- package/dist/cjs/common/resources/authorization.d.ts +2 -0
- package/dist/cjs/common/resources/authorization.d.ts.map +1 -0
- package/dist/cjs/common/resources/authorization.js +2 -0
- package/dist/cjs/common/resources/init.d.ts +16 -0
- package/dist/cjs/common/resources/init.d.ts.map +1 -0
- package/dist/cjs/common/resources/init.js +38 -0
- package/dist/cjs/common/resources/operations.d.ts +7 -0
- package/dist/cjs/common/resources/operations.d.ts.map +1 -0
- package/dist/cjs/common/resources/operations.js +90 -0
- package/dist/cjs/common/resources/utils.d.ts +18 -0
- package/dist/cjs/common/resources/utils.d.ts.map +1 -0
- package/dist/cjs/common/resources/utils.js +96 -0
- package/dist/cjs/common/schema/aggregate.d.ts +6 -0
- package/dist/cjs/common/schema/aggregate.d.ts.map +1 -0
- package/dist/cjs/common/schema/aggregate.js +8 -0
- package/dist/cjs/common/schema/collection.d.ts +18 -0
- package/dist/cjs/common/schema/collection.d.ts.map +1 -0
- package/dist/cjs/common/schema/collection.js +10 -0
- package/dist/cjs/common/schema/dates.d.ts +39 -0
- package/dist/cjs/common/schema/dates.d.ts.map +1 -0
- package/dist/cjs/common/schema/dates.js +34 -0
- package/dist/cjs/common/schema/dates.test.d.ts +2 -0
- package/dist/cjs/common/schema/dates.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/dates.test.js +33 -0
- package/dist/cjs/common/schema/jwt.d.ts +21 -0
- package/dist/cjs/common/schema/jwt.d.ts.map +1 -0
- package/dist/cjs/common/schema/jwt.js +24 -0
- package/dist/cjs/common/schema/metadata.d.ts +47 -0
- package/dist/cjs/common/schema/metadata.d.ts.map +1 -0
- package/dist/cjs/common/schema/metadata.js +88 -0
- package/dist/cjs/common/schema/metadata.test.d.ts +2 -0
- package/dist/cjs/common/schema/metadata.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/metadata.test.js +62 -0
- package/dist/cjs/common/schema/pagination.d.ts +6 -0
- package/dist/cjs/common/schema/pagination.d.ts.map +1 -0
- package/dist/cjs/common/schema/pagination.js +8 -0
- package/dist/cjs/common/schema/schema.d.ts +8 -0
- package/dist/cjs/common/schema/schema.d.ts.map +1 -0
- package/dist/cjs/common/schema/schema.js +23 -0
- package/dist/cjs/common/schema/sets.d.ts +3 -0
- package/dist/cjs/common/schema/sets.d.ts.map +1 -0
- package/dist/cjs/common/schema/sets.js +9 -0
- package/dist/cjs/customer/index.d.ts +4 -0
- package/dist/cjs/customer/index.d.ts.map +1 -0
- package/dist/cjs/customer/index.js +19 -0
- package/dist/cjs/customer/schema/organization.d.ts +54 -0
- package/dist/cjs/customer/schema/organization.d.ts.map +1 -0
- package/dist/cjs/customer/schema/organization.js +40 -0
- package/dist/cjs/customer/schema/schema.d.ts +4 -0
- package/dist/cjs/customer/schema/schema.d.ts.map +1 -0
- package/dist/cjs/customer/schema/schema.js +19 -0
- package/dist/cjs/customer/schema/utils.d.ts +11 -0
- package/dist/cjs/customer/schema/utils.d.ts.map +1 -0
- package/dist/cjs/customer/schema/utils.js +23 -0
- package/dist/cjs/customer/users/resources.d.ts +20 -0
- package/dist/cjs/customer/users/resources.d.ts.map +1 -0
- package/dist/cjs/customer/users/resources.js +57 -0
- package/dist/cjs/customer/users/schema.d.ts +151 -0
- package/dist/cjs/customer/users/schema.d.ts.map +1 -0
- package/dist/cjs/customer/users/schema.js +91 -0
- package/dist/cjs/customer/users/schema.test.d.ts +2 -0
- package/dist/cjs/customer/users/schema.test.d.ts.map +1 -0
- package/dist/cjs/customer/users/schema.test.js +57 -0
- package/dist/cjs/identity/index.d.ts +2 -0
- package/dist/cjs/identity/index.d.ts.map +1 -0
- package/dist/cjs/identity/index.js +17 -0
- package/dist/cjs/identity/schema/schema.d.ts +7 -0
- package/dist/cjs/identity/schema/schema.d.ts.map +1 -0
- package/dist/cjs/identity/schema/schema.js +9 -0
- package/dist/cjs/oauth/authorize/index.d.ts +2 -0
- package/dist/cjs/oauth/authorize/index.d.ts.map +1 -0
- package/dist/cjs/oauth/authorize/index.js +17 -0
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.d.ts +29 -0
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.d.ts.map +1 -0
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.js +34 -0
- package/dist/cjs/oauth/authorize/schema/grants/implicit.d.ts +11 -0
- package/dist/cjs/oauth/authorize/schema/grants/implicit.d.ts.map +1 -0
- package/dist/cjs/oauth/authorize/schema/grants/implicit.js +21 -0
- package/dist/cjs/oauth/authorize/schema/schema.d.ts +42 -0
- package/dist/cjs/oauth/authorize/schema/schema.d.ts.map +1 -0
- package/dist/cjs/oauth/authorize/schema/schema.js +25 -0
- package/dist/cjs/oauth/common/schema.d.ts +62 -0
- package/dist/cjs/oauth/common/schema.d.ts.map +1 -0
- package/dist/cjs/oauth/common/schema.js +54 -0
- package/dist/cjs/oauth/index.d.ts +4 -0
- package/dist/cjs/oauth/index.d.ts.map +1 -0
- package/dist/cjs/oauth/index.js +49 -0
- package/dist/cjs/oauth/token/index.d.ts +2 -0
- package/dist/cjs/oauth/token/index.d.ts.map +1 -0
- package/dist/cjs/oauth/token/index.js +17 -0
- package/dist/cjs/oauth/token/schema/grants/authorization-code.d.ts +10 -0
- package/dist/cjs/oauth/token/schema/grants/authorization-code.d.ts.map +1 -0
- package/dist/cjs/oauth/token/schema/grants/authorization-code.js +20 -0
- package/dist/cjs/oauth/token/schema/grants/client-credentials.d.ts +21 -0
- package/dist/cjs/oauth/token/schema/grants/client-credentials.d.ts.map +1 -0
- package/dist/cjs/oauth/token/schema/grants/client-credentials.js +25 -0
- package/dist/cjs/oauth/token/schema/grants/refresh-token.d.ts +9 -0
- package/dist/cjs/oauth/token/schema/grants/refresh-token.d.ts.map +1 -0
- package/dist/cjs/oauth/token/schema/grants/refresh-token.js +17 -0
- package/dist/cjs/oauth/token/schema/schema.d.ts +28 -0
- package/dist/cjs/oauth/token/schema/schema.d.ts.map +1 -0
- package/dist/cjs/oauth/token/schema/schema.js +27 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/workspace/index.d.ts +2 -0
- package/dist/cjs/workspace/index.d.ts.map +1 -0
- package/dist/cjs/workspace/index.js +17 -0
- package/dist/cjs/workspace/schema/authorization.d.ts +31 -0
- package/dist/cjs/workspace/schema/authorization.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/authorization.js +22 -0
- package/dist/cjs/workspace/schema/branding.d.ts +38 -0
- package/dist/cjs/workspace/schema/branding.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/branding.js +25 -0
- package/dist/cjs/workspace/schema/membership.d.ts +25 -0
- package/dist/cjs/workspace/schema/membership.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/membership.js +19 -0
- package/dist/cjs/workspace/schema/registration.d.ts +28 -0
- package/dist/cjs/workspace/schema/registration.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/registration.js +22 -0
- package/dist/cjs/workspace/schema/schema.d.ts +10 -0
- package/dist/cjs/workspace/schema/schema.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/schema.js +25 -0
- package/dist/cjs/workspace/schema/settings.d.ts +23 -0
- package/dist/cjs/workspace/schema/settings.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/settings.js +15 -0
- package/dist/cjs/workspace/schema/tenant.d.ts +57 -0
- package/dist/cjs/workspace/schema/tenant.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/tenant.js +26 -0
- package/dist/cjs/workspace/schema/user-notification.d.ts +62 -0
- package/dist/cjs/workspace/schema/user-notification.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/user-notification.js +44 -0
- package/dist/cjs/workspace/schema/user-preferences.d.ts +26 -0
- package/dist/cjs/workspace/schema/user-preferences.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/user-preferences.js +19 -0
- package/dist/cjs/workspace/schema/utils.d.ts +15 -0
- package/dist/cjs/workspace/schema/utils.d.ts.map +1 -0
- package/dist/cjs/workspace/schema/utils.js +64 -0
- package/dist/esm/action/index.d.ts +2 -0
- package/dist/esm/action/index.d.ts.map +1 -0
- package/dist/esm/action/index.js +1 -0
- package/dist/esm/action/schema/base.d.ts +21 -0
- package/dist/esm/action/schema/base.d.ts.map +1 -0
- package/dist/esm/action/schema/base.js +16 -0
- package/dist/esm/action/schema/operations/set-password.d.ts +31 -0
- package/dist/esm/action/schema/operations/set-password.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/set-password.js +15 -0
- package/dist/esm/action/schema/operations/sign-up-verification.d.ts +22 -0
- package/dist/esm/action/schema/operations/sign-up-verification.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/sign-up-verification.js +12 -0
- package/dist/esm/action/schema/operations/sign-up.d.ts +44 -0
- package/dist/esm/action/schema/operations/sign-up.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/sign-up.js +18 -0
- package/dist/esm/action/schema/operations/user-attribute-verification.d.ts +20 -0
- package/dist/esm/action/schema/operations/user-attribute-verification.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/user-attribute-verification.js +10 -0
- package/dist/esm/action/schema/schema.d.ts +92 -0
- package/dist/esm/action/schema/schema.d.ts.map +1 -0
- package/dist/esm/action/schema/schema.js +21 -0
- package/dist/esm/activity/index.d.ts +2 -0
- package/dist/esm/activity/index.d.ts.map +1 -0
- package/dist/esm/activity/index.js +1 -0
- package/dist/esm/activity/schema/base.d.ts +54 -0
- package/dist/esm/activity/schema/base.d.ts.map +1 -0
- package/dist/esm/activity/schema/base.js +31 -0
- package/dist/esm/activity/schema/schema.d.ts +156 -0
- package/dist/esm/activity/schema/schema.d.ts.map +1 -0
- package/dist/esm/activity/schema/schema.js +33 -0
- package/dist/esm/activity/schema/types/authentication.d.ts +29 -0
- package/dist/esm/activity/schema/types/authentication.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/authentication.js +13 -0
- package/dist/esm/activity/schema/types/authorization.d.ts +29 -0
- package/dist/esm/activity/schema/types/authorization.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/authorization.js +14 -0
- package/dist/esm/activity/schema/types/note.d.ts +51 -0
- package/dist/esm/activity/schema/types/note.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/note.js +14 -0
- package/dist/esm/activity/schema/types/operation.d.ts +31 -0
- package/dist/esm/activity/schema/types/operation.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/operation.js +15 -0
- package/dist/esm/activity/schema/types/unknown.d.ts +22 -0
- package/dist/esm/activity/schema/types/unknown.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/unknown.js +6 -0
- package/dist/esm/activity/schema/utils.d.ts +7 -0
- package/dist/esm/activity/schema/utils.d.ts.map +1 -0
- package/dist/esm/activity/schema/utils.js +9 -0
- package/dist/esm/app/index.d.ts +2 -0
- package/dist/esm/app/index.d.ts.map +1 -0
- package/dist/esm/app/index.js +1 -0
- package/dist/esm/app/schema/app.d.ts +58 -0
- package/dist/esm/app/schema/app.d.ts.map +1 -0
- package/dist/esm/app/schema/app.js +40 -0
- package/dist/esm/app/schema/authorization.d.ts +37 -0
- package/dist/esm/app/schema/authorization.d.ts.map +1 -0
- package/dist/esm/app/schema/authorization.js +41 -0
- package/dist/esm/app/schema/oauth.d.ts +30 -0
- package/dist/esm/app/schema/oauth.d.ts.map +1 -0
- package/dist/esm/app/schema/oauth.js +18 -0
- package/dist/esm/app/schema/oidc.d.ts +28 -0
- package/dist/esm/app/schema/oidc.d.ts.map +1 -0
- package/dist/esm/app/schema/oidc.js +10 -0
- package/dist/esm/app/schema/registration.d.ts +22 -0
- package/dist/esm/app/schema/registration.d.ts.map +1 -0
- package/dist/esm/app/schema/registration.js +13 -0
- package/dist/esm/app/schema/saml.d.ts +28 -0
- package/dist/esm/app/schema/saml.d.ts.map +1 -0
- package/dist/esm/app/schema/saml.js +10 -0
- package/dist/esm/app/schema/schema.d.ts +8 -0
- package/dist/esm/app/schema/schema.d.ts.map +1 -0
- package/dist/esm/app/schema/schema.js +7 -0
- package/dist/esm/app/schema/utils.d.ts +11 -0
- package/dist/esm/app/schema/utils.d.ts.map +1 -0
- package/dist/esm/app/schema/utils.js +15 -0
- package/dist/esm/association/index.d.ts +2 -0
- package/dist/esm/association/index.d.ts.map +1 -0
- package/dist/esm/association/index.js +1 -0
- package/dist/esm/association/schema/association.d.ts +82 -0
- package/dist/esm/association/schema/association.d.ts.map +1 -0
- package/dist/esm/association/schema/association.js +23 -0
- package/dist/esm/association/schema/schema.d.ts +2 -0
- package/dist/esm/association/schema/schema.d.ts.map +1 -0
- package/dist/esm/association/schema/schema.js +1 -0
- package/dist/esm/authentication/index.d.ts +2 -0
- package/dist/esm/authentication/index.d.ts.map +1 -0
- package/dist/esm/authentication/index.js +1 -0
- package/dist/esm/authentication/schema/factors.d.ts +48 -0
- package/dist/esm/authentication/schema/factors.d.ts.map +1 -0
- package/dist/esm/authentication/schema/factors.js +25 -0
- package/dist/esm/authentication/schema/factors.test.d.ts +2 -0
- package/dist/esm/authentication/schema/factors.test.d.ts.map +1 -0
- package/dist/esm/authentication/schema/factors.test.js +121 -0
- package/dist/esm/authentication/schema/provider.d.ts +27 -0
- package/dist/esm/authentication/schema/provider.d.ts.map +1 -0
- package/dist/esm/authentication/schema/provider.js +21 -0
- package/dist/esm/authentication/schema/schema.d.ts +6 -0
- package/dist/esm/authentication/schema/schema.d.ts.map +1 -0
- package/dist/esm/authentication/schema/schema.js +5 -0
- package/dist/esm/authentication/schema/session.d.ts +59 -0
- package/dist/esm/authentication/schema/session.d.ts.map +1 -0
- package/dist/esm/authentication/schema/session.js +43 -0
- package/dist/esm/authentication/schema/settings.d.ts +46 -0
- package/dist/esm/authentication/schema/settings.d.ts.map +1 -0
- package/dist/esm/authentication/schema/settings.js +13 -0
- package/dist/esm/authentication/schema/strategy/base.d.ts +54 -0
- package/dist/esm/authentication/schema/strategy/base.d.ts.map +1 -0
- package/dist/esm/authentication/schema/strategy/base.js +36 -0
- package/dist/esm/authentication/schema/strategy/schema.d.ts +158 -0
- package/dist/esm/authentication/schema/strategy/schema.d.ts.map +1 -0
- package/dist/esm/authentication/schema/strategy/schema.js +13 -0
- package/dist/esm/authentication/schema/strategy/types/email.d.ts +44 -0
- package/dist/esm/authentication/schema/strategy/types/email.d.ts.map +1 -0
- package/dist/esm/authentication/schema/strategy/types/email.js +17 -0
- package/dist/esm/authentication/schema/strategy/types/password.d.ts +99 -0
- package/dist/esm/authentication/schema/strategy/types/password.d.ts.map +1 -0
- package/dist/esm/authentication/schema/strategy/types/password.js +32 -0
- package/dist/esm/authentication/schema/strategy/types/totp.d.ts +91 -0
- package/dist/esm/authentication/schema/strategy/types/totp.d.ts.map +1 -0
- package/dist/esm/authentication/schema/strategy/types/totp.js +45 -0
- package/dist/esm/authorization/index.d.ts +6 -0
- package/dist/esm/authorization/index.d.ts.map +1 -0
- package/dist/esm/authorization/index.js +5 -0
- package/dist/esm/authorization/permissions/resources.d.ts +20 -0
- package/dist/esm/authorization/permissions/resources.d.ts.map +1 -0
- package/dist/esm/authorization/permissions/resources.js +48 -0
- package/dist/esm/authorization/permissions/schema.d.ts +104 -0
- package/dist/esm/authorization/permissions/schema.d.ts.map +1 -0
- package/dist/esm/authorization/permissions/schema.js +63 -0
- package/dist/esm/authorization/roles/resources.d.ts +20 -0
- package/dist/esm/authorization/roles/resources.d.ts.map +1 -0
- package/dist/esm/authorization/roles/resources.js +48 -0
- package/dist/esm/authorization/roles/schema.d.ts +113 -0
- package/dist/esm/authorization/roles/schema.d.ts.map +1 -0
- package/dist/esm/authorization/roles/schema.js +69 -0
- package/dist/esm/authorization/utils.d.ts +11 -0
- package/dist/esm/authorization/utils.d.ts.map +1 -0
- package/dist/esm/authorization/utils.js +15 -0
- package/dist/esm/common/errors/http.d.ts +17 -0
- package/dist/esm/common/errors/http.d.ts.map +1 -0
- package/dist/esm/common/errors/http.js +14 -0
- package/dist/esm/common/errors/validation.d.ts +11 -0
- package/dist/esm/common/errors/validation.d.ts.map +1 -0
- package/dist/esm/common/errors/validation.js +8 -0
- package/dist/esm/common/index.d.ts +6 -0
- package/dist/esm/common/index.d.ts.map +1 -0
- package/dist/esm/common/index.js +5 -0
- package/dist/esm/common/resources/authorization.d.ts +2 -0
- package/dist/esm/common/resources/authorization.d.ts.map +1 -0
- package/dist/esm/common/resources/authorization.js +1 -0
- package/dist/esm/common/resources/init.d.ts +16 -0
- package/dist/esm/common/resources/init.d.ts.map +1 -0
- package/dist/esm/common/resources/init.js +34 -0
- package/dist/esm/common/resources/operations.d.ts +7 -0
- package/dist/esm/common/resources/operations.d.ts.map +1 -0
- package/dist/esm/common/resources/operations.js +83 -0
- package/dist/esm/common/resources/utils.d.ts +18 -0
- package/dist/esm/common/resources/utils.d.ts.map +1 -0
- package/dist/esm/common/resources/utils.js +86 -0
- package/dist/esm/common/schema/aggregate.d.ts +6 -0
- package/dist/esm/common/schema/aggregate.d.ts.map +1 -0
- package/dist/esm/common/schema/aggregate.js +5 -0
- package/dist/esm/common/schema/collection.d.ts +18 -0
- package/dist/esm/common/schema/collection.d.ts.map +1 -0
- package/dist/esm/common/schema/collection.js +7 -0
- package/dist/esm/common/schema/dates.d.ts +39 -0
- package/dist/esm/common/schema/dates.d.ts.map +1 -0
- package/dist/esm/common/schema/dates.js +31 -0
- package/dist/esm/common/schema/dates.test.d.ts +2 -0
- package/dist/esm/common/schema/dates.test.d.ts.map +1 -0
- package/dist/esm/common/schema/dates.test.js +31 -0
- package/dist/esm/common/schema/jwt.d.ts +21 -0
- package/dist/esm/common/schema/jwt.d.ts.map +1 -0
- package/dist/esm/common/schema/jwt.js +21 -0
- package/dist/esm/common/schema/metadata.d.ts +47 -0
- package/dist/esm/common/schema/metadata.d.ts.map +1 -0
- package/dist/esm/common/schema/metadata.js +83 -0
- package/dist/esm/common/schema/metadata.test.d.ts +2 -0
- package/dist/esm/common/schema/metadata.test.d.ts.map +1 -0
- package/dist/esm/common/schema/metadata.test.js +60 -0
- package/dist/esm/common/schema/pagination.d.ts +6 -0
- package/dist/esm/common/schema/pagination.d.ts.map +1 -0
- package/dist/esm/common/schema/pagination.js +5 -0
- package/dist/esm/common/schema/schema.d.ts +8 -0
- package/dist/esm/common/schema/schema.d.ts.map +1 -0
- package/dist/esm/common/schema/schema.js +7 -0
- package/dist/esm/common/schema/sets.d.ts +3 -0
- package/dist/esm/common/schema/sets.d.ts.map +1 -0
- package/dist/esm/common/schema/sets.js +6 -0
- package/dist/esm/customer/index.d.ts +4 -0
- package/dist/esm/customer/index.d.ts.map +1 -0
- package/dist/esm/customer/index.js +3 -0
- package/dist/esm/customer/schema/organization.d.ts +54 -0
- package/dist/esm/customer/schema/organization.d.ts.map +1 -0
- package/dist/esm/customer/schema/organization.js +37 -0
- package/dist/esm/customer/schema/schema.d.ts +4 -0
- package/dist/esm/customer/schema/schema.d.ts.map +1 -0
- package/dist/esm/customer/schema/schema.js +3 -0
- package/dist/esm/customer/schema/utils.d.ts +11 -0
- package/dist/esm/customer/schema/utils.d.ts.map +1 -0
- package/dist/esm/customer/schema/utils.js +15 -0
- package/dist/esm/customer/users/resources.d.ts +20 -0
- package/dist/esm/customer/users/resources.d.ts.map +1 -0
- package/dist/esm/customer/users/resources.js +48 -0
- package/dist/esm/customer/users/schema.d.ts +151 -0
- package/dist/esm/customer/users/schema.d.ts.map +1 -0
- package/dist/esm/customer/users/schema.js +88 -0
- package/dist/esm/customer/users/schema.test.d.ts +2 -0
- package/dist/esm/customer/users/schema.test.d.ts.map +1 -0
- package/dist/esm/customer/users/schema.test.js +55 -0
- package/dist/esm/identity/index.d.ts +2 -0
- package/dist/esm/identity/index.d.ts.map +1 -0
- package/dist/esm/identity/index.js +1 -0
- package/dist/esm/identity/schema/schema.d.ts +7 -0
- package/dist/esm/identity/schema/schema.d.ts.map +1 -0
- package/dist/esm/identity/schema/schema.js +6 -0
- package/dist/esm/oauth/authorize/index.d.ts +2 -0
- package/dist/esm/oauth/authorize/index.d.ts.map +1 -0
- package/dist/esm/oauth/authorize/index.js +1 -0
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.d.ts +29 -0
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.d.ts.map +1 -0
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.js +31 -0
- package/dist/esm/oauth/authorize/schema/grants/implicit.d.ts +11 -0
- package/dist/esm/oauth/authorize/schema/grants/implicit.d.ts.map +1 -0
- package/dist/esm/oauth/authorize/schema/grants/implicit.js +18 -0
- package/dist/esm/oauth/authorize/schema/schema.d.ts +42 -0
- package/dist/esm/oauth/authorize/schema/schema.d.ts.map +1 -0
- package/dist/esm/oauth/authorize/schema/schema.js +8 -0
- package/dist/esm/oauth/common/schema.d.ts +62 -0
- package/dist/esm/oauth/common/schema.d.ts.map +1 -0
- package/dist/esm/oauth/common/schema.js +51 -0
- package/dist/esm/oauth/index.d.ts +4 -0
- package/dist/esm/oauth/index.d.ts.map +1 -0
- package/dist/esm/oauth/index.js +3 -0
- package/dist/esm/oauth/token/index.d.ts +2 -0
- package/dist/esm/oauth/token/index.d.ts.map +1 -0
- package/dist/esm/oauth/token/index.js +1 -0
- package/dist/esm/oauth/token/schema/grants/authorization-code.d.ts +10 -0
- package/dist/esm/oauth/token/schema/grants/authorization-code.d.ts.map +1 -0
- package/dist/esm/oauth/token/schema/grants/authorization-code.js +17 -0
- package/dist/esm/oauth/token/schema/grants/client-credentials.d.ts +21 -0
- package/dist/esm/oauth/token/schema/grants/client-credentials.d.ts.map +1 -0
- package/dist/esm/oauth/token/schema/grants/client-credentials.js +22 -0
- package/dist/esm/oauth/token/schema/grants/refresh-token.d.ts +9 -0
- package/dist/esm/oauth/token/schema/grants/refresh-token.d.ts.map +1 -0
- package/dist/esm/oauth/token/schema/grants/refresh-token.js +14 -0
- package/dist/esm/oauth/token/schema/schema.d.ts +28 -0
- package/dist/esm/oauth/token/schema/schema.d.ts.map +1 -0
- package/dist/esm/oauth/token/schema/schema.js +10 -0
- package/dist/esm/package.json +1 -0
- package/dist/esm/workspace/index.d.ts +2 -0
- package/dist/esm/workspace/index.d.ts.map +1 -0
- package/dist/esm/workspace/index.js +1 -0
- package/dist/esm/workspace/schema/authorization.d.ts +31 -0
- package/dist/esm/workspace/schema/authorization.d.ts.map +1 -0
- package/dist/esm/workspace/schema/authorization.js +19 -0
- package/dist/esm/workspace/schema/branding.d.ts +38 -0
- package/dist/esm/workspace/schema/branding.d.ts.map +1 -0
- package/dist/esm/workspace/schema/branding.js +22 -0
- package/dist/esm/workspace/schema/membership.d.ts +25 -0
- package/dist/esm/workspace/schema/membership.d.ts.map +1 -0
- package/dist/esm/workspace/schema/membership.js +16 -0
- package/dist/esm/workspace/schema/registration.d.ts +28 -0
- package/dist/esm/workspace/schema/registration.d.ts.map +1 -0
- package/dist/esm/workspace/schema/registration.js +19 -0
- package/dist/esm/workspace/schema/schema.d.ts +10 -0
- package/dist/esm/workspace/schema/schema.d.ts.map +1 -0
- package/dist/esm/workspace/schema/schema.js +9 -0
- package/dist/esm/workspace/schema/settings.d.ts +23 -0
- package/dist/esm/workspace/schema/settings.d.ts.map +1 -0
- package/dist/esm/workspace/schema/settings.js +12 -0
- package/dist/esm/workspace/schema/tenant.d.ts +57 -0
- package/dist/esm/workspace/schema/tenant.d.ts.map +1 -0
- package/dist/esm/workspace/schema/tenant.js +23 -0
- package/dist/esm/workspace/schema/user-notification.d.ts +62 -0
- package/dist/esm/workspace/schema/user-notification.d.ts.map +1 -0
- package/dist/esm/workspace/schema/user-notification.js +41 -0
- package/dist/esm/workspace/schema/user-preferences.d.ts +26 -0
- package/dist/esm/workspace/schema/user-preferences.d.ts.map +1 -0
- package/dist/esm/workspace/schema/user-preferences.js +16 -0
- package/dist/esm/workspace/schema/utils.d.ts +15 -0
- package/dist/esm/workspace/schema/utils.d.ts.map +1 -0
- package/dist/esm/workspace/schema/utils.js +22 -0
- package/package.json +50 -55
- package/release-please-config.json +13 -3
- package/tsconfig.esm.json +1 -1
- package/tsconfig.json +26 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.full.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/functions.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/objectKinds.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/unionToTuple.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/describe.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/domain.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/errors.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/generics.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/hkt.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/numbers.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/keys.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/records.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/intersections.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/arrays.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/clone.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/flatMorph.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/lazily.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/serialize.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/path.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/primitive.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/registry.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/scanner.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/strings.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/traits.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/index.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/intrinsic.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/jsonSchema.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/divisor.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/range.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/exactLength.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/pattern.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/module.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/standardSchema.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/errors.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/utils.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/generic.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/alias.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/scope.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/optional.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/required.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/prop.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/registry.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/index.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/maxLength.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/minLength.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/sequence.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/structure.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/basis.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/unit.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/union.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/root.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/implement.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/domain.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/disjoint.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/declare.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/morph.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/traversal.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/compile.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/predicate.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/proto.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/intersection.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/constraint.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/node.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/after.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/before.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/max.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/min.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/kinds.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/kinds.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/parse.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/config.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/intersections.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/index.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/config.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/reduce/shared.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/scanner.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/reduce/dynamic.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/reduce/static.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/enclosed.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/utils.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/generic.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/unenclosed.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/operand.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/default.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/bounds.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/brand.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/divisor.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/operator.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/string.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/genericArgs.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/bounds.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/default.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/divisor.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/keyof.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/validate.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/property.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/objectLiteral.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/tupleExpressions.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/tupleLiteral.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/definition.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/infer.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/object.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/array.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/date.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/number.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/string.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/instantiate.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/type.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/scope.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/base.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/match.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/builtins.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/number.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/string.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/ts.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/keywords.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/generic.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/module.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/Array.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/FormData.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/TypedArray.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/constructors.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/attributes.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/index.d.ts","../src/common/resources/init.ts","../src/common/errors/http.ts","../src/common/errors/validation.ts","../src/common/schema/aggregate.ts","../src/common/schema/pagination.ts","../src/common/schema/collection.ts","../src/common/schema/dates.ts","../src/common/schema/jwt.ts","../src/common/schema/metadata.ts","../src/common/schema/sets.ts","../src/common/schema/schema.ts","../src/common/index.ts","../src/authentication/schema/strategy/base.ts","../src/authentication/schema/factors.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/index.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/globals.typedarray.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/buffer.buffer.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/ksuid@3.0.0/node_modules/ksuid/index.d.ts","../src/customer/schema/utils.ts","../src/customer/users/schema.ts","../src/authentication/schema/provider.ts","../src/authentication/schema/session.ts","../src/authentication/schema/settings.ts","../src/authentication/schema/strategy/types/email.ts","../src/identity/schema/schema.ts","../src/authentication/schema/strategy/types/password.ts","../src/authentication/schema/strategy/types/totp.ts","../src/authentication/schema/strategy/schema.ts","../src/authentication/schema/schema.ts","../src/action/schema/base.ts","../src/action/schema/operations/set-password.ts","../src/action/schema/operations/sign-up-verification.ts","../src/app/schema/utils.ts","../src/app/schema/app.ts","../src/action/schema/operations/sign-up.ts","../src/action/schema/operations/user-attribute-verification.ts","../src/action/schema/schema.ts","../src/action/index.ts","../src/activity/schema/utils.ts","../src/activity/schema/base.ts","../src/activity/schema/types/authentication.ts","../src/activity/schema/types/authorization.ts","../src/activity/schema/types/note.ts","../src/activity/schema/types/operation.ts","../src/activity/schema/types/unknown.ts","../src/activity/schema/schema.ts","../src/activity/index.ts","../src/oauth/common/schema.ts","../src/workspace/schema/authorization.ts","../src/app/schema/authorization.ts","../src/app/schema/oauth.ts","../src/app/schema/oidc.ts","../src/app/schema/registration.ts","../src/app/schema/saml.ts","../src/app/schema/schema.ts","../src/app/index.ts","../src/customer/schema/organization.ts","../src/association/schema/association.ts","../src/association/schema/schema.ts","../src/association/index.ts","../src/authentication/index.ts","../node_modules/.pnpm/@vitest+pretty-format@3.0.9/node_modules/@vitest/pretty-format/dist/index.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/types.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/helpers.d.ts","../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/index-8b61d5bc.d.ts","../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/node.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/index.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/tasks.d-D4e98wjH.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/types.d-Cr0z4Cnu.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/diff.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/types.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/error.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/environment.d.C8UItCbf.d.ts","../node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/index.d.ts","../node_modules/.pnpm/rollup@4.37.0/node_modules/rollup/dist/rollup.d.ts","../node_modules/.pnpm/rollup@4.37.0/node_modules/rollup/dist/parseAst.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/hmrPayload.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/customEvent.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/hot.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/dist/node/types.d-aGj9QkWt.d.ts","../node_modules/.pnpm/esbuild@0.21.5/node_modules/esbuild/lib/main.d.ts","../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/previous-map.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/input.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/declaration.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/root.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/warning.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/lazy-result.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/no-work-result.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/processor.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/result.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/document.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/rule.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/node.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/comment.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/container.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/at-rule.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/list.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.mts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/dist/node/runtime.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/importGlob.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/metadata.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/dist/node/index.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/source-map.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/index.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/environment.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/config.d.DevWltVl.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/trace-mapping.d-DLVdEqOp.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/index.d-CvjHzhRV.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/index.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/utils.d.ts","../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/benchmark.d.BwvBVTda.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/client.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/coverage.d.S9RMNXIe.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/manager.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/reporters.d.CqBhtcTq.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/worker.d.C58isfFm.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/worker.d.CSFlSYJg.d.ts","../node_modules/.pnpm/@vitest+expect@3.0.9/node_modules/@vitest/expect/dist/chai.d.cts","../node_modules/.pnpm/@vitest+spy@3.0.9/node_modules/@vitest/spy/dist/index.d.ts","../node_modules/.pnpm/@vitest+expect@3.0.9/node_modules/@vitest/expect/dist/index.d.ts","../node_modules/.pnpm/@vitest+expect@3.0.9/node_modules/@vitest/expect/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/global.d.Cg2sEPIm.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/vite.d.BUZTGxQ3.d.ts","../node_modules/.pnpm/@vitest+mocker@3.0.9_vite@5.4.15_@types+node@20.17.27_/node_modules/@vitest/mocker/dist/types.d-kZ7T8ECy.d.ts","../node_modules/.pnpm/@vitest+mocker@3.0.9_vite@5.4.15_@types+node@20.17.27_/node_modules/@vitest/mocker/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/mocker.d.BE_2ls6u.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/suite.d.FvehnV49.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/utils.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/overloads.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/branding.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/messages.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/index.d.ts","../src/authentication/schema/factors.test.ts","../src/common/resources/authorization.ts","../src/common/resources/utils.ts","../src/common/resources/operations.ts","../src/authorization/utils.ts","../src/authorization/permissions/schema.ts","../src/authorization/permissions/resources.ts","../src/authorization/roles/schema.ts","../src/authorization/roles/resources.ts","../src/authorization/index.ts","../src/common/schema/dates.test.ts","../src/common/schema/metadata.test.ts","../src/customer/schema/schema.ts","../src/customer/users/resources.ts","../src/customer/index.ts","../src/customer/users/schema.test.ts","../src/identity/index.ts","../src/oauth/authorize/schema/grants/authorization-code.ts","../src/oauth/authorize/schema/grants/implicit.ts","../src/oauth/authorize/schema/schema.ts","../src/oauth/authorize/index.ts","../src/oauth/token/schema/grants/authorization-code.ts","../src/oauth/token/schema/grants/client-credentials.ts","../src/oauth/token/schema/grants/refresh-token.ts","../src/oauth/token/schema/schema.ts","../src/oauth/token/index.ts","../src/oauth/index.ts","../src/workspace/schema/branding.ts","../src/workspace/schema/membership.ts","../src/workspace/schema/registration.ts","../src/workspace/schema/settings.ts","../src/workspace/schema/utils.ts","../src/workspace/schema/tenant.ts","../src/workspace/schema/user-notification.ts","../src/workspace/schema/user-preferences.ts","../src/workspace/schema/schema.ts","../src/workspace/index.ts"],"fileIdsList":[[87,88,96,109,114,117,132,206,248],[87,89,97,100,109,113,114,116,117,119,120,123,125,131,132,206,248],[87,97,100,113,125,131,206,248],[87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,206,248],[135,206,248],[87,90,93,97,99,100,101,102,105,108,109,111,112,114,115,118,121,122,123,125,130,206,248],[87,97,100,113,206,248],[87,96,97,100,109,111,113,114,117,118,119,120,123,124,131,132,206,248],[87,97,100,113,114,117,125,131,206,248],[104,114,117,119,120,124,206,248],[89,91,113,114,117,119,206,248],[89,113,114,117,119,124,206,248],[89,91,113,114,117,119,124,206,248],[92,106,107,114,124,126,127,128,129,206,248],[89,113,114,117,124,206,248],[87,114,117,124,131,206,248],[89,113,114,117,119,120,132,206,248],[113,119,120,206,248],[87,89,110,114,117,119,206,248],[87,89,96,97,109,113,114,115,117,118,119,120,121,122,131,206,248],[87,89,113,114,117,119,120,131,206,248],[87,89,90,91,92,93,95,97,100,103,109,112,114,116,117,118,121,124,125,131,206,248],[87,89,96,104,111,113,114,115,116,117,118,119,120,125,131,206,248],[87,94,97,98,99,113,114,119,125,131,132,133,206,248],[87,119,125,132,206,248],[87,89,96,114,116,131,133,206,248],[87,103,113,114,115,125,131,206,248],[87,95,97,114,117,119,131,206,248],[87,97,100,109,113,116,117,125,131,132,133,206,248],[100,113,114,116,125,206,248],[87,114,206,248],[87,133,206,248],[206,248],[87,96,118,133,206,248],[87,94,96,98,100,113,124,125,132,206,248],[113,114,117,119,124,125,131,206,248],[87,103,113,114,117,118,206,248],[87,101,102,113,114,116,117,119,120,124,125,131,206,248],[96,103,114,117,206,248],[87,89,92,106,107,113,114,117,118,119,120,124,125,131,206,248],[87,89,97,100,101,102,103,104,105,108,113,114,117,118,119,120,124,125,206,248],[64,70,72,75,206,248],[65,66,68,70,76,206,248],[66,67,70,206,248],[70,206,248],[66,70,73,74,76,206,248],[66,68,69,206,248],[64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,206,248],[68,70,71,74,76,206,248],[72,76,206,248],[64,67,68,70,206,248],[74,76,80,206,248],[68,72,206,248],[64,66,70,73,76,206,248],[74,206,248],[68,76,206,248],[65,70,74,75,76,206,248],[64,70,76,206,248],[206,245,248],[206,247,248],[248],[206,248,253,282],[206,248,249,254,260,261,268,279,290],[206,248,249,250,260,268],[201,202,203,206,248],[206,248,251,291],[206,248,252,253,261,269],[206,248,253,279,287],[206,248,254,256,260,268],[206,247,248,255],[206,248,256,257],[206,248,260],[206,248,258,260],[206,247,248,260],[206,248,260,261,262,279,290],[206,248,260,261,262,275,279,282],[206,243,248,295],[206,248,256,260,263,268,279,290],[206,248,260,261,263,264,268,279,287,290],[206,248,263,265,279,287,290],[204,205,206,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296],[206,248,260,266],[206,248,267,290,295],[206,248,256,260,268,279],[206,248,269],[206,248,270],[206,247,248,271],[206,245,246,247,248,249,250,251,252,253,254,255,256,257,258,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296],[206,248,273],[206,248,274],[206,248,260,275,276],[206,248,275,277,291,293],[206,248,260,279,280,282],[206,248,281,282],[206,248,279,280],[206,248,282],[206,248,283],[206,245,248,279],[206,248,260,285,286],[206,248,285,286],[206,248,253,268,279,287],[206,248,288],[206,248,268,289],[206,248,263,274,290],[206,248,253,291],[206,248,279,292],[206,248,267,293],[206,248,294],[206,248,253,260,262,271,279,290,293,295],[206,248,279,296],[206,248,346,347,350,406],[206,248,407],[206,248,411],[206,248,347,348,350,351,352],[206,248,347],[206,248,347,348,350],[206,248,347,348],[206,248,388],[206,248,342,388,389],[206,248,342,388],[206,248,342,349],[206,248,343],[206,248,342,343,344,346],[206,248,342],[87,135,170,178,184,206,248],[87,133,135,178,206,248],[87,135,138,140,151,157,162,163,170,171,178,206,248],[87,135,136,170,171,178,179,180,185,206,248],[87,135,180,185,206,248],[180,185,206,248],[180,206,248],[87,135,180,206,248],[87,180,181,182,183,206,248],[87,135,162,169,170,171,172,173,174,175,176,177,179,180,184,185,206,248],[135,180,206,248],[87,135,151,171,172,178,185,206,248],[135,164,206,248],[87,135,136,165,169,171,178,185,206,248],[87,164,165,166,167,168,172,206,248],[135,172,206,248],[87,135,165,169,172,178,185,206,248],[87,135,170,179,206,248],[87,135,137,142,147,157,163,185,206,248],[87,135,142,146,157,163,178,206,248],[87,135,142,157,163,185,206,248],[87,135,142,157,162,163,171,206,248],[87,137,138,143,162,178,185,206,248],[87,135,157,163,206,248],[87,137,138,163,206,248],[87,135,137,142,143,146,151,152,153,154,155,156,163,179,206,248],[87,135,151,157,158,159,160,161,171,178,206,248],[87,135,157,158,162,206,248],[87,135,146,151,159,162,206,248],[87,135,137,138,185,206,248],[185,206,248],[87,137,138,185,206,248],[87,138,139,140,163,206,248],[87,135,137,139,140,151,206,248],[87,138,139,140,141,144,151,206,248],[87,135,136,138,139,140,143,151,152,157,163,171,206,248],[87,135,137,138,139,140,142,145,163,185,206,248],[135,138,139,140,206,248],[87,135,139,141,185,206,248],[138,139,140,206,248],[87,138,139,140,147,148,149,206,248],[87,137,206,248],[87,135,136,137,139,140,145,146,150,163,171,206,248],[87,135,138,144,151,162,178,185,206,248],[87,135,158,162,206,248],[87,135,146,158,162,163,170,173,178,179,180,206,248],[87,135,160,162,169,171,172,173,178,179,185,206,248],[206,248,415,416],[206,248,415,416,417,418],[206,248,415,417],[206,248,415],[206,248,297],[206,248,378],[206,248,376,378],[206,248,367,375,376,377,379],[206,248,365],[206,248,368,373,378,381],[206,248,364,381],[206,248,368,369,372,373,374,381],[206,248,368,369,370,372,373,381],[206,248,365,366,367,368,369,373,374,375,377,378,379,381],[206,248,381],[206,248,363,365,366,367,368,369,370,372,373,374,375,376,377,378,379,380],[206,248,363,381],[206,248,368,370,371,373,374,381],[206,248,372,381],[206,248,373,374,378,381],[206,248,366,376],[206,248,356,385],[206,248,355,356],[206,248,345],[206,215,219,248,290],[206,215,248,279,290],[206,210,248],[206,212,215,248,287,290],[206,248,268,287],[206,210,248,297],[206,212,215,248,268,290],[206,207,208,211,214,248,260,279,290],[206,215,222,248],[206,207,213,248],[206,215,236,237,248],[206,211,215,248,282,290,297],[206,236,248,297],[206,209,210,248,297],[206,215,248],[206,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,237,238,239,240,241,242,248],[206,215,230,248],[206,215,222,223,248],[206,213,215,223,224,248],[206,214,248],[206,207,210,215,248],[206,215,219,223,224,248],[206,219,248],[206,213,215,218,248,290],[206,207,212,215,222,248],[206,248,279],[206,210,215,236,248,295,297],[206,248,393,394],[206,248,393],[206,248,260,261,263,264,265,268,279,287,290,296,297,356,357,358,359,360,361,362,382,383,384,385],[206,248,358,359,360,361],[206,248,358,359,360],[206,248,358],[206,248,359],[206,248,356],[206,248,353,396,397,409],[206,248,342,350,353,390,391,409],[206,248,399],[206,248,342,353,354,390,398,408,409],[206,248,412],[206,248,251,261,279,342,347,350,353,354,386,387,390,392,395,398,400,401,405,409,410],[206,248,353,396,397,398,409],[206,248,386,402],[206,248,353,354,390,392,395,409],[206,248,295,403],[206,248,251,261,279,295,342,347,350,353,354,386,387,390,391,392,395,396,397,398,399,400,401,402,403,404,405,406,408,409,410,412,413,414,419],[206,248,317],[186,193,195,206,248,317],[186,206,248,300,305,309,310],[186,206,248,300,305,310],[186,206,248,300,310,314],[206,248,310,311,312,315,316],[206,248,326],[186,195,198,206,248,319,326],[206,248,319,320,321,322,323,324,325,326],[186,206,248,300,320],[186,206,248,320],[206,248,298],[206,248,335],[186,195,198,206,248,313],[186,193,195,206,248,328,329],[186,193,195,206,248,313],[186,193,195,206,248],[206,248,313,314,330,331,332,333,334],[206,248,339],[186,193,195,206,248,300,337],[206,248,338],[206,248,309],[186,200,206,248,420],[186,199,206,248],[186,193,195,199,206,248,300],[200,206,248,301,302,303,308],[186,193,195,200,206,248],[186,195,198,206,248],[199,206,248,304,306,307],[186,199,206,248,305],[206,248,425,426,427,428,429],[187,191,192,206,248,423,424,426],[186,190,195,198,206,248,425],[187,191,192,206,248,423,424,428],[188,206,248],[187,188,189,197,206,248],[186,206,248],[206,248,422,423],[186,188,189,191,206,248],[186,191,206,248],[186,193,206,248,420],[186,195,206,248,420],[190,191,192,193,194,195,196,206,248],[206,248,300,433,434],[186,195,198,206,248,299],[206,248,299,300,337],[187,191,192,206,248,300,423,424],[186,206,248,300,420],[186,190,193,195,206,248,299],[206,248,305],[206,248,440],[186,206,248,314,328],[186,206,248,328],[206,248,438,439],[206,248,328,441,446],[206,248,445],[206,248,442,443,444],[206,248,456],[186,193,194,195,206,248],[186,193,206,248],[186,193,195,206,248,305],[206,248,329,448,449,450,451,452,453,454,455],[186,206,248,337,449,452],[186,193,195,206,248,300,452],[206,248,253,298]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"166049416a79bce61ccb20d84249c5481ffe4ed691d9a679528b4ccc22c2d607","impliedFormat":99},{"version":"90b213591166d3250f5ec2817aca0652a4c6e369c10a2693621e64a5bcf9a262","impliedFormat":99},{"version":"eb85dcde5bfab908936bb34dc1d836d519c34021a5e2cd9dae6dbff6fbaae21a","impliedFormat":99},{"version":"15cede62e667cd4bfd5d6d5383bdb54444feb25101354c7b6b0c71a82f0fe456","impliedFormat":99},{"version":"e07a36181549dc94f3c627a411ad794e087fe3ea53e9970a0578afff1dbc5622","impliedFormat":99},{"version":"12290244fc7a732e674b80b9375ef65681cb790e6c795d2c8c2fc59c57451c30","impliedFormat":99},{"version":"897db726ff5ace8a644063e7a5c7b4cec2da358ef4f59816f895ff6b9006aeb7","impliedFormat":99},{"version":"33404b9a0c6ab6201dcf53ee1ab648d1b34a5b68fbe9e806a4bc691f98149bd0","impliedFormat":99},{"version":"ef5f525ffc98fedd2eddbe8d0c78d945bc71b114bd8761df91297e735dab786c","impliedFormat":99},{"version":"485e07a4e56a406c889f56c76b921382e74afaece6fb08cea6904c95ec8aec00","impliedFormat":99},{"version":"60bee75908fb34f2071151dc5d3a8330945a62433ef7b0fd594df774bc27a009","impliedFormat":99},{"version":"c110f683203467bc7c7aba69a59b8ff1c2c93b18d110f7d1b247781cda518f3c","impliedFormat":99},{"version":"811c19f657cb2ed233b434e339635e521abf2c006684d041eab491c3f6484c4a","impliedFormat":99},{"version":"df931ec791c7c83087248abab9fabe22c4e423f2048071dfb2afdde6e443b37e","impliedFormat":99},{"version":"d1a97c29ba431bfec0c2143067100c0645cc4302ca3008180cd50ae71b840e07","impliedFormat":99},{"version":"95b1b0e297c1e55a9c6f5cfb429d756c8a1fed7896b768255f1396aa3ae64295","impliedFormat":99},{"version":"dffc08b419c340931bcc66dbadbdbf30c247ee35541cddd6e49b73d0dfb3d550","impliedFormat":99},{"version":"1dcae9ca4d50cb021ebe5ee81d56ccf2048178c7e450b96d126d4795938c3549","impliedFormat":99},{"version":"eeaab29dc8901e6380c3d95525c4869804587be7429a429632bb3ecfaef5bf20","impliedFormat":99},{"version":"4d55445b01c9c4433c18473c2817149589d91f26ddb6b5ba37dccc0ba37d5659","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc7a6911881ddf1b4648ab50549251b2e1f68486b2af1066eafe4a6f54d3d825","impliedFormat":99},{"version":"43d2bb2301f8f34af1f53fa89b5c9fbe23246d90fb4c7507f1e392f8e6134092","impliedFormat":99},{"version":"805db2c7582744850ef6a93987a865d50096a73160905edb4bc6d0e286b5f89c","impliedFormat":99},{"version":"ec9d54f3fe2e2556b561d4ad954dc12ade3f55f6c0e19988c4c7fe660ab4b7e1","impliedFormat":99},{"version":"0fcf77409bb90fcb07f3e1ca71ed508b032246c1d394e19b30ad411567acec7f","impliedFormat":99},{"version":"5574a88b5629cf768b181e84f20f94b276ecb1c960694ed35057f557671aeedd","impliedFormat":99},{"version":"5d3c2f0edae085461185a5acdc741c0c01b48bb6b08ea1a32eb0e58c53c6acbf","impliedFormat":99},{"version":"c04847c1cc9ea1bfae8b437007aa325ee0d652a3be316e215d7c8095a08b2f87","impliedFormat":99},{"version":"554c93b7814e0f57dd54fe5d96a8c2d15e36978eea01d799c234965470aca92c","impliedFormat":99},{"version":"1b0aa95e0296094ca48ce26aee393e0f77ffe23d05918de54e1f3bbe3117130c","impliedFormat":99},{"version":"22affa1c44d8d262b88226abbecf210bea7204d7892c40e99f0c2ca15d2cb4b7","impliedFormat":99},{"version":"0063df6e8ef477520552c8770e08929e94f5f7a91fbdf5b66eff22c13b387794","impliedFormat":99},{"version":"98c7bb057cb5f8f7b703ff6680d584f2121b9d2ae85cfda731fdb5e5b5647edf","impliedFormat":99},{"version":"10eb3c96c1ff95017d75c83125311666b5fcdbe6db6a868b4de95b0a7297b848","impliedFormat":99},{"version":"f93c4d237f8584bc5f436feb8833666e5872252c23f2b183c8b529c8efce3957","impliedFormat":99},{"version":"187bb6582da25c485b8feaa198e7d7f748497efcdd32d3e30905865c10c3e252","impliedFormat":99},{"version":"037b2a5f0c7a419575cd4e4b33b5e9880f842ff80fa4b282f597da0b3f5c1a16","impliedFormat":99},{"version":"d7370694e825f9a7141a214d6eb71c78188922b305e275c37e5e5829392873cc","impliedFormat":99},{"version":"5f465606dd5a0fc3ae891e9b938919bcdfc59227c895a037e45765ff7952da1c","impliedFormat":99},{"version":"caf26a244f6cf2f8608e759aa99a80f3c39e4e1cb6e9bd6c301796dc22f284cb","impliedFormat":99},{"version":"8a1ff115fdbf99e5afbcb7335f3191e6206a9ca31963412380bd670acdcb0dfb","impliedFormat":99},{"version":"86ae003dde31c7aaec3b95eabe0d0d1ac9217e6bbfb51270d46994d1d2baa1c9","impliedFormat":99},{"version":"043542e1be2af9d8145f62c64c0810e98b2f5ec81d2fea911a5acc948a5056b5","impliedFormat":99},{"version":"8aac54fdb1c306084ebbdf55ec33813a67ab387f37f39c9bde013d1d05f99627","impliedFormat":99},{"version":"6c5700ea51915a8905355f48f09ec7ab590ef2bd049a80a0dbedf806951a6b3a","impliedFormat":99},{"version":"77f1acfcec943d902d61df6002cb3ac50663368503cd53494562d1038898f969","impliedFormat":99},{"version":"f7e52381933a28dabc560b5edebe3ea265e199b43c739cf610bf1e5f402804d7","impliedFormat":99},{"version":"8e990c3d5d235b7ff279c8713d2a1378b5bda44252c82925b1c62e2d730927a1","impliedFormat":99},{"version":"46ea66f7f806d09872c23347bdc17af886c3d18738199348be35555ea47bba03","impliedFormat":99},{"version":"ec5e3962ff24ba647f15a57484ea5b6e03b51aaf69e67aefa3853e38a4c294df","impliedFormat":99},{"version":"25443f46732259bba51d59f54f42dfd74dcc800e6baa1230ec83efbde53b53ea","impliedFormat":99},{"version":"eae8cd963914b84f436e58b7c4e93ccdbf63d86f3f74e3148afdabe658640e7c","impliedFormat":99},{"version":"2ebb5b482761ec54ca4ae7e11d655382becbfca18755a0f6b28b44aa796fa6cc","impliedFormat":99},{"version":"41d2f1736b9101fabb4b99ee3e784873410ccd66d005cc102e0f2ce4f8f0a9a9","affectsGlobalScope":true,"impliedFormat":99},{"version":"15091b7cb8029ad6782a0bc3e710d51476665176f7810d00cf1d4ae151ee64a9","impliedFormat":99},{"version":"dcc2888d54ee0e6496f0799280b063649b7f5bf04c4867528ec90ceef8ae89cf","impliedFormat":99},{"version":"baf5cdda841ebd1e919f1383606e9e66f07d5f85087bd02ca2d96a5c4fb0379e","impliedFormat":99},{"version":"3f3a8165470d97d86ad5d887c071fc4418808d7fa85e88a2e627b2cc50edd9c8","impliedFormat":99},{"version":"4b0fe16b7131dbcf893dce019e8b39c2bb9ee68d4d10ce763da8c6f565d0736a","impliedFormat":99},{"version":"a92e40b66b63fd269ab006d298f84895a7505a557288c6ff0565a6d77e9ac5ca","impliedFormat":99},{"version":"9f567b2bfd45015b7918a75162c9d89083ef3725959c5a618ba022e346d4fa23","impliedFormat":99},{"version":"0540906d3a6123cf536ce5174fd1766b7eaa1d59a30d78f71ddca649a99f280e","impliedFormat":99},{"version":"d0244f00438116d3910c563d5ed568b98f688801d24263a4eadb7229dcaee1ea","impliedFormat":99},{"version":"f752a135f6feff1206fa904ebadb2ba27b675be9f239b5175687c2ef82f50147","impliedFormat":99},{"version":"f47e0b43321a91cde54f5dd268bb1674e753e93080b4e90d08cccfb113e05bb8","impliedFormat":99},{"version":"e1b55edf7d7ff783942977f76b04e4c4f163273758cf320d45775dbbc979b2de","impliedFormat":99},{"version":"adf43bd96ee4a12799de95c8ac3c487107911d31a55633a24d28e81baa79beef","impliedFormat":99},{"version":"c0834f9b754e9079a1c5fe3076ec860f2a02f1e594b58553747ed18369bf13fa","impliedFormat":99},{"version":"b28b1635705a407007256796e5b3dea319291b6534e6adb013ec7205a9971f6a","impliedFormat":99},{"version":"e50bf8983bfcc887ee80e876ce7dfa49204fe0662baefa4033d4631744b50930","impliedFormat":99},{"version":"b03a56cca58baa158795485a27c025048d33920062b4930b9505aa485834c247","impliedFormat":99},{"version":"2808dfe94d74f099a5f8fd92a6351d6f5e953bd81f1c79ff94d15a27db79f51f","impliedFormat":99},{"version":"f3dcade32ecedef1884e9a035426c5bf8c8985dcbda6988fbe891a0b503c268c","affectsGlobalScope":true,"impliedFormat":99},{"version":"53a76098c1e8033359e7a7df8cd40008ec4888c56df6c1c3ed6a8ffac6f0de3a","impliedFormat":99},{"version":"d0173f3f767e599b58b5390a3d95dee58f70a2376fde504a65b20e5d58b5310e","impliedFormat":99},{"version":"ac89252a36ea7115c42e6d305da7e238caad37d2ff13a7eeffe25a78e0286cb1","impliedFormat":99},{"version":"e81fee0c6416f654159995a6a92561f5e3035746760e7e5cc4b9592aca35835f","impliedFormat":99},{"version":"22bd77026771ac8866c528248ff9c4b8412330e0540d0999fabe54efef92b318","impliedFormat":99},{"version":"11dbf2409dba425d9b3aacf0aeaa631f97d7f75f0a9434373160fb4f9cca273f","impliedFormat":99},{"version":"880d0a0cc4edf98ed0614f92b0e73745a583aeac242e154bea047d2a9fca6f70","impliedFormat":99},{"version":"5baceff006098aac12cdcf5c3e68d0af9af867bca9ea73bc1b4ed9f1229d9265","impliedFormat":99},{"version":"8a702d5510aa98d8ff51e2af111d5dfd7569528dd6f6f049716c04d15fb7f98c","impliedFormat":99},{"version":"cec2fb10c2d5eec6d643644e8f42fb57e084bff8858ae861520566995cdc755d","impliedFormat":99},{"version":"8a20c9ca8dcfa9f5b01abc1ef6b271aa7c6d1f7f7b22d3acb7f6d176e2f71e3a","impliedFormat":99},{"version":"9ab62dbc446ec8423dad892ab38385da94dc7c88d668130a01e6c7ed1e85aa1c","impliedFormat":99},{"version":"174a5d6709fd2a28ee86679c5197fac52688351ebd5c001e1bf060db930c4b27","impliedFormat":99},{"version":"039b7a6dbb28064d3b10a0595bb4c989a7d0da1cd7e8780592e8f747064f1b50","impliedFormat":99},{"version":"7969b666892e616196d9c1c8809e2d905120a8495558209e144f0722e8e5c09a","impliedFormat":99},{"version":"7622811ec88d6f57305588066281a7cbc1728b7799da0d655fbee168736a22a1","impliedFormat":99},{"version":"29d34dc61d2af294074cd578cc031f96970debe85e2dd38fc275e79201497a0b","impliedFormat":99},{"version":"ec99eb925080f5a10776c188d66aadb611f229aa45bd42cb74342ebeacf419fb","impliedFormat":99},{"version":"c67c87169d8b8e89e2a37eb9c16fcada016aa95485798a8570ea061adacc7bcc","impliedFormat":99},{"version":"bad70119a345e7601fe127d582bfcb2656819533af98ab996df05751b8cd1e60","impliedFormat":99},{"version":"e7b0a11fee98027637a2ff80402f007146c30f44347cb9e15ad9a5afa4b59d14","impliedFormat":99},{"version":"913b80b51d6932fc1da32a4d42a139b4d1405e8dbcd0fd4a409f4c881f6320ca","impliedFormat":99},{"version":"ddfff37c209548786ed4f9d7d38f8508b3e6c8ea4268462731ce48ce1f48f79e","impliedFormat":99},{"version":"76862c8255a1c8e8fffe3e6e7c6f830d41a52651e5ba6069bb0af3c5b756a2c1","impliedFormat":99},{"version":"08fde86d5de5de0e537de50a465983f39a065d8503d9e29d09cd5946bc8b2336","impliedFormat":99},{"version":"e04c7bb3368ee985a53af982acf198461a7fd6013017f003a5f8e41ee449ce58","impliedFormat":99},{"version":"0fe63c25f804b2a91e5807f7927b0c86a733db71806f4abeed0a80f64c0affc8","impliedFormat":99},{"version":"0d5157d9c6aebde4ba2922e59a4b43a6690d7fdda5ea4b33d65ccf1625e17857","impliedFormat":99},{"version":"303f91db94d88e50b287e4d6c93afa4d937af979c6538dbe23c8ee6bad9efe43","impliedFormat":99},{"version":"825915c62c10c629e19891bab8e230229a64c6e1ce568eed0619df84e307f34b","impliedFormat":99},{"version":"c8147909b36108d274b3bf20056c708501e6fb3e0b07d30ed4d0288960611da7","impliedFormat":99},{"version":"2c0702038440421aed5f3070adef7374934dfef0c80ac3f87845f13bbe2e84c1","impliedFormat":99},{"version":"63ace3892250cda885de70d545e263bdb1b0d4e73c58d9fe54b0d734269fc592","impliedFormat":99},{"version":"884ad23d4b91afafb0c3a5852fd501b1a5857370bbf29066f360d66a0964aae5","impliedFormat":99},{"version":"29dcddd00e8cef21847b89a56cc9faf3d7bd89b4a66881f57d358c016ea95568","impliedFormat":99},{"version":"b426383a74ff27a6a5a9fb68d6d3e15206f638fbc975a8ec5c0372f0b61e48df","impliedFormat":99},{"version":"1bd66a2eaa89eceb585cefeac761408bb2c1c3dc558ef769edbb2c76420a09a4","impliedFormat":99},{"version":"8f6830e26ada8f41a978e5946b5b5a15482ea8f5bbf60f574c19cfc0f977e958","impliedFormat":99},{"version":"adec6cee48d6a01a6f836214965050d062559f40918db22ee2ce766c161fc779","impliedFormat":99},{"version":"2cc41e7b5aa1b4637478a3082e59d02f8d08644335d334625b930f3894623b58","impliedFormat":99},{"version":"40933fd116a854ae92140455238c3a389ad3e16bbd234943c5b617fda7321eda","impliedFormat":99},{"version":"49f9f7096d07481447e635e92739ecbac6722abcdf0c8041df756775b0ffec87","impliedFormat":99},{"version":"4319efb821930975b69714057e2d0b55969b80131e4d3fb0b9ba966d382081c8","impliedFormat":99},{"version":"658a5c9eb6e5af068cce5bce9639ec5933215757c5fa6eae4e55463de1490fd4","impliedFormat":99},{"version":"aa90853e2d6db3d585ddec64d47e032e31913b7b86f2917c76b92056343e2d2d","impliedFormat":99},{"version":"d646ddeaef7e84976b17d6f4b34f0a88018768c35b74a417c60e071f88cd2883","impliedFormat":99},{"version":"1adfa003bdbe57a39edc25443751521a0c51a26fe4c4cfb2243494f9470afc9a","impliedFormat":99},{"version":"31ae32e481fd5f8f05483b45b4bb0f90e9a6f0f5ebb032edf99b33396a34d242","impliedFormat":99},{"version":"086453dc304a38e682554c3554c2dfb95514803140c8ebdce63e2f87e952ee73","impliedFormat":99},{"version":"0b85c86bf5249a53a18e19f0e1e0b0fb6234fd73e7edd4ab3832598d7ff59b72","impliedFormat":99},{"version":"c7230a5297128e41ac5fdb0f513e5dc63e8ef63ffeb2e86c2d327734f7430bd4","signature":"8f915b0ed2a9a7096b27a999f2e8f433ba8e609db7c6a26ca21ace2f7890a729","impliedFormat":99},{"version":"4297e222cb908482817c129d580240942f224f9411bf672a4f970e3c6fcfd113","signature":"43832b63f515ebe542606081cd010155f96e68995c9f1a9dc0aca5865f599634","impliedFormat":99},{"version":"94236359da6893e80e35ae7f3cf034e5fa01fd2fcc9b1da895190dccb07220a4","signature":"b4e762ad93fb620a9f8cf75b4aa5f0649d551bab37525bfae1b55691042f89a0","impliedFormat":99},{"version":"128aff26174ef0407a5ce5075f904fff9668a398274256e4435424787635a41d","signature":"54c9a446b4d580824d206df0556bd703b5d5ef900cdddd8a1e77f57b413ffc6d","impliedFormat":99},{"version":"7665086223af8b2f1011968fa5b7c44498fb381f9a9d64187286577f3cd93319","signature":"01e8953cd77aae7de2c49a0941c9eedc366456a619edb9d660d2e4fdfc79cc57","impliedFormat":99},{"version":"4dbc333ffed1dfd2f0e612c4ee68b3d32a3db662bfe90e57510a628206e2ef95","signature":"233402f0f10af86bdf49f22debd2bf2ec407165863c262a7282271e15b5b66f0","impliedFormat":99},{"version":"abcedc37b548199385f51f19cea5cf32948cf6a74bc9ff66e29a73505f0807f6","signature":"7beb8d0d2cc7482be1e1b992e8827808c23c0979ed89576b9c0e9993e70f8ffe","impliedFormat":99},{"version":"03913adc813f16dc9f9cc3e019b08b8d1cc96d9b5fed446003d98e1bd7d5384d","signature":"e6be1ca4cdcfef861a88c9ee38c35a031149d0d763b6a6202dc2483b51498f3b","impliedFormat":99},{"version":"80917785b24822a17cbd7d1c7e2b5d944dc83bbe6af43e688aef7db0f6924be4","signature":"a8b360847788346e154038cdad9fcdbb02eb30b544c7f276af6ba1c26d76cec5","impliedFormat":99},{"version":"687bd23046eb1a8e4a9252aa3c70b395ebc0dc05202ebb67ae6c679a1b7a33d5","signature":"2afaf30c2a3cd3c7d1c56ba79f792454022ee2a5ad55b356d666287a51d17afc","impliedFormat":99},{"version":"4a147b797d77c31d0b96690642b85b8e5f90b8100a02156cc0d0055791416915","impliedFormat":99},{"version":"debde61ca6bd3ead39e00d9018e084389c3a0f1d5ee94e959b6ea89889a4e88f","signature":"70c8261ee7f08abed87547ccaab539cdf84198e183a2cd03addadeb07645491a","impliedFormat":99},{"version":"2b3770b8890a515a42df3269ad34d2036fa5b66b12587fbaa432278e08a97551","signature":"8bda2130bb539be4e1dfcd9c727104a9c47c8a9ca3322bfc20ff183a1ccc9b3a","impliedFormat":99},{"version":"ac8eb93434773adf7e0ff7e8c354cbcaddcc27af84034793b941ce6af3214f60","signature":"f4563db7c54ead8c545f15c6123829b6aa81f68c5444c53d351f03124ad53f81","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b80c6175da9de59bace50a72c2d68490d4ab5b07016ff5367bc7ba33cf2f219","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","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":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","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":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"08faa97886e71757779428dd4c69a545c32c85fd629d1116d42710b32c6378bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"23cfd70b42094e54cc3c5dab996d81b97e2b6f38ccb24ead85454b8ddfe2fc4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"809de4a91e5f9ea79963802ef3ea0144533c6f94ca8eee10efa70f5f42d6eecc","impliedFormat":1},{"version":"71adf5dbc59568663d252a46179e71e4d544c053978bfc526d11543a3f716f42","impliedFormat":1},{"version":"38bf8ff1b403c861e9052c9ea651cb4f38c1ecc084a34d79f8acc6d6477a7321","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"e184c4b8918ef56c8c9e68bd79f3f3780e2d0d75bf2b8a41da1509a40c2deb46","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"ba1f814c22fd970255ddd60d61fb7e00c28271c933ab5d5cc19cd3ca66b8f57c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"295f068af94245ee9d780555351bef98adfd58f8baf0b9dadbc31a489b881f8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true,"impliedFormat":1},{"version":"27d8987fd22d92efe6560cf0ce11767bf089903ffe26047727debfd1f3bf438b","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"b4e9642035ad492bd9d5483a31071b880fdfec1c27c5f2c5c7b2b2b9e917f32f","impliedFormat":1},{"version":"4555d772a3607a0800eaf1d413e51f26416aae9217e1ea6c7cc21ca5f11b2ffc","signature":"462b9503f238f10282c0789a402ee73eeb67dfc137e2dc6d76407385d87d6932","impliedFormat":99},{"version":"75454b4a58aa53962ab24a51801ee4e3ab8d4ff2a4482bee6fca59576126e1b9","signature":"eec83e53e5d27603f5bcabbec479fa0b2c72ad32c0979fa9952b8a3977d437ad","impliedFormat":99},{"version":"ce53ac9eccf7ee5d48b2bf225c595a6ff2f31e13e1fa3a7d99f6c4a4bc04e195","signature":"9fef84fa177662d719f7a59c7a63f68c404fb13ec70817c6d9a79325d27e29a8","impliedFormat":99},{"version":"3e428a48958c75072a0b35fa4a30cb12c3e280ef5aea1c1e3a9042ffc0c1b4ee","signature":"7a96532493a3b4541cde7e76f564db16c528058f1753d4eca8ba07fcf042ffb1","impliedFormat":99},{"version":"cd352941607d3a776820f0039ad8e807f65d49d5461c3784d2727bd6300ced0d","signature":"e9dc8a98faf0943684d949ccc7f9c386b909ffc5f7b3de0879a8595c159f3e20","impliedFormat":99},{"version":"7f0550b39b62fa24b2452eba5dd2acb7ba390df334228cd6152a272fa49217f2","signature":"fa32f9dac111a2ff01207899215e70a5a5fa7bbed8b67ae1924567a8a0582515","impliedFormat":99},{"version":"00c8569f00adbc51c359cbbb8c7b5a4607d6183019aeb4530d8d7c794e814939","signature":"6d9359c13892134aa044afb27680b2f4000e5b66be051f939f9fab295c95ec12","impliedFormat":99},{"version":"051a5458c2a72f43b7741e0340b534acffaf93d4d74105045efb5eddecec7e17","signature":"eef2f5c88a463ec4d1889507c8c1a0831ebfe9b4d199a942efbf13eb169da6f8","impliedFormat":99},{"version":"172ca0a321b6bad4ae5edb2fa14d2f2308e07a4f57c4fab8f417aee5eac198bb","signature":"fc28a6a6ed206d4c10fae80aac162f6fd03137045fce9ec4ef682398cf9c6a54","impliedFormat":99},{"version":"4c2392a27e2dccd721f4baa7a43caa6030aa3bfd59321953bf040e9647d0acde","signature":"ed26b51f3139bfd7ee41f5ad0614466252d0bb458399b92a0d77e0071e7ee5ff","impliedFormat":99},{"version":"bdc47a6879fe9ea028abd9cf9e2afda01df44d213d33a1686e5596df491897f3","impliedFormat":99},{"version":"e32be56c28a4587d28d96f14ef640d94e8cdf72d327bcee11fabc90ad5480e4d","signature":"6d4345cab03eafd2e06dea835b6a8e68d04c4daf76a8a122a3e19f98f6f63543","impliedFormat":99},{"version":"398a6240c21f24be0d404655d948ba5d4ac133b319df6e19ffec2557a722fcd0","signature":"d2b70ec5d6d18c02f36471bb2728c30e3193c702f7f81179c391805d41fc9671","impliedFormat":99},{"version":"b99723da0d0d75a6fbf88e2caad86bc913a7c604cd38c2597f1c8ac87eb04f1b","signature":"90cbb1d9d72e0d67990c78e0f8d82d8be27f04a07d725e2df95abb084f82fd77","impliedFormat":99},{"version":"551ea4d19f0bcf074c82614fcb38ff1ae054a3aafe50872c29e7068aac4e7502","signature":"5046064aa5b421fa11da17a504835d4af2a427517cddc52eea1f16ea183032ae","impliedFormat":99},{"version":"8d41e7e8ecbe0435ad907760a1f06c7ef4dd41447ead553eead1d18dc443f469","signature":"17710c357347067d1bc30b87ff45bee38de62c63cd0b31b8fdc9209be4fbfa4f","impliedFormat":99},{"version":"9aeb67e5ad62761b1154dd390b87533aedd6b58c5af9176c3bf4ec3ac569b7f4","signature":"ba820a1e88011035f42eb96531623f1358c5b4bf3298803ea255d909483a8165","impliedFormat":99},{"version":"72b13e1dad07cc8cefd4ef693c9f515b3ba048d65022c9f5fb464d779aac5da4","signature":"c81ea598caa5ced4fcbe993c324c5830f314d9cbc91774ff9f590207e7e36f6e","impliedFormat":99},{"version":"7839080f68a80f4f695a089427190501a6b01e748a70d730a8915b0bb7ff0a0e","signature":"a170cd8d13ca8e10c49b489ea88ea6d20e7c01a91dbf4c8ffab2230f7dc82204","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"8135f069eb7f9a7b2c2bd52228132795f8ec395000a865011d6e2a09da7090aa","signature":"40b0c4c194c5bbfbae9b46a99eea0f11841e887f17c45dbba3beb3a350ed25d7","impliedFormat":99},{"version":"0dfd10a4540348432598911faf612d7a5194e7d243ca9346075b1a704001e8a2","signature":"57577214a05958b3ef80c477fbf05f4e4542d3a12fc58b1ba761e0d0049a89dc","impliedFormat":99},{"version":"1804d2aea85f301b17d2d21a9b57a1691c6a2f75d0b33e2edddcd535d036fdf7","signature":"186f1c25bbc34e33ce356cd3e8ac5d25fdb7fc2bf038491b2b5cafecfc363205","impliedFormat":99},{"version":"e7a089d60e90b517cbfb6bb8a9af143cfd2a2f8be1e4737dbe6d042baec129d3","signature":"325f4142732c7acd015ca85019a5f1df56e80a97b64de98240009b25a5c23a9a","impliedFormat":99},{"version":"a3f79b762468d98c80da5d437acfbb17bd0efd66c354feb4f8fbe612cfe6f18d","signature":"1344ba88e37bf191d47e4d3bfb0462d4535b0547baac6c172107c5216c3ecd91","impliedFormat":99},{"version":"e8151a4d578b602b13bc9d31e67353124752ca189347b26912d0b568da01a151","signature":"85722b04f9f36bda4a0ad064b9000ace50808f20442d9e244b9478b0cc6c3562","impliedFormat":99},{"version":"31f1d9f9c8a1bb400dcb3f1c108a51834abe8733c39017a92014a7cc029585f4","signature":"b182acb844a253104ff60a4445f5f7a46b41774b47aa626a5d3c369475a63437","impliedFormat":99},{"version":"dd8859e0c87dc42d3fac647030b69a9f69383377eec3d542d16014247d2844c8","signature":"3c5b4dd91d4f16a12e2fccfd3a0824c3a4e34fe42165bc2d3746ed8f783f6c02","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"96f3a00576c80d8906e08467bb4b4913ac49304a99d3d3a3a67eb2a60f4db146","signature":"19e1e0701c55dc66123c5c14f1010b2cc01e9f6048ba4e5236e1e886348b471d","impliedFormat":99},{"version":"c2be32a61a3fa73395861dcaf83b249773044948debefef7a8f33af74a6dfabd","signature":"3942eb65af274c3b6e3af969dc609c4b648ac731cab71f5074a61010ebe8a1a8","impliedFormat":99},{"version":"a51cf1dc99c4ff3b6568ad47b30d99ccdd78fee43da7bff12dbce7e9e74119e7","signature":"5b17ef78a01485bf78e0c6fda5e42135de323763fe567c75ca5a262056a828d1","impliedFormat":99},{"version":"289e56d6337988ed817ac74616efb746234be9b41bef7b3e01e0fcdc9acfeb13","signature":"a79eee042e03c94da32797d73085ca9fdc1dc14771111f7393c080f931520a6a","impliedFormat":99},{"version":"47d0cebf1d1d340e4aa4f9ae0391fea957aa4b8ca4cfed2066e17cc41b5a7cea","signature":"ec26048749bdf8906221e21a73448340416e496c5e6eed422f23c2b7cfa9fd41","impliedFormat":99},{"version":"e9c2fc64402d5d57f21c54aa63359f084591c31f2b233d49a202ac8124363742","signature":"46b3860aaf2f0445a93d21cedac0a56ce179eb62883e65779417cb6ef5f712e2","impliedFormat":99},{"version":"53f6ba044630de8febd542fef515cb9fa95d20accbdbe3996410d19282ee028d","signature":"294926c8a9b61713d5075cf10404e9bcdf71ef08e945189d0d788896628d45a7","impliedFormat":99},{"version":"d6dbfde7ae8d2ff39a38762daf443f79e4e87a87397af40b5b05d2e3bfdb918f","signature":"09dfe60435887517024efd402ab10e9ddca887942cb63f1cc522af84dca7a72a","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"284446cb8715f083f41e577eb369092c2ca69c4628dd1b370e429c161b2c4d98","signature":"ff09089c9c93593dfa17bba337c277bf892cfa681252f66f6819fba8b62183b6","impliedFormat":99},{"version":"525d0fbd8b407bd031622a9d0a4274a16c5dec7ff20fd61f7a066f5c3d8b05e9","signature":"f0472a455b4e213dae5251b0b6ed40a2b2f0b7808c95487f036cde45b332accd","impliedFormat":99},{"version":"09c6caca04fd3d4ac26e02837d0358a55bfc398f88fd7b09f9ef0bf8da2f7c9c","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"c3d8e1342e4503eecd78e50ec4a4ddc87392afaf41a93ca640d3c88fe035ae56","impliedFormat":99},{"version":"07c0547e91d0c35c3d1bff1d2b7ffac3334b315e9eb5744a8440940e819ab13a","impliedFormat":99},{"version":"694f091f9b015e559c767b031e2c3c578916194a5335dfcf3bdba5f9e38afb66","impliedFormat":99},{"version":"f9b028d3c3891dd817e24d53102132b8f696269309605e6ed4f0db2c113bbd82","impliedFormat":99},{"version":"fb7c8d90e52e2884509166f96f3d591020c7b7977ab473b746954b0c8d100960","impliedFormat":99},{"version":"09acfcc65d81722128cf25e70c88e376513076b674829a3f2fd0d713643aea66","impliedFormat":99},{"version":"56fda0faf35a36ad0526c83cf6cb68d0ad1fc0be7b978e8b09505e0e59a2f84a","impliedFormat":99},{"version":"136cb8389f9750475777893903fabed422a7ddb88de72ff101b4d8c05371795c","impliedFormat":99},{"version":"bc7157768e6b7962ba9987f1c2038d31523b61b3956117b8195cdf817cc7247f","impliedFormat":99},{"version":"2158408f62d0d2e4eec1d71087427ccf1d1402671d85b6d8d94fb83749c51220","impliedFormat":99},{"version":"a2d825985fa2f549e66d2d43aca3b91187855171ccf27bdfb308a5e023294747","impliedFormat":99},{"version":"37b979b237e4e861576ff06f453f87806125b4fc4930005f11107a46075806c9","impliedFormat":99},{"version":"142a572c0496b5aff2904d3734adfff2d1e901ef08a75472e50f0c52f9a510ea","impliedFormat":99},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"b5ba01279af8f99bdab82c198a16ac0a4926a98b794ddc019090a9678ebad1be","affectsGlobalScope":true,"impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","impliedFormat":1},{"version":"6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","impliedFormat":1},{"version":"cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","impliedFormat":1},{"version":"8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87","impliedFormat":99},{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"33f3718dababfc26dfd9832c150149ea4e934f255130f8c118a59ae69e5ed441","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1bb61aa2f08ab4506d41dbe16c5f3f5010f014bbf46fa3d715c0cbe3b00f4e1c","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"e42820cd611b15910c204cd133f692dcd602532b39317d4f2a19389b27e6f03d","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","impliedFormat":99},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","impliedFormat":1},{"version":"0a95d25ef86ecf0f3f04d23eeef241b7adf2be8c541d8b567564306d3b9248cf","impliedFormat":99},{"version":"727d1e78ee77d6db6b071fde82d7d1eb92484c99c4d49d86c30dd15b0b0a3c94","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"dd1e40affaae1edc4beefe3d9832e86a683dcfc66fdf8c93c851a47298b04276","impliedFormat":99},{"version":"49747416f08b3ba50500a215e7a55d75268b84e31e896a40313c8053e8dec908","impliedFormat":99},{"version":"bf85a259612faa1f444bcef0045aae0ff766561b0a2fb2797f2b65714b9d9fec","impliedFormat":99},{"version":"e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","impliedFormat":99},{"version":"73bffad73eb0e632fb83726d67f50a5e3c3ed6d50e7ff1416225c885d2272305","impliedFormat":99},{"version":"3c65174d4d399d0a9247b94abfb308f23074f907e44507096cd583375d538fc0","impliedFormat":99},{"version":"ea3c33b10a8026011e79b31ef982b4a0df9641ffa40f6b9bc81dcac96a7cd860","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"971a2c327ff166c770c5fb35699575ba2d13bba1f6d2757309c9be4b30036c8e","impliedFormat":99},{"version":"fb0d12ac2d83c807ffdca1e4e1e5806220fcaaf54b4459b52e535399155caf0e","impliedFormat":99},{"version":"7bd51996fb7717941cbe094b05adc0d80b9503b350a77b789bbb0fc786f28053","impliedFormat":99},{"version":"b62006bbc815fe8190c7aee262aad6bff993e3f9ade70d7057dfceab6de79d2f","impliedFormat":99},{"version":"21e562cde44f5aed7baee7ee3541d4274f9a561b9589b2622537a9ef57b5768f","impliedFormat":99},{"version":"79a6eba90bfe3c1f721838d7e61b394d6d81c7b6d8d754df0b46509a3d147693","impliedFormat":99},{"version":"83194635ad31a639e339e90f46401d5e69810f93f7b06589bb26b1ae6f2bc211","impliedFormat":99},{"version":"3c1291fa957007538097ce38f7f0d65bf4c6ba6c2fad80ab806b71264fd296f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f11e0e40bd4f6bedb1cc15115dbef210137185cfe79c2b18ea2d8fe5059ed66c","impliedFormat":99},{"version":"79664f59ba31fe4cdb59c78824c9ce2a84e7686a52dcdecc62005096cc248458","affectsGlobalScope":true,"impliedFormat":99},{"version":"fe2d63fcfdde197391b6b70daf7be8c02a60afa90754a5f4a04bdc367f62793d","impliedFormat":99},{"version":"3b352d29931971dbaae2202a81257e13e739a77c547746a4e28ca2cd3c1aacd9","affectsGlobalScope":true,"impliedFormat":99},{"version":"4baf9111d939d3b5d10519e4e22d2589d15d008391ce2866f2d4295ae5419a6c","impliedFormat":99},{"version":"849ab6fd9f93c9ca914b60085a2a5e2df1f0e137739f4a7e23d2eaa530396d50","impliedFormat":99},{"version":"5825e828f2d57d0cf90a36f0caa4c8e457faeff96c5af59a2336aea8e9ea305d","impliedFormat":99},{"version":"5a88655bf852c8cc007d6bc874ab61d1d63fba97063020458177173c454e9b4a","impliedFormat":99},{"version":"7e4dfae2da12ec71ffd9f55f4641a6e05610ce0d6784838659490e259e4eb13c","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"4c8ca51077f382498f47074cf304d654aba5d362416d4f809dfdd5d4f6b3aaca","impliedFormat":1},{"version":"c6bddf16578495abc8b5546850b047f30c4b5a2a2b7fecefc0e11a44a6e91399","impliedFormat":1},{"version":"d8c23711d682db1527eab3df7e9ee19a8ac4e2beeb1cbb79342a8e839e16b181","impliedFormat":99},{"version":"30ed8b978707eeb952a0541818520dc082305fb193bb2b34cea23563ea501dae","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"f956c645e2a2f046ac48fb462b489c1ccd7664e68e806822ffbc94bdc7255df2","impliedFormat":99},{"version":"7760ddec15b4f7650b762782130b6bdde6a29e01711ef9a34266d57dc6a911b2","signature":"793dbc6d583e3d0a82f44d7ee7481393e47f9f7cbc1dc4b1009fe1e562eca7a5","impliedFormat":99},{"version":"4b5f8ae08ee013f51c6d1a530ed1c24e0dc3cf650553d52f4f31a8a7fcfeb306","signature":"ca1c75dc727701445a289b3580a1d07f65afc0766a4e16fbfe6efc2b0dcdc070","impliedFormat":99},{"version":"22f3aba43138265de3599360adcaffd9cd9a49ee62d5f6ac62183c1c908a7214","signature":"4a55940e4ed8264000f756ed8868a3c7d075abde4b474a59a50d6fc8f95a4f2f","impliedFormat":99},{"version":"f0476523fb8951958172a89eceb2ad9731675a659a73a5c5426f090ab0bbd703","signature":"0320db08af870eabeeab261f2649d9567a17b9d18673e844c2f5812f28ff207a","impliedFormat":99},{"version":"af632189f403c3e747df0b6d506f7a98d7f1ec75f74585412e9d9f6cb6f0139e","signature":"db7fb342409a3086099d07850f1ad1af9a5db6971dc29d2dd7070e284cf5a2b5","impliedFormat":99},{"version":"0efdf25f2c78ab27dd2d32ad4c2a8d4be50a939c04f479f8b63950e24a35ed0b","signature":"ba83707c3222c6cfe387e4efcf5d7d1e997fd124221b08a629989f3df968835c","impliedFormat":99},{"version":"569f3117361eb51003323ab3c3f8b1f23d5ee2c355a657f6fd088ed11ad88fd3","signature":"703e78a716690890b4ca7f81f6d5f74e917a39eca174f65ee550872937242dab","impliedFormat":99},{"version":"8bd917cd4431fc433313ef04722be1fa836a3b9178dbac0ad5cf16516d90cf0d","signature":"15e2010a9fca5f804feddf7079bc6d58d0fa5f143f7c1732cbb90777379e04bc","impliedFormat":99},{"version":"537cbfbb1f0f20a22b147c1b7bb938fc5d61159e4a0e4c149303ebcad5cf83d3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"cc4ebaec29bec1812a3bd4e347d3e0b07e724a8757b6f0c4c34ee71f269c19d7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"984ab4b450a73555c568fe674947a5f335c4862185cd73e591b75e20f8575ef1","signature":"ffc7578ab24193fa2737b69d2da9e3cc0ca0c104a7827532cd19675fc71b49a3","impliedFormat":99},{"version":"4b3c485cf39b134404097064e0e0de51f7b7e97f5c49156579c83e03d2dbde77","signature":"13483e01a82a92654fa4a3cfccdc45f566a87ae6b396ec51f840409e5a7ee4d3","impliedFormat":99},{"version":"6f97d0f535d8a8133232692c0d7cf19c471e4e1e240d09fc1ae90934998db83b","signature":"7f6d5413d976cb7ed9b253efb2e2d390df4f51f0ceed5fdbac28cea6fa439b3a","impliedFormat":99},{"version":"8e05b887202110e3fc2942fb159513d140212f9b6eb52d1ad87596e9e388403a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"205efcbc6c86c15203427863f75ffbb03ba19c3da04a6f2cfebfa3e95173c211","signature":"e98c6b2654ec68d6bb6bdfa403fe892b6ef071d0e7ee56b03ab3addca919a32c","impliedFormat":99},{"version":"3995dc9c2aa70c2834f8d5aa9041296398a9e3c09692a53c2b28d9d68d6cc6fc","signature":"6568fd88606dc734f6f4d9d2cf94e2cf3ba9cf06bedf93ed17440a8847ce70cd","impliedFormat":99},{"version":"4e68eb9f7aa883ead7e68b2f6bac86cedd87a0eb147c58f64db7df20c97f2e3f","signature":"1fb1ef6f279350c638ac27fe976f89b934ac6fb95a90c202086a61b6a58f2a1f","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"3fad5bf81e6404b77bdc8caa2c28ac18eef73e88d1f78fbae9975f98197467ba","signature":"0b76095c7232f63909df8e5e17ebf9e2e6f85fe86e7e7a29d1ffc3d96087898d","impliedFormat":99},{"version":"d6670d1fd37ffde7ef9b895a044967e1945509b7374ecac32bec090b39ceb54f","signature":"26f73360b13c28b634ffd9302d312bf5368a3a70c9c12c14f544d421770aa91e","impliedFormat":99},{"version":"165dfbffc275968cb251138fd7d0a244c16621cdb37ddfeacbddd2fd2810c549","signature":"c3da8d8c67bc7aa45aad37ea92160f3801c7be88a008b4e0bc1b255575ee1f6a","impliedFormat":99},{"version":"bf4174dbef815c330d1a8ca1d7ab54d7159cf39658eb8457aea2220889e3d29b","signature":"2e6a8bc800d9727f9eb92e812261895bf0964fe189196d2346263b8bc80d9a7a","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99},{"version":"34a0d1bbfbc24646beecb141dbd3c0b5553742965cde97b63c942b402b587f10","signature":"6c4f936d7b96fc36db9e884a24451ee1028186ff77f97f162e5a1787e3e58b48","impliedFormat":99},{"version":"b5eef864a51aa73787cea8832de6cabad0b12e227c5f2c431b1d0a8fc5ca2167","signature":"7d400ac7523e8172b24a68ba5722bfa574ab1d6a4e559e0d872d782d3cf3ede8","impliedFormat":99},{"version":"5dd4048ed433fb8aea7560f68a208135e146cc4221697da8944e406a3c59c36f","signature":"f048ff59225674193e3f4aa0c53dfcf5f59dcdcc034b6638d8c9f9d9419b3b82","impliedFormat":99},{"version":"97d56d094619554b75f84153f35fec80b82d82724bc42ed02cac2a4dc12341f8","signature":"db2c4520a17174f20ef6d6112bae7f7516fb234fadeca97087b8515b60b6e201","impliedFormat":99},{"version":"7b83c8af642a68e25aca5e373ff9cbfed1636f970230b409dacb839108871d41","signature":"279bf299211b4e88e85c60e0643823cea2ad2a5fef884e4b871f126df5826df3","impliedFormat":99},{"version":"42e45ae97a130b63c1a705e9ee26b0a518d6f484af5e896776d64495f5aecf6a","signature":"8be671a8071bd74847de34e9fe2b7ed47dd6fdeaa026a48f2b6e95dfbd13c204","impliedFormat":99},{"version":"4fdca92d458b758db183da1d69019bd45b2357380048e52d73df4eb52349f1f0","signature":"cad70810e7e34835bb989fccf03ab83afe9b69566c03cb38175aa4af5d2006ac","impliedFormat":99},{"version":"ae8c8dd6c0afb7e86722cedc7bd287a1d3950329186b63e34a9fdeea998ba57a","signature":"0784d2eab0ce939b9a2a573f8e6e07bb64ece8d5a7b81ea1530b53c3ce88e960","impliedFormat":99},{"version":"e15ab02cf7fb12e04c0e9c96a2534b8492189a20acd547bed46f76a281584043","signature":"6fc2b5437dc6b5a9681f362d3151c6f27632650d49bbdb3fe7027a8089e8d430","impliedFormat":99},{"version":"84df3cb494255905da4670184a504cb95391bac9851be025c3e36ea90b437c90","signature":"40e66da39e21979d4dfe12fc621f8ec7ade237ad68cc7ce4e2c32fbd78add1b6","impliedFormat":99},{"version":"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","impliedFormat":99}],"root":[[187,200],[299,341],[421,457]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"outDir":"../dist/esm","preserveConstEnums":true,"removeComments":false,"rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./esm.json"},"referencedMap":[[133,1],[124,2],[98,3],[135,4],[88,5],[131,6],[94,7],[125,8],[132,9],[121,10],[126,11],[127,11],[90,12],[92,13],[130,14],[128,11],[106,11],[129,11],[107,11],[93,15],[91,16],[99,17],[110,18],[115,19],[123,20],[118,21],[122,19],[113,22],[112,23],[111,19],[100,24],[120,25],[117,26],[116,27],[96,28],[114,29],[134,30],[89,31],[104,32],[95,33],[119,34],[97,35],[105,36],[101,37],[103,38],[102,39],[108,40],[109,41],[76,42],[77,33],[67,43],[68,44],[69,45],[78,46],[64,33],[70,47],[71,33],[87,48],[75,49],[73,50],[79,33],[72,33],[65,51],[81,52],[82,53],[74,54],[83,33],[84,55],[80,56],[85,33],[86,57],[66,58],[355,33],[245,59],[246,59],[247,60],[206,61],[248,62],[249,63],[250,64],[201,33],[204,65],[202,33],[203,33],[251,66],[252,67],[253,68],[254,69],[255,70],[256,71],[257,71],[259,72],[258,73],[260,74],[261,75],[262,76],[244,77],[205,33],[263,78],[264,79],[265,80],[297,81],[266,82],[267,83],[268,84],[269,85],[270,86],[271,87],[272,88],[273,89],[274,90],[275,91],[276,91],[277,92],[278,33],[279,93],[281,94],[280,95],[282,96],[283,97],[284,98],[285,99],[286,100],[287,101],[288,102],[289,103],[290,104],[291,105],[292,106],[293,107],[294,108],[295,109],[296,110],[405,33],[407,111],[408,112],[412,113],[411,33],[342,33],[353,114],[348,115],[351,116],[396,117],[388,33],[391,118],[390,119],[401,119],[389,120],[406,33],[350,121],[352,121],[344,122],[347,123],[387,122],[349,124],[343,33],[185,125],[136,126],[179,127],[186,128],[181,129],[182,130],[183,131],[174,132],[184,133],[178,134],[175,135],[176,129],[177,129],[173,136],[165,137],[172,138],[166,137],[169,139],[167,140],[164,141],[168,140],[180,142],[153,143],[154,144],[155,145],[143,146],[163,147],[156,148],[142,149],[157,150],[162,151],[159,152],[158,153],[139,154],[137,155],[140,156],[141,157],[152,158],[145,159],[144,160],[147,161],[148,162],[146,163],[149,164],[150,165],[138,166],[151,167],[160,168],[161,169],[171,170],[170,171],[362,33],[417,172],[419,173],[418,174],[416,175],[415,33],[298,176],[379,177],[377,178],[378,179],[366,180],[367,178],[374,181],[365,182],[370,183],[380,33],[371,184],[376,185],[382,186],[381,187],[364,188],[372,189],[373,190],[368,191],[375,177],[369,192],[357,193],[356,194],[363,33],[397,33],[345,33],[346,195],[61,33],[62,33],[12,33],[10,33],[11,33],[16,33],[15,33],[2,33],[17,33],[18,33],[19,33],[20,33],[21,33],[22,33],[23,33],[24,33],[3,33],[25,33],[26,33],[4,33],[27,33],[31,33],[28,33],[29,33],[30,33],[32,33],[33,33],[34,33],[5,33],[35,33],[36,33],[37,33],[38,33],[6,33],[42,33],[39,33],[40,33],[41,33],[43,33],[7,33],[44,33],[49,33],[50,33],[45,33],[46,33],[47,33],[48,33],[8,33],[54,33],[51,33],[52,33],[53,33],[55,33],[9,33],[56,33],[63,33],[57,33],[58,33],[60,33],[59,33],[1,33],[14,33],[13,33],[222,196],[232,197],[221,196],[242,198],[213,199],[212,200],[241,176],[235,201],[240,202],[215,203],[229,204],[214,205],[238,206],[210,207],[209,176],[239,208],[211,209],[216,210],[217,33],[220,210],[207,33],[243,211],[233,212],[224,213],[225,214],[227,215],[223,216],[226,217],[236,176],[218,218],[219,219],[228,220],[208,221],[231,212],[230,210],[234,33],[237,222],[399,223],[394,224],[395,223],[393,33],[386,225],[383,226],[361,227],[359,228],[358,33],[360,229],[384,33],[385,230],[398,231],[392,232],[400,233],[354,33],[409,234],[413,235],[402,236],[414,237],[410,238],[403,239],[404,240],[420,241],[318,242],[310,243],[311,244],[312,245],[315,246],[316,245],[317,247],[327,248],[320,249],[326,250],[321,251],[322,251],[323,252],[324,252],[325,252],[319,253],[336,254],[314,255],[330,256],[331,257],[332,258],[333,258],[334,258],[335,259],[313,253],[340,260],[338,261],[339,262],[341,263],[421,264],[200,265],[301,266],[309,267],[302,266],[303,268],[199,269],[308,270],[304,265],[306,271],[307,265],[430,272],[427,273],[426,274],[429,275],[428,274],[425,253],[188,33],[189,276],[198,277],[422,33],[187,278],[424,279],[423,280],[190,278],[192,281],[431,282],[193,278],[194,278],[432,283],[195,278],[191,278],[197,284],[196,278],[435,285],[337,286],[433,287],[299,253],[434,288],[436,289],[300,290],[437,291],[305,278],[441,292],[438,293],[439,294],[440,295],[328,278],[447,296],[446,297],[442,294],[443,293],[444,293],[445,298],[457,299],[329,300],[448,258],[449,301],[450,302],[456,303],[451,258],[453,304],[454,305],[455,258],[452,306]],"latestChangedDtsFile":"../dist/esm/workspace/index.d.ts","version":"5.8.2"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"npm.packageManager": "pnpm",
|
|
3
|
+
"[typescript, json]": {
|
|
4
|
+
"editor.formatOnPaste": false,
|
|
5
|
+
"editor.formatOnSave": true
|
|
6
|
+
},
|
|
7
|
+
"editor.formatOnSave": true,
|
|
8
|
+
"files.exclude": {
|
|
9
|
+
"**/.git": true,
|
|
10
|
+
"**/.hg": true,
|
|
11
|
+
"**/CVS": true,
|
|
12
|
+
"**/.DS_Store": true,
|
|
13
|
+
"**/*.js": {
|
|
14
|
+
"when": "$(basename).ts"
|
|
15
|
+
},
|
|
16
|
+
"**/*.d.ts": {
|
|
17
|
+
"when": "$(basename).ts"
|
|
18
|
+
},
|
|
19
|
+
"**/*.js.map": {
|
|
20
|
+
"when": "$(basename)"
|
|
21
|
+
},
|
|
22
|
+
"**/node_modules": true
|
|
23
|
+
},
|
|
24
|
+
"editor.codeActionsOnSave": {
|
|
25
|
+
"source.fixAll.biome": "explicit",
|
|
26
|
+
"source.fixAll": "explicit",
|
|
27
|
+
"source.organizeImports": "explicit",
|
|
28
|
+
"source.removeUnusedImports": "explicit"
|
|
29
|
+
},
|
|
30
|
+
"[javascript, typescript, json]": {
|
|
31
|
+
"editor.defaultFormatter": "biomejs.biome"
|
|
32
|
+
},
|
|
33
|
+
"typescript.tsdk": "node_modules/typescript/lib",
|
|
34
|
+
"editor.quickSuggestions": {
|
|
35
|
+
"strings": "on"
|
|
36
|
+
},
|
|
37
|
+
// prioritize ArkType's "type" for autoimports
|
|
38
|
+
"typescript.preferences.autoImportSpecifierExcludeRegexes": [
|
|
39
|
+
"^(node:)?os$"
|
|
40
|
+
]
|
|
41
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.0.2-beta.3](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.2...identity-sdk-v0.0.2-beta.3) (2025-04-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* testing cicd ([9ca800c](https://github.com/go-mondo/identity-node-sdk/commit/9ca800ca73f1c210b15a12bef5949030f496a0bc))
|
|
9
|
+
|
|
10
|
+
## [0.0.2-beta.2](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.1...identity-sdk-v0.0.2-beta.2) (2025-04-29)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* bump ([8a3ceb3](https://github.com/go-mondo/identity-node-sdk/commit/8a3ceb3dc8e67c7679ea8042d61fadaac8829817))
|
|
16
|
+
|
|
17
|
+
## [0.0.2-beta.1](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta...identity-sdk-v0.0.2-beta.1) (2025-04-29)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* bump ([dbb6475](https://github.com/go-mondo/identity-node-sdk/commit/dbb6475af4395dcb00c8dd70105d9600f334b51d))
|
|
23
|
+
|
|
24
|
+
## [0.0.2-beta](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.1...identity-sdk-v0.0.2-beta) (2025-04-26)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* adding esm and commonjs exports ([641be9e](https://github.com/go-mondo/identity-node-sdk/commit/641be9e2c76ca6d5e083a7a7db7762d188df4958))
|
|
30
|
+
* adding husky pre-commit ([d86d02b](https://github.com/go-mondo/identity-node-sdk/commit/d86d02b4aac607243e30a070c3dcde2a5b7251f7))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* adding please release config ([f3ef152](https://github.com/go-mondo/identity-node-sdk/commit/f3ef152a9183e724c7f1033992eb7d14d2ed61ca))
|
|
36
|
+
* aligning package path ([eb32157](https://github.com/go-mondo/identity-node-sdk/commit/eb321573270dcccb91c386138743fb7b0ebdeefa))
|
|
37
|
+
* generating dynamic ids were not dynamic ([f0c0898](https://github.com/go-mondo/identity-node-sdk/commit/f0c089860f3cb332c602cb7da8253827f6455210))
|
|
38
|
+
* package name (again) ([d8dcd2b](https://github.com/go-mondo/identity-node-sdk/commit/d8dcd2b7865c1a57be8a2bae2c5c6a2679778a1c))
|
package/biome.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/action/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./schema/schema.js"), exports);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const ActionIdSchema: import("arktype/out/methods/string.js").StringType<string, {}>;
|
|
2
|
+
export type ActionId = typeof ActionIdSchema.inferOut;
|
|
3
|
+
export declare const ActionIdPropertySchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
4
|
+
id: string;
|
|
5
|
+
}, {}>;
|
|
6
|
+
export type ActionIdProperty = typeof ActionIdPropertySchema.inferOut;
|
|
7
|
+
export declare const OperationSchema: import("arktype/out/methods/string.js").StringType<"set-password" | "user-attribute-verification" | "sign-up" | "sign-up-verification", {}>;
|
|
8
|
+
export declare const BasePayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
9
|
+
id: string;
|
|
10
|
+
attempt: number;
|
|
11
|
+
expiresAt: (In: string | Date) => import("arktype/out/attributes.js").Out<string>;
|
|
12
|
+
updatedAt: (In: string | Date) => import("arktype/out/attributes.js").Out<string>;
|
|
13
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype/out/attributes.js").Out<string | undefined>) | undefined;
|
|
14
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype/out/attributes.js").Out<string | undefined>) | undefined;
|
|
15
|
+
metadata?: ((In: {
|
|
16
|
+
[x: string]: string | number | boolean;
|
|
17
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype/out/attributes.js").Out<{
|
|
18
|
+
[x: string]: string | number | boolean;
|
|
19
|
+
} | undefined>) | undefined;
|
|
20
|
+
}, {}>;
|
|
21
|
+
//# sourceMappingURL=base.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/action/schema/base.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,cAAc,gEAAc,CAAC;AAC1C,MAAM,MAAM,QAAQ,GAAG,OAAO,cAAc,CAAC,QAAQ,CAAC;AAEtD,eAAO,MAAM,sBAAsB;;MAEjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,OAAO,sBAAsB,CAAC,QAAQ,CAAC;AAEtE,eAAO,MAAM,eAAe,6IAK3B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;MAMO,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BasePayloadSchema = exports.OperationSchema = exports.ActionIdPropertySchema = exports.ActionIdSchema = void 0;
|
|
4
|
+
const arktype_1 = require("arktype");
|
|
5
|
+
const dates_js_1 = require("../../common/schema/dates.js");
|
|
6
|
+
const metadata_js_1 = require("../../common/schema/metadata.js");
|
|
7
|
+
const schema_js_1 = require("./schema.js");
|
|
8
|
+
exports.ActionIdSchema = arktype_1.type.string;
|
|
9
|
+
exports.ActionIdPropertySchema = (0, arktype_1.type)({
|
|
10
|
+
id: exports.ActionIdSchema,
|
|
11
|
+
});
|
|
12
|
+
exports.OperationSchema = arktype_1.type.enumerated(schema_js_1.ActionOperation.SIGN_UP, schema_js_1.ActionOperation.SIGN_UP_VERIFICATION, schema_js_1.ActionOperation.SET_PASSWORD, schema_js_1.ActionOperation.USER_ATTRIBUTE_VERIFICATION);
|
|
13
|
+
exports.BasePayloadSchema = exports.ActionIdPropertySchema.and({
|
|
14
|
+
attempt: (0, arktype_1.type)('number'),
|
|
15
|
+
expiresAt: dates_js_1.RequiredDatePayloadSchema,
|
|
16
|
+
updatedAt: dates_js_1.RequiredDatePayloadSchema,
|
|
17
|
+
'deletedAt?': dates_js_1.OptionalDatePayloadSchema,
|
|
18
|
+
'deactivatedAt?': dates_js_1.OptionalDatePayloadSchema,
|
|
19
|
+
}).and(metadata_js_1.MetadataPayloadPropertySchema);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const SetPasswordActionPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
2
|
+
id: string;
|
|
3
|
+
attempt: number;
|
|
4
|
+
expiresAt: (In: string | Date) => import("arktype/out/attributes.js").Out<string>;
|
|
5
|
+
updatedAt: (In: string | Date) => import("arktype/out/attributes.js").Out<string>;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype/out/attributes.js").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype/out/attributes.js").Out<string | undefined>) | undefined;
|
|
8
|
+
metadata?: ((In: {
|
|
9
|
+
[x: string]: string | number | boolean;
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype/out/attributes.js").Out<{
|
|
11
|
+
[x: string]: string | number | boolean;
|
|
12
|
+
} | undefined>) | undefined;
|
|
13
|
+
operation: "set-password";
|
|
14
|
+
user: string;
|
|
15
|
+
identifier: "email" | "phoneNumber";
|
|
16
|
+
policy: {
|
|
17
|
+
minimumLength: import("arktype/out/attributes.js").Default<number, 8>;
|
|
18
|
+
maximumLength: import("arktype/out/attributes.js").Default<number, 36>;
|
|
19
|
+
minimumCapital: import("arktype/out/attributes.js").Default<number, 1>;
|
|
20
|
+
minimumLower: import("arktype/out/attributes.js").Default<number, 1>;
|
|
21
|
+
minimumNumber: import("arktype/out/attributes.js").Default<number, 1>;
|
|
22
|
+
minimumSpecial: import("arktype/out/attributes.js").Default<number, 1>;
|
|
23
|
+
};
|
|
24
|
+
}, {}>;
|
|
25
|
+
export type SetPasswordActionPayload = typeof SetPasswordActionPayloadSchema.inferOut;
|
|
26
|
+
export declare const SetPasswordActionRequestSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
27
|
+
code: string;
|
|
28
|
+
password: string;
|
|
29
|
+
}, {}>;
|
|
30
|
+
export type SetPasswordActionRequest = typeof SetPasswordActionRequestSchema.inferOut;
|
|
31
|
+
//# sourceMappingURL=set-password.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-password.d.ts","sourceRoot":"","sources":["../../../../../src/action/schema/operations/set-password.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;MAKf,CAAC;AAC7B,MAAM,MAAM,wBAAwB,GAClC,OAAO,8BAA8B,CAAC,QAAQ,CAAC;AAEjD,eAAO,MAAM,8BAA8B;;;MAGf,CAAC;AAC7B,MAAM,MAAM,wBAAwB,GAClC,OAAO,8BAA8B,CAAC,QAAQ,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SetPasswordActionRequestSchema = exports.SetPasswordActionPayloadSchema = void 0;
|
|
4
|
+
const arktype_1 = require("arktype");
|
|
5
|
+
const schema_js_1 = require("../../../authentication/schema/schema.js");
|
|
6
|
+
const schema_js_2 = require("../../../customer/users/schema.js");
|
|
7
|
+
const schema_js_3 = require("../../../identity/schema/schema.js");
|
|
8
|
+
const base_js_1 = require("../base.js");
|
|
9
|
+
exports.SetPasswordActionPayloadSchema = base_js_1.BasePayloadSchema.and({
|
|
10
|
+
operation: (0, arktype_1.type)("'set-password'"),
|
|
11
|
+
user: schema_js_2.UserIdSchema,
|
|
12
|
+
identifier: schema_js_3.IdentityIdentifierSchema,
|
|
13
|
+
policy: schema_js_1.PasswordPolicySchema,
|
|
14
|
+
}).onUndeclaredKey('delete');
|
|
15
|
+
exports.SetPasswordActionRequestSchema = (0, arktype_1.type)({
|
|
16
|
+
code: (0, arktype_1.type)('string'),
|
|
17
|
+
password: (0, arktype_1.type)('string'),
|
|
18
|
+
}).onUndeclaredKey('delete');
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare const SignUpVerificationActionPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
2
|
+
id: string;
|
|
3
|
+
attempt: number;
|
|
4
|
+
expiresAt: (In: string | Date) => import("arktype/out/attributes.js").Out<string>;
|
|
5
|
+
updatedAt: (In: string | Date) => import("arktype/out/attributes.js").Out<string>;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype/out/attributes.js").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype/out/attributes.js").Out<string | undefined>) | undefined;
|
|
8
|
+
metadata?: ((In: {
|
|
9
|
+
[x: string]: string | number | boolean;
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype/out/attributes.js").Out<{
|
|
11
|
+
[x: string]: string | number | boolean;
|
|
12
|
+
} | undefined>) | undefined;
|
|
13
|
+
operation: "sign-up-verification";
|
|
14
|
+
user: string;
|
|
15
|
+
identifier: "email" | "phoneNumber";
|
|
16
|
+
}, {}>;
|
|
17
|
+
export type SignUpVerificationActionPayload = typeof SignUpVerificationActionPayloadSchema.inferOut;
|
|
18
|
+
export declare const SignUpVerificationActionRequestSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
19
|
+
code: string;
|
|
20
|
+
}, {}>;
|
|
21
|
+
export type SignUpVerificationActionRequest = typeof SignUpVerificationActionRequestSchema.inferOut;
|
|
22
|
+
//# sourceMappingURL=sign-up-verification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sign-up-verification.d.ts","sourceRoot":"","sources":["../../../../../src/action/schema/operations/sign-up-verification.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;MAItB,CAAC;AAC7B,MAAM,MAAM,+BAA+B,GACzC,OAAO,qCAAqC,CAAC,QAAQ,CAAC;AAExD,eAAO,MAAM,qCAAqC;;MAEtB,CAAC;AAC7B,MAAM,MAAM,+BAA+B,GACzC,OAAO,qCAAqC,CAAC,QAAQ,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SignUpVerificationActionRequestSchema = exports.SignUpVerificationActionPayloadSchema = void 0;
|
|
4
|
+
const arktype_1 = require("arktype");
|
|
5
|
+
const schema_js_1 = require("../../../customer/users/schema.js");
|
|
6
|
+
const schema_js_2 = require("../../../identity/schema/schema.js");
|
|
7
|
+
const base_js_1 = require("../base.js");
|
|
8
|
+
exports.SignUpVerificationActionPayloadSchema = base_js_1.BasePayloadSchema.and({
|
|
9
|
+
operation: (0, arktype_1.type)("'sign-up-verification'"),
|
|
10
|
+
user: schema_js_1.UserIdSchema,
|
|
11
|
+
identifier: schema_js_2.IdentityIdentifierSchema,
|
|
12
|
+
}).onUndeclaredKey('delete');
|
|
13
|
+
exports.SignUpVerificationActionRequestSchema = (0, arktype_1.type)({
|
|
14
|
+
code: (0, arktype_1.type)('string'),
|
|
15
|
+
}).onUndeclaredKey('delete');
|