@constructive-io/react 0.11.3 → 0.12.0
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/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +10 -10
- package/admin/hooks/invalidation.js +18 -18
- package/admin/hooks/mutation-keys.d.ts +22 -22
- package/admin/hooks/mutation-keys.js +16 -16
- package/admin/hooks/mutations/index.d.ts +7 -7
- package/admin/hooks/mutations/index.js +7 -7
- package/admin/hooks/mutations/useCreateAppClaimedInviteMutation.d.ts +34 -0
- package/admin/hooks/mutations/{useCreateClaimedInviteMutation.js → useCreateAppClaimedInviteMutation.js} +5 -5
- package/admin/hooks/mutations/useCreateAppInviteMutation.d.ts +34 -0
- package/{public/hooks/mutations/useCreateInviteMutation.js → admin/hooks/mutations/useCreateAppInviteMutation.js} +5 -5
- package/{esm/admin/hooks/mutations/useDeleteClaimedInviteMutation.d.ts → admin/hooks/mutations/useDeleteAppClaimedInviteMutation.d.ts} +10 -10
- package/admin/hooks/mutations/{useDeleteClaimedInviteMutation.js → useDeleteAppClaimedInviteMutation.js} +6 -6
- package/{esm/public/hooks/mutations/useDeleteInviteMutation.d.ts → admin/hooks/mutations/useDeleteAppInviteMutation.d.ts} +10 -10
- package/{public/hooks/mutations/useDeleteInviteMutation.js → admin/hooks/mutations/useDeleteAppInviteMutation.js} +6 -6
- package/admin/hooks/mutations/useSubmitAppInviteCodeMutation.d.ts +20 -0
- package/admin/hooks/mutations/{useSubmitInviteCodeMutation.js → useSubmitAppInviteCodeMutation.js} +5 -5
- package/admin/hooks/mutations/useUpdateAppClaimedInviteMutation.d.ts +40 -0
- package/{public/hooks/mutations/useUpdateClaimedInviteMutation.js → admin/hooks/mutations/useUpdateAppClaimedInviteMutation.js} +8 -8
- package/admin/hooks/mutations/useUpdateAppInviteMutation.d.ts +40 -0
- package/{public/hooks/mutations/useUpdateInviteMutation.js → admin/hooks/mutations/useUpdateAppInviteMutation.js} +8 -8
- package/admin/hooks/queries/index.d.ts +4 -4
- package/admin/hooks/queries/index.js +4 -4
- package/admin/hooks/queries/useAppClaimedInviteQuery.d.ts +65 -0
- package/{public/hooks/queries/useClaimedInviteQuery.js → admin/hooks/queries/useAppClaimedInviteQuery.js} +13 -13
- package/admin/hooks/queries/useAppClaimedInvitesQuery.d.ts +69 -0
- package/admin/hooks/queries/{useClaimedInvitesQuery.js → useAppClaimedInvitesQuery.js} +13 -13
- package/{esm/admin/hooks/queries/useInviteQuery.d.ts → admin/hooks/queries/useAppInviteQuery.d.ts} +15 -15
- package/admin/hooks/queries/{useInviteQuery.js → useAppInviteQuery.js} +13 -13
- package/{esm/public/hooks/queries/useInvitesQuery.d.ts → admin/hooks/queries/useAppInvitesQuery.d.ts} +15 -15
- package/{public/hooks/queries/useInvitesQuery.js → admin/hooks/queries/useAppInvitesQuery.js} +13 -13
- package/admin/hooks/queries/useStepsAchievedQuery.d.ts +3 -3
- package/admin/hooks/queries/useStepsAchievedQuery.js +2 -2
- package/admin/hooks/queries/useStepsRequiredQuery.d.ts +3 -3
- package/admin/hooks/queries/useStepsRequiredQuery.js +2 -2
- package/admin/hooks/query-keys.d.ts +24 -24
- package/admin/hooks/query-keys.js +15 -15
- package/admin/orm/index.d.ts +7 -7
- package/admin/orm/index.js +4 -4
- package/admin/orm/input-types.d.ts +99 -99
- package/admin/orm/models/appClaimedInvite.d.ts +56 -0
- package/{public/orm/models/claimedInvite.js → admin/orm/models/appClaimedInvite.js} +26 -26
- package/admin/orm/models/appInvite.d.ts +56 -0
- package/admin/orm/models/{invite.js → appInvite.js} +26 -26
- package/admin/orm/models/index.d.ts +2 -2
- package/admin/orm/models/index.js +5 -5
- package/admin/orm/mutation/index.d.ts +6 -6
- package/admin/orm/mutation/index.js +6 -6
- package/admin/orm/query/index.d.ts +4 -4
- package/admin/orm/query/index.js +4 -4
- package/admin/schema-types.d.ts +79 -79
- package/admin/types.d.ts +2 -2
- package/auth/hooks/mutation-keys.d.ts +4 -4
- package/auth/hooks/mutation-keys.js +6 -6
- package/auth/hooks/mutations/index.d.ts +2 -2
- package/auth/hooks/mutations/index.js +2 -2
- package/auth/orm/index.d.ts +10 -10
- package/auth/orm/input-types.d.ts +24 -72
- package/auth/orm/mutation/index.d.ts +17 -17
- package/auth/orm/mutation/index.js +24 -24
- package/auth/schema-types.d.ts +16 -44
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +10 -10
- package/esm/admin/hooks/invalidation.js +19 -19
- package/esm/admin/hooks/mutation-keys.d.ts +22 -22
- package/esm/admin/hooks/mutation-keys.js +15 -15
- package/esm/admin/hooks/mutations/index.d.ts +7 -7
- package/esm/admin/hooks/mutations/index.js +7 -7
- package/esm/admin/hooks/mutations/useCreateAppClaimedInviteMutation.d.ts +34 -0
- package/esm/{public/hooks/mutations/useCreateClaimedInviteMutation.js → admin/hooks/mutations/useCreateAppClaimedInviteMutation.js} +6 -6
- package/esm/admin/hooks/mutations/useCreateAppInviteMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/{useCreateInviteMutation.js → useCreateAppInviteMutation.js} +6 -6
- package/esm/{public/hooks/mutations/useDeleteClaimedInviteMutation.d.ts → admin/hooks/mutations/useDeleteAppClaimedInviteMutation.d.ts} +10 -10
- package/esm/{public/hooks/mutations/useDeleteClaimedInviteMutation.js → admin/hooks/mutations/useDeleteAppClaimedInviteMutation.js} +7 -7
- package/esm/admin/hooks/mutations/{useDeleteInviteMutation.d.ts → useDeleteAppInviteMutation.d.ts} +10 -10
- package/esm/{public/hooks/mutations/useDeleteInviteMutation.js → admin/hooks/mutations/useDeleteAppInviteMutation.js} +7 -7
- package/esm/admin/hooks/mutations/useSubmitAppInviteCodeMutation.d.ts +20 -0
- package/esm/{public/hooks/mutations/useSubmitInviteCodeMutation.js → admin/hooks/mutations/useSubmitAppInviteCodeMutation.js} +4 -4
- package/esm/admin/hooks/mutations/useUpdateAppClaimedInviteMutation.d.ts +40 -0
- package/esm/{public/hooks/mutations/useUpdateClaimedInviteMutation.js → admin/hooks/mutations/useUpdateAppClaimedInviteMutation.js} +9 -9
- package/esm/admin/hooks/mutations/useUpdateAppInviteMutation.d.ts +40 -0
- package/esm/{public/hooks/mutations/useUpdateInviteMutation.js → admin/hooks/mutations/useUpdateAppInviteMutation.js} +9 -9
- package/esm/admin/hooks/queries/index.d.ts +4 -4
- package/esm/admin/hooks/queries/index.js +4 -4
- package/esm/admin/hooks/queries/useAppClaimedInviteQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/{useClaimedInviteQuery.js → useAppClaimedInviteQuery.js} +10 -10
- package/esm/admin/hooks/queries/useAppClaimedInvitesQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/{useClaimedInvitesQuery.js → useAppClaimedInvitesQuery.js} +10 -10
- package/esm/{public/hooks/queries/useInviteQuery.d.ts → admin/hooks/queries/useAppInviteQuery.d.ts} +15 -15
- package/esm/{public/hooks/queries/useInviteQuery.js → admin/hooks/queries/useAppInviteQuery.js} +10 -10
- package/{public/hooks/queries/useInvitesQuery.d.ts → esm/admin/hooks/queries/useAppInvitesQuery.d.ts} +15 -15
- package/esm/{public/hooks/queries/useInvitesQuery.js → admin/hooks/queries/useAppInvitesQuery.js} +10 -10
- package/esm/admin/hooks/queries/useStepsAchievedQuery.d.ts +3 -3
- package/esm/admin/hooks/queries/useStepsAchievedQuery.js +2 -2
- package/esm/admin/hooks/queries/useStepsRequiredQuery.d.ts +3 -3
- package/esm/admin/hooks/queries/useStepsRequiredQuery.js +2 -2
- package/esm/admin/hooks/query-keys.d.ts +24 -24
- package/esm/admin/hooks/query-keys.js +14 -14
- package/esm/admin/orm/index.d.ts +7 -7
- package/esm/admin/orm/index.js +4 -4
- package/esm/admin/orm/input-types.d.ts +99 -99
- package/esm/admin/orm/models/appClaimedInvite.d.ts +56 -0
- package/esm/admin/orm/models/{claimedInvite.js → appClaimedInvite.js} +24 -24
- package/esm/admin/orm/models/appInvite.d.ts +56 -0
- package/esm/{public/orm/models/invite.js → admin/orm/models/appInvite.js} +24 -24
- package/esm/admin/orm/models/index.d.ts +2 -2
- package/esm/admin/orm/models/index.js +2 -2
- package/esm/admin/orm/mutation/index.d.ts +6 -6
- package/esm/admin/orm/mutation/index.js +6 -6
- package/esm/admin/orm/query/index.d.ts +4 -4
- package/esm/admin/orm/query/index.js +4 -4
- package/esm/admin/schema-types.d.ts +79 -79
- package/esm/admin/types.d.ts +2 -2
- package/esm/auth/hooks/mutation-keys.d.ts +4 -4
- package/esm/auth/hooks/mutation-keys.js +6 -6
- package/esm/auth/hooks/mutations/index.d.ts +2 -2
- package/esm/auth/hooks/mutations/index.js +2 -2
- package/esm/auth/orm/index.d.ts +10 -10
- package/esm/auth/orm/input-types.d.ts +24 -72
- package/esm/auth/orm/mutation/index.d.ts +17 -17
- package/esm/auth/orm/mutation/index.js +24 -24
- package/esm/auth/schema-types.d.ts +16 -44
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +16 -10
- package/esm/public/hooks/invalidation.js +35 -19
- package/esm/public/hooks/mutation-keys.d.ts +39 -27
- package/esm/public/hooks/mutation-keys.js +29 -22
- package/esm/public/hooks/mutations/index.d.ts +12 -9
- package/esm/public/hooks/mutations/index.js +12 -9
- package/esm/public/hooks/mutations/useCreateAppClaimedInviteMutation.d.ts +34 -0
- package/esm/{admin/hooks/mutations/useCreateClaimedInviteMutation.js → public/hooks/mutations/useCreateAppClaimedInviteMutation.js} +6 -6
- package/esm/public/hooks/mutations/useCreateAppInviteMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateInviteMutation.js → useCreateAppInviteMutation.js} +6 -6
- package/esm/public/hooks/mutations/useCreateRateLimitsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateRateLimitsModuleMutation.js +31 -0
- package/{public/hooks/mutations/useDeleteClaimedInviteMutation.d.ts → esm/public/hooks/mutations/useDeleteAppClaimedInviteMutation.d.ts} +10 -10
- package/esm/{admin/hooks/mutations/useDeleteClaimedInviteMutation.js → public/hooks/mutations/useDeleteAppClaimedInviteMutation.js} +7 -7
- package/{public/hooks/mutations/useDeleteInviteMutation.d.ts → esm/public/hooks/mutations/useDeleteAppInviteMutation.d.ts} +10 -10
- package/esm/{admin/hooks/mutations/useDeleteInviteMutation.js → public/hooks/mutations/useDeleteAppInviteMutation.js} +7 -7
- package/esm/public/hooks/mutations/useDeleteRateLimitsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteRateLimitsModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useSubmitAppInviteCodeMutation.d.ts +20 -0
- package/esm/{admin/hooks/mutations/useSubmitInviteCodeMutation.js → public/hooks/mutations/useSubmitAppInviteCodeMutation.js} +4 -4
- package/esm/public/hooks/mutations/useUpdateAppClaimedInviteMutation.d.ts +40 -0
- package/esm/{admin/hooks/mutations/useUpdateClaimedInviteMutation.js → public/hooks/mutations/useUpdateAppClaimedInviteMutation.js} +9 -9
- package/esm/public/hooks/mutations/useUpdateAppInviteMutation.d.ts +40 -0
- package/esm/{admin/hooks/mutations/useUpdateInviteMutation.js → public/hooks/mutations/useUpdateAppInviteMutation.js} +9 -9
- package/esm/public/hooks/mutations/useUpdateRateLimitsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateRateLimitsModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +6 -4
- package/esm/public/hooks/queries/index.js +6 -4
- package/esm/public/hooks/queries/useAppClaimedInviteQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useClaimedInviteQuery.js → useAppClaimedInviteQuery.js} +10 -10
- package/esm/public/hooks/queries/useAppClaimedInvitesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useClaimedInvitesQuery.js → useAppClaimedInvitesQuery.js} +10 -10
- package/{admin/hooks/queries/useInviteQuery.d.ts → esm/public/hooks/queries/useAppInviteQuery.d.ts} +15 -15
- package/esm/{admin/hooks/queries/useInviteQuery.js → public/hooks/queries/useAppInviteQuery.js} +10 -10
- package/{admin/hooks/queries/useInvitesQuery.d.ts → esm/public/hooks/queries/useAppInvitesQuery.d.ts} +15 -15
- package/esm/{admin/hooks/queries/useInvitesQuery.js → public/hooks/queries/useAppInvitesQuery.js} +10 -10
- package/esm/public/hooks/queries/useRateLimitsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useRateLimitsModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useRateLimitsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useRateLimitsModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useStepsAchievedQuery.d.ts +3 -3
- package/esm/public/hooks/queries/useStepsAchievedQuery.js +2 -2
- package/esm/public/hooks/queries/useStepsRequiredQuery.d.ts +3 -3
- package/esm/public/hooks/queries/useStepsRequiredQuery.js +2 -2
- package/esm/public/hooks/query-keys.d.ts +39 -25
- package/esm/public/hooks/query-keys.js +23 -15
- package/esm/public/orm/index.d.ts +19 -17
- package/esm/public/orm/index.js +6 -4
- package/esm/public/orm/input-types.d.ts +402 -230
- package/esm/public/orm/input-types.js +3 -3
- package/esm/public/orm/models/appClaimedInvite.d.ts +56 -0
- package/esm/public/orm/models/{claimedInvite.js → appClaimedInvite.js} +24 -24
- package/esm/public/orm/models/appInvite.d.ts +56 -0
- package/esm/{admin/orm/models/invite.js → public/orm/models/appInvite.js} +24 -24
- package/esm/public/orm/models/index.d.ts +3 -2
- package/esm/public/orm/models/index.js +3 -2
- package/esm/public/orm/models/rateLimitsModule.d.ts +56 -0
- package/esm/public/orm/models/rateLimitsModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +22 -22
- package/esm/public/orm/mutation/index.js +30 -30
- package/esm/public/orm/query/index.d.ts +4 -4
- package/esm/public/orm/query/index.js +4 -4
- package/esm/public/schema-types.d.ts +230 -145
- package/esm/public/types.d.ts +13 -2
- package/package.json +5 -5
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +16 -10
- package/public/hooks/invalidation.js +34 -18
- package/public/hooks/mutation-keys.d.ts +39 -27
- package/public/hooks/mutation-keys.js +30 -23
- package/public/hooks/mutations/index.d.ts +12 -9
- package/public/hooks/mutations/index.js +12 -9
- package/public/hooks/mutations/useCreateAppClaimedInviteMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateClaimedInviteMutation.js → useCreateAppClaimedInviteMutation.js} +5 -5
- package/public/hooks/mutations/useCreateAppInviteMutation.d.ts +34 -0
- package/{admin/hooks/mutations/useCreateInviteMutation.js → public/hooks/mutations/useCreateAppInviteMutation.js} +5 -5
- package/public/hooks/mutations/useCreateRateLimitsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateRateLimitsModuleMutation.js +34 -0
- package/{admin/hooks/mutations/useDeleteClaimedInviteMutation.d.ts → public/hooks/mutations/useDeleteAppClaimedInviteMutation.d.ts} +10 -10
- package/public/hooks/mutations/{useDeleteClaimedInviteMutation.js → useDeleteAppClaimedInviteMutation.js} +6 -6
- package/{admin/hooks/mutations/useDeleteInviteMutation.d.ts → public/hooks/mutations/useDeleteAppInviteMutation.d.ts} +10 -10
- package/{admin/hooks/mutations/useDeleteInviteMutation.js → public/hooks/mutations/useDeleteAppInviteMutation.js} +6 -6
- package/public/hooks/mutations/useDeleteRateLimitsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteRateLimitsModuleMutation.js +39 -0
- package/public/hooks/mutations/useSubmitAppInviteCodeMutation.d.ts +20 -0
- package/public/hooks/mutations/{useSubmitInviteCodeMutation.js → useSubmitAppInviteCodeMutation.js} +5 -5
- package/public/hooks/mutations/useUpdateAppClaimedInviteMutation.d.ts +40 -0
- package/{admin/hooks/mutations/useUpdateClaimedInviteMutation.js → public/hooks/mutations/useUpdateAppClaimedInviteMutation.js} +8 -8
- package/public/hooks/mutations/useUpdateAppInviteMutation.d.ts +40 -0
- package/{admin/hooks/mutations/useUpdateInviteMutation.js → public/hooks/mutations/useUpdateAppInviteMutation.js} +8 -8
- package/public/hooks/mutations/useUpdateRateLimitsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateRateLimitsModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +6 -4
- package/public/hooks/queries/index.js +6 -4
- package/public/hooks/queries/useAppClaimedInviteQuery.d.ts +65 -0
- package/{admin/hooks/queries/useClaimedInviteQuery.js → public/hooks/queries/useAppClaimedInviteQuery.js} +13 -13
- package/public/hooks/queries/useAppClaimedInvitesQuery.d.ts +69 -0
- package/public/hooks/queries/{useClaimedInvitesQuery.js → useAppClaimedInvitesQuery.js} +13 -13
- package/public/hooks/queries/{useInviteQuery.d.ts → useAppInviteQuery.d.ts} +15 -15
- package/public/hooks/queries/{useInviteQuery.js → useAppInviteQuery.js} +13 -13
- package/{esm/admin/hooks/queries/useInvitesQuery.d.ts → public/hooks/queries/useAppInvitesQuery.d.ts} +15 -15
- package/{admin/hooks/queries/useInvitesQuery.js → public/hooks/queries/useAppInvitesQuery.js} +13 -13
- package/public/hooks/queries/useRateLimitsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useRateLimitsModuleQuery.js +53 -0
- package/public/hooks/queries/useRateLimitsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useRateLimitsModulesQuery.js +38 -0
- package/public/hooks/queries/useStepsAchievedQuery.d.ts +3 -3
- package/public/hooks/queries/useStepsAchievedQuery.js +2 -2
- package/public/hooks/queries/useStepsRequiredQuery.d.ts +3 -3
- package/public/hooks/queries/useStepsRequiredQuery.js +2 -2
- package/public/hooks/query-keys.d.ts +39 -25
- package/public/hooks/query-keys.js +24 -16
- package/public/orm/index.d.ts +19 -17
- package/public/orm/index.js +6 -4
- package/public/orm/input-types.d.ts +402 -230
- package/public/orm/input-types.js +3 -3
- package/public/orm/models/appClaimedInvite.d.ts +56 -0
- package/{admin/orm/models/claimedInvite.js → public/orm/models/appClaimedInvite.js} +26 -26
- package/public/orm/models/appInvite.d.ts +56 -0
- package/public/orm/models/{invite.js → appInvite.js} +26 -26
- package/public/orm/models/index.d.ts +3 -2
- package/public/orm/models/index.js +8 -6
- package/public/orm/models/rateLimitsModule.d.ts +56 -0
- package/public/orm/models/rateLimitsModule.js +100 -0
- package/public/orm/mutation/index.d.ts +22 -22
- package/public/orm/mutation/index.js +30 -30
- package/public/orm/query/index.d.ts +4 -4
- package/public/orm/query/index.js +4 -4
- package/public/schema-types.d.ts +230 -145
- package/public/types.d.ts +13 -2
- package/admin/hooks/mutations/useCreateClaimedInviteMutation.d.ts +0 -34
- package/admin/hooks/mutations/useCreateInviteMutation.d.ts +0 -34
- package/admin/hooks/mutations/useSubmitInviteCodeMutation.d.ts +0 -20
- package/admin/hooks/mutations/useUpdateClaimedInviteMutation.d.ts +0 -40
- package/admin/hooks/mutations/useUpdateInviteMutation.d.ts +0 -40
- package/admin/hooks/queries/useClaimedInviteQuery.d.ts +0 -65
- package/admin/hooks/queries/useClaimedInvitesQuery.d.ts +0 -69
- package/admin/orm/models/claimedInvite.d.ts +0 -56
- package/admin/orm/models/invite.d.ts +0 -56
- package/esm/admin/hooks/mutations/useCreateClaimedInviteMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useCreateInviteMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useSubmitInviteCodeMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useUpdateClaimedInviteMutation.d.ts +0 -40
- package/esm/admin/hooks/mutations/useUpdateInviteMutation.d.ts +0 -40
- package/esm/admin/hooks/queries/useClaimedInviteQuery.d.ts +0 -65
- package/esm/admin/hooks/queries/useClaimedInvitesQuery.d.ts +0 -69
- package/esm/admin/orm/models/claimedInvite.d.ts +0 -56
- package/esm/admin/orm/models/invite.d.ts +0 -56
- package/esm/public/hooks/mutations/useCreateClaimedInviteMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateInviteMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useSubmitInviteCodeMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useUpdateClaimedInviteMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateInviteMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useClaimedInviteQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useClaimedInvitesQuery.d.ts +0 -69
- package/esm/public/orm/models/claimedInvite.d.ts +0 -56
- package/esm/public/orm/models/invite.d.ts +0 -56
- package/public/hooks/mutations/useCreateClaimedInviteMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateInviteMutation.d.ts +0 -34
- package/public/hooks/mutations/useSubmitInviteCodeMutation.d.ts +0 -20
- package/public/hooks/mutations/useUpdateClaimedInviteMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateInviteMutation.d.ts +0 -40
- package/public/hooks/queries/useClaimedInviteQuery.d.ts +0 -65
- package/public/hooks/queries/useClaimedInvitesQuery.d.ts +0 -69
- package/public/orm/models/claimedInvite.d.ts +0 -56
- package/public/orm/models/invite.d.ts +0 -56
package/admin/schema-types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { AppAchievement, AppAdminGrant, AppGrant, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep,
|
|
6
|
+
import type { AppAchievement, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, MembershipType, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitDefault, OrgMember, OrgMembership, OrgMembershipDefault, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, BitStringFilter, BooleanFilter, DatetimeFilter, IntFilter, StringFilter, UUIDFilter } from './types';
|
|
7
7
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeImage = unknown;
|
|
9
9
|
/** Methods to use when ordering `OrgMember`. */
|
|
@@ -36,8 +36,8 @@ export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
36
36
|
export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
37
37
|
/** Methods to use when ordering `AppStep`. */
|
|
38
38
|
export type AppStepOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
39
|
-
/** Methods to use when ordering `
|
|
40
|
-
export type
|
|
39
|
+
/** Methods to use when ordering `AppClaimedInvite`. */
|
|
40
|
+
export type AppClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
41
41
|
/** Methods to use when ordering `OrgChartEdgeGrant`. */
|
|
42
42
|
export type OrgChartEdgeGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
43
43
|
/** Methods to use when ordering `OrgLimit`. */
|
|
@@ -58,8 +58,8 @@ export type AppLevelRequirementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMAR
|
|
|
58
58
|
export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_GROUPS_ASC' | 'DELETE_MEMBER_CASCADE_GROUPS_DESC' | 'CREATE_GROUPS_CASCADE_MEMBERS_ASC' | 'CREATE_GROUPS_CASCADE_MEMBERS_DESC';
|
|
59
59
|
/** Methods to use when ordering `AppLevel`. */
|
|
60
60
|
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
61
|
-
/** Methods to use when ordering `
|
|
62
|
-
export type
|
|
61
|
+
/** Methods to use when ordering `AppInvite`. */
|
|
62
|
+
export type AppInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
63
63
|
/** Methods to use when ordering `AppMembership`. */
|
|
64
64
|
export type AppMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
65
65
|
/** Methods to use when ordering `OrgMembership`. */
|
|
@@ -345,8 +345,8 @@ export interface AppStepFilter {
|
|
|
345
345
|
/** Negates the expression. */
|
|
346
346
|
not?: AppStepFilter;
|
|
347
347
|
}
|
|
348
|
-
/** A filter to be used against `
|
|
349
|
-
export interface
|
|
348
|
+
/** A filter to be used against `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
349
|
+
export interface AppClaimedInviteFilter {
|
|
350
350
|
/** Filter by the object’s `id` field. */
|
|
351
351
|
id?: UUIDFilter;
|
|
352
352
|
/** Filter by the object’s `senderId` field. */
|
|
@@ -358,11 +358,11 @@ export interface ClaimedInviteFilter {
|
|
|
358
358
|
/** Filter by the object’s `updatedAt` field. */
|
|
359
359
|
updatedAt?: DatetimeFilter;
|
|
360
360
|
/** Checks for all expressions in this list. */
|
|
361
|
-
and?:
|
|
361
|
+
and?: AppClaimedInviteFilter[];
|
|
362
362
|
/** Checks for any expressions in this list. */
|
|
363
|
-
or?:
|
|
363
|
+
or?: AppClaimedInviteFilter[];
|
|
364
364
|
/** Negates the expression. */
|
|
365
|
-
not?:
|
|
365
|
+
not?: AppClaimedInviteFilter;
|
|
366
366
|
}
|
|
367
367
|
/** A filter to be used against `OrgChartEdgeGrant` object types. All fields are combined with a logical ‘and.’ */
|
|
368
368
|
export interface OrgChartEdgeGrantFilter {
|
|
@@ -639,8 +639,8 @@ export interface ConstructiveInternalTypeImageFilter {
|
|
|
639
639
|
/** Contained by the specified JSON. */
|
|
640
640
|
containedBy?: ConstructiveInternalTypeImage;
|
|
641
641
|
}
|
|
642
|
-
/** A filter to be used against `
|
|
643
|
-
export interface
|
|
642
|
+
/** A filter to be used against `AppInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
643
|
+
export interface AppInviteFilter {
|
|
644
644
|
/** Filter by the object’s `id` field. */
|
|
645
645
|
id?: UUIDFilter;
|
|
646
646
|
/** Filter by the object’s `email` field. */
|
|
@@ -664,11 +664,11 @@ export interface InviteFilter {
|
|
|
664
664
|
/** Filter by the object’s `updatedAt` field. */
|
|
665
665
|
updatedAt?: DatetimeFilter;
|
|
666
666
|
/** Checks for all expressions in this list. */
|
|
667
|
-
and?:
|
|
667
|
+
and?: AppInviteFilter[];
|
|
668
668
|
/** Checks for any expressions in this list. */
|
|
669
|
-
or?:
|
|
669
|
+
or?: AppInviteFilter[];
|
|
670
670
|
/** Negates the expression. */
|
|
671
|
-
not?:
|
|
671
|
+
not?: AppInviteFilter;
|
|
672
672
|
}
|
|
673
673
|
/** A filter to be used against ConstructiveInternalTypeEmail fields. All fields are combined with a logical ‘and.’ */
|
|
674
674
|
export interface ConstructiveInternalTypeEmailFilter {
|
|
@@ -864,7 +864,7 @@ export interface OrgInviteFilter {
|
|
|
864
864
|
/** Negates the expression. */
|
|
865
865
|
not?: OrgInviteFilter;
|
|
866
866
|
}
|
|
867
|
-
export interface
|
|
867
|
+
export interface SubmitAppInviteCodeInput {
|
|
868
868
|
clientMutationId?: string;
|
|
869
869
|
token?: string;
|
|
870
870
|
}
|
|
@@ -1104,13 +1104,13 @@ export interface AppStepInput {
|
|
|
1104
1104
|
createdAt?: string;
|
|
1105
1105
|
updatedAt?: string;
|
|
1106
1106
|
}
|
|
1107
|
-
export interface
|
|
1107
|
+
export interface CreateAppClaimedInviteInput {
|
|
1108
1108
|
clientMutationId?: string;
|
|
1109
|
-
/** The `
|
|
1110
|
-
|
|
1109
|
+
/** The `AppClaimedInvite` to be created by this mutation. */
|
|
1110
|
+
appClaimedInvite: AppClaimedInviteInput;
|
|
1111
1111
|
}
|
|
1112
|
-
/** An input for mutations affecting `
|
|
1113
|
-
export interface
|
|
1112
|
+
/** An input for mutations affecting `AppClaimedInvite` */
|
|
1113
|
+
export interface AppClaimedInviteInput {
|
|
1114
1114
|
id?: string;
|
|
1115
1115
|
/** Optional JSON payload captured at the time the invite was claimed */
|
|
1116
1116
|
data?: unknown;
|
|
@@ -1319,13 +1319,13 @@ export interface AppLevelInput {
|
|
|
1319
1319
|
createdAt?: string;
|
|
1320
1320
|
updatedAt?: string;
|
|
1321
1321
|
}
|
|
1322
|
-
export interface
|
|
1322
|
+
export interface CreateAppInviteInput {
|
|
1323
1323
|
clientMutationId?: string;
|
|
1324
|
-
/** The `
|
|
1325
|
-
|
|
1324
|
+
/** The `AppInvite` to be created by this mutation. */
|
|
1325
|
+
appInvite: AppInviteInput;
|
|
1326
1326
|
}
|
|
1327
|
-
/** An input for mutations affecting `
|
|
1328
|
-
export interface
|
|
1327
|
+
/** An input for mutations affecting `AppInvite` */
|
|
1328
|
+
export interface AppInviteInput {
|
|
1329
1329
|
id?: string;
|
|
1330
1330
|
/** Email address of the invited recipient */
|
|
1331
1331
|
email?: ConstructiveInternalTypeEmail;
|
|
@@ -1696,14 +1696,14 @@ export interface AppStepPatch {
|
|
|
1696
1696
|
createdAt?: string;
|
|
1697
1697
|
updatedAt?: string;
|
|
1698
1698
|
}
|
|
1699
|
-
export interface
|
|
1699
|
+
export interface UpdateAppClaimedInviteInput {
|
|
1700
1700
|
clientMutationId?: string;
|
|
1701
1701
|
id: string;
|
|
1702
|
-
/** An object where the defined keys will be set on the `
|
|
1703
|
-
|
|
1702
|
+
/** An object where the defined keys will be set on the `AppClaimedInvite` being updated. */
|
|
1703
|
+
appClaimedInvitePatch: AppClaimedInvitePatch;
|
|
1704
1704
|
}
|
|
1705
|
-
/** Represents an update to a `
|
|
1706
|
-
export interface
|
|
1705
|
+
/** Represents an update to a `AppClaimedInvite`. Fields that are set will be updated. */
|
|
1706
|
+
export interface AppClaimedInvitePatch {
|
|
1707
1707
|
id?: string;
|
|
1708
1708
|
/** Optional JSON payload captured at the time the invite was claimed */
|
|
1709
1709
|
data?: unknown;
|
|
@@ -1924,14 +1924,14 @@ export interface AppLevelPatch {
|
|
|
1924
1924
|
/** Upload for Badge or icon image associated with this level */
|
|
1925
1925
|
imageUpload?: File;
|
|
1926
1926
|
}
|
|
1927
|
-
export interface
|
|
1927
|
+
export interface UpdateAppInviteInput {
|
|
1928
1928
|
clientMutationId?: string;
|
|
1929
1929
|
id: string;
|
|
1930
|
-
/** An object where the defined keys will be set on the `
|
|
1931
|
-
|
|
1930
|
+
/** An object where the defined keys will be set on the `AppInvite` being updated. */
|
|
1931
|
+
appInvitePatch: AppInvitePatch;
|
|
1932
1932
|
}
|
|
1933
|
-
/** Represents an update to a `
|
|
1934
|
-
export interface
|
|
1933
|
+
/** Represents an update to a `AppInvite`. Fields that are set will be updated. */
|
|
1934
|
+
export interface AppInvitePatch {
|
|
1935
1935
|
id?: string;
|
|
1936
1936
|
/** Email address of the invited recipient */
|
|
1937
1937
|
email?: ConstructiveInternalTypeEmail;
|
|
@@ -2118,7 +2118,7 @@ export interface DeleteAppStepInput {
|
|
|
2118
2118
|
clientMutationId?: string;
|
|
2119
2119
|
id: string;
|
|
2120
2120
|
}
|
|
2121
|
-
export interface
|
|
2121
|
+
export interface DeleteAppClaimedInviteInput {
|
|
2122
2122
|
clientMutationId?: string;
|
|
2123
2123
|
id: string;
|
|
2124
2124
|
}
|
|
@@ -2162,7 +2162,7 @@ export interface DeleteAppLevelInput {
|
|
|
2162
2162
|
clientMutationId?: string;
|
|
2163
2163
|
id: string;
|
|
2164
2164
|
}
|
|
2165
|
-
export interface
|
|
2165
|
+
export interface DeleteAppInviteInput {
|
|
2166
2166
|
clientMutationId?: string;
|
|
2167
2167
|
id: string;
|
|
2168
2168
|
}
|
|
@@ -2324,10 +2324,10 @@ export interface AppStepConnection {
|
|
|
2324
2324
|
pageInfo: PageInfo;
|
|
2325
2325
|
totalCount: number;
|
|
2326
2326
|
}
|
|
2327
|
-
/** A connection to a list of `
|
|
2328
|
-
export interface
|
|
2329
|
-
nodes:
|
|
2330
|
-
edges:
|
|
2327
|
+
/** A connection to a list of `AppClaimedInvite` values. */
|
|
2328
|
+
export interface AppClaimedInviteConnection {
|
|
2329
|
+
nodes: AppClaimedInvite[];
|
|
2330
|
+
edges: AppClaimedInviteEdge[];
|
|
2331
2331
|
pageInfo: PageInfo;
|
|
2332
2332
|
totalCount: number;
|
|
2333
2333
|
}
|
|
@@ -2394,10 +2394,10 @@ export interface AppLevelConnection {
|
|
|
2394
2394
|
pageInfo: PageInfo;
|
|
2395
2395
|
totalCount: number;
|
|
2396
2396
|
}
|
|
2397
|
-
/** A connection to a list of `
|
|
2398
|
-
export interface
|
|
2399
|
-
nodes:
|
|
2400
|
-
edges:
|
|
2397
|
+
/** A connection to a list of `AppInvite` values. */
|
|
2398
|
+
export interface AppInviteConnection {
|
|
2399
|
+
nodes: AppInvite[];
|
|
2400
|
+
edges: AppInviteEdge[];
|
|
2401
2401
|
pageInfo: PageInfo;
|
|
2402
2402
|
totalCount: number;
|
|
2403
2403
|
}
|
|
@@ -2426,7 +2426,7 @@ export interface OrgInviteConnection {
|
|
|
2426
2426
|
export interface MetaSchema {
|
|
2427
2427
|
tables: MetaTable[];
|
|
2428
2428
|
}
|
|
2429
|
-
export interface
|
|
2429
|
+
export interface SubmitAppInviteCodePayload {
|
|
2430
2430
|
clientMutationId?: string | null;
|
|
2431
2431
|
result?: boolean | null;
|
|
2432
2432
|
}
|
|
@@ -2524,11 +2524,11 @@ export interface CreateAppStepPayload {
|
|
|
2524
2524
|
appStep?: AppStep | null;
|
|
2525
2525
|
appStepEdge?: AppStepEdge | null;
|
|
2526
2526
|
}
|
|
2527
|
-
export interface
|
|
2527
|
+
export interface CreateAppClaimedInvitePayload {
|
|
2528
2528
|
clientMutationId?: string | null;
|
|
2529
|
-
/** The `
|
|
2530
|
-
|
|
2531
|
-
|
|
2529
|
+
/** The `AppClaimedInvite` that was created by this mutation. */
|
|
2530
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
2531
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
2532
2532
|
}
|
|
2533
2533
|
export interface CreateOrgChartEdgeGrantPayload {
|
|
2534
2534
|
clientMutationId?: string | null;
|
|
@@ -2590,11 +2590,11 @@ export interface CreateAppLevelPayload {
|
|
|
2590
2590
|
appLevel?: AppLevel | null;
|
|
2591
2591
|
appLevelEdge?: AppLevelEdge | null;
|
|
2592
2592
|
}
|
|
2593
|
-
export interface
|
|
2593
|
+
export interface CreateAppInvitePayload {
|
|
2594
2594
|
clientMutationId?: string | null;
|
|
2595
|
-
/** The `
|
|
2596
|
-
|
|
2597
|
-
|
|
2595
|
+
/** The `AppInvite` that was created by this mutation. */
|
|
2596
|
+
appInvite?: AppInvite | null;
|
|
2597
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
2598
2598
|
}
|
|
2599
2599
|
export interface CreateAppMembershipPayload {
|
|
2600
2600
|
clientMutationId?: string | null;
|
|
@@ -2704,11 +2704,11 @@ export interface UpdateAppStepPayload {
|
|
|
2704
2704
|
appStep?: AppStep | null;
|
|
2705
2705
|
appStepEdge?: AppStepEdge | null;
|
|
2706
2706
|
}
|
|
2707
|
-
export interface
|
|
2707
|
+
export interface UpdateAppClaimedInvitePayload {
|
|
2708
2708
|
clientMutationId?: string | null;
|
|
2709
|
-
/** The `
|
|
2710
|
-
|
|
2711
|
-
|
|
2709
|
+
/** The `AppClaimedInvite` that was updated by this mutation. */
|
|
2710
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
2711
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
2712
2712
|
}
|
|
2713
2713
|
export interface UpdateOrgChartEdgeGrantPayload {
|
|
2714
2714
|
clientMutationId?: string | null;
|
|
@@ -2770,11 +2770,11 @@ export interface UpdateAppLevelPayload {
|
|
|
2770
2770
|
appLevel?: AppLevel | null;
|
|
2771
2771
|
appLevelEdge?: AppLevelEdge | null;
|
|
2772
2772
|
}
|
|
2773
|
-
export interface
|
|
2773
|
+
export interface UpdateAppInvitePayload {
|
|
2774
2774
|
clientMutationId?: string | null;
|
|
2775
|
-
/** The `
|
|
2776
|
-
|
|
2777
|
-
|
|
2775
|
+
/** The `AppInvite` that was updated by this mutation. */
|
|
2776
|
+
appInvite?: AppInvite | null;
|
|
2777
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
2778
2778
|
}
|
|
2779
2779
|
export interface UpdateAppMembershipPayload {
|
|
2780
2780
|
clientMutationId?: string | null;
|
|
@@ -2884,11 +2884,11 @@ export interface DeleteAppStepPayload {
|
|
|
2884
2884
|
appStep?: AppStep | null;
|
|
2885
2885
|
appStepEdge?: AppStepEdge | null;
|
|
2886
2886
|
}
|
|
2887
|
-
export interface
|
|
2887
|
+
export interface DeleteAppClaimedInvitePayload {
|
|
2888
2888
|
clientMutationId?: string | null;
|
|
2889
|
-
/** The `
|
|
2890
|
-
|
|
2891
|
-
|
|
2889
|
+
/** The `AppClaimedInvite` that was deleted by this mutation. */
|
|
2890
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
2891
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
2892
2892
|
}
|
|
2893
2893
|
export interface DeleteOrgChartEdgeGrantPayload {
|
|
2894
2894
|
clientMutationId?: string | null;
|
|
@@ -2950,11 +2950,11 @@ export interface DeleteAppLevelPayload {
|
|
|
2950
2950
|
appLevel?: AppLevel | null;
|
|
2951
2951
|
appLevelEdge?: AppLevelEdge | null;
|
|
2952
2952
|
}
|
|
2953
|
-
export interface
|
|
2953
|
+
export interface DeleteAppInvitePayload {
|
|
2954
2954
|
clientMutationId?: string | null;
|
|
2955
|
-
/** The `
|
|
2956
|
-
|
|
2957
|
-
|
|
2955
|
+
/** The `AppInvite` that was deleted by this mutation. */
|
|
2956
|
+
appInvite?: AppInvite | null;
|
|
2957
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
2958
2958
|
}
|
|
2959
2959
|
export interface DeleteAppMembershipPayload {
|
|
2960
2960
|
clientMutationId?: string | null;
|
|
@@ -3127,11 +3127,11 @@ export interface AppStepEdge {
|
|
|
3127
3127
|
/** The `AppStep` at the end of the edge. */
|
|
3128
3128
|
node?: AppStep | null;
|
|
3129
3129
|
}
|
|
3130
|
-
/** A `
|
|
3131
|
-
export interface
|
|
3130
|
+
/** A `AppClaimedInvite` edge in the connection. */
|
|
3131
|
+
export interface AppClaimedInviteEdge {
|
|
3132
3132
|
cursor?: string | null;
|
|
3133
|
-
/** The `
|
|
3134
|
-
node?:
|
|
3133
|
+
/** The `AppClaimedInvite` at the end of the edge. */
|
|
3134
|
+
node?: AppClaimedInvite | null;
|
|
3135
3135
|
}
|
|
3136
3136
|
/** A `OrgChartEdgeGrant` edge in the connection. */
|
|
3137
3137
|
export interface OrgChartEdgeGrantEdge {
|
|
@@ -3187,11 +3187,11 @@ export interface AppLevelEdge {
|
|
|
3187
3187
|
/** The `AppLevel` at the end of the edge. */
|
|
3188
3188
|
node?: AppLevel | null;
|
|
3189
3189
|
}
|
|
3190
|
-
/** A `
|
|
3191
|
-
export interface
|
|
3190
|
+
/** A `AppInvite` edge in the connection. */
|
|
3191
|
+
export interface AppInviteEdge {
|
|
3192
3192
|
cursor?: string | null;
|
|
3193
|
-
/** The `
|
|
3194
|
-
node?:
|
|
3193
|
+
/** The `AppInvite` at the end of the edge. */
|
|
3194
|
+
node?: AppInvite | null;
|
|
3195
3195
|
}
|
|
3196
3196
|
/** A `AppMembership` edge in the connection. */
|
|
3197
3197
|
export interface AppMembershipEdge {
|
package/admin/types.d.ts
CHANGED
|
@@ -125,7 +125,7 @@ export interface AppStep {
|
|
|
125
125
|
createdAt: string | null;
|
|
126
126
|
updatedAt: string | null;
|
|
127
127
|
}
|
|
128
|
-
export interface
|
|
128
|
+
export interface AppClaimedInvite {
|
|
129
129
|
id: string | null;
|
|
130
130
|
data: unknown | null;
|
|
131
131
|
senderId: string | null;
|
|
@@ -219,7 +219,7 @@ export interface AppLevel {
|
|
|
219
219
|
createdAt: string | null;
|
|
220
220
|
updatedAt: string | null;
|
|
221
221
|
}
|
|
222
|
-
export interface
|
|
222
|
+
export interface AppInvite {
|
|
223
223
|
id: string | null;
|
|
224
224
|
email: ConstructiveInternalTypeEmail | null;
|
|
225
225
|
senderId: string | null;
|
|
@@ -49,6 +49,8 @@ export declare const customMutationKeys: {
|
|
|
49
49
|
/** Mutation key for signOut */ readonly signOut: (identifier?: string) => readonly ["mutation", "signOut", string] | readonly ["mutation", "signOut"];
|
|
50
50
|
/** Mutation key for sendAccountDeletionEmail */ readonly sendAccountDeletionEmail: (identifier?: string) => readonly ["mutation", "sendAccountDeletionEmail", string] | readonly ["mutation", "sendAccountDeletionEmail"];
|
|
51
51
|
/** Mutation key for checkPassword */ readonly checkPassword: (identifier?: string) => readonly ["mutation", "checkPassword", string] | readonly ["mutation", "checkPassword"];
|
|
52
|
+
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
53
|
+
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
52
54
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
53
55
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
54
56
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
@@ -60,8 +62,6 @@ export declare const customMutationKeys: {
|
|
|
60
62
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
61
63
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
62
64
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
63
|
-
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
64
|
-
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
65
65
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
66
66
|
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
67
67
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
@@ -135,6 +135,8 @@ export declare const mutationKeys: {
|
|
|
135
135
|
/** Mutation key for signOut */ readonly signOut: (identifier?: string) => readonly ["mutation", "signOut", string] | readonly ["mutation", "signOut"];
|
|
136
136
|
/** Mutation key for sendAccountDeletionEmail */ readonly sendAccountDeletionEmail: (identifier?: string) => readonly ["mutation", "sendAccountDeletionEmail", string] | readonly ["mutation", "sendAccountDeletionEmail"];
|
|
137
137
|
/** Mutation key for checkPassword */ readonly checkPassword: (identifier?: string) => readonly ["mutation", "checkPassword", string] | readonly ["mutation", "checkPassword"];
|
|
138
|
+
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
139
|
+
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
138
140
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
139
141
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
140
142
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
@@ -146,8 +148,6 @@ export declare const mutationKeys: {
|
|
|
146
148
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
147
149
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
148
150
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
149
|
-
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
150
|
-
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
151
151
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
152
152
|
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
153
153
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
@@ -73,6 +73,12 @@ exports.customMutationKeys = {
|
|
|
73
73
|
/** Mutation key for checkPassword */ checkPassword: (identifier) => identifier
|
|
74
74
|
? ['mutation', 'checkPassword', identifier]
|
|
75
75
|
: ['mutation', 'checkPassword'],
|
|
76
|
+
/** Mutation key for verifyPassword */ verifyPassword: (identifier) => identifier
|
|
77
|
+
? ['mutation', 'verifyPassword', identifier]
|
|
78
|
+
: ['mutation', 'verifyPassword'],
|
|
79
|
+
/** Mutation key for verifyTotp */ verifyTotp: (identifier) => identifier
|
|
80
|
+
? ['mutation', 'verifyTotp', identifier]
|
|
81
|
+
: ['mutation', 'verifyTotp'],
|
|
76
82
|
/** Mutation key for confirmDeleteAccount */ confirmDeleteAccount: (identifier) => identifier
|
|
77
83
|
? ['mutation', 'confirmDeleteAccount', identifier]
|
|
78
84
|
: ['mutation', 'confirmDeleteAccount'],
|
|
@@ -102,12 +108,6 @@ exports.customMutationKeys = {
|
|
|
102
108
|
/** Mutation key for sendVerificationEmail */ sendVerificationEmail: (identifier) => identifier
|
|
103
109
|
? ['mutation', 'sendVerificationEmail', identifier]
|
|
104
110
|
: ['mutation', 'sendVerificationEmail'],
|
|
105
|
-
/** Mutation key for verifyPassword */ verifyPassword: (identifier) => identifier
|
|
106
|
-
? ['mutation', 'verifyPassword', identifier]
|
|
107
|
-
: ['mutation', 'verifyPassword'],
|
|
108
|
-
/** Mutation key for verifyTotp */ verifyTotp: (identifier) => identifier
|
|
109
|
-
? ['mutation', 'verifyTotp', identifier]
|
|
110
|
-
: ['mutation', 'verifyTotp'],
|
|
111
111
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
112
112
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
113
113
|
: ['mutation', 'requestUploadUrl'],
|
|
@@ -27,6 +27,8 @@ export * from './useDeleteUserMutation';
|
|
|
27
27
|
export * from './useSignOutMutation';
|
|
28
28
|
export * from './useSendAccountDeletionEmailMutation';
|
|
29
29
|
export * from './useCheckPasswordMutation';
|
|
30
|
+
export * from './useVerifyPasswordMutation';
|
|
31
|
+
export * from './useVerifyTotpMutation';
|
|
30
32
|
export * from './useConfirmDeleteAccountMutation';
|
|
31
33
|
export * from './useSetPasswordMutation';
|
|
32
34
|
export * from './useVerifyEmailMutation';
|
|
@@ -38,8 +40,6 @@ export * from './useOneTimeTokenMutation';
|
|
|
38
40
|
export * from './useExtendTokenExpiresMutation';
|
|
39
41
|
export * from './useForgotPasswordMutation';
|
|
40
42
|
export * from './useSendVerificationEmailMutation';
|
|
41
|
-
export * from './useVerifyPasswordMutation';
|
|
42
|
-
export * from './useVerifyTotpMutation';
|
|
43
43
|
export * from './useRequestUploadUrlMutation';
|
|
44
44
|
export * from './useConfirmUploadMutation';
|
|
45
45
|
export * from './useProvisionBucketMutation';
|
|
@@ -43,6 +43,8 @@ __exportStar(require("./useDeleteUserMutation"), exports);
|
|
|
43
43
|
__exportStar(require("./useSignOutMutation"), exports);
|
|
44
44
|
__exportStar(require("./useSendAccountDeletionEmailMutation"), exports);
|
|
45
45
|
__exportStar(require("./useCheckPasswordMutation"), exports);
|
|
46
|
+
__exportStar(require("./useVerifyPasswordMutation"), exports);
|
|
47
|
+
__exportStar(require("./useVerifyTotpMutation"), exports);
|
|
46
48
|
__exportStar(require("./useConfirmDeleteAccountMutation"), exports);
|
|
47
49
|
__exportStar(require("./useSetPasswordMutation"), exports);
|
|
48
50
|
__exportStar(require("./useVerifyEmailMutation"), exports);
|
|
@@ -54,8 +56,6 @@ __exportStar(require("./useOneTimeTokenMutation"), exports);
|
|
|
54
56
|
__exportStar(require("./useExtendTokenExpiresMutation"), exports);
|
|
55
57
|
__exportStar(require("./useForgotPasswordMutation"), exports);
|
|
56
58
|
__exportStar(require("./useSendVerificationEmailMutation"), exports);
|
|
57
|
-
__exportStar(require("./useVerifyPasswordMutation"), exports);
|
|
58
|
-
__exportStar(require("./useVerifyTotpMutation"), exports);
|
|
59
59
|
__exportStar(require("./useRequestUploadUrlMutation"), exports);
|
|
60
60
|
__exportStar(require("./useConfirmUploadMutation"), exports);
|
|
61
61
|
__exportStar(require("./useProvisionBucketMutation"), exports);
|
package/auth/orm/index.d.ts
CHANGED
|
@@ -82,6 +82,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
82
82
|
} & import("./select-types").StrictSelect<S, import("./input-types").CheckPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
83
83
|
checkPassword: import("./select-types").InferSelectResult<import("./input-types").CheckPasswordPayload, S> | null;
|
|
84
84
|
}>;
|
|
85
|
+
verifyPassword: <S extends import("./input-types").VerifyPasswordPayloadSelect>(args: import("./mutation").VerifyPasswordVariables, options: {
|
|
86
|
+
select: S;
|
|
87
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
88
|
+
verifyPassword: import("./select-types").InferSelectResult<import("./input-types").VerifyPasswordPayload, S> | null;
|
|
89
|
+
}>;
|
|
90
|
+
verifyTotp: <S extends import("./input-types").VerifyTotpPayloadSelect>(args: import("./mutation").VerifyTotpVariables, options: {
|
|
91
|
+
select: S;
|
|
92
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyTotpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
93
|
+
verifyTotp: import("./select-types").InferSelectResult<import("./input-types").VerifyTotpPayload, S> | null;
|
|
94
|
+
}>;
|
|
85
95
|
confirmDeleteAccount: <S extends import("./input-types").ConfirmDeleteAccountPayloadSelect>(args: import("./mutation").ConfirmDeleteAccountVariables, options: {
|
|
86
96
|
select: S;
|
|
87
97
|
} & import("./select-types").StrictSelect<S, import("./input-types").ConfirmDeleteAccountPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -137,16 +147,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
137
147
|
} & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
138
148
|
sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
|
|
139
149
|
}>;
|
|
140
|
-
verifyPassword: <S extends import("./input-types").VerifyPasswordPayloadSelect>(args: import("./mutation").VerifyPasswordVariables, options: {
|
|
141
|
-
select: S;
|
|
142
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
143
|
-
verifyPassword: import("./select-types").InferSelectResult<import("./input-types").VerifyPasswordPayload, S> | null;
|
|
144
|
-
}>;
|
|
145
|
-
verifyTotp: <S extends import("./input-types").VerifyTotpPayloadSelect>(args: import("./mutation").VerifyTotpVariables, options: {
|
|
146
|
-
select: S;
|
|
147
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").VerifyTotpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
148
|
-
verifyTotp: import("./select-types").InferSelectResult<import("./input-types").VerifyTotpPayload, S> | null;
|
|
149
|
-
}>;
|
|
150
150
|
requestUploadUrl: <S extends import("./input-types").RequestUploadUrlPayloadSelect>(args: import("./mutation").RequestUploadUrlVariables, options: {
|
|
151
151
|
select: S;
|
|
152
152
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestUploadUrlPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -868,6 +868,14 @@ export interface CheckPasswordInput {
|
|
|
868
868
|
clientMutationId?: string;
|
|
869
869
|
password?: string;
|
|
870
870
|
}
|
|
871
|
+
export interface VerifyPasswordInput {
|
|
872
|
+
clientMutationId?: string;
|
|
873
|
+
password: string;
|
|
874
|
+
}
|
|
875
|
+
export interface VerifyTotpInput {
|
|
876
|
+
clientMutationId?: string;
|
|
877
|
+
totpValue: string;
|
|
878
|
+
}
|
|
871
879
|
export interface ConfirmDeleteAccountInput {
|
|
872
880
|
clientMutationId?: string;
|
|
873
881
|
userId?: string;
|
|
@@ -929,14 +937,6 @@ export interface SendVerificationEmailInput {
|
|
|
929
937
|
clientMutationId?: string;
|
|
930
938
|
email?: ConstructiveInternalTypeEmail;
|
|
931
939
|
}
|
|
932
|
-
export interface VerifyPasswordInput {
|
|
933
|
-
clientMutationId?: string;
|
|
934
|
-
password: string;
|
|
935
|
-
}
|
|
936
|
-
export interface VerifyTotpInput {
|
|
937
|
-
clientMutationId?: string;
|
|
938
|
-
totpValue: string;
|
|
939
|
-
}
|
|
940
940
|
export interface RequestUploadUrlInput {
|
|
941
941
|
/** Bucket key (e.g., "public", "private") */
|
|
942
942
|
bucketKey: string;
|
|
@@ -1788,6 +1788,22 @@ export interface CheckPasswordPayload {
|
|
|
1788
1788
|
export type CheckPasswordPayloadSelect = {
|
|
1789
1789
|
clientMutationId?: boolean;
|
|
1790
1790
|
};
|
|
1791
|
+
export interface VerifyPasswordPayload {
|
|
1792
|
+
clientMutationId?: string | null;
|
|
1793
|
+
result?: boolean | null;
|
|
1794
|
+
}
|
|
1795
|
+
export type VerifyPasswordPayloadSelect = {
|
|
1796
|
+
clientMutationId?: boolean;
|
|
1797
|
+
result?: boolean;
|
|
1798
|
+
};
|
|
1799
|
+
export interface VerifyTotpPayload {
|
|
1800
|
+
clientMutationId?: string | null;
|
|
1801
|
+
result?: boolean | null;
|
|
1802
|
+
}
|
|
1803
|
+
export type VerifyTotpPayloadSelect = {
|
|
1804
|
+
clientMutationId?: boolean;
|
|
1805
|
+
result?: boolean;
|
|
1806
|
+
};
|
|
1791
1807
|
export interface ConfirmDeleteAccountPayload {
|
|
1792
1808
|
clientMutationId?: string | null;
|
|
1793
1809
|
result?: boolean | null;
|
|
@@ -1882,26 +1898,6 @@ export type SendVerificationEmailPayloadSelect = {
|
|
|
1882
1898
|
clientMutationId?: boolean;
|
|
1883
1899
|
result?: boolean;
|
|
1884
1900
|
};
|
|
1885
|
-
export interface VerifyPasswordPayload {
|
|
1886
|
-
clientMutationId?: string | null;
|
|
1887
|
-
result?: Session | null;
|
|
1888
|
-
}
|
|
1889
|
-
export type VerifyPasswordPayloadSelect = {
|
|
1890
|
-
clientMutationId?: boolean;
|
|
1891
|
-
result?: {
|
|
1892
|
-
select: SessionSelect;
|
|
1893
|
-
};
|
|
1894
|
-
};
|
|
1895
|
-
export interface VerifyTotpPayload {
|
|
1896
|
-
clientMutationId?: string | null;
|
|
1897
|
-
result?: Session | null;
|
|
1898
|
-
}
|
|
1899
|
-
export type VerifyTotpPayloadSelect = {
|
|
1900
|
-
clientMutationId?: boolean;
|
|
1901
|
-
result?: {
|
|
1902
|
-
select: SessionSelect;
|
|
1903
|
-
};
|
|
1904
|
-
};
|
|
1905
1901
|
export interface RequestUploadUrlPayload {
|
|
1906
1902
|
/** Presigned PUT URL (null if file was deduplicated) */
|
|
1907
1903
|
uploadUrl?: string | null;
|
|
@@ -2329,50 +2325,6 @@ export type ExtendTokenExpiresRecordSelect = {
|
|
|
2329
2325
|
sessionId?: boolean;
|
|
2330
2326
|
expiresAt?: boolean;
|
|
2331
2327
|
};
|
|
2332
|
-
/** Tracks user authentication sessions with expiration, fingerprinting, and step-up verification state */
|
|
2333
|
-
export interface Session {
|
|
2334
|
-
id: string;
|
|
2335
|
-
/** References the authenticated user; NULL for anonymous sessions */
|
|
2336
|
-
userId?: string | null;
|
|
2337
|
-
/** Whether this is an anonymous session (no authenticated user) */
|
|
2338
|
-
isAnonymous: boolean;
|
|
2339
|
-
/** When this session expires and can no longer be used for authentication */
|
|
2340
|
-
expiresAt: string;
|
|
2341
|
-
/** When this session was explicitly revoked (soft delete); NULL means active */
|
|
2342
|
-
revokedAt?: string | null;
|
|
2343
|
-
/** The origin (protocol + host) from which the session was created, used for fingerprint validation */
|
|
2344
|
-
origin?: ConstructiveInternalTypeOrigin | null;
|
|
2345
|
-
/** IP address from which the session was created, used for strict fingerprint validation */
|
|
2346
|
-
ip?: string | null;
|
|
2347
|
-
/** User-Agent string from the client, used for strict fingerprint validation */
|
|
2348
|
-
uagent?: string | null;
|
|
2349
|
-
/** Session validation mode: strict (origin+ip+uagent), lax (origin only), or none (no validation) */
|
|
2350
|
-
fingerprintMode: string;
|
|
2351
|
-
/** Timestamp of last password re-verification for step-up authentication */
|
|
2352
|
-
lastPasswordVerified?: string | null;
|
|
2353
|
-
/** Timestamp of last MFA verification for step-up authentication */
|
|
2354
|
-
lastMfaVerified?: string | null;
|
|
2355
|
-
/** Secret used to generate and validate CSRF tokens for cookie-based sessions */
|
|
2356
|
-
csrfSecret?: string | null;
|
|
2357
|
-
createdAt?: string | null;
|
|
2358
|
-
updatedAt?: string | null;
|
|
2359
|
-
}
|
|
2360
|
-
export type SessionSelect = {
|
|
2361
|
-
id?: boolean;
|
|
2362
|
-
userId?: boolean;
|
|
2363
|
-
isAnonymous?: boolean;
|
|
2364
|
-
expiresAt?: boolean;
|
|
2365
|
-
revokedAt?: boolean;
|
|
2366
|
-
origin?: boolean;
|
|
2367
|
-
ip?: boolean;
|
|
2368
|
-
uagent?: boolean;
|
|
2369
|
-
fingerprintMode?: boolean;
|
|
2370
|
-
lastPasswordVerified?: boolean;
|
|
2371
|
-
lastMfaVerified?: boolean;
|
|
2372
|
-
csrfSecret?: boolean;
|
|
2373
|
-
createdAt?: boolean;
|
|
2374
|
-
updatedAt?: boolean;
|
|
2375
|
-
};
|
|
2376
2328
|
/** A `Email` edge in the connection. */
|
|
2377
2329
|
export interface EmailEdge {
|
|
2378
2330
|
cursor?: string | null;
|