@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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ResetPasswordInput, SignInOneTimeTokenInput, SignInInput, SignUpInput, OneTimeTokenInput, ExtendTokenExpiresInput, ForgotPasswordInput, SendVerificationEmailInput,
|
|
9
|
+
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ResetPasswordInput, SignInOneTimeTokenInput, SignInInput, SignUpInput, OneTimeTokenInput, ExtendTokenExpiresInput, ForgotPasswordInput, SendVerificationEmailInput, RequestUploadUrlInput, ConfirmUploadInput, ProvisionBucketInput, SignOutPayload, SendAccountDeletionEmailPayload, CheckPasswordPayload, VerifyPasswordPayload, VerifyTotpPayload, ConfirmDeleteAccountPayload, SetPasswordPayload, VerifyEmailPayload, ResetPasswordPayload, SignInOneTimeTokenPayload, SignInPayload, SignUpPayload, OneTimeTokenPayload, ExtendTokenExpiresPayload, ForgotPasswordPayload, SendVerificationEmailPayload, RequestUploadUrlPayload, ConfirmUploadPayload, ProvisionBucketPayload, SignOutPayloadSelect, SendAccountDeletionEmailPayloadSelect, CheckPasswordPayloadSelect, VerifyPasswordPayloadSelect, VerifyTotpPayloadSelect, ConfirmDeleteAccountPayloadSelect, SetPasswordPayloadSelect, VerifyEmailPayloadSelect, ResetPasswordPayloadSelect, SignInOneTimeTokenPayloadSelect, SignInPayloadSelect, SignUpPayloadSelect, OneTimeTokenPayloadSelect, ExtendTokenExpiresPayloadSelect, ForgotPasswordPayloadSelect, SendVerificationEmailPayloadSelect, RequestUploadUrlPayloadSelect, ConfirmUploadPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface SignOutVariables {
|
|
11
11
|
input: SignOutInput;
|
|
12
12
|
}
|
|
@@ -16,6 +16,12 @@ export interface SendAccountDeletionEmailVariables {
|
|
|
16
16
|
export interface CheckPasswordVariables {
|
|
17
17
|
input: CheckPasswordInput;
|
|
18
18
|
}
|
|
19
|
+
export interface VerifyPasswordVariables {
|
|
20
|
+
input: VerifyPasswordInput;
|
|
21
|
+
}
|
|
22
|
+
export interface VerifyTotpVariables {
|
|
23
|
+
input: VerifyTotpInput;
|
|
24
|
+
}
|
|
19
25
|
export interface ConfirmDeleteAccountVariables {
|
|
20
26
|
input: ConfirmDeleteAccountInput;
|
|
21
27
|
}
|
|
@@ -49,12 +55,6 @@ export interface ForgotPasswordVariables {
|
|
|
49
55
|
export interface SendVerificationEmailVariables {
|
|
50
56
|
input: SendVerificationEmailInput;
|
|
51
57
|
}
|
|
52
|
-
export interface VerifyPasswordVariables {
|
|
53
|
-
input: VerifyPasswordInput;
|
|
54
|
-
}
|
|
55
|
-
export interface VerifyTotpVariables {
|
|
56
|
-
input: VerifyTotpInput;
|
|
57
|
-
}
|
|
58
58
|
/**
|
|
59
59
|
* Variables for requestUploadUrl
|
|
60
60
|
* Request a presigned URL for uploading a file directly to S3.
|
|
@@ -100,6 +100,16 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
100
100
|
} & StrictSelect<S, CheckPasswordPayloadSelect>) => QueryBuilder<{
|
|
101
101
|
checkPassword: InferSelectResult<CheckPasswordPayload, S> | null;
|
|
102
102
|
}>;
|
|
103
|
+
verifyPassword: <S extends VerifyPasswordPayloadSelect>(args: VerifyPasswordVariables, options: {
|
|
104
|
+
select: S;
|
|
105
|
+
} & StrictSelect<S, VerifyPasswordPayloadSelect>) => QueryBuilder<{
|
|
106
|
+
verifyPassword: InferSelectResult<VerifyPasswordPayload, S> | null;
|
|
107
|
+
}>;
|
|
108
|
+
verifyTotp: <S extends VerifyTotpPayloadSelect>(args: VerifyTotpVariables, options: {
|
|
109
|
+
select: S;
|
|
110
|
+
} & StrictSelect<S, VerifyTotpPayloadSelect>) => QueryBuilder<{
|
|
111
|
+
verifyTotp: InferSelectResult<VerifyTotpPayload, S> | null;
|
|
112
|
+
}>;
|
|
103
113
|
confirmDeleteAccount: <S extends ConfirmDeleteAccountPayloadSelect>(args: ConfirmDeleteAccountVariables, options: {
|
|
104
114
|
select: S;
|
|
105
115
|
} & StrictSelect<S, ConfirmDeleteAccountPayloadSelect>) => QueryBuilder<{
|
|
@@ -155,16 +165,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
155
165
|
} & StrictSelect<S, SendVerificationEmailPayloadSelect>) => QueryBuilder<{
|
|
156
166
|
sendVerificationEmail: InferSelectResult<SendVerificationEmailPayload, S> | null;
|
|
157
167
|
}>;
|
|
158
|
-
verifyPassword: <S extends VerifyPasswordPayloadSelect>(args: VerifyPasswordVariables, options: {
|
|
159
|
-
select: S;
|
|
160
|
-
} & StrictSelect<S, VerifyPasswordPayloadSelect>) => QueryBuilder<{
|
|
161
|
-
verifyPassword: InferSelectResult<VerifyPasswordPayload, S> | null;
|
|
162
|
-
}>;
|
|
163
|
-
verifyTotp: <S extends VerifyTotpPayloadSelect>(args: VerifyTotpVariables, options: {
|
|
164
|
-
select: S;
|
|
165
|
-
} & StrictSelect<S, VerifyTotpPayloadSelect>) => QueryBuilder<{
|
|
166
|
-
verifyTotp: InferSelectResult<VerifyTotpPayload, S> | null;
|
|
167
|
-
}>;
|
|
168
168
|
requestUploadUrl: <S extends RequestUploadUrlPayloadSelect>(args: RequestUploadUrlVariables, options: {
|
|
169
169
|
select: S;
|
|
170
170
|
} & StrictSelect<S, RequestUploadUrlPayloadSelect>) => QueryBuilder<{
|
|
@@ -41,6 +41,30 @@ function createMutationOperations(client) {
|
|
|
41
41
|
},
|
|
42
42
|
], input_types_1.connectionFieldsMap, 'CheckPasswordPayload'),
|
|
43
43
|
}),
|
|
44
|
+
verifyPassword: (args, options) => new query_builder_1.QueryBuilder({
|
|
45
|
+
client,
|
|
46
|
+
operation: 'mutation',
|
|
47
|
+
operationName: 'VerifyPassword',
|
|
48
|
+
fieldName: 'verifyPassword',
|
|
49
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyPassword', 'verifyPassword', options.select, args, [
|
|
50
|
+
{
|
|
51
|
+
name: 'input',
|
|
52
|
+
type: 'VerifyPasswordInput!',
|
|
53
|
+
},
|
|
54
|
+
], input_types_1.connectionFieldsMap, 'VerifyPasswordPayload'),
|
|
55
|
+
}),
|
|
56
|
+
verifyTotp: (args, options) => new query_builder_1.QueryBuilder({
|
|
57
|
+
client,
|
|
58
|
+
operation: 'mutation',
|
|
59
|
+
operationName: 'VerifyTotp',
|
|
60
|
+
fieldName: 'verifyTotp',
|
|
61
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyTotp', 'verifyTotp', options.select, args, [
|
|
62
|
+
{
|
|
63
|
+
name: 'input',
|
|
64
|
+
type: 'VerifyTotpInput!',
|
|
65
|
+
},
|
|
66
|
+
], input_types_1.connectionFieldsMap, 'VerifyTotpPayload'),
|
|
67
|
+
}),
|
|
44
68
|
confirmDeleteAccount: (args, options) => new query_builder_1.QueryBuilder({
|
|
45
69
|
client,
|
|
46
70
|
operation: 'mutation',
|
|
@@ -173,30 +197,6 @@ function createMutationOperations(client) {
|
|
|
173
197
|
},
|
|
174
198
|
], input_types_1.connectionFieldsMap, 'SendVerificationEmailPayload'),
|
|
175
199
|
}),
|
|
176
|
-
verifyPassword: (args, options) => new query_builder_1.QueryBuilder({
|
|
177
|
-
client,
|
|
178
|
-
operation: 'mutation',
|
|
179
|
-
operationName: 'VerifyPassword',
|
|
180
|
-
fieldName: 'verifyPassword',
|
|
181
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyPassword', 'verifyPassword', options.select, args, [
|
|
182
|
-
{
|
|
183
|
-
name: 'input',
|
|
184
|
-
type: 'VerifyPasswordInput!',
|
|
185
|
-
},
|
|
186
|
-
], input_types_1.connectionFieldsMap, 'VerifyPasswordPayload'),
|
|
187
|
-
}),
|
|
188
|
-
verifyTotp: (args, options) => new query_builder_1.QueryBuilder({
|
|
189
|
-
client,
|
|
190
|
-
operation: 'mutation',
|
|
191
|
-
operationName: 'VerifyTotp',
|
|
192
|
-
fieldName: 'verifyTotp',
|
|
193
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', 'VerifyTotp', 'verifyTotp', options.select, args, [
|
|
194
|
-
{
|
|
195
|
-
name: 'input',
|
|
196
|
-
type: 'VerifyTotpInput!',
|
|
197
|
-
},
|
|
198
|
-
], input_types_1.connectionFieldsMap, 'VerifyTotpPayload'),
|
|
199
|
-
}),
|
|
200
200
|
requestUploadUrl: (args, options) => new query_builder_1.QueryBuilder({
|
|
201
201
|
client,
|
|
202
202
|
operation: 'mutation',
|
package/auth/schema-types.d.ts
CHANGED
|
@@ -557,6 +557,14 @@ export interface CheckPasswordInput {
|
|
|
557
557
|
clientMutationId?: string;
|
|
558
558
|
password?: string;
|
|
559
559
|
}
|
|
560
|
+
export interface VerifyPasswordInput {
|
|
561
|
+
clientMutationId?: string;
|
|
562
|
+
password: string;
|
|
563
|
+
}
|
|
564
|
+
export interface VerifyTotpInput {
|
|
565
|
+
clientMutationId?: string;
|
|
566
|
+
totpValue: string;
|
|
567
|
+
}
|
|
560
568
|
export interface ConfirmDeleteAccountInput {
|
|
561
569
|
clientMutationId?: string;
|
|
562
570
|
userId?: string;
|
|
@@ -637,14 +645,6 @@ export interface SendVerificationEmailInput {
|
|
|
637
645
|
clientMutationId?: string;
|
|
638
646
|
email?: ConstructiveInternalTypeEmail;
|
|
639
647
|
}
|
|
640
|
-
export interface VerifyPasswordInput {
|
|
641
|
-
clientMutationId?: string;
|
|
642
|
-
password: string;
|
|
643
|
-
}
|
|
644
|
-
export interface VerifyTotpInput {
|
|
645
|
-
clientMutationId?: string;
|
|
646
|
-
totpValue: string;
|
|
647
|
-
}
|
|
648
648
|
export interface CreateRoleTypeInput {
|
|
649
649
|
clientMutationId?: string;
|
|
650
650
|
/** The `RoleType` to be created by this mutation. */
|
|
@@ -1013,6 +1013,14 @@ export interface SendAccountDeletionEmailPayload {
|
|
|
1013
1013
|
export interface CheckPasswordPayload {
|
|
1014
1014
|
clientMutationId?: string | null;
|
|
1015
1015
|
}
|
|
1016
|
+
export interface VerifyPasswordPayload {
|
|
1017
|
+
clientMutationId?: string | null;
|
|
1018
|
+
result?: boolean | null;
|
|
1019
|
+
}
|
|
1020
|
+
export interface VerifyTotpPayload {
|
|
1021
|
+
clientMutationId?: string | null;
|
|
1022
|
+
result?: boolean | null;
|
|
1023
|
+
}
|
|
1016
1024
|
export interface ConfirmDeleteAccountPayload {
|
|
1017
1025
|
clientMutationId?: string | null;
|
|
1018
1026
|
result?: boolean | null;
|
|
@@ -1056,14 +1064,6 @@ export interface SendVerificationEmailPayload {
|
|
|
1056
1064
|
clientMutationId?: string | null;
|
|
1057
1065
|
result?: boolean | null;
|
|
1058
1066
|
}
|
|
1059
|
-
export interface VerifyPasswordPayload {
|
|
1060
|
-
clientMutationId?: string | null;
|
|
1061
|
-
result?: Session | null;
|
|
1062
|
-
}
|
|
1063
|
-
export interface VerifyTotpPayload {
|
|
1064
|
-
clientMutationId?: string | null;
|
|
1065
|
-
result?: Session | null;
|
|
1066
|
-
}
|
|
1067
1067
|
export interface CreateRoleTypePayload {
|
|
1068
1068
|
clientMutationId?: string | null;
|
|
1069
1069
|
/** The `RoleType` that was created by this mutation. */
|
|
@@ -1320,34 +1320,6 @@ export interface ExtendTokenExpiresRecord {
|
|
|
1320
1320
|
sessionId?: string | null;
|
|
1321
1321
|
expiresAt?: string | null;
|
|
1322
1322
|
}
|
|
1323
|
-
/** Tracks user authentication sessions with expiration, fingerprinting, and step-up verification state */
|
|
1324
|
-
export interface Session {
|
|
1325
|
-
id: string;
|
|
1326
|
-
/** References the authenticated user; NULL for anonymous sessions */
|
|
1327
|
-
userId?: string | null;
|
|
1328
|
-
/** Whether this is an anonymous session (no authenticated user) */
|
|
1329
|
-
isAnonymous: boolean;
|
|
1330
|
-
/** When this session expires and can no longer be used for authentication */
|
|
1331
|
-
expiresAt: string;
|
|
1332
|
-
/** When this session was explicitly revoked (soft delete); NULL means active */
|
|
1333
|
-
revokedAt?: string | null;
|
|
1334
|
-
/** The origin (protocol + host) from which the session was created, used for fingerprint validation */
|
|
1335
|
-
origin?: ConstructiveInternalTypeOrigin | null;
|
|
1336
|
-
/** IP address from which the session was created, used for strict fingerprint validation */
|
|
1337
|
-
ip?: string | null;
|
|
1338
|
-
/** User-Agent string from the client, used for strict fingerprint validation */
|
|
1339
|
-
uagent?: string | null;
|
|
1340
|
-
/** Session validation mode: strict (origin+ip+uagent), lax (origin only), or none (no validation) */
|
|
1341
|
-
fingerprintMode: string;
|
|
1342
|
-
/** Timestamp of last password re-verification for step-up authentication */
|
|
1343
|
-
lastPasswordVerified?: string | null;
|
|
1344
|
-
/** Timestamp of last MFA verification for step-up authentication */
|
|
1345
|
-
lastMfaVerified?: string | null;
|
|
1346
|
-
/** Secret used to generate and validate CSRF tokens for cookie-based sessions */
|
|
1347
|
-
csrfSecret?: string | null;
|
|
1348
|
-
createdAt?: string | null;
|
|
1349
|
-
updatedAt?: string | null;
|
|
1350
|
-
}
|
|
1351
1323
|
/** Information about a table field/column */
|
|
1352
1324
|
export interface MetaField {
|
|
1353
1325
|
name: string;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimit, AppAchievement, AppStep,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimit, AppAchievement, AppStep, AppClaimedInvite, OrgChartEdgeGrant, OrgLimit, AppGrant, AppMembershipDefault, OrgClaimedInvite, OrgGrant, OrgChartEdge, OrgMembershipDefault, AppLevel, AppInvite, AppMembership, OrgMembership, OrgInvite
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/esm/admin/hooks/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimit, AppAchievement, AppStep,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimit, AppAchievement, AppStep, AppClaimedInvite, OrgChartEdgeGrant, OrgLimit, AppGrant, AppMembershipDefault, OrgClaimedInvite, OrgGrant, OrgChartEdge, OrgMembershipDefault, AppLevel, AppInvite, AppMembership, OrgMembership, OrgInvite
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -114,10 +114,10 @@ export declare const invalidate: {
|
|
|
114
114
|
/** Invalidate appStep list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
115
115
|
/** Invalidate a specific appStep */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
116
116
|
};
|
|
117
|
-
/** Invalidate
|
|
118
|
-
/** Invalidate all
|
|
119
|
-
/** Invalidate
|
|
120
|
-
/** Invalidate a specific
|
|
117
|
+
/** Invalidate appClaimedInvite queries */ readonly appClaimedInvite: {
|
|
118
|
+
/** Invalidate all appClaimedInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
119
|
+
/** Invalidate appClaimedInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
120
|
+
/** Invalidate a specific appClaimedInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
121
121
|
};
|
|
122
122
|
/** Invalidate orgChartEdgeGrant queries */ readonly orgChartEdgeGrant: {
|
|
123
123
|
/** Invalidate all orgChartEdgeGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -164,10 +164,10 @@ export declare const invalidate: {
|
|
|
164
164
|
/** Invalidate appLevel list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
165
165
|
/** Invalidate a specific appLevel */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
166
166
|
};
|
|
167
|
-
/** Invalidate
|
|
168
|
-
/** Invalidate all
|
|
169
|
-
/** Invalidate
|
|
170
|
-
/** Invalidate a specific
|
|
167
|
+
/** Invalidate appInvite queries */ readonly appInvite: {
|
|
168
|
+
/** Invalidate all appInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
169
|
+
/** Invalidate appInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
|
+
/** Invalidate a specific appInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
171
|
};
|
|
172
172
|
/** Invalidate appMembership queries */ readonly appMembership: {
|
|
173
173
|
/** Invalidate all appMembership queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -215,7 +215,7 @@ export declare const remove: {
|
|
|
215
215
|
/** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
216
216
|
/** Remove appAchievement from cache */ readonly appAchievement: (queryClient: QueryClient, id: string | number) => void;
|
|
217
217
|
/** Remove appStep from cache */ readonly appStep: (queryClient: QueryClient, id: string | number) => void;
|
|
218
|
-
/** Remove
|
|
218
|
+
/** Remove appClaimedInvite from cache */ readonly appClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
219
219
|
/** Remove orgChartEdgeGrant from cache */ readonly orgChartEdgeGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
220
220
|
/** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
221
221
|
/** Remove appGrant from cache */ readonly appGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -225,7 +225,7 @@ export declare const remove: {
|
|
|
225
225
|
/** Remove orgChartEdge from cache */ readonly orgChartEdge: (queryClient: QueryClient, id: string | number) => void;
|
|
226
226
|
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
227
227
|
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
228
|
-
/** Remove
|
|
228
|
+
/** Remove appInvite from cache */ readonly appInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
229
229
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
230
230
|
/** Remove orgMembership from cache */ readonly orgMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
231
231
|
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -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 { orgGetManagersRecordKeys, orgGetSubordinatesRecordKeys, appPermissionKeys, orgPermissionKeys, appLevelRequirementKeys, orgMemberKeys, appPermissionDefaultKeys, orgPermissionDefaultKeys, appAdminGrantKeys, appOwnerGrantKeys, appLimitDefaultKeys, orgLimitDefaultKeys, orgAdminGrantKeys, orgOwnerGrantKeys, membershipTypeKeys, appLimitKeys, appAchievementKeys, appStepKeys,
|
|
6
|
+
import { orgGetManagersRecordKeys, orgGetSubordinatesRecordKeys, appPermissionKeys, orgPermissionKeys, appLevelRequirementKeys, orgMemberKeys, appPermissionDefaultKeys, orgPermissionDefaultKeys, appAdminGrantKeys, appOwnerGrantKeys, appLimitDefaultKeys, orgLimitDefaultKeys, orgAdminGrantKeys, orgOwnerGrantKeys, membershipTypeKeys, appLimitKeys, appAchievementKeys, appStepKeys, appClaimedInviteKeys, orgChartEdgeGrantKeys, orgLimitKeys, appGrantKeys, appMembershipDefaultKeys, orgClaimedInviteKeys, orgGrantKeys, orgChartEdgeKeys, orgMembershipDefaultKeys, appLevelKeys, appInviteKeys, appMembershipKeys, orgMembershipKeys, orgInviteKeys, } from './query-keys';
|
|
7
7
|
/**
|
|
8
8
|
// ============================================================================
|
|
9
9
|
// Invalidation Helpers
|
|
@@ -222,15 +222,15 @@ export const invalidate = {
|
|
|
222
222
|
queryKey: appStepKeys.detail(id),
|
|
223
223
|
}),
|
|
224
224
|
},
|
|
225
|
-
/** Invalidate
|
|
226
|
-
/** Invalidate all
|
|
227
|
-
queryKey:
|
|
225
|
+
/** Invalidate appClaimedInvite queries */ appClaimedInvite: {
|
|
226
|
+
/** Invalidate all appClaimedInvite queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
227
|
+
queryKey: appClaimedInviteKeys.all,
|
|
228
228
|
}),
|
|
229
|
-
/** Invalidate
|
|
230
|
-
queryKey:
|
|
229
|
+
/** Invalidate appClaimedInvite list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
230
|
+
queryKey: appClaimedInviteKeys.lists(),
|
|
231
231
|
}),
|
|
232
|
-
/** Invalidate a specific
|
|
233
|
-
queryKey:
|
|
232
|
+
/** Invalidate a specific appClaimedInvite */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
233
|
+
queryKey: appClaimedInviteKeys.detail(id),
|
|
234
234
|
}),
|
|
235
235
|
},
|
|
236
236
|
/** Invalidate orgChartEdgeGrant queries */ orgChartEdgeGrant: {
|
|
@@ -332,15 +332,15 @@ export const invalidate = {
|
|
|
332
332
|
queryKey: appLevelKeys.detail(id),
|
|
333
333
|
}),
|
|
334
334
|
},
|
|
335
|
-
/** Invalidate
|
|
336
|
-
/** Invalidate all
|
|
337
|
-
queryKey:
|
|
335
|
+
/** Invalidate appInvite queries */ appInvite: {
|
|
336
|
+
/** Invalidate all appInvite queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
337
|
+
queryKey: appInviteKeys.all,
|
|
338
338
|
}),
|
|
339
|
-
/** Invalidate
|
|
340
|
-
queryKey:
|
|
339
|
+
/** Invalidate appInvite list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
340
|
+
queryKey: appInviteKeys.lists(),
|
|
341
341
|
}),
|
|
342
|
-
/** Invalidate a specific
|
|
343
|
-
queryKey:
|
|
342
|
+
/** Invalidate a specific appInvite */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
343
|
+
queryKey: appInviteKeys.detail(id),
|
|
344
344
|
}),
|
|
345
345
|
},
|
|
346
346
|
/** Invalidate appMembership queries */ appMembership: {
|
|
@@ -479,9 +479,9 @@ export const remove = {
|
|
|
479
479
|
queryKey: appStepKeys.detail(id),
|
|
480
480
|
});
|
|
481
481
|
},
|
|
482
|
-
/** Remove
|
|
482
|
+
/** Remove appClaimedInvite from cache */ appClaimedInvite: (queryClient, id) => {
|
|
483
483
|
queryClient.removeQueries({
|
|
484
|
-
queryKey:
|
|
484
|
+
queryKey: appClaimedInviteKeys.detail(id),
|
|
485
485
|
});
|
|
486
486
|
},
|
|
487
487
|
/** Remove orgChartEdgeGrant from cache */ orgChartEdgeGrant: (queryClient, id) => {
|
|
@@ -529,9 +529,9 @@ export const remove = {
|
|
|
529
529
|
queryKey: appLevelKeys.detail(id),
|
|
530
530
|
});
|
|
531
531
|
},
|
|
532
|
-
/** Remove
|
|
532
|
+
/** Remove appInvite from cache */ appInvite: (queryClient, id) => {
|
|
533
533
|
queryClient.removeQueries({
|
|
534
|
-
queryKey:
|
|
534
|
+
queryKey: appInviteKeys.detail(id),
|
|
535
535
|
});
|
|
536
536
|
},
|
|
537
537
|
/** Remove appMembership from cache */ appMembership: (queryClient, id) => {
|
|
@@ -111,11 +111,11 @@ export declare const appStepMutationKeys: {
|
|
|
111
111
|
/** Update appStep mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appstep", "update", string | number];
|
|
112
112
|
/** Delete appStep mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appstep", "delete", string | number];
|
|
113
113
|
};
|
|
114
|
-
export declare const
|
|
115
|
-
/** All
|
|
116
|
-
/** Create
|
|
117
|
-
/** Update
|
|
118
|
-
/** Delete
|
|
114
|
+
export declare const appClaimedInviteMutationKeys: {
|
|
115
|
+
/** All appClaimedInvite mutation keys */ readonly all: readonly ["mutation", "appclaimedinvite"];
|
|
116
|
+
/** Create appClaimedInvite mutation key */ readonly create: () => readonly ["mutation", "appclaimedinvite", "create"];
|
|
117
|
+
/** Update appClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appclaimedinvite", "update", string | number];
|
|
118
|
+
/** Delete appClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appclaimedinvite", "delete", string | number];
|
|
119
119
|
};
|
|
120
120
|
export declare const orgChartEdgeGrantMutationKeys: {
|
|
121
121
|
/** All orgChartEdgeGrant mutation keys */ readonly all: readonly ["mutation", "orgchartedgegrant"];
|
|
@@ -171,11 +171,11 @@ export declare const appLevelMutationKeys: {
|
|
|
171
171
|
/** Update appLevel mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applevel", "update", string | number];
|
|
172
172
|
/** Delete appLevel mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applevel", "delete", string | number];
|
|
173
173
|
};
|
|
174
|
-
export declare const
|
|
175
|
-
/** All
|
|
176
|
-
/** Create
|
|
177
|
-
/** Update
|
|
178
|
-
/** Delete
|
|
174
|
+
export declare const appInviteMutationKeys: {
|
|
175
|
+
/** All appInvite mutation keys */ readonly all: readonly ["mutation", "appinvite"];
|
|
176
|
+
/** Create appInvite mutation key */ readonly create: () => readonly ["mutation", "appinvite", "create"];
|
|
177
|
+
/** Update appInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appinvite", "update", string | number];
|
|
178
|
+
/** Delete appInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appinvite", "delete", string | number];
|
|
179
179
|
};
|
|
180
180
|
export declare const appMembershipMutationKeys: {
|
|
181
181
|
/** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
|
|
@@ -196,7 +196,7 @@ export declare const orgInviteMutationKeys: {
|
|
|
196
196
|
/** Delete orgInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orginvite", "delete", string | number];
|
|
197
197
|
};
|
|
198
198
|
export declare const customMutationKeys: {
|
|
199
|
-
/** Mutation key for
|
|
199
|
+
/** Mutation key for submitAppInviteCode */ readonly submitAppInviteCode: (identifier?: string) => readonly ["mutation", "submitAppInviteCode", string] | readonly ["mutation", "submitAppInviteCode"];
|
|
200
200
|
/** Mutation key for submitOrgInviteCode */ readonly submitOrgInviteCode: (identifier?: string) => readonly ["mutation", "submitOrgInviteCode", string] | readonly ["mutation", "submitOrgInviteCode"];
|
|
201
201
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
202
202
|
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
@@ -333,11 +333,11 @@ export declare const mutationKeys: {
|
|
|
333
333
|
/** Update appStep mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appstep", "update", string | number];
|
|
334
334
|
/** Delete appStep mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appstep", "delete", string | number];
|
|
335
335
|
};
|
|
336
|
-
readonly
|
|
337
|
-
/** All
|
|
338
|
-
/** Create
|
|
339
|
-
/** Update
|
|
340
|
-
/** Delete
|
|
336
|
+
readonly appClaimedInvite: {
|
|
337
|
+
/** All appClaimedInvite mutation keys */ readonly all: readonly ["mutation", "appclaimedinvite"];
|
|
338
|
+
/** Create appClaimedInvite mutation key */ readonly create: () => readonly ["mutation", "appclaimedinvite", "create"];
|
|
339
|
+
/** Update appClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appclaimedinvite", "update", string | number];
|
|
340
|
+
/** Delete appClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appclaimedinvite", "delete", string | number];
|
|
341
341
|
};
|
|
342
342
|
readonly orgChartEdgeGrant: {
|
|
343
343
|
/** All orgChartEdgeGrant mutation keys */ readonly all: readonly ["mutation", "orgchartedgegrant"];
|
|
@@ -393,11 +393,11 @@ export declare const mutationKeys: {
|
|
|
393
393
|
/** Update appLevel mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applevel", "update", string | number];
|
|
394
394
|
/** Delete appLevel mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applevel", "delete", string | number];
|
|
395
395
|
};
|
|
396
|
-
readonly
|
|
397
|
-
/** All
|
|
398
|
-
/** Create
|
|
399
|
-
/** Update
|
|
400
|
-
/** Delete
|
|
396
|
+
readonly appInvite: {
|
|
397
|
+
/** All appInvite mutation keys */ readonly all: readonly ["mutation", "appinvite"];
|
|
398
|
+
/** Create appInvite mutation key */ readonly create: () => readonly ["mutation", "appinvite", "create"];
|
|
399
|
+
/** Update appInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appinvite", "update", string | number];
|
|
400
|
+
/** Delete appInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appinvite", "delete", string | number];
|
|
401
401
|
};
|
|
402
402
|
readonly appMembership: {
|
|
403
403
|
/** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
|
|
@@ -418,7 +418,7 @@ export declare const mutationKeys: {
|
|
|
418
418
|
/** Delete orgInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orginvite", "delete", string | number];
|
|
419
419
|
};
|
|
420
420
|
readonly custom: {
|
|
421
|
-
/** Mutation key for
|
|
421
|
+
/** Mutation key for submitAppInviteCode */ readonly submitAppInviteCode: (identifier?: string) => readonly ["mutation", "submitAppInviteCode", string] | readonly ["mutation", "submitAppInviteCode"];
|
|
422
422
|
/** Mutation key for submitOrgInviteCode */ readonly submitOrgInviteCode: (identifier?: string) => readonly ["mutation", "submitOrgInviteCode", string] | readonly ["mutation", "submitOrgInviteCode"];
|
|
423
423
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
424
424
|
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
@@ -126,11 +126,11 @@ export const appStepMutationKeys = {
|
|
|
126
126
|
/** Update appStep mutation key */ update: (id) => ['mutation', 'appstep', 'update', id],
|
|
127
127
|
/** Delete appStep mutation key */ delete: (id) => ['mutation', 'appstep', 'delete', id],
|
|
128
128
|
};
|
|
129
|
-
export const
|
|
130
|
-
/** All
|
|
131
|
-
/** Create
|
|
132
|
-
/** Update
|
|
133
|
-
/** Delete
|
|
129
|
+
export const appClaimedInviteMutationKeys = {
|
|
130
|
+
/** All appClaimedInvite mutation keys */ all: ['mutation', 'appclaimedinvite'],
|
|
131
|
+
/** Create appClaimedInvite mutation key */ create: () => ['mutation', 'appclaimedinvite', 'create'],
|
|
132
|
+
/** Update appClaimedInvite mutation key */ update: (id) => ['mutation', 'appclaimedinvite', 'update', id],
|
|
133
|
+
/** Delete appClaimedInvite mutation key */ delete: (id) => ['mutation', 'appclaimedinvite', 'delete', id],
|
|
134
134
|
};
|
|
135
135
|
export const orgChartEdgeGrantMutationKeys = {
|
|
136
136
|
/** All orgChartEdgeGrant mutation keys */ all: ['mutation', 'orgchartedgegrant'],
|
|
@@ -186,11 +186,11 @@ export const appLevelMutationKeys = {
|
|
|
186
186
|
/** Update appLevel mutation key */ update: (id) => ['mutation', 'applevel', 'update', id],
|
|
187
187
|
/** Delete appLevel mutation key */ delete: (id) => ['mutation', 'applevel', 'delete', id],
|
|
188
188
|
};
|
|
189
|
-
export const
|
|
190
|
-
/** All
|
|
191
|
-
/** Create
|
|
192
|
-
/** Update
|
|
193
|
-
/** Delete
|
|
189
|
+
export const appInviteMutationKeys = {
|
|
190
|
+
/** All appInvite mutation keys */ all: ['mutation', 'appinvite'],
|
|
191
|
+
/** Create appInvite mutation key */ create: () => ['mutation', 'appinvite', 'create'],
|
|
192
|
+
/** Update appInvite mutation key */ update: (id) => ['mutation', 'appinvite', 'update', id],
|
|
193
|
+
/** Delete appInvite mutation key */ delete: (id) => ['mutation', 'appinvite', 'delete', id],
|
|
194
194
|
};
|
|
195
195
|
export const appMembershipMutationKeys = {
|
|
196
196
|
/** All appMembership mutation keys */ all: ['mutation', 'appmembership'],
|
|
@@ -214,9 +214,9 @@ export const orgInviteMutationKeys = {
|
|
|
214
214
|
// Custom Mutation Keys
|
|
215
215
|
// ============================================================================
|
|
216
216
|
export const customMutationKeys = {
|
|
217
|
-
/** Mutation key for
|
|
218
|
-
? ['mutation', '
|
|
219
|
-
: ['mutation', '
|
|
217
|
+
/** Mutation key for submitAppInviteCode */ submitAppInviteCode: (identifier) => identifier
|
|
218
|
+
? ['mutation', 'submitAppInviteCode', identifier]
|
|
219
|
+
: ['mutation', 'submitAppInviteCode'],
|
|
220
220
|
/** Mutation key for submitOrgInviteCode */ submitOrgInviteCode: (identifier) => identifier
|
|
221
221
|
? ['mutation', 'submitOrgInviteCode', identifier]
|
|
222
222
|
: ['mutation', 'submitOrgInviteCode'],
|
|
@@ -271,7 +271,7 @@ export const mutationKeys = {
|
|
|
271
271
|
appLimit: appLimitMutationKeys,
|
|
272
272
|
appAchievement: appAchievementMutationKeys,
|
|
273
273
|
appStep: appStepMutationKeys,
|
|
274
|
-
|
|
274
|
+
appClaimedInvite: appClaimedInviteMutationKeys,
|
|
275
275
|
orgChartEdgeGrant: orgChartEdgeGrantMutationKeys,
|
|
276
276
|
orgLimit: orgLimitMutationKeys,
|
|
277
277
|
appGrant: appGrantMutationKeys,
|
|
@@ -281,7 +281,7 @@ export const mutationKeys = {
|
|
|
281
281
|
orgChartEdge: orgChartEdgeMutationKeys,
|
|
282
282
|
orgMembershipDefault: orgMembershipDefaultMutationKeys,
|
|
283
283
|
appLevel: appLevelMutationKeys,
|
|
284
|
-
|
|
284
|
+
appInvite: appInviteMutationKeys,
|
|
285
285
|
appMembership: appMembershipMutationKeys,
|
|
286
286
|
orgMembership: orgMembershipMutationKeys,
|
|
287
287
|
orgInvite: orgInviteMutationKeys,
|
|
@@ -53,9 +53,9 @@ export * from './useDeleteAppAchievementMutation';
|
|
|
53
53
|
export * from './useCreateAppStepMutation';
|
|
54
54
|
export * from './useUpdateAppStepMutation';
|
|
55
55
|
export * from './useDeleteAppStepMutation';
|
|
56
|
-
export * from './
|
|
57
|
-
export * from './
|
|
58
|
-
export * from './
|
|
56
|
+
export * from './useCreateAppClaimedInviteMutation';
|
|
57
|
+
export * from './useUpdateAppClaimedInviteMutation';
|
|
58
|
+
export * from './useDeleteAppClaimedInviteMutation';
|
|
59
59
|
export * from './useCreateOrgChartEdgeGrantMutation';
|
|
60
60
|
export * from './useUpdateOrgChartEdgeGrantMutation';
|
|
61
61
|
export * from './useDeleteOrgChartEdgeGrantMutation';
|
|
@@ -83,9 +83,9 @@ export * from './useDeleteOrgMembershipDefaultMutation';
|
|
|
83
83
|
export * from './useCreateAppLevelMutation';
|
|
84
84
|
export * from './useUpdateAppLevelMutation';
|
|
85
85
|
export * from './useDeleteAppLevelMutation';
|
|
86
|
-
export * from './
|
|
87
|
-
export * from './
|
|
88
|
-
export * from './
|
|
86
|
+
export * from './useCreateAppInviteMutation';
|
|
87
|
+
export * from './useUpdateAppInviteMutation';
|
|
88
|
+
export * from './useDeleteAppInviteMutation';
|
|
89
89
|
export * from './useCreateAppMembershipMutation';
|
|
90
90
|
export * from './useUpdateAppMembershipMutation';
|
|
91
91
|
export * from './useDeleteAppMembershipMutation';
|
|
@@ -95,7 +95,7 @@ export * from './useDeleteOrgMembershipMutation';
|
|
|
95
95
|
export * from './useCreateOrgInviteMutation';
|
|
96
96
|
export * from './useUpdateOrgInviteMutation';
|
|
97
97
|
export * from './useDeleteOrgInviteMutation';
|
|
98
|
-
export * from './
|
|
98
|
+
export * from './useSubmitAppInviteCodeMutation';
|
|
99
99
|
export * from './useSubmitOrgInviteCodeMutation';
|
|
100
100
|
export * from './useRequestUploadUrlMutation';
|
|
101
101
|
export * from './useConfirmUploadMutation';
|
|
@@ -53,9 +53,9 @@ export * from './useDeleteAppAchievementMutation';
|
|
|
53
53
|
export * from './useCreateAppStepMutation';
|
|
54
54
|
export * from './useUpdateAppStepMutation';
|
|
55
55
|
export * from './useDeleteAppStepMutation';
|
|
56
|
-
export * from './
|
|
57
|
-
export * from './
|
|
58
|
-
export * from './
|
|
56
|
+
export * from './useCreateAppClaimedInviteMutation';
|
|
57
|
+
export * from './useUpdateAppClaimedInviteMutation';
|
|
58
|
+
export * from './useDeleteAppClaimedInviteMutation';
|
|
59
59
|
export * from './useCreateOrgChartEdgeGrantMutation';
|
|
60
60
|
export * from './useUpdateOrgChartEdgeGrantMutation';
|
|
61
61
|
export * from './useDeleteOrgChartEdgeGrantMutation';
|
|
@@ -83,9 +83,9 @@ export * from './useDeleteOrgMembershipDefaultMutation';
|
|
|
83
83
|
export * from './useCreateAppLevelMutation';
|
|
84
84
|
export * from './useUpdateAppLevelMutation';
|
|
85
85
|
export * from './useDeleteAppLevelMutation';
|
|
86
|
-
export * from './
|
|
87
|
-
export * from './
|
|
88
|
-
export * from './
|
|
86
|
+
export * from './useCreateAppInviteMutation';
|
|
87
|
+
export * from './useUpdateAppInviteMutation';
|
|
88
|
+
export * from './useDeleteAppInviteMutation';
|
|
89
89
|
export * from './useCreateAppMembershipMutation';
|
|
90
90
|
export * from './useUpdateAppMembershipMutation';
|
|
91
91
|
export * from './useDeleteAppMembershipMutation';
|
|
@@ -95,7 +95,7 @@ export * from './useDeleteOrgMembershipMutation';
|
|
|
95
95
|
export * from './useCreateOrgInviteMutation';
|
|
96
96
|
export * from './useUpdateOrgInviteMutation';
|
|
97
97
|
export * from './useDeleteOrgInviteMutation';
|
|
98
|
-
export * from './
|
|
98
|
+
export * from './useSubmitAppInviteCodeMutation';
|
|
99
99
|
export * from './useSubmitOrgInviteCodeMutation';
|
|
100
100
|
export * from './useRequestUploadUrlMutation';
|
|
101
101
|
export * from './useConfirmUploadMutation';
|