@constructive-io/react 0.15.2 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +65 -47
- package/admin/hooks/invalidation.js +143 -95
- package/admin/hooks/mutation-keys.d.ts +130 -96
- package/admin/hooks/mutation-keys.js +78 -60
- package/admin/hooks/mutations/index.d.ts +32 -28
- package/admin/hooks/mutations/index.js +32 -28
- package/admin/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/{auth/hooks/mutations/useConfirmUploadMutation.js → admin/hooks/mutations/useCreateAppLimitEventMutation.js} +14 -6
- package/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitEventMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +22 -18
- package/admin/hooks/queries/index.js +22 -18
- package/admin/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/admin/hooks/queries/useAppLimitEventsQuery.js +38 -0
- package/admin/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgLimitAggregateQuery.js +53 -0
- package/admin/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitAggregatesQuery.js +38 -0
- package/admin/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitEventsQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +154 -112
- package/admin/hooks/query-keys.js +90 -66
- package/admin/orm/index.d.ts +24 -23
- package/admin/orm/index.js +24 -18
- package/admin/orm/input-types.d.ts +1297 -839
- package/admin/orm/models/appLimitEvent.d.ts +32 -0
- package/admin/orm/models/appLimitEvent.js +55 -0
- package/admin/orm/models/index.d.ts +12 -9
- package/admin/orm/models/index.js +25 -19
- package/admin/orm/models/orgLimitAggregate.d.ts +56 -0
- package/admin/orm/models/orgLimitAggregate.js +100 -0
- package/admin/orm/models/orgLimitEvent.d.ts +32 -0
- package/admin/orm/models/orgLimitEvent.js +55 -0
- package/admin/orm/mutation/index.d.ts +1 -15
- package/admin/orm/mutation/index.js +0 -12
- package/admin/schema-types.d.ts +1207 -856
- package/admin/types.d.ts +96 -53
- package/auth/hooks/mutation-keys.d.ts +0 -2
- package/auth/hooks/mutation-keys.js +0 -3
- package/auth/hooks/mutations/index.d.ts +0 -1
- package/auth/hooks/mutations/index.js +0 -1
- package/auth/orm/index.d.ts +0 -5
- package/auth/orm/input-types.d.ts +0 -20
- package/auth/orm/mutation/index.d.ts +1 -15
- package/auth/orm/mutation/index.js +0 -12
- package/auth/schema-types.d.ts +0 -14
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +65 -47
- package/esm/admin/hooks/invalidation.js +144 -96
- package/esm/admin/hooks/mutation-keys.d.ts +130 -96
- package/esm/admin/hooks/mutation-keys.js +77 -59
- package/esm/admin/hooks/mutations/index.d.ts +32 -28
- package/esm/admin/hooks/mutations/index.js +32 -28
- package/esm/admin/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateAppLimitEventMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitEventMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +22 -18
- package/esm/admin/hooks/queries/index.js +22 -18
- package/esm/admin/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useAppLimitEventsQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregateQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregatesQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitEventsQuery.js +32 -0
- package/esm/admin/hooks/query-keys.d.ts +154 -112
- package/esm/admin/hooks/query-keys.js +89 -65
- package/esm/admin/orm/index.d.ts +24 -23
- package/esm/admin/orm/index.js +24 -18
- package/esm/admin/orm/input-types.d.ts +1297 -839
- package/esm/admin/orm/models/appLimitEvent.d.ts +32 -0
- package/esm/admin/orm/models/appLimitEvent.js +51 -0
- package/esm/admin/orm/models/index.d.ts +12 -9
- package/esm/admin/orm/models/index.js +12 -9
- package/esm/admin/orm/models/orgLimitAggregate.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitAggregate.js +96 -0
- package/esm/admin/orm/models/orgLimitEvent.d.ts +32 -0
- package/esm/admin/orm/models/orgLimitEvent.js +51 -0
- package/esm/admin/orm/mutation/index.d.ts +1 -15
- package/esm/admin/orm/mutation/index.js +0 -12
- package/esm/admin/schema-types.d.ts +1207 -856
- package/esm/admin/types.d.ts +96 -53
- package/esm/auth/hooks/mutation-keys.d.ts +0 -2
- package/esm/auth/hooks/mutation-keys.js +0 -3
- package/esm/auth/hooks/mutations/index.d.ts +0 -1
- package/esm/auth/hooks/mutations/index.js +0 -1
- package/esm/auth/orm/index.d.ts +0 -5
- package/esm/auth/orm/input-types.d.ts +0 -20
- package/esm/auth/orm/mutation/index.d.ts +1 -15
- package/esm/auth/orm/mutation/index.js +0 -12
- package/esm/auth/schema-types.d.ts +0 -14
- package/esm/objects/hooks/mutation-keys.d.ts +0 -2
- package/esm/objects/hooks/mutation-keys.js +0 -3
- package/esm/objects/hooks/mutations/index.d.ts +0 -1
- package/esm/objects/hooks/mutations/index.js +0 -1
- package/esm/objects/orm/index.d.ts +0 -5
- package/esm/objects/orm/input-types.d.ts +0 -20
- package/esm/objects/orm/mutation/index.d.ts +1 -15
- package/esm/objects/orm/mutation/index.js +0 -12
- package/esm/objects/schema-types.d.ts +0 -14
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +101 -47
- package/esm/public/hooks/invalidation.js +239 -95
- package/esm/public/hooks/mutation-keys.d.ts +206 -100
- package/esm/public/hooks/mutation-keys.js +125 -65
- package/esm/public/hooks/mutations/index.d.ts +50 -28
- package/esm/public/hooks/mutations/index.js +50 -28
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAppLimitEventMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateBillingModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBillingModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateNodeTypeRegistryMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateNodeTypeRegistryMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitAggregateMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitEventMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreatePlansModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreatePlansModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteBillingModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBillingModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeletePlansModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeletePlansModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateBillingModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBillingModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdatePlansModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdatePlansModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +36 -20
- package/esm/public/hooks/queries/index.js +36 -20
- package/esm/public/hooks/queries/useAgentMessageQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentMessageQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentMessagesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentMessagesQuery.js +32 -0
- package/esm/public/hooks/queries/useAgentTaskQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentTaskQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentTasksQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentTasksQuery.js +32 -0
- package/esm/public/hooks/queries/useAgentThreadQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentThreadQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentThreadsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentThreadsQuery.js +32 -0
- package/esm/public/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAppLimitEventsQuery.js +32 -0
- package/esm/public/hooks/queries/useBillingModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBillingModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useBillingModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBillingModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useNodeTypeRegistriesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useNodeTypeRegistriesQuery.js +32 -0
- package/esm/public/hooks/queries/useNodeTypeRegistryQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useNodeTypeRegistryQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgLimitAggregateQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitAggregatesQuery.js +32 -0
- package/esm/public/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitEventsQuery.js +32 -0
- package/esm/public/hooks/queries/usePlansModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/usePlansModuleQuery.js +47 -0
- package/esm/public/hooks/queries/usePlansModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/usePlansModulesQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +246 -120
- package/esm/public/hooks/query-keys.js +141 -69
- package/esm/public/orm/index.d.ts +56 -43
- package/esm/public/orm/index.js +36 -18
- package/esm/public/orm/input-types.d.ts +2983 -1112
- package/esm/public/orm/input-types.js +9 -0
- package/esm/public/orm/models/agentMessage.d.ts +56 -0
- package/esm/public/orm/models/agentMessage.js +96 -0
- package/esm/public/orm/models/agentTask.d.ts +56 -0
- package/esm/public/orm/models/agentTask.js +96 -0
- package/esm/public/orm/models/agentThread.d.ts +56 -0
- package/esm/public/orm/models/agentThread.js +96 -0
- package/esm/public/orm/models/appLimitEvent.d.ts +32 -0
- package/esm/public/orm/models/appLimitEvent.js +51 -0
- package/esm/public/orm/models/billingModule.d.ts +56 -0
- package/esm/public/orm/models/billingModule.js +96 -0
- package/esm/public/orm/models/index.d.ts +18 -9
- package/esm/public/orm/models/index.js +18 -9
- package/esm/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/esm/public/orm/models/nodeTypeRegistry.js +96 -0
- package/esm/public/orm/models/orgLimitAggregate.d.ts +56 -0
- package/esm/public/orm/models/orgLimitAggregate.js +96 -0
- package/esm/public/orm/models/orgLimitEvent.d.ts +32 -0
- package/esm/public/orm/models/orgLimitEvent.js +51 -0
- package/esm/public/orm/models/plansModule.d.ts +56 -0
- package/esm/public/orm/models/plansModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +17 -31
- package/esm/public/orm/mutation/index.js +24 -36
- package/esm/public/orm/query/index.d.ts +28 -28
- package/esm/public/orm/query/index.js +48 -48
- package/esm/public/schema-types.d.ts +3948 -2833
- package/esm/public/types.d.ts +194 -77
- package/objects/hooks/mutation-keys.d.ts +0 -2
- package/objects/hooks/mutation-keys.js +0 -3
- package/objects/hooks/mutations/index.d.ts +0 -1
- package/objects/hooks/mutations/index.js +0 -1
- package/objects/orm/index.d.ts +0 -5
- package/objects/orm/input-types.d.ts +0 -20
- package/objects/orm/mutation/index.d.ts +1 -15
- package/objects/orm/mutation/index.js +0 -12
- package/objects/schema-types.d.ts +0 -14
- package/package.json +4 -4
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +101 -47
- package/public/hooks/invalidation.js +238 -94
- package/public/hooks/mutation-keys.d.ts +206 -100
- package/public/hooks/mutation-keys.js +128 -68
- package/public/hooks/mutations/index.d.ts +50 -28
- package/public/hooks/mutations/index.js +50 -28
- package/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentMessageMutation.js +34 -0
- package/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentTaskMutation.js +34 -0
- package/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentThreadMutation.js +34 -0
- package/public/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAppLimitEventMutation.js +34 -0
- package/public/hooks/mutations/useCreateBillingModuleMutation.d.ts +34 -0
- package/{admin/hooks/mutations/useConfirmUploadMutation.js → public/hooks/mutations/useCreateBillingModuleMutation.js} +14 -6
- package/public/hooks/mutations/useCreateNodeTypeRegistryMutation.d.ts +34 -0
- package/public/hooks/mutations/{useConfirmUploadMutation.js → useCreateNodeTypeRegistryMutation.js} +14 -6
- package/public/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitAggregateMutation.js +34 -0
- package/public/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitEventMutation.js +34 -0
- package/public/hooks/mutations/useCreatePlansModuleMutation.d.ts +34 -0
- package/{objects/hooks/mutations/useConfirmUploadMutation.js → public/hooks/mutations/useCreatePlansModuleMutation.js} +14 -6
- package/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentMessageMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentTaskMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentThreadMutation.js +39 -0
- package/public/hooks/mutations/useDeleteBillingModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBillingModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.js +39 -0
- package/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +39 -0
- package/public/hooks/mutations/useDeletePlansModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeletePlansModuleMutation.js +39 -0
- package/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentMessageMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentTaskMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentThreadMutation.js +40 -0
- package/public/hooks/mutations/useUpdateBillingModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBillingModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.js +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +40 -0
- package/public/hooks/mutations/useUpdatePlansModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdatePlansModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +36 -20
- package/public/hooks/queries/index.js +36 -20
- package/public/hooks/queries/useAgentMessageQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentMessageQuery.js +53 -0
- package/public/hooks/queries/useAgentMessagesQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentMessagesQuery.js +38 -0
- package/public/hooks/queries/useAgentTaskQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentTaskQuery.js +53 -0
- package/public/hooks/queries/useAgentTasksQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentTasksQuery.js +38 -0
- package/public/hooks/queries/useAgentThreadQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentThreadQuery.js +53 -0
- package/public/hooks/queries/useAgentThreadsQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentThreadsQuery.js +38 -0
- package/public/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/public/hooks/queries/useAppLimitEventsQuery.js +38 -0
- package/public/hooks/queries/useBillingModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useBillingModuleQuery.js +53 -0
- package/public/hooks/queries/useBillingModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useBillingModulesQuery.js +38 -0
- package/public/hooks/queries/useNodeTypeRegistriesQuery.d.ts +69 -0
- package/public/hooks/queries/useNodeTypeRegistriesQuery.js +38 -0
- package/public/hooks/queries/useNodeTypeRegistryQuery.d.ts +65 -0
- package/public/hooks/queries/useNodeTypeRegistryQuery.js +53 -0
- package/public/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/public/hooks/queries/useOrgLimitAggregateQuery.js +53 -0
- package/public/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitAggregatesQuery.js +38 -0
- package/public/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitEventsQuery.js +38 -0
- package/public/hooks/queries/usePlansModuleQuery.d.ts +65 -0
- package/public/hooks/queries/usePlansModuleQuery.js +53 -0
- package/public/hooks/queries/usePlansModulesQuery.d.ts +69 -0
- package/public/hooks/queries/usePlansModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +246 -120
- package/public/hooks/query-keys.js +144 -72
- package/public/orm/index.d.ts +56 -43
- package/public/orm/index.js +36 -18
- package/public/orm/input-types.d.ts +2983 -1112
- package/public/orm/input-types.js +9 -0
- package/public/orm/models/agentMessage.d.ts +56 -0
- package/public/orm/models/agentMessage.js +100 -0
- package/public/orm/models/agentTask.d.ts +56 -0
- package/public/orm/models/agentTask.js +100 -0
- package/public/orm/models/agentThread.d.ts +56 -0
- package/public/orm/models/agentThread.js +100 -0
- package/public/orm/models/appLimitEvent.d.ts +32 -0
- package/public/orm/models/appLimitEvent.js +55 -0
- package/public/orm/models/billingModule.d.ts +56 -0
- package/public/orm/models/billingModule.js +100 -0
- package/public/orm/models/index.d.ts +18 -9
- package/public/orm/models/index.js +39 -21
- package/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/public/orm/models/nodeTypeRegistry.js +100 -0
- package/public/orm/models/orgLimitAggregate.d.ts +56 -0
- package/public/orm/models/orgLimitAggregate.js +100 -0
- package/public/orm/models/orgLimitEvent.d.ts +32 -0
- package/public/orm/models/orgLimitEvent.js +55 -0
- package/public/orm/models/plansModule.d.ts +56 -0
- package/public/orm/models/plansModule.js +100 -0
- package/public/orm/mutation/index.d.ts +17 -31
- package/public/orm/mutation/index.js +24 -36
- package/public/orm/query/index.d.ts +28 -28
- package/public/orm/query/index.js +48 -48
- package/public/schema-types.d.ts +3948 -2833
- package/public/types.d.ts +194 -77
- package/admin/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/auth/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/auth/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/objects/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/objects/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/public/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/objects/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/public/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
|
@@ -73,19 +73,19 @@ export declare const appOwnerGrantKeys: {
|
|
|
73
73
|
/** Detail query keys */ readonly details: () => readonly ["appownergrant", "detail"];
|
|
74
74
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appownergrant", "detail", string | number];
|
|
75
75
|
};
|
|
76
|
-
export declare const
|
|
77
|
-
/** All
|
|
78
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
79
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
80
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
81
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
76
|
+
export declare const appAchievementKeys: {
|
|
77
|
+
/** All appAchievement queries */ readonly all: readonly ["appachievement"];
|
|
78
|
+
/** List query keys */ readonly lists: () => readonly ["appachievement", "list"];
|
|
79
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appachievement", "list", object];
|
|
80
|
+
/** Detail query keys */ readonly details: () => readonly ["appachievement", "detail"];
|
|
81
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appachievement", "detail", string | number];
|
|
82
82
|
};
|
|
83
|
-
export declare const
|
|
84
|
-
/** All
|
|
85
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
86
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
87
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
88
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
83
|
+
export declare const appStepKeys: {
|
|
84
|
+
/** All appStep queries */ readonly all: readonly ["appstep"];
|
|
85
|
+
/** List query keys */ readonly lists: () => readonly ["appstep", "list"];
|
|
86
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appstep", "list", object];
|
|
87
|
+
/** Detail query keys */ readonly details: () => readonly ["appstep", "detail"];
|
|
88
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appstep", "detail", string | number];
|
|
89
89
|
};
|
|
90
90
|
export declare const orgAdminGrantKeys: {
|
|
91
91
|
/** All orgAdminGrant queries */ readonly all: readonly ["orgadmingrant"];
|
|
@@ -101,33 +101,26 @@ export declare const orgOwnerGrantKeys: {
|
|
|
101
101
|
/** Detail query keys */ readonly details: () => readonly ["orgownergrant", "detail"];
|
|
102
102
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgownergrant", "detail", string | number];
|
|
103
103
|
};
|
|
104
|
-
export declare const
|
|
105
|
-
/** All
|
|
106
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
107
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
108
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
109
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
110
|
-
};
|
|
111
|
-
export declare const appAchievementKeys: {
|
|
112
|
-
/** All appAchievement queries */ readonly all: readonly ["appachievement"];
|
|
113
|
-
/** List query keys */ readonly lists: () => readonly ["appachievement", "list"];
|
|
114
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appachievement", "list", object];
|
|
115
|
-
/** Detail query keys */ readonly details: () => readonly ["appachievement", "detail"];
|
|
116
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appachievement", "detail", string | number];
|
|
104
|
+
export declare const membershipTypeKeys: {
|
|
105
|
+
/** All membershipType queries */ readonly all: readonly ["membershiptype"];
|
|
106
|
+
/** List query keys */ readonly lists: () => readonly ["membershiptype", "list"];
|
|
107
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["membershiptype", "list", object];
|
|
108
|
+
/** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
|
|
109
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
|
|
117
110
|
};
|
|
118
|
-
export declare const
|
|
119
|
-
/** All
|
|
120
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
121
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
122
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
123
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
111
|
+
export declare const appLimitDefaultKeys: {
|
|
112
|
+
/** All appLimitDefault queries */ readonly all: readonly ["applimitdefault"];
|
|
113
|
+
/** List query keys */ readonly lists: () => readonly ["applimitdefault", "list"];
|
|
114
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitdefault", "list", object];
|
|
115
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitdefault", "detail"];
|
|
116
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitdefault", "detail", string | number];
|
|
124
117
|
};
|
|
125
|
-
export declare const
|
|
126
|
-
/** All
|
|
127
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
128
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
129
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
130
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
118
|
+
export declare const orgLimitDefaultKeys: {
|
|
119
|
+
/** All orgLimitDefault queries */ readonly all: readonly ["orglimitdefault"];
|
|
120
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitdefault", "list"];
|
|
121
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitdefault", "list", object];
|
|
122
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitdefault", "detail"];
|
|
123
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitdefault", "detail", string | number];
|
|
131
124
|
};
|
|
132
125
|
export declare const orgChartEdgeGrantKeys: {
|
|
133
126
|
/** All orgChartEdgeGrant queries */ readonly all: readonly ["orgchartedgegrant"];
|
|
@@ -136,19 +129,12 @@ export declare const orgChartEdgeGrantKeys: {
|
|
|
136
129
|
/** Detail query keys */ readonly details: () => readonly ["orgchartedgegrant", "detail"];
|
|
137
130
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgchartedgegrant", "detail", string | number];
|
|
138
131
|
};
|
|
139
|
-
export declare const
|
|
140
|
-
/** All
|
|
141
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
142
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
143
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
144
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
145
|
-
};
|
|
146
|
-
export declare const membershipTypeKeys: {
|
|
147
|
-
/** All membershipType queries */ readonly all: readonly ["membershiptype"];
|
|
148
|
-
/** List query keys */ readonly lists: () => readonly ["membershiptype", "list"];
|
|
149
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["membershiptype", "list", object];
|
|
150
|
-
/** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
|
|
151
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
|
|
132
|
+
export declare const appClaimedInviteKeys: {
|
|
133
|
+
/** All appClaimedInvite queries */ readonly all: readonly ["appclaimedinvite"];
|
|
134
|
+
/** List query keys */ readonly lists: () => readonly ["appclaimedinvite", "list"];
|
|
135
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appclaimedinvite", "list", object];
|
|
136
|
+
/** Detail query keys */ readonly details: () => readonly ["appclaimedinvite", "detail"];
|
|
137
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appclaimedinvite", "detail", string | number];
|
|
152
138
|
};
|
|
153
139
|
export declare const appGrantKeys: {
|
|
154
140
|
/** All appGrant queries */ readonly all: readonly ["appgrant"];
|
|
@@ -178,6 +164,20 @@ export declare const orgClaimedInviteKeys: {
|
|
|
178
164
|
/** Detail query keys */ readonly details: () => readonly ["orgclaimedinvite", "detail"];
|
|
179
165
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgclaimedinvite", "detail", string | number];
|
|
180
166
|
};
|
|
167
|
+
export declare const appLimitEventKeys: {
|
|
168
|
+
/** All appLimitEvent queries */ readonly all: readonly ["applimitevent"];
|
|
169
|
+
/** List query keys */ readonly lists: () => readonly ["applimitevent", "list"];
|
|
170
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitevent", "list", object];
|
|
171
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitevent", "detail"];
|
|
172
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitevent", "detail", string | number];
|
|
173
|
+
};
|
|
174
|
+
export declare const orgLimitEventKeys: {
|
|
175
|
+
/** All orgLimitEvent queries */ readonly all: readonly ["orglimitevent"];
|
|
176
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitevent", "list"];
|
|
177
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitevent", "list", object];
|
|
178
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitevent", "detail"];
|
|
179
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitevent", "detail", string | number];
|
|
180
|
+
};
|
|
181
181
|
export declare const orgGrantKeys: {
|
|
182
182
|
/** All orgGrant queries */ readonly all: readonly ["orggrant"];
|
|
183
183
|
/** List query keys */ readonly lists: () => readonly ["orggrant", "list"];
|
|
@@ -192,6 +192,20 @@ export declare const orgChartEdgeKeys: {
|
|
|
192
192
|
/** Detail query keys */ readonly details: () => readonly ["orgchartedge", "detail"];
|
|
193
193
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgchartedge", "detail", string | number];
|
|
194
194
|
};
|
|
195
|
+
export declare const appLimitKeys: {
|
|
196
|
+
/** All appLimit queries */ readonly all: readonly ["applimit"];
|
|
197
|
+
/** List query keys */ readonly lists: () => readonly ["applimit", "list"];
|
|
198
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimit", "list", object];
|
|
199
|
+
/** Detail query keys */ readonly details: () => readonly ["applimit", "detail"];
|
|
200
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimit", "detail", string | number];
|
|
201
|
+
};
|
|
202
|
+
export declare const orgLimitAggregateKeys: {
|
|
203
|
+
/** All orgLimitAggregate queries */ readonly all: readonly ["orglimitaggregate"];
|
|
204
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitaggregate", "list"];
|
|
205
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitaggregate", "list", object];
|
|
206
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitaggregate", "detail"];
|
|
207
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitaggregate", "detail", string | number];
|
|
208
|
+
};
|
|
195
209
|
export declare const orgMemberProfileKeys: {
|
|
196
210
|
/** All orgMemberProfile queries */ readonly all: readonly ["orgmemberprofile"];
|
|
197
211
|
/** List query keys */ readonly lists: () => readonly ["orgmemberprofile", "list"];
|
|
@@ -199,12 +213,12 @@ export declare const orgMemberProfileKeys: {
|
|
|
199
213
|
/** Detail query keys */ readonly details: () => readonly ["orgmemberprofile", "detail"];
|
|
200
214
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmemberprofile", "detail", string | number];
|
|
201
215
|
};
|
|
202
|
-
export declare const
|
|
203
|
-
/** All
|
|
204
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
205
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
206
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
207
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
216
|
+
export declare const orgLimitKeys: {
|
|
217
|
+
/** All orgLimit queries */ readonly all: readonly ["orglimit"];
|
|
218
|
+
/** List query keys */ readonly lists: () => readonly ["orglimit", "list"];
|
|
219
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimit", "list", object];
|
|
220
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimit", "detail"];
|
|
221
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimit", "detail", string | number];
|
|
208
222
|
};
|
|
209
223
|
export declare const appLevelKeys: {
|
|
210
224
|
/** All appLevel queries */ readonly all: readonly ["applevel"];
|
|
@@ -220,6 +234,13 @@ export declare const appInviteKeys: {
|
|
|
220
234
|
/** Detail query keys */ readonly details: () => readonly ["appinvite", "detail"];
|
|
221
235
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appinvite", "detail", string | number];
|
|
222
236
|
};
|
|
237
|
+
export declare const orgMembershipSettingKeys: {
|
|
238
|
+
/** All orgMembershipSetting queries */ readonly all: readonly ["orgmembershipsetting"];
|
|
239
|
+
/** List query keys */ readonly lists: () => readonly ["orgmembershipsetting", "list"];
|
|
240
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipsetting", "list", object];
|
|
241
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmembershipsetting", "detail"];
|
|
242
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipsetting", "detail", string | number];
|
|
243
|
+
};
|
|
223
244
|
export declare const orgInviteKeys: {
|
|
224
245
|
/** All orgInvite queries */ readonly all: readonly ["orginvite"];
|
|
225
246
|
/** List query keys */ readonly lists: () => readonly ["orginvite", "list"];
|
|
@@ -347,19 +368,19 @@ export declare const queryKeys: {
|
|
|
347
368
|
/** Detail query keys */ readonly details: () => readonly ["appownergrant", "detail"];
|
|
348
369
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appownergrant", "detail", string | number];
|
|
349
370
|
};
|
|
350
|
-
readonly
|
|
351
|
-
/** All
|
|
352
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
353
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
354
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
355
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
371
|
+
readonly appAchievement: {
|
|
372
|
+
/** All appAchievement queries */ readonly all: readonly ["appachievement"];
|
|
373
|
+
/** List query keys */ readonly lists: () => readonly ["appachievement", "list"];
|
|
374
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appachievement", "list", object];
|
|
375
|
+
/** Detail query keys */ readonly details: () => readonly ["appachievement", "detail"];
|
|
376
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appachievement", "detail", string | number];
|
|
356
377
|
};
|
|
357
|
-
readonly
|
|
358
|
-
/** All
|
|
359
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
360
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
361
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
362
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
378
|
+
readonly appStep: {
|
|
379
|
+
/** All appStep queries */ readonly all: readonly ["appstep"];
|
|
380
|
+
/** List query keys */ readonly lists: () => readonly ["appstep", "list"];
|
|
381
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appstep", "list", object];
|
|
382
|
+
/** Detail query keys */ readonly details: () => readonly ["appstep", "detail"];
|
|
383
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appstep", "detail", string | number];
|
|
363
384
|
};
|
|
364
385
|
readonly orgAdminGrant: {
|
|
365
386
|
/** All orgAdminGrant queries */ readonly all: readonly ["orgadmingrant"];
|
|
@@ -375,33 +396,26 @@ export declare const queryKeys: {
|
|
|
375
396
|
/** Detail query keys */ readonly details: () => readonly ["orgownergrant", "detail"];
|
|
376
397
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgownergrant", "detail", string | number];
|
|
377
398
|
};
|
|
378
|
-
readonly
|
|
379
|
-
/** All
|
|
380
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
381
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
382
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
383
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
384
|
-
};
|
|
385
|
-
readonly appAchievement: {
|
|
386
|
-
/** All appAchievement queries */ readonly all: readonly ["appachievement"];
|
|
387
|
-
/** List query keys */ readonly lists: () => readonly ["appachievement", "list"];
|
|
388
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appachievement", "list", object];
|
|
389
|
-
/** Detail query keys */ readonly details: () => readonly ["appachievement", "detail"];
|
|
390
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appachievement", "detail", string | number];
|
|
399
|
+
readonly membershipType: {
|
|
400
|
+
/** All membershipType queries */ readonly all: readonly ["membershiptype"];
|
|
401
|
+
/** List query keys */ readonly lists: () => readonly ["membershiptype", "list"];
|
|
402
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["membershiptype", "list", object];
|
|
403
|
+
/** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
|
|
404
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
|
|
391
405
|
};
|
|
392
|
-
readonly
|
|
393
|
-
/** All
|
|
394
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
395
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
396
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
397
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
406
|
+
readonly appLimitDefault: {
|
|
407
|
+
/** All appLimitDefault queries */ readonly all: readonly ["applimitdefault"];
|
|
408
|
+
/** List query keys */ readonly lists: () => readonly ["applimitdefault", "list"];
|
|
409
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitdefault", "list", object];
|
|
410
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitdefault", "detail"];
|
|
411
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitdefault", "detail", string | number];
|
|
398
412
|
};
|
|
399
|
-
readonly
|
|
400
|
-
/** All
|
|
401
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
402
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
403
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
404
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
413
|
+
readonly orgLimitDefault: {
|
|
414
|
+
/** All orgLimitDefault queries */ readonly all: readonly ["orglimitdefault"];
|
|
415
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitdefault", "list"];
|
|
416
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitdefault", "list", object];
|
|
417
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitdefault", "detail"];
|
|
418
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitdefault", "detail", string | number];
|
|
405
419
|
};
|
|
406
420
|
readonly orgChartEdgeGrant: {
|
|
407
421
|
/** All orgChartEdgeGrant queries */ readonly all: readonly ["orgchartedgegrant"];
|
|
@@ -410,19 +424,12 @@ export declare const queryKeys: {
|
|
|
410
424
|
/** Detail query keys */ readonly details: () => readonly ["orgchartedgegrant", "detail"];
|
|
411
425
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgchartedgegrant", "detail", string | number];
|
|
412
426
|
};
|
|
413
|
-
readonly
|
|
414
|
-
/** All
|
|
415
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
416
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
417
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
418
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
419
|
-
};
|
|
420
|
-
readonly membershipType: {
|
|
421
|
-
/** All membershipType queries */ readonly all: readonly ["membershiptype"];
|
|
422
|
-
/** List query keys */ readonly lists: () => readonly ["membershiptype", "list"];
|
|
423
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["membershiptype", "list", object];
|
|
424
|
-
/** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
|
|
425
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
|
|
427
|
+
readonly appClaimedInvite: {
|
|
428
|
+
/** All appClaimedInvite queries */ readonly all: readonly ["appclaimedinvite"];
|
|
429
|
+
/** List query keys */ readonly lists: () => readonly ["appclaimedinvite", "list"];
|
|
430
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appclaimedinvite", "list", object];
|
|
431
|
+
/** Detail query keys */ readonly details: () => readonly ["appclaimedinvite", "detail"];
|
|
432
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appclaimedinvite", "detail", string | number];
|
|
426
433
|
};
|
|
427
434
|
readonly appGrant: {
|
|
428
435
|
/** All appGrant queries */ readonly all: readonly ["appgrant"];
|
|
@@ -452,6 +459,20 @@ export declare const queryKeys: {
|
|
|
452
459
|
/** Detail query keys */ readonly details: () => readonly ["orgclaimedinvite", "detail"];
|
|
453
460
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgclaimedinvite", "detail", string | number];
|
|
454
461
|
};
|
|
462
|
+
readonly appLimitEvent: {
|
|
463
|
+
/** All appLimitEvent queries */ readonly all: readonly ["applimitevent"];
|
|
464
|
+
/** List query keys */ readonly lists: () => readonly ["applimitevent", "list"];
|
|
465
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitevent", "list", object];
|
|
466
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitevent", "detail"];
|
|
467
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitevent", "detail", string | number];
|
|
468
|
+
};
|
|
469
|
+
readonly orgLimitEvent: {
|
|
470
|
+
/** All orgLimitEvent queries */ readonly all: readonly ["orglimitevent"];
|
|
471
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitevent", "list"];
|
|
472
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitevent", "list", object];
|
|
473
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitevent", "detail"];
|
|
474
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitevent", "detail", string | number];
|
|
475
|
+
};
|
|
455
476
|
readonly orgGrant: {
|
|
456
477
|
/** All orgGrant queries */ readonly all: readonly ["orggrant"];
|
|
457
478
|
/** List query keys */ readonly lists: () => readonly ["orggrant", "list"];
|
|
@@ -466,6 +487,20 @@ export declare const queryKeys: {
|
|
|
466
487
|
/** Detail query keys */ readonly details: () => readonly ["orgchartedge", "detail"];
|
|
467
488
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgchartedge", "detail", string | number];
|
|
468
489
|
};
|
|
490
|
+
readonly appLimit: {
|
|
491
|
+
/** All appLimit queries */ readonly all: readonly ["applimit"];
|
|
492
|
+
/** List query keys */ readonly lists: () => readonly ["applimit", "list"];
|
|
493
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimit", "list", object];
|
|
494
|
+
/** Detail query keys */ readonly details: () => readonly ["applimit", "detail"];
|
|
495
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimit", "detail", string | number];
|
|
496
|
+
};
|
|
497
|
+
readonly orgLimitAggregate: {
|
|
498
|
+
/** All orgLimitAggregate queries */ readonly all: readonly ["orglimitaggregate"];
|
|
499
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitaggregate", "list"];
|
|
500
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitaggregate", "list", object];
|
|
501
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitaggregate", "detail"];
|
|
502
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitaggregate", "detail", string | number];
|
|
503
|
+
};
|
|
469
504
|
readonly orgMemberProfile: {
|
|
470
505
|
/** All orgMemberProfile queries */ readonly all: readonly ["orgmemberprofile"];
|
|
471
506
|
/** List query keys */ readonly lists: () => readonly ["orgmemberprofile", "list"];
|
|
@@ -473,12 +508,12 @@ export declare const queryKeys: {
|
|
|
473
508
|
/** Detail query keys */ readonly details: () => readonly ["orgmemberprofile", "detail"];
|
|
474
509
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmemberprofile", "detail", string | number];
|
|
475
510
|
};
|
|
476
|
-
readonly
|
|
477
|
-
/** All
|
|
478
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
479
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
480
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
481
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
511
|
+
readonly orgLimit: {
|
|
512
|
+
/** All orgLimit queries */ readonly all: readonly ["orglimit"];
|
|
513
|
+
/** List query keys */ readonly lists: () => readonly ["orglimit", "list"];
|
|
514
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimit", "list", object];
|
|
515
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimit", "detail"];
|
|
516
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimit", "detail", string | number];
|
|
482
517
|
};
|
|
483
518
|
readonly appLevel: {
|
|
484
519
|
/** All appLevel queries */ readonly all: readonly ["applevel"];
|
|
@@ -494,6 +529,13 @@ export declare const queryKeys: {
|
|
|
494
529
|
/** Detail query keys */ readonly details: () => readonly ["appinvite", "detail"];
|
|
495
530
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appinvite", "detail", string | number];
|
|
496
531
|
};
|
|
532
|
+
readonly orgMembershipSetting: {
|
|
533
|
+
/** All orgMembershipSetting queries */ readonly all: readonly ["orgmembershipsetting"];
|
|
534
|
+
/** List query keys */ readonly lists: () => readonly ["orgmembershipsetting", "list"];
|
|
535
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipsetting", "list", object];
|
|
536
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmembershipsetting", "detail"];
|
|
537
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipsetting", "detail", string | number];
|
|
538
|
+
};
|
|
497
539
|
readonly orgInvite: {
|
|
498
540
|
/** All orgInvite queries */ readonly all: readonly ["orginvite"];
|
|
499
541
|
/** List query keys */ readonly lists: () => readonly ["orginvite", "list"];
|