@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
|
@@ -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 { Api, ApiModule, ApiSchema, App, AppAchievement, AppAdminGrant, AppGrant, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, AstMigration, AuditLog, Blueprint, BlueprintConstruction, BlueprintTemplate, CheckConstraint,
|
|
6
|
+
import type { Api, ApiModule, ApiSchema, App, AppAchievement, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, AstMigration, AuditLog, Blueprint, BlueprintConstruction, BlueprintTemplate, CheckConstraint, Commit, ConnectedAccount, ConnectedAccountsModule, CryptoAddress, CryptoAddressesModule, CryptoAuthModule, Database, DatabaseProvisionModule, DatabaseTransfer, DefaultIdsModule, DefaultPrivilege, DenormalizedTableField, Domain, Email, EmailsModule, EmbeddingChunk, EncryptedSecretsModule, Enum, Field, ForeignKeyConstraint, FullTextSearch, GetAllRecord, HierarchyModule, Index, InvitesModule, LevelsModule, LimitsModule, MembershipType, MembershipTypesModule, MembershipsModule, MigrateFile, Object, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitDefault, OrgMember, OrgMembership, OrgMembershipDefault, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, PermissionsModule, PhoneNumber, PhoneNumbersModule, Policy, PrimaryKeyConstraint, ProfilesModule, RateLimitsModule, Ref, RelationProvision, RlsModule, RoleType, Schema, SchemaGrant, SecretsModule, SecureTableProvision, SessionsModule, Site, SiteMetadatum, SiteModule, SiteTheme, SqlAction, StorageModule, Store, Table, TableGrant, TableTemplateModule, Trigger, TriggerFunction, UniqueConstraint, User, UserAuthModule, UsersModule, View, ViewGrant, ViewRule, ViewTable, BigIntFilter, BitStringFilter, BooleanFilter, DatetimeFilter, FloatFilter, FullTextFilter, IntFilter, InternetAddressFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
export type ConstructiveInternalTypeAttachment = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
9
9
|
export type ConstructiveInternalTypeHostname = unknown;
|
|
@@ -170,10 +170,10 @@ export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DE
|
|
|
170
170
|
export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
171
171
|
/** Methods to use when ordering `ConnectedAccount`. */
|
|
172
172
|
export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'DETAILS_ASC' | 'DETAILS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
173
|
-
/** Methods to use when ordering `
|
|
174
|
-
export type
|
|
175
|
-
/** Methods to use when ordering `
|
|
176
|
-
export type
|
|
173
|
+
/** Methods to use when ordering `AppInvite`. */
|
|
174
|
+
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';
|
|
175
|
+
/** Methods to use when ordering `AppClaimedInvite`. */
|
|
176
|
+
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';
|
|
177
177
|
/** Methods to use when ordering `OrgInvite`. */
|
|
178
178
|
export type OrgInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
179
179
|
/** Methods to use when ordering `OrgClaimedInvite`. */
|
|
@@ -206,6 +206,8 @@ export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
|
|
|
206
206
|
export type AppMembershipDefaultOrderBy = '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_VERIFIED_ASC' | 'IS_VERIFIED_DESC';
|
|
207
207
|
/** Methods to use when ordering `Commit`. */
|
|
208
208
|
export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC';
|
|
209
|
+
/** Methods to use when ordering `RateLimitsModule`. */
|
|
210
|
+
export type RateLimitsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_DESC' | 'IP_RATE_LIMITS_TABLE_ID_ASC' | 'IP_RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMITS_TABLE_ID_ASC' | 'RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_DESC' | 'IP_RATE_LIMITS_TABLE_ASC' | 'IP_RATE_LIMITS_TABLE_DESC' | 'RATE_LIMITS_TABLE_ASC' | 'RATE_LIMITS_TABLE_DESC';
|
|
209
211
|
/** Methods to use when ordering `OrgMembershipDefault`. */
|
|
210
212
|
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';
|
|
211
213
|
/** Methods to use when ordering `RlsModule`. */
|
|
@@ -544,6 +546,10 @@ export interface DatabaseFilter {
|
|
|
544
546
|
storageModules?: DatabaseToManyStorageModuleFilter;
|
|
545
547
|
/** `storageModules` exist. */
|
|
546
548
|
storageModulesExist?: boolean;
|
|
549
|
+
/** Filter by the object’s `rateLimitsModule` relation. */
|
|
550
|
+
rateLimitsModule?: RateLimitsModuleFilter;
|
|
551
|
+
/** A related `rateLimitsModule` exists. */
|
|
552
|
+
rateLimitsModuleExists?: boolean;
|
|
547
553
|
/** Filter by the object’s `databaseProvisionModules` relation. */
|
|
548
554
|
databaseProvisionModules?: DatabaseToManyDatabaseProvisionModuleFilter;
|
|
549
555
|
/** `databaseProvisionModules` exist. */
|
|
@@ -735,18 +741,18 @@ export interface UserFilter {
|
|
|
735
741
|
ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
|
|
736
742
|
/** `ownedConnectedAccounts` exist. */
|
|
737
743
|
ownedConnectedAccountsExist?: boolean;
|
|
738
|
-
/** Filter by the object’s `
|
|
739
|
-
|
|
740
|
-
/** `
|
|
741
|
-
|
|
742
|
-
/** Filter by the object’s `
|
|
743
|
-
|
|
744
|
-
/** `
|
|
745
|
-
|
|
746
|
-
/** Filter by the object’s `
|
|
747
|
-
|
|
748
|
-
/** `
|
|
749
|
-
|
|
744
|
+
/** Filter by the object’s `appInvitesBySenderId` relation. */
|
|
745
|
+
appInvitesBySenderId?: UserToManyAppInviteFilter;
|
|
746
|
+
/** `appInvitesBySenderId` exist. */
|
|
747
|
+
appInvitesBySenderIdExist?: boolean;
|
|
748
|
+
/** Filter by the object’s `appClaimedInvitesByReceiverId` relation. */
|
|
749
|
+
appClaimedInvitesByReceiverId?: UserToManyAppClaimedInviteFilter;
|
|
750
|
+
/** `appClaimedInvitesByReceiverId` exist. */
|
|
751
|
+
appClaimedInvitesByReceiverIdExist?: boolean;
|
|
752
|
+
/** Filter by the object’s `appClaimedInvitesBySenderId` relation. */
|
|
753
|
+
appClaimedInvitesBySenderId?: UserToManyAppClaimedInviteFilter;
|
|
754
|
+
/** `appClaimedInvitesBySenderId` exist. */
|
|
755
|
+
appClaimedInvitesBySenderIdExist?: boolean;
|
|
750
756
|
/** Filter by the object’s `orgInvitesByEntityId` relation. */
|
|
751
757
|
orgInvitesByEntityId?: UserToManyOrgInviteFilter;
|
|
752
758
|
/** `orgInvitesByEntityId` exist. */
|
|
@@ -1817,17 +1823,17 @@ export interface ConnectedAccountFilter {
|
|
|
1817
1823
|
/** Filter by the object’s `owner` relation. */
|
|
1818
1824
|
owner?: UserFilter;
|
|
1819
1825
|
}
|
|
1820
|
-
/** A filter to be used against many `
|
|
1821
|
-
export interface
|
|
1826
|
+
/** A filter to be used against many `AppInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
1827
|
+
export interface UserToManyAppInviteFilter {
|
|
1822
1828
|
/** Filters to entities where at least one related entity matches. */
|
|
1823
|
-
some?:
|
|
1829
|
+
some?: AppInviteFilter;
|
|
1824
1830
|
/** Filters to entities where every related entity matches. */
|
|
1825
|
-
every?:
|
|
1831
|
+
every?: AppInviteFilter;
|
|
1826
1832
|
/** Filters to entities where no related entity matches. */
|
|
1827
|
-
none?:
|
|
1833
|
+
none?: AppInviteFilter;
|
|
1828
1834
|
}
|
|
1829
|
-
/** A filter to be used against `
|
|
1830
|
-
export interface
|
|
1835
|
+
/** A filter to be used against `AppInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
1836
|
+
export interface AppInviteFilter {
|
|
1831
1837
|
/** Filter by the object’s `id` field. */
|
|
1832
1838
|
id?: UUIDFilter;
|
|
1833
1839
|
/** Filter by the object’s `email` field. */
|
|
@@ -1851,25 +1857,25 @@ export interface InviteFilter {
|
|
|
1851
1857
|
/** Filter by the object’s `updatedAt` field. */
|
|
1852
1858
|
updatedAt?: DatetimeFilter;
|
|
1853
1859
|
/** Checks for all expressions in this list. */
|
|
1854
|
-
and?:
|
|
1860
|
+
and?: AppInviteFilter[];
|
|
1855
1861
|
/** Checks for any expressions in this list. */
|
|
1856
|
-
or?:
|
|
1862
|
+
or?: AppInviteFilter[];
|
|
1857
1863
|
/** Negates the expression. */
|
|
1858
|
-
not?:
|
|
1864
|
+
not?: AppInviteFilter;
|
|
1859
1865
|
/** Filter by the object’s `sender` relation. */
|
|
1860
1866
|
sender?: UserFilter;
|
|
1861
1867
|
}
|
|
1862
|
-
/** A filter to be used against many `
|
|
1863
|
-
export interface
|
|
1868
|
+
/** A filter to be used against many `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
1869
|
+
export interface UserToManyAppClaimedInviteFilter {
|
|
1864
1870
|
/** Filters to entities where at least one related entity matches. */
|
|
1865
|
-
some?:
|
|
1871
|
+
some?: AppClaimedInviteFilter;
|
|
1866
1872
|
/** Filters to entities where every related entity matches. */
|
|
1867
|
-
every?:
|
|
1873
|
+
every?: AppClaimedInviteFilter;
|
|
1868
1874
|
/** Filters to entities where no related entity matches. */
|
|
1869
|
-
none?:
|
|
1875
|
+
none?: AppClaimedInviteFilter;
|
|
1870
1876
|
}
|
|
1871
|
-
/** A filter to be used against `
|
|
1872
|
-
export interface
|
|
1877
|
+
/** A filter to be used against `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
1878
|
+
export interface AppClaimedInviteFilter {
|
|
1873
1879
|
/** Filter by the object’s `id` field. */
|
|
1874
1880
|
id?: UUIDFilter;
|
|
1875
1881
|
/** Filter by the object’s `senderId` field. */
|
|
@@ -1881,11 +1887,11 @@ export interface ClaimedInviteFilter {
|
|
|
1881
1887
|
/** Filter by the object’s `updatedAt` field. */
|
|
1882
1888
|
updatedAt?: DatetimeFilter;
|
|
1883
1889
|
/** Checks for all expressions in this list. */
|
|
1884
|
-
and?:
|
|
1890
|
+
and?: AppClaimedInviteFilter[];
|
|
1885
1891
|
/** Checks for any expressions in this list. */
|
|
1886
|
-
or?:
|
|
1892
|
+
or?: AppClaimedInviteFilter[];
|
|
1887
1893
|
/** Negates the expression. */
|
|
1888
|
-
not?:
|
|
1894
|
+
not?: AppClaimedInviteFilter;
|
|
1889
1895
|
/** Filter by the object’s `receiver` relation. */
|
|
1890
1896
|
receiver?: UserFilter;
|
|
1891
1897
|
/** A related `receiver` exists. */
|
|
@@ -5803,6 +5809,43 @@ export interface StorageModuleFilter {
|
|
|
5803
5809
|
/** Filter by the object’s `uploadRequestsTable` relation. */
|
|
5804
5810
|
uploadRequestsTable?: TableFilter;
|
|
5805
5811
|
}
|
|
5812
|
+
/** A filter to be used against `RateLimitsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
5813
|
+
export interface RateLimitsModuleFilter {
|
|
5814
|
+
/** Filter by the object’s `id` field. */
|
|
5815
|
+
id?: UUIDFilter;
|
|
5816
|
+
/** Filter by the object’s `databaseId` field. */
|
|
5817
|
+
databaseId?: UUIDFilter;
|
|
5818
|
+
/** Filter by the object’s `schemaId` field. */
|
|
5819
|
+
schemaId?: UUIDFilter;
|
|
5820
|
+
/** Filter by the object’s `rateLimitSettingsTableId` field. */
|
|
5821
|
+
rateLimitSettingsTableId?: UUIDFilter;
|
|
5822
|
+
/** Filter by the object’s `ipRateLimitsTableId` field. */
|
|
5823
|
+
ipRateLimitsTableId?: UUIDFilter;
|
|
5824
|
+
/** Filter by the object’s `rateLimitsTableId` field. */
|
|
5825
|
+
rateLimitsTableId?: UUIDFilter;
|
|
5826
|
+
/** Filter by the object’s `rateLimitSettingsTable` field. */
|
|
5827
|
+
rateLimitSettingsTable?: StringFilter;
|
|
5828
|
+
/** Filter by the object’s `ipRateLimitsTable` field. */
|
|
5829
|
+
ipRateLimitsTable?: StringFilter;
|
|
5830
|
+
/** Filter by the object’s `rateLimitsTable` field. */
|
|
5831
|
+
rateLimitsTable?: StringFilter;
|
|
5832
|
+
/** Checks for all expressions in this list. */
|
|
5833
|
+
and?: RateLimitsModuleFilter[];
|
|
5834
|
+
/** Checks for any expressions in this list. */
|
|
5835
|
+
or?: RateLimitsModuleFilter[];
|
|
5836
|
+
/** Negates the expression. */
|
|
5837
|
+
not?: RateLimitsModuleFilter;
|
|
5838
|
+
/** Filter by the object’s `database` relation. */
|
|
5839
|
+
database?: DatabaseFilter;
|
|
5840
|
+
/** Filter by the object’s `ipRateLimitsTableByIpRateLimitsTableId` relation. */
|
|
5841
|
+
ipRateLimitsTableByIpRateLimitsTableId?: TableFilter;
|
|
5842
|
+
/** Filter by the object’s `rateLimitSettingsTableByRateLimitSettingsTableId` relation. */
|
|
5843
|
+
rateLimitSettingsTableByRateLimitSettingsTableId?: TableFilter;
|
|
5844
|
+
/** Filter by the object’s `rateLimitsTableByRateLimitsTableId` relation. */
|
|
5845
|
+
rateLimitsTableByRateLimitsTableId?: TableFilter;
|
|
5846
|
+
/** Filter by the object’s `schema` relation. */
|
|
5847
|
+
schema?: SchemaFilter;
|
|
5848
|
+
}
|
|
5806
5849
|
/** A filter to be used against many `DatabaseProvisionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
5807
5850
|
export interface DatabaseToManyDatabaseProvisionModuleFilter {
|
|
5808
5851
|
/** Filters to entities where at least one related entity matches. */
|
|
@@ -6223,7 +6266,15 @@ export interface RejectDatabaseTransferInput {
|
|
|
6223
6266
|
clientMutationId?: string;
|
|
6224
6267
|
transferId?: string;
|
|
6225
6268
|
}
|
|
6226
|
-
export interface
|
|
6269
|
+
export interface VerifyPasswordInput {
|
|
6270
|
+
clientMutationId?: string;
|
|
6271
|
+
password: string;
|
|
6272
|
+
}
|
|
6273
|
+
export interface VerifyTotpInput {
|
|
6274
|
+
clientMutationId?: string;
|
|
6275
|
+
totpValue: string;
|
|
6276
|
+
}
|
|
6277
|
+
export interface SubmitAppInviteCodeInput {
|
|
6227
6278
|
clientMutationId?: string;
|
|
6228
6279
|
token?: string;
|
|
6229
6280
|
}
|
|
@@ -6467,14 +6518,6 @@ export interface ForgotPasswordInput {
|
|
|
6467
6518
|
clientMutationId?: string;
|
|
6468
6519
|
email?: ConstructiveInternalTypeEmail;
|
|
6469
6520
|
}
|
|
6470
|
-
export interface VerifyPasswordInput {
|
|
6471
|
-
clientMutationId?: string;
|
|
6472
|
-
password: string;
|
|
6473
|
-
}
|
|
6474
|
-
export interface VerifyTotpInput {
|
|
6475
|
-
clientMutationId?: string;
|
|
6476
|
-
totpValue: string;
|
|
6477
|
-
}
|
|
6478
6521
|
export interface CreateDefaultIdsModuleInput {
|
|
6479
6522
|
clientMutationId?: string;
|
|
6480
6523
|
/** The `DefaultIdsModule` to be created by this mutation. */
|
|
@@ -7170,13 +7213,13 @@ export interface SiteMetadatumInput {
|
|
|
7170
7213
|
/** Open Graph image for social media previews */
|
|
7171
7214
|
ogImage?: ConstructiveInternalTypeImage;
|
|
7172
7215
|
}
|
|
7173
|
-
export interface
|
|
7216
|
+
export interface CreateAppClaimedInviteInput {
|
|
7174
7217
|
clientMutationId?: string;
|
|
7175
|
-
/** The `
|
|
7176
|
-
|
|
7218
|
+
/** The `AppClaimedInvite` to be created by this mutation. */
|
|
7219
|
+
appClaimedInvite: AppClaimedInviteInput;
|
|
7177
7220
|
}
|
|
7178
|
-
/** An input for mutations affecting `
|
|
7179
|
-
export interface
|
|
7221
|
+
/** An input for mutations affecting `AppClaimedInvite` */
|
|
7222
|
+
export interface AppClaimedInviteInput {
|
|
7180
7223
|
id?: string;
|
|
7181
7224
|
/** Optional JSON payload captured at the time the invite was claimed */
|
|
7182
7225
|
data?: unknown;
|
|
@@ -7262,6 +7305,23 @@ export interface CommitInput {
|
|
|
7262
7305
|
treeId?: string;
|
|
7263
7306
|
date?: string;
|
|
7264
7307
|
}
|
|
7308
|
+
export interface CreateRateLimitsModuleInput {
|
|
7309
|
+
clientMutationId?: string;
|
|
7310
|
+
/** The `RateLimitsModule` to be created by this mutation. */
|
|
7311
|
+
rateLimitsModule: RateLimitsModuleInput;
|
|
7312
|
+
}
|
|
7313
|
+
/** An input for mutations affecting `RateLimitsModule` */
|
|
7314
|
+
export interface RateLimitsModuleInput {
|
|
7315
|
+
id?: string;
|
|
7316
|
+
databaseId: string;
|
|
7317
|
+
schemaId?: string;
|
|
7318
|
+
rateLimitSettingsTableId?: string;
|
|
7319
|
+
ipRateLimitsTableId?: string;
|
|
7320
|
+
rateLimitsTableId?: string;
|
|
7321
|
+
rateLimitSettingsTable?: string;
|
|
7322
|
+
ipRateLimitsTable?: string;
|
|
7323
|
+
rateLimitsTable?: string;
|
|
7324
|
+
}
|
|
7265
7325
|
export interface CreateTableTemplateModuleInput {
|
|
7266
7326
|
clientMutationId?: string;
|
|
7267
7327
|
/** The `TableTemplateModule` to be created by this mutation. */
|
|
@@ -8027,13 +8087,13 @@ export interface PermissionsModuleInput {
|
|
|
8027
8087
|
getByMask?: string;
|
|
8028
8088
|
getMaskByName?: string;
|
|
8029
8089
|
}
|
|
8030
|
-
export interface
|
|
8090
|
+
export interface CreateAppInviteInput {
|
|
8031
8091
|
clientMutationId?: string;
|
|
8032
|
-
/** The `
|
|
8033
|
-
|
|
8092
|
+
/** The `AppInvite` to be created by this mutation. */
|
|
8093
|
+
appInvite: AppInviteInput;
|
|
8034
8094
|
}
|
|
8035
|
-
/** An input for mutations affecting `
|
|
8036
|
-
export interface
|
|
8095
|
+
/** An input for mutations affecting `AppInvite` */
|
|
8096
|
+
export interface AppInviteInput {
|
|
8037
8097
|
id?: string;
|
|
8038
8098
|
/** Email address of the invited recipient */
|
|
8039
8099
|
email?: ConstructiveInternalTypeEmail;
|
|
@@ -9510,14 +9570,14 @@ export interface SiteMetadatumPatch {
|
|
|
9510
9570
|
/** Upload for Open Graph image for social media previews */
|
|
9511
9571
|
ogImageUpload?: File;
|
|
9512
9572
|
}
|
|
9513
|
-
export interface
|
|
9573
|
+
export interface UpdateAppClaimedInviteInput {
|
|
9514
9574
|
clientMutationId?: string;
|
|
9515
9575
|
id: string;
|
|
9516
|
-
/** An object where the defined keys will be set on the `
|
|
9517
|
-
|
|
9576
|
+
/** An object where the defined keys will be set on the `AppClaimedInvite` being updated. */
|
|
9577
|
+
appClaimedInvitePatch: AppClaimedInvitePatch;
|
|
9518
9578
|
}
|
|
9519
|
-
/** Represents an update to a `
|
|
9520
|
-
export interface
|
|
9579
|
+
/** Represents an update to a `AppClaimedInvite`. Fields that are set will be updated. */
|
|
9580
|
+
export interface AppClaimedInvitePatch {
|
|
9521
9581
|
id?: string;
|
|
9522
9582
|
/** Optional JSON payload captured at the time the invite was claimed */
|
|
9523
9583
|
data?: unknown;
|
|
@@ -9610,6 +9670,24 @@ export interface CommitPatch {
|
|
|
9610
9670
|
treeId?: string;
|
|
9611
9671
|
date?: string;
|
|
9612
9672
|
}
|
|
9673
|
+
export interface UpdateRateLimitsModuleInput {
|
|
9674
|
+
clientMutationId?: string;
|
|
9675
|
+
id: string;
|
|
9676
|
+
/** An object where the defined keys will be set on the `RateLimitsModule` being updated. */
|
|
9677
|
+
rateLimitsModulePatch: RateLimitsModulePatch;
|
|
9678
|
+
}
|
|
9679
|
+
/** Represents an update to a `RateLimitsModule`. Fields that are set will be updated. */
|
|
9680
|
+
export interface RateLimitsModulePatch {
|
|
9681
|
+
id?: string;
|
|
9682
|
+
databaseId?: string;
|
|
9683
|
+
schemaId?: string;
|
|
9684
|
+
rateLimitSettingsTableId?: string;
|
|
9685
|
+
ipRateLimitsTableId?: string;
|
|
9686
|
+
rateLimitsTableId?: string;
|
|
9687
|
+
rateLimitSettingsTable?: string;
|
|
9688
|
+
ipRateLimitsTable?: string;
|
|
9689
|
+
rateLimitsTable?: string;
|
|
9690
|
+
}
|
|
9613
9691
|
export interface UpdateTableTemplateModuleInput {
|
|
9614
9692
|
clientMutationId?: string;
|
|
9615
9693
|
id: string;
|
|
@@ -10385,14 +10463,14 @@ export interface PermissionsModulePatch {
|
|
|
10385
10463
|
getByMask?: string;
|
|
10386
10464
|
getMaskByName?: string;
|
|
10387
10465
|
}
|
|
10388
|
-
export interface
|
|
10466
|
+
export interface UpdateAppInviteInput {
|
|
10389
10467
|
clientMutationId?: string;
|
|
10390
10468
|
id: string;
|
|
10391
|
-
/** An object where the defined keys will be set on the `
|
|
10392
|
-
|
|
10469
|
+
/** An object where the defined keys will be set on the `AppInvite` being updated. */
|
|
10470
|
+
appInvitePatch: AppInvitePatch;
|
|
10393
10471
|
}
|
|
10394
|
-
/** Represents an update to a `
|
|
10395
|
-
export interface
|
|
10472
|
+
/** Represents an update to a `AppInvite`. Fields that are set will be updated. */
|
|
10473
|
+
export interface AppInvitePatch {
|
|
10396
10474
|
id?: string;
|
|
10397
10475
|
/** Email address of the invited recipient */
|
|
10398
10476
|
email?: ConstructiveInternalTypeEmail;
|
|
@@ -11337,7 +11415,7 @@ export interface DeleteSiteMetadatumInput {
|
|
|
11337
11415
|
/** Unique identifier for this metadata record */
|
|
11338
11416
|
id: string;
|
|
11339
11417
|
}
|
|
11340
|
-
export interface
|
|
11418
|
+
export interface DeleteAppClaimedInviteInput {
|
|
11341
11419
|
clientMutationId?: string;
|
|
11342
11420
|
id: string;
|
|
11343
11421
|
}
|
|
@@ -11360,6 +11438,10 @@ export interface DeleteCommitInput {
|
|
|
11360
11438
|
/** The repository identifier */
|
|
11361
11439
|
databaseId: string;
|
|
11362
11440
|
}
|
|
11441
|
+
export interface DeleteRateLimitsModuleInput {
|
|
11442
|
+
clientMutationId?: string;
|
|
11443
|
+
id: string;
|
|
11444
|
+
}
|
|
11363
11445
|
export interface DeleteTableTemplateModuleInput {
|
|
11364
11446
|
clientMutationId?: string;
|
|
11365
11447
|
id: string;
|
|
@@ -11497,7 +11579,7 @@ export interface DeletePermissionsModuleInput {
|
|
|
11497
11579
|
clientMutationId?: string;
|
|
11498
11580
|
id: string;
|
|
11499
11581
|
}
|
|
11500
|
-
export interface
|
|
11582
|
+
export interface DeleteAppInviteInput {
|
|
11501
11583
|
clientMutationId?: string;
|
|
11502
11584
|
id: string;
|
|
11503
11585
|
}
|
|
@@ -11943,10 +12025,10 @@ export interface SiteMetadatumConnection {
|
|
|
11943
12025
|
pageInfo: PageInfo;
|
|
11944
12026
|
totalCount: number;
|
|
11945
12027
|
}
|
|
11946
|
-
/** A connection to a list of `
|
|
11947
|
-
export interface
|
|
11948
|
-
nodes:
|
|
11949
|
-
edges:
|
|
12028
|
+
/** A connection to a list of `AppClaimedInvite` values. */
|
|
12029
|
+
export interface AppClaimedInviteConnection {
|
|
12030
|
+
nodes: AppClaimedInvite[];
|
|
12031
|
+
edges: AppClaimedInviteEdge[];
|
|
11950
12032
|
pageInfo: PageInfo;
|
|
11951
12033
|
totalCount: number;
|
|
11952
12034
|
}
|
|
@@ -11978,6 +12060,13 @@ export interface CommitConnection {
|
|
|
11978
12060
|
pageInfo: PageInfo;
|
|
11979
12061
|
totalCount: number;
|
|
11980
12062
|
}
|
|
12063
|
+
/** A connection to a list of `RateLimitsModule` values. */
|
|
12064
|
+
export interface RateLimitsModuleConnection {
|
|
12065
|
+
nodes: RateLimitsModule[];
|
|
12066
|
+
edges: RateLimitsModuleEdge[];
|
|
12067
|
+
pageInfo: PageInfo;
|
|
12068
|
+
totalCount: number;
|
|
12069
|
+
}
|
|
11981
12070
|
/** A connection to a list of `TableTemplateModule` values. */
|
|
11982
12071
|
export interface TableTemplateModuleConnection {
|
|
11983
12072
|
nodes: TableTemplateModule[];
|
|
@@ -12216,10 +12305,10 @@ export interface PermissionsModuleConnection {
|
|
|
12216
12305
|
pageInfo: PageInfo;
|
|
12217
12306
|
totalCount: number;
|
|
12218
12307
|
}
|
|
12219
|
-
/** A connection to a list of `
|
|
12220
|
-
export interface
|
|
12221
|
-
nodes:
|
|
12222
|
-
edges:
|
|
12308
|
+
/** A connection to a list of `AppInvite` values. */
|
|
12309
|
+
export interface AppInviteConnection {
|
|
12310
|
+
nodes: AppInvite[];
|
|
12311
|
+
edges: AppInviteEdge[];
|
|
12223
12312
|
pageInfo: PageInfo;
|
|
12224
12313
|
totalCount: number;
|
|
12225
12314
|
}
|
|
@@ -12379,7 +12468,15 @@ export interface RejectDatabaseTransferPayload {
|
|
|
12379
12468
|
clientMutationId?: string | null;
|
|
12380
12469
|
result?: boolean | null;
|
|
12381
12470
|
}
|
|
12382
|
-
export interface
|
|
12471
|
+
export interface VerifyPasswordPayload {
|
|
12472
|
+
clientMutationId?: string | null;
|
|
12473
|
+
result?: boolean | null;
|
|
12474
|
+
}
|
|
12475
|
+
export interface VerifyTotpPayload {
|
|
12476
|
+
clientMutationId?: string | null;
|
|
12477
|
+
result?: boolean | null;
|
|
12478
|
+
}
|
|
12479
|
+
export interface SubmitAppInviteCodePayload {
|
|
12383
12480
|
clientMutationId?: string | null;
|
|
12384
12481
|
result?: boolean | null;
|
|
12385
12482
|
}
|
|
@@ -12508,14 +12605,6 @@ export interface SendVerificationEmailPayload {
|
|
|
12508
12605
|
export interface ForgotPasswordPayload {
|
|
12509
12606
|
clientMutationId?: string | null;
|
|
12510
12607
|
}
|
|
12511
|
-
export interface VerifyPasswordPayload {
|
|
12512
|
-
clientMutationId?: string | null;
|
|
12513
|
-
result?: Session | null;
|
|
12514
|
-
}
|
|
12515
|
-
export interface VerifyTotpPayload {
|
|
12516
|
-
clientMutationId?: string | null;
|
|
12517
|
-
result?: Session | null;
|
|
12518
|
-
}
|
|
12519
12608
|
export interface CreateDefaultIdsModulePayload {
|
|
12520
12609
|
clientMutationId?: string | null;
|
|
12521
12610
|
/** The `DefaultIdsModule` that was created by this mutation. */
|
|
@@ -12785,11 +12874,11 @@ export interface CreateSiteMetadatumPayload {
|
|
|
12785
12874
|
siteMetadatum?: SiteMetadatum | null;
|
|
12786
12875
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
12787
12876
|
}
|
|
12788
|
-
export interface
|
|
12877
|
+
export interface CreateAppClaimedInvitePayload {
|
|
12789
12878
|
clientMutationId?: string | null;
|
|
12790
|
-
/** The `
|
|
12791
|
-
|
|
12792
|
-
|
|
12879
|
+
/** The `AppClaimedInvite` that was created by this mutation. */
|
|
12880
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
12881
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
12793
12882
|
}
|
|
12794
12883
|
export interface CreateAppMembershipDefaultPayload {
|
|
12795
12884
|
clientMutationId?: string | null;
|
|
@@ -12815,6 +12904,12 @@ export interface CreateCommitPayload {
|
|
|
12815
12904
|
commit?: Commit | null;
|
|
12816
12905
|
commitEdge?: CommitEdge | null;
|
|
12817
12906
|
}
|
|
12907
|
+
export interface CreateRateLimitsModulePayload {
|
|
12908
|
+
clientMutationId?: string | null;
|
|
12909
|
+
/** The `RateLimitsModule` that was created by this mutation. */
|
|
12910
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
12911
|
+
rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
|
|
12912
|
+
}
|
|
12818
12913
|
export interface CreateTableTemplateModulePayload {
|
|
12819
12914
|
clientMutationId?: string | null;
|
|
12820
12915
|
/** The `TableTemplateModule` that was created by this mutation. */
|
|
@@ -13023,11 +13118,11 @@ export interface CreatePermissionsModulePayload {
|
|
|
13023
13118
|
permissionsModule?: PermissionsModule | null;
|
|
13024
13119
|
permissionsModuleEdge?: PermissionsModuleEdge | null;
|
|
13025
13120
|
}
|
|
13026
|
-
export interface
|
|
13121
|
+
export interface CreateAppInvitePayload {
|
|
13027
13122
|
clientMutationId?: string | null;
|
|
13028
|
-
/** The `
|
|
13029
|
-
|
|
13030
|
-
|
|
13123
|
+
/** The `AppInvite` that was created by this mutation. */
|
|
13124
|
+
appInvite?: AppInvite | null;
|
|
13125
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
13031
13126
|
}
|
|
13032
13127
|
export interface CreateAppMembershipPayload {
|
|
13033
13128
|
clientMutationId?: string | null;
|
|
@@ -13407,11 +13502,11 @@ export interface UpdateSiteMetadatumPayload {
|
|
|
13407
13502
|
siteMetadatum?: SiteMetadatum | null;
|
|
13408
13503
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
13409
13504
|
}
|
|
13410
|
-
export interface
|
|
13505
|
+
export interface UpdateAppClaimedInvitePayload {
|
|
13411
13506
|
clientMutationId?: string | null;
|
|
13412
|
-
/** The `
|
|
13413
|
-
|
|
13414
|
-
|
|
13507
|
+
/** The `AppClaimedInvite` that was updated by this mutation. */
|
|
13508
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
13509
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
13415
13510
|
}
|
|
13416
13511
|
export interface UpdateAppMembershipDefaultPayload {
|
|
13417
13512
|
clientMutationId?: string | null;
|
|
@@ -13437,6 +13532,12 @@ export interface UpdateCommitPayload {
|
|
|
13437
13532
|
commit?: Commit | null;
|
|
13438
13533
|
commitEdge?: CommitEdge | null;
|
|
13439
13534
|
}
|
|
13535
|
+
export interface UpdateRateLimitsModulePayload {
|
|
13536
|
+
clientMutationId?: string | null;
|
|
13537
|
+
/** The `RateLimitsModule` that was updated by this mutation. */
|
|
13538
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
13539
|
+
rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
|
|
13540
|
+
}
|
|
13440
13541
|
export interface UpdateTableTemplateModulePayload {
|
|
13441
13542
|
clientMutationId?: string | null;
|
|
13442
13543
|
/** The `TableTemplateModule` that was updated by this mutation. */
|
|
@@ -13635,11 +13736,11 @@ export interface UpdatePermissionsModulePayload {
|
|
|
13635
13736
|
permissionsModule?: PermissionsModule | null;
|
|
13636
13737
|
permissionsModuleEdge?: PermissionsModuleEdge | null;
|
|
13637
13738
|
}
|
|
13638
|
-
export interface
|
|
13739
|
+
export interface UpdateAppInvitePayload {
|
|
13639
13740
|
clientMutationId?: string | null;
|
|
13640
|
-
/** The `
|
|
13641
|
-
|
|
13642
|
-
|
|
13741
|
+
/** The `AppInvite` that was updated by this mutation. */
|
|
13742
|
+
appInvite?: AppInvite | null;
|
|
13743
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
13643
13744
|
}
|
|
13644
13745
|
export interface UpdateAppMembershipPayload {
|
|
13645
13746
|
clientMutationId?: string | null;
|
|
@@ -14019,11 +14120,11 @@ export interface DeleteSiteMetadatumPayload {
|
|
|
14019
14120
|
siteMetadatum?: SiteMetadatum | null;
|
|
14020
14121
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
14021
14122
|
}
|
|
14022
|
-
export interface
|
|
14123
|
+
export interface DeleteAppClaimedInvitePayload {
|
|
14023
14124
|
clientMutationId?: string | null;
|
|
14024
|
-
/** The `
|
|
14025
|
-
|
|
14026
|
-
|
|
14125
|
+
/** The `AppClaimedInvite` that was deleted by this mutation. */
|
|
14126
|
+
appClaimedInvite?: AppClaimedInvite | null;
|
|
14127
|
+
appClaimedInviteEdge?: AppClaimedInviteEdge | null;
|
|
14027
14128
|
}
|
|
14028
14129
|
export interface DeleteAppMembershipDefaultPayload {
|
|
14029
14130
|
clientMutationId?: string | null;
|
|
@@ -14049,6 +14150,12 @@ export interface DeleteCommitPayload {
|
|
|
14049
14150
|
commit?: Commit | null;
|
|
14050
14151
|
commitEdge?: CommitEdge | null;
|
|
14051
14152
|
}
|
|
14153
|
+
export interface DeleteRateLimitsModulePayload {
|
|
14154
|
+
clientMutationId?: string | null;
|
|
14155
|
+
/** The `RateLimitsModule` that was deleted by this mutation. */
|
|
14156
|
+
rateLimitsModule?: RateLimitsModule | null;
|
|
14157
|
+
rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
|
|
14158
|
+
}
|
|
14052
14159
|
export interface DeleteTableTemplateModulePayload {
|
|
14053
14160
|
clientMutationId?: string | null;
|
|
14054
14161
|
/** The `TableTemplateModule` that was deleted by this mutation. */
|
|
@@ -14247,11 +14354,11 @@ export interface DeletePermissionsModulePayload {
|
|
|
14247
14354
|
permissionsModule?: PermissionsModule | null;
|
|
14248
14355
|
permissionsModuleEdge?: PermissionsModuleEdge | null;
|
|
14249
14356
|
}
|
|
14250
|
-
export interface
|
|
14357
|
+
export interface DeleteAppInvitePayload {
|
|
14251
14358
|
clientMutationId?: string | null;
|
|
14252
|
-
/** The `
|
|
14253
|
-
|
|
14254
|
-
|
|
14359
|
+
/** The `AppInvite` that was deleted by this mutation. */
|
|
14360
|
+
appInvite?: AppInvite | null;
|
|
14361
|
+
appInviteEdge?: AppInviteEdge | null;
|
|
14255
14362
|
}
|
|
14256
14363
|
export interface DeleteAppMembershipPayload {
|
|
14257
14364
|
clientMutationId?: string | null;
|
|
@@ -14706,11 +14813,11 @@ export interface SiteMetadatumEdge {
|
|
|
14706
14813
|
/** The `SiteMetadatum` at the end of the edge. */
|
|
14707
14814
|
node?: SiteMetadatum | null;
|
|
14708
14815
|
}
|
|
14709
|
-
/** A `
|
|
14710
|
-
export interface
|
|
14816
|
+
/** A `AppClaimedInvite` edge in the connection. */
|
|
14817
|
+
export interface AppClaimedInviteEdge {
|
|
14711
14818
|
cursor?: string | null;
|
|
14712
|
-
/** The `
|
|
14713
|
-
node?:
|
|
14819
|
+
/** The `AppClaimedInvite` at the end of the edge. */
|
|
14820
|
+
node?: AppClaimedInvite | null;
|
|
14714
14821
|
}
|
|
14715
14822
|
/** A `AppMembershipDefault` edge in the connection. */
|
|
14716
14823
|
export interface AppMembershipDefaultEdge {
|
|
@@ -14736,6 +14843,12 @@ export interface CommitEdge {
|
|
|
14736
14843
|
/** The `Commit` at the end of the edge. */
|
|
14737
14844
|
node?: Commit | null;
|
|
14738
14845
|
}
|
|
14846
|
+
/** A `RateLimitsModule` edge in the connection. */
|
|
14847
|
+
export interface RateLimitsModuleEdge {
|
|
14848
|
+
cursor?: string | null;
|
|
14849
|
+
/** The `RateLimitsModule` at the end of the edge. */
|
|
14850
|
+
node?: RateLimitsModule | null;
|
|
14851
|
+
}
|
|
14739
14852
|
/** A `TableTemplateModule` edge in the connection. */
|
|
14740
14853
|
export interface TableTemplateModuleEdge {
|
|
14741
14854
|
cursor?: string | null;
|
|
@@ -14940,11 +15053,11 @@ export interface PermissionsModuleEdge {
|
|
|
14940
15053
|
/** The `PermissionsModule` at the end of the edge. */
|
|
14941
15054
|
node?: PermissionsModule | null;
|
|
14942
15055
|
}
|
|
14943
|
-
/** A `
|
|
14944
|
-
export interface
|
|
15056
|
+
/** A `AppInvite` edge in the connection. */
|
|
15057
|
+
export interface AppInviteEdge {
|
|
14945
15058
|
cursor?: string | null;
|
|
14946
|
-
/** The `
|
|
14947
|
-
node?:
|
|
15059
|
+
/** The `AppInvite` at the end of the edge. */
|
|
15060
|
+
node?: AppInvite | null;
|
|
14948
15061
|
}
|
|
14949
15062
|
/** A `AppMembership` edge in the connection. */
|
|
14950
15063
|
export interface AppMembershipEdge {
|
|
@@ -15127,34 +15240,6 @@ export interface ProvisionTableRecord {
|
|
|
15127
15240
|
outTableId?: string | null;
|
|
15128
15241
|
outFields?: string[] | null;
|
|
15129
15242
|
}
|
|
15130
|
-
/** Tracks user authentication sessions with expiration, fingerprinting, and step-up verification state */
|
|
15131
|
-
export interface Session {
|
|
15132
|
-
id: string;
|
|
15133
|
-
/** References the authenticated user; NULL for anonymous sessions */
|
|
15134
|
-
userId?: string | null;
|
|
15135
|
-
/** Whether this is an anonymous session (no authenticated user) */
|
|
15136
|
-
isAnonymous: boolean;
|
|
15137
|
-
/** When this session expires and can no longer be used for authentication */
|
|
15138
|
-
expiresAt: string;
|
|
15139
|
-
/** When this session was explicitly revoked (soft delete); NULL means active */
|
|
15140
|
-
revokedAt?: string | null;
|
|
15141
|
-
/** The origin (protocol + host) from which the session was created, used for fingerprint validation */
|
|
15142
|
-
origin?: ConstructiveInternalTypeOrigin | null;
|
|
15143
|
-
/** IP address from which the session was created, used for strict fingerprint validation */
|
|
15144
|
-
ip?: string | null;
|
|
15145
|
-
/** User-Agent string from the client, used for strict fingerprint validation */
|
|
15146
|
-
uagent?: string | null;
|
|
15147
|
-
/** Session validation mode: strict (origin+ip+uagent), lax (origin only), or none (no validation) */
|
|
15148
|
-
fingerprintMode: string;
|
|
15149
|
-
/** Timestamp of last password re-verification for step-up authentication */
|
|
15150
|
-
lastPasswordVerified?: string | null;
|
|
15151
|
-
/** Timestamp of last MFA verification for step-up authentication */
|
|
15152
|
-
lastMfaVerified?: string | null;
|
|
15153
|
-
/** Secret used to generate and validate CSRF tokens for cookie-based sessions */
|
|
15154
|
-
csrfSecret?: string | null;
|
|
15155
|
-
createdAt?: string | null;
|
|
15156
|
-
updatedAt?: string | null;
|
|
15157
|
-
}
|
|
15158
15243
|
/** Information about a table field/column */
|
|
15159
15244
|
export interface MetaField {
|
|
15160
15245
|
name: string;
|