@go-mondo/identity-sdk 0.0.2-beta.6 → 0.0.2-beta.8
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/.release-please-manifest.json +1 -1
- package/.tsbuildinfo/cjs.json +1 -1
- package/.tsbuildinfo/esm.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/cjs/action/schema/base.d.ts +5 -5
- package/dist/cjs/action/schema/operations/set-password.d.ts +11 -11
- package/dist/cjs/action/schema/operations/sign-up-verification.d.ts +5 -5
- package/dist/cjs/action/schema/operations/sign-up.d.ts +7 -7
- package/dist/cjs/action/schema/operations/user-attribute-verification.d.ts +5 -5
- package/dist/cjs/action/schema/schema.d.ts +26 -26
- package/dist/cjs/activity/index.d.ts +1 -0
- package/dist/cjs/activity/index.d.ts.map +1 -1
- package/dist/cjs/activity/index.js +1 -0
- package/dist/cjs/activity/resources.d.ts +13 -0
- package/dist/cjs/activity/resources.d.ts.map +1 -0
- package/dist/cjs/activity/resources.js +29 -0
- package/dist/cjs/activity/schema/base.d.ts +23 -7
- package/dist/cjs/activity/schema/base.d.ts.map +1 -1
- package/dist/cjs/activity/schema/base.js +12 -2
- package/dist/cjs/activity/schema/schema.d.ts +123 -29
- package/dist/cjs/activity/schema/schema.d.ts.map +1 -1
- package/dist/cjs/activity/schema/schema.js +5 -2
- package/dist/cjs/activity/schema/types/authentication.d.ts +28 -5
- package/dist/cjs/activity/schema/types/authentication.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/authentication.js +5 -2
- package/dist/cjs/activity/schema/types/authorization.d.ts +28 -5
- package/dist/cjs/activity/schema/types/authorization.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/authorization.js +6 -4
- package/dist/cjs/activity/schema/types/note.d.ts +27 -7
- package/dist/cjs/activity/schema/types/note.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/note.js +4 -2
- package/dist/cjs/activity/schema/types/operation.d.ts +27 -5
- package/dist/cjs/activity/schema/types/operation.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/operation.js +4 -2
- package/dist/cjs/activity/schema/types/unknown.d.ts +25 -5
- package/dist/cjs/activity/schema/types/unknown.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/unknown.js +4 -2
- package/dist/cjs/app/authorization/resources.d.ts +12 -0
- package/dist/cjs/app/authorization/resources.d.ts.map +1 -0
- package/dist/cjs/app/authorization/resources.js +35 -0
- package/dist/cjs/app/authorization/schema.d.ts +28 -11
- package/dist/cjs/app/authorization/schema.d.ts.map +1 -1
- package/dist/cjs/app/authorization/schema.js +30 -14
- package/dist/cjs/app/index.d.ts +6 -0
- package/dist/cjs/app/index.d.ts.map +1 -1
- package/dist/cjs/app/index.js +6 -0
- package/dist/cjs/app/oauth/resources.d.ts +12 -0
- package/dist/cjs/app/oauth/resources.d.ts.map +1 -0
- package/dist/cjs/app/oauth/resources.js +35 -0
- package/dist/cjs/app/oauth/schema.d.ts +17 -5
- package/dist/cjs/app/oauth/schema.d.ts.map +1 -1
- package/dist/cjs/app/oauth/schema.js +9 -2
- package/dist/cjs/app/oidc/resources.d.ts +16 -0
- package/dist/cjs/app/oidc/resources.d.ts.map +1 -0
- package/dist/cjs/app/oidc/resources.js +49 -0
- package/dist/cjs/app/oidc/schema.d.ts +18 -8
- package/dist/cjs/app/oidc/schema.d.ts.map +1 -1
- package/dist/cjs/app/oidc/schema.js +7 -2
- package/dist/cjs/app/registration/resources.d.ts +12 -0
- package/dist/cjs/app/registration/resources.d.ts.map +1 -0
- package/dist/cjs/app/registration/resources.js +35 -0
- package/dist/cjs/app/registration/schema.d.ts +15 -5
- package/dist/cjs/app/registration/schema.d.ts.map +1 -1
- package/dist/cjs/app/registration/schema.js +9 -2
- package/dist/cjs/app/resources.d.ts +21 -0
- package/dist/cjs/app/resources.d.ts.map +1 -0
- package/dist/cjs/app/resources.js +57 -0
- package/dist/cjs/app/saml/resources.d.ts +16 -0
- package/dist/cjs/app/saml/resources.d.ts.map +1 -0
- package/dist/cjs/app/saml/resources.js +49 -0
- package/dist/cjs/app/saml/schema.d.ts +18 -8
- package/dist/cjs/app/saml/schema.d.ts.map +1 -1
- package/dist/cjs/app/saml/schema.js +7 -2
- package/dist/cjs/app/schema.d.ts +24 -9
- package/dist/cjs/app/schema.d.ts.map +1 -1
- package/dist/cjs/app/schema.js +11 -3
- package/dist/cjs/association/index.d.ts +1 -0
- package/dist/cjs/association/index.d.ts.map +1 -1
- package/dist/cjs/association/index.js +1 -0
- package/dist/cjs/association/resources.d.ts +23 -0
- package/dist/cjs/association/resources.d.ts.map +1 -0
- package/dist/cjs/association/resources.js +51 -0
- package/dist/cjs/association/schema.d.ts +138 -19
- package/dist/cjs/association/schema.d.ts.map +1 -1
- package/dist/cjs/association/schema.js +30 -3
- package/dist/cjs/authentication/factors/schema.d.ts +11 -2
- package/dist/cjs/authentication/factors/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/factors/schema.js +5 -1
- package/dist/cjs/authentication/index.d.ts +3 -0
- package/dist/cjs/authentication/index.d.ts.map +1 -1
- package/dist/cjs/authentication/index.js +3 -0
- package/dist/cjs/authentication/providers/schema.d.ts +4 -4
- package/dist/cjs/authentication/resources.d.ts +2 -0
- package/dist/cjs/authentication/resources.d.ts.map +1 -0
- package/dist/cjs/authentication/resources.js +4 -0
- package/dist/cjs/authentication/sessions/resources.d.ts +21 -0
- package/dist/cjs/authentication/sessions/resources.d.ts.map +1 -0
- package/dist/cjs/authentication/sessions/resources.js +43 -0
- package/dist/cjs/authentication/sessions/schema.d.ts +35 -13
- package/dist/cjs/authentication/sessions/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/sessions/schema.js +15 -6
- package/dist/cjs/authentication/settings/resources.d.ts +12 -0
- package/dist/cjs/authentication/settings/resources.d.ts.map +1 -0
- package/dist/cjs/authentication/settings/resources.js +32 -0
- package/dist/cjs/authentication/settings/schema.d.ts +30 -7
- package/dist/cjs/authentication/settings/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/settings/schema.js +8 -1
- package/dist/cjs/authentication/strategies/resources.d.ts +20 -0
- package/dist/cjs/authentication/strategies/resources.d.ts.map +1 -0
- package/dist/cjs/authentication/strategies/resources.js +58 -0
- package/dist/cjs/authentication/strategies/schema/base.d.ts +17 -7
- package/dist/cjs/authentication/strategies/schema/base.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/base.js +10 -2
- package/dist/cjs/authentication/strategies/schema/schema.d.ts +102 -53
- package/dist/cjs/authentication/strategies/schema/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/schema.js +2 -1
- package/dist/cjs/authentication/strategies/schema/types/email.d.ts +27 -9
- package/dist/cjs/authentication/strategies/schema/types/email.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/types/email.js +4 -3
- package/dist/cjs/authentication/strategies/schema/types/password.d.ts +76 -43
- package/dist/cjs/authentication/strategies/schema/types/password.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/types/password.js +26 -9
- package/dist/cjs/authentication/strategies/schema/types/totp.d.ts +33 -13
- package/dist/cjs/authentication/strategies/schema/types/totp.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/types/totp.js +12 -3
- package/dist/cjs/authorization/permissions/resources.d.ts +2 -2
- package/dist/cjs/authorization/permissions/resources.d.ts.map +1 -1
- package/dist/cjs/authorization/permissions/resources.js +1 -1
- package/dist/cjs/authorization/permissions/schema.d.ts +9 -9
- package/dist/cjs/authorization/permissions/schema.d.ts.map +1 -1
- package/dist/cjs/authorization/permissions/schema.js +3 -1
- package/dist/cjs/authorization/roles/resources.d.ts +2 -2
- package/dist/cjs/authorization/roles/resources.d.ts.map +1 -1
- package/dist/cjs/authorization/roles/resources.js +1 -1
- package/dist/cjs/authorization/roles/schema.d.ts +9 -9
- package/dist/cjs/authorization/roles/schema.d.ts.map +1 -1
- package/dist/cjs/authorization/roles/schema.js +3 -1
- package/dist/cjs/common/index.d.ts +1 -0
- package/dist/cjs/common/index.d.ts.map +1 -1
- package/dist/cjs/common/index.js +6 -0
- package/dist/cjs/common/schema/dates.d.ts +7 -7
- package/dist/cjs/common/schema/dates.d.ts.map +1 -1
- package/dist/cjs/common/schema/metadata.d.ts +8 -6
- package/dist/cjs/common/schema/metadata.d.ts.map +1 -1
- package/dist/cjs/common/schema/schema.d.ts +2 -1
- package/dist/cjs/common/schema/schema.d.ts.map +1 -1
- package/dist/cjs/common/schema/schema.js +2 -1
- package/dist/cjs/common/schema/schema.test.d.ts +2 -0
- package/dist/cjs/common/schema/schema.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/schema.test.js +35 -0
- package/dist/cjs/common/schema/sets.d.ts +2 -2
- package/dist/cjs/common/schema/sets.d.ts.map +1 -1
- package/dist/cjs/common/schema/url.d.ts +2 -0
- package/dist/cjs/common/schema/url.d.ts.map +1 -0
- package/dist/cjs/common/schema/url.js +12 -0
- package/dist/cjs/customer/index.d.ts +1 -0
- package/dist/cjs/customer/index.d.ts.map +1 -1
- package/dist/cjs/customer/index.js +1 -0
- package/dist/cjs/customer/schema/organization.d.ts +7 -7
- package/dist/cjs/customer/users/resources.d.ts +2 -2
- package/dist/cjs/customer/users/resources.d.ts.map +1 -1
- package/dist/cjs/customer/users/resources.js +2 -2
- package/dist/cjs/customer/users/schema.d.ts +11 -12
- package/dist/cjs/customer/users/schema.d.ts.map +1 -1
- package/dist/cjs/customer/users/schema.js +2 -4
- package/dist/cjs/customer/users/schema.test.js +2 -0
- package/dist/cjs/customer/users/utils.d.ts +10 -0
- package/dist/cjs/customer/users/utils.d.ts.map +1 -0
- package/dist/cjs/customer/users/utils.js +33 -0
- package/dist/cjs/oauth/common/schema.d.ts +6 -0
- package/dist/cjs/oauth/common/schema.d.ts.map +1 -1
- package/dist/cjs/oauth/common/schema.js +7 -1
- package/dist/cjs/oauth/index.d.ts +1 -1
- package/dist/cjs/oauth/index.d.ts.map +1 -1
- package/dist/cjs/oauth/index.js +2 -1
- package/dist/cjs/workspace/authorization/schema.d.ts +5 -5
- package/dist/cjs/workspace/branding/schema.d.ts +5 -5
- package/dist/cjs/workspace/membership/schema.d.ts +5 -5
- package/dist/cjs/workspace/registration/schema.d.ts +5 -5
- package/dist/cjs/workspace/settings/schema.d.ts +5 -5
- package/dist/cjs/workspace/tenant/schema.d.ts +10 -10
- package/dist/cjs/workspace/user/notifications/schema.d.ts +7 -7
- package/dist/cjs/workspace/user/preferences/schema.d.ts +5 -5
- package/dist/esm/action/schema/base.d.ts +5 -5
- package/dist/esm/action/schema/operations/set-password.d.ts +11 -11
- package/dist/esm/action/schema/operations/sign-up-verification.d.ts +5 -5
- package/dist/esm/action/schema/operations/sign-up.d.ts +7 -7
- package/dist/esm/action/schema/operations/user-attribute-verification.d.ts +5 -5
- package/dist/esm/action/schema/schema.d.ts +26 -26
- package/dist/esm/activity/index.d.ts +1 -0
- package/dist/esm/activity/index.d.ts.map +1 -1
- package/dist/esm/activity/index.js +1 -0
- package/dist/esm/activity/resources.d.ts +13 -0
- package/dist/esm/activity/resources.d.ts.map +1 -0
- package/dist/esm/activity/resources.js +24 -0
- package/dist/esm/activity/schema/base.d.ts +23 -7
- package/dist/esm/activity/schema/base.d.ts.map +1 -1
- package/dist/esm/activity/schema/base.js +13 -3
- package/dist/esm/activity/schema/schema.d.ts +123 -29
- package/dist/esm/activity/schema/schema.d.ts.map +1 -1
- package/dist/esm/activity/schema/schema.js +9 -6
- package/dist/esm/activity/schema/types/authentication.d.ts +28 -5
- package/dist/esm/activity/schema/types/authentication.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/authentication.js +5 -2
- package/dist/esm/activity/schema/types/authorization.d.ts +28 -5
- package/dist/esm/activity/schema/types/authorization.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/authorization.js +6 -4
- package/dist/esm/activity/schema/types/note.d.ts +27 -7
- package/dist/esm/activity/schema/types/note.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/note.js +4 -2
- package/dist/esm/activity/schema/types/operation.d.ts +27 -5
- package/dist/esm/activity/schema/types/operation.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/operation.js +4 -2
- package/dist/esm/activity/schema/types/unknown.d.ts +25 -5
- package/dist/esm/activity/schema/types/unknown.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/unknown.js +4 -2
- package/dist/esm/app/authorization/resources.d.ts +12 -0
- package/dist/esm/app/authorization/resources.d.ts.map +1 -0
- package/dist/esm/app/authorization/resources.js +29 -0
- package/dist/esm/app/authorization/schema.d.ts +28 -11
- package/dist/esm/app/authorization/schema.d.ts.map +1 -1
- package/dist/esm/app/authorization/schema.js +31 -15
- package/dist/esm/app/index.d.ts +6 -0
- package/dist/esm/app/index.d.ts.map +1 -1
- package/dist/esm/app/index.js +6 -0
- package/dist/esm/app/oauth/resources.d.ts +12 -0
- package/dist/esm/app/oauth/resources.d.ts.map +1 -0
- package/dist/esm/app/oauth/resources.js +29 -0
- package/dist/esm/app/oauth/schema.d.ts +17 -5
- package/dist/esm/app/oauth/schema.d.ts.map +1 -1
- package/dist/esm/app/oauth/schema.js +10 -3
- package/dist/esm/app/oidc/resources.d.ts +16 -0
- package/dist/esm/app/oidc/resources.d.ts.map +1 -0
- package/dist/esm/app/oidc/resources.js +41 -0
- package/dist/esm/app/oidc/schema.d.ts +18 -8
- package/dist/esm/app/oidc/schema.d.ts.map +1 -1
- package/dist/esm/app/oidc/schema.js +8 -3
- package/dist/esm/app/registration/resources.d.ts +12 -0
- package/dist/esm/app/registration/resources.d.ts.map +1 -0
- package/dist/esm/app/registration/resources.js +29 -0
- package/dist/esm/app/registration/schema.d.ts +15 -5
- package/dist/esm/app/registration/schema.d.ts.map +1 -1
- package/dist/esm/app/registration/schema.js +10 -3
- package/dist/esm/app/resources.d.ts +21 -0
- package/dist/esm/app/resources.d.ts.map +1 -0
- package/dist/esm/app/resources.js +48 -0
- package/dist/esm/app/saml/resources.d.ts +16 -0
- package/dist/esm/app/saml/resources.d.ts.map +1 -0
- package/dist/esm/app/saml/resources.js +41 -0
- package/dist/esm/app/saml/schema.d.ts +18 -8
- package/dist/esm/app/saml/schema.d.ts.map +1 -1
- package/dist/esm/app/saml/schema.js +8 -3
- package/dist/esm/app/schema.d.ts +24 -9
- package/dist/esm/app/schema.d.ts.map +1 -1
- package/dist/esm/app/schema.js +12 -4
- package/dist/esm/association/index.d.ts +1 -0
- package/dist/esm/association/index.d.ts.map +1 -1
- package/dist/esm/association/index.js +1 -0
- package/dist/esm/association/resources.d.ts +23 -0
- package/dist/esm/association/resources.d.ts.map +1 -0
- package/dist/esm/association/resources.js +44 -0
- package/dist/esm/association/schema.d.ts +138 -19
- package/dist/esm/association/schema.d.ts.map +1 -1
- package/dist/esm/association/schema.js +30 -3
- package/dist/esm/authentication/factors/schema.d.ts +11 -2
- package/dist/esm/authentication/factors/schema.d.ts.map +1 -1
- package/dist/esm/authentication/factors/schema.js +4 -0
- package/dist/esm/authentication/index.d.ts +3 -0
- package/dist/esm/authentication/index.d.ts.map +1 -1
- package/dist/esm/authentication/index.js +3 -0
- package/dist/esm/authentication/providers/schema.d.ts +4 -4
- package/dist/esm/authentication/resources.d.ts +2 -0
- package/dist/esm/authentication/resources.d.ts.map +1 -0
- package/dist/esm/authentication/resources.js +1 -0
- package/dist/esm/authentication/sessions/resources.d.ts +21 -0
- package/dist/esm/authentication/sessions/resources.d.ts.map +1 -0
- package/dist/esm/authentication/sessions/resources.js +37 -0
- package/dist/esm/authentication/sessions/schema.d.ts +35 -13
- package/dist/esm/authentication/sessions/schema.d.ts.map +1 -1
- package/dist/esm/authentication/sessions/schema.js +16 -7
- package/dist/esm/authentication/settings/resources.d.ts +12 -0
- package/dist/esm/authentication/settings/resources.d.ts.map +1 -0
- package/dist/esm/authentication/settings/resources.js +26 -0
- package/dist/esm/authentication/settings/schema.d.ts +30 -7
- package/dist/esm/authentication/settings/schema.d.ts.map +1 -1
- package/dist/esm/authentication/settings/schema.js +9 -2
- package/dist/esm/authentication/strategies/resources.d.ts +20 -0
- package/dist/esm/authentication/strategies/resources.d.ts.map +1 -0
- package/dist/esm/authentication/strategies/resources.js +49 -0
- package/dist/esm/authentication/strategies/schema/base.d.ts +17 -7
- package/dist/esm/authentication/strategies/schema/base.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/base.js +11 -3
- package/dist/esm/authentication/strategies/schema/schema.d.ts +102 -53
- package/dist/esm/authentication/strategies/schema/schema.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/schema.js +4 -3
- package/dist/esm/authentication/strategies/schema/types/email.d.ts +27 -9
- package/dist/esm/authentication/strategies/schema/types/email.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/types/email.js +4 -3
- package/dist/esm/authentication/strategies/schema/types/password.d.ts +76 -43
- package/dist/esm/authentication/strategies/schema/types/password.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/types/password.js +26 -9
- package/dist/esm/authentication/strategies/schema/types/totp.d.ts +33 -13
- package/dist/esm/authentication/strategies/schema/types/totp.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/types/totp.js +12 -3
- package/dist/esm/authorization/permissions/resources.d.ts +2 -2
- package/dist/esm/authorization/permissions/resources.d.ts.map +1 -1
- package/dist/esm/authorization/permissions/resources.js +1 -1
- package/dist/esm/authorization/permissions/schema.d.ts +9 -9
- package/dist/esm/authorization/permissions/schema.d.ts.map +1 -1
- package/dist/esm/authorization/permissions/schema.js +3 -1
- package/dist/esm/authorization/roles/resources.d.ts +2 -2
- package/dist/esm/authorization/roles/resources.d.ts.map +1 -1
- package/dist/esm/authorization/roles/resources.js +1 -1
- package/dist/esm/authorization/roles/schema.d.ts +9 -9
- package/dist/esm/authorization/roles/schema.d.ts.map +1 -1
- package/dist/esm/authorization/roles/schema.js +3 -1
- package/dist/esm/common/index.d.ts +1 -0
- package/dist/esm/common/index.d.ts.map +1 -1
- package/dist/esm/common/index.js +1 -0
- package/dist/esm/common/schema/dates.d.ts +7 -7
- package/dist/esm/common/schema/dates.d.ts.map +1 -1
- package/dist/esm/common/schema/metadata.d.ts +8 -6
- package/dist/esm/common/schema/metadata.d.ts.map +1 -1
- package/dist/esm/common/schema/schema.d.ts +2 -1
- package/dist/esm/common/schema/schema.d.ts.map +1 -1
- package/dist/esm/common/schema/schema.js +2 -1
- package/dist/esm/common/schema/schema.test.d.ts +2 -0
- package/dist/esm/common/schema/schema.test.d.ts.map +1 -0
- package/dist/esm/common/schema/schema.test.js +33 -0
- package/dist/esm/common/schema/sets.d.ts +2 -2
- package/dist/esm/common/schema/sets.d.ts.map +1 -1
- package/dist/esm/common/schema/url.d.ts +2 -0
- package/dist/esm/common/schema/url.d.ts.map +1 -0
- package/dist/esm/common/schema/url.js +9 -0
- package/dist/esm/customer/index.d.ts +1 -0
- package/dist/esm/customer/index.d.ts.map +1 -1
- package/dist/esm/customer/index.js +1 -0
- package/dist/esm/customer/schema/organization.d.ts +7 -7
- package/dist/esm/customer/users/resources.d.ts +2 -2
- package/dist/esm/customer/users/resources.d.ts.map +1 -1
- package/dist/esm/customer/users/resources.js +3 -3
- package/dist/esm/customer/users/schema.d.ts +11 -12
- package/dist/esm/customer/users/schema.d.ts.map +1 -1
- package/dist/esm/customer/users/schema.js +2 -4
- package/dist/esm/customer/users/schema.test.js +2 -0
- package/dist/esm/customer/users/utils.d.ts +10 -0
- package/dist/esm/customer/users/utils.d.ts.map +1 -0
- package/dist/esm/customer/users/utils.js +27 -0
- package/dist/esm/oauth/common/schema.d.ts +6 -0
- package/dist/esm/oauth/common/schema.d.ts.map +1 -1
- package/dist/esm/oauth/common/schema.js +6 -0
- package/dist/esm/oauth/index.d.ts +1 -1
- package/dist/esm/oauth/index.d.ts.map +1 -1
- package/dist/esm/oauth/index.js +1 -1
- package/dist/esm/workspace/authorization/schema.d.ts +5 -5
- package/dist/esm/workspace/branding/schema.d.ts +5 -5
- package/dist/esm/workspace/membership/schema.d.ts +5 -5
- package/dist/esm/workspace/registration/schema.d.ts +5 -5
- package/dist/esm/workspace/settings/schema.d.ts +5 -5
- package/dist/esm/workspace/tenant/schema.d.ts +10 -10
- package/dist/esm/workspace/user/notifications/schema.d.ts +7 -7
- package/dist/esm/workspace/user/preferences/schema.d.ts +5 -5
- package/package.json +6 -6
|
@@ -5,6 +5,12 @@ export declare const GrantType: {
|
|
|
5
5
|
readonly REFRESH_TOKEN: "refresh_token";
|
|
6
6
|
};
|
|
7
7
|
export type AnyGrantType = (typeof GrantType)[keyof typeof GrantType];
|
|
8
|
+
export declare const GrantTypeLabel: {
|
|
9
|
+
readonly client_credentials: "Client Credentials";
|
|
10
|
+
readonly authorization_code: "Authorization Code";
|
|
11
|
+
readonly implicit: "Implicit";
|
|
12
|
+
readonly refresh_token: "Refresh Token";
|
|
13
|
+
};
|
|
8
14
|
export declare const ResponseType: {
|
|
9
15
|
readonly ID_TOKEN: "id_token";
|
|
10
16
|
readonly TOKEN: "token";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/oauth/common/schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;CAKZ,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEtE,eAAO,MAAM,YAAY;;;;CAIf,CAAC;AACX,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAG/E,eAAO,MAAM,mBAAmB;;;;CAItB,CAAC;AACX,MAAM,MAAM,sBAAsB,GAChC,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AACjE,eAAO,MAAM,yBAAyB,uEAGrC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;CAKvB,CAAC;AACX,MAAM,MAAM,uBAAuB,GACjC,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC;AACnE,eAAO,MAAM,0BAA0B,yFAKtC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;CAKtB,CAAC;AACX,MAAM,MAAM,sBAAsB,GAChC,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AACjE,eAAO,MAAM,yBAAyB,sGAKrC,CAAC;AAEF,eAAO,MAAM,cAAc;;MAEzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AACX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEtE,eAAO,MAAM,UAAU;;CAEb,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC;AAEzE,eAAO,MAAM,KAAK;;;;;;;CAGjB,CAAC;AACF,MAAM,MAAM,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,MAAM,CAAC;AAC7D,eAAO,MAAM,WAAW,6DAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/oauth/common/schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;CAKZ,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEtE,eAAO,MAAM,cAAc;;;;;CAKjB,CAAC;AAEX,eAAO,MAAM,YAAY;;;;CAIf,CAAC;AACX,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAG/E,eAAO,MAAM,mBAAmB;;;;CAItB,CAAC;AACX,MAAM,MAAM,sBAAsB,GAChC,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AACjE,eAAO,MAAM,yBAAyB,uEAGrC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;CAKvB,CAAC;AACX,MAAM,MAAM,uBAAuB,GACjC,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC;AACnE,eAAO,MAAM,0BAA0B,yFAKtC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;CAKtB,CAAC;AACX,MAAM,MAAM,sBAAsB,GAChC,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AACjE,eAAO,MAAM,yBAAyB,sGAKrC,CAAC;AAEF,eAAO,MAAM,cAAc;;MAEzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AACX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEtE,eAAO,MAAM,UAAU;;CAEb,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC;AAEzE,eAAO,MAAM,KAAK;;;;;;;CAGjB,CAAC;AACF,MAAM,MAAM,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,MAAM,CAAC;AAC7D,eAAO,MAAM,WAAW,6DAAiB,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ScopeSchema = exports.Scope = exports.OAuthScope = exports.OIDCScope = exports.OptionalSchema = exports.AuthorizationPromptSchema = exports.AuthorizationPrompt = exports.AuthorizationDisplaySchema = exports.AuthorizationDisplay = exports.CodeChallengeMethodSchema = exports.CodeChallengeMethod = exports.ResponseType = exports.GrantType = void 0;
|
|
3
|
+
exports.ScopeSchema = exports.Scope = exports.OAuthScope = exports.OIDCScope = exports.OptionalSchema = exports.AuthorizationPromptSchema = exports.AuthorizationPrompt = exports.AuthorizationDisplaySchema = exports.AuthorizationDisplay = exports.CodeChallengeMethodSchema = exports.CodeChallengeMethod = exports.ResponseType = exports.GrantTypeLabel = exports.GrantType = void 0;
|
|
4
4
|
const arktype_1 = require("arktype");
|
|
5
5
|
exports.GrantType = {
|
|
6
6
|
CLIENT_CREDENTIALS: 'client_credentials',
|
|
@@ -8,6 +8,12 @@ exports.GrantType = {
|
|
|
8
8
|
IMPLICIT: 'implicit',
|
|
9
9
|
REFRESH_TOKEN: 'refresh_token',
|
|
10
10
|
};
|
|
11
|
+
exports.GrantTypeLabel = {
|
|
12
|
+
[exports.GrantType.CLIENT_CREDENTIALS]: 'Client Credentials',
|
|
13
|
+
[exports.GrantType.AUTHORIZATION_CODE]: 'Authorization Code',
|
|
14
|
+
[exports.GrantType.IMPLICIT]: 'Implicit',
|
|
15
|
+
[exports.GrantType.REFRESH_TOKEN]: 'Refresh Token',
|
|
16
|
+
};
|
|
11
17
|
exports.ResponseType = {
|
|
12
18
|
ID_TOKEN: 'id_token',
|
|
13
19
|
TOKEN: 'token',
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AuthorizationDisplay, AuthorizationDisplaySchema, AuthorizationPrompt, AuthorizationPromptSchema, CodeChallengeMethod, CodeChallengeMethodSchema, GrantType, OAuthScope, OIDCScope, ResponseType, type AnyAuthorizationDisplay, type AnyAuthorizationPrompt, type AnyCodeChallengeMethod, type AnyGrantType, type AnyOAuthScope, type AnyOIDCScope, type AnyResponseType, type AnyScope, } from './common/schema.js';
|
|
1
|
+
export { AuthorizationDisplay, AuthorizationDisplaySchema, AuthorizationPrompt, AuthorizationPromptSchema, CodeChallengeMethod, CodeChallengeMethodSchema, GrantType, GrantTypeLabel, OAuthScope, OIDCScope, ResponseType, type AnyAuthorizationDisplay, type AnyAuthorizationPrompt, type AnyCodeChallengeMethod, type AnyGrantType, type AnyOAuthScope, type AnyOIDCScope, type AnyResponseType, type AnyScope, } from './common/schema.js';
|
|
2
2
|
export * as Authorize from './authorize/index.js';
|
|
3
3
|
export * as Token from './token/index.js';
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/oauth/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,0BAA0B,EAC1B,mBAAmB,EACnB,yBAAyB,EACzB,mBAAmB,EACnB,yBAAyB,EACzB,SAAS,EACT,UAAU,EACV,SAAS,EACT,YAAY,EACZ,KAAK,uBAAuB,EAC5B,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,EAC3B,KAAK,YAAY,EACjB,KAAK,aAAa,EAClB,KAAK,YAAY,EACjB,KAAK,eAAe,EACpB,KAAK,QAAQ,GACd,MAAM,oBAAoB,CAAC;AAE5B,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/oauth/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,0BAA0B,EAC1B,mBAAmB,EACnB,yBAAyB,EACzB,mBAAmB,EACnB,yBAAyB,EACzB,SAAS,EACT,cAAc,EACd,UAAU,EACV,SAAS,EACT,YAAY,EACZ,KAAK,uBAAuB,EAC5B,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,EAC3B,KAAK,YAAY,EACjB,KAAK,aAAa,EAClB,KAAK,YAAY,EACjB,KAAK,eAAe,EACpB,KAAK,QAAQ,GACd,MAAM,oBAAoB,CAAC;AAE5B,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAC"}
|
package/dist/cjs/oauth/index.js
CHANGED
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.Token = exports.Authorize = exports.ResponseType = exports.OIDCScope = exports.OAuthScope = exports.GrantType = exports.CodeChallengeMethodSchema = exports.CodeChallengeMethod = exports.AuthorizationPromptSchema = exports.AuthorizationPrompt = exports.AuthorizationDisplaySchema = exports.AuthorizationDisplay = void 0;
|
|
36
|
+
exports.Token = exports.Authorize = exports.ResponseType = exports.OIDCScope = exports.OAuthScope = exports.GrantTypeLabel = exports.GrantType = exports.CodeChallengeMethodSchema = exports.CodeChallengeMethod = exports.AuthorizationPromptSchema = exports.AuthorizationPrompt = exports.AuthorizationDisplaySchema = exports.AuthorizationDisplay = void 0;
|
|
37
37
|
var schema_js_1 = require("./common/schema.js");
|
|
38
38
|
Object.defineProperty(exports, "AuthorizationDisplay", { enumerable: true, get: function () { return schema_js_1.AuthorizationDisplay; } });
|
|
39
39
|
Object.defineProperty(exports, "AuthorizationDisplaySchema", { enumerable: true, get: function () { return schema_js_1.AuthorizationDisplaySchema; } });
|
|
@@ -42,6 +42,7 @@ Object.defineProperty(exports, "AuthorizationPromptSchema", { enumerable: true,
|
|
|
42
42
|
Object.defineProperty(exports, "CodeChallengeMethod", { enumerable: true, get: function () { return schema_js_1.CodeChallengeMethod; } });
|
|
43
43
|
Object.defineProperty(exports, "CodeChallengeMethodSchema", { enumerable: true, get: function () { return schema_js_1.CodeChallengeMethodSchema; } });
|
|
44
44
|
Object.defineProperty(exports, "GrantType", { enumerable: true, get: function () { return schema_js_1.GrantType; } });
|
|
45
|
+
Object.defineProperty(exports, "GrantTypeLabel", { enumerable: true, get: function () { return schema_js_1.GrantTypeLabel; } });
|
|
45
46
|
Object.defineProperty(exports, "OAuthScope", { enumerable: true, get: function () { return schema_js_1.OAuthScope; } });
|
|
46
47
|
Object.defineProperty(exports, "OIDCScope", { enumerable: true, get: function () { return schema_js_1.OIDCScope; } });
|
|
47
48
|
Object.defineProperty(exports, "ResponseType", { enumerable: true, get: function () { return schema_js_1.ResponseType; } });
|
|
@@ -6,12 +6,12 @@ export declare const AuthorizationPayloadSchema: import("arktype/out/methods/obj
|
|
|
6
6
|
refreshTokenDuration: import("arktype/out/attributes.js").Default<number, number>;
|
|
7
7
|
accessTokenDuration: import("arktype/out/attributes.js").Default<number, number>;
|
|
8
8
|
accessTokenSignatureAlgorithm: import("arktype/out/attributes.js").Default<string, string>;
|
|
9
|
-
updatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
10
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
11
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
9
|
+
updatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
10
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
11
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
12
12
|
metadata?: ((In: {
|
|
13
13
|
[x: string]: string | number | boolean;
|
|
14
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
14
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
15
15
|
[x: string]: string | number | boolean;
|
|
16
16
|
} | undefined>) | undefined;
|
|
17
17
|
}, {}>;
|
|
@@ -23,7 +23,7 @@ export declare const UpsertAuthorizationPayloadSchema: import("arktype/out/metho
|
|
|
23
23
|
accessTokenSignatureAlgorithm: import("arktype/out/attributes.js").Default<string, string>;
|
|
24
24
|
metadata?: ((In: {
|
|
25
25
|
[x: string]: string | number | boolean;
|
|
26
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
26
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
27
27
|
[x: string]: string | number | boolean;
|
|
28
28
|
} | undefined>) | undefined;
|
|
29
29
|
}, {}>;
|
|
@@ -8,12 +8,12 @@ export declare const BrandingPayloadSchema: import("arktype/out/methods/object.j
|
|
|
8
8
|
link?: string | undefined;
|
|
9
9
|
linkHover?: string | undefined;
|
|
10
10
|
} | undefined;
|
|
11
|
-
updatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
12
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
13
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
11
|
+
updatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
12
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
13
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
14
14
|
metadata?: ((In: {
|
|
15
15
|
[x: string]: string | number | boolean;
|
|
16
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
16
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
17
17
|
[x: string]: string | number | boolean;
|
|
18
18
|
} | undefined>) | undefined;
|
|
19
19
|
}, {}>;
|
|
@@ -30,7 +30,7 @@ export declare const UpsertBrandingPayloadSchema: import("arktype/out/methods/ob
|
|
|
30
30
|
} | undefined;
|
|
31
31
|
metadata?: ((In: {
|
|
32
32
|
[x: string]: string | number | boolean;
|
|
33
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
33
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
34
34
|
[x: string]: string | number | boolean;
|
|
35
35
|
} | undefined>) | undefined;
|
|
36
36
|
}, {}>;
|
|
@@ -3,23 +3,23 @@ export declare const FeatureFlag: {
|
|
|
3
3
|
};
|
|
4
4
|
export type AnyFeatureFlag = (typeof FeatureFlag)[keyof typeof FeatureFlag];
|
|
5
5
|
export declare const FeaturePayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
6
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
6
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
7
7
|
}, {}>;
|
|
8
8
|
export type FeaturePayload = typeof FeaturePayloadSchema.inferOut;
|
|
9
9
|
export declare const FeaturesPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
10
10
|
"Branding.Remove"?: {
|
|
11
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
11
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
12
12
|
} | undefined;
|
|
13
13
|
}, {}>;
|
|
14
14
|
export type FeaturesPayload = typeof FeaturesPayloadSchema.inferOut;
|
|
15
15
|
export declare const MembershipPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
16
16
|
features?: {
|
|
17
17
|
"Branding.Remove"?: {
|
|
18
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
18
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
19
19
|
} | undefined;
|
|
20
20
|
} | undefined;
|
|
21
|
-
startAt?: ((In: string | Date | undefined) => import("arktype
|
|
22
|
-
endAt?: ((In: string | Date | undefined) => import("arktype
|
|
21
|
+
startAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
22
|
+
endAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
23
23
|
}, {}>;
|
|
24
24
|
export type MembershipPayload = typeof MembershipPayloadSchema.inferOut;
|
|
25
25
|
//# sourceMappingURL=schema.d.ts.map
|
|
@@ -3,12 +3,12 @@ export declare const RegistrationPayloadSchema: import("arktype/out/methods/obje
|
|
|
3
3
|
identifiers: {
|
|
4
4
|
type: "email" | "phoneNumber";
|
|
5
5
|
}[];
|
|
6
|
-
updatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
8
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
6
|
+
updatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
9
9
|
metadata?: ((In: {
|
|
10
10
|
[x: string]: string | number | boolean;
|
|
11
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
11
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
12
12
|
[x: string]: string | number | boolean;
|
|
13
13
|
} | undefined>) | undefined;
|
|
14
14
|
}, {}>;
|
|
@@ -20,7 +20,7 @@ export declare const UpsertRegistrationPayloadSchema: import("arktype/out/method
|
|
|
20
20
|
}[] | undefined;
|
|
21
21
|
metadata?: ((In: {
|
|
22
22
|
[x: string]: string | number | boolean;
|
|
23
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
23
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
24
24
|
[x: string]: string | number | boolean;
|
|
25
25
|
} | undefined>) | undefined;
|
|
26
26
|
}, {}>;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* This isn't really being used yet...but some general settings would go here
|
|
3
3
|
*/
|
|
4
4
|
export declare const SettingsPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
5
|
-
updatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
6
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
5
|
+
updatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
8
|
metadata?: ((In: {
|
|
9
9
|
[x: string]: string | number | boolean;
|
|
10
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
11
11
|
[x: string]: string | number | boolean;
|
|
12
12
|
} | undefined>) | undefined;
|
|
13
13
|
}, {}>;
|
|
@@ -15,7 +15,7 @@ export type SettingsPayload = typeof SettingsPayloadSchema.inferOut;
|
|
|
15
15
|
export declare const UpsertSettingsPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
16
16
|
metadata?: ((In: {
|
|
17
17
|
[x: string]: string | number | boolean;
|
|
18
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
18
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
19
19
|
[x: string]: string | number | boolean;
|
|
20
20
|
} | undefined>) | undefined;
|
|
21
21
|
}, {}>;
|
|
@@ -5,14 +5,14 @@ export declare const TenantIdPropertySchema: import("arktype/out/methods/object.
|
|
|
5
5
|
export declare const TenantPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
6
6
|
status: import("arktype/out/attributes.js").Default<"active" | "suspended", "active">;
|
|
7
7
|
name: string;
|
|
8
|
-
createdAt: (In: string | Date) => import("arktype
|
|
9
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
10
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
11
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
8
|
+
createdAt: (In: string | Date) => import("arktype").Out<string>;
|
|
9
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
10
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
11
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
12
12
|
id: string;
|
|
13
13
|
metadata?: ((In: {
|
|
14
14
|
[x: string]: string | number | boolean;
|
|
15
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
15
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
16
16
|
[x: string]: string | number | boolean;
|
|
17
17
|
} | undefined>) | undefined;
|
|
18
18
|
handle: string;
|
|
@@ -21,11 +21,11 @@ export declare const TenantPayloadSchema: import("arktype/out/methods/object.js"
|
|
|
21
21
|
membership?: {
|
|
22
22
|
features?: {
|
|
23
23
|
"Branding.Remove"?: {
|
|
24
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
24
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
25
25
|
} | undefined;
|
|
26
26
|
} | undefined;
|
|
27
|
-
startAt?: ((In: string | Date | undefined) => import("arktype
|
|
28
|
-
endAt?: ((In: string | Date | undefined) => import("arktype
|
|
27
|
+
startAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
28
|
+
endAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
29
29
|
} | undefined;
|
|
30
30
|
}, {}>;
|
|
31
31
|
export type TenantPayload = typeof TenantPayloadSchema.inferOut;
|
|
@@ -34,7 +34,7 @@ export declare const InsertTenantPayloadSchema: import("arktype/out/methods/obje
|
|
|
34
34
|
status?: "active" | "suspended" | undefined;
|
|
35
35
|
metadata?: ((In: {
|
|
36
36
|
[x: string]: string | number | boolean;
|
|
37
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
37
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
38
38
|
[x: string]: string | number | boolean;
|
|
39
39
|
} | null>) | undefined;
|
|
40
40
|
id: import("arktype/out/attributes.js").Default<string, string>;
|
|
@@ -47,7 +47,7 @@ export declare const UpdateTenantPayloadSchema: import("arktype/out/methods/obje
|
|
|
47
47
|
name?: string | null | undefined;
|
|
48
48
|
metadata?: ((In: {
|
|
49
49
|
[x: string]: string | number | boolean;
|
|
50
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
50
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
51
51
|
[x: string]: string | number | boolean;
|
|
52
52
|
} | null>) | undefined;
|
|
53
53
|
handle?: string | undefined;
|
|
@@ -14,17 +14,17 @@ export declare const UserNotificationPayloadSchema: import("arktype/out/methods/
|
|
|
14
14
|
title?: string | undefined;
|
|
15
15
|
message?: string | undefined;
|
|
16
16
|
type: "info" | "import";
|
|
17
|
-
createdAt: (In: string | Date) => import("arktype
|
|
18
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
17
|
+
createdAt: (In: string | Date) => import("arktype").Out<string>;
|
|
18
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
19
19
|
action?: {
|
|
20
20
|
link: string;
|
|
21
21
|
label: string;
|
|
22
22
|
} | undefined;
|
|
23
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
24
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
23
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
24
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
25
25
|
metadata?: ((In: {
|
|
26
26
|
[x: string]: string | number | boolean;
|
|
27
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
27
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
28
28
|
[x: string]: string | number | boolean;
|
|
29
29
|
} | undefined>) | undefined;
|
|
30
30
|
}, {}>;
|
|
@@ -40,7 +40,7 @@ export declare const InsertUserNotificationPayloadSchema: import("arktype/out/me
|
|
|
40
40
|
message?: string | undefined;
|
|
41
41
|
metadata?: ((In: {
|
|
42
42
|
[x: string]: string | number | boolean;
|
|
43
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
43
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
44
44
|
[x: string]: string | number | boolean;
|
|
45
45
|
} | undefined>) | undefined;
|
|
46
46
|
}, {}>;
|
|
@@ -54,7 +54,7 @@ export declare const UpdateUserNotificationPayloadSchema: import("arktype/out/me
|
|
|
54
54
|
} | undefined;
|
|
55
55
|
metadata?: ((In: {
|
|
56
56
|
[x: string]: string | number | boolean;
|
|
57
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
57
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
58
58
|
[x: string]: string | number | boolean;
|
|
59
59
|
} | undefined>) | undefined;
|
|
60
60
|
}, {}>;
|
|
@@ -2,12 +2,12 @@ export declare const UserPreferencesPayloadSchema: import("arktype/out/methods/o
|
|
|
2
2
|
views?: Record<string, {
|
|
3
3
|
columns?: string[] | undefined;
|
|
4
4
|
}> | undefined;
|
|
5
|
-
updatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
6
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
5
|
+
updatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
8
|
metadata?: ((In: {
|
|
9
9
|
[x: string]: string | number | boolean;
|
|
10
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
11
11
|
[x: string]: string | number | boolean;
|
|
12
12
|
} | null>) | undefined;
|
|
13
13
|
}, {}>;
|
|
@@ -18,7 +18,7 @@ export declare const UpsertUserPreferencesPayloadSchema: import("arktype/out/met
|
|
|
18
18
|
}> | undefined;
|
|
19
19
|
metadata?: ((In: {
|
|
20
20
|
[x: string]: string | number | boolean;
|
|
21
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
21
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
22
22
|
[x: string]: string | number | boolean;
|
|
23
23
|
} | null>) | undefined;
|
|
24
24
|
}, {}>;
|
|
@@ -15,13 +15,13 @@ export declare const OperationSchema: import("arktype/internal/methods/string.ts
|
|
|
15
15
|
export declare const BasePayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
16
16
|
id: string;
|
|
17
17
|
attempt: number;
|
|
18
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
19
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
20
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
21
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
18
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
19
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
20
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
21
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
22
22
|
metadata?: ((In: {
|
|
23
23
|
[x: string]: string | number | boolean;
|
|
24
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
24
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
25
25
|
[x: string]: string | number | boolean;
|
|
26
26
|
} | undefined>) | undefined;
|
|
27
27
|
}, {}>;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
export declare const SetPasswordActionPayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
2
2
|
id: string;
|
|
3
3
|
attempt: number;
|
|
4
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
5
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
6
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
4
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
5
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
8
|
metadata?: ((In: {
|
|
9
9
|
[x: string]: string | number | boolean;
|
|
10
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
11
11
|
[x: string]: string | number | boolean;
|
|
12
12
|
} | undefined>) | undefined;
|
|
13
13
|
operation: "set-password";
|
|
14
14
|
user: string;
|
|
15
15
|
identifier: "email" | "phoneNumber";
|
|
16
16
|
policy: {
|
|
17
|
-
minimumLength: import("arktype/internal/attributes.ts").Default<number,
|
|
18
|
-
maximumLength: import("arktype/internal/attributes.ts").Default<number,
|
|
19
|
-
minimumCapital: import("arktype/internal/attributes.ts").Default<number,
|
|
20
|
-
minimumLower: import("arktype/internal/attributes.ts").Default<number,
|
|
21
|
-
minimumNumber: import("arktype/internal/attributes.ts").Default<number,
|
|
22
|
-
minimumSpecial: import("arktype/internal/attributes.ts").Default<number,
|
|
17
|
+
minimumLength: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
18
|
+
maximumLength: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
19
|
+
minimumCapital: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
20
|
+
minimumLower: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
21
|
+
minimumNumber: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
22
|
+
minimumSpecial: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
23
23
|
};
|
|
24
24
|
}, {}>;
|
|
25
25
|
export type SetPasswordActionPayload = typeof SetPasswordActionPayloadSchema.inferOut;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const SignUpVerificationActionPayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
2
2
|
id: string;
|
|
3
3
|
attempt: number;
|
|
4
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
5
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
6
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
4
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
5
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
8
|
metadata?: ((In: {
|
|
9
9
|
[x: string]: string | number | boolean;
|
|
10
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
11
11
|
[x: string]: string | number | boolean;
|
|
12
12
|
} | undefined>) | undefined;
|
|
13
13
|
operation: "sign-up-verification";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const SignUpActionPayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
2
2
|
id: string;
|
|
3
3
|
attempt: number;
|
|
4
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
5
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
6
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
4
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
5
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
8
|
metadata?: ((In: {
|
|
9
9
|
[x: string]: string | number | boolean;
|
|
10
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
11
11
|
[x: string]: string | number | boolean;
|
|
12
12
|
} | undefined>) | undefined;
|
|
13
13
|
operation: "sign-up";
|
|
@@ -29,7 +29,7 @@ export declare const SignUpActionRequestSchema: import("arktype/internal/methods
|
|
|
29
29
|
honorificSuffix?: string | undefined;
|
|
30
30
|
email: string;
|
|
31
31
|
phoneNumber?: string | undefined;
|
|
32
|
-
id
|
|
32
|
+
id?: string | undefined;
|
|
33
33
|
} | {
|
|
34
34
|
givenName?: string | undefined;
|
|
35
35
|
middleName?: string | undefined;
|
|
@@ -38,7 +38,7 @@ export declare const SignUpActionRequestSchema: import("arktype/internal/methods
|
|
|
38
38
|
honorificSuffix?: string | undefined;
|
|
39
39
|
phoneNumber: string;
|
|
40
40
|
email?: string | undefined;
|
|
41
|
-
id
|
|
41
|
+
id?: string | undefined;
|
|
42
42
|
}, {}>;
|
|
43
43
|
export type SignUpActionRequest = typeof SignUpActionRequestSchema.inferOut;
|
|
44
44
|
//# sourceMappingURL=sign-up.d.ts.map
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const UserAttributeVerificationActionPayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
2
2
|
id: string;
|
|
3
3
|
attempt: number;
|
|
4
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
5
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
6
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
4
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
5
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
6
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
7
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
8
8
|
metadata?: ((In: {
|
|
9
9
|
[x: string]: string | number | boolean;
|
|
10
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
10
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
11
11
|
[x: string]: string | number | boolean;
|
|
12
12
|
} | undefined>) | undefined;
|
|
13
13
|
operation: "user-attribute-verification";
|
|
@@ -4,36 +4,36 @@
|
|
|
4
4
|
export declare const ActionPayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
5
5
|
id: string;
|
|
6
6
|
attempt: number;
|
|
7
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
8
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
9
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
10
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
7
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
8
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
9
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
10
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
11
11
|
metadata?: ((In: {
|
|
12
12
|
[x: string]: string | number | boolean;
|
|
13
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
13
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
14
14
|
[x: string]: string | number | boolean;
|
|
15
15
|
} | undefined>) | undefined;
|
|
16
16
|
operation: "set-password";
|
|
17
17
|
user: string;
|
|
18
18
|
identifier: "email" | "phoneNumber";
|
|
19
19
|
policy: {
|
|
20
|
-
minimumLength: import("arktype/internal/attributes.ts").Default<number,
|
|
21
|
-
maximumLength: import("arktype/internal/attributes.ts").Default<number,
|
|
22
|
-
minimumCapital: import("arktype/internal/attributes.ts").Default<number,
|
|
23
|
-
minimumLower: import("arktype/internal/attributes.ts").Default<number,
|
|
24
|
-
minimumNumber: import("arktype/internal/attributes.ts").Default<number,
|
|
25
|
-
minimumSpecial: import("arktype/internal/attributes.ts").Default<number,
|
|
20
|
+
minimumLength: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
21
|
+
maximumLength: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
22
|
+
minimumCapital: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
23
|
+
minimumLower: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
24
|
+
minimumNumber: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
25
|
+
minimumSpecial: import("arktype/internal/attributes.ts").Default<number, number>;
|
|
26
26
|
};
|
|
27
27
|
} | {
|
|
28
28
|
id: string;
|
|
29
29
|
attempt: number;
|
|
30
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
31
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
32
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
33
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
30
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
31
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
32
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
33
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
34
34
|
metadata?: ((In: {
|
|
35
35
|
[x: string]: string | number | boolean;
|
|
36
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
36
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
37
37
|
[x: string]: string | number | boolean;
|
|
38
38
|
} | undefined>) | undefined;
|
|
39
39
|
operation: "sign-up-verification";
|
|
@@ -42,13 +42,13 @@ export declare const ActionPayloadSchema: import("arktype/internal/methods/objec
|
|
|
42
42
|
} | {
|
|
43
43
|
id: string;
|
|
44
44
|
attempt: number;
|
|
45
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
46
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
47
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
48
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
45
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
46
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
47
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
48
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
49
49
|
metadata?: ((In: {
|
|
50
50
|
[x: string]: string | number | boolean;
|
|
51
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
51
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
52
52
|
[x: string]: string | number | boolean;
|
|
53
53
|
} | undefined>) | undefined;
|
|
54
54
|
operation: "sign-up";
|
|
@@ -63,13 +63,13 @@ export declare const ActionPayloadSchema: import("arktype/internal/methods/objec
|
|
|
63
63
|
} | {
|
|
64
64
|
id: string;
|
|
65
65
|
attempt: number;
|
|
66
|
-
expiresAt: (In: string | Date) => import("arktype
|
|
67
|
-
updatedAt: (In: string | Date) => import("arktype
|
|
68
|
-
deletedAt?: ((In: string | Date | undefined) => import("arktype
|
|
69
|
-
deactivatedAt?: ((In: string | Date | undefined) => import("arktype
|
|
66
|
+
expiresAt: (In: string | Date) => import("arktype").Out<string>;
|
|
67
|
+
updatedAt: (In: string | Date) => import("arktype").Out<string>;
|
|
68
|
+
deletedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
69
|
+
deactivatedAt?: ((In: string | Date | undefined) => import("arktype").Out<string | undefined>) | undefined;
|
|
70
70
|
metadata?: ((In: {
|
|
71
71
|
[x: string]: string | number | boolean;
|
|
72
|
-
} | Map<string, string | number | boolean> | null | undefined) => import("arktype
|
|
72
|
+
} | Map<string, string | number | boolean> | null | undefined) => import("arktype").Out<{
|
|
73
73
|
[x: string]: string | number | boolean;
|
|
74
74
|
} | undefined>) | undefined;
|
|
75
75
|
operation: "user-attribute-verification";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/activity/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/activity/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { MondoIdentity } from '../common/resources/init.js';
|
|
2
|
+
import { type PaginationCollection } from '../common/schema/collection.js';
|
|
3
|
+
import type { Pagination } from '../common/schema/pagination.js';
|
|
4
|
+
import { type Activity } from './schema/schema.js';
|
|
5
|
+
export declare const PATH = "/v1/activities";
|
|
6
|
+
export declare class ActivityResources {
|
|
7
|
+
private readonly instance;
|
|
8
|
+
constructor(instance: MondoIdentity);
|
|
9
|
+
static buildPath(source: string): string;
|
|
10
|
+
listItems(source: string, pagination?: Pagination): Promise<PaginationCollection<Activity>>;
|
|
11
|
+
}
|
|
12
|
+
export declare function listActivities(instance: MondoIdentity, source: string, pagination?: Pagination): Promise<PaginationCollection<Activity>>;
|
|
13
|
+
//# sourceMappingURL=resources.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../../src/activity/resources.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAMjE,OAAO,EACL,KAAK,oBAAoB,EAE1B,MAAM,gCAAgC,CAAC;AACxC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAE,KAAK,QAAQ,EAAkB,MAAM,oBAAoB,CAAC;AAEnE,eAAO,MAAM,IAAI,mBAAmB,CAAC;AAErC,qBAAa,iBAAiB;IACT,OAAO,CAAC,QAAQ,CAAC,QAAQ;gBAAR,QAAQ,EAAE,aAAa;IAE3D,MAAM,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM;IAQjC,SAAS,CACd,MAAM,EAAE,MAAM,EACd,UAAU,CAAC,EAAE,UAAU,GACtB,OAAO,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC;CAG3C;AAED,wBAAsB,cAAc,CAClC,QAAQ,EAAE,aAAa,EACvB,MAAM,EAAE,MAAM,EACd,UAAU,CAAC,EAAE,UAAU,GACtB,OAAO,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC,CAWzC"}
|