@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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import { orgGetManagersRecordKeys, orgGetSubordinatesRecordKeys, getAllRecordKeys,
|
|
6
|
+
import { orgGetManagersRecordKeys, orgGetSubordinatesRecordKeys, getAllRecordKeys, appPermissionKeys, orgPermissionKeys, objectKeys, appLevelRequirementKeys, databaseKeys, schemaKeys, tableKeys, checkConstraintKeys, fieldKeys, spatialRelationKeys, foreignKeyConstraintKeys, fullTextSearchKeys, indexKeys, policyKeys, primaryKeyConstraintKeys, tableGrantKeys, triggerKeys, uniqueConstraintKeys, viewKeys, viewTableKeys, viewGrantKeys, viewRuleKeys, embeddingChunkKeys, secureTableProvisionKeys, relationProvisionKeys, sessionSecretsModuleKeys, identityProvidersModuleKeys, schemaGrantKeys, defaultPrivilegeKeys, enumKeys, apiSchemaKeys, apiModuleKeys, domainKeys, siteMetadatumKeys, siteModuleKeys, siteThemeKeys, triggerFunctionKeys, databaseTransferKeys, apiKeys, siteKeys, appKeys, connectedAccountsModuleKeys, cryptoAddressesModuleKeys, cryptoAuthModuleKeys, defaultIdsModuleKeys, denormalizedTableFieldKeys, emailsModuleKeys, encryptedSecretsModuleKeys, invitesModuleKeys, levelsModuleKeys, limitsModuleKeys, membershipTypesModuleKeys, membershipsModuleKeys, permissionsModuleKeys, phoneNumbersModuleKeys, profilesModuleKeys, secretsModuleKeys, sessionsModuleKeys, userAuthModuleKeys, usersModuleKeys, blueprintKeys, blueprintTemplateKeys, blueprintConstructionKeys, storageModuleKeys, entityTypeProvisionKeys, webauthnCredentialsModuleKeys, webauthnAuthModuleKeys, notificationsModuleKeys, databaseProvisionModuleKeys, appAdminGrantKeys, appOwnerGrantKeys, appGrantKeys, orgMembershipKeys, orgMemberKeys, orgAdminGrantKeys, orgOwnerGrantKeys, orgMemberProfileKeys, orgGrantKeys, orgChartEdgeKeys, orgChartEdgeGrantKeys, orgPermissionDefaultKeys, appLimitKeys, orgLimitKeys, orgLimitAggregateKeys, appStepKeys, appAchievementKeys, appLevelKeys, emailKeys, phoneNumberKeys, cryptoAddressKeys, webauthnCredentialKeys, appInviteKeys, appClaimedInviteKeys, orgInviteKeys, orgClaimedInviteKeys, auditLogKeys, agentThreadKeys, agentMessageKeys, agentTaskKeys, roleTypeKeys, identityProviderKeys, refKeys, storeKeys, appPermissionDefaultKeys, membershipTypeKeys, migrateFileKeys, devicesModuleKeys, nodeTypeRegistryKeys, appLimitDefaultKeys, orgLimitDefaultKeys, userConnectedAccountKeys, commitKeys, rateLimitsModuleKeys, appMembershipDefaultKeys, orgMembershipDefaultKeys, appLimitEventKeys, orgLimitEventKeys, plansModuleKeys, rlsModuleKeys, sqlActionKeys, billingModuleKeys, astMigrationKeys, userKeys, orgMembershipSettingKeys, appMembershipKeys, hierarchyModuleKeys, } from './query-keys';
|
|
7
7
|
/**
|
|
8
8
|
// ============================================================================
|
|
9
9
|
// Invalidation Helpers
|
|
@@ -57,17 +57,6 @@ export const invalidate = {
|
|
|
57
57
|
queryKey: getAllRecordKeys.detail(id),
|
|
58
58
|
}),
|
|
59
59
|
},
|
|
60
|
-
/** Invalidate object queries */ object: {
|
|
61
|
-
/** Invalidate all object queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
62
|
-
queryKey: objectKeys.all,
|
|
63
|
-
}),
|
|
64
|
-
/** Invalidate object list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
65
|
-
queryKey: objectKeys.lists(),
|
|
66
|
-
}),
|
|
67
|
-
/** Invalidate a specific object */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
68
|
-
queryKey: objectKeys.detail(id),
|
|
69
|
-
}),
|
|
70
|
-
},
|
|
71
60
|
/** Invalidate appPermission queries */ appPermission: {
|
|
72
61
|
/** Invalidate all appPermission queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
73
62
|
queryKey: appPermissionKeys.all,
|
|
@@ -90,6 +79,17 @@ export const invalidate = {
|
|
|
90
79
|
queryKey: orgPermissionKeys.detail(id),
|
|
91
80
|
}),
|
|
92
81
|
},
|
|
82
|
+
/** Invalidate object queries */ object: {
|
|
83
|
+
/** Invalidate all object queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
84
|
+
queryKey: objectKeys.all,
|
|
85
|
+
}),
|
|
86
|
+
/** Invalidate object list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
87
|
+
queryKey: objectKeys.lists(),
|
|
88
|
+
}),
|
|
89
|
+
/** Invalidate a specific object */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
90
|
+
queryKey: objectKeys.detail(id),
|
|
91
|
+
}),
|
|
92
|
+
},
|
|
93
93
|
/** Invalidate appLevelRequirement queries */ appLevelRequirement: {
|
|
94
94
|
/** Invalidate all appLevelRequirement queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
95
95
|
queryKey: appLevelRequirementKeys.all,
|
|
@@ -970,6 +970,17 @@ export const invalidate = {
|
|
|
970
970
|
queryKey: orgLimitKeys.detail(id),
|
|
971
971
|
}),
|
|
972
972
|
},
|
|
973
|
+
/** Invalidate orgLimitAggregate queries */ orgLimitAggregate: {
|
|
974
|
+
/** Invalidate all orgLimitAggregate queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
975
|
+
queryKey: orgLimitAggregateKeys.all,
|
|
976
|
+
}),
|
|
977
|
+
/** Invalidate orgLimitAggregate list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
978
|
+
queryKey: orgLimitAggregateKeys.lists(),
|
|
979
|
+
}),
|
|
980
|
+
/** Invalidate a specific orgLimitAggregate */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
981
|
+
queryKey: orgLimitAggregateKeys.detail(id),
|
|
982
|
+
}),
|
|
983
|
+
},
|
|
973
984
|
/** Invalidate appStep queries */ appStep: {
|
|
974
985
|
/** Invalidate all appStep queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
975
986
|
queryKey: appStepKeys.all,
|
|
@@ -1102,15 +1113,48 @@ export const invalidate = {
|
|
|
1102
1113
|
queryKey: auditLogKeys.detail(id),
|
|
1103
1114
|
}),
|
|
1104
1115
|
},
|
|
1105
|
-
/** Invalidate
|
|
1106
|
-
/** Invalidate all
|
|
1107
|
-
queryKey:
|
|
1116
|
+
/** Invalidate agentThread queries */ agentThread: {
|
|
1117
|
+
/** Invalidate all agentThread queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1118
|
+
queryKey: agentThreadKeys.all,
|
|
1108
1119
|
}),
|
|
1109
|
-
/** Invalidate
|
|
1110
|
-
queryKey:
|
|
1120
|
+
/** Invalidate agentThread list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1121
|
+
queryKey: agentThreadKeys.lists(),
|
|
1111
1122
|
}),
|
|
1112
|
-
/** Invalidate a specific
|
|
1113
|
-
queryKey:
|
|
1123
|
+
/** Invalidate a specific agentThread */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1124
|
+
queryKey: agentThreadKeys.detail(id),
|
|
1125
|
+
}),
|
|
1126
|
+
},
|
|
1127
|
+
/** Invalidate agentMessage queries */ agentMessage: {
|
|
1128
|
+
/** Invalidate all agentMessage queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1129
|
+
queryKey: agentMessageKeys.all,
|
|
1130
|
+
}),
|
|
1131
|
+
/** Invalidate agentMessage list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1132
|
+
queryKey: agentMessageKeys.lists(),
|
|
1133
|
+
}),
|
|
1134
|
+
/** Invalidate a specific agentMessage */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1135
|
+
queryKey: agentMessageKeys.detail(id),
|
|
1136
|
+
}),
|
|
1137
|
+
},
|
|
1138
|
+
/** Invalidate agentTask queries */ agentTask: {
|
|
1139
|
+
/** Invalidate all agentTask queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1140
|
+
queryKey: agentTaskKeys.all,
|
|
1141
|
+
}),
|
|
1142
|
+
/** Invalidate agentTask list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1143
|
+
queryKey: agentTaskKeys.lists(),
|
|
1144
|
+
}),
|
|
1145
|
+
/** Invalidate a specific agentTask */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1146
|
+
queryKey: agentTaskKeys.detail(id),
|
|
1147
|
+
}),
|
|
1148
|
+
},
|
|
1149
|
+
/** Invalidate roleType queries */ roleType: {
|
|
1150
|
+
/** Invalidate all roleType queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1151
|
+
queryKey: roleTypeKeys.all,
|
|
1152
|
+
}),
|
|
1153
|
+
/** Invalidate roleType list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1154
|
+
queryKey: roleTypeKeys.lists(),
|
|
1155
|
+
}),
|
|
1156
|
+
/** Invalidate a specific roleType */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1157
|
+
queryKey: roleTypeKeys.detail(id),
|
|
1114
1158
|
}),
|
|
1115
1159
|
},
|
|
1116
1160
|
/** Invalidate identityProvider queries */ identityProvider: {
|
|
@@ -1146,15 +1190,26 @@ export const invalidate = {
|
|
|
1146
1190
|
queryKey: storeKeys.detail(id),
|
|
1147
1191
|
}),
|
|
1148
1192
|
},
|
|
1149
|
-
/** Invalidate
|
|
1150
|
-
/** Invalidate all
|
|
1151
|
-
queryKey:
|
|
1193
|
+
/** Invalidate appPermissionDefault queries */ appPermissionDefault: {
|
|
1194
|
+
/** Invalidate all appPermissionDefault queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1195
|
+
queryKey: appPermissionDefaultKeys.all,
|
|
1152
1196
|
}),
|
|
1153
|
-
/** Invalidate
|
|
1154
|
-
queryKey:
|
|
1197
|
+
/** Invalidate appPermissionDefault list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1198
|
+
queryKey: appPermissionDefaultKeys.lists(),
|
|
1155
1199
|
}),
|
|
1156
|
-
/** Invalidate a specific
|
|
1157
|
-
queryKey:
|
|
1200
|
+
/** Invalidate a specific appPermissionDefault */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1201
|
+
queryKey: appPermissionDefaultKeys.detail(id),
|
|
1202
|
+
}),
|
|
1203
|
+
},
|
|
1204
|
+
/** Invalidate membershipType queries */ membershipType: {
|
|
1205
|
+
/** Invalidate all membershipType queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1206
|
+
queryKey: membershipTypeKeys.all,
|
|
1207
|
+
}),
|
|
1208
|
+
/** Invalidate membershipType list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1209
|
+
queryKey: membershipTypeKeys.lists(),
|
|
1210
|
+
}),
|
|
1211
|
+
/** Invalidate a specific membershipType */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1212
|
+
queryKey: membershipTypeKeys.detail(id),
|
|
1158
1213
|
}),
|
|
1159
1214
|
},
|
|
1160
1215
|
/** Invalidate migrateFile queries */ migrateFile: {
|
|
@@ -1168,6 +1223,28 @@ export const invalidate = {
|
|
|
1168
1223
|
queryKey: migrateFileKeys.detail(id),
|
|
1169
1224
|
}),
|
|
1170
1225
|
},
|
|
1226
|
+
/** Invalidate devicesModule queries */ devicesModule: {
|
|
1227
|
+
/** Invalidate all devicesModule queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1228
|
+
queryKey: devicesModuleKeys.all,
|
|
1229
|
+
}),
|
|
1230
|
+
/** Invalidate devicesModule list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1231
|
+
queryKey: devicesModuleKeys.lists(),
|
|
1232
|
+
}),
|
|
1233
|
+
/** Invalidate a specific devicesModule */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1234
|
+
queryKey: devicesModuleKeys.detail(id),
|
|
1235
|
+
}),
|
|
1236
|
+
},
|
|
1237
|
+
/** Invalidate nodeTypeRegistry queries */ nodeTypeRegistry: {
|
|
1238
|
+
/** Invalidate all nodeTypeRegistry queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1239
|
+
queryKey: nodeTypeRegistryKeys.all,
|
|
1240
|
+
}),
|
|
1241
|
+
/** Invalidate nodeTypeRegistry list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1242
|
+
queryKey: nodeTypeRegistryKeys.lists(),
|
|
1243
|
+
}),
|
|
1244
|
+
/** Invalidate a specific nodeTypeRegistry */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1245
|
+
queryKey: nodeTypeRegistryKeys.detail(id),
|
|
1246
|
+
}),
|
|
1247
|
+
},
|
|
1171
1248
|
/** Invalidate appLimitDefault queries */ appLimitDefault: {
|
|
1172
1249
|
/** Invalidate all appLimitDefault queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1173
1250
|
queryKey: appLimitDefaultKeys.all,
|
|
@@ -1190,17 +1267,6 @@ export const invalidate = {
|
|
|
1190
1267
|
queryKey: orgLimitDefaultKeys.detail(id),
|
|
1191
1268
|
}),
|
|
1192
1269
|
},
|
|
1193
|
-
/** Invalidate devicesModule queries */ devicesModule: {
|
|
1194
|
-
/** Invalidate all devicesModule queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1195
|
-
queryKey: devicesModuleKeys.all,
|
|
1196
|
-
}),
|
|
1197
|
-
/** Invalidate devicesModule list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1198
|
-
queryKey: devicesModuleKeys.lists(),
|
|
1199
|
-
}),
|
|
1200
|
-
/** Invalidate a specific devicesModule */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1201
|
-
queryKey: devicesModuleKeys.detail(id),
|
|
1202
|
-
}),
|
|
1203
|
-
},
|
|
1204
1270
|
/** Invalidate userConnectedAccount queries */ userConnectedAccount: {
|
|
1205
1271
|
/** Invalidate all userConnectedAccount queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1206
1272
|
queryKey: userConnectedAccountKeys.all,
|
|
@@ -1212,6 +1278,28 @@ export const invalidate = {
|
|
|
1212
1278
|
queryKey: userConnectedAccountKeys.detail(id),
|
|
1213
1279
|
}),
|
|
1214
1280
|
},
|
|
1281
|
+
/** Invalidate commit queries */ commit: {
|
|
1282
|
+
/** Invalidate all commit queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1283
|
+
queryKey: commitKeys.all,
|
|
1284
|
+
}),
|
|
1285
|
+
/** Invalidate commit list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1286
|
+
queryKey: commitKeys.lists(),
|
|
1287
|
+
}),
|
|
1288
|
+
/** Invalidate a specific commit */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1289
|
+
queryKey: commitKeys.detail(id),
|
|
1290
|
+
}),
|
|
1291
|
+
},
|
|
1292
|
+
/** Invalidate rateLimitsModule queries */ rateLimitsModule: {
|
|
1293
|
+
/** Invalidate all rateLimitsModule queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1294
|
+
queryKey: rateLimitsModuleKeys.all,
|
|
1295
|
+
}),
|
|
1296
|
+
/** Invalidate rateLimitsModule list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1297
|
+
queryKey: rateLimitsModuleKeys.lists(),
|
|
1298
|
+
}),
|
|
1299
|
+
/** Invalidate a specific rateLimitsModule */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1300
|
+
queryKey: rateLimitsModuleKeys.detail(id),
|
|
1301
|
+
}),
|
|
1302
|
+
},
|
|
1215
1303
|
/** Invalidate appMembershipDefault queries */ appMembershipDefault: {
|
|
1216
1304
|
/** Invalidate all appMembershipDefault queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1217
1305
|
queryKey: appMembershipDefaultKeys.all,
|
|
@@ -1234,37 +1322,37 @@ export const invalidate = {
|
|
|
1234
1322
|
queryKey: orgMembershipDefaultKeys.detail(id),
|
|
1235
1323
|
}),
|
|
1236
1324
|
},
|
|
1237
|
-
/** Invalidate
|
|
1238
|
-
/** Invalidate all
|
|
1239
|
-
queryKey:
|
|
1325
|
+
/** Invalidate appLimitEvent queries */ appLimitEvent: {
|
|
1326
|
+
/** Invalidate all appLimitEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1327
|
+
queryKey: appLimitEventKeys.all,
|
|
1240
1328
|
}),
|
|
1241
|
-
/** Invalidate
|
|
1242
|
-
queryKey:
|
|
1329
|
+
/** Invalidate appLimitEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1330
|
+
queryKey: appLimitEventKeys.lists(),
|
|
1243
1331
|
}),
|
|
1244
|
-
/** Invalidate a specific
|
|
1245
|
-
queryKey:
|
|
1332
|
+
/** Invalidate a specific appLimitEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1333
|
+
queryKey: appLimitEventKeys.detail(id),
|
|
1246
1334
|
}),
|
|
1247
1335
|
},
|
|
1248
|
-
/** Invalidate
|
|
1249
|
-
/** Invalidate all
|
|
1250
|
-
queryKey:
|
|
1336
|
+
/** Invalidate orgLimitEvent queries */ orgLimitEvent: {
|
|
1337
|
+
/** Invalidate all orgLimitEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1338
|
+
queryKey: orgLimitEventKeys.all,
|
|
1251
1339
|
}),
|
|
1252
|
-
/** Invalidate
|
|
1253
|
-
queryKey:
|
|
1340
|
+
/** Invalidate orgLimitEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1341
|
+
queryKey: orgLimitEventKeys.lists(),
|
|
1254
1342
|
}),
|
|
1255
|
-
/** Invalidate a specific
|
|
1256
|
-
queryKey:
|
|
1343
|
+
/** Invalidate a specific orgLimitEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1344
|
+
queryKey: orgLimitEventKeys.detail(id),
|
|
1257
1345
|
}),
|
|
1258
1346
|
},
|
|
1259
|
-
/** Invalidate
|
|
1260
|
-
/** Invalidate all
|
|
1261
|
-
queryKey:
|
|
1347
|
+
/** Invalidate plansModule queries */ plansModule: {
|
|
1348
|
+
/** Invalidate all plansModule queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1349
|
+
queryKey: plansModuleKeys.all,
|
|
1262
1350
|
}),
|
|
1263
|
-
/** Invalidate
|
|
1264
|
-
queryKey:
|
|
1351
|
+
/** Invalidate plansModule list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1352
|
+
queryKey: plansModuleKeys.lists(),
|
|
1265
1353
|
}),
|
|
1266
|
-
/** Invalidate a specific
|
|
1267
|
-
queryKey:
|
|
1354
|
+
/** Invalidate a specific plansModule */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1355
|
+
queryKey: plansModuleKeys.detail(id),
|
|
1268
1356
|
}),
|
|
1269
1357
|
},
|
|
1270
1358
|
/** Invalidate rlsModule queries */ rlsModule: {
|
|
@@ -1289,15 +1377,26 @@ export const invalidate = {
|
|
|
1289
1377
|
queryKey: sqlActionKeys.detail(id),
|
|
1290
1378
|
}),
|
|
1291
1379
|
},
|
|
1292
|
-
/** Invalidate
|
|
1293
|
-
/** Invalidate all
|
|
1294
|
-
queryKey:
|
|
1380
|
+
/** Invalidate billingModule queries */ billingModule: {
|
|
1381
|
+
/** Invalidate all billingModule queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1382
|
+
queryKey: billingModuleKeys.all,
|
|
1295
1383
|
}),
|
|
1296
|
-
/** Invalidate
|
|
1297
|
-
queryKey:
|
|
1384
|
+
/** Invalidate billingModule list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1385
|
+
queryKey: billingModuleKeys.lists(),
|
|
1298
1386
|
}),
|
|
1299
|
-
/** Invalidate a specific
|
|
1300
|
-
queryKey:
|
|
1387
|
+
/** Invalidate a specific billingModule */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1388
|
+
queryKey: billingModuleKeys.detail(id),
|
|
1389
|
+
}),
|
|
1390
|
+
},
|
|
1391
|
+
/** Invalidate astMigration queries */ astMigration: {
|
|
1392
|
+
/** Invalidate all astMigration queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1393
|
+
queryKey: astMigrationKeys.all,
|
|
1394
|
+
}),
|
|
1395
|
+
/** Invalidate astMigration list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1396
|
+
queryKey: astMigrationKeys.lists(),
|
|
1397
|
+
}),
|
|
1398
|
+
/** Invalidate a specific astMigration */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1399
|
+
queryKey: astMigrationKeys.detail(id),
|
|
1301
1400
|
}),
|
|
1302
1401
|
},
|
|
1303
1402
|
/** Invalidate user queries */ user: {
|
|
@@ -1311,15 +1410,15 @@ export const invalidate = {
|
|
|
1311
1410
|
queryKey: userKeys.detail(id),
|
|
1312
1411
|
}),
|
|
1313
1412
|
},
|
|
1314
|
-
/** Invalidate
|
|
1315
|
-
/** Invalidate all
|
|
1316
|
-
queryKey:
|
|
1413
|
+
/** Invalidate orgMembershipSetting queries */ orgMembershipSetting: {
|
|
1414
|
+
/** Invalidate all orgMembershipSetting queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
1415
|
+
queryKey: orgMembershipSettingKeys.all,
|
|
1317
1416
|
}),
|
|
1318
|
-
/** Invalidate
|
|
1319
|
-
queryKey:
|
|
1417
|
+
/** Invalidate orgMembershipSetting list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
1418
|
+
queryKey: orgMembershipSettingKeys.lists(),
|
|
1320
1419
|
}),
|
|
1321
|
-
/** Invalidate a specific
|
|
1322
|
-
queryKey:
|
|
1420
|
+
/** Invalidate a specific orgMembershipSetting */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
1421
|
+
queryKey: orgMembershipSettingKeys.detail(id),
|
|
1323
1422
|
}),
|
|
1324
1423
|
},
|
|
1325
1424
|
/** Invalidate appMembership queries */ appMembership: {
|
|
@@ -1372,11 +1471,6 @@ export const remove = {
|
|
|
1372
1471
|
queryKey: getAllRecordKeys.detail(id),
|
|
1373
1472
|
});
|
|
1374
1473
|
},
|
|
1375
|
-
/** Remove object from cache */ object: (queryClient, id) => {
|
|
1376
|
-
queryClient.removeQueries({
|
|
1377
|
-
queryKey: objectKeys.detail(id),
|
|
1378
|
-
});
|
|
1379
|
-
},
|
|
1380
1474
|
/** Remove appPermission from cache */ appPermission: (queryClient, id) => {
|
|
1381
1475
|
queryClient.removeQueries({
|
|
1382
1476
|
queryKey: appPermissionKeys.detail(id),
|
|
@@ -1387,6 +1481,11 @@ export const remove = {
|
|
|
1387
1481
|
queryKey: orgPermissionKeys.detail(id),
|
|
1388
1482
|
});
|
|
1389
1483
|
},
|
|
1484
|
+
/** Remove object from cache */ object: (queryClient, id) => {
|
|
1485
|
+
queryClient.removeQueries({
|
|
1486
|
+
queryKey: objectKeys.detail(id),
|
|
1487
|
+
});
|
|
1488
|
+
},
|
|
1390
1489
|
/** Remove appLevelRequirement from cache */ appLevelRequirement: (queryClient, id) => {
|
|
1391
1490
|
queryClient.removeQueries({
|
|
1392
1491
|
queryKey: appLevelRequirementKeys.detail(id),
|
|
@@ -1787,6 +1886,11 @@ export const remove = {
|
|
|
1787
1886
|
queryKey: orgLimitKeys.detail(id),
|
|
1788
1887
|
});
|
|
1789
1888
|
},
|
|
1889
|
+
/** Remove orgLimitAggregate from cache */ orgLimitAggregate: (queryClient, id) => {
|
|
1890
|
+
queryClient.removeQueries({
|
|
1891
|
+
queryKey: orgLimitAggregateKeys.detail(id),
|
|
1892
|
+
});
|
|
1893
|
+
},
|
|
1790
1894
|
/** Remove appStep from cache */ appStep: (queryClient, id) => {
|
|
1791
1895
|
queryClient.removeQueries({
|
|
1792
1896
|
queryKey: appStepKeys.detail(id),
|
|
@@ -1847,9 +1951,24 @@ export const remove = {
|
|
|
1847
1951
|
queryKey: auditLogKeys.detail(id),
|
|
1848
1952
|
});
|
|
1849
1953
|
},
|
|
1850
|
-
/** Remove
|
|
1954
|
+
/** Remove agentThread from cache */ agentThread: (queryClient, id) => {
|
|
1851
1955
|
queryClient.removeQueries({
|
|
1852
|
-
queryKey:
|
|
1956
|
+
queryKey: agentThreadKeys.detail(id),
|
|
1957
|
+
});
|
|
1958
|
+
},
|
|
1959
|
+
/** Remove agentMessage from cache */ agentMessage: (queryClient, id) => {
|
|
1960
|
+
queryClient.removeQueries({
|
|
1961
|
+
queryKey: agentMessageKeys.detail(id),
|
|
1962
|
+
});
|
|
1963
|
+
},
|
|
1964
|
+
/** Remove agentTask from cache */ agentTask: (queryClient, id) => {
|
|
1965
|
+
queryClient.removeQueries({
|
|
1966
|
+
queryKey: agentTaskKeys.detail(id),
|
|
1967
|
+
});
|
|
1968
|
+
},
|
|
1969
|
+
/** Remove roleType from cache */ roleType: (queryClient, id) => {
|
|
1970
|
+
queryClient.removeQueries({
|
|
1971
|
+
queryKey: roleTypeKeys.detail(id),
|
|
1853
1972
|
});
|
|
1854
1973
|
},
|
|
1855
1974
|
/** Remove identityProvider from cache */ identityProvider: (queryClient, id) => {
|
|
@@ -1867,9 +1986,14 @@ export const remove = {
|
|
|
1867
1986
|
queryKey: storeKeys.detail(id),
|
|
1868
1987
|
});
|
|
1869
1988
|
},
|
|
1870
|
-
/** Remove
|
|
1989
|
+
/** Remove appPermissionDefault from cache */ appPermissionDefault: (queryClient, id) => {
|
|
1871
1990
|
queryClient.removeQueries({
|
|
1872
|
-
queryKey:
|
|
1991
|
+
queryKey: appPermissionDefaultKeys.detail(id),
|
|
1992
|
+
});
|
|
1993
|
+
},
|
|
1994
|
+
/** Remove membershipType from cache */ membershipType: (queryClient, id) => {
|
|
1995
|
+
queryClient.removeQueries({
|
|
1996
|
+
queryKey: membershipTypeKeys.detail(id),
|
|
1873
1997
|
});
|
|
1874
1998
|
},
|
|
1875
1999
|
/** Remove migrateFile from cache */ migrateFile: (queryClient, id) => {
|
|
@@ -1877,6 +2001,16 @@ export const remove = {
|
|
|
1877
2001
|
queryKey: migrateFileKeys.detail(id),
|
|
1878
2002
|
});
|
|
1879
2003
|
},
|
|
2004
|
+
/** Remove devicesModule from cache */ devicesModule: (queryClient, id) => {
|
|
2005
|
+
queryClient.removeQueries({
|
|
2006
|
+
queryKey: devicesModuleKeys.detail(id),
|
|
2007
|
+
});
|
|
2008
|
+
},
|
|
2009
|
+
/** Remove nodeTypeRegistry from cache */ nodeTypeRegistry: (queryClient, id) => {
|
|
2010
|
+
queryClient.removeQueries({
|
|
2011
|
+
queryKey: nodeTypeRegistryKeys.detail(id),
|
|
2012
|
+
});
|
|
2013
|
+
},
|
|
1880
2014
|
/** Remove appLimitDefault from cache */ appLimitDefault: (queryClient, id) => {
|
|
1881
2015
|
queryClient.removeQueries({
|
|
1882
2016
|
queryKey: appLimitDefaultKeys.detail(id),
|
|
@@ -1887,14 +2021,19 @@ export const remove = {
|
|
|
1887
2021
|
queryKey: orgLimitDefaultKeys.detail(id),
|
|
1888
2022
|
});
|
|
1889
2023
|
},
|
|
1890
|
-
/** Remove
|
|
2024
|
+
/** Remove userConnectedAccount from cache */ userConnectedAccount: (queryClient, id) => {
|
|
1891
2025
|
queryClient.removeQueries({
|
|
1892
|
-
queryKey:
|
|
2026
|
+
queryKey: userConnectedAccountKeys.detail(id),
|
|
1893
2027
|
});
|
|
1894
2028
|
},
|
|
1895
|
-
/** Remove
|
|
2029
|
+
/** Remove commit from cache */ commit: (queryClient, id) => {
|
|
1896
2030
|
queryClient.removeQueries({
|
|
1897
|
-
queryKey:
|
|
2031
|
+
queryKey: commitKeys.detail(id),
|
|
2032
|
+
});
|
|
2033
|
+
},
|
|
2034
|
+
/** Remove rateLimitsModule from cache */ rateLimitsModule: (queryClient, id) => {
|
|
2035
|
+
queryClient.removeQueries({
|
|
2036
|
+
queryKey: rateLimitsModuleKeys.detail(id),
|
|
1898
2037
|
});
|
|
1899
2038
|
},
|
|
1900
2039
|
/** Remove appMembershipDefault from cache */ appMembershipDefault: (queryClient, id) => {
|
|
@@ -1907,19 +2046,19 @@ export const remove = {
|
|
|
1907
2046
|
queryKey: orgMembershipDefaultKeys.detail(id),
|
|
1908
2047
|
});
|
|
1909
2048
|
},
|
|
1910
|
-
/** Remove
|
|
2049
|
+
/** Remove appLimitEvent from cache */ appLimitEvent: (queryClient, id) => {
|
|
1911
2050
|
queryClient.removeQueries({
|
|
1912
|
-
queryKey:
|
|
2051
|
+
queryKey: appLimitEventKeys.detail(id),
|
|
1913
2052
|
});
|
|
1914
2053
|
},
|
|
1915
|
-
/** Remove
|
|
2054
|
+
/** Remove orgLimitEvent from cache */ orgLimitEvent: (queryClient, id) => {
|
|
1916
2055
|
queryClient.removeQueries({
|
|
1917
|
-
queryKey:
|
|
2056
|
+
queryKey: orgLimitEventKeys.detail(id),
|
|
1918
2057
|
});
|
|
1919
2058
|
},
|
|
1920
|
-
/** Remove
|
|
2059
|
+
/** Remove plansModule from cache */ plansModule: (queryClient, id) => {
|
|
1921
2060
|
queryClient.removeQueries({
|
|
1922
|
-
queryKey:
|
|
2061
|
+
queryKey: plansModuleKeys.detail(id),
|
|
1923
2062
|
});
|
|
1924
2063
|
},
|
|
1925
2064
|
/** Remove rlsModule from cache */ rlsModule: (queryClient, id) => {
|
|
@@ -1932,9 +2071,14 @@ export const remove = {
|
|
|
1932
2071
|
queryKey: sqlActionKeys.detail(id),
|
|
1933
2072
|
});
|
|
1934
2073
|
},
|
|
1935
|
-
/** Remove
|
|
2074
|
+
/** Remove billingModule from cache */ billingModule: (queryClient, id) => {
|
|
1936
2075
|
queryClient.removeQueries({
|
|
1937
|
-
queryKey:
|
|
2076
|
+
queryKey: billingModuleKeys.detail(id),
|
|
2077
|
+
});
|
|
2078
|
+
},
|
|
2079
|
+
/** Remove astMigration from cache */ astMigration: (queryClient, id) => {
|
|
2080
|
+
queryClient.removeQueries({
|
|
2081
|
+
queryKey: astMigrationKeys.detail(id),
|
|
1938
2082
|
});
|
|
1939
2083
|
},
|
|
1940
2084
|
/** Remove user from cache */ user: (queryClient, id) => {
|
|
@@ -1942,9 +2086,9 @@ export const remove = {
|
|
|
1942
2086
|
queryKey: userKeys.detail(id),
|
|
1943
2087
|
});
|
|
1944
2088
|
},
|
|
1945
|
-
/** Remove
|
|
2089
|
+
/** Remove orgMembershipSetting from cache */ orgMembershipSetting: (queryClient, id) => {
|
|
1946
2090
|
queryClient.removeQueries({
|
|
1947
|
-
queryKey:
|
|
2091
|
+
queryKey: orgMembershipSettingKeys.detail(id),
|
|
1948
2092
|
});
|
|
1949
2093
|
},
|
|
1950
2094
|
/** Remove appMembership from cache */ appMembership: (queryClient, id) => {
|