@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
|
@@ -21,12 +21,6 @@ export declare const getAllRecordMutationKeys: {
|
|
|
21
21
|
/** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
|
|
22
22
|
/** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
|
|
23
23
|
};
|
|
24
|
-
export declare const objectMutationKeys: {
|
|
25
|
-
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
26
|
-
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
27
|
-
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
28
|
-
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
29
|
-
};
|
|
30
24
|
export declare const appPermissionMutationKeys: {
|
|
31
25
|
/** All appPermission mutation keys */ readonly all: readonly ["mutation", "apppermission"];
|
|
32
26
|
/** Create appPermission mutation key */ readonly create: () => readonly ["mutation", "apppermission", "create"];
|
|
@@ -39,6 +33,12 @@ export declare const orgPermissionMutationKeys: {
|
|
|
39
33
|
/** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
|
|
40
34
|
/** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
|
|
41
35
|
};
|
|
36
|
+
export declare const objectMutationKeys: {
|
|
37
|
+
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
38
|
+
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
39
|
+
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
40
|
+
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
41
|
+
};
|
|
42
42
|
export declare const appLevelRequirementMutationKeys: {
|
|
43
43
|
/** All appLevelRequirement mutation keys */ readonly all: readonly ["mutation", "applevelrequirement"];
|
|
44
44
|
/** Create appLevelRequirement mutation key */ readonly create: () => readonly ["mutation", "applevelrequirement", "create"];
|
|
@@ -519,6 +519,12 @@ export declare const orgLimitMutationKeys: {
|
|
|
519
519
|
/** Update orgLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimit", "update", string | number];
|
|
520
520
|
/** Delete orgLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimit", "delete", string | number];
|
|
521
521
|
};
|
|
522
|
+
export declare const orgLimitAggregateMutationKeys: {
|
|
523
|
+
/** All orgLimitAggregate mutation keys */ readonly all: readonly ["mutation", "orglimitaggregate"];
|
|
524
|
+
/** Create orgLimitAggregate mutation key */ readonly create: () => readonly ["mutation", "orglimitaggregate", "create"];
|
|
525
|
+
/** Update orgLimitAggregate mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitaggregate", "update", string | number];
|
|
526
|
+
/** Delete orgLimitAggregate mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitaggregate", "delete", string | number];
|
|
527
|
+
};
|
|
522
528
|
export declare const appStepMutationKeys: {
|
|
523
529
|
/** All appStep mutation keys */ readonly all: readonly ["mutation", "appstep"];
|
|
524
530
|
/** Create appStep mutation key */ readonly create: () => readonly ["mutation", "appstep", "create"];
|
|
@@ -591,11 +597,29 @@ export declare const auditLogMutationKeys: {
|
|
|
591
597
|
/** Update auditLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "auditlog", "update", string | number];
|
|
592
598
|
/** Delete auditLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "auditlog", "delete", string | number];
|
|
593
599
|
};
|
|
594
|
-
export declare const
|
|
595
|
-
/** All
|
|
596
|
-
/** Create
|
|
597
|
-
/** Update
|
|
598
|
-
/** Delete
|
|
600
|
+
export declare const agentThreadMutationKeys: {
|
|
601
|
+
/** All agentThread mutation keys */ readonly all: readonly ["mutation", "agentthread"];
|
|
602
|
+
/** Create agentThread mutation key */ readonly create: () => readonly ["mutation", "agentthread", "create"];
|
|
603
|
+
/** Update agentThread mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentthread", "update", string | number];
|
|
604
|
+
/** Delete agentThread mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentthread", "delete", string | number];
|
|
605
|
+
};
|
|
606
|
+
export declare const agentMessageMutationKeys: {
|
|
607
|
+
/** All agentMessage mutation keys */ readonly all: readonly ["mutation", "agentmessage"];
|
|
608
|
+
/** Create agentMessage mutation key */ readonly create: () => readonly ["mutation", "agentmessage", "create"];
|
|
609
|
+
/** Update agentMessage mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentmessage", "update", string | number];
|
|
610
|
+
/** Delete agentMessage mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentmessage", "delete", string | number];
|
|
611
|
+
};
|
|
612
|
+
export declare const agentTaskMutationKeys: {
|
|
613
|
+
/** All agentTask mutation keys */ readonly all: readonly ["mutation", "agenttask"];
|
|
614
|
+
/** Create agentTask mutation key */ readonly create: () => readonly ["mutation", "agenttask", "create"];
|
|
615
|
+
/** Update agentTask mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agenttask", "update", string | number];
|
|
616
|
+
/** Delete agentTask mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agenttask", "delete", string | number];
|
|
617
|
+
};
|
|
618
|
+
export declare const roleTypeMutationKeys: {
|
|
619
|
+
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
620
|
+
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
621
|
+
/** Update roleType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "roletype", "update", string | number];
|
|
622
|
+
/** Delete roleType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "roletype", "delete", string | number];
|
|
599
623
|
};
|
|
600
624
|
export declare const identityProviderMutationKeys: {
|
|
601
625
|
/** All identityProvider mutation keys */ readonly all: readonly ["mutation", "identityprovider"];
|
|
@@ -615,11 +639,17 @@ export declare const storeMutationKeys: {
|
|
|
615
639
|
/** Update store mutation key */ readonly update: (id: string | number) => readonly ["mutation", "store", "update", string | number];
|
|
616
640
|
/** Delete store mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "store", "delete", string | number];
|
|
617
641
|
};
|
|
618
|
-
export declare const
|
|
619
|
-
/** All
|
|
620
|
-
/** Create
|
|
621
|
-
/** Update
|
|
622
|
-
/** Delete
|
|
642
|
+
export declare const appPermissionDefaultMutationKeys: {
|
|
643
|
+
/** All appPermissionDefault mutation keys */ readonly all: readonly ["mutation", "apppermissiondefault"];
|
|
644
|
+
/** Create appPermissionDefault mutation key */ readonly create: () => readonly ["mutation", "apppermissiondefault", "create"];
|
|
645
|
+
/** Update appPermissionDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "apppermissiondefault", "update", string | number];
|
|
646
|
+
/** Delete appPermissionDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "apppermissiondefault", "delete", string | number];
|
|
647
|
+
};
|
|
648
|
+
export declare const membershipTypeMutationKeys: {
|
|
649
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
650
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
651
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
652
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
623
653
|
};
|
|
624
654
|
export declare const migrateFileMutationKeys: {
|
|
625
655
|
/** All migrateFile mutation keys */ readonly all: readonly ["mutation", "migratefile"];
|
|
@@ -627,6 +657,18 @@ export declare const migrateFileMutationKeys: {
|
|
|
627
657
|
/** Update migrateFile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "migratefile", "update", string | number];
|
|
628
658
|
/** Delete migrateFile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "migratefile", "delete", string | number];
|
|
629
659
|
};
|
|
660
|
+
export declare const devicesModuleMutationKeys: {
|
|
661
|
+
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
662
|
+
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
663
|
+
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
664
|
+
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
665
|
+
};
|
|
666
|
+
export declare const nodeTypeRegistryMutationKeys: {
|
|
667
|
+
/** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
|
|
668
|
+
/** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
|
|
669
|
+
/** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
|
|
670
|
+
/** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
|
|
671
|
+
};
|
|
630
672
|
export declare const appLimitDefaultMutationKeys: {
|
|
631
673
|
/** All appLimitDefault mutation keys */ readonly all: readonly ["mutation", "applimitdefault"];
|
|
632
674
|
/** Create appLimitDefault mutation key */ readonly create: () => readonly ["mutation", "applimitdefault", "create"];
|
|
@@ -639,18 +681,24 @@ export declare const orgLimitDefaultMutationKeys: {
|
|
|
639
681
|
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
640
682
|
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
641
683
|
};
|
|
642
|
-
export declare const devicesModuleMutationKeys: {
|
|
643
|
-
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
644
|
-
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
645
|
-
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
646
|
-
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
647
|
-
};
|
|
648
684
|
export declare const userConnectedAccountMutationKeys: {
|
|
649
685
|
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
650
686
|
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
651
687
|
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
652
688
|
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
653
689
|
};
|
|
690
|
+
export declare const commitMutationKeys: {
|
|
691
|
+
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
692
|
+
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
693
|
+
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
694
|
+
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
695
|
+
};
|
|
696
|
+
export declare const rateLimitsModuleMutationKeys: {
|
|
697
|
+
/** All rateLimitsModule mutation keys */ readonly all: readonly ["mutation", "ratelimitsmodule"];
|
|
698
|
+
/** Create rateLimitsModule mutation key */ readonly create: () => readonly ["mutation", "ratelimitsmodule", "create"];
|
|
699
|
+
/** Update rateLimitsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "update", string | number];
|
|
700
|
+
/** Delete rateLimitsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "delete", string | number];
|
|
701
|
+
};
|
|
654
702
|
export declare const appMembershipDefaultMutationKeys: {
|
|
655
703
|
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
656
704
|
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
@@ -663,23 +711,23 @@ export declare const orgMembershipDefaultMutationKeys: {
|
|
|
663
711
|
/** Update orgMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "update", string | number];
|
|
664
712
|
/** Delete orgMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "delete", string | number];
|
|
665
713
|
};
|
|
666
|
-
export declare const
|
|
667
|
-
/** All
|
|
668
|
-
/** Create
|
|
669
|
-
/** Update
|
|
670
|
-
/** Delete
|
|
714
|
+
export declare const appLimitEventMutationKeys: {
|
|
715
|
+
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
716
|
+
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
717
|
+
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
718
|
+
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
671
719
|
};
|
|
672
|
-
export declare const
|
|
673
|
-
/** All
|
|
674
|
-
/** Create
|
|
675
|
-
/** Update
|
|
676
|
-
/** Delete
|
|
720
|
+
export declare const orgLimitEventMutationKeys: {
|
|
721
|
+
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
722
|
+
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
723
|
+
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
724
|
+
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
677
725
|
};
|
|
678
|
-
export declare const
|
|
679
|
-
/** All
|
|
680
|
-
/** Create
|
|
681
|
-
/** Update
|
|
682
|
-
/** Delete
|
|
726
|
+
export declare const plansModuleMutationKeys: {
|
|
727
|
+
/** All plansModule mutation keys */ readonly all: readonly ["mutation", "plansmodule"];
|
|
728
|
+
/** Create plansModule mutation key */ readonly create: () => readonly ["mutation", "plansmodule", "create"];
|
|
729
|
+
/** Update plansModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "plansmodule", "update", string | number];
|
|
730
|
+
/** Delete plansModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "plansmodule", "delete", string | number];
|
|
683
731
|
};
|
|
684
732
|
export declare const rlsModuleMutationKeys: {
|
|
685
733
|
/** All rlsModule mutation keys */ readonly all: readonly ["mutation", "rlsmodule"];
|
|
@@ -693,11 +741,17 @@ export declare const sqlActionMutationKeys: {
|
|
|
693
741
|
/** Update sqlAction mutation key */ readonly update: (id: string | number) => readonly ["mutation", "sqlaction", "update", string | number];
|
|
694
742
|
/** Delete sqlAction mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "sqlaction", "delete", string | number];
|
|
695
743
|
};
|
|
696
|
-
export declare const
|
|
697
|
-
/** All
|
|
698
|
-
/** Create
|
|
699
|
-
/** Update
|
|
700
|
-
/** Delete
|
|
744
|
+
export declare const billingModuleMutationKeys: {
|
|
745
|
+
/** All billingModule mutation keys */ readonly all: readonly ["mutation", "billingmodule"];
|
|
746
|
+
/** Create billingModule mutation key */ readonly create: () => readonly ["mutation", "billingmodule", "create"];
|
|
747
|
+
/** Update billingModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "billingmodule", "update", string | number];
|
|
748
|
+
/** Delete billingModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "billingmodule", "delete", string | number];
|
|
749
|
+
};
|
|
750
|
+
export declare const astMigrationMutationKeys: {
|
|
751
|
+
/** All astMigration mutation keys */ readonly all: readonly ["mutation", "astmigration"];
|
|
752
|
+
/** Create astMigration mutation key */ readonly create: () => readonly ["mutation", "astmigration", "create"];
|
|
753
|
+
/** Update astMigration mutation key */ readonly update: (id: string | number) => readonly ["mutation", "astmigration", "update", string | number];
|
|
754
|
+
/** Delete astMigration mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "astmigration", "delete", string | number];
|
|
701
755
|
};
|
|
702
756
|
export declare const userMutationKeys: {
|
|
703
757
|
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
@@ -705,11 +759,11 @@ export declare const userMutationKeys: {
|
|
|
705
759
|
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
706
760
|
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
707
761
|
};
|
|
708
|
-
export declare const
|
|
709
|
-
/** All
|
|
710
|
-
/** Create
|
|
711
|
-
/** Update
|
|
712
|
-
/** Delete
|
|
762
|
+
export declare const orgMembershipSettingMutationKeys: {
|
|
763
|
+
/** All orgMembershipSetting mutation keys */ readonly all: readonly ["mutation", "orgmembershipsetting"];
|
|
764
|
+
/** Create orgMembershipSetting mutation key */ readonly create: () => readonly ["mutation", "orgmembershipsetting", "create"];
|
|
765
|
+
/** Update orgMembershipSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "update", string | number];
|
|
766
|
+
/** Delete orgMembershipSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "delete", string | number];
|
|
713
767
|
};
|
|
714
768
|
export declare const appMembershipMutationKeys: {
|
|
715
769
|
/** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
|
|
@@ -765,14 +819,13 @@ export declare const customMutationKeys: {
|
|
|
765
819
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
766
820
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
767
821
|
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
822
|
+
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
823
|
+
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
768
824
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
769
825
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
770
826
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
771
827
|
/** Mutation key for provisionTable */ readonly provisionTable: (identifier?: string) => readonly ["mutation", "provisionTable", string] | readonly ["mutation", "provisionTable"];
|
|
772
|
-
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
773
|
-
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
774
828
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
775
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
776
829
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
777
830
|
};
|
|
778
831
|
/**
|
|
@@ -816,12 +869,6 @@ export declare const mutationKeys: {
|
|
|
816
869
|
/** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
|
|
817
870
|
/** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
|
|
818
871
|
};
|
|
819
|
-
readonly object: {
|
|
820
|
-
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
821
|
-
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
822
|
-
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
823
|
-
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
824
|
-
};
|
|
825
872
|
readonly appPermission: {
|
|
826
873
|
/** All appPermission mutation keys */ readonly all: readonly ["mutation", "apppermission"];
|
|
827
874
|
/** Create appPermission mutation key */ readonly create: () => readonly ["mutation", "apppermission", "create"];
|
|
@@ -834,6 +881,12 @@ export declare const mutationKeys: {
|
|
|
834
881
|
/** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
|
|
835
882
|
/** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
|
|
836
883
|
};
|
|
884
|
+
readonly object: {
|
|
885
|
+
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
886
|
+
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
887
|
+
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
888
|
+
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
889
|
+
};
|
|
837
890
|
readonly appLevelRequirement: {
|
|
838
891
|
/** All appLevelRequirement mutation keys */ readonly all: readonly ["mutation", "applevelrequirement"];
|
|
839
892
|
/** Create appLevelRequirement mutation key */ readonly create: () => readonly ["mutation", "applevelrequirement", "create"];
|
|
@@ -1314,6 +1367,12 @@ export declare const mutationKeys: {
|
|
|
1314
1367
|
/** Update orgLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimit", "update", string | number];
|
|
1315
1368
|
/** Delete orgLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimit", "delete", string | number];
|
|
1316
1369
|
};
|
|
1370
|
+
readonly orgLimitAggregate: {
|
|
1371
|
+
/** All orgLimitAggregate mutation keys */ readonly all: readonly ["mutation", "orglimitaggregate"];
|
|
1372
|
+
/** Create orgLimitAggregate mutation key */ readonly create: () => readonly ["mutation", "orglimitaggregate", "create"];
|
|
1373
|
+
/** Update orgLimitAggregate mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitaggregate", "update", string | number];
|
|
1374
|
+
/** Delete orgLimitAggregate mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitaggregate", "delete", string | number];
|
|
1375
|
+
};
|
|
1317
1376
|
readonly appStep: {
|
|
1318
1377
|
/** All appStep mutation keys */ readonly all: readonly ["mutation", "appstep"];
|
|
1319
1378
|
/** Create appStep mutation key */ readonly create: () => readonly ["mutation", "appstep", "create"];
|
|
@@ -1386,11 +1445,29 @@ export declare const mutationKeys: {
|
|
|
1386
1445
|
/** Update auditLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "auditlog", "update", string | number];
|
|
1387
1446
|
/** Delete auditLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "auditlog", "delete", string | number];
|
|
1388
1447
|
};
|
|
1389
|
-
readonly
|
|
1390
|
-
/** All
|
|
1391
|
-
/** Create
|
|
1392
|
-
/** Update
|
|
1393
|
-
/** Delete
|
|
1448
|
+
readonly agentThread: {
|
|
1449
|
+
/** All agentThread mutation keys */ readonly all: readonly ["mutation", "agentthread"];
|
|
1450
|
+
/** Create agentThread mutation key */ readonly create: () => readonly ["mutation", "agentthread", "create"];
|
|
1451
|
+
/** Update agentThread mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentthread", "update", string | number];
|
|
1452
|
+
/** Delete agentThread mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentthread", "delete", string | number];
|
|
1453
|
+
};
|
|
1454
|
+
readonly agentMessage: {
|
|
1455
|
+
/** All agentMessage mutation keys */ readonly all: readonly ["mutation", "agentmessage"];
|
|
1456
|
+
/** Create agentMessage mutation key */ readonly create: () => readonly ["mutation", "agentmessage", "create"];
|
|
1457
|
+
/** Update agentMessage mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentmessage", "update", string | number];
|
|
1458
|
+
/** Delete agentMessage mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentmessage", "delete", string | number];
|
|
1459
|
+
};
|
|
1460
|
+
readonly agentTask: {
|
|
1461
|
+
/** All agentTask mutation keys */ readonly all: readonly ["mutation", "agenttask"];
|
|
1462
|
+
/** Create agentTask mutation key */ readonly create: () => readonly ["mutation", "agenttask", "create"];
|
|
1463
|
+
/** Update agentTask mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agenttask", "update", string | number];
|
|
1464
|
+
/** Delete agentTask mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agenttask", "delete", string | number];
|
|
1465
|
+
};
|
|
1466
|
+
readonly roleType: {
|
|
1467
|
+
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
1468
|
+
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
1469
|
+
/** Update roleType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "roletype", "update", string | number];
|
|
1470
|
+
/** Delete roleType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "roletype", "delete", string | number];
|
|
1394
1471
|
};
|
|
1395
1472
|
readonly identityProvider: {
|
|
1396
1473
|
/** All identityProvider mutation keys */ readonly all: readonly ["mutation", "identityprovider"];
|
|
@@ -1410,11 +1487,17 @@ export declare const mutationKeys: {
|
|
|
1410
1487
|
/** Update store mutation key */ readonly update: (id: string | number) => readonly ["mutation", "store", "update", string | number];
|
|
1411
1488
|
/** Delete store mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "store", "delete", string | number];
|
|
1412
1489
|
};
|
|
1413
|
-
readonly
|
|
1414
|
-
/** All
|
|
1415
|
-
/** Create
|
|
1416
|
-
/** Update
|
|
1417
|
-
/** Delete
|
|
1490
|
+
readonly appPermissionDefault: {
|
|
1491
|
+
/** All appPermissionDefault mutation keys */ readonly all: readonly ["mutation", "apppermissiondefault"];
|
|
1492
|
+
/** Create appPermissionDefault mutation key */ readonly create: () => readonly ["mutation", "apppermissiondefault", "create"];
|
|
1493
|
+
/** Update appPermissionDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "apppermissiondefault", "update", string | number];
|
|
1494
|
+
/** Delete appPermissionDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "apppermissiondefault", "delete", string | number];
|
|
1495
|
+
};
|
|
1496
|
+
readonly membershipType: {
|
|
1497
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
1498
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
1499
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
1500
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
1418
1501
|
};
|
|
1419
1502
|
readonly migrateFile: {
|
|
1420
1503
|
/** All migrateFile mutation keys */ readonly all: readonly ["mutation", "migratefile"];
|
|
@@ -1422,6 +1505,18 @@ export declare const mutationKeys: {
|
|
|
1422
1505
|
/** Update migrateFile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "migratefile", "update", string | number];
|
|
1423
1506
|
/** Delete migrateFile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "migratefile", "delete", string | number];
|
|
1424
1507
|
};
|
|
1508
|
+
readonly devicesModule: {
|
|
1509
|
+
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
1510
|
+
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
1511
|
+
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
1512
|
+
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
1513
|
+
};
|
|
1514
|
+
readonly nodeTypeRegistry: {
|
|
1515
|
+
/** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
|
|
1516
|
+
/** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
|
|
1517
|
+
/** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
|
|
1518
|
+
/** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
|
|
1519
|
+
};
|
|
1425
1520
|
readonly appLimitDefault: {
|
|
1426
1521
|
/** All appLimitDefault mutation keys */ readonly all: readonly ["mutation", "applimitdefault"];
|
|
1427
1522
|
/** Create appLimitDefault mutation key */ readonly create: () => readonly ["mutation", "applimitdefault", "create"];
|
|
@@ -1434,18 +1529,24 @@ export declare const mutationKeys: {
|
|
|
1434
1529
|
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
1435
1530
|
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
1436
1531
|
};
|
|
1437
|
-
readonly devicesModule: {
|
|
1438
|
-
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
1439
|
-
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
1440
|
-
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
1441
|
-
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
1442
|
-
};
|
|
1443
1532
|
readonly userConnectedAccount: {
|
|
1444
1533
|
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
1445
1534
|
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
1446
1535
|
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
1447
1536
|
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
1448
1537
|
};
|
|
1538
|
+
readonly commit: {
|
|
1539
|
+
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
1540
|
+
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
1541
|
+
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
1542
|
+
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
1543
|
+
};
|
|
1544
|
+
readonly rateLimitsModule: {
|
|
1545
|
+
/** All rateLimitsModule mutation keys */ readonly all: readonly ["mutation", "ratelimitsmodule"];
|
|
1546
|
+
/** Create rateLimitsModule mutation key */ readonly create: () => readonly ["mutation", "ratelimitsmodule", "create"];
|
|
1547
|
+
/** Update rateLimitsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "update", string | number];
|
|
1548
|
+
/** Delete rateLimitsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "delete", string | number];
|
|
1549
|
+
};
|
|
1449
1550
|
readonly appMembershipDefault: {
|
|
1450
1551
|
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
1451
1552
|
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
@@ -1458,23 +1559,23 @@ export declare const mutationKeys: {
|
|
|
1458
1559
|
/** Update orgMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "update", string | number];
|
|
1459
1560
|
/** Delete orgMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "delete", string | number];
|
|
1460
1561
|
};
|
|
1461
|
-
readonly
|
|
1462
|
-
/** All
|
|
1463
|
-
/** Create
|
|
1464
|
-
/** Update
|
|
1465
|
-
/** Delete
|
|
1562
|
+
readonly appLimitEvent: {
|
|
1563
|
+
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
1564
|
+
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
1565
|
+
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
1566
|
+
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
1466
1567
|
};
|
|
1467
|
-
readonly
|
|
1468
|
-
/** All
|
|
1469
|
-
/** Create
|
|
1470
|
-
/** Update
|
|
1471
|
-
/** Delete
|
|
1568
|
+
readonly orgLimitEvent: {
|
|
1569
|
+
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
1570
|
+
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
1571
|
+
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
1572
|
+
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
1472
1573
|
};
|
|
1473
|
-
readonly
|
|
1474
|
-
/** All
|
|
1475
|
-
/** Create
|
|
1476
|
-
/** Update
|
|
1477
|
-
/** Delete
|
|
1574
|
+
readonly plansModule: {
|
|
1575
|
+
/** All plansModule mutation keys */ readonly all: readonly ["mutation", "plansmodule"];
|
|
1576
|
+
/** Create plansModule mutation key */ readonly create: () => readonly ["mutation", "plansmodule", "create"];
|
|
1577
|
+
/** Update plansModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "plansmodule", "update", string | number];
|
|
1578
|
+
/** Delete plansModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "plansmodule", "delete", string | number];
|
|
1478
1579
|
};
|
|
1479
1580
|
readonly rlsModule: {
|
|
1480
1581
|
/** All rlsModule mutation keys */ readonly all: readonly ["mutation", "rlsmodule"];
|
|
@@ -1488,11 +1589,17 @@ export declare const mutationKeys: {
|
|
|
1488
1589
|
/** Update sqlAction mutation key */ readonly update: (id: string | number) => readonly ["mutation", "sqlaction", "update", string | number];
|
|
1489
1590
|
/** Delete sqlAction mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "sqlaction", "delete", string | number];
|
|
1490
1591
|
};
|
|
1491
|
-
readonly
|
|
1492
|
-
/** All
|
|
1493
|
-
/** Create
|
|
1494
|
-
/** Update
|
|
1495
|
-
/** Delete
|
|
1592
|
+
readonly billingModule: {
|
|
1593
|
+
/** All billingModule mutation keys */ readonly all: readonly ["mutation", "billingmodule"];
|
|
1594
|
+
/** Create billingModule mutation key */ readonly create: () => readonly ["mutation", "billingmodule", "create"];
|
|
1595
|
+
/** Update billingModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "billingmodule", "update", string | number];
|
|
1596
|
+
/** Delete billingModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "billingmodule", "delete", string | number];
|
|
1597
|
+
};
|
|
1598
|
+
readonly astMigration: {
|
|
1599
|
+
/** All astMigration mutation keys */ readonly all: readonly ["mutation", "astmigration"];
|
|
1600
|
+
/** Create astMigration mutation key */ readonly create: () => readonly ["mutation", "astmigration", "create"];
|
|
1601
|
+
/** Update astMigration mutation key */ readonly update: (id: string | number) => readonly ["mutation", "astmigration", "update", string | number];
|
|
1602
|
+
/** Delete astMigration mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "astmigration", "delete", string | number];
|
|
1496
1603
|
};
|
|
1497
1604
|
readonly user: {
|
|
1498
1605
|
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
@@ -1500,11 +1607,11 @@ export declare const mutationKeys: {
|
|
|
1500
1607
|
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
1501
1608
|
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
1502
1609
|
};
|
|
1503
|
-
readonly
|
|
1504
|
-
/** All
|
|
1505
|
-
/** Create
|
|
1506
|
-
/** Update
|
|
1507
|
-
/** Delete
|
|
1610
|
+
readonly orgMembershipSetting: {
|
|
1611
|
+
/** All orgMembershipSetting mutation keys */ readonly all: readonly ["mutation", "orgmembershipsetting"];
|
|
1612
|
+
/** Create orgMembershipSetting mutation key */ readonly create: () => readonly ["mutation", "orgmembershipsetting", "create"];
|
|
1613
|
+
/** Update orgMembershipSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "update", string | number];
|
|
1614
|
+
/** Delete orgMembershipSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "delete", string | number];
|
|
1508
1615
|
};
|
|
1509
1616
|
readonly appMembership: {
|
|
1510
1617
|
/** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
|
|
@@ -1560,14 +1667,13 @@ export declare const mutationKeys: {
|
|
|
1560
1667
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
1561
1668
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
1562
1669
|
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
1670
|
+
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
1671
|
+
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
1563
1672
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
1564
1673
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
1565
1674
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
1566
1675
|
/** Mutation key for provisionTable */ readonly provisionTable: (identifier?: string) => readonly ["mutation", "provisionTable", string] | readonly ["mutation", "provisionTable"];
|
|
1567
|
-
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
1568
|
-
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
1569
1676
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
1570
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
1571
1677
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
1572
1678
|
};
|
|
1573
1679
|
};
|