@go-mondo/identity-sdk 0.0.2-beta.8 → 0.0.2-beta.80
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 +1 -1
- package/.release-please-manifest.json +1 -1
- package/.tsbuildinfo/cjs.json +1 -1
- package/.tsbuildinfo/esm.json +1 -1
- package/CHANGELOG.md +506 -0
- package/README.md +3 -1
- package/dist/cjs/action/schema/base.d.ts +21 -21
- package/dist/cjs/action/schema/base.d.ts.map +1 -1
- package/dist/cjs/action/schema/base.js +51 -11
- package/dist/cjs/action/schema/base.test.d.ts +2 -0
- package/dist/cjs/action/schema/base.test.d.ts.map +1 -0
- package/dist/cjs/action/schema/base.test.js +137 -0
- package/dist/cjs/action/schema/operations/sign-up-verification.d.ts +21 -21
- package/dist/cjs/action/schema/operations/sign-up-verification.d.ts.map +1 -1
- package/dist/cjs/action/schema/operations/sign-up-verification.js +42 -8
- package/dist/cjs/action/schema/operations/sign-up-verification.test.d.ts +2 -0
- package/dist/cjs/action/schema/operations/sign-up-verification.test.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/sign-up-verification.test.js +140 -0
- package/dist/cjs/action/schema/operations/sign-up.d.ts +40 -43
- package/dist/cjs/action/schema/operations/sign-up.d.ts.map +1 -1
- package/dist/cjs/action/schema/operations/sign-up.js +57 -15
- package/dist/cjs/action/schema/operations/sign-up.test.d.ts +2 -0
- package/dist/cjs/action/schema/operations/sign-up.test.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/sign-up.test.js +173 -0
- package/dist/cjs/action/schema/operations/user-attribute-verification.d.ts +19 -19
- package/dist/cjs/action/schema/operations/user-attribute-verification.d.ts.map +1 -1
- package/dist/cjs/action/schema/operations/user-attribute-verification.js +40 -6
- package/dist/cjs/action/schema/operations/user-attribute-verification.test.d.ts +2 -0
- package/dist/cjs/action/schema/operations/user-attribute-verification.test.d.ts.map +1 -0
- package/dist/cjs/action/schema/operations/user-attribute-verification.test.js +128 -0
- package/dist/cjs/action/schema/schema.d.ts +49 -77
- package/dist/cjs/action/schema/schema.d.ts.map +1 -1
- package/dist/cjs/action/schema/schema.js +7 -5
- package/dist/cjs/action/schema/schema.test.d.ts +2 -0
- package/dist/cjs/action/schema/schema.test.d.ts.map +1 -0
- package/dist/cjs/action/schema/schema.test.js +164 -0
- package/dist/cjs/action/schema/utils.d.ts +7 -0
- package/dist/cjs/action/schema/utils.d.ts.map +1 -0
- package/dist/cjs/action/schema/utils.js +16 -0
- package/dist/cjs/action/schema/utils.test.d.ts +2 -0
- package/dist/cjs/action/schema/utils.test.d.ts.map +1 -0
- package/dist/cjs/action/schema/utils.test.js +26 -0
- package/dist/cjs/activity/resources.d.ts.map +1 -1
- package/dist/cjs/activity/resources.js +1 -1
- package/dist/cjs/activity/resources.test.d.ts +2 -0
- package/dist/cjs/activity/resources.test.d.ts.map +1 -0
- package/dist/cjs/activity/resources.test.js +224 -0
- package/dist/cjs/activity/schema/base.d.ts +88 -69
- package/dist/cjs/activity/schema/base.d.ts.map +1 -1
- package/dist/cjs/activity/schema/base.js +74 -28
- package/dist/cjs/activity/schema/base.test.d.ts +2 -0
- package/dist/cjs/activity/schema/base.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/base.test.js +269 -0
- package/dist/cjs/activity/schema/schema.d.ts +293 -226
- package/dist/cjs/activity/schema/schema.d.ts.map +1 -1
- package/dist/cjs/activity/schema/schema.test.d.ts +2 -0
- package/dist/cjs/activity/schema/schema.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/schema.test.js +343 -0
- package/dist/cjs/activity/schema/types/authentication.d.ts +64 -46
- package/dist/cjs/activity/schema/types/authentication.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/authentication.js +50 -8
- package/dist/cjs/activity/schema/types/authentication.test.d.ts +2 -0
- package/dist/cjs/activity/schema/types/authentication.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/authentication.test.js +302 -0
- package/dist/cjs/activity/schema/types/authorization.d.ts +64 -46
- package/dist/cjs/activity/schema/types/authorization.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/authorization.js +50 -8
- package/dist/cjs/activity/schema/types/authorization.test.d.ts +2 -0
- package/dist/cjs/activity/schema/types/authorization.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/authorization.test.js +340 -0
- package/dist/cjs/activity/schema/types/note.d.ts +83 -70
- package/dist/cjs/activity/schema/types/note.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/note.js +53 -12
- package/dist/cjs/activity/schema/types/note.test.d.ts +2 -0
- package/dist/cjs/activity/schema/types/note.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/note.test.js +318 -0
- package/dist/cjs/activity/schema/types/operation.d.ts +64 -45
- package/dist/cjs/activity/schema/types/operation.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/operation.js +52 -8
- package/dist/cjs/activity/schema/types/operation.test.d.ts +2 -0
- package/dist/cjs/activity/schema/types/operation.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/operation.test.js +343 -0
- package/dist/cjs/activity/schema/types/unknown.d.ts +50 -41
- package/dist/cjs/activity/schema/types/unknown.d.ts.map +1 -1
- package/dist/cjs/activity/schema/types/unknown.js +45 -6
- package/dist/cjs/activity/schema/types/unknown.test.d.ts +2 -0
- package/dist/cjs/activity/schema/types/unknown.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/types/unknown.test.js +274 -0
- package/dist/cjs/activity/schema/utils.test.d.ts +2 -0
- package/dist/cjs/activity/schema/utils.test.d.ts.map +1 -0
- package/dist/cjs/activity/schema/utils.test.js +26 -0
- package/dist/cjs/app/authorization/resources.d.ts.map +1 -1
- package/dist/cjs/app/authorization/resources.js +2 -6
- package/dist/cjs/app/authorization/schema.d.ts +90 -52
- package/dist/cjs/app/authorization/schema.d.ts.map +1 -1
- package/dist/cjs/app/authorization/schema.js +92 -54
- package/dist/cjs/app/authorization/schema.test.d.ts +2 -0
- package/dist/cjs/app/authorization/schema.test.d.ts.map +1 -0
- package/dist/cjs/app/authorization/schema.test.js +434 -0
- package/dist/cjs/app/oauth/resources.d.ts.map +1 -1
- package/dist/cjs/app/oauth/resources.js +2 -3
- package/dist/cjs/app/oauth/schema.d.ts +34 -41
- package/dist/cjs/app/oauth/schema.d.ts.map +1 -1
- package/dist/cjs/app/oauth/schema.js +58 -18
- package/dist/cjs/app/oauth/schema.test.d.ts +2 -0
- package/dist/cjs/app/oauth/schema.test.d.ts.map +1 -0
- package/dist/cjs/app/oauth/schema.test.js +172 -0
- package/dist/cjs/app/oidc/resources.d.ts.map +1 -1
- package/dist/cjs/app/oidc/resources.js +4 -5
- package/dist/cjs/app/oidc/schema.d.ts +26 -37
- package/dist/cjs/app/oidc/schema.d.ts.map +1 -1
- package/dist/cjs/app/oidc/schema.js +49 -12
- package/dist/cjs/app/oidc/schema.test.d.ts +2 -0
- package/dist/cjs/app/oidc/schema.test.d.ts.map +1 -0
- package/dist/cjs/app/oidc/schema.test.js +114 -0
- package/dist/cjs/app/registration/resources.d.ts.map +1 -1
- package/dist/cjs/app/registration/resources.js +2 -3
- package/dist/cjs/app/registration/resources.test.d.ts +2 -0
- package/dist/cjs/app/registration/resources.test.d.ts.map +1 -0
- package/dist/cjs/app/registration/resources.test.js +295 -0
- package/dist/cjs/app/registration/schema.d.ts +24 -31
- package/dist/cjs/app/registration/schema.d.ts.map +1 -1
- package/dist/cjs/app/registration/schema.js +56 -16
- package/dist/cjs/app/registration/schema.test.d.ts +2 -0
- package/dist/cjs/app/registration/schema.test.d.ts.map +1 -0
- package/dist/cjs/app/registration/schema.test.js +180 -0
- package/dist/cjs/app/resources.d.ts.map +1 -1
- package/dist/cjs/app/resources.js +5 -5
- package/dist/cjs/app/resources.test.d.ts +2 -0
- package/dist/cjs/app/resources.test.d.ts.map +1 -0
- package/dist/cjs/app/resources.test.js +288 -0
- package/dist/cjs/app/saml/resources.d.ts.map +1 -1
- package/dist/cjs/app/saml/resources.js +4 -5
- package/dist/cjs/app/saml/schema.d.ts +26 -37
- package/dist/cjs/app/saml/schema.d.ts.map +1 -1
- package/dist/cjs/app/saml/schema.js +50 -13
- package/dist/cjs/app/schema.d.ts +75 -67
- package/dist/cjs/app/schema.d.ts.map +1 -1
- package/dist/cjs/app/schema.js +82 -36
- package/dist/cjs/app/schema.test.d.ts +2 -0
- package/dist/cjs/app/schema.test.d.ts.map +1 -0
- package/dist/cjs/app/schema.test.js +181 -0
- package/dist/cjs/app/utils.test.d.ts +2 -0
- package/dist/cjs/app/utils.test.d.ts.map +1 -0
- package/dist/cjs/app/utils.test.js +42 -0
- package/dist/cjs/association/resources.d.ts.map +1 -1
- package/dist/cjs/association/resources.js +3 -5
- package/dist/cjs/association/schema.d.ts +270 -182
- package/dist/cjs/association/schema.d.ts.map +1 -1
- package/dist/cjs/association/schema.js +70 -32
- package/dist/cjs/association/schema.test.d.ts +2 -0
- package/dist/cjs/association/schema.test.d.ts.map +1 -0
- package/dist/cjs/association/schema.test.js +80 -0
- package/dist/cjs/authentication/factors/schema.d.ts +39 -49
- package/dist/cjs/authentication/factors/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/factors/schema.js +59 -20
- package/dist/cjs/authentication/factors/schema.test.js +50 -50
- package/dist/cjs/authentication/index.d.ts +1 -0
- package/dist/cjs/authentication/index.d.ts.map +1 -1
- package/dist/cjs/authentication/index.js +2 -0
- package/dist/cjs/authentication/providers/schema.d.ts +23 -22
- package/dist/cjs/authentication/providers/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/providers/schema.js +45 -10
- package/dist/cjs/authentication/sessions/resources.d.ts.map +1 -1
- package/dist/cjs/authentication/sessions/resources.js +2 -2
- package/dist/cjs/authentication/sessions/schema.d.ts +96 -74
- package/dist/cjs/authentication/sessions/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/sessions/schema.js +108 -35
- package/dist/cjs/authentication/sessions/schema.test.d.ts +2 -0
- package/dist/cjs/authentication/sessions/schema.test.d.ts.map +1 -0
- package/dist/cjs/authentication/sessions/schema.test.js +58 -0
- package/dist/cjs/authentication/settings/resources.d.ts.map +1 -1
- package/dist/cjs/authentication/settings/resources.js +2 -3
- package/dist/cjs/authentication/settings/schema.d.ts +45 -62
- package/dist/cjs/authentication/settings/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/settings/schema.js +49 -14
- package/dist/cjs/authentication/settings/schema.test.d.ts +2 -0
- package/dist/cjs/authentication/settings/schema.test.d.ts.map +1 -0
- package/dist/cjs/authentication/settings/schema.test.js +460 -0
- package/dist/cjs/authentication/strategies/resources.d.ts +2 -1
- package/dist/cjs/authentication/strategies/resources.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/resources.js +10 -10
- package/dist/cjs/authentication/strategies/schema/base.d.ts +59 -53
- package/dist/cjs/authentication/strategies/schema/base.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/base.js +71 -25
- package/dist/cjs/authentication/strategies/schema/schema.d.ts +126 -200
- package/dist/cjs/authentication/strategies/schema/schema.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/schema.js +39 -6
- package/dist/cjs/authentication/strategies/schema/types/email.d.ts +62 -61
- package/dist/cjs/authentication/strategies/schema/types/email.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/types/email.js +59 -16
- package/dist/cjs/authentication/strategies/schema/types/email.test.d.ts +2 -0
- package/dist/cjs/authentication/strategies/schema/types/email.test.d.ts.map +1 -0
- package/dist/cjs/authentication/strategies/schema/types/email.test.js +205 -0
- package/dist/cjs/authentication/strategies/schema/types/totp.d.ts +108 -95
- package/dist/cjs/authentication/strategies/schema/types/totp.d.ts.map +1 -1
- package/dist/cjs/authentication/strategies/schema/types/totp.js +83 -26
- package/dist/cjs/authentication/utils.d.ts +13 -0
- package/dist/cjs/authentication/utils.d.ts.map +1 -0
- package/dist/cjs/authentication/utils.js +25 -0
- package/dist/cjs/authentication/utils.test.d.ts +2 -0
- package/dist/cjs/authentication/utils.test.d.ts.map +1 -0
- package/dist/cjs/authentication/utils.test.js +142 -0
- package/dist/cjs/authorization/index.d.ts +1 -1
- package/dist/cjs/authorization/index.d.ts.map +1 -1
- package/dist/cjs/authorization/index.js +1 -1
- package/dist/cjs/authorization/permissions/resources.d.ts.map +1 -1
- package/dist/cjs/authorization/permissions/resources.js +5 -5
- package/dist/cjs/authorization/permissions/schema.d.ts +92 -89
- package/dist/cjs/authorization/permissions/schema.d.ts.map +1 -1
- package/dist/cjs/authorization/permissions/schema.js +84 -44
- package/dist/cjs/authorization/permissions/schema.test.d.ts +2 -0
- package/dist/cjs/authorization/permissions/schema.test.d.ts.map +1 -0
- package/dist/cjs/authorization/permissions/schema.test.js +209 -0
- package/dist/cjs/authorization/roles/resources.d.ts.map +1 -1
- package/dist/cjs/authorization/roles/resources.js +5 -5
- package/dist/cjs/authorization/roles/schema.d.ts +102 -98
- package/dist/cjs/authorization/roles/schema.d.ts.map +1 -1
- package/dist/cjs/authorization/roles/schema.js +81 -45
- package/dist/cjs/authorization/roles/schema.test.d.ts +2 -0
- package/dist/cjs/authorization/roles/schema.test.d.ts.map +1 -0
- package/dist/cjs/authorization/roles/schema.test.js +229 -0
- package/dist/cjs/authorization/schema.d.ts +18 -0
- package/dist/cjs/authorization/schema.d.ts.map +1 -0
- package/dist/cjs/authorization/schema.js +68 -0
- package/dist/cjs/authorization/schema.test.d.ts +2 -0
- package/dist/cjs/authorization/schema.test.d.ts.map +1 -0
- package/dist/cjs/authorization/schema.test.js +42 -0
- package/dist/cjs/common/errors/http.test.d.ts +2 -0
- package/dist/cjs/common/errors/http.test.d.ts.map +1 -0
- package/dist/cjs/common/errors/http.test.js +71 -0
- package/dist/cjs/common/errors/validation.test.d.ts +2 -0
- package/dist/cjs/common/errors/validation.test.d.ts.map +1 -0
- package/dist/cjs/common/errors/validation.test.js +92 -0
- package/dist/cjs/common/resources/init.d.ts +7 -6
- package/dist/cjs/common/resources/init.d.ts.map +1 -1
- package/dist/cjs/common/resources/init.js +50 -9
- package/dist/cjs/common/resources/init.test.d.ts +2 -0
- package/dist/cjs/common/resources/init.test.d.ts.map +1 -0
- package/dist/cjs/common/resources/init.test.js +233 -0
- package/dist/cjs/common/resources/operations.d.ts +3 -2
- package/dist/cjs/common/resources/operations.d.ts.map +1 -1
- package/dist/cjs/common/resources/operations.js +15 -8
- package/dist/cjs/common/resources/operations.test.d.ts +2 -0
- package/dist/cjs/common/resources/operations.test.d.ts.map +1 -0
- package/dist/cjs/common/resources/operations.test.js +356 -0
- package/dist/cjs/common/resources/utils.d.ts +1 -10
- package/dist/cjs/common/resources/utils.d.ts.map +1 -1
- package/dist/cjs/common/resources/utils.js +0 -26
- package/dist/cjs/common/resources/utils.test.d.ts +2 -0
- package/dist/cjs/common/resources/utils.test.d.ts.map +1 -0
- package/dist/cjs/common/resources/utils.test.js +134 -0
- package/dist/cjs/common/schema/aggregate.d.ts +6 -5
- package/dist/cjs/common/schema/aggregate.d.ts.map +1 -1
- package/dist/cjs/common/schema/aggregate.js +37 -4
- package/dist/cjs/common/schema/aggregate.test.d.ts +2 -0
- package/dist/cjs/common/schema/aggregate.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/aggregate.test.js +74 -0
- package/dist/cjs/common/schema/collection.d.ts +13 -14
- package/dist/cjs/common/schema/collection.d.ts.map +1 -1
- package/dist/cjs/common/schema/collection.js +40 -5
- package/dist/cjs/common/schema/collection.test.d.ts +2 -0
- package/dist/cjs/common/schema/collection.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/collection.test.js +149 -0
- package/dist/cjs/common/schema/dates.d.ts +43 -26
- package/dist/cjs/common/schema/dates.d.ts.map +1 -1
- package/dist/cjs/common/schema/dates.js +63 -12
- package/dist/cjs/common/schema/dates.test.js +24 -13
- package/dist/cjs/common/schema/id.d.ts +3 -0
- package/dist/cjs/common/schema/id.d.ts.map +1 -0
- package/dist/cjs/common/schema/id.js +39 -0
- package/dist/cjs/common/schema/id.test.d.ts +2 -0
- package/dist/cjs/common/schema/id.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/id.test.js +148 -0
- package/dist/cjs/common/schema/jwt.d.ts +22 -14
- package/dist/cjs/common/schema/jwt.d.ts.map +1 -1
- package/dist/cjs/common/schema/jwt.js +37 -8
- package/dist/cjs/common/schema/jwt.test.d.ts +2 -0
- package/dist/cjs/common/schema/jwt.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/jwt.test.js +53 -0
- package/dist/cjs/common/schema/metadata.d.ts +28 -39
- package/dist/cjs/common/schema/metadata.d.ts.map +1 -1
- package/dist/cjs/common/schema/metadata.js +80 -27
- package/dist/cjs/common/schema/metadata.test.js +71 -23
- package/dist/cjs/common/schema/pagination.d.ts +15 -5
- package/dist/cjs/common/schema/pagination.d.ts.map +1 -1
- package/dist/cjs/common/schema/pagination.js +46 -4
- package/dist/cjs/common/schema/pagination.test.d.ts +2 -0
- package/dist/cjs/common/schema/pagination.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/pagination.test.js +87 -0
- package/dist/cjs/common/schema/schema.d.ts +4 -4
- package/dist/cjs/common/schema/schema.d.ts.map +1 -1
- package/dist/cjs/common/schema/schema.js +28 -5
- package/dist/cjs/common/schema/schema.test.js +42 -15
- package/dist/cjs/common/schema/sets.d.ts +6 -2
- package/dist/cjs/common/schema/sets.d.ts.map +1 -1
- package/dist/cjs/common/schema/sets.js +50 -7
- package/dist/cjs/common/schema/url.d.ts +19 -0
- package/dist/cjs/common/schema/url.d.ts.map +1 -1
- package/dist/cjs/common/schema/url.js +74 -0
- package/dist/cjs/common/schema/url.test.d.ts +2 -0
- package/dist/cjs/common/schema/url.test.d.ts.map +1 -0
- package/dist/cjs/common/schema/url.test.js +74 -0
- package/dist/cjs/customer/index.d.ts +2 -1
- package/dist/cjs/customer/index.d.ts.map +1 -1
- package/dist/cjs/customer/index.js +2 -1
- package/dist/cjs/customer/organization/schema.d.ts +68 -0
- package/dist/cjs/customer/organization/schema.d.ts.map +1 -0
- package/dist/cjs/customer/organization/schema.js +92 -0
- package/dist/cjs/customer/schema.d.ts +18 -0
- package/dist/cjs/customer/schema.d.ts.map +1 -0
- package/dist/cjs/customer/schema.js +68 -0
- package/dist/cjs/customer/schema.test.d.ts +2 -0
- package/dist/cjs/customer/schema.test.d.ts.map +1 -0
- package/dist/cjs/customer/schema.test.js +42 -0
- package/dist/cjs/customer/users/resources.d.ts.map +1 -1
- package/dist/cjs/customer/users/resources.js +5 -5
- package/dist/cjs/customer/users/schema.d.ts +215 -105
- package/dist/cjs/customer/users/schema.d.ts.map +1 -1
- package/dist/cjs/customer/users/schema.js +153 -65
- package/dist/cjs/customer/users/schema.test.js +599 -67
- package/dist/cjs/customer/users/utils.d.ts +3 -2
- package/dist/cjs/customer/users/utils.d.ts.map +1 -1
- package/dist/cjs/customer/users/utils.test.d.ts +2 -0
- package/dist/cjs/customer/users/utils.test.d.ts.map +1 -0
- package/dist/cjs/customer/users/utils.test.js +145 -0
- package/dist/cjs/identity/schema.d.ts +5 -1
- package/dist/cjs/identity/schema.d.ts.map +1 -1
- package/dist/cjs/identity/schema.js +38 -2
- package/dist/cjs/identity/schema.test.d.ts +2 -0
- package/dist/cjs/identity/schema.test.d.ts.map +1 -0
- package/dist/cjs/identity/schema.test.js +45 -0
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.d.ts +34 -28
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.d.ts.map +1 -1
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.js +96 -22
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.test.d.ts +2 -0
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.test.d.ts.map +1 -0
- package/dist/cjs/oauth/authorize/schema/grants/authorization-code.test.js +333 -0
- package/dist/cjs/oauth/authorize/schema/grants/common.d.ts +6 -0
- package/dist/cjs/oauth/authorize/schema/grants/common.d.ts.map +1 -0
- package/dist/cjs/oauth/authorize/schema/grants/common.js +47 -0
- package/dist/cjs/oauth/authorize/schema/grants/implicit.d.ts +18 -10
- package/dist/cjs/oauth/authorize/schema/grants/implicit.d.ts.map +1 -1
- package/dist/cjs/oauth/authorize/schema/grants/implicit.js +56 -11
- package/dist/cjs/oauth/authorize/schema/schema.d.ts +48 -36
- package/dist/cjs/oauth/authorize/schema/schema.d.ts.map +1 -1
- package/dist/cjs/oauth/authorize/schema/schema.js +4 -2
- package/dist/cjs/oauth/common/schema.d.ts +24 -7
- package/dist/cjs/oauth/common/schema.d.ts.map +1 -1
- package/dist/cjs/oauth/common/schema.js +59 -8
- package/dist/cjs/oauth/common/schema.test.d.ts +2 -0
- package/dist/cjs/oauth/common/schema.test.d.ts.map +1 -0
- package/dist/cjs/oauth/common/schema.test.js +282 -0
- package/dist/cjs/oauth/index.d.ts +3 -3
- package/dist/cjs/oauth/index.d.ts.map +1 -1
- package/dist/cjs/oauth/index.js +8 -25
- package/dist/cjs/oauth/token/schema/grants/authorization-code.d.ts +16 -9
- package/dist/cjs/oauth/token/schema/grants/authorization-code.d.ts.map +1 -1
- package/dist/cjs/oauth/token/schema/grants/authorization-code.js +66 -12
- package/dist/cjs/oauth/token/schema/grants/client-credentials.d.ts +16 -17
- package/dist/cjs/oauth/token/schema/grants/client-credentials.d.ts.map +1 -1
- package/dist/cjs/oauth/token/schema/grants/client-credentials.js +53 -16
- package/dist/cjs/oauth/token/schema/grants/common.d.ts +6 -0
- package/dist/cjs/oauth/token/schema/grants/common.d.ts.map +1 -0
- package/dist/cjs/oauth/token/schema/grants/common.js +52 -0
- package/dist/cjs/oauth/token/schema/grants/refresh-token.d.ts +15 -8
- package/dist/cjs/oauth/token/schema/grants/refresh-token.d.ts.map +1 -1
- package/dist/cjs/oauth/token/schema/grants/refresh-token.js +57 -11
- package/dist/cjs/oauth/token/schema/schema.d.ts +48 -21
- package/dist/cjs/oauth/token/schema/schema.d.ts.map +1 -1
- package/dist/cjs/oauth/token/schema/schema.js +79 -2
- package/dist/cjs/oauth/token/schema/schema.test.d.ts +2 -0
- package/dist/cjs/oauth/token/schema/schema.test.d.ts.map +1 -0
- package/dist/cjs/oauth/token/schema/schema.test.js +138 -0
- package/dist/cjs/workspace/authorization/schema.d.ts +62 -27
- package/dist/cjs/workspace/authorization/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/authorization/schema.js +58 -13
- package/dist/cjs/workspace/branding/schema.d.ts +47 -37
- package/dist/cjs/workspace/branding/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/branding/schema.js +61 -16
- package/dist/cjs/workspace/membership/schema.d.ts +42 -20
- package/dist/cjs/workspace/membership/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/membership/schema.js +47 -7
- package/dist/cjs/workspace/registration/schema.d.ts +41 -27
- package/dist/cjs/workspace/registration/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/registration/schema.js +63 -14
- package/dist/cjs/workspace/settings/schema.d.ts +20 -19
- package/dist/cjs/workspace/settings/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/settings/schema.js +47 -7
- package/dist/cjs/workspace/settings/schema.test.d.ts +2 -0
- package/dist/cjs/workspace/settings/schema.test.d.ts.map +1 -0
- package/dist/cjs/workspace/settings/schema.test.js +72 -0
- package/dist/cjs/workspace/tenant/schema.d.ts +88 -56
- package/dist/cjs/workspace/tenant/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/tenant/schema.js +64 -17
- package/dist/cjs/workspace/tenant/schema.test.d.ts +2 -0
- package/dist/cjs/workspace/tenant/schema.test.d.ts.map +1 -0
- package/dist/cjs/workspace/tenant/schema.test.js +235 -0
- package/dist/cjs/workspace/user/notifications/schema.d.ts +70 -56
- package/dist/cjs/workspace/user/notifications/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/user/notifications/schema.js +78 -31
- package/dist/cjs/workspace/user/preferences/schema.d.ts +29 -25
- package/dist/cjs/workspace/user/preferences/schema.d.ts.map +1 -1
- package/dist/cjs/workspace/user/preferences/schema.js +57 -12
- package/dist/cjs/workspace/utils.d.ts +0 -3
- package/dist/cjs/workspace/utils.d.ts.map +1 -1
- package/dist/cjs/workspace/utils.js +0 -3
- package/dist/cjs/workspace/utils.test.d.ts +2 -0
- package/dist/cjs/workspace/utils.test.d.ts.map +1 -0
- package/dist/cjs/workspace/utils.test.js +63 -0
- package/dist/esm/action/schema/base.d.ts +21 -21
- package/dist/esm/action/schema/base.d.ts.map +1 -1
- package/dist/esm/action/schema/base.js +19 -12
- package/dist/esm/action/schema/base.test.d.ts +2 -0
- package/dist/esm/action/schema/base.test.d.ts.map +1 -0
- package/dist/esm/action/schema/base.test.js +135 -0
- package/dist/esm/action/schema/operations/sign-up-verification.d.ts +21 -21
- package/dist/esm/action/schema/operations/sign-up-verification.d.ts.map +1 -1
- package/dist/esm/action/schema/operations/sign-up-verification.js +9 -8
- package/dist/esm/action/schema/operations/sign-up-verification.test.d.ts +2 -0
- package/dist/esm/action/schema/operations/sign-up-verification.test.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/sign-up-verification.test.js +138 -0
- package/dist/esm/action/schema/operations/sign-up.d.ts +40 -43
- package/dist/esm/action/schema/operations/sign-up.d.ts.map +1 -1
- package/dist/esm/action/schema/operations/sign-up.js +19 -10
- package/dist/esm/action/schema/operations/sign-up.test.d.ts +2 -0
- package/dist/esm/action/schema/operations/sign-up.test.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/sign-up.test.js +171 -0
- package/dist/esm/action/schema/operations/user-attribute-verification.d.ts +19 -19
- package/dist/esm/action/schema/operations/user-attribute-verification.d.ts.map +1 -1
- package/dist/esm/action/schema/operations/user-attribute-verification.js +7 -6
- package/dist/esm/action/schema/operations/user-attribute-verification.test.d.ts +2 -0
- package/dist/esm/action/schema/operations/user-attribute-verification.test.d.ts.map +1 -0
- package/dist/esm/action/schema/operations/user-attribute-verification.test.js +126 -0
- package/dist/esm/action/schema/schema.d.ts +49 -77
- package/dist/esm/action/schema/schema.d.ts.map +1 -1
- package/dist/esm/action/schema/schema.js +7 -5
- package/dist/esm/action/schema/schema.test.d.ts +2 -0
- package/dist/esm/action/schema/schema.test.d.ts.map +1 -0
- package/dist/esm/action/schema/schema.test.js +162 -0
- package/dist/esm/action/schema/utils.d.ts +7 -0
- package/dist/esm/action/schema/utils.d.ts.map +1 -0
- package/dist/esm/action/schema/utils.js +9 -0
- package/dist/esm/action/schema/utils.test.d.ts +2 -0
- package/dist/esm/action/schema/utils.test.d.ts.map +1 -0
- package/dist/esm/action/schema/utils.test.js +24 -0
- package/dist/esm/activity/resources.d.ts.map +1 -1
- package/dist/esm/activity/resources.js +2 -2
- package/dist/esm/activity/resources.test.d.ts +2 -0
- package/dist/esm/activity/resources.test.d.ts.map +1 -0
- package/dist/esm/activity/resources.test.js +189 -0
- package/dist/esm/activity/schema/base.d.ts +88 -69
- package/dist/esm/activity/schema/base.d.ts.map +1 -1
- package/dist/esm/activity/schema/base.js +42 -29
- package/dist/esm/activity/schema/base.test.d.ts +2 -0
- package/dist/esm/activity/schema/base.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/base.test.js +267 -0
- package/dist/esm/activity/schema/schema.d.ts +293 -226
- package/dist/esm/activity/schema/schema.d.ts.map +1 -1
- package/dist/esm/activity/schema/schema.test.d.ts +2 -0
- package/dist/esm/activity/schema/schema.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/schema.test.js +341 -0
- package/dist/esm/activity/schema/types/authentication.d.ts +64 -46
- package/dist/esm/activity/schema/types/authentication.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/authentication.js +17 -8
- package/dist/esm/activity/schema/types/authentication.test.d.ts +2 -0
- package/dist/esm/activity/schema/types/authentication.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/authentication.test.js +300 -0
- package/dist/esm/activity/schema/types/authorization.d.ts +64 -46
- package/dist/esm/activity/schema/types/authorization.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/authorization.js +17 -8
- package/dist/esm/activity/schema/types/authorization.test.d.ts +2 -0
- package/dist/esm/activity/schema/types/authorization.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/authorization.test.js +338 -0
- package/dist/esm/activity/schema/types/note.d.ts +83 -70
- package/dist/esm/activity/schema/types/note.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/note.js +20 -12
- package/dist/esm/activity/schema/types/note.test.d.ts +2 -0
- package/dist/esm/activity/schema/types/note.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/note.test.js +316 -0
- package/dist/esm/activity/schema/types/operation.d.ts +64 -45
- package/dist/esm/activity/schema/types/operation.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/operation.js +19 -8
- package/dist/esm/activity/schema/types/operation.test.d.ts +2 -0
- package/dist/esm/activity/schema/types/operation.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/operation.test.js +341 -0
- package/dist/esm/activity/schema/types/unknown.d.ts +50 -41
- package/dist/esm/activity/schema/types/unknown.d.ts.map +1 -1
- package/dist/esm/activity/schema/types/unknown.js +12 -6
- package/dist/esm/activity/schema/types/unknown.test.d.ts +2 -0
- package/dist/esm/activity/schema/types/unknown.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/types/unknown.test.js +272 -0
- package/dist/esm/activity/schema/utils.test.d.ts +2 -0
- package/dist/esm/activity/schema/utils.test.d.ts.map +1 -0
- package/dist/esm/activity/schema/utils.test.js +24 -0
- package/dist/esm/app/authorization/resources.d.ts.map +1 -1
- package/dist/esm/app/authorization/resources.js +3 -7
- package/dist/esm/app/authorization/schema.d.ts +90 -52
- package/dist/esm/app/authorization/schema.d.ts.map +1 -1
- package/dist/esm/app/authorization/schema.js +60 -55
- package/dist/esm/app/authorization/schema.test.d.ts +2 -0
- package/dist/esm/app/authorization/schema.test.d.ts.map +1 -0
- package/dist/esm/app/authorization/schema.test.js +432 -0
- package/dist/esm/app/oauth/resources.d.ts.map +1 -1
- package/dist/esm/app/oauth/resources.js +3 -4
- package/dist/esm/app/oauth/schema.d.ts +34 -41
- package/dist/esm/app/oauth/schema.d.ts.map +1 -1
- package/dist/esm/app/oauth/schema.js +27 -20
- package/dist/esm/app/oauth/schema.test.d.ts +2 -0
- package/dist/esm/app/oauth/schema.test.d.ts.map +1 -0
- package/dist/esm/app/oauth/schema.test.js +170 -0
- package/dist/esm/app/oidc/resources.d.ts.map +1 -1
- package/dist/esm/app/oidc/resources.js +5 -6
- package/dist/esm/app/oidc/schema.d.ts +26 -37
- package/dist/esm/app/oidc/schema.d.ts.map +1 -1
- package/dist/esm/app/oidc/schema.js +18 -14
- package/dist/esm/app/oidc/schema.test.d.ts +2 -0
- package/dist/esm/app/oidc/schema.test.d.ts.map +1 -0
- package/dist/esm/app/oidc/schema.test.js +112 -0
- package/dist/esm/app/registration/resources.d.ts.map +1 -1
- package/dist/esm/app/registration/resources.js +3 -4
- package/dist/esm/app/registration/resources.test.d.ts +2 -0
- package/dist/esm/app/registration/resources.test.d.ts.map +1 -0
- package/dist/esm/app/registration/resources.test.js +260 -0
- package/dist/esm/app/registration/schema.d.ts +24 -31
- package/dist/esm/app/registration/schema.d.ts.map +1 -1
- package/dist/esm/app/registration/schema.js +24 -17
- package/dist/esm/app/registration/schema.test.d.ts +2 -0
- package/dist/esm/app/registration/schema.test.d.ts.map +1 -0
- package/dist/esm/app/registration/schema.test.js +178 -0
- package/dist/esm/app/resources.d.ts.map +1 -1
- package/dist/esm/app/resources.js +7 -7
- package/dist/esm/app/resources.test.d.ts +2 -0
- package/dist/esm/app/resources.test.d.ts.map +1 -0
- package/dist/esm/app/resources.test.js +253 -0
- package/dist/esm/app/saml/resources.d.ts.map +1 -1
- package/dist/esm/app/saml/resources.js +5 -6
- package/dist/esm/app/saml/schema.d.ts +26 -37
- package/dist/esm/app/saml/schema.d.ts.map +1 -1
- package/dist/esm/app/saml/schema.js +19 -15
- package/dist/esm/app/schema.d.ts +75 -67
- package/dist/esm/app/schema.d.ts.map +1 -1
- package/dist/esm/app/schema.js +49 -36
- package/dist/esm/app/schema.test.d.ts +2 -0
- package/dist/esm/app/schema.test.d.ts.map +1 -0
- package/dist/esm/app/schema.test.js +179 -0
- package/dist/esm/app/utils.test.d.ts +2 -0
- package/dist/esm/app/utils.test.d.ts.map +1 -0
- package/dist/esm/app/utils.test.js +40 -0
- package/dist/esm/association/resources.d.ts.map +1 -1
- package/dist/esm/association/resources.js +5 -7
- package/dist/esm/association/schema.d.ts +270 -182
- package/dist/esm/association/schema.d.ts.map +1 -1
- package/dist/esm/association/schema.js +36 -31
- package/dist/esm/association/schema.test.d.ts +2 -0
- package/dist/esm/association/schema.test.d.ts.map +1 -0
- package/dist/esm/association/schema.test.js +78 -0
- package/dist/esm/authentication/factors/schema.d.ts +39 -49
- package/dist/esm/authentication/factors/schema.d.ts.map +1 -1
- package/dist/esm/authentication/factors/schema.js +26 -20
- package/dist/esm/authentication/factors/schema.test.js +50 -50
- package/dist/esm/authentication/index.d.ts +1 -0
- package/dist/esm/authentication/index.d.ts.map +1 -1
- package/dist/esm/authentication/index.js +2 -0
- package/dist/esm/authentication/providers/schema.d.ts +23 -22
- package/dist/esm/authentication/providers/schema.d.ts.map +1 -1
- package/dist/esm/authentication/providers/schema.js +13 -11
- package/dist/esm/authentication/sessions/resources.d.ts.map +1 -1
- package/dist/esm/authentication/sessions/resources.js +3 -3
- package/dist/esm/authentication/sessions/schema.d.ts +96 -74
- package/dist/esm/authentication/sessions/schema.d.ts.map +1 -1
- package/dist/esm/authentication/sessions/schema.js +75 -35
- package/dist/esm/authentication/sessions/schema.test.d.ts +2 -0
- package/dist/esm/authentication/sessions/schema.test.d.ts.map +1 -0
- package/dist/esm/authentication/sessions/schema.test.js +56 -0
- package/dist/esm/authentication/settings/resources.d.ts.map +1 -1
- package/dist/esm/authentication/settings/resources.js +3 -4
- package/dist/esm/authentication/settings/schema.d.ts +45 -62
- package/dist/esm/authentication/settings/schema.d.ts.map +1 -1
- package/dist/esm/authentication/settings/schema.js +18 -16
- package/dist/esm/authentication/settings/schema.test.d.ts +2 -0
- package/dist/esm/authentication/settings/schema.test.d.ts.map +1 -0
- package/dist/esm/authentication/settings/schema.test.js +458 -0
- package/dist/esm/authentication/strategies/resources.d.ts +2 -1
- package/dist/esm/authentication/strategies/resources.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/resources.js +12 -12
- package/dist/esm/authentication/strategies/schema/base.d.ts +59 -53
- package/dist/esm/authentication/strategies/schema/base.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/base.js +38 -25
- package/dist/esm/authentication/strategies/schema/schema.d.ts +126 -200
- package/dist/esm/authentication/strategies/schema/schema.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/schema.js +17 -6
- package/dist/esm/authentication/strategies/schema/types/email.d.ts +62 -61
- package/dist/esm/authentication/strategies/schema/types/email.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/types/email.js +25 -15
- package/dist/esm/authentication/strategies/schema/types/email.test.d.ts +2 -0
- package/dist/esm/authentication/strategies/schema/types/email.test.d.ts.map +1 -0
- package/dist/esm/authentication/strategies/schema/types/email.test.js +203 -0
- package/dist/esm/authentication/strategies/schema/types/totp.d.ts +108 -95
- package/dist/esm/authentication/strategies/schema/types/totp.d.ts.map +1 -1
- package/dist/esm/authentication/strategies/schema/types/totp.js +51 -27
- package/dist/esm/authentication/utils.d.ts +13 -0
- package/dist/esm/authentication/utils.d.ts.map +1 -0
- package/dist/esm/authentication/utils.js +17 -0
- package/dist/esm/authentication/utils.test.d.ts +2 -0
- package/dist/esm/authentication/utils.test.d.ts.map +1 -0
- package/dist/esm/authentication/utils.test.js +140 -0
- package/dist/esm/authorization/index.d.ts +1 -1
- package/dist/esm/authorization/index.d.ts.map +1 -1
- package/dist/esm/authorization/index.js +1 -1
- package/dist/esm/authorization/permissions/resources.d.ts.map +1 -1
- package/dist/esm/authorization/permissions/resources.js +7 -7
- package/dist/esm/authorization/permissions/schema.d.ts +92 -89
- package/dist/esm/authorization/permissions/schema.d.ts.map +1 -1
- package/dist/esm/authorization/permissions/schema.js +50 -43
- package/dist/esm/authorization/permissions/schema.test.d.ts +2 -0
- package/dist/esm/authorization/permissions/schema.test.d.ts.map +1 -0
- package/dist/esm/authorization/permissions/schema.test.js +207 -0
- package/dist/esm/authorization/roles/resources.d.ts.map +1 -1
- package/dist/esm/authorization/roles/resources.js +7 -7
- package/dist/esm/authorization/roles/schema.d.ts +102 -98
- package/dist/esm/authorization/roles/schema.d.ts.map +1 -1
- package/dist/esm/authorization/roles/schema.js +48 -45
- package/dist/esm/authorization/roles/schema.test.d.ts +2 -0
- package/dist/esm/authorization/roles/schema.test.d.ts.map +1 -0
- package/dist/esm/authorization/roles/schema.test.js +227 -0
- package/dist/esm/authorization/schema.d.ts +18 -0
- package/dist/esm/authorization/schema.d.ts.map +1 -0
- package/dist/esm/authorization/schema.js +27 -0
- package/dist/esm/authorization/schema.test.d.ts +2 -0
- package/dist/esm/authorization/schema.test.d.ts.map +1 -0
- package/dist/esm/authorization/schema.test.js +40 -0
- package/dist/esm/common/errors/http.test.d.ts +2 -0
- package/dist/esm/common/errors/http.test.d.ts.map +1 -0
- package/dist/esm/common/errors/http.test.js +69 -0
- package/dist/esm/common/errors/validation.test.d.ts +2 -0
- package/dist/esm/common/errors/validation.test.d.ts.map +1 -0
- package/dist/esm/common/errors/validation.test.js +90 -0
- package/dist/esm/common/resources/init.d.ts +7 -6
- package/dist/esm/common/resources/init.d.ts.map +1 -1
- package/dist/esm/common/resources/init.js +17 -9
- package/dist/esm/common/resources/init.test.d.ts +2 -0
- package/dist/esm/common/resources/init.test.d.ts.map +1 -0
- package/dist/esm/common/resources/init.test.js +231 -0
- package/dist/esm/common/resources/operations.d.ts +3 -2
- package/dist/esm/common/resources/operations.d.ts.map +1 -1
- package/dist/esm/common/resources/operations.js +12 -6
- package/dist/esm/common/resources/operations.test.d.ts +2 -0
- package/dist/esm/common/resources/operations.test.d.ts.map +1 -0
- package/dist/esm/common/resources/operations.test.js +354 -0
- package/dist/esm/common/resources/utils.d.ts +1 -10
- package/dist/esm/common/resources/utils.d.ts.map +1 -1
- package/dist/esm/common/resources/utils.js +0 -24
- package/dist/esm/common/resources/utils.test.d.ts +2 -0
- package/dist/esm/common/resources/utils.test.d.ts.map +1 -0
- package/dist/esm/common/resources/utils.test.js +132 -0
- package/dist/esm/common/schema/aggregate.d.ts +6 -5
- package/dist/esm/common/schema/aggregate.d.ts.map +1 -1
- package/dist/esm/common/schema/aggregate.js +4 -4
- package/dist/esm/common/schema/aggregate.test.d.ts +2 -0
- package/dist/esm/common/schema/aggregate.test.d.ts.map +1 -0
- package/dist/esm/common/schema/aggregate.test.js +72 -0
- package/dist/esm/common/schema/collection.d.ts +13 -14
- package/dist/esm/common/schema/collection.d.ts.map +1 -1
- package/dist/esm/common/schema/collection.js +5 -5
- package/dist/esm/common/schema/collection.test.d.ts +2 -0
- package/dist/esm/common/schema/collection.test.d.ts.map +1 -0
- package/dist/esm/common/schema/collection.test.js +114 -0
- package/dist/esm/common/schema/dates.d.ts +43 -26
- package/dist/esm/common/schema/dates.d.ts.map +1 -1
- package/dist/esm/common/schema/dates.js +29 -11
- package/dist/esm/common/schema/dates.test.js +24 -13
- package/dist/esm/common/schema/id.d.ts +3 -0
- package/dist/esm/common/schema/id.d.ts.map +1 -0
- package/dist/esm/common/schema/id.js +2 -0
- package/dist/esm/common/schema/id.test.d.ts +2 -0
- package/dist/esm/common/schema/id.test.d.ts.map +1 -0
- package/dist/esm/common/schema/id.test.js +146 -0
- package/dist/esm/common/schema/jwt.d.ts +22 -14
- package/dist/esm/common/schema/jwt.d.ts.map +1 -1
- package/dist/esm/common/schema/jwt.js +3 -7
- package/dist/esm/common/schema/jwt.test.d.ts +2 -0
- package/dist/esm/common/schema/jwt.test.d.ts.map +1 -0
- package/dist/esm/common/schema/jwt.test.js +51 -0
- package/dist/esm/common/schema/metadata.d.ts +28 -39
- package/dist/esm/common/schema/metadata.d.ts.map +1 -1
- package/dist/esm/common/schema/metadata.js +45 -26
- package/dist/esm/common/schema/metadata.test.js +72 -24
- package/dist/esm/common/schema/pagination.d.ts +15 -5
- package/dist/esm/common/schema/pagination.d.ts.map +1 -1
- package/dist/esm/common/schema/pagination.js +13 -4
- package/dist/esm/common/schema/pagination.test.d.ts +2 -0
- package/dist/esm/common/schema/pagination.test.d.ts.map +1 -0
- package/dist/esm/common/schema/pagination.test.js +85 -0
- package/dist/esm/common/schema/schema.d.ts +4 -4
- package/dist/esm/common/schema/schema.d.ts.map +1 -1
- package/dist/esm/common/schema/schema.js +6 -5
- package/dist/esm/common/schema/schema.test.js +9 -15
- package/dist/esm/common/schema/sets.d.ts +6 -2
- package/dist/esm/common/schema/sets.d.ts.map +1 -1
- package/dist/esm/common/schema/sets.js +16 -6
- package/dist/esm/common/schema/url.d.ts +19 -0
- package/dist/esm/common/schema/url.d.ts.map +1 -1
- package/dist/esm/common/schema/url.js +40 -0
- package/dist/esm/common/schema/url.test.d.ts +2 -0
- package/dist/esm/common/schema/url.test.d.ts.map +1 -0
- package/dist/esm/common/schema/url.test.js +72 -0
- package/dist/esm/customer/index.d.ts +2 -1
- package/dist/esm/customer/index.d.ts.map +1 -1
- package/dist/esm/customer/index.js +2 -1
- package/dist/esm/customer/organization/schema.d.ts +68 -0
- package/dist/esm/customer/organization/schema.d.ts.map +1 -0
- package/dist/esm/customer/organization/schema.js +56 -0
- package/dist/esm/customer/schema.d.ts +18 -0
- package/dist/esm/customer/schema.d.ts.map +1 -0
- package/dist/esm/customer/schema.js +27 -0
- package/dist/esm/customer/schema.test.d.ts +2 -0
- package/dist/esm/customer/schema.test.d.ts.map +1 -0
- package/dist/esm/customer/schema.test.js +40 -0
- package/dist/esm/customer/users/resources.d.ts.map +1 -1
- package/dist/esm/customer/users/resources.js +7 -7
- package/dist/esm/customer/users/schema.d.ts +215 -105
- package/dist/esm/customer/users/schema.d.ts.map +1 -1
- package/dist/esm/customer/users/schema.js +113 -58
- package/dist/esm/customer/users/schema.test.js +598 -66
- package/dist/esm/customer/users/utils.d.ts +3 -2
- package/dist/esm/customer/users/utils.d.ts.map +1 -1
- package/dist/esm/customer/users/utils.test.d.ts +2 -0
- package/dist/esm/customer/users/utils.test.d.ts.map +1 -0
- package/dist/esm/customer/users/utils.test.js +143 -0
- package/dist/esm/identity/schema.d.ts +5 -1
- package/dist/esm/identity/schema.d.ts.map +1 -1
- package/dist/esm/identity/schema.js +5 -2
- package/dist/esm/identity/schema.test.d.ts +2 -0
- package/dist/esm/identity/schema.test.d.ts.map +1 -0
- package/dist/esm/identity/schema.test.js +43 -0
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.d.ts +34 -28
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.d.ts.map +1 -1
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.js +63 -22
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.test.d.ts +2 -0
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.test.d.ts.map +1 -0
- package/dist/esm/oauth/authorize/schema/grants/authorization-code.test.js +331 -0
- package/dist/esm/oauth/authorize/schema/grants/common.d.ts +6 -0
- package/dist/esm/oauth/authorize/schema/grants/common.d.ts.map +1 -0
- package/dist/esm/oauth/authorize/schema/grants/common.js +11 -0
- package/dist/esm/oauth/authorize/schema/grants/implicit.d.ts +18 -10
- package/dist/esm/oauth/authorize/schema/grants/implicit.d.ts.map +1 -1
- package/dist/esm/oauth/authorize/schema/grants/implicit.js +22 -10
- package/dist/esm/oauth/authorize/schema/schema.d.ts +48 -36
- package/dist/esm/oauth/authorize/schema/schema.d.ts.map +1 -1
- package/dist/esm/oauth/authorize/schema/schema.js +4 -3
- package/dist/esm/oauth/common/schema.d.ts +24 -7
- package/dist/esm/oauth/common/schema.d.ts.map +1 -1
- package/dist/esm/oauth/common/schema.js +25 -7
- package/dist/esm/oauth/common/schema.test.d.ts +2 -0
- package/dist/esm/oauth/common/schema.test.d.ts.map +1 -0
- package/dist/esm/oauth/common/schema.test.js +280 -0
- package/dist/esm/oauth/index.d.ts +3 -3
- package/dist/esm/oauth/index.d.ts.map +1 -1
- package/dist/esm/oauth/index.js +3 -3
- package/dist/esm/oauth/token/schema/grants/authorization-code.d.ts +16 -9
- package/dist/esm/oauth/token/schema/grants/authorization-code.d.ts.map +1 -1
- package/dist/esm/oauth/token/schema/grants/authorization-code.js +32 -11
- package/dist/esm/oauth/token/schema/grants/client-credentials.d.ts +16 -17
- package/dist/esm/oauth/token/schema/grants/client-credentials.d.ts.map +1 -1
- package/dist/esm/oauth/token/schema/grants/client-credentials.js +19 -15
- package/dist/esm/oauth/token/schema/grants/common.d.ts +6 -0
- package/dist/esm/oauth/token/schema/grants/common.d.ts.map +1 -0
- package/dist/esm/oauth/token/schema/grants/common.js +16 -0
- package/dist/esm/oauth/token/schema/grants/refresh-token.d.ts +15 -8
- package/dist/esm/oauth/token/schema/grants/refresh-token.d.ts.map +1 -1
- package/dist/esm/oauth/token/schema/grants/refresh-token.js +23 -10
- package/dist/esm/oauth/token/schema/schema.d.ts +48 -21
- package/dist/esm/oauth/token/schema/schema.d.ts.map +1 -1
- package/dist/esm/oauth/token/schema/schema.js +59 -4
- package/dist/esm/oauth/token/schema/schema.test.d.ts +2 -0
- package/dist/esm/oauth/token/schema/schema.test.d.ts.map +1 -0
- package/dist/esm/oauth/token/schema/schema.test.js +136 -0
- package/dist/esm/workspace/authorization/schema.d.ts +62 -27
- package/dist/esm/workspace/authorization/schema.d.ts.map +1 -1
- package/dist/esm/workspace/authorization/schema.js +27 -15
- package/dist/esm/workspace/branding/schema.d.ts +47 -37
- package/dist/esm/workspace/branding/schema.d.ts.map +1 -1
- package/dist/esm/workspace/branding/schema.js +29 -17
- package/dist/esm/workspace/membership/schema.d.ts +42 -20
- package/dist/esm/workspace/membership/schema.d.ts.map +1 -1
- package/dist/esm/workspace/membership/schema.js +14 -7
- package/dist/esm/workspace/registration/schema.d.ts +41 -27
- package/dist/esm/workspace/registration/schema.d.ts.map +1 -1
- package/dist/esm/workspace/registration/schema.js +32 -16
- package/dist/esm/workspace/settings/schema.d.ts +20 -19
- package/dist/esm/workspace/settings/schema.d.ts.map +1 -1
- package/dist/esm/workspace/settings/schema.js +15 -8
- package/dist/esm/workspace/settings/schema.test.d.ts +2 -0
- package/dist/esm/workspace/settings/schema.test.d.ts.map +1 -0
- package/dist/esm/workspace/settings/schema.test.js +70 -0
- package/dist/esm/workspace/tenant/schema.d.ts +88 -56
- package/dist/esm/workspace/tenant/schema.d.ts.map +1 -1
- package/dist/esm/workspace/tenant/schema.js +29 -15
- package/dist/esm/workspace/tenant/schema.test.d.ts +2 -0
- package/dist/esm/workspace/tenant/schema.test.d.ts.map +1 -0
- package/dist/esm/workspace/tenant/schema.test.js +233 -0
- package/dist/esm/workspace/user/notifications/schema.d.ts +70 -56
- package/dist/esm/workspace/user/notifications/schema.d.ts.map +1 -1
- package/dist/esm/workspace/user/notifications/schema.js +45 -31
- package/dist/esm/workspace/user/preferences/schema.d.ts +29 -25
- package/dist/esm/workspace/user/preferences/schema.d.ts.map +1 -1
- package/dist/esm/workspace/user/preferences/schema.js +25 -13
- package/dist/esm/workspace/utils.d.ts +0 -3
- package/dist/esm/workspace/utils.d.ts.map +1 -1
- package/dist/esm/workspace/utils.js +0 -3
- package/dist/esm/workspace/utils.test.d.ts +2 -0
- package/dist/esm/workspace/utils.test.d.ts.map +1 -0
- package/dist/esm/workspace/utils.test.js +61 -0
- package/package.json +3 -3
- package/dist/cjs/action/schema/operations/set-password.d.ts +0 -31
- package/dist/cjs/action/schema/operations/set-password.d.ts.map +0 -1
- package/dist/cjs/action/schema/operations/set-password.js +0 -18
- package/dist/cjs/authentication/strategies/schema/types/password.d.ts +0 -132
- package/dist/cjs/authentication/strategies/schema/types/password.d.ts.map +0 -1
- package/dist/cjs/authentication/strategies/schema/types/password.js +0 -52
- package/dist/cjs/authorization/utils.d.ts +0 -11
- package/dist/cjs/authorization/utils.d.ts.map +0 -1
- package/dist/cjs/authorization/utils.js +0 -23
- package/dist/cjs/customer/schema/organization.d.ts +0 -54
- package/dist/cjs/customer/schema/organization.d.ts.map +0 -1
- package/dist/cjs/customer/schema/organization.js +0 -40
- package/dist/cjs/customer/schema/schema.d.ts +0 -4
- package/dist/cjs/customer/schema/schema.d.ts.map +0 -1
- package/dist/cjs/customer/schema/schema.js +0 -19
- package/dist/cjs/customer/schema/utils.d.ts +0 -11
- package/dist/cjs/customer/schema/utils.d.ts.map +0 -1
- package/dist/cjs/customer/schema/utils.js +0 -23
- package/dist/esm/action/schema/operations/set-password.d.ts +0 -31
- package/dist/esm/action/schema/operations/set-password.d.ts.map +0 -1
- package/dist/esm/action/schema/operations/set-password.js +0 -15
- package/dist/esm/authentication/strategies/schema/types/password.d.ts +0 -132
- package/dist/esm/authentication/strategies/schema/types/password.d.ts.map +0 -1
- package/dist/esm/authentication/strategies/schema/types/password.js +0 -49
- package/dist/esm/authorization/utils.d.ts +0 -11
- package/dist/esm/authorization/utils.d.ts.map +0 -1
- package/dist/esm/authorization/utils.js +0 -15
- package/dist/esm/customer/schema/organization.d.ts +0 -54
- package/dist/esm/customer/schema/organization.d.ts.map +0 -1
- package/dist/esm/customer/schema/organization.js +0 -37
- package/dist/esm/customer/schema/schema.d.ts +0 -4
- package/dist/esm/customer/schema/schema.d.ts.map +0 -1
- package/dist/esm/customer/schema/schema.js +0 -3
- package/dist/esm/customer/schema/utils.d.ts +0 -11
- package/dist/esm/customer/schema/utils.d.ts.map +0 -1
- package/dist/esm/customer/schema/utils.js +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,511 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-beta.80](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.79...identity-sdk-v0.0.2-beta.80) (2026-05-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct session redirectPath regex ([516761a](https://github.com/go-mondo/identity-node-sdk/commit/516761a704b597a53d7d372618a68e34e880f3c9))
|
|
9
|
+
|
|
10
|
+
## [0.0.2-beta.79](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.78...identity-sdk-v0.0.2-beta.79) (2026-05-07)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* use redirect path ov ([45203a6](https://github.com/go-mondo/identity-node-sdk/commit/45203a6c2ba920edfa3d757f0ddd9d7607cc3285))
|
|
16
|
+
|
|
17
|
+
## [0.0.2-beta.78](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.77...identity-sdk-v0.0.2-beta.78) (2026-05-07)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* reverting incorrect user schema changes ([4c25013](https://github.com/go-mondo/identity-node-sdk/commit/4c25013fb3b62bbb7fcc70466c92d957877f07dc))
|
|
23
|
+
|
|
24
|
+
## [0.0.2-beta.77](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.76...identity-sdk-v0.0.2-beta.77) (2026-05-06)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* authorization result schema ([549f07b](https://github.com/go-mondo/identity-node-sdk/commit/549f07b9b971cbd9a4e156b8baa8f86ed5c57963))
|
|
30
|
+
|
|
31
|
+
## [0.0.2-beta.76](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.75...identity-sdk-v0.0.2-beta.76) (2026-05-06)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* allow null auth values for removal ([067e3e9](https://github.com/go-mondo/identity-node-sdk/commit/067e3e9404506dbf1f9548d879523bf58b1480ba))
|
|
37
|
+
|
|
38
|
+
## [0.0.2-beta.75](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.74...identity-sdk-v0.0.2-beta.75) (2026-05-06)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* remove symmetric algos ([e020d2c](https://github.com/go-mondo/identity-node-sdk/commit/e020d2c2e917a2fc49761731abb96bfdf067132d))
|
|
44
|
+
|
|
45
|
+
## [0.0.2-beta.74](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.73...identity-sdk-v0.0.2-beta.74) (2026-05-06)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* accept null values ([7c493d3](https://github.com/go-mondo/identity-node-sdk/commit/7c493d37979c106b619d67d962b3fc007af15287))
|
|
51
|
+
|
|
52
|
+
## [0.0.2-beta.73](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.72...identity-sdk-v0.0.2-beta.73) (2026-05-06)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Bug Fixes
|
|
56
|
+
|
|
57
|
+
* user insert schema verified attributes ([6ec4826](https://github.com/go-mondo/identity-node-sdk/commit/6ec48269a59f5ba6f3647ba40fdb74479ee3c83f))
|
|
58
|
+
|
|
59
|
+
## [0.0.2-beta.72](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.71...identity-sdk-v0.0.2-beta.72) (2026-05-06)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Bug Fixes
|
|
63
|
+
|
|
64
|
+
* issue w/ insertApp ([20fe453](https://github.com/go-mondo/identity-node-sdk/commit/20fe4537192204c6640ca13705e25d29bc37ce7c))
|
|
65
|
+
|
|
66
|
+
## [0.0.2-beta.71](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.70...identity-sdk-v0.0.2-beta.71) (2026-03-18)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
* bump ([932fc74](https://github.com/go-mondo/identity-node-sdk/commit/932fc74ef134cd71649adc57d4e952be319598b8))
|
|
72
|
+
|
|
73
|
+
## [0.0.2-beta.70](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.69...identity-sdk-v0.0.2-beta.70) (2026-03-18)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Bug Fixes
|
|
77
|
+
|
|
78
|
+
* bump ([fa5fcf6](https://github.com/go-mondo/identity-node-sdk/commit/fa5fcf6f00a3917a9c2c87b949d096a1989b5a95))
|
|
79
|
+
|
|
80
|
+
## [0.0.2-beta.69](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.68...identity-sdk-v0.0.2-beta.69) (2026-03-18)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Bug Fixes
|
|
84
|
+
|
|
85
|
+
* remove old password schemas ([24ba88a](https://github.com/go-mondo/identity-node-sdk/commit/24ba88a2c110301bac9ddc397b9c6376a28915f3))
|
|
86
|
+
|
|
87
|
+
## [0.0.2-beta.68](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.67...identity-sdk-v0.0.2-beta.68) (2026-03-05)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Bug Fixes
|
|
91
|
+
|
|
92
|
+
* add logic to require at least one identifier ([f524f5a](https://github.com/go-mondo/identity-node-sdk/commit/f524f5ac26b5a7524e05caad965e0dcaf748ccda))
|
|
93
|
+
|
|
94
|
+
## [0.0.2-beta.67](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.66...identity-sdk-v0.0.2-beta.67) (2026-03-05)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Bug Fixes
|
|
98
|
+
|
|
99
|
+
* format phone numbers to e164 ([c28dce7](https://github.com/go-mondo/identity-node-sdk/commit/c28dce7cd79b2e300cef50a39d7cde7f9ed005c3))
|
|
100
|
+
|
|
101
|
+
## [0.0.2-beta.66](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.65...identity-sdk-v0.0.2-beta.66) (2026-03-05)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* user verified attribute changes ([45943da](https://github.com/go-mondo/identity-node-sdk/commit/45943da44efc0442f8f71029ffca0c73bc518b2a))
|
|
107
|
+
|
|
108
|
+
## [0.0.2-beta.65](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.64...identity-sdk-v0.0.2-beta.65) (2026-03-05)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Bug Fixes
|
|
112
|
+
|
|
113
|
+
* optional settings updated date ([735f9b3](https://github.com/go-mondo/identity-node-sdk/commit/735f9b32a2f63d8017e9c856afe8745a2b152b25))
|
|
114
|
+
|
|
115
|
+
## [0.0.2-beta.64](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.63...identity-sdk-v0.0.2-beta.64) (2026-03-05)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* self reg response ([b11c6ec](https://github.com/go-mondo/identity-node-sdk/commit/b11c6ec2452c59c28ea1e6192cae0efcc68b58c7))
|
|
121
|
+
|
|
122
|
+
## [0.0.2-beta.63](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.62...identity-sdk-v0.0.2-beta.63) (2026-02-11)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Bug Fixes
|
|
126
|
+
|
|
127
|
+
* imports | implicit token ([a361826](https://github.com/go-mondo/identity-node-sdk/commit/a3618269417a068dd8c1bebef3565d491424e0f4))
|
|
128
|
+
|
|
129
|
+
## [0.0.2-beta.62](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.61...identity-sdk-v0.0.2-beta.62) (2025-12-21)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Bug Fixes
|
|
133
|
+
|
|
134
|
+
* export scope set ([6d3f5c6](https://github.com/go-mondo/identity-node-sdk/commit/6d3f5c69fc80b5eb4e91a8bca173c7a43a4cd82a))
|
|
135
|
+
|
|
136
|
+
## [0.0.2-beta.61](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.60...identity-sdk-v0.0.2-beta.61) (2025-12-21)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Bug Fixes
|
|
140
|
+
|
|
141
|
+
* set updates ([993eac8](https://github.com/go-mondo/identity-node-sdk/commit/993eac87d401cdc2716fcdea113c9d4af11cfb81))
|
|
142
|
+
|
|
143
|
+
## [0.0.2-beta.60](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.59...identity-sdk-v0.0.2-beta.60) (2025-12-19)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Bug Fixes
|
|
147
|
+
|
|
148
|
+
* oauth schemas ([d11a190](https://github.com/go-mondo/identity-node-sdk/commit/d11a19086815f3323e15215a70c7065b3477a9c5))
|
|
149
|
+
|
|
150
|
+
## [0.0.2-beta.59](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.58...identity-sdk-v0.0.2-beta.59) (2025-12-19)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Bug Fixes
|
|
154
|
+
|
|
155
|
+
* renaming oauth grant schemas ([4f4f7d6](https://github.com/go-mondo/identity-node-sdk/commit/4f4f7d698cf6a202dfceabce320b1459d1749f89))
|
|
156
|
+
|
|
157
|
+
## [0.0.2-beta.58](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.57...identity-sdk-v0.0.2-beta.58) (2025-12-19)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
161
|
+
|
|
162
|
+
* node v20 ([7c3c821](https://github.com/go-mondo/identity-node-sdk/commit/7c3c8212ccac73bdf86bb79798d1e2632a61af81))
|
|
163
|
+
|
|
164
|
+
## [0.0.2-beta.57](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.56...identity-sdk-v0.0.2-beta.57) (2025-12-19)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Bug Fixes
|
|
168
|
+
|
|
169
|
+
* github actions... ugh ([2e20ae0](https://github.com/go-mondo/identity-node-sdk/commit/2e20ae0654f4b92290faf1812d76d4617e45e7f3))
|
|
170
|
+
|
|
171
|
+
## [0.0.2-beta.56](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.55...identity-sdk-v0.0.2-beta.56) (2025-12-19)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Bug Fixes
|
|
175
|
+
|
|
176
|
+
* oauth schemas ([37c871d](https://github.com/go-mondo/identity-node-sdk/commit/37c871dba293cf383c06192da931adcee171292a))
|
|
177
|
+
|
|
178
|
+
## [0.0.2-beta.55](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.54...identity-sdk-v0.0.2-beta.55) (2025-12-13)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Bug Fixes
|
|
182
|
+
|
|
183
|
+
* restore token for now ([e94db3e](https://github.com/go-mondo/identity-node-sdk/commit/e94db3e3ba685167c91f24712dc26332fea02db5))
|
|
184
|
+
|
|
185
|
+
## [0.0.2-beta.54](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.53...identity-sdk-v0.0.2-beta.54) (2025-12-13)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Bug Fixes
|
|
189
|
+
|
|
190
|
+
* remove env token ([478a0a0](https://github.com/go-mondo/identity-node-sdk/commit/478a0a06e6450000575dc8cdfed7f12a6c5138c9))
|
|
191
|
+
|
|
192
|
+
## [0.0.2-beta.53](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.52...identity-sdk-v0.0.2-beta.53) (2025-12-13)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Bug Fixes
|
|
196
|
+
|
|
197
|
+
* trusted publisher ([52f77d2](https://github.com/go-mondo/identity-node-sdk/commit/52f77d2e97b0c0ee8273b1f2ac57dee7702c6971))
|
|
198
|
+
|
|
199
|
+
## [0.0.2-beta.52](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.51...identity-sdk-v0.0.2-beta.52) (2025-12-13)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Bug Fixes
|
|
203
|
+
|
|
204
|
+
* bump ([82b975b](https://github.com/go-mondo/identity-node-sdk/commit/82b975b47a84a0e6e15b684ffe04f30af32a5704))
|
|
205
|
+
|
|
206
|
+
## [0.0.2-beta.51](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.50...identity-sdk-v0.0.2-beta.51) (2025-12-13)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Bug Fixes
|
|
210
|
+
|
|
211
|
+
* bump ([c8a82e1](https://github.com/go-mondo/identity-node-sdk/commit/c8a82e116d470b3ca404e70292f8f89160c270b2))
|
|
212
|
+
|
|
213
|
+
## [0.0.2-beta.50](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.49...identity-sdk-v0.0.2-beta.50) (2025-12-12)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Bug Fixes
|
|
217
|
+
|
|
218
|
+
* renaming ScopeSchema to ScopeStringSchema and exporting it ([d793d58](https://github.com/go-mondo/identity-node-sdk/commit/d793d5868490acba478fc4acd35df4b41ae7992a))
|
|
219
|
+
|
|
220
|
+
## [0.0.2-beta.49](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.48...identity-sdk-v0.0.2-beta.49) (2025-12-06)
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
### Bug Fixes
|
|
224
|
+
|
|
225
|
+
* pagination ([f10f276](https://github.com/go-mondo/identity-node-sdk/commit/f10f276add2cf8f75eecdbb388231c21804a33b6))
|
|
226
|
+
|
|
227
|
+
## [0.0.2-beta.48](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.47...identity-sdk-v0.0.2-beta.48) (2025-12-02)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
### Bug Fixes
|
|
231
|
+
|
|
232
|
+
* removing root path ([bd6b5a0](https://github.com/go-mondo/identity-node-sdk/commit/bd6b5a07463d460f633a688bf0346577289aaf70))
|
|
233
|
+
|
|
234
|
+
## [0.0.2-beta.47](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.46...identity-sdk-v0.0.2-beta.47) (2025-12-02)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### Bug Fixes
|
|
238
|
+
|
|
239
|
+
* adding audience param ([f7c7645](https://github.com/go-mondo/identity-node-sdk/commit/f7c76458237d1a4099abc65eecf2d40bcb4405bf))
|
|
240
|
+
|
|
241
|
+
## [0.0.2-beta.46](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.45...identity-sdk-v0.0.2-beta.46) (2025-12-02)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### Bug Fixes
|
|
245
|
+
|
|
246
|
+
* default token_type ([aa5daf9](https://github.com/go-mondo/identity-node-sdk/commit/aa5daf956c1262b1a488fe40f2ea8dd3bef7eae1))
|
|
247
|
+
|
|
248
|
+
## [0.0.2-beta.45](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.44...identity-sdk-v0.0.2-beta.45) (2025-12-02)
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
### Bug Fixes
|
|
252
|
+
|
|
253
|
+
* oauth schema names ([353a848](https://github.com/go-mondo/identity-node-sdk/commit/353a8483d5f95891dc45e5ef153c2cd5e5642ece))
|
|
254
|
+
|
|
255
|
+
## [0.0.2-beta.44](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.43...identity-sdk-v0.0.2-beta.44) (2025-11-30)
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
|
|
260
|
+
* recursive object ([cbc9d97](https://github.com/go-mondo/identity-node-sdk/commit/cbc9d979ceea25b229a82f4470b7cb06585098af))
|
|
261
|
+
|
|
262
|
+
## [0.0.2-beta.43](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.42...identity-sdk-v0.0.2-beta.43) (2025-11-27)
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### Bug Fixes
|
|
266
|
+
|
|
267
|
+
* loosen hostname to allow localhost ([6a9e6f6](https://github.com/go-mondo/identity-node-sdk/commit/6a9e6f6d4fc91853ee696ef357b6d43cd2a6e49e))
|
|
268
|
+
|
|
269
|
+
## [0.0.2-beta.42](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.41...identity-sdk-v0.0.2-beta.42) (2025-11-27)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
### Bug Fixes
|
|
273
|
+
|
|
274
|
+
* web url and web url array/set ([fd20ffe](https://github.com/go-mondo/identity-node-sdk/commit/fd20ffee209bd00a079d625399d4403ea2a4945a))
|
|
275
|
+
|
|
276
|
+
## [0.0.2-beta.41](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.40...identity-sdk-v0.0.2-beta.41) (2025-11-26)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Bug Fixes
|
|
280
|
+
|
|
281
|
+
* tweaks ([77369b7](https://github.com/go-mondo/identity-node-sdk/commit/77369b756668f272c7024cb39253797fb29e42f1))
|
|
282
|
+
|
|
283
|
+
## [0.0.2-beta.40](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.39...identity-sdk-v0.0.2-beta.40) (2025-11-20)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Bug Fixes
|
|
287
|
+
|
|
288
|
+
* association schema ([05bc928](https://github.com/go-mondo/identity-node-sdk/commit/05bc9287d992e6533038045cee376b1dfd36df13))
|
|
289
|
+
|
|
290
|
+
## [0.0.2-beta.39](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.38...identity-sdk-v0.0.2-beta.39) (2025-11-01)
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Bug Fixes
|
|
294
|
+
|
|
295
|
+
* auth strategy ([b33449c](https://github.com/go-mondo/identity-node-sdk/commit/b33449cf88470cdca7a7e781cf68aafddaff1a21))
|
|
296
|
+
|
|
297
|
+
## [0.0.2-beta.38](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.37...identity-sdk-v0.0.2-beta.38) (2025-10-31)
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
### Bug Fixes
|
|
301
|
+
|
|
302
|
+
* url schemas ([b990b8a](https://github.com/go-mondo/identity-node-sdk/commit/b990b8a0532d11783f9bfadfd8358fe17c7540f6))
|
|
303
|
+
* url sets ([cad2821](https://github.com/go-mondo/identity-node-sdk/commit/cad28212526f1336724406adf10040a0813d2589))
|
|
304
|
+
|
|
305
|
+
## [0.0.2-beta.37](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.36...identity-sdk-v0.0.2-beta.37) (2025-10-19)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
### Bug Fixes
|
|
309
|
+
|
|
310
|
+
* optional updated dates ([462c939](https://github.com/go-mondo/identity-node-sdk/commit/462c93916ab52f522ae29040fdaa167e8e9605bd))
|
|
311
|
+
|
|
312
|
+
## [0.0.2-beta.36](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.35...identity-sdk-v0.0.2-beta.36) (2025-10-19)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
### Bug Fixes
|
|
316
|
+
|
|
317
|
+
* default reg type ([7f4ca04](https://github.com/go-mondo/identity-node-sdk/commit/7f4ca0480e4d435f8a3c8a2a8ae113d8728f9965))
|
|
318
|
+
|
|
319
|
+
## [0.0.2-beta.35](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.34...identity-sdk-v0.0.2-beta.35) (2025-10-19)
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### Bug Fixes
|
|
323
|
+
|
|
324
|
+
* tests / auth settings ([f541ecf](https://github.com/go-mondo/identity-node-sdk/commit/f541ecf54cb1882adedc7a451e2e69530f6c8e23))
|
|
325
|
+
|
|
326
|
+
## [0.0.2-beta.34](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.33...identity-sdk-v0.0.2-beta.34) (2025-10-18)
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
### Bug Fixes
|
|
330
|
+
|
|
331
|
+
* tenant schema id ([205ad8c](https://github.com/go-mondo/identity-node-sdk/commit/205ad8c671275b823b2e8186432880f8c383405c))
|
|
332
|
+
|
|
333
|
+
## [0.0.2-beta.33](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.32...identity-sdk-v0.0.2-beta.33) (2025-09-02)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
### Bug Fixes
|
|
337
|
+
|
|
338
|
+
* bump ([fa409f0](https://github.com/go-mondo/identity-node-sdk/commit/fa409f0bbcf88b16857bc6aa2d8e74117a272e39))
|
|
339
|
+
|
|
340
|
+
## [0.0.2-beta.32](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.31...identity-sdk-v0.0.2-beta.32) (2025-09-02)
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
### Bug Fixes
|
|
344
|
+
|
|
345
|
+
* remove ref to src ([c74be93](https://github.com/go-mondo/identity-node-sdk/commit/c74be93680756cb33e4d46328e6373ed16464ae4))
|
|
346
|
+
|
|
347
|
+
## [0.0.2-beta.31](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.30...identity-sdk-v0.0.2-beta.31) (2025-09-02)
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
### Bug Fixes
|
|
351
|
+
|
|
352
|
+
* factory history is required ([06ff6c6](https://github.com/go-mondo/identity-node-sdk/commit/06ff6c6aa9eb12c7f6de0ad839c551a974cbc9e2))
|
|
353
|
+
|
|
354
|
+
## [0.0.2-beta.30](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.29...identity-sdk-v0.0.2-beta.30) (2025-09-02)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
### Bug Fixes
|
|
358
|
+
|
|
359
|
+
* allow array of urls ([83123fb](https://github.com/go-mondo/identity-node-sdk/commit/83123fb2de4a109ab7c3be041ce9081c9523c0da))
|
|
360
|
+
|
|
361
|
+
## [0.0.2-beta.29](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.28...identity-sdk-v0.0.2-beta.29) (2025-09-01)
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
### Bug Fixes
|
|
365
|
+
|
|
366
|
+
* remove branding ([b7e715d](https://github.com/go-mondo/identity-node-sdk/commit/b7e715d81f1c5dd73e547ba024da93ecf5221aab))
|
|
367
|
+
|
|
368
|
+
## [0.0.2-beta.28](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.27...identity-sdk-v0.0.2-beta.28) (2025-09-01)
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
### Bug Fixes
|
|
372
|
+
|
|
373
|
+
* update const ([73bb4cd](https://github.com/go-mondo/identity-node-sdk/commit/73bb4cdc739c2f501b794e17860eb9bda70bced6))
|
|
374
|
+
|
|
375
|
+
## [0.0.2-beta.27](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.26...identity-sdk-v0.0.2-beta.27) (2025-08-29)
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
### Bug Fixes
|
|
379
|
+
|
|
380
|
+
* algo satisfies ([a71e2a1](https://github.com/go-mondo/identity-node-sdk/commit/a71e2a1234385cf13d5905c424165874f4d5a214))
|
|
381
|
+
|
|
382
|
+
## [0.0.2-beta.26](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.25...identity-sdk-v0.0.2-beta.26) (2025-08-29)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
### Bug Fixes
|
|
386
|
+
|
|
387
|
+
* algos ([77c9dcc](https://github.com/go-mondo/identity-node-sdk/commit/77c9dcc6f6a66d25624be3ef6412980ec8974651))
|
|
388
|
+
|
|
389
|
+
## [0.0.2-beta.25](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.24...identity-sdk-v0.0.2-beta.25) (2025-08-29)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### Bug Fixes
|
|
393
|
+
|
|
394
|
+
* auth schemas ([963177b](https://github.com/go-mondo/identity-node-sdk/commit/963177bf5852e8cdc33081b20150da9dcb6a8806))
|
|
395
|
+
|
|
396
|
+
## [0.0.2-beta.24](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.23...identity-sdk-v0.0.2-beta.24) (2025-08-29)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
### Bug Fixes
|
|
400
|
+
|
|
401
|
+
* export CodeChallengeSchema ([297e62f](https://github.com/go-mondo/identity-node-sdk/commit/297e62f759c93378afe03864b918f7e304d59878))
|
|
402
|
+
|
|
403
|
+
## [0.0.2-beta.23](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.22...identity-sdk-v0.0.2-beta.23) (2025-08-29)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
### Bug Fixes
|
|
407
|
+
|
|
408
|
+
* auth schema ([464c4d0](https://github.com/go-mondo/identity-node-sdk/commit/464c4d01cdc24dac8229cce548f08f4b38c49ed3))
|
|
409
|
+
|
|
410
|
+
## [0.0.2-beta.22](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.21...identity-sdk-v0.0.2-beta.22) (2025-08-29)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
### Bug Fixes
|
|
414
|
+
|
|
415
|
+
* session set ([c58f7a2](https://github.com/go-mondo/identity-node-sdk/commit/c58f7a21b10f88d205fca5bf2b3426ea642ea6a5))
|
|
416
|
+
|
|
417
|
+
## [0.0.2-beta.21](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.20...identity-sdk-v0.0.2-beta.21) (2025-08-29)
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
### Bug Fixes
|
|
421
|
+
|
|
422
|
+
* unions ([3537692](https://github.com/go-mondo/identity-node-sdk/commit/35376929279cfd089d145f0face592103644a7b3))
|
|
423
|
+
|
|
424
|
+
## [0.0.2-beta.20](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.19...identity-sdk-v0.0.2-beta.20) (2025-08-29)
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
### Bug Fixes
|
|
428
|
+
|
|
429
|
+
* use date schemas ([dd85f9a](https://github.com/go-mondo/identity-node-sdk/commit/dd85f9a6ef0969c5895134b1181baa731fe0a257))
|
|
430
|
+
|
|
431
|
+
## [0.0.2-beta.19](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.18...identity-sdk-v0.0.2-beta.19) (2025-08-28)
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
### Bug Fixes
|
|
435
|
+
|
|
436
|
+
* bump ([42c54fe](https://github.com/go-mondo/identity-node-sdk/commit/42c54fe7e99d258ff92234d90ccbbff525e88b8f))
|
|
437
|
+
|
|
438
|
+
## [0.0.2-beta.18](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.17...identity-sdk-v0.0.2-beta.18) (2025-08-28)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
### Bug Fixes
|
|
442
|
+
|
|
443
|
+
* tenant schema ([ca25b55](https://github.com/go-mondo/identity-node-sdk/commit/ca25b5581c0f3190cffc125de890c44d167bec68))
|
|
444
|
+
|
|
445
|
+
## [0.0.2-beta.17](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.16...identity-sdk-v0.0.2-beta.17) (2025-08-28)
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
### Bug Fixes
|
|
449
|
+
|
|
450
|
+
* workspace / org ([087ffc0](https://github.com/go-mondo/identity-node-sdk/commit/087ffc0e15b688e86fe4b98c0b73532b4616b4e4))
|
|
451
|
+
|
|
452
|
+
## [0.0.2-beta.16](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.15...identity-sdk-v0.0.2-beta.16) (2025-08-28)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
### Bug Fixes
|
|
456
|
+
|
|
457
|
+
* orgs ([e218bd9](https://github.com/go-mondo/identity-node-sdk/commit/e218bd9d5836787f790997a8dbf2045521cd47b3))
|
|
458
|
+
|
|
459
|
+
## [0.0.2-beta.15](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.14...identity-sdk-v0.0.2-beta.15) (2025-08-28)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
### Bug Fixes
|
|
463
|
+
|
|
464
|
+
* adding date properties ([65868bb](https://github.com/go-mondo/identity-node-sdk/commit/65868bb4ec7fae50b4c64a67f9c2cb8d1ca6bd71))
|
|
465
|
+
|
|
466
|
+
## [0.0.2-beta.14](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.13...identity-sdk-v0.0.2-beta.14) (2025-08-28)
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
### Bug Fixes
|
|
470
|
+
|
|
471
|
+
* removing unions ([843c740](https://github.com/go-mondo/identity-node-sdk/commit/843c7408c4b77537afef9f36d63e0514b2b19173))
|
|
472
|
+
|
|
473
|
+
## [0.0.2-beta.13](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.12...identity-sdk-v0.0.2-beta.13) (2025-08-22)
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
### Features
|
|
477
|
+
|
|
478
|
+
* moving to zod 4 ([684f655](https://github.com/go-mondo/identity-node-sdk/commit/684f655684a918d21d46df19cc6b0c1c4d19b0f2))
|
|
479
|
+
|
|
480
|
+
## [0.0.2-beta.12](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.11...identity-sdk-v0.0.2-beta.12) (2025-06-30)
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Bug Fixes
|
|
484
|
+
|
|
485
|
+
* bump ([0d87fa7](https://github.com/go-mondo/identity-node-sdk/commit/0d87fa7692cb93a1241d387930face5e5fb18425))
|
|
486
|
+
|
|
487
|
+
## [0.0.2-beta.11](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.10...identity-sdk-v0.0.2-beta.11) (2025-06-30)
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
### Bug Fixes
|
|
491
|
+
|
|
492
|
+
* bump ([8617bf6](https://github.com/go-mondo/identity-node-sdk/commit/8617bf660abc4d5c43e5af34cb6a09bd0559c3e0))
|
|
493
|
+
|
|
494
|
+
## [0.0.2-beta.10](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.9...identity-sdk-v0.0.2-beta.10) (2025-06-27)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
### Bug Fixes
|
|
498
|
+
|
|
499
|
+
* updates to schemas and utils ([8ce43e2](https://github.com/go-mondo/identity-node-sdk/commit/8ce43e20da5212c71c176c69ace650f203c37d84))
|
|
500
|
+
|
|
501
|
+
## [0.0.2-beta.9](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.8...identity-sdk-v0.0.2-beta.9) (2025-06-20)
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
### Bug Fixes
|
|
505
|
+
|
|
506
|
+
* adding test ([3f4136f](https://github.com/go-mondo/identity-node-sdk/commit/3f4136f15bbc519a3a060de3308a3e398f8065ae))
|
|
507
|
+
* tweaks ([ef68cd9](https://github.com/go-mondo/identity-node-sdk/commit/ef68cd920af4b371ef6ed8e695b4be2666b1add2))
|
|
508
|
+
|
|
3
509
|
## [0.0.2-beta.8](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.7...identity-sdk-v0.0.2-beta.8) (2025-06-14)
|
|
4
510
|
|
|
5
511
|
|
package/README.md
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
+
import * as z from 'zod/v4';
|
|
1
2
|
export declare const ActionOperation: {
|
|
2
|
-
readonly SET_PASSWORD: "set-password";
|
|
3
3
|
readonly USER_ATTRIBUTE_VERIFICATION: "user-attribute-verification";
|
|
4
4
|
readonly SIGN_UP: "sign-up";
|
|
5
5
|
readonly SIGN_UP_VERIFICATION: "sign-up-verification";
|
|
6
6
|
};
|
|
7
7
|
export type AnyActionOperation = (typeof ActionOperation)[keyof typeof ActionOperation];
|
|
8
|
-
export declare const ActionIdSchema:
|
|
9
|
-
export type ActionId = typeof ActionIdSchema
|
|
10
|
-
export declare const ActionIdPropertySchema:
|
|
11
|
-
id:
|
|
12
|
-
},
|
|
13
|
-
export type ActionIdProperty = typeof ActionIdPropertySchema
|
|
14
|
-
export declare const OperationSchema:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
deactivatedAt
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
8
|
+
export declare const ActionIdSchema: z.ZodString;
|
|
9
|
+
export type ActionId = z.output<typeof ActionIdSchema>;
|
|
10
|
+
export declare const ActionIdPropertySchema: z.ZodObject<{
|
|
11
|
+
id: z.ZodString;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
export type ActionIdProperty = z.output<typeof ActionIdPropertySchema>;
|
|
14
|
+
export declare const OperationSchema: z.ZodEnum<{
|
|
15
|
+
"user-attribute-verification": "user-attribute-verification";
|
|
16
|
+
"sign-up": "sign-up";
|
|
17
|
+
"sign-up-verification": "sign-up-verification";
|
|
18
|
+
}>;
|
|
19
|
+
export declare const BasePayloadSchema: z.ZodObject<{
|
|
20
|
+
metadata: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodUndefined, z.ZodNull, z.ZodCustom<Map<string, string | number | boolean>, Map<string, string | number | boolean>>, z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>]>, z.ZodTransform<Record<string, string | number | boolean> | undefined, Record<string, string | number | boolean> | Map<string, string | number | boolean> | null | undefined>>>;
|
|
21
|
+
deactivatedAt: z.ZodOptional<z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>]>>, z.ZodTransform<string | undefined, Date | undefined>>>;
|
|
22
|
+
deletedAt: z.ZodOptional<z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>]>>, z.ZodTransform<string | undefined, Date | undefined>>>;
|
|
23
|
+
updatedAt: z.ZodPipe<z.ZodUnion<readonly [z.ZodDate, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>]>, z.ZodTransform<string, Date>>;
|
|
24
|
+
attempt: z.ZodNumber;
|
|
25
|
+
expiresAt: z.ZodPipe<z.ZodUnion<readonly [z.ZodDate, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>]>, z.ZodTransform<string, Date>>;
|
|
26
|
+
id: z.ZodString;
|
|
27
|
+
}, z.core.$strip>;
|
|
28
28
|
//# sourceMappingURL=base.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/action/schema/base.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/action/schema/base.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAW5B,eAAO,MAAM,eAAe;;;;CAKlB,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAC5B,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAEzD,eAAO,MAAM,cAAc,aAAsC,CAAC;AAClE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AAEvD,eAAO,MAAM,sBAAsB;;iBAEjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEvE,eAAO,MAAM,eAAe;;;;EAIjB,CAAC;AAEZ,eAAO,MAAM,iBAAiB;;;;;;;;iBAQ5B,CAAC"}
|
|
@@ -1,24 +1,64 @@
|
|
|
1
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
36
|
exports.BasePayloadSchema = exports.OperationSchema = exports.ActionIdPropertySchema = exports.ActionIdSchema = exports.ActionOperation = void 0;
|
|
4
|
-
const
|
|
37
|
+
const z = __importStar(require("zod/v4"));
|
|
5
38
|
const dates_js_1 = require("../../common/schema/dates.js");
|
|
39
|
+
const id_js_1 = require("../../common/schema/id.js");
|
|
6
40
|
const metadata_js_1 = require("../../common/schema/metadata.js");
|
|
41
|
+
const utils_js_1 = require("./utils.js");
|
|
7
42
|
exports.ActionOperation = {
|
|
8
|
-
SET_PASSWORD: 'set-password',
|
|
9
43
|
USER_ATTRIBUTE_VERIFICATION: 'user-attribute-verification',
|
|
10
44
|
SIGN_UP: 'sign-up',
|
|
11
45
|
SIGN_UP_VERIFICATION: 'sign-up-verification',
|
|
12
46
|
};
|
|
13
|
-
exports.ActionIdSchema =
|
|
14
|
-
exports.ActionIdPropertySchema =
|
|
47
|
+
exports.ActionIdSchema = (0, id_js_1.KSUIDSchema)(utils_js_1.Model.Action.UIDPrefix);
|
|
48
|
+
exports.ActionIdPropertySchema = z.object({
|
|
15
49
|
id: exports.ActionIdSchema,
|
|
16
50
|
});
|
|
17
|
-
exports.OperationSchema =
|
|
18
|
-
exports.
|
|
19
|
-
|
|
51
|
+
exports.OperationSchema = z.enum([
|
|
52
|
+
exports.ActionOperation.SIGN_UP,
|
|
53
|
+
exports.ActionOperation.SIGN_UP_VERIFICATION,
|
|
54
|
+
exports.ActionOperation.USER_ATTRIBUTE_VERIFICATION,
|
|
55
|
+
]);
|
|
56
|
+
exports.BasePayloadSchema = z.object({
|
|
57
|
+
...exports.ActionIdPropertySchema.shape,
|
|
58
|
+
attempt: z.number(),
|
|
20
59
|
expiresAt: dates_js_1.RequiredDatePayloadSchema,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
60
|
+
...dates_js_1.UpdatedAtPropertyPayloadSchema.shape,
|
|
61
|
+
...dates_js_1.DeletedAtPropertyPayloadSchema.shape,
|
|
62
|
+
...dates_js_1.DeactivatedAtPropertyPayloadSchema.shape,
|
|
63
|
+
...metadata_js_1.MetadataPayloadPropertySchema.shape,
|
|
64
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.test.d.ts","sourceRoot":"","sources":["../../../../src/action/schema/base.test.ts"],"names":[],"mappings":""}
|