@constructive-io/react 0.15.2 → 0.15.3
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
|
@@ -39,11 +39,6 @@ export declare const invalidate: {
|
|
|
39
39
|
/** Invalidate getAllRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
40
|
/** Invalidate a specific getAllRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
41
|
};
|
|
42
|
-
/** Invalidate object queries */ readonly object: {
|
|
43
|
-
/** Invalidate all object queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
|
-
/** Invalidate object list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
|
-
/** Invalidate a specific object */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
|
-
};
|
|
47
42
|
/** Invalidate appPermission queries */ readonly appPermission: {
|
|
48
43
|
/** Invalidate all appPermission queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
49
44
|
/** Invalidate appPermission list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -54,6 +49,11 @@ export declare const invalidate: {
|
|
|
54
49
|
/** Invalidate orgPermission list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
55
50
|
/** Invalidate a specific orgPermission */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
56
51
|
};
|
|
52
|
+
/** Invalidate object queries */ readonly object: {
|
|
53
|
+
/** Invalidate all object queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
54
|
+
/** Invalidate object list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
55
|
+
/** Invalidate a specific object */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
56
|
+
};
|
|
57
57
|
/** Invalidate appLevelRequirement queries */ readonly appLevelRequirement: {
|
|
58
58
|
/** Invalidate all appLevelRequirement queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
59
59
|
/** Invalidate appLevelRequirement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -454,6 +454,11 @@ export declare const invalidate: {
|
|
|
454
454
|
/** Invalidate orgLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
455
455
|
/** Invalidate a specific orgLimit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
456
456
|
};
|
|
457
|
+
/** Invalidate orgLimitAggregate queries */ readonly orgLimitAggregate: {
|
|
458
|
+
/** Invalidate all orgLimitAggregate queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
459
|
+
/** Invalidate orgLimitAggregate list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
460
|
+
/** Invalidate a specific orgLimitAggregate */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
461
|
+
};
|
|
457
462
|
/** Invalidate appStep queries */ readonly appStep: {
|
|
458
463
|
/** Invalidate all appStep queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
459
464
|
/** Invalidate appStep list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -514,10 +519,25 @@ export declare const invalidate: {
|
|
|
514
519
|
/** Invalidate auditLog list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
515
520
|
/** Invalidate a specific auditLog */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
516
521
|
};
|
|
517
|
-
/** Invalidate
|
|
518
|
-
/** Invalidate all
|
|
519
|
-
/** Invalidate
|
|
520
|
-
/** Invalidate a specific
|
|
522
|
+
/** Invalidate agentThread queries */ readonly agentThread: {
|
|
523
|
+
/** Invalidate all agentThread queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
524
|
+
/** Invalidate agentThread list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
525
|
+
/** Invalidate a specific agentThread */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
526
|
+
};
|
|
527
|
+
/** Invalidate agentMessage queries */ readonly agentMessage: {
|
|
528
|
+
/** Invalidate all agentMessage queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
529
|
+
/** Invalidate agentMessage list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
530
|
+
/** Invalidate a specific agentMessage */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
531
|
+
};
|
|
532
|
+
/** Invalidate agentTask queries */ readonly agentTask: {
|
|
533
|
+
/** Invalidate all agentTask queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
534
|
+
/** Invalidate agentTask list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
535
|
+
/** Invalidate a specific agentTask */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
536
|
+
};
|
|
537
|
+
/** Invalidate roleType queries */ readonly roleType: {
|
|
538
|
+
/** Invalidate all roleType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
539
|
+
/** Invalidate roleType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
540
|
+
/** Invalidate a specific roleType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
521
541
|
};
|
|
522
542
|
/** Invalidate identityProvider queries */ readonly identityProvider: {
|
|
523
543
|
/** Invalidate all identityProvider queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -534,16 +554,31 @@ export declare const invalidate: {
|
|
|
534
554
|
/** Invalidate store list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
535
555
|
/** Invalidate a specific store */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
536
556
|
};
|
|
537
|
-
/** Invalidate
|
|
538
|
-
/** Invalidate all
|
|
539
|
-
/** Invalidate
|
|
540
|
-
/** Invalidate a specific
|
|
557
|
+
/** Invalidate appPermissionDefault queries */ readonly appPermissionDefault: {
|
|
558
|
+
/** Invalidate all appPermissionDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
559
|
+
/** Invalidate appPermissionDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
560
|
+
/** Invalidate a specific appPermissionDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
561
|
+
};
|
|
562
|
+
/** Invalidate membershipType queries */ readonly membershipType: {
|
|
563
|
+
/** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
564
|
+
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
565
|
+
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
541
566
|
};
|
|
542
567
|
/** Invalidate migrateFile queries */ readonly migrateFile: {
|
|
543
568
|
/** Invalidate all migrateFile queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
544
569
|
/** Invalidate migrateFile list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
545
570
|
/** Invalidate a specific migrateFile */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
546
571
|
};
|
|
572
|
+
/** Invalidate devicesModule queries */ readonly devicesModule: {
|
|
573
|
+
/** Invalidate all devicesModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
574
|
+
/** Invalidate devicesModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
575
|
+
/** Invalidate a specific devicesModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
576
|
+
};
|
|
577
|
+
/** Invalidate nodeTypeRegistry queries */ readonly nodeTypeRegistry: {
|
|
578
|
+
/** Invalidate all nodeTypeRegistry queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
579
|
+
/** Invalidate nodeTypeRegistry list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
580
|
+
/** Invalidate a specific nodeTypeRegistry */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
581
|
+
};
|
|
547
582
|
/** Invalidate appLimitDefault queries */ readonly appLimitDefault: {
|
|
548
583
|
/** Invalidate all appLimitDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
549
584
|
/** Invalidate appLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -554,16 +589,21 @@ export declare const invalidate: {
|
|
|
554
589
|
/** Invalidate orgLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
555
590
|
/** Invalidate a specific orgLimitDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
556
591
|
};
|
|
557
|
-
/** Invalidate devicesModule queries */ readonly devicesModule: {
|
|
558
|
-
/** Invalidate all devicesModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
559
|
-
/** Invalidate devicesModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
560
|
-
/** Invalidate a specific devicesModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
561
|
-
};
|
|
562
592
|
/** Invalidate userConnectedAccount queries */ readonly userConnectedAccount: {
|
|
563
593
|
/** Invalidate all userConnectedAccount queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
564
594
|
/** Invalidate userConnectedAccount list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
565
595
|
/** Invalidate a specific userConnectedAccount */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
566
596
|
};
|
|
597
|
+
/** Invalidate commit queries */ readonly commit: {
|
|
598
|
+
/** Invalidate all commit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
599
|
+
/** Invalidate commit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
600
|
+
/** Invalidate a specific commit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
601
|
+
};
|
|
602
|
+
/** Invalidate rateLimitsModule queries */ readonly rateLimitsModule: {
|
|
603
|
+
/** Invalidate all rateLimitsModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
604
|
+
/** Invalidate rateLimitsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
605
|
+
/** Invalidate a specific rateLimitsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
606
|
+
};
|
|
567
607
|
/** Invalidate appMembershipDefault queries */ readonly appMembershipDefault: {
|
|
568
608
|
/** Invalidate all appMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
569
609
|
/** Invalidate appMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -574,20 +614,20 @@ export declare const invalidate: {
|
|
|
574
614
|
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
575
615
|
/** Invalidate a specific orgMembershipDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
576
616
|
};
|
|
577
|
-
/** Invalidate
|
|
578
|
-
/** Invalidate all
|
|
579
|
-
/** Invalidate
|
|
580
|
-
/** Invalidate a specific
|
|
617
|
+
/** Invalidate appLimitEvent queries */ readonly appLimitEvent: {
|
|
618
|
+
/** Invalidate all appLimitEvent queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
619
|
+
/** Invalidate appLimitEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
620
|
+
/** Invalidate a specific appLimitEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
581
621
|
};
|
|
582
|
-
/** Invalidate
|
|
583
|
-
/** Invalidate all
|
|
584
|
-
/** Invalidate
|
|
585
|
-
/** Invalidate a specific
|
|
622
|
+
/** Invalidate orgLimitEvent queries */ readonly orgLimitEvent: {
|
|
623
|
+
/** Invalidate all orgLimitEvent queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
624
|
+
/** Invalidate orgLimitEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
625
|
+
/** Invalidate a specific orgLimitEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
586
626
|
};
|
|
587
|
-
/** Invalidate
|
|
588
|
-
/** Invalidate all
|
|
589
|
-
/** Invalidate
|
|
590
|
-
/** Invalidate a specific
|
|
627
|
+
/** Invalidate plansModule queries */ readonly plansModule: {
|
|
628
|
+
/** Invalidate all plansModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
629
|
+
/** Invalidate plansModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
630
|
+
/** Invalidate a specific plansModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
591
631
|
};
|
|
592
632
|
/** Invalidate rlsModule queries */ readonly rlsModule: {
|
|
593
633
|
/** Invalidate all rlsModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -599,20 +639,25 @@ export declare const invalidate: {
|
|
|
599
639
|
/** Invalidate sqlAction list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
600
640
|
/** Invalidate a specific sqlAction */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
601
641
|
};
|
|
602
|
-
/** Invalidate
|
|
603
|
-
/** Invalidate all
|
|
604
|
-
/** Invalidate
|
|
605
|
-
/** Invalidate a specific
|
|
642
|
+
/** Invalidate billingModule queries */ readonly billingModule: {
|
|
643
|
+
/** Invalidate all billingModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
644
|
+
/** Invalidate billingModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
645
|
+
/** Invalidate a specific billingModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
646
|
+
};
|
|
647
|
+
/** Invalidate astMigration queries */ readonly astMigration: {
|
|
648
|
+
/** Invalidate all astMigration queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
649
|
+
/** Invalidate astMigration list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
650
|
+
/** Invalidate a specific astMigration */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
606
651
|
};
|
|
607
652
|
/** Invalidate user queries */ readonly user: {
|
|
608
653
|
/** Invalidate all user queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
609
654
|
/** Invalidate user list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
610
655
|
/** Invalidate a specific user */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
611
656
|
};
|
|
612
|
-
/** Invalidate
|
|
613
|
-
/** Invalidate all
|
|
614
|
-
/** Invalidate
|
|
615
|
-
/** Invalidate a specific
|
|
657
|
+
/** Invalidate orgMembershipSetting queries */ readonly orgMembershipSetting: {
|
|
658
|
+
/** Invalidate all orgMembershipSetting queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
659
|
+
/** Invalidate orgMembershipSetting list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
660
|
+
/** Invalidate a specific orgMembershipSetting */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
616
661
|
};
|
|
617
662
|
/** Invalidate appMembership queries */ readonly appMembership: {
|
|
618
663
|
/** Invalidate all appMembership queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -640,9 +685,9 @@ export declare const remove: {
|
|
|
640
685
|
/** Remove orgGetManagersRecord from cache */ readonly orgGetManagersRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
641
686
|
/** Remove orgGetSubordinatesRecord from cache */ readonly orgGetSubordinatesRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
642
687
|
/** Remove getAllRecord from cache */ readonly getAllRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
643
|
-
/** Remove object from cache */ readonly object: (queryClient: QueryClient, id: string | number) => void;
|
|
644
688
|
/** Remove appPermission from cache */ readonly appPermission: (queryClient: QueryClient, id: string | number) => void;
|
|
645
689
|
/** Remove orgPermission from cache */ readonly orgPermission: (queryClient: QueryClient, id: string | number) => void;
|
|
690
|
+
/** Remove object from cache */ readonly object: (queryClient: QueryClient, id: string | number) => void;
|
|
646
691
|
/** Remove appLevelRequirement from cache */ readonly appLevelRequirement: (queryClient: QueryClient, id: string | number) => void;
|
|
647
692
|
/** Remove database from cache */ readonly database: (queryClient: QueryClient, id: string | number) => void;
|
|
648
693
|
/** Remove schema from cache */ readonly schema: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -723,6 +768,7 @@ export declare const remove: {
|
|
|
723
768
|
/** Remove orgPermissionDefault from cache */ readonly orgPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
724
769
|
/** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
725
770
|
/** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
771
|
+
/** Remove orgLimitAggregate from cache */ readonly orgLimitAggregate: (queryClient: QueryClient, id: string | number) => void;
|
|
726
772
|
/** Remove appStep from cache */ readonly appStep: (queryClient: QueryClient, id: string | number) => void;
|
|
727
773
|
/** Remove appAchievement from cache */ readonly appAchievement: (queryClient: QueryClient, id: string | number) => void;
|
|
728
774
|
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -735,26 +781,34 @@ export declare const remove: {
|
|
|
735
781
|
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
736
782
|
/** Remove orgClaimedInvite from cache */ readonly orgClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
737
783
|
/** Remove auditLog from cache */ readonly auditLog: (queryClient: QueryClient, id: string | number) => void;
|
|
738
|
-
/** Remove
|
|
784
|
+
/** Remove agentThread from cache */ readonly agentThread: (queryClient: QueryClient, id: string | number) => void;
|
|
785
|
+
/** Remove agentMessage from cache */ readonly agentMessage: (queryClient: QueryClient, id: string | number) => void;
|
|
786
|
+
/** Remove agentTask from cache */ readonly agentTask: (queryClient: QueryClient, id: string | number) => void;
|
|
787
|
+
/** Remove roleType from cache */ readonly roleType: (queryClient: QueryClient, id: string | number) => void;
|
|
739
788
|
/** Remove identityProvider from cache */ readonly identityProvider: (queryClient: QueryClient, id: string | number) => void;
|
|
740
789
|
/** Remove ref from cache */ readonly ref: (queryClient: QueryClient, id: string | number) => void;
|
|
741
790
|
/** Remove store from cache */ readonly store: (queryClient: QueryClient, id: string | number) => void;
|
|
742
|
-
/** Remove
|
|
791
|
+
/** Remove appPermissionDefault from cache */ readonly appPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
792
|
+
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
743
793
|
/** Remove migrateFile from cache */ readonly migrateFile: (queryClient: QueryClient, id: string | number) => void;
|
|
794
|
+
/** Remove devicesModule from cache */ readonly devicesModule: (queryClient: QueryClient, id: string | number) => void;
|
|
795
|
+
/** Remove nodeTypeRegistry from cache */ readonly nodeTypeRegistry: (queryClient: QueryClient, id: string | number) => void;
|
|
744
796
|
/** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
745
797
|
/** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
746
|
-
/** Remove devicesModule from cache */ readonly devicesModule: (queryClient: QueryClient, id: string | number) => void;
|
|
747
798
|
/** Remove userConnectedAccount from cache */ readonly userConnectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
748
|
-
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
749
|
-
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
750
799
|
/** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
|
|
751
800
|
/** Remove rateLimitsModule from cache */ readonly rateLimitsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
752
|
-
/** Remove
|
|
801
|
+
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
802
|
+
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
803
|
+
/** Remove appLimitEvent from cache */ readonly appLimitEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
804
|
+
/** Remove orgLimitEvent from cache */ readonly orgLimitEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
805
|
+
/** Remove plansModule from cache */ readonly plansModule: (queryClient: QueryClient, id: string | number) => void;
|
|
753
806
|
/** Remove rlsModule from cache */ readonly rlsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
754
807
|
/** Remove sqlAction from cache */ readonly sqlAction: (queryClient: QueryClient, id: string | number) => void;
|
|
755
|
-
/** Remove
|
|
756
|
-
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
808
|
+
/** Remove billingModule from cache */ readonly billingModule: (queryClient: QueryClient, id: string | number) => void;
|
|
757
809
|
/** Remove astMigration from cache */ readonly astMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
810
|
+
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
811
|
+
/** Remove orgMembershipSetting from cache */ readonly orgMembershipSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
758
812
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
759
813
|
/** Remove hierarchyModule from cache */ readonly hierarchyModule: (queryClient: QueryClient, id: string | number) => void;
|
|
760
814
|
};
|