@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
|
@@ -37,13 +37,6 @@ export const getAllRecordKeys = {
|
|
|
37
37
|
/** Detail query keys */ details: () => [...getAllRecordKeys.all, 'detail'],
|
|
38
38
|
/** Detail query key for specific item */ detail: (id) => [...getAllRecordKeys.details(), id],
|
|
39
39
|
};
|
|
40
|
-
export const objectKeys = {
|
|
41
|
-
/** All object queries */ all: ['object'],
|
|
42
|
-
/** List query keys */ lists: () => [...objectKeys.all, 'list'],
|
|
43
|
-
/** List query key with variables */ list: (variables) => [...objectKeys.lists(), variables],
|
|
44
|
-
/** Detail query keys */ details: () => [...objectKeys.all, 'detail'],
|
|
45
|
-
/** Detail query key for specific item */ detail: (id) => [...objectKeys.details(), id],
|
|
46
|
-
};
|
|
47
40
|
export const appPermissionKeys = {
|
|
48
41
|
/** All appPermission queries */ all: ['apppermission'],
|
|
49
42
|
/** List query keys */ lists: () => [...appPermissionKeys.all, 'list'],
|
|
@@ -58,6 +51,13 @@ export const orgPermissionKeys = {
|
|
|
58
51
|
/** Detail query keys */ details: () => [...orgPermissionKeys.all, 'detail'],
|
|
59
52
|
/** Detail query key for specific item */ detail: (id) => [...orgPermissionKeys.details(), id],
|
|
60
53
|
};
|
|
54
|
+
export const objectKeys = {
|
|
55
|
+
/** All object queries */ all: ['object'],
|
|
56
|
+
/** List query keys */ lists: () => [...objectKeys.all, 'list'],
|
|
57
|
+
/** List query key with variables */ list: (variables) => [...objectKeys.lists(), variables],
|
|
58
|
+
/** Detail query keys */ details: () => [...objectKeys.all, 'detail'],
|
|
59
|
+
/** Detail query key for specific item */ detail: (id) => [...objectKeys.details(), id],
|
|
60
|
+
};
|
|
61
61
|
export const appLevelRequirementKeys = {
|
|
62
62
|
/** All appLevelRequirement queries */ all: ['applevelrequirement'],
|
|
63
63
|
/** List query keys */ lists: () => [...appLevelRequirementKeys.all, 'list'],
|
|
@@ -618,6 +618,13 @@ export const orgLimitKeys = {
|
|
|
618
618
|
/** Detail query keys */ details: () => [...orgLimitKeys.all, 'detail'],
|
|
619
619
|
/** Detail query key for specific item */ detail: (id) => [...orgLimitKeys.details(), id],
|
|
620
620
|
};
|
|
621
|
+
export const orgLimitAggregateKeys = {
|
|
622
|
+
/** All orgLimitAggregate queries */ all: ['orglimitaggregate'],
|
|
623
|
+
/** List query keys */ lists: () => [...orgLimitAggregateKeys.all, 'list'],
|
|
624
|
+
/** List query key with variables */ list: (variables) => [...orgLimitAggregateKeys.lists(), variables],
|
|
625
|
+
/** Detail query keys */ details: () => [...orgLimitAggregateKeys.all, 'detail'],
|
|
626
|
+
/** Detail query key for specific item */ detail: (id) => [...orgLimitAggregateKeys.details(), id],
|
|
627
|
+
};
|
|
621
628
|
export const appStepKeys = {
|
|
622
629
|
/** All appStep queries */ all: ['appstep'],
|
|
623
630
|
/** List query keys */ lists: () => [...appStepKeys.all, 'list'],
|
|
@@ -702,12 +709,33 @@ export const auditLogKeys = {
|
|
|
702
709
|
/** Detail query keys */ details: () => [...auditLogKeys.all, 'detail'],
|
|
703
710
|
/** Detail query key for specific item */ detail: (id) => [...auditLogKeys.details(), id],
|
|
704
711
|
};
|
|
705
|
-
export const
|
|
706
|
-
/** All
|
|
707
|
-
/** List query keys */ lists: () => [...
|
|
708
|
-
/** List query key with variables */ list: (variables) => [...
|
|
709
|
-
/** Detail query keys */ details: () => [...
|
|
710
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
712
|
+
export const agentThreadKeys = {
|
|
713
|
+
/** All agentThread queries */ all: ['agentthread'],
|
|
714
|
+
/** List query keys */ lists: () => [...agentThreadKeys.all, 'list'],
|
|
715
|
+
/** List query key with variables */ list: (variables) => [...agentThreadKeys.lists(), variables],
|
|
716
|
+
/** Detail query keys */ details: () => [...agentThreadKeys.all, 'detail'],
|
|
717
|
+
/** Detail query key for specific item */ detail: (id) => [...agentThreadKeys.details(), id],
|
|
718
|
+
};
|
|
719
|
+
export const agentMessageKeys = {
|
|
720
|
+
/** All agentMessage queries */ all: ['agentmessage'],
|
|
721
|
+
/** List query keys */ lists: () => [...agentMessageKeys.all, 'list'],
|
|
722
|
+
/** List query key with variables */ list: (variables) => [...agentMessageKeys.lists(), variables],
|
|
723
|
+
/** Detail query keys */ details: () => [...agentMessageKeys.all, 'detail'],
|
|
724
|
+
/** Detail query key for specific item */ detail: (id) => [...agentMessageKeys.details(), id],
|
|
725
|
+
};
|
|
726
|
+
export const agentTaskKeys = {
|
|
727
|
+
/** All agentTask queries */ all: ['agenttask'],
|
|
728
|
+
/** List query keys */ lists: () => [...agentTaskKeys.all, 'list'],
|
|
729
|
+
/** List query key with variables */ list: (variables) => [...agentTaskKeys.lists(), variables],
|
|
730
|
+
/** Detail query keys */ details: () => [...agentTaskKeys.all, 'detail'],
|
|
731
|
+
/** Detail query key for specific item */ detail: (id) => [...agentTaskKeys.details(), id],
|
|
732
|
+
};
|
|
733
|
+
export const roleTypeKeys = {
|
|
734
|
+
/** All roleType queries */ all: ['roletype'],
|
|
735
|
+
/** List query keys */ lists: () => [...roleTypeKeys.all, 'list'],
|
|
736
|
+
/** List query key with variables */ list: (variables) => [...roleTypeKeys.lists(), variables],
|
|
737
|
+
/** Detail query keys */ details: () => [...roleTypeKeys.all, 'detail'],
|
|
738
|
+
/** Detail query key for specific item */ detail: (id) => [...roleTypeKeys.details(), id],
|
|
711
739
|
};
|
|
712
740
|
export const identityProviderKeys = {
|
|
713
741
|
/** All identityProvider queries */ all: ['identityprovider'],
|
|
@@ -730,12 +758,19 @@ export const storeKeys = {
|
|
|
730
758
|
/** Detail query keys */ details: () => [...storeKeys.all, 'detail'],
|
|
731
759
|
/** Detail query key for specific item */ detail: (id) => [...storeKeys.details(), id],
|
|
732
760
|
};
|
|
733
|
-
export const
|
|
734
|
-
/** All
|
|
735
|
-
/** List query keys */ lists: () => [...
|
|
736
|
-
/** List query key with variables */ list: (variables) => [...
|
|
737
|
-
/** Detail query keys */ details: () => [...
|
|
738
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
761
|
+
export const appPermissionDefaultKeys = {
|
|
762
|
+
/** All appPermissionDefault queries */ all: ['apppermissiondefault'],
|
|
763
|
+
/** List query keys */ lists: () => [...appPermissionDefaultKeys.all, 'list'],
|
|
764
|
+
/** List query key with variables */ list: (variables) => [...appPermissionDefaultKeys.lists(), variables],
|
|
765
|
+
/** Detail query keys */ details: () => [...appPermissionDefaultKeys.all, 'detail'],
|
|
766
|
+
/** Detail query key for specific item */ detail: (id) => [...appPermissionDefaultKeys.details(), id],
|
|
767
|
+
};
|
|
768
|
+
export const membershipTypeKeys = {
|
|
769
|
+
/** All membershipType queries */ all: ['membershiptype'],
|
|
770
|
+
/** List query keys */ lists: () => [...membershipTypeKeys.all, 'list'],
|
|
771
|
+
/** List query key with variables */ list: (variables) => [...membershipTypeKeys.lists(), variables],
|
|
772
|
+
/** Detail query keys */ details: () => [...membershipTypeKeys.all, 'detail'],
|
|
773
|
+
/** Detail query key for specific item */ detail: (id) => [...membershipTypeKeys.details(), id],
|
|
739
774
|
};
|
|
740
775
|
export const migrateFileKeys = {
|
|
741
776
|
/** All migrateFile queries */ all: ['migratefile'],
|
|
@@ -744,6 +779,20 @@ export const migrateFileKeys = {
|
|
|
744
779
|
/** Detail query keys */ details: () => [...migrateFileKeys.all, 'detail'],
|
|
745
780
|
/** Detail query key for specific item */ detail: (id) => [...migrateFileKeys.details(), id],
|
|
746
781
|
};
|
|
782
|
+
export const devicesModuleKeys = {
|
|
783
|
+
/** All devicesModule queries */ all: ['devicesmodule'],
|
|
784
|
+
/** List query keys */ lists: () => [...devicesModuleKeys.all, 'list'],
|
|
785
|
+
/** List query key with variables */ list: (variables) => [...devicesModuleKeys.lists(), variables],
|
|
786
|
+
/** Detail query keys */ details: () => [...devicesModuleKeys.all, 'detail'],
|
|
787
|
+
/** Detail query key for specific item */ detail: (id) => [...devicesModuleKeys.details(), id],
|
|
788
|
+
};
|
|
789
|
+
export const nodeTypeRegistryKeys = {
|
|
790
|
+
/** All nodeTypeRegistry queries */ all: ['nodetyperegistry'],
|
|
791
|
+
/** List query keys */ lists: () => [...nodeTypeRegistryKeys.all, 'list'],
|
|
792
|
+
/** List query key with variables */ list: (variables) => [...nodeTypeRegistryKeys.lists(), variables],
|
|
793
|
+
/** Detail query keys */ details: () => [...nodeTypeRegistryKeys.all, 'detail'],
|
|
794
|
+
/** Detail query key for specific item */ detail: (id) => [...nodeTypeRegistryKeys.details(), id],
|
|
795
|
+
};
|
|
747
796
|
export const appLimitDefaultKeys = {
|
|
748
797
|
/** All appLimitDefault queries */ all: ['applimitdefault'],
|
|
749
798
|
/** List query keys */ lists: () => [...appLimitDefaultKeys.all, 'list'],
|
|
@@ -758,13 +807,6 @@ export const orgLimitDefaultKeys = {
|
|
|
758
807
|
/** Detail query keys */ details: () => [...orgLimitDefaultKeys.all, 'detail'],
|
|
759
808
|
/** Detail query key for specific item */ detail: (id) => [...orgLimitDefaultKeys.details(), id],
|
|
760
809
|
};
|
|
761
|
-
export const devicesModuleKeys = {
|
|
762
|
-
/** All devicesModule queries */ all: ['devicesmodule'],
|
|
763
|
-
/** List query keys */ lists: () => [...devicesModuleKeys.all, 'list'],
|
|
764
|
-
/** List query key with variables */ list: (variables) => [...devicesModuleKeys.lists(), variables],
|
|
765
|
-
/** Detail query keys */ details: () => [...devicesModuleKeys.all, 'detail'],
|
|
766
|
-
/** Detail query key for specific item */ detail: (id) => [...devicesModuleKeys.details(), id],
|
|
767
|
-
};
|
|
768
810
|
export const userConnectedAccountKeys = {
|
|
769
811
|
/** All userConnectedAccount queries */ all: ['userconnectedaccount'],
|
|
770
812
|
/** List query keys */ lists: () => [...userConnectedAccountKeys.all, 'list'],
|
|
@@ -772,20 +814,6 @@ export const userConnectedAccountKeys = {
|
|
|
772
814
|
/** Detail query keys */ details: () => [...userConnectedAccountKeys.all, 'detail'],
|
|
773
815
|
/** Detail query key for specific item */ detail: (id) => [...userConnectedAccountKeys.details(), id],
|
|
774
816
|
};
|
|
775
|
-
export const appMembershipDefaultKeys = {
|
|
776
|
-
/** All appMembershipDefault queries */ all: ['appmembershipdefault'],
|
|
777
|
-
/** List query keys */ lists: () => [...appMembershipDefaultKeys.all, 'list'],
|
|
778
|
-
/** List query key with variables */ list: (variables) => [...appMembershipDefaultKeys.lists(), variables],
|
|
779
|
-
/** Detail query keys */ details: () => [...appMembershipDefaultKeys.all, 'detail'],
|
|
780
|
-
/** Detail query key for specific item */ detail: (id) => [...appMembershipDefaultKeys.details(), id],
|
|
781
|
-
};
|
|
782
|
-
export const orgMembershipDefaultKeys = {
|
|
783
|
-
/** All orgMembershipDefault queries */ all: ['orgmembershipdefault'],
|
|
784
|
-
/** List query keys */ lists: () => [...orgMembershipDefaultKeys.all, 'list'],
|
|
785
|
-
/** List query key with variables */ list: (variables) => [...orgMembershipDefaultKeys.lists(), variables],
|
|
786
|
-
/** Detail query keys */ details: () => [...orgMembershipDefaultKeys.all, 'detail'],
|
|
787
|
-
/** Detail query key for specific item */ detail: (id) => [...orgMembershipDefaultKeys.details(), id],
|
|
788
|
-
};
|
|
789
817
|
export const commitKeys = {
|
|
790
818
|
/** All commit queries */ all: ['commit'],
|
|
791
819
|
/** List query keys */ lists: () => [...commitKeys.all, 'list'],
|
|
@@ -800,12 +828,40 @@ export const rateLimitsModuleKeys = {
|
|
|
800
828
|
/** Detail query keys */ details: () => [...rateLimitsModuleKeys.all, 'detail'],
|
|
801
829
|
/** Detail query key for specific item */ detail: (id) => [...rateLimitsModuleKeys.details(), id],
|
|
802
830
|
};
|
|
803
|
-
export const
|
|
804
|
-
/** All
|
|
805
|
-
/** List query keys */ lists: () => [...
|
|
806
|
-
/** List query key with variables */ list: (variables) => [...
|
|
807
|
-
/** Detail query keys */ details: () => [...
|
|
808
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
831
|
+
export const appMembershipDefaultKeys = {
|
|
832
|
+
/** All appMembershipDefault queries */ all: ['appmembershipdefault'],
|
|
833
|
+
/** List query keys */ lists: () => [...appMembershipDefaultKeys.all, 'list'],
|
|
834
|
+
/** List query key with variables */ list: (variables) => [...appMembershipDefaultKeys.lists(), variables],
|
|
835
|
+
/** Detail query keys */ details: () => [...appMembershipDefaultKeys.all, 'detail'],
|
|
836
|
+
/** Detail query key for specific item */ detail: (id) => [...appMembershipDefaultKeys.details(), id],
|
|
837
|
+
};
|
|
838
|
+
export const orgMembershipDefaultKeys = {
|
|
839
|
+
/** All orgMembershipDefault queries */ all: ['orgmembershipdefault'],
|
|
840
|
+
/** List query keys */ lists: () => [...orgMembershipDefaultKeys.all, 'list'],
|
|
841
|
+
/** List query key with variables */ list: (variables) => [...orgMembershipDefaultKeys.lists(), variables],
|
|
842
|
+
/** Detail query keys */ details: () => [...orgMembershipDefaultKeys.all, 'detail'],
|
|
843
|
+
/** Detail query key for specific item */ detail: (id) => [...orgMembershipDefaultKeys.details(), id],
|
|
844
|
+
};
|
|
845
|
+
export const appLimitEventKeys = {
|
|
846
|
+
/** All appLimitEvent queries */ all: ['applimitevent'],
|
|
847
|
+
/** List query keys */ lists: () => [...appLimitEventKeys.all, 'list'],
|
|
848
|
+
/** List query key with variables */ list: (variables) => [...appLimitEventKeys.lists(), variables],
|
|
849
|
+
/** Detail query keys */ details: () => [...appLimitEventKeys.all, 'detail'],
|
|
850
|
+
/** Detail query key for specific item */ detail: (id) => [...appLimitEventKeys.details(), id],
|
|
851
|
+
};
|
|
852
|
+
export const orgLimitEventKeys = {
|
|
853
|
+
/** All orgLimitEvent queries */ all: ['orglimitevent'],
|
|
854
|
+
/** List query keys */ lists: () => [...orgLimitEventKeys.all, 'list'],
|
|
855
|
+
/** List query key with variables */ list: (variables) => [...orgLimitEventKeys.lists(), variables],
|
|
856
|
+
/** Detail query keys */ details: () => [...orgLimitEventKeys.all, 'detail'],
|
|
857
|
+
/** Detail query key for specific item */ detail: (id) => [...orgLimitEventKeys.details(), id],
|
|
858
|
+
};
|
|
859
|
+
export const plansModuleKeys = {
|
|
860
|
+
/** All plansModule queries */ all: ['plansmodule'],
|
|
861
|
+
/** List query keys */ lists: () => [...plansModuleKeys.all, 'list'],
|
|
862
|
+
/** List query key with variables */ list: (variables) => [...plansModuleKeys.lists(), variables],
|
|
863
|
+
/** Detail query keys */ details: () => [...plansModuleKeys.all, 'detail'],
|
|
864
|
+
/** Detail query key for specific item */ detail: (id) => [...plansModuleKeys.details(), id],
|
|
809
865
|
};
|
|
810
866
|
export const rlsModuleKeys = {
|
|
811
867
|
/** All rlsModule queries */ all: ['rlsmodule'],
|
|
@@ -821,12 +877,19 @@ export const sqlActionKeys = {
|
|
|
821
877
|
/** Detail query keys */ details: () => [...sqlActionKeys.all, 'detail'],
|
|
822
878
|
/** Detail query key for specific item */ detail: (id) => [...sqlActionKeys.details(), id],
|
|
823
879
|
};
|
|
824
|
-
export const
|
|
825
|
-
/** All
|
|
826
|
-
/** List query keys */ lists: () => [...
|
|
827
|
-
/** List query key with variables */ list: (variables) => [...
|
|
828
|
-
/** Detail query keys */ details: () => [...
|
|
829
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
880
|
+
export const billingModuleKeys = {
|
|
881
|
+
/** All billingModule queries */ all: ['billingmodule'],
|
|
882
|
+
/** List query keys */ lists: () => [...billingModuleKeys.all, 'list'],
|
|
883
|
+
/** List query key with variables */ list: (variables) => [...billingModuleKeys.lists(), variables],
|
|
884
|
+
/** Detail query keys */ details: () => [...billingModuleKeys.all, 'detail'],
|
|
885
|
+
/** Detail query key for specific item */ detail: (id) => [...billingModuleKeys.details(), id],
|
|
886
|
+
};
|
|
887
|
+
export const astMigrationKeys = {
|
|
888
|
+
/** All astMigration queries */ all: ['astmigration'],
|
|
889
|
+
/** List query keys */ lists: () => [...astMigrationKeys.all, 'list'],
|
|
890
|
+
/** List query key with variables */ list: (variables) => [...astMigrationKeys.lists(), variables],
|
|
891
|
+
/** Detail query keys */ details: () => [...astMigrationKeys.all, 'detail'],
|
|
892
|
+
/** Detail query key for specific item */ detail: (id) => [...astMigrationKeys.details(), id],
|
|
830
893
|
};
|
|
831
894
|
export const userKeys = {
|
|
832
895
|
/** All user queries */ all: ['user'],
|
|
@@ -835,12 +898,12 @@ export const userKeys = {
|
|
|
835
898
|
/** Detail query keys */ details: () => [...userKeys.all, 'detail'],
|
|
836
899
|
/** Detail query key for specific item */ detail: (id) => [...userKeys.details(), id],
|
|
837
900
|
};
|
|
838
|
-
export const
|
|
839
|
-
/** All
|
|
840
|
-
/** List query keys */ lists: () => [...
|
|
841
|
-
/** List query key with variables */ list: (variables) => [...
|
|
842
|
-
/** Detail query keys */ details: () => [...
|
|
843
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
901
|
+
export const orgMembershipSettingKeys = {
|
|
902
|
+
/** All orgMembershipSetting queries */ all: ['orgmembershipsetting'],
|
|
903
|
+
/** List query keys */ lists: () => [...orgMembershipSettingKeys.all, 'list'],
|
|
904
|
+
/** List query key with variables */ list: (variables) => [...orgMembershipSettingKeys.lists(), variables],
|
|
905
|
+
/** Detail query keys */ details: () => [...orgMembershipSettingKeys.all, 'detail'],
|
|
906
|
+
/** Detail query key for specific item */ detail: (id) => [...orgMembershipSettingKeys.details(), id],
|
|
844
907
|
};
|
|
845
908
|
export const appMembershipKeys = {
|
|
846
909
|
/** All appMembership queries */ all: ['appmembership'],
|
|
@@ -875,11 +938,11 @@ export const customQueryKeys = {
|
|
|
875
938
|
/** Query key for resolveBlueprintTable */ resolveBlueprintTable: (variables) => ['resolveBlueprintTable', variables],
|
|
876
939
|
/** Query key for appPermissionsGetMaskByNames */ appPermissionsGetMaskByNames: (variables) => ['appPermissionsGetMaskByNames', variables],
|
|
877
940
|
/** Query key for orgPermissionsGetMaskByNames */ orgPermissionsGetMaskByNames: (variables) => ['orgPermissionsGetMaskByNames', variables],
|
|
941
|
+
/** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
|
|
942
|
+
/** Query key for orgPermissionsGetByMask */ orgPermissionsGetByMask: (variables) => ['orgPermissionsGetByMask', variables],
|
|
878
943
|
/** Query key for getAllObjectsFromRoot */ getAllObjectsFromRoot: (variables) => ['getAllObjectsFromRoot', variables],
|
|
879
944
|
/** Query key for getPathObjectsFromRoot */ getPathObjectsFromRoot: (variables) => ['getPathObjectsFromRoot', variables],
|
|
880
945
|
/** Query key for getObjectAtPath */ getObjectAtPath: (variables) => ['getObjectAtPath', variables],
|
|
881
|
-
/** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
|
|
882
|
-
/** Query key for orgPermissionsGetByMask */ orgPermissionsGetByMask: (variables) => ['orgPermissionsGetByMask', variables],
|
|
883
946
|
/** Query key for stepsRequired */ stepsRequired: (variables) => ['stepsRequired', variables],
|
|
884
947
|
/** Query key for currentUser */ currentUser: () => ['currentUser'],
|
|
885
948
|
};
|
|
@@ -909,9 +972,9 @@ export const queryKeys = {
|
|
|
909
972
|
orgGetManagersRecord: orgGetManagersRecordKeys,
|
|
910
973
|
orgGetSubordinatesRecord: orgGetSubordinatesRecordKeys,
|
|
911
974
|
getAllRecord: getAllRecordKeys,
|
|
912
|
-
object: objectKeys,
|
|
913
975
|
appPermission: appPermissionKeys,
|
|
914
976
|
orgPermission: orgPermissionKeys,
|
|
977
|
+
object: objectKeys,
|
|
915
978
|
appLevelRequirement: appLevelRequirementKeys,
|
|
916
979
|
database: databaseKeys,
|
|
917
980
|
schema: schemaKeys,
|
|
@@ -992,6 +1055,7 @@ export const queryKeys = {
|
|
|
992
1055
|
orgPermissionDefault: orgPermissionDefaultKeys,
|
|
993
1056
|
appLimit: appLimitKeys,
|
|
994
1057
|
orgLimit: orgLimitKeys,
|
|
1058
|
+
orgLimitAggregate: orgLimitAggregateKeys,
|
|
995
1059
|
appStep: appStepKeys,
|
|
996
1060
|
appAchievement: appAchievementKeys,
|
|
997
1061
|
appLevel: appLevelKeys,
|
|
@@ -1004,26 +1068,34 @@ export const queryKeys = {
|
|
|
1004
1068
|
orgInvite: orgInviteKeys,
|
|
1005
1069
|
orgClaimedInvite: orgClaimedInviteKeys,
|
|
1006
1070
|
auditLog: auditLogKeys,
|
|
1007
|
-
|
|
1071
|
+
agentThread: agentThreadKeys,
|
|
1072
|
+
agentMessage: agentMessageKeys,
|
|
1073
|
+
agentTask: agentTaskKeys,
|
|
1074
|
+
roleType: roleTypeKeys,
|
|
1008
1075
|
identityProvider: identityProviderKeys,
|
|
1009
1076
|
ref: refKeys,
|
|
1010
1077
|
store: storeKeys,
|
|
1011
|
-
|
|
1078
|
+
appPermissionDefault: appPermissionDefaultKeys,
|
|
1079
|
+
membershipType: membershipTypeKeys,
|
|
1012
1080
|
migrateFile: migrateFileKeys,
|
|
1081
|
+
devicesModule: devicesModuleKeys,
|
|
1082
|
+
nodeTypeRegistry: nodeTypeRegistryKeys,
|
|
1013
1083
|
appLimitDefault: appLimitDefaultKeys,
|
|
1014
1084
|
orgLimitDefault: orgLimitDefaultKeys,
|
|
1015
|
-
devicesModule: devicesModuleKeys,
|
|
1016
1085
|
userConnectedAccount: userConnectedAccountKeys,
|
|
1017
|
-
appMembershipDefault: appMembershipDefaultKeys,
|
|
1018
|
-
orgMembershipDefault: orgMembershipDefaultKeys,
|
|
1019
1086
|
commit: commitKeys,
|
|
1020
1087
|
rateLimitsModule: rateLimitsModuleKeys,
|
|
1021
|
-
|
|
1088
|
+
appMembershipDefault: appMembershipDefaultKeys,
|
|
1089
|
+
orgMembershipDefault: orgMembershipDefaultKeys,
|
|
1090
|
+
appLimitEvent: appLimitEventKeys,
|
|
1091
|
+
orgLimitEvent: orgLimitEventKeys,
|
|
1092
|
+
plansModule: plansModuleKeys,
|
|
1022
1093
|
rlsModule: rlsModuleKeys,
|
|
1023
1094
|
sqlAction: sqlActionKeys,
|
|
1024
|
-
|
|
1025
|
-
user: userKeys,
|
|
1095
|
+
billingModule: billingModuleKeys,
|
|
1026
1096
|
astMigration: astMigrationKeys,
|
|
1097
|
+
user: userKeys,
|
|
1098
|
+
orgMembershipSetting: orgMembershipSettingKeys,
|
|
1027
1099
|
appMembership: appMembershipKeys,
|
|
1028
1100
|
hierarchyModule: hierarchyModuleKeys,
|
|
1029
1101
|
custom: customQueryKeys,
|
|
@@ -2,9 +2,9 @@ import type { OrmClientConfig } from './client';
|
|
|
2
2
|
import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
3
3
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
4
4
|
import { GetAllRecordModel } from './models/getAllRecord';
|
|
5
|
-
import { ObjectModel } from './models/object';
|
|
6
5
|
import { AppPermissionModel } from './models/appPermission';
|
|
7
6
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
7
|
+
import { ObjectModel } from './models/object';
|
|
8
8
|
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
9
9
|
import { DatabaseModel } from './models/database';
|
|
10
10
|
import { SchemaModel } from './models/schema';
|
|
@@ -85,6 +85,7 @@ import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
|
85
85
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
86
86
|
import { AppLimitModel } from './models/appLimit';
|
|
87
87
|
import { OrgLimitModel } from './models/orgLimit';
|
|
88
|
+
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
88
89
|
import { AppStepModel } from './models/appStep';
|
|
89
90
|
import { AppAchievementModel } from './models/appAchievement';
|
|
90
91
|
import { AppLevelModel } from './models/appLevel';
|
|
@@ -97,26 +98,34 @@ import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
|
97
98
|
import { OrgInviteModel } from './models/orgInvite';
|
|
98
99
|
import { OrgClaimedInviteModel } from './models/orgClaimedInvite';
|
|
99
100
|
import { AuditLogModel } from './models/auditLog';
|
|
100
|
-
import {
|
|
101
|
+
import { AgentThreadModel } from './models/agentThread';
|
|
102
|
+
import { AgentMessageModel } from './models/agentMessage';
|
|
103
|
+
import { AgentTaskModel } from './models/agentTask';
|
|
104
|
+
import { RoleTypeModel } from './models/roleType';
|
|
101
105
|
import { IdentityProviderModel } from './models/identityProvider';
|
|
102
106
|
import { RefModel } from './models/ref';
|
|
103
107
|
import { StoreModel } from './models/store';
|
|
104
|
-
import {
|
|
108
|
+
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
109
|
+
import { MembershipTypeModel } from './models/membershipType';
|
|
105
110
|
import { MigrateFileModel } from './models/migrateFile';
|
|
111
|
+
import { DevicesModuleModel } from './models/devicesModule';
|
|
112
|
+
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
106
113
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
107
114
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
108
|
-
import { DevicesModuleModel } from './models/devicesModule';
|
|
109
115
|
import { UserConnectedAccountModel } from './models/userConnectedAccount';
|
|
110
|
-
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
111
|
-
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
112
116
|
import { CommitModel } from './models/commit';
|
|
113
117
|
import { RateLimitsModuleModel } from './models/rateLimitsModule';
|
|
114
|
-
import {
|
|
118
|
+
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
119
|
+
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
120
|
+
import { AppLimitEventModel } from './models/appLimitEvent';
|
|
121
|
+
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
122
|
+
import { PlansModuleModel } from './models/plansModule';
|
|
115
123
|
import { RlsModuleModel } from './models/rlsModule';
|
|
116
124
|
import { SqlActionModel } from './models/sqlAction';
|
|
117
|
-
import {
|
|
118
|
-
import { UserModel } from './models/user';
|
|
125
|
+
import { BillingModuleModel } from './models/billingModule';
|
|
119
126
|
import { AstMigrationModel } from './models/astMigration';
|
|
127
|
+
import { UserModel } from './models/user';
|
|
128
|
+
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
120
129
|
import { AppMembershipModel } from './models/appMembership';
|
|
121
130
|
import { HierarchyModuleModel } from './models/hierarchyModule';
|
|
122
131
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
@@ -153,9 +162,9 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
153
162
|
orgGetManagersRecord: OrgGetManagersRecordModel;
|
|
154
163
|
orgGetSubordinatesRecord: OrgGetSubordinatesRecordModel;
|
|
155
164
|
getAllRecord: GetAllRecordModel;
|
|
156
|
-
object: ObjectModel;
|
|
157
165
|
appPermission: AppPermissionModel;
|
|
158
166
|
orgPermission: OrgPermissionModel;
|
|
167
|
+
object: ObjectModel;
|
|
159
168
|
appLevelRequirement: AppLevelRequirementModel;
|
|
160
169
|
database: DatabaseModel;
|
|
161
170
|
schema: SchemaModel;
|
|
@@ -236,6 +245,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
236
245
|
orgPermissionDefault: OrgPermissionDefaultModel;
|
|
237
246
|
appLimit: AppLimitModel;
|
|
238
247
|
orgLimit: OrgLimitModel;
|
|
248
|
+
orgLimitAggregate: OrgLimitAggregateModel;
|
|
239
249
|
appStep: AppStepModel;
|
|
240
250
|
appAchievement: AppAchievementModel;
|
|
241
251
|
appLevel: AppLevelModel;
|
|
@@ -248,26 +258,34 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
248
258
|
orgInvite: OrgInviteModel;
|
|
249
259
|
orgClaimedInvite: OrgClaimedInviteModel;
|
|
250
260
|
auditLog: AuditLogModel;
|
|
251
|
-
|
|
261
|
+
agentThread: AgentThreadModel;
|
|
262
|
+
agentMessage: AgentMessageModel;
|
|
263
|
+
agentTask: AgentTaskModel;
|
|
264
|
+
roleType: RoleTypeModel;
|
|
252
265
|
identityProvider: IdentityProviderModel;
|
|
253
266
|
ref: RefModel;
|
|
254
267
|
store: StoreModel;
|
|
255
|
-
|
|
268
|
+
appPermissionDefault: AppPermissionDefaultModel;
|
|
269
|
+
membershipType: MembershipTypeModel;
|
|
256
270
|
migrateFile: MigrateFileModel;
|
|
271
|
+
devicesModule: DevicesModuleModel;
|
|
272
|
+
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
257
273
|
appLimitDefault: AppLimitDefaultModel;
|
|
258
274
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
259
|
-
devicesModule: DevicesModuleModel;
|
|
260
275
|
userConnectedAccount: UserConnectedAccountModel;
|
|
261
|
-
appMembershipDefault: AppMembershipDefaultModel;
|
|
262
|
-
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
263
276
|
commit: CommitModel;
|
|
264
277
|
rateLimitsModule: RateLimitsModuleModel;
|
|
265
|
-
|
|
278
|
+
appMembershipDefault: AppMembershipDefaultModel;
|
|
279
|
+
orgMembershipDefault: OrgMembershipDefaultModel;
|
|
280
|
+
appLimitEvent: AppLimitEventModel;
|
|
281
|
+
orgLimitEvent: OrgLimitEventModel;
|
|
282
|
+
plansModule: PlansModuleModel;
|
|
266
283
|
rlsModule: RlsModuleModel;
|
|
267
284
|
sqlAction: SqlActionModel;
|
|
268
|
-
|
|
269
|
-
user: UserModel;
|
|
285
|
+
billingModule: BillingModuleModel;
|
|
270
286
|
astMigration: AstMigrationModel;
|
|
287
|
+
user: UserModel;
|
|
288
|
+
orgMembershipSetting: OrgMembershipSettingModel;
|
|
271
289
|
appMembership: AppMembershipModel;
|
|
272
290
|
hierarchyModule: HierarchyModuleModel;
|
|
273
291
|
query: {
|
|
@@ -346,6 +364,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
346
364
|
}) => import("./query-builder").QueryBuilder<{
|
|
347
365
|
orgPermissionsGetMaskByNames: string | null;
|
|
348
366
|
}>;
|
|
367
|
+
appPermissionsGetByMask: (args: import("./query").AppPermissionsGetByMaskVariables, options?: {
|
|
368
|
+
select?: Record<string, unknown>;
|
|
369
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
370
|
+
appPermissionsGetByMask: import("./input-types").AppPermissionConnection | null;
|
|
371
|
+
}>;
|
|
372
|
+
orgPermissionsGetByMask: (args: import("./query").OrgPermissionsGetByMaskVariables, options?: {
|
|
373
|
+
select?: Record<string, unknown>;
|
|
374
|
+
}) => import("./query-builder").QueryBuilder<{
|
|
375
|
+
orgPermissionsGetByMask: import("./input-types").OrgPermissionConnection | null;
|
|
376
|
+
}>;
|
|
349
377
|
getAllObjectsFromRoot: (args: import("./query").GetAllObjectsFromRootVariables, options?: {
|
|
350
378
|
select?: Record<string, unknown>;
|
|
351
379
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -361,16 +389,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
361
389
|
} & import("./select-types").StrictSelect<S, import("./input-types").ObjectSelect>) => import("./query-builder").QueryBuilder<{
|
|
362
390
|
getObjectAtPath: import("./select-types").InferSelectResult<import("./input-types").Object, S> | null;
|
|
363
391
|
}>;
|
|
364
|
-
appPermissionsGetByMask: (args: import("./query").AppPermissionsGetByMaskVariables, options?: {
|
|
365
|
-
select?: Record<string, unknown>;
|
|
366
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
367
|
-
appPermissionsGetByMask: import("./input-types").AppPermissionConnection | null;
|
|
368
|
-
}>;
|
|
369
|
-
orgPermissionsGetByMask: (args: import("./query").OrgPermissionsGetByMaskVariables, options?: {
|
|
370
|
-
select?: Record<string, unknown>;
|
|
371
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
372
|
-
orgPermissionsGetByMask: import("./input-types").OrgPermissionConnection | null;
|
|
373
|
-
}>;
|
|
374
392
|
stepsRequired: (args: import("./query").StepsRequiredVariables, options?: {
|
|
375
393
|
select?: Record<string, unknown>;
|
|
376
394
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -588,6 +606,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
588
606
|
} & import("./select-types").StrictSelect<S, import("./input-types").CreateApiKeyPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
589
607
|
createApiKey: import("./select-types").InferSelectResult<import("./input-types").CreateApiKeyPayload, S> | null;
|
|
590
608
|
}>;
|
|
609
|
+
sendVerificationEmail: <S extends import("./input-types").SendVerificationEmailPayloadSelect>(args: import("./mutation").SendVerificationEmailVariables, options: {
|
|
610
|
+
select: S;
|
|
611
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
612
|
+
sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
|
|
613
|
+
}>;
|
|
614
|
+
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
615
|
+
select: S;
|
|
616
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
617
|
+
forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
|
|
618
|
+
}>;
|
|
591
619
|
signUp: <S extends import("./input-types").SignUpPayloadSelect>(args: import("./mutation").SignUpVariables, options: {
|
|
592
620
|
select: S;
|
|
593
621
|
} & import("./select-types").StrictSelect<S, import("./input-types").SignUpPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -608,26 +636,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
608
636
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionTablePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
609
637
|
provisionTable: import("./select-types").InferSelectResult<import("./input-types").ProvisionTablePayload, S> | null;
|
|
610
638
|
}>;
|
|
611
|
-
sendVerificationEmail: <S extends import("./input-types").SendVerificationEmailPayloadSelect>(args: import("./mutation").SendVerificationEmailVariables, options: {
|
|
612
|
-
select: S;
|
|
613
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").SendVerificationEmailPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
614
|
-
sendVerificationEmail: import("./select-types").InferSelectResult<import("./input-types").SendVerificationEmailPayload, S> | null;
|
|
615
|
-
}>;
|
|
616
|
-
forgotPassword: <S extends import("./input-types").ForgotPasswordPayloadSelect>(args: import("./mutation").ForgotPasswordVariables, options: {
|
|
617
|
-
select: S;
|
|
618
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ForgotPasswordPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
619
|
-
forgotPassword: import("./select-types").InferSelectResult<import("./input-types").ForgotPasswordPayload, S> | null;
|
|
620
|
-
}>;
|
|
621
639
|
requestUploadUrl: <S extends import("./input-types").RequestUploadUrlPayloadSelect>(args: import("./mutation").RequestUploadUrlVariables, options: {
|
|
622
640
|
select: S;
|
|
623
641
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestUploadUrlPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
624
642
|
requestUploadUrl: import("./select-types").InferSelectResult<import("./input-types").RequestUploadUrlPayload, S> | null;
|
|
625
643
|
}>;
|
|
626
|
-
confirmUpload: <S extends import("./input-types").ConfirmUploadPayloadSelect>(args: import("./mutation").ConfirmUploadVariables, options: {
|
|
627
|
-
select: S;
|
|
628
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ConfirmUploadPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
629
|
-
confirmUpload: import("./select-types").InferSelectResult<import("./input-types").ConfirmUploadPayload, S> | null;
|
|
630
|
-
}>;
|
|
631
644
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
632
645
|
select: S;
|
|
633
646
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|