@constructive-io/react 0.15.2 → 0.15.4
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 +65 -47
- package/admin/hooks/invalidation.js +143 -95
- package/admin/hooks/mutation-keys.d.ts +130 -96
- package/admin/hooks/mutation-keys.js +78 -60
- package/admin/hooks/mutations/index.d.ts +32 -28
- package/admin/hooks/mutations/index.js +32 -28
- package/admin/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/{auth/hooks/mutations/useConfirmUploadMutation.js → admin/hooks/mutations/useCreateAppLimitEventMutation.js} +14 -6
- package/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitEventMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +22 -18
- package/admin/hooks/queries/index.js +22 -18
- package/admin/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/admin/hooks/queries/useAppLimitEventsQuery.js +38 -0
- package/admin/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgLimitAggregateQuery.js +53 -0
- package/admin/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitAggregatesQuery.js +38 -0
- package/admin/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitEventsQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +154 -112
- package/admin/hooks/query-keys.js +90 -66
- package/admin/orm/index.d.ts +24 -23
- package/admin/orm/index.js +24 -18
- package/admin/orm/input-types.d.ts +1297 -839
- package/admin/orm/models/appLimitEvent.d.ts +32 -0
- package/admin/orm/models/appLimitEvent.js +55 -0
- package/admin/orm/models/index.d.ts +12 -9
- package/admin/orm/models/index.js +25 -19
- package/admin/orm/models/orgLimitAggregate.d.ts +56 -0
- package/admin/orm/models/orgLimitAggregate.js +100 -0
- package/admin/orm/models/orgLimitEvent.d.ts +32 -0
- package/admin/orm/models/orgLimitEvent.js +55 -0
- package/admin/orm/mutation/index.d.ts +1 -15
- package/admin/orm/mutation/index.js +0 -12
- package/admin/schema-types.d.ts +1207 -856
- package/admin/types.d.ts +96 -53
- package/auth/hooks/mutation-keys.d.ts +0 -2
- package/auth/hooks/mutation-keys.js +0 -3
- package/auth/hooks/mutations/index.d.ts +0 -1
- package/auth/hooks/mutations/index.js +0 -1
- package/auth/orm/index.d.ts +0 -5
- package/auth/orm/input-types.d.ts +0 -20
- package/auth/orm/mutation/index.d.ts +1 -15
- package/auth/orm/mutation/index.js +0 -12
- package/auth/schema-types.d.ts +0 -14
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +65 -47
- package/esm/admin/hooks/invalidation.js +144 -96
- package/esm/admin/hooks/mutation-keys.d.ts +130 -96
- package/esm/admin/hooks/mutation-keys.js +77 -59
- package/esm/admin/hooks/mutations/index.d.ts +32 -28
- package/esm/admin/hooks/mutations/index.js +32 -28
- package/esm/admin/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateAppLimitEventMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitEventMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +22 -18
- package/esm/admin/hooks/queries/index.js +22 -18
- package/esm/admin/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useAppLimitEventsQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregateQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregatesQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitEventsQuery.js +32 -0
- package/esm/admin/hooks/query-keys.d.ts +154 -112
- package/esm/admin/hooks/query-keys.js +89 -65
- package/esm/admin/orm/index.d.ts +24 -23
- package/esm/admin/orm/index.js +24 -18
- package/esm/admin/orm/input-types.d.ts +1297 -839
- package/esm/admin/orm/models/appLimitEvent.d.ts +32 -0
- package/esm/admin/orm/models/appLimitEvent.js +51 -0
- package/esm/admin/orm/models/index.d.ts +12 -9
- package/esm/admin/orm/models/index.js +12 -9
- package/esm/admin/orm/models/orgLimitAggregate.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitAggregate.js +96 -0
- package/esm/admin/orm/models/orgLimitEvent.d.ts +32 -0
- package/esm/admin/orm/models/orgLimitEvent.js +51 -0
- package/esm/admin/orm/mutation/index.d.ts +1 -15
- package/esm/admin/orm/mutation/index.js +0 -12
- package/esm/admin/schema-types.d.ts +1207 -856
- package/esm/admin/types.d.ts +96 -53
- package/esm/auth/hooks/mutation-keys.d.ts +0 -2
- package/esm/auth/hooks/mutation-keys.js +0 -3
- package/esm/auth/hooks/mutations/index.d.ts +0 -1
- package/esm/auth/hooks/mutations/index.js +0 -1
- package/esm/auth/orm/index.d.ts +0 -5
- package/esm/auth/orm/input-types.d.ts +0 -20
- package/esm/auth/orm/mutation/index.d.ts +1 -15
- package/esm/auth/orm/mutation/index.js +0 -12
- package/esm/auth/schema-types.d.ts +0 -14
- package/esm/objects/hooks/mutation-keys.d.ts +0 -2
- package/esm/objects/hooks/mutation-keys.js +0 -3
- package/esm/objects/hooks/mutations/index.d.ts +0 -1
- package/esm/objects/hooks/mutations/index.js +0 -1
- package/esm/objects/orm/index.d.ts +0 -5
- package/esm/objects/orm/input-types.d.ts +0 -20
- package/esm/objects/orm/mutation/index.d.ts +1 -15
- package/esm/objects/orm/mutation/index.js +0 -12
- package/esm/objects/schema-types.d.ts +0 -14
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +101 -47
- package/esm/public/hooks/invalidation.js +239 -95
- package/esm/public/hooks/mutation-keys.d.ts +206 -100
- package/esm/public/hooks/mutation-keys.js +125 -65
- package/esm/public/hooks/mutations/index.d.ts +50 -28
- package/esm/public/hooks/mutations/index.js +50 -28
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAppLimitEventMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateBillingModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBillingModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateNodeTypeRegistryMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateNodeTypeRegistryMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitAggregateMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitEventMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreatePlansModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreatePlansModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteBillingModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBillingModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeletePlansModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeletePlansModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateBillingModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBillingModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdatePlansModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdatePlansModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +36 -20
- package/esm/public/hooks/queries/index.js +36 -20
- package/esm/public/hooks/queries/useAgentMessageQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentMessageQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentMessagesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentMessagesQuery.js +32 -0
- package/esm/public/hooks/queries/useAgentTaskQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentTaskQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentTasksQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentTasksQuery.js +32 -0
- package/esm/public/hooks/queries/useAgentThreadQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentThreadQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentThreadsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentThreadsQuery.js +32 -0
- package/esm/public/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAppLimitEventsQuery.js +32 -0
- package/esm/public/hooks/queries/useBillingModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBillingModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useBillingModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBillingModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useNodeTypeRegistriesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useNodeTypeRegistriesQuery.js +32 -0
- package/esm/public/hooks/queries/useNodeTypeRegistryQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useNodeTypeRegistryQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgLimitAggregateQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitAggregatesQuery.js +32 -0
- package/esm/public/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitEventsQuery.js +32 -0
- package/esm/public/hooks/queries/usePlansModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/usePlansModuleQuery.js +47 -0
- package/esm/public/hooks/queries/usePlansModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/usePlansModulesQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +246 -120
- package/esm/public/hooks/query-keys.js +141 -69
- package/esm/public/orm/index.d.ts +56 -43
- package/esm/public/orm/index.js +36 -18
- package/esm/public/orm/input-types.d.ts +2983 -1112
- package/esm/public/orm/input-types.js +9 -0
- package/esm/public/orm/models/agentMessage.d.ts +56 -0
- package/esm/public/orm/models/agentMessage.js +96 -0
- package/esm/public/orm/models/agentTask.d.ts +56 -0
- package/esm/public/orm/models/agentTask.js +96 -0
- package/esm/public/orm/models/agentThread.d.ts +56 -0
- package/esm/public/orm/models/agentThread.js +96 -0
- package/esm/public/orm/models/appLimitEvent.d.ts +32 -0
- package/esm/public/orm/models/appLimitEvent.js +51 -0
- package/esm/public/orm/models/billingModule.d.ts +56 -0
- package/esm/public/orm/models/billingModule.js +96 -0
- package/esm/public/orm/models/index.d.ts +18 -9
- package/esm/public/orm/models/index.js +18 -9
- package/esm/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/esm/public/orm/models/nodeTypeRegistry.js +96 -0
- package/esm/public/orm/models/orgLimitAggregate.d.ts +56 -0
- package/esm/public/orm/models/orgLimitAggregate.js +96 -0
- package/esm/public/orm/models/orgLimitEvent.d.ts +32 -0
- package/esm/public/orm/models/orgLimitEvent.js +51 -0
- package/esm/public/orm/models/plansModule.d.ts +56 -0
- package/esm/public/orm/models/plansModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +17 -31
- package/esm/public/orm/mutation/index.js +24 -36
- package/esm/public/orm/query/index.d.ts +28 -28
- package/esm/public/orm/query/index.js +48 -48
- package/esm/public/schema-types.d.ts +3948 -2833
- package/esm/public/types.d.ts +194 -77
- package/objects/hooks/mutation-keys.d.ts +0 -2
- package/objects/hooks/mutation-keys.js +0 -3
- package/objects/hooks/mutations/index.d.ts +0 -1
- package/objects/hooks/mutations/index.js +0 -1
- package/objects/orm/index.d.ts +0 -5
- package/objects/orm/input-types.d.ts +0 -20
- package/objects/orm/mutation/index.d.ts +1 -15
- package/objects/orm/mutation/index.js +0 -12
- package/objects/schema-types.d.ts +0 -14
- package/package.json +4 -4
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +101 -47
- package/public/hooks/invalidation.js +238 -94
- package/public/hooks/mutation-keys.d.ts +206 -100
- package/public/hooks/mutation-keys.js +128 -68
- package/public/hooks/mutations/index.d.ts +50 -28
- package/public/hooks/mutations/index.js +50 -28
- package/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentMessageMutation.js +34 -0
- package/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentTaskMutation.js +34 -0
- package/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentThreadMutation.js +34 -0
- package/public/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAppLimitEventMutation.js +34 -0
- package/public/hooks/mutations/useCreateBillingModuleMutation.d.ts +34 -0
- package/{admin/hooks/mutations/useConfirmUploadMutation.js → public/hooks/mutations/useCreateBillingModuleMutation.js} +14 -6
- package/public/hooks/mutations/useCreateNodeTypeRegistryMutation.d.ts +34 -0
- package/public/hooks/mutations/{useConfirmUploadMutation.js → useCreateNodeTypeRegistryMutation.js} +14 -6
- package/public/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitAggregateMutation.js +34 -0
- package/public/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitEventMutation.js +34 -0
- package/public/hooks/mutations/useCreatePlansModuleMutation.d.ts +34 -0
- package/{objects/hooks/mutations/useConfirmUploadMutation.js → public/hooks/mutations/useCreatePlansModuleMutation.js} +14 -6
- package/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentMessageMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentTaskMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentThreadMutation.js +39 -0
- package/public/hooks/mutations/useDeleteBillingModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBillingModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.js +39 -0
- package/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +39 -0
- package/public/hooks/mutations/useDeletePlansModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeletePlansModuleMutation.js +39 -0
- package/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentMessageMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentTaskMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentThreadMutation.js +40 -0
- package/public/hooks/mutations/useUpdateBillingModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBillingModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.js +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +40 -0
- package/public/hooks/mutations/useUpdatePlansModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdatePlansModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +36 -20
- package/public/hooks/queries/index.js +36 -20
- package/public/hooks/queries/useAgentMessageQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentMessageQuery.js +53 -0
- package/public/hooks/queries/useAgentMessagesQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentMessagesQuery.js +38 -0
- package/public/hooks/queries/useAgentTaskQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentTaskQuery.js +53 -0
- package/public/hooks/queries/useAgentTasksQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentTasksQuery.js +38 -0
- package/public/hooks/queries/useAgentThreadQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentThreadQuery.js +53 -0
- package/public/hooks/queries/useAgentThreadsQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentThreadsQuery.js +38 -0
- package/public/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/public/hooks/queries/useAppLimitEventsQuery.js +38 -0
- package/public/hooks/queries/useBillingModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useBillingModuleQuery.js +53 -0
- package/public/hooks/queries/useBillingModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useBillingModulesQuery.js +38 -0
- package/public/hooks/queries/useNodeTypeRegistriesQuery.d.ts +69 -0
- package/public/hooks/queries/useNodeTypeRegistriesQuery.js +38 -0
- package/public/hooks/queries/useNodeTypeRegistryQuery.d.ts +65 -0
- package/public/hooks/queries/useNodeTypeRegistryQuery.js +53 -0
- package/public/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/public/hooks/queries/useOrgLimitAggregateQuery.js +53 -0
- package/public/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitAggregatesQuery.js +38 -0
- package/public/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitEventsQuery.js +38 -0
- package/public/hooks/queries/usePlansModuleQuery.d.ts +65 -0
- package/public/hooks/queries/usePlansModuleQuery.js +53 -0
- package/public/hooks/queries/usePlansModulesQuery.d.ts +69 -0
- package/public/hooks/queries/usePlansModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +246 -120
- package/public/hooks/query-keys.js +144 -72
- package/public/orm/index.d.ts +56 -43
- package/public/orm/index.js +36 -18
- package/public/orm/input-types.d.ts +2983 -1112
- package/public/orm/input-types.js +9 -0
- package/public/orm/models/agentMessage.d.ts +56 -0
- package/public/orm/models/agentMessage.js +100 -0
- package/public/orm/models/agentTask.d.ts +56 -0
- package/public/orm/models/agentTask.js +100 -0
- package/public/orm/models/agentThread.d.ts +56 -0
- package/public/orm/models/agentThread.js +100 -0
- package/public/orm/models/appLimitEvent.d.ts +32 -0
- package/public/orm/models/appLimitEvent.js +55 -0
- package/public/orm/models/billingModule.d.ts +56 -0
- package/public/orm/models/billingModule.js +100 -0
- package/public/orm/models/index.d.ts +18 -9
- package/public/orm/models/index.js +39 -21
- package/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/public/orm/models/nodeTypeRegistry.js +100 -0
- package/public/orm/models/orgLimitAggregate.d.ts +56 -0
- package/public/orm/models/orgLimitAggregate.js +100 -0
- package/public/orm/models/orgLimitEvent.d.ts +32 -0
- package/public/orm/models/orgLimitEvent.js +55 -0
- package/public/orm/models/plansModule.d.ts +56 -0
- package/public/orm/models/plansModule.js +100 -0
- package/public/orm/mutation/index.d.ts +17 -31
- package/public/orm/mutation/index.js +24 -36
- package/public/orm/query/index.d.ts +28 -28
- package/public/orm/query/index.js +48 -48
- package/public/schema-types.d.ts +3948 -2833
- package/public/types.d.ts +194 -77
- package/admin/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/auth/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/auth/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/objects/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/objects/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/public/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/objects/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/public/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
package/admin/types.d.ts
CHANGED
|
@@ -68,15 +68,21 @@ export interface AppOwnerGrant {
|
|
|
68
68
|
createdAt: string | null;
|
|
69
69
|
updatedAt: string | null;
|
|
70
70
|
}
|
|
71
|
-
export interface
|
|
71
|
+
export interface AppAchievement {
|
|
72
72
|
id: string | null;
|
|
73
|
+
actorId: string | null;
|
|
73
74
|
name: string | null;
|
|
74
|
-
|
|
75
|
+
count: number | null;
|
|
76
|
+
createdAt: string | null;
|
|
77
|
+
updatedAt: string | null;
|
|
75
78
|
}
|
|
76
|
-
export interface
|
|
79
|
+
export interface AppStep {
|
|
77
80
|
id: string | null;
|
|
81
|
+
actorId: string | null;
|
|
78
82
|
name: string | null;
|
|
79
|
-
|
|
83
|
+
count: number | null;
|
|
84
|
+
createdAt: string | null;
|
|
85
|
+
updatedAt: string | null;
|
|
80
86
|
}
|
|
81
87
|
export interface OrgAdminGrant {
|
|
82
88
|
id: string | null;
|
|
@@ -96,36 +102,25 @@ export interface OrgOwnerGrant {
|
|
|
96
102
|
createdAt: string | null;
|
|
97
103
|
updatedAt: string | null;
|
|
98
104
|
}
|
|
99
|
-
export interface
|
|
100
|
-
id:
|
|
105
|
+
export interface MembershipType {
|
|
106
|
+
id: number | null;
|
|
101
107
|
name: string | null;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
108
|
+
description: string | null;
|
|
109
|
+
prefix: string | null;
|
|
110
|
+
parentMembershipType: number | null;
|
|
111
|
+
hasUsersTableEntry: boolean | null;
|
|
105
112
|
}
|
|
106
|
-
export interface
|
|
113
|
+
export interface AppLimitDefault {
|
|
107
114
|
id: string | null;
|
|
108
|
-
actorId: string | null;
|
|
109
115
|
name: string | null;
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
updatedAt: string | null;
|
|
116
|
+
max: string | null;
|
|
117
|
+
softMax: string | null;
|
|
113
118
|
}
|
|
114
|
-
export interface
|
|
119
|
+
export interface OrgLimitDefault {
|
|
115
120
|
id: string | null;
|
|
116
|
-
actorId: string | null;
|
|
117
121
|
name: string | null;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
updatedAt: string | null;
|
|
121
|
-
}
|
|
122
|
-
export interface AppClaimedInvite {
|
|
123
|
-
id: string | null;
|
|
124
|
-
data: unknown | null;
|
|
125
|
-
senderId: string | null;
|
|
126
|
-
receiverId: string | null;
|
|
127
|
-
createdAt: string | null;
|
|
128
|
-
updatedAt: string | null;
|
|
122
|
+
max: string | null;
|
|
123
|
+
softMax: string | null;
|
|
129
124
|
}
|
|
130
125
|
export interface OrgChartEdgeGrant {
|
|
131
126
|
id: string | null;
|
|
@@ -138,21 +133,13 @@ export interface OrgChartEdgeGrant {
|
|
|
138
133
|
positionLevel: number | null;
|
|
139
134
|
createdAt: string | null;
|
|
140
135
|
}
|
|
141
|
-
export interface
|
|
136
|
+
export interface AppClaimedInvite {
|
|
142
137
|
id: string | null;
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
}
|
|
149
|
-
export interface MembershipType {
|
|
150
|
-
id: number | null;
|
|
151
|
-
name: string | null;
|
|
152
|
-
description: string | null;
|
|
153
|
-
prefix: string | null;
|
|
154
|
-
parentMembershipType: number | null;
|
|
155
|
-
hasUsersTableEntry: boolean | null;
|
|
138
|
+
data: unknown | null;
|
|
139
|
+
senderId: string | null;
|
|
140
|
+
receiverId: string | null;
|
|
141
|
+
createdAt: string | null;
|
|
142
|
+
updatedAt: string | null;
|
|
156
143
|
}
|
|
157
144
|
export interface AppGrant {
|
|
158
145
|
id: string | null;
|
|
@@ -190,6 +177,28 @@ export interface OrgClaimedInvite {
|
|
|
190
177
|
updatedAt: string | null;
|
|
191
178
|
entityId: string | null;
|
|
192
179
|
}
|
|
180
|
+
export interface AppLimitEvent {
|
|
181
|
+
name: string | null;
|
|
182
|
+
actorId: string | null;
|
|
183
|
+
entityId: string | null;
|
|
184
|
+
eventType: string | null;
|
|
185
|
+
delta: string | null;
|
|
186
|
+
numBefore: string | null;
|
|
187
|
+
numAfter: string | null;
|
|
188
|
+
maxAtEvent: string | null;
|
|
189
|
+
reason: string | null;
|
|
190
|
+
}
|
|
191
|
+
export interface OrgLimitEvent {
|
|
192
|
+
name: string | null;
|
|
193
|
+
actorId: string | null;
|
|
194
|
+
entityId: string | null;
|
|
195
|
+
eventType: string | null;
|
|
196
|
+
delta: string | null;
|
|
197
|
+
numBefore: string | null;
|
|
198
|
+
numAfter: string | null;
|
|
199
|
+
maxAtEvent: string | null;
|
|
200
|
+
reason: string | null;
|
|
201
|
+
}
|
|
193
202
|
export interface OrgGrant {
|
|
194
203
|
id: string | null;
|
|
195
204
|
permissions: string | null;
|
|
@@ -210,6 +219,26 @@ export interface OrgChartEdge {
|
|
|
210
219
|
positionTitle: string | null;
|
|
211
220
|
positionLevel: number | null;
|
|
212
221
|
}
|
|
222
|
+
export interface AppLimit {
|
|
223
|
+
id: string | null;
|
|
224
|
+
name: string | null;
|
|
225
|
+
actorId: string | null;
|
|
226
|
+
num: string | null;
|
|
227
|
+
max: string | null;
|
|
228
|
+
softMax: string | null;
|
|
229
|
+
windowStart: string | null;
|
|
230
|
+
windowDuration: string | null;
|
|
231
|
+
}
|
|
232
|
+
export interface OrgLimitAggregate {
|
|
233
|
+
id: string | null;
|
|
234
|
+
name: string | null;
|
|
235
|
+
entityId: string | null;
|
|
236
|
+
num: string | null;
|
|
237
|
+
max: string | null;
|
|
238
|
+
softMax: string | null;
|
|
239
|
+
windowStart: string | null;
|
|
240
|
+
windowDuration: string | null;
|
|
241
|
+
}
|
|
213
242
|
export interface OrgMemberProfile {
|
|
214
243
|
id: string | null;
|
|
215
244
|
createdAt: string | null;
|
|
@@ -223,19 +252,16 @@ export interface OrgMemberProfile {
|
|
|
223
252
|
bio: string | null;
|
|
224
253
|
profilePicture: ConstructiveInternalTypeImage | null;
|
|
225
254
|
}
|
|
226
|
-
export interface
|
|
255
|
+
export interface OrgLimit {
|
|
227
256
|
id: string | null;
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
257
|
+
name: string | null;
|
|
258
|
+
actorId: string | null;
|
|
259
|
+
num: string | null;
|
|
260
|
+
max: string | null;
|
|
261
|
+
softMax: string | null;
|
|
262
|
+
windowStart: string | null;
|
|
263
|
+
windowDuration: string | null;
|
|
232
264
|
entityId: string | null;
|
|
233
|
-
deleteMemberCascadeChildren: boolean | null;
|
|
234
|
-
createChildCascadeOwners: boolean | null;
|
|
235
|
-
createChildCascadeAdmins: boolean | null;
|
|
236
|
-
createChildCascadeMembers: boolean | null;
|
|
237
|
-
allowExternalMembers: boolean | null;
|
|
238
|
-
populateMemberEmail: boolean | null;
|
|
239
265
|
}
|
|
240
266
|
export interface AppLevel {
|
|
241
267
|
id: string | null;
|
|
@@ -256,10 +282,27 @@ export interface AppInvite {
|
|
|
256
282
|
inviteCount: number | null;
|
|
257
283
|
multiple: boolean | null;
|
|
258
284
|
data: unknown | null;
|
|
285
|
+
profileId: string | null;
|
|
259
286
|
expiresAt: string | null;
|
|
260
287
|
createdAt: string | null;
|
|
261
288
|
updatedAt: string | null;
|
|
262
289
|
}
|
|
290
|
+
export interface OrgMembershipSetting {
|
|
291
|
+
id: string | null;
|
|
292
|
+
createdAt: string | null;
|
|
293
|
+
updatedAt: string | null;
|
|
294
|
+
createdBy: string | null;
|
|
295
|
+
updatedBy: string | null;
|
|
296
|
+
entityId: string | null;
|
|
297
|
+
deleteMemberCascadeChildren: boolean | null;
|
|
298
|
+
createChildCascadeOwners: boolean | null;
|
|
299
|
+
createChildCascadeAdmins: boolean | null;
|
|
300
|
+
createChildCascadeMembers: boolean | null;
|
|
301
|
+
allowExternalMembers: boolean | null;
|
|
302
|
+
inviteProfileAssignmentMode: string | null;
|
|
303
|
+
populateMemberEmail: boolean | null;
|
|
304
|
+
limitAllocationMode: string | null;
|
|
305
|
+
}
|
|
263
306
|
export interface OrgInvite {
|
|
264
307
|
id: string | null;
|
|
265
308
|
email: ConstructiveInternalTypeEmail | null;
|
|
@@ -271,6 +314,7 @@ export interface OrgInvite {
|
|
|
271
314
|
inviteCount: number | null;
|
|
272
315
|
multiple: boolean | null;
|
|
273
316
|
data: unknown | null;
|
|
317
|
+
profileId: string | null;
|
|
274
318
|
expiresAt: string | null;
|
|
275
319
|
createdAt: string | null;
|
|
276
320
|
updatedAt: string | null;
|
|
@@ -287,7 +331,6 @@ export interface AppMembership {
|
|
|
287
331
|
isDisabled: boolean | null;
|
|
288
332
|
isVerified: boolean | null;
|
|
289
333
|
isActive: boolean | null;
|
|
290
|
-
isExternal: boolean | null;
|
|
291
334
|
isOwner: boolean | null;
|
|
292
335
|
isAdmin: boolean | null;
|
|
293
336
|
permissions: string | null;
|
|
@@ -80,7 +80,6 @@ export declare const customMutationKeys: {
|
|
|
80
80
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
81
81
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
82
82
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
83
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
84
83
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
85
84
|
};
|
|
86
85
|
/**
|
|
@@ -183,7 +182,6 @@ export declare const mutationKeys: {
|
|
|
183
182
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
184
183
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
185
184
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
186
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
187
185
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
188
186
|
};
|
|
189
187
|
};
|
|
@@ -138,9 +138,6 @@ exports.customMutationKeys = {
|
|
|
138
138
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
139
139
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
140
140
|
: ['mutation', 'requestUploadUrl'],
|
|
141
|
-
/** Mutation key for confirmUpload */ confirmUpload: (identifier) => identifier
|
|
142
|
-
? ['mutation', 'confirmUpload', identifier]
|
|
143
|
-
: ['mutation', 'confirmUpload'],
|
|
144
141
|
/** Mutation key for provisionBucket */ provisionBucket: (identifier) => identifier
|
|
145
142
|
? ['mutation', 'provisionBucket', identifier]
|
|
146
143
|
: ['mutation', 'provisionBucket'],
|
|
@@ -48,5 +48,4 @@ export * from './useCreateApiKeyMutation';
|
|
|
48
48
|
export * from './useForgotPasswordMutation';
|
|
49
49
|
export * from './useSendVerificationEmailMutation';
|
|
50
50
|
export * from './useRequestUploadUrlMutation';
|
|
51
|
-
export * from './useConfirmUploadMutation';
|
|
52
51
|
export * from './useProvisionBucketMutation';
|
|
@@ -64,5 +64,4 @@ __exportStar(require("./useCreateApiKeyMutation"), exports);
|
|
|
64
64
|
__exportStar(require("./useForgotPasswordMutation"), exports);
|
|
65
65
|
__exportStar(require("./useSendVerificationEmailMutation"), exports);
|
|
66
66
|
__exportStar(require("./useRequestUploadUrlMutation"), exports);
|
|
67
|
-
__exportStar(require("./useConfirmUploadMutation"), exports);
|
|
68
67
|
__exportStar(require("./useProvisionBucketMutation"), exports);
|
package/auth/orm/index.d.ts
CHANGED
|
@@ -186,11 +186,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
186
186
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestUploadUrlPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
187
187
|
requestUploadUrl: import("./select-types").InferSelectResult<import("./input-types").RequestUploadUrlPayload, S> | null;
|
|
188
188
|
}>;
|
|
189
|
-
confirmUpload: <S extends import("./input-types").ConfirmUploadPayloadSelect>(args: import("./mutation").ConfirmUploadVariables, options: {
|
|
190
|
-
select: S;
|
|
191
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ConfirmUploadPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
192
|
-
confirmUpload: import("./select-types").InferSelectResult<import("./input-types").ConfirmUploadPayload, S> | null;
|
|
193
|
-
}>;
|
|
194
189
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
195
190
|
select: S;
|
|
196
191
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -1181,10 +1181,6 @@ export interface RequestUploadUrlInput {
|
|
|
1181
1181
|
/** Original filename (optional, for display and Content-Disposition) */
|
|
1182
1182
|
filename?: string;
|
|
1183
1183
|
}
|
|
1184
|
-
export interface ConfirmUploadInput {
|
|
1185
|
-
/** The file ID returned by requestUploadUrl */
|
|
1186
|
-
fileId: string;
|
|
1187
|
-
}
|
|
1188
1184
|
export interface ProvisionBucketInput {
|
|
1189
1185
|
/** The logical bucket key (e.g., "public", "private") */
|
|
1190
1186
|
bucketKey: string;
|
|
@@ -2252,8 +2248,6 @@ export interface RequestUploadUrlPayload {
|
|
|
2252
2248
|
deduplicated: boolean;
|
|
2253
2249
|
/** Presigned URL expiry time (null if deduplicated) */
|
|
2254
2250
|
expiresAt?: string | null;
|
|
2255
|
-
/** File status — 'pending' for fresh uploads, 'ready' or 'processed' for deduplicated files. Clients can use this to know immediately whether the file is usable. */
|
|
2256
|
-
status: string;
|
|
2257
2251
|
}
|
|
2258
2252
|
export type RequestUploadUrlPayloadSelect = {
|
|
2259
2253
|
uploadUrl?: boolean;
|
|
@@ -2261,20 +2255,6 @@ export type RequestUploadUrlPayloadSelect = {
|
|
|
2261
2255
|
key?: boolean;
|
|
2262
2256
|
deduplicated?: boolean;
|
|
2263
2257
|
expiresAt?: boolean;
|
|
2264
|
-
status?: boolean;
|
|
2265
|
-
};
|
|
2266
|
-
export interface ConfirmUploadPayload {
|
|
2267
|
-
/** The confirmed file ID */
|
|
2268
|
-
fileId: string;
|
|
2269
|
-
/** New file status */
|
|
2270
|
-
status: string;
|
|
2271
|
-
/** Whether confirmation succeeded */
|
|
2272
|
-
success: boolean;
|
|
2273
|
-
}
|
|
2274
|
-
export type ConfirmUploadPayloadSelect = {
|
|
2275
|
-
fileId?: boolean;
|
|
2276
|
-
status?: boolean;
|
|
2277
|
-
success?: boolean;
|
|
2278
2258
|
};
|
|
2279
2259
|
export interface ProvisionBucketPayload {
|
|
2280
2260
|
/** Whether provisioning succeeded */
|
|
@@ -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, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ProvisionNewUserInput, ResetPasswordInput, SignInCrossOriginInput, SignUpInput, RequestCrossOriginTokenInput, SignInInput, ExtendTokenExpiresInput, CreateApiKeyInput, ForgotPasswordInput, SendVerificationEmailInput, RequestUploadUrlInput,
|
|
9
|
+
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ProvisionNewUserInput, ResetPasswordInput, SignInCrossOriginInput, SignUpInput, RequestCrossOriginTokenInput, SignInInput, ExtendTokenExpiresInput, CreateApiKeyInput, ForgotPasswordInput, SendVerificationEmailInput, RequestUploadUrlInput, ProvisionBucketInput, SignOutPayload, SendAccountDeletionEmailPayload, CheckPasswordPayload, DisconnectAccountPayload, RevokeApiKeyPayload, RevokeSessionPayload, VerifyPasswordPayload, VerifyTotpPayload, ConfirmDeleteAccountPayload, SetPasswordPayload, VerifyEmailPayload, ProvisionNewUserPayload, ResetPasswordPayload, SignInCrossOriginPayload, SignUpPayload, RequestCrossOriginTokenPayload, SignInPayload, ExtendTokenExpiresPayload, CreateApiKeyPayload, ForgotPasswordPayload, SendVerificationEmailPayload, RequestUploadUrlPayload, ProvisionBucketPayload, SignOutPayloadSelect, SendAccountDeletionEmailPayloadSelect, CheckPasswordPayloadSelect, DisconnectAccountPayloadSelect, RevokeApiKeyPayloadSelect, RevokeSessionPayloadSelect, VerifyPasswordPayloadSelect, VerifyTotpPayloadSelect, ConfirmDeleteAccountPayloadSelect, SetPasswordPayloadSelect, VerifyEmailPayloadSelect, ProvisionNewUserPayloadSelect, ResetPasswordPayloadSelect, SignInCrossOriginPayloadSelect, SignUpPayloadSelect, RequestCrossOriginTokenPayloadSelect, SignInPayloadSelect, ExtendTokenExpiresPayloadSelect, CreateApiKeyPayloadSelect, ForgotPasswordPayloadSelect, SendVerificationEmailPayloadSelect, RequestUploadUrlPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface SignOutVariables {
|
|
11
11
|
input: SignOutInput;
|
|
12
12
|
}
|
|
@@ -80,15 +80,6 @@ existing file ID and deduplicated=true with no uploadUrl.
|
|
|
80
80
|
export interface RequestUploadUrlVariables {
|
|
81
81
|
input: RequestUploadUrlInput;
|
|
82
82
|
}
|
|
83
|
-
/**
|
|
84
|
-
* Variables for confirmUpload
|
|
85
|
-
* Confirm that a file has been uploaded to S3.
|
|
86
|
-
Verifies the object exists in S3, checks content-type,
|
|
87
|
-
and transitions the file status from 'pending' to 'ready'.
|
|
88
|
-
*/
|
|
89
|
-
export interface ConfirmUploadVariables {
|
|
90
|
-
input: ConfirmUploadInput;
|
|
91
|
-
}
|
|
92
83
|
/**
|
|
93
84
|
* Variables for provisionBucket
|
|
94
85
|
* Provision an S3 bucket for a logical bucket in the database.
|
|
@@ -210,11 +201,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
210
201
|
} & StrictSelect<S, RequestUploadUrlPayloadSelect>) => QueryBuilder<{
|
|
211
202
|
requestUploadUrl: InferSelectResult<RequestUploadUrlPayload, S> | null;
|
|
212
203
|
}>;
|
|
213
|
-
confirmUpload: <S extends ConfirmUploadPayloadSelect>(args: ConfirmUploadVariables, options: {
|
|
214
|
-
select: S;
|
|
215
|
-
} & StrictSelect<S, ConfirmUploadPayloadSelect>) => QueryBuilder<{
|
|
216
|
-
confirmUpload: InferSelectResult<ConfirmUploadPayload, S> | null;
|
|
217
|
-
}>;
|
|
218
204
|
provisionBucket: <S extends ProvisionBucketPayloadSelect>(args: ProvisionBucketVariables, options: {
|
|
219
205
|
select: S;
|
|
220
206
|
} & StrictSelect<S, ProvisionBucketPayloadSelect>) => QueryBuilder<{
|
|
@@ -269,18 +269,6 @@ function createMutationOperations(client) {
|
|
|
269
269
|
},
|
|
270
270
|
], input_types_1.connectionFieldsMap, 'RequestUploadUrlPayload'),
|
|
271
271
|
}),
|
|
272
|
-
confirmUpload: (args, options) => new query_builder_1.QueryBuilder({
|
|
273
|
-
client,
|
|
274
|
-
operation: 'mutation',
|
|
275
|
-
operationName: 'ConfirmUpload',
|
|
276
|
-
fieldName: 'confirmUpload',
|
|
277
|
-
...(0, query_builder_1.buildCustomDocument)('mutation', 'ConfirmUpload', 'confirmUpload', options.select, args, [
|
|
278
|
-
{
|
|
279
|
-
name: 'input',
|
|
280
|
-
type: 'ConfirmUploadInput!',
|
|
281
|
-
},
|
|
282
|
-
], input_types_1.connectionFieldsMap, 'ConfirmUploadPayload'),
|
|
283
|
-
}),
|
|
284
272
|
provisionBucket: (args, options) => new query_builder_1.QueryBuilder({
|
|
285
273
|
client,
|
|
286
274
|
operation: 'mutation',
|
package/auth/schema-types.d.ts
CHANGED
|
@@ -1123,10 +1123,6 @@ export interface RequestUploadUrlInput {
|
|
|
1123
1123
|
/** Original filename (optional, for display and Content-Disposition) */
|
|
1124
1124
|
filename?: string;
|
|
1125
1125
|
}
|
|
1126
|
-
export interface ConfirmUploadInput {
|
|
1127
|
-
/** The file ID returned by requestUploadUrl */
|
|
1128
|
-
fileId: string;
|
|
1129
|
-
}
|
|
1130
1126
|
export interface ProvisionBucketInput {
|
|
1131
1127
|
/** The logical bucket key (e.g., "public", "private") */
|
|
1132
1128
|
bucketKey: string;
|
|
@@ -1431,16 +1427,6 @@ export interface RequestUploadUrlPayload {
|
|
|
1431
1427
|
deduplicated: boolean;
|
|
1432
1428
|
/** Presigned URL expiry time (null if deduplicated) */
|
|
1433
1429
|
expiresAt?: string | null;
|
|
1434
|
-
/** File status — 'pending' for fresh uploads, 'ready' or 'processed' for deduplicated files. Clients can use this to know immediately whether the file is usable. */
|
|
1435
|
-
status: string;
|
|
1436
|
-
}
|
|
1437
|
-
export interface ConfirmUploadPayload {
|
|
1438
|
-
/** The confirmed file ID */
|
|
1439
|
-
fileId: string;
|
|
1440
|
-
/** New file status */
|
|
1441
|
-
status: string;
|
|
1442
|
-
/** Whether confirmation succeeded */
|
|
1443
|
-
success: boolean;
|
|
1444
1430
|
}
|
|
1445
1431
|
export interface ProvisionBucketPayload {
|
|
1446
1432
|
/** Whether provisioning succeeded */
|
|
@@ -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,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppAchievement, AppStep, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimitDefault, OrgLimitDefault, OrgChartEdgeGrant, AppClaimedInvite, AppGrant, AppMembershipDefault, OrgMembershipDefault, OrgClaimedInvite, AppLimitEvent, OrgLimitEvent, OrgGrant, OrgChartEdge, AppLimit, OrgLimitAggregate, OrgMemberProfile, OrgLimit, AppLevel, AppInvite, OrgMembershipSetting, OrgInvite, AppMembership, OrgMembership
|
|
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,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppAchievement, AppStep, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimitDefault, OrgLimitDefault, OrgChartEdgeGrant, AppClaimedInvite, AppGrant, AppMembershipDefault, OrgMembershipDefault, OrgClaimedInvite, AppLimitEvent, OrgLimitEvent, OrgGrant, OrgChartEdge, AppLimit, OrgLimitAggregate, OrgMemberProfile, OrgLimit, AppLevel, AppInvite, OrgMembershipSetting, OrgInvite, AppMembership, OrgMembership
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -74,15 +74,15 @@ export declare const invalidate: {
|
|
|
74
74
|
/** Invalidate appOwnerGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
75
75
|
/** Invalidate a specific appOwnerGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
76
76
|
};
|
|
77
|
-
/** Invalidate
|
|
78
|
-
/** Invalidate all
|
|
79
|
-
/** Invalidate
|
|
80
|
-
/** Invalidate a specific
|
|
77
|
+
/** Invalidate appAchievement queries */ readonly appAchievement: {
|
|
78
|
+
/** Invalidate all appAchievement queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
79
|
+
/** Invalidate appAchievement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
80
|
+
/** Invalidate a specific appAchievement */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
81
81
|
};
|
|
82
|
-
/** Invalidate
|
|
83
|
-
/** Invalidate all
|
|
84
|
-
/** Invalidate
|
|
85
|
-
/** Invalidate a specific
|
|
82
|
+
/** Invalidate appStep queries */ readonly appStep: {
|
|
83
|
+
/** Invalidate all appStep queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
84
|
+
/** Invalidate appStep list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
85
|
+
/** Invalidate a specific appStep */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
86
86
|
};
|
|
87
87
|
/** Invalidate orgAdminGrant queries */ readonly orgAdminGrant: {
|
|
88
88
|
/** Invalidate all orgAdminGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -94,40 +94,30 @@ export declare const invalidate: {
|
|
|
94
94
|
/** Invalidate orgOwnerGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
95
95
|
/** Invalidate a specific orgOwnerGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
96
96
|
};
|
|
97
|
-
/** Invalidate
|
|
98
|
-
/** Invalidate all
|
|
99
|
-
/** Invalidate
|
|
100
|
-
/** Invalidate a specific
|
|
101
|
-
};
|
|
102
|
-
/** Invalidate appAchievement queries */ readonly appAchievement: {
|
|
103
|
-
/** Invalidate all appAchievement queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
104
|
-
/** Invalidate appAchievement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
105
|
-
/** Invalidate a specific appAchievement */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
97
|
+
/** Invalidate membershipType queries */ readonly membershipType: {
|
|
98
|
+
/** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
99
|
+
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
100
|
+
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
106
101
|
};
|
|
107
|
-
/** Invalidate
|
|
108
|
-
/** Invalidate all
|
|
109
|
-
/** Invalidate
|
|
110
|
-
/** Invalidate a specific
|
|
102
|
+
/** Invalidate appLimitDefault queries */ readonly appLimitDefault: {
|
|
103
|
+
/** Invalidate all appLimitDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
104
|
+
/** Invalidate appLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
105
|
+
/** Invalidate a specific appLimitDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
111
106
|
};
|
|
112
|
-
/** Invalidate
|
|
113
|
-
/** Invalidate all
|
|
114
|
-
/** Invalidate
|
|
115
|
-
/** Invalidate a specific
|
|
107
|
+
/** Invalidate orgLimitDefault queries */ readonly orgLimitDefault: {
|
|
108
|
+
/** Invalidate all orgLimitDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
109
|
+
/** Invalidate orgLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
110
|
+
/** Invalidate a specific orgLimitDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
116
111
|
};
|
|
117
112
|
/** Invalidate orgChartEdgeGrant queries */ readonly orgChartEdgeGrant: {
|
|
118
113
|
/** Invalidate all orgChartEdgeGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
119
114
|
/** Invalidate orgChartEdgeGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
120
115
|
/** Invalidate a specific orgChartEdgeGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
121
116
|
};
|
|
122
|
-
/** Invalidate
|
|
123
|
-
/** Invalidate all
|
|
124
|
-
/** Invalidate
|
|
125
|
-
/** Invalidate a specific
|
|
126
|
-
};
|
|
127
|
-
/** Invalidate membershipType queries */ readonly membershipType: {
|
|
128
|
-
/** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
129
|
-
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
130
|
-
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
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>;
|
|
131
121
|
};
|
|
132
122
|
/** Invalidate appGrant queries */ readonly appGrant: {
|
|
133
123
|
/** Invalidate all appGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -149,6 +139,16 @@ export declare const invalidate: {
|
|
|
149
139
|
/** Invalidate orgClaimedInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
150
140
|
/** Invalidate a specific orgClaimedInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
151
141
|
};
|
|
142
|
+
/** Invalidate appLimitEvent queries */ readonly appLimitEvent: {
|
|
143
|
+
/** Invalidate all appLimitEvent queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
144
|
+
/** Invalidate appLimitEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
145
|
+
/** Invalidate a specific appLimitEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
146
|
+
};
|
|
147
|
+
/** Invalidate orgLimitEvent queries */ readonly orgLimitEvent: {
|
|
148
|
+
/** Invalidate all orgLimitEvent queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
149
|
+
/** Invalidate orgLimitEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
150
|
+
/** Invalidate a specific orgLimitEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
151
|
+
};
|
|
152
152
|
/** Invalidate orgGrant queries */ readonly orgGrant: {
|
|
153
153
|
/** Invalidate all orgGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
154
154
|
/** Invalidate orgGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -159,15 +159,25 @@ export declare const invalidate: {
|
|
|
159
159
|
/** Invalidate orgChartEdge list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
160
160
|
/** Invalidate a specific orgChartEdge */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
161
161
|
};
|
|
162
|
+
/** Invalidate appLimit queries */ readonly appLimit: {
|
|
163
|
+
/** Invalidate all appLimit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
164
|
+
/** Invalidate appLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
165
|
+
/** Invalidate a specific appLimit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
166
|
+
};
|
|
167
|
+
/** Invalidate orgLimitAggregate queries */ readonly orgLimitAggregate: {
|
|
168
|
+
/** Invalidate all orgLimitAggregate queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
169
|
+
/** Invalidate orgLimitAggregate list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
|
+
/** Invalidate a specific orgLimitAggregate */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
|
+
};
|
|
162
172
|
/** Invalidate orgMemberProfile queries */ readonly orgMemberProfile: {
|
|
163
173
|
/** Invalidate all orgMemberProfile queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
164
174
|
/** Invalidate orgMemberProfile list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
165
175
|
/** Invalidate a specific orgMemberProfile */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
166
176
|
};
|
|
167
|
-
/** Invalidate
|
|
168
|
-
/** Invalidate all
|
|
169
|
-
/** Invalidate
|
|
170
|
-
/** Invalidate a specific
|
|
177
|
+
/** Invalidate orgLimit queries */ readonly orgLimit: {
|
|
178
|
+
/** Invalidate all orgLimit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
179
|
+
/** Invalidate orgLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
|
+
/** Invalidate a specific orgLimit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
181
|
};
|
|
172
182
|
/** Invalidate appLevel queries */ readonly appLevel: {
|
|
173
183
|
/** Invalidate all appLevel queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -179,6 +189,11 @@ export declare const invalidate: {
|
|
|
179
189
|
/** Invalidate appInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
190
|
/** Invalidate a specific appInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
181
191
|
};
|
|
192
|
+
/** Invalidate orgMembershipSetting queries */ readonly orgMembershipSetting: {
|
|
193
|
+
/** Invalidate all orgMembershipSetting queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
194
|
+
/** Invalidate orgMembershipSetting list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
195
|
+
/** Invalidate a specific orgMembershipSetting */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
196
|
+
};
|
|
182
197
|
/** Invalidate orgInvite queries */ readonly orgInvite: {
|
|
183
198
|
/** Invalidate all orgInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
184
199
|
/** Invalidate orgInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -217,27 +232,30 @@ export declare const remove: {
|
|
|
217
232
|
/** Remove orgPermissionDefault from cache */ readonly orgPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
218
233
|
/** Remove appAdminGrant from cache */ readonly appAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
219
234
|
/** Remove appOwnerGrant from cache */ readonly appOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
220
|
-
/** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
221
|
-
/** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
222
|
-
/** Remove orgAdminGrant from cache */ readonly orgAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
223
|
-
/** Remove orgOwnerGrant from cache */ readonly orgOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
224
|
-
/** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
225
235
|
/** Remove appAchievement from cache */ readonly appAchievement: (queryClient: QueryClient, id: string | number) => void;
|
|
226
236
|
/** Remove appStep from cache */ readonly appStep: (queryClient: QueryClient, id: string | number) => void;
|
|
227
|
-
/** Remove
|
|
228
|
-
/** Remove
|
|
229
|
-
/** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
237
|
+
/** Remove orgAdminGrant from cache */ readonly orgAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
238
|
+
/** Remove orgOwnerGrant from cache */ readonly orgOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
230
239
|
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
240
|
+
/** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
241
|
+
/** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
242
|
+
/** Remove orgChartEdgeGrant from cache */ readonly orgChartEdgeGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
243
|
+
/** Remove appClaimedInvite from cache */ readonly appClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
231
244
|
/** Remove appGrant from cache */ readonly appGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
232
245
|
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
233
246
|
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
234
247
|
/** Remove orgClaimedInvite from cache */ readonly orgClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
248
|
+
/** Remove appLimitEvent from cache */ readonly appLimitEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
249
|
+
/** Remove orgLimitEvent from cache */ readonly orgLimitEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
235
250
|
/** Remove orgGrant from cache */ readonly orgGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
236
251
|
/** Remove orgChartEdge from cache */ readonly orgChartEdge: (queryClient: QueryClient, id: string | number) => void;
|
|
252
|
+
/** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
253
|
+
/** Remove orgLimitAggregate from cache */ readonly orgLimitAggregate: (queryClient: QueryClient, id: string | number) => void;
|
|
237
254
|
/** Remove orgMemberProfile from cache */ readonly orgMemberProfile: (queryClient: QueryClient, id: string | number) => void;
|
|
238
|
-
/** Remove
|
|
255
|
+
/** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
239
256
|
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
240
257
|
/** Remove appInvite from cache */ readonly appInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
258
|
+
/** Remove orgMembershipSetting from cache */ readonly orgMembershipSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
241
259
|
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
242
260
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
243
261
|
/** Remove orgMembership from cache */ readonly orgMembership: (queryClient: QueryClient, id: string | number) => void;
|