@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
|
@@ -36,12 +36,6 @@ export const getAllRecordMutationKeys = {
|
|
|
36
36
|
/** Update getAllRecord mutation key */ update: (id) => ['mutation', 'getallrecord', 'update', id],
|
|
37
37
|
/** Delete getAllRecord mutation key */ delete: (id) => ['mutation', 'getallrecord', 'delete', id],
|
|
38
38
|
};
|
|
39
|
-
export const objectMutationKeys = {
|
|
40
|
-
/** All object mutation keys */ all: ['mutation', 'object'],
|
|
41
|
-
/** Create object mutation key */ create: () => ['mutation', 'object', 'create'],
|
|
42
|
-
/** Update object mutation key */ update: (id) => ['mutation', 'object', 'update', id],
|
|
43
|
-
/** Delete object mutation key */ delete: (id) => ['mutation', 'object', 'delete', id],
|
|
44
|
-
};
|
|
45
39
|
export const appPermissionMutationKeys = {
|
|
46
40
|
/** All appPermission mutation keys */ all: ['mutation', 'apppermission'],
|
|
47
41
|
/** Create appPermission mutation key */ create: () => ['mutation', 'apppermission', 'create'],
|
|
@@ -54,6 +48,12 @@ export const orgPermissionMutationKeys = {
|
|
|
54
48
|
/** Update orgPermission mutation key */ update: (id) => ['mutation', 'orgpermission', 'update', id],
|
|
55
49
|
/** Delete orgPermission mutation key */ delete: (id) => ['mutation', 'orgpermission', 'delete', id],
|
|
56
50
|
};
|
|
51
|
+
export const objectMutationKeys = {
|
|
52
|
+
/** All object mutation keys */ all: ['mutation', 'object'],
|
|
53
|
+
/** Create object mutation key */ create: () => ['mutation', 'object', 'create'],
|
|
54
|
+
/** Update object mutation key */ update: (id) => ['mutation', 'object', 'update', id],
|
|
55
|
+
/** Delete object mutation key */ delete: (id) => ['mutation', 'object', 'delete', id],
|
|
56
|
+
};
|
|
57
57
|
export const appLevelRequirementMutationKeys = {
|
|
58
58
|
/** All appLevelRequirement mutation keys */ all: ['mutation', 'applevelrequirement'],
|
|
59
59
|
/** Create appLevelRequirement mutation key */ create: () => ['mutation', 'applevelrequirement', 'create'],
|
|
@@ -561,6 +561,12 @@ export const orgLimitMutationKeys = {
|
|
|
561
561
|
/** Update orgLimit mutation key */ update: (id) => ['mutation', 'orglimit', 'update', id],
|
|
562
562
|
/** Delete orgLimit mutation key */ delete: (id) => ['mutation', 'orglimit', 'delete', id],
|
|
563
563
|
};
|
|
564
|
+
export const orgLimitAggregateMutationKeys = {
|
|
565
|
+
/** All orgLimitAggregate mutation keys */ all: ['mutation', 'orglimitaggregate'],
|
|
566
|
+
/** Create orgLimitAggregate mutation key */ create: () => ['mutation', 'orglimitaggregate', 'create'],
|
|
567
|
+
/** Update orgLimitAggregate mutation key */ update: (id) => ['mutation', 'orglimitaggregate', 'update', id],
|
|
568
|
+
/** Delete orgLimitAggregate mutation key */ delete: (id) => ['mutation', 'orglimitaggregate', 'delete', id],
|
|
569
|
+
};
|
|
564
570
|
export const appStepMutationKeys = {
|
|
565
571
|
/** All appStep mutation keys */ all: ['mutation', 'appstep'],
|
|
566
572
|
/** Create appStep mutation key */ create: () => ['mutation', 'appstep', 'create'],
|
|
@@ -633,11 +639,29 @@ export const auditLogMutationKeys = {
|
|
|
633
639
|
/** Update auditLog mutation key */ update: (id) => ['mutation', 'auditlog', 'update', id],
|
|
634
640
|
/** Delete auditLog mutation key */ delete: (id) => ['mutation', 'auditlog', 'delete', id],
|
|
635
641
|
};
|
|
636
|
-
export const
|
|
637
|
-
/** All
|
|
638
|
-
/** Create
|
|
639
|
-
/** Update
|
|
640
|
-
/** Delete
|
|
642
|
+
export const agentThreadMutationKeys = {
|
|
643
|
+
/** All agentThread mutation keys */ all: ['mutation', 'agentthread'],
|
|
644
|
+
/** Create agentThread mutation key */ create: () => ['mutation', 'agentthread', 'create'],
|
|
645
|
+
/** Update agentThread mutation key */ update: (id) => ['mutation', 'agentthread', 'update', id],
|
|
646
|
+
/** Delete agentThread mutation key */ delete: (id) => ['mutation', 'agentthread', 'delete', id],
|
|
647
|
+
};
|
|
648
|
+
export const agentMessageMutationKeys = {
|
|
649
|
+
/** All agentMessage mutation keys */ all: ['mutation', 'agentmessage'],
|
|
650
|
+
/** Create agentMessage mutation key */ create: () => ['mutation', 'agentmessage', 'create'],
|
|
651
|
+
/** Update agentMessage mutation key */ update: (id) => ['mutation', 'agentmessage', 'update', id],
|
|
652
|
+
/** Delete agentMessage mutation key */ delete: (id) => ['mutation', 'agentmessage', 'delete', id],
|
|
653
|
+
};
|
|
654
|
+
export const agentTaskMutationKeys = {
|
|
655
|
+
/** All agentTask mutation keys */ all: ['mutation', 'agenttask'],
|
|
656
|
+
/** Create agentTask mutation key */ create: () => ['mutation', 'agenttask', 'create'],
|
|
657
|
+
/** Update agentTask mutation key */ update: (id) => ['mutation', 'agenttask', 'update', id],
|
|
658
|
+
/** Delete agentTask mutation key */ delete: (id) => ['mutation', 'agenttask', 'delete', id],
|
|
659
|
+
};
|
|
660
|
+
export const roleTypeMutationKeys = {
|
|
661
|
+
/** All roleType mutation keys */ all: ['mutation', 'roletype'],
|
|
662
|
+
/** Create roleType mutation key */ create: () => ['mutation', 'roletype', 'create'],
|
|
663
|
+
/** Update roleType mutation key */ update: (id) => ['mutation', 'roletype', 'update', id],
|
|
664
|
+
/** Delete roleType mutation key */ delete: (id) => ['mutation', 'roletype', 'delete', id],
|
|
641
665
|
};
|
|
642
666
|
export const identityProviderMutationKeys = {
|
|
643
667
|
/** All identityProvider mutation keys */ all: ['mutation', 'identityprovider'],
|
|
@@ -657,11 +681,17 @@ export const storeMutationKeys = {
|
|
|
657
681
|
/** Update store mutation key */ update: (id) => ['mutation', 'store', 'update', id],
|
|
658
682
|
/** Delete store mutation key */ delete: (id) => ['mutation', 'store', 'delete', id],
|
|
659
683
|
};
|
|
660
|
-
export const
|
|
661
|
-
/** All
|
|
662
|
-
/** Create
|
|
663
|
-
/** Update
|
|
664
|
-
/** Delete
|
|
684
|
+
export const appPermissionDefaultMutationKeys = {
|
|
685
|
+
/** All appPermissionDefault mutation keys */ all: ['mutation', 'apppermissiondefault'],
|
|
686
|
+
/** Create appPermissionDefault mutation key */ create: () => ['mutation', 'apppermissiondefault', 'create'],
|
|
687
|
+
/** Update appPermissionDefault mutation key */ update: (id) => ['mutation', 'apppermissiondefault', 'update', id],
|
|
688
|
+
/** Delete appPermissionDefault mutation key */ delete: (id) => ['mutation', 'apppermissiondefault', 'delete', id],
|
|
689
|
+
};
|
|
690
|
+
export const membershipTypeMutationKeys = {
|
|
691
|
+
/** All membershipType mutation keys */ all: ['mutation', 'membershiptype'],
|
|
692
|
+
/** Create membershipType mutation key */ create: () => ['mutation', 'membershiptype', 'create'],
|
|
693
|
+
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
694
|
+
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
665
695
|
};
|
|
666
696
|
export const migrateFileMutationKeys = {
|
|
667
697
|
/** All migrateFile mutation keys */ all: ['mutation', 'migratefile'],
|
|
@@ -669,6 +699,18 @@ export const migrateFileMutationKeys = {
|
|
|
669
699
|
/** Update migrateFile mutation key */ update: (id) => ['mutation', 'migratefile', 'update', id],
|
|
670
700
|
/** Delete migrateFile mutation key */ delete: (id) => ['mutation', 'migratefile', 'delete', id],
|
|
671
701
|
};
|
|
702
|
+
export const devicesModuleMutationKeys = {
|
|
703
|
+
/** All devicesModule mutation keys */ all: ['mutation', 'devicesmodule'],
|
|
704
|
+
/** Create devicesModule mutation key */ create: () => ['mutation', 'devicesmodule', 'create'],
|
|
705
|
+
/** Update devicesModule mutation key */ update: (id) => ['mutation', 'devicesmodule', 'update', id],
|
|
706
|
+
/** Delete devicesModule mutation key */ delete: (id) => ['mutation', 'devicesmodule', 'delete', id],
|
|
707
|
+
};
|
|
708
|
+
export const nodeTypeRegistryMutationKeys = {
|
|
709
|
+
/** All nodeTypeRegistry mutation keys */ all: ['mutation', 'nodetyperegistry'],
|
|
710
|
+
/** Create nodeTypeRegistry mutation key */ create: () => ['mutation', 'nodetyperegistry', 'create'],
|
|
711
|
+
/** Update nodeTypeRegistry mutation key */ update: (id) => ['mutation', 'nodetyperegistry', 'update', id],
|
|
712
|
+
/** Delete nodeTypeRegistry mutation key */ delete: (id) => ['mutation', 'nodetyperegistry', 'delete', id],
|
|
713
|
+
};
|
|
672
714
|
export const appLimitDefaultMutationKeys = {
|
|
673
715
|
/** All appLimitDefault mutation keys */ all: ['mutation', 'applimitdefault'],
|
|
674
716
|
/** Create appLimitDefault mutation key */ create: () => ['mutation', 'applimitdefault', 'create'],
|
|
@@ -681,18 +723,24 @@ export const orgLimitDefaultMutationKeys = {
|
|
|
681
723
|
/** Update orgLimitDefault mutation key */ update: (id) => ['mutation', 'orglimitdefault', 'update', id],
|
|
682
724
|
/** Delete orgLimitDefault mutation key */ delete: (id) => ['mutation', 'orglimitdefault', 'delete', id],
|
|
683
725
|
};
|
|
684
|
-
export const devicesModuleMutationKeys = {
|
|
685
|
-
/** All devicesModule mutation keys */ all: ['mutation', 'devicesmodule'],
|
|
686
|
-
/** Create devicesModule mutation key */ create: () => ['mutation', 'devicesmodule', 'create'],
|
|
687
|
-
/** Update devicesModule mutation key */ update: (id) => ['mutation', 'devicesmodule', 'update', id],
|
|
688
|
-
/** Delete devicesModule mutation key */ delete: (id) => ['mutation', 'devicesmodule', 'delete', id],
|
|
689
|
-
};
|
|
690
726
|
export const userConnectedAccountMutationKeys = {
|
|
691
727
|
/** All userConnectedAccount mutation keys */ all: ['mutation', 'userconnectedaccount'],
|
|
692
728
|
/** Create userConnectedAccount mutation key */ create: () => ['mutation', 'userconnectedaccount', 'create'],
|
|
693
729
|
/** Update userConnectedAccount mutation key */ update: (id) => ['mutation', 'userconnectedaccount', 'update', id],
|
|
694
730
|
/** Delete userConnectedAccount mutation key */ delete: (id) => ['mutation', 'userconnectedaccount', 'delete', id],
|
|
695
731
|
};
|
|
732
|
+
export const commitMutationKeys = {
|
|
733
|
+
/** All commit mutation keys */ all: ['mutation', 'commit'],
|
|
734
|
+
/** Create commit mutation key */ create: () => ['mutation', 'commit', 'create'],
|
|
735
|
+
/** Update commit mutation key */ update: (id) => ['mutation', 'commit', 'update', id],
|
|
736
|
+
/** Delete commit mutation key */ delete: (id) => ['mutation', 'commit', 'delete', id],
|
|
737
|
+
};
|
|
738
|
+
export const rateLimitsModuleMutationKeys = {
|
|
739
|
+
/** All rateLimitsModule mutation keys */ all: ['mutation', 'ratelimitsmodule'],
|
|
740
|
+
/** Create rateLimitsModule mutation key */ create: () => ['mutation', 'ratelimitsmodule', 'create'],
|
|
741
|
+
/** Update rateLimitsModule mutation key */ update: (id) => ['mutation', 'ratelimitsmodule', 'update', id],
|
|
742
|
+
/** Delete rateLimitsModule mutation key */ delete: (id) => ['mutation', 'ratelimitsmodule', 'delete', id],
|
|
743
|
+
};
|
|
696
744
|
export const appMembershipDefaultMutationKeys = {
|
|
697
745
|
/** All appMembershipDefault mutation keys */ all: ['mutation', 'appmembershipdefault'],
|
|
698
746
|
/** Create appMembershipDefault mutation key */ create: () => ['mutation', 'appmembershipdefault', 'create'],
|
|
@@ -705,23 +753,23 @@ export const orgMembershipDefaultMutationKeys = {
|
|
|
705
753
|
/** Update orgMembershipDefault mutation key */ update: (id) => ['mutation', 'orgmembershipdefault', 'update', id],
|
|
706
754
|
/** Delete orgMembershipDefault mutation key */ delete: (id) => ['mutation', 'orgmembershipdefault', 'delete', id],
|
|
707
755
|
};
|
|
708
|
-
export const
|
|
709
|
-
/** All
|
|
710
|
-
/** Create
|
|
711
|
-
/** Update
|
|
712
|
-
/** Delete
|
|
756
|
+
export const appLimitEventMutationKeys = {
|
|
757
|
+
/** All appLimitEvent mutation keys */ all: ['mutation', 'applimitevent'],
|
|
758
|
+
/** Create appLimitEvent mutation key */ create: () => ['mutation', 'applimitevent', 'create'],
|
|
759
|
+
/** Update appLimitEvent mutation key */ update: (id) => ['mutation', 'applimitevent', 'update', id],
|
|
760
|
+
/** Delete appLimitEvent mutation key */ delete: (id) => ['mutation', 'applimitevent', 'delete', id],
|
|
713
761
|
};
|
|
714
|
-
export const
|
|
715
|
-
/** All
|
|
716
|
-
/** Create
|
|
717
|
-
/** Update
|
|
718
|
-
/** Delete
|
|
762
|
+
export const orgLimitEventMutationKeys = {
|
|
763
|
+
/** All orgLimitEvent mutation keys */ all: ['mutation', 'orglimitevent'],
|
|
764
|
+
/** Create orgLimitEvent mutation key */ create: () => ['mutation', 'orglimitevent', 'create'],
|
|
765
|
+
/** Update orgLimitEvent mutation key */ update: (id) => ['mutation', 'orglimitevent', 'update', id],
|
|
766
|
+
/** Delete orgLimitEvent mutation key */ delete: (id) => ['mutation', 'orglimitevent', 'delete', id],
|
|
719
767
|
};
|
|
720
|
-
export const
|
|
721
|
-
/** All
|
|
722
|
-
/** Create
|
|
723
|
-
/** Update
|
|
724
|
-
/** Delete
|
|
768
|
+
export const plansModuleMutationKeys = {
|
|
769
|
+
/** All plansModule mutation keys */ all: ['mutation', 'plansmodule'],
|
|
770
|
+
/** Create plansModule mutation key */ create: () => ['mutation', 'plansmodule', 'create'],
|
|
771
|
+
/** Update plansModule mutation key */ update: (id) => ['mutation', 'plansmodule', 'update', id],
|
|
772
|
+
/** Delete plansModule mutation key */ delete: (id) => ['mutation', 'plansmodule', 'delete', id],
|
|
725
773
|
};
|
|
726
774
|
export const rlsModuleMutationKeys = {
|
|
727
775
|
/** All rlsModule mutation keys */ all: ['mutation', 'rlsmodule'],
|
|
@@ -735,11 +783,17 @@ export const sqlActionMutationKeys = {
|
|
|
735
783
|
/** Update sqlAction mutation key */ update: (id) => ['mutation', 'sqlaction', 'update', id],
|
|
736
784
|
/** Delete sqlAction mutation key */ delete: (id) => ['mutation', 'sqlaction', 'delete', id],
|
|
737
785
|
};
|
|
738
|
-
export const
|
|
739
|
-
/** All
|
|
740
|
-
/** Create
|
|
741
|
-
/** Update
|
|
742
|
-
/** Delete
|
|
786
|
+
export const billingModuleMutationKeys = {
|
|
787
|
+
/** All billingModule mutation keys */ all: ['mutation', 'billingmodule'],
|
|
788
|
+
/** Create billingModule mutation key */ create: () => ['mutation', 'billingmodule', 'create'],
|
|
789
|
+
/** Update billingModule mutation key */ update: (id) => ['mutation', 'billingmodule', 'update', id],
|
|
790
|
+
/** Delete billingModule mutation key */ delete: (id) => ['mutation', 'billingmodule', 'delete', id],
|
|
791
|
+
};
|
|
792
|
+
export const astMigrationMutationKeys = {
|
|
793
|
+
/** All astMigration mutation keys */ all: ['mutation', 'astmigration'],
|
|
794
|
+
/** Create astMigration mutation key */ create: () => ['mutation', 'astmigration', 'create'],
|
|
795
|
+
/** Update astMigration mutation key */ update: (id) => ['mutation', 'astmigration', 'update', id],
|
|
796
|
+
/** Delete astMigration mutation key */ delete: (id) => ['mutation', 'astmigration', 'delete', id],
|
|
743
797
|
};
|
|
744
798
|
export const userMutationKeys = {
|
|
745
799
|
/** All user mutation keys */ all: ['mutation', 'user'],
|
|
@@ -747,11 +801,11 @@ export const userMutationKeys = {
|
|
|
747
801
|
/** Update user mutation key */ update: (id) => ['mutation', 'user', 'update', id],
|
|
748
802
|
/** Delete user mutation key */ delete: (id) => ['mutation', 'user', 'delete', id],
|
|
749
803
|
};
|
|
750
|
-
export const
|
|
751
|
-
/** All
|
|
752
|
-
/** Create
|
|
753
|
-
/** Update
|
|
754
|
-
/** Delete
|
|
804
|
+
export const orgMembershipSettingMutationKeys = {
|
|
805
|
+
/** All orgMembershipSetting mutation keys */ all: ['mutation', 'orgmembershipsetting'],
|
|
806
|
+
/** Create orgMembershipSetting mutation key */ create: () => ['mutation', 'orgmembershipsetting', 'create'],
|
|
807
|
+
/** Update orgMembershipSetting mutation key */ update: (id) => ['mutation', 'orgmembershipsetting', 'update', id],
|
|
808
|
+
/** Delete orgMembershipSetting mutation key */ delete: (id) => ['mutation', 'orgmembershipsetting', 'delete', id],
|
|
755
809
|
};
|
|
756
810
|
export const appMembershipMutationKeys = {
|
|
757
811
|
/** All appMembership mutation keys */ all: ['mutation', 'appmembership'],
|
|
@@ -892,6 +946,12 @@ export const customMutationKeys = {
|
|
|
892
946
|
/** Mutation key for createApiKey */ createApiKey: (identifier) => identifier
|
|
893
947
|
? ['mutation', 'createApiKey', identifier]
|
|
894
948
|
: ['mutation', 'createApiKey'],
|
|
949
|
+
/** Mutation key for sendVerificationEmail */ sendVerificationEmail: (identifier) => identifier
|
|
950
|
+
? ['mutation', 'sendVerificationEmail', identifier]
|
|
951
|
+
: ['mutation', 'sendVerificationEmail'],
|
|
952
|
+
/** Mutation key for forgotPassword */ forgotPassword: (identifier) => identifier
|
|
953
|
+
? ['mutation', 'forgotPassword', identifier]
|
|
954
|
+
: ['mutation', 'forgotPassword'],
|
|
895
955
|
/** Mutation key for signUp */ signUp: (identifier) => identifier ? ['mutation', 'signUp', identifier] : ['mutation', 'signUp'],
|
|
896
956
|
/** Mutation key for requestCrossOriginToken */ requestCrossOriginToken: (identifier) => identifier
|
|
897
957
|
? ['mutation', 'requestCrossOriginToken', identifier]
|
|
@@ -900,18 +960,9 @@ export const customMutationKeys = {
|
|
|
900
960
|
/** Mutation key for provisionTable */ provisionTable: (identifier) => identifier
|
|
901
961
|
? ['mutation', 'provisionTable', identifier]
|
|
902
962
|
: ['mutation', 'provisionTable'],
|
|
903
|
-
/** Mutation key for sendVerificationEmail */ sendVerificationEmail: (identifier) => identifier
|
|
904
|
-
? ['mutation', 'sendVerificationEmail', identifier]
|
|
905
|
-
: ['mutation', 'sendVerificationEmail'],
|
|
906
|
-
/** Mutation key for forgotPassword */ forgotPassword: (identifier) => identifier
|
|
907
|
-
? ['mutation', 'forgotPassword', identifier]
|
|
908
|
-
: ['mutation', 'forgotPassword'],
|
|
909
963
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
910
964
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
911
965
|
: ['mutation', 'requestUploadUrl'],
|
|
912
|
-
/** Mutation key for confirmUpload */ confirmUpload: (identifier) => identifier
|
|
913
|
-
? ['mutation', 'confirmUpload', identifier]
|
|
914
|
-
: ['mutation', 'confirmUpload'],
|
|
915
966
|
/** Mutation key for provisionBucket */ provisionBucket: (identifier) => identifier
|
|
916
967
|
? ['mutation', 'provisionBucket', identifier]
|
|
917
968
|
: ['mutation', 'provisionBucket'],
|
|
@@ -942,9 +993,9 @@ export const mutationKeys = {
|
|
|
942
993
|
orgGetManagersRecord: orgGetManagersRecordMutationKeys,
|
|
943
994
|
orgGetSubordinatesRecord: orgGetSubordinatesRecordMutationKeys,
|
|
944
995
|
getAllRecord: getAllRecordMutationKeys,
|
|
945
|
-
object: objectMutationKeys,
|
|
946
996
|
appPermission: appPermissionMutationKeys,
|
|
947
997
|
orgPermission: orgPermissionMutationKeys,
|
|
998
|
+
object: objectMutationKeys,
|
|
948
999
|
appLevelRequirement: appLevelRequirementMutationKeys,
|
|
949
1000
|
database: databaseMutationKeys,
|
|
950
1001
|
schema: schemaMutationKeys,
|
|
@@ -1025,6 +1076,7 @@ export const mutationKeys = {
|
|
|
1025
1076
|
orgPermissionDefault: orgPermissionDefaultMutationKeys,
|
|
1026
1077
|
appLimit: appLimitMutationKeys,
|
|
1027
1078
|
orgLimit: orgLimitMutationKeys,
|
|
1079
|
+
orgLimitAggregate: orgLimitAggregateMutationKeys,
|
|
1028
1080
|
appStep: appStepMutationKeys,
|
|
1029
1081
|
appAchievement: appAchievementMutationKeys,
|
|
1030
1082
|
appLevel: appLevelMutationKeys,
|
|
@@ -1037,26 +1089,34 @@ export const mutationKeys = {
|
|
|
1037
1089
|
orgInvite: orgInviteMutationKeys,
|
|
1038
1090
|
orgClaimedInvite: orgClaimedInviteMutationKeys,
|
|
1039
1091
|
auditLog: auditLogMutationKeys,
|
|
1040
|
-
|
|
1092
|
+
agentThread: agentThreadMutationKeys,
|
|
1093
|
+
agentMessage: agentMessageMutationKeys,
|
|
1094
|
+
agentTask: agentTaskMutationKeys,
|
|
1095
|
+
roleType: roleTypeMutationKeys,
|
|
1041
1096
|
identityProvider: identityProviderMutationKeys,
|
|
1042
1097
|
ref: refMutationKeys,
|
|
1043
1098
|
store: storeMutationKeys,
|
|
1044
|
-
|
|
1099
|
+
appPermissionDefault: appPermissionDefaultMutationKeys,
|
|
1100
|
+
membershipType: membershipTypeMutationKeys,
|
|
1045
1101
|
migrateFile: migrateFileMutationKeys,
|
|
1102
|
+
devicesModule: devicesModuleMutationKeys,
|
|
1103
|
+
nodeTypeRegistry: nodeTypeRegistryMutationKeys,
|
|
1046
1104
|
appLimitDefault: appLimitDefaultMutationKeys,
|
|
1047
1105
|
orgLimitDefault: orgLimitDefaultMutationKeys,
|
|
1048
|
-
devicesModule: devicesModuleMutationKeys,
|
|
1049
1106
|
userConnectedAccount: userConnectedAccountMutationKeys,
|
|
1050
|
-
appMembershipDefault: appMembershipDefaultMutationKeys,
|
|
1051
|
-
orgMembershipDefault: orgMembershipDefaultMutationKeys,
|
|
1052
1107
|
commit: commitMutationKeys,
|
|
1053
1108
|
rateLimitsModule: rateLimitsModuleMutationKeys,
|
|
1054
|
-
|
|
1109
|
+
appMembershipDefault: appMembershipDefaultMutationKeys,
|
|
1110
|
+
orgMembershipDefault: orgMembershipDefaultMutationKeys,
|
|
1111
|
+
appLimitEvent: appLimitEventMutationKeys,
|
|
1112
|
+
orgLimitEvent: orgLimitEventMutationKeys,
|
|
1113
|
+
plansModule: plansModuleMutationKeys,
|
|
1055
1114
|
rlsModule: rlsModuleMutationKeys,
|
|
1056
1115
|
sqlAction: sqlActionMutationKeys,
|
|
1057
|
-
|
|
1058
|
-
user: userMutationKeys,
|
|
1116
|
+
billingModule: billingModuleMutationKeys,
|
|
1059
1117
|
astMigration: astMigrationMutationKeys,
|
|
1118
|
+
user: userMutationKeys,
|
|
1119
|
+
orgMembershipSetting: orgMembershipSettingMutationKeys,
|
|
1060
1120
|
appMembership: appMembershipMutationKeys,
|
|
1061
1121
|
hierarchyModule: hierarchyModuleMutationKeys,
|
|
1062
1122
|
custom: customMutationKeys,
|
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
export * from './useCreateOrgGetManagersRecordMutation';
|
|
7
7
|
export * from './useCreateOrgGetSubordinatesRecordMutation';
|
|
8
8
|
export * from './useCreateGetAllRecordMutation';
|
|
9
|
-
export * from './useCreateObjectMutation';
|
|
10
|
-
export * from './useUpdateObjectMutation';
|
|
11
|
-
export * from './useDeleteObjectMutation';
|
|
12
9
|
export * from './useCreateAppPermissionMutation';
|
|
13
10
|
export * from './useUpdateAppPermissionMutation';
|
|
14
11
|
export * from './useDeleteAppPermissionMutation';
|
|
15
12
|
export * from './useCreateOrgPermissionMutation';
|
|
16
13
|
export * from './useUpdateOrgPermissionMutation';
|
|
17
14
|
export * from './useDeleteOrgPermissionMutation';
|
|
15
|
+
export * from './useCreateObjectMutation';
|
|
16
|
+
export * from './useUpdateObjectMutation';
|
|
17
|
+
export * from './useDeleteObjectMutation';
|
|
18
18
|
export * from './useCreateAppLevelRequirementMutation';
|
|
19
19
|
export * from './useUpdateAppLevelRequirementMutation';
|
|
20
20
|
export * from './useDeleteAppLevelRequirementMutation';
|
|
@@ -255,6 +255,9 @@ export * from './useDeleteAppLimitMutation';
|
|
|
255
255
|
export * from './useCreateOrgLimitMutation';
|
|
256
256
|
export * from './useUpdateOrgLimitMutation';
|
|
257
257
|
export * from './useDeleteOrgLimitMutation';
|
|
258
|
+
export * from './useCreateOrgLimitAggregateMutation';
|
|
259
|
+
export * from './useUpdateOrgLimitAggregateMutation';
|
|
260
|
+
export * from './useDeleteOrgLimitAggregateMutation';
|
|
258
261
|
export * from './useCreateAppStepMutation';
|
|
259
262
|
export * from './useUpdateAppStepMutation';
|
|
260
263
|
export * from './useDeleteAppStepMutation';
|
|
@@ -291,9 +294,18 @@ export * from './useDeleteOrgClaimedInviteMutation';
|
|
|
291
294
|
export * from './useCreateAuditLogMutation';
|
|
292
295
|
export * from './useUpdateAuditLogMutation';
|
|
293
296
|
export * from './useDeleteAuditLogMutation';
|
|
294
|
-
export * from './
|
|
295
|
-
export * from './
|
|
296
|
-
export * from './
|
|
297
|
+
export * from './useCreateAgentThreadMutation';
|
|
298
|
+
export * from './useUpdateAgentThreadMutation';
|
|
299
|
+
export * from './useDeleteAgentThreadMutation';
|
|
300
|
+
export * from './useCreateAgentMessageMutation';
|
|
301
|
+
export * from './useUpdateAgentMessageMutation';
|
|
302
|
+
export * from './useDeleteAgentMessageMutation';
|
|
303
|
+
export * from './useCreateAgentTaskMutation';
|
|
304
|
+
export * from './useUpdateAgentTaskMutation';
|
|
305
|
+
export * from './useDeleteAgentTaskMutation';
|
|
306
|
+
export * from './useCreateRoleTypeMutation';
|
|
307
|
+
export * from './useUpdateRoleTypeMutation';
|
|
308
|
+
export * from './useDeleteRoleTypeMutation';
|
|
297
309
|
export * from './useCreateIdentityProviderMutation';
|
|
298
310
|
export * from './useCreateRefMutation';
|
|
299
311
|
export * from './useUpdateRefMutation';
|
|
@@ -301,46 +313,57 @@ export * from './useDeleteRefMutation';
|
|
|
301
313
|
export * from './useCreateStoreMutation';
|
|
302
314
|
export * from './useUpdateStoreMutation';
|
|
303
315
|
export * from './useDeleteStoreMutation';
|
|
304
|
-
export * from './
|
|
305
|
-
export * from './
|
|
306
|
-
export * from './
|
|
316
|
+
export * from './useCreateAppPermissionDefaultMutation';
|
|
317
|
+
export * from './useUpdateAppPermissionDefaultMutation';
|
|
318
|
+
export * from './useDeleteAppPermissionDefaultMutation';
|
|
319
|
+
export * from './useCreateMembershipTypeMutation';
|
|
320
|
+
export * from './useUpdateMembershipTypeMutation';
|
|
321
|
+
export * from './useDeleteMembershipTypeMutation';
|
|
307
322
|
export * from './useCreateMigrateFileMutation';
|
|
323
|
+
export * from './useCreateDevicesModuleMutation';
|
|
324
|
+
export * from './useUpdateDevicesModuleMutation';
|
|
325
|
+
export * from './useDeleteDevicesModuleMutation';
|
|
326
|
+
export * from './useCreateNodeTypeRegistryMutation';
|
|
327
|
+
export * from './useUpdateNodeTypeRegistryMutation';
|
|
328
|
+
export * from './useDeleteNodeTypeRegistryMutation';
|
|
308
329
|
export * from './useCreateAppLimitDefaultMutation';
|
|
309
330
|
export * from './useUpdateAppLimitDefaultMutation';
|
|
310
331
|
export * from './useDeleteAppLimitDefaultMutation';
|
|
311
332
|
export * from './useCreateOrgLimitDefaultMutation';
|
|
312
333
|
export * from './useUpdateOrgLimitDefaultMutation';
|
|
313
334
|
export * from './useDeleteOrgLimitDefaultMutation';
|
|
314
|
-
export * from './useCreateDevicesModuleMutation';
|
|
315
|
-
export * from './useUpdateDevicesModuleMutation';
|
|
316
|
-
export * from './useDeleteDevicesModuleMutation';
|
|
317
335
|
export * from './useCreateUserConnectedAccountMutation';
|
|
318
|
-
export * from './useCreateAppMembershipDefaultMutation';
|
|
319
|
-
export * from './useUpdateAppMembershipDefaultMutation';
|
|
320
|
-
export * from './useDeleteAppMembershipDefaultMutation';
|
|
321
|
-
export * from './useCreateOrgMembershipDefaultMutation';
|
|
322
|
-
export * from './useUpdateOrgMembershipDefaultMutation';
|
|
323
|
-
export * from './useDeleteOrgMembershipDefaultMutation';
|
|
324
336
|
export * from './useCreateCommitMutation';
|
|
325
337
|
export * from './useUpdateCommitMutation';
|
|
326
338
|
export * from './useDeleteCommitMutation';
|
|
327
339
|
export * from './useCreateRateLimitsModuleMutation';
|
|
328
340
|
export * from './useUpdateRateLimitsModuleMutation';
|
|
329
341
|
export * from './useDeleteRateLimitsModuleMutation';
|
|
330
|
-
export * from './
|
|
331
|
-
export * from './
|
|
332
|
-
export * from './
|
|
342
|
+
export * from './useCreateAppMembershipDefaultMutation';
|
|
343
|
+
export * from './useUpdateAppMembershipDefaultMutation';
|
|
344
|
+
export * from './useDeleteAppMembershipDefaultMutation';
|
|
345
|
+
export * from './useCreateOrgMembershipDefaultMutation';
|
|
346
|
+
export * from './useUpdateOrgMembershipDefaultMutation';
|
|
347
|
+
export * from './useDeleteOrgMembershipDefaultMutation';
|
|
348
|
+
export * from './useCreateAppLimitEventMutation';
|
|
349
|
+
export * from './useCreateOrgLimitEventMutation';
|
|
350
|
+
export * from './useCreatePlansModuleMutation';
|
|
351
|
+
export * from './useUpdatePlansModuleMutation';
|
|
352
|
+
export * from './useDeletePlansModuleMutation';
|
|
333
353
|
export * from './useCreateRlsModuleMutation';
|
|
334
354
|
export * from './useUpdateRlsModuleMutation';
|
|
335
355
|
export * from './useDeleteRlsModuleMutation';
|
|
336
356
|
export * from './useCreateSqlActionMutation';
|
|
337
|
-
export * from './
|
|
338
|
-
export * from './
|
|
339
|
-
export * from './
|
|
357
|
+
export * from './useCreateBillingModuleMutation';
|
|
358
|
+
export * from './useUpdateBillingModuleMutation';
|
|
359
|
+
export * from './useDeleteBillingModuleMutation';
|
|
360
|
+
export * from './useCreateAstMigrationMutation';
|
|
340
361
|
export * from './useCreateUserMutation';
|
|
341
362
|
export * from './useUpdateUserMutation';
|
|
342
363
|
export * from './useDeleteUserMutation';
|
|
343
|
-
export * from './
|
|
364
|
+
export * from './useCreateOrgMembershipSettingMutation';
|
|
365
|
+
export * from './useUpdateOrgMembershipSettingMutation';
|
|
366
|
+
export * from './useDeleteOrgMembershipSettingMutation';
|
|
344
367
|
export * from './useCreateAppMembershipMutation';
|
|
345
368
|
export * from './useUpdateAppMembershipMutation';
|
|
346
369
|
export * from './useDeleteAppMembershipMutation';
|
|
@@ -388,12 +411,11 @@ export * from './useSignInCrossOriginMutation';
|
|
|
388
411
|
export * from './useCreateUserDatabaseMutation';
|
|
389
412
|
export * from './useExtendTokenExpiresMutation';
|
|
390
413
|
export * from './useCreateApiKeyMutation';
|
|
414
|
+
export * from './useSendVerificationEmailMutation';
|
|
415
|
+
export * from './useForgotPasswordMutation';
|
|
391
416
|
export * from './useSignUpMutation';
|
|
392
417
|
export * from './useRequestCrossOriginTokenMutation';
|
|
393
418
|
export * from './useSignInMutation';
|
|
394
419
|
export * from './useProvisionTableMutation';
|
|
395
|
-
export * from './useSendVerificationEmailMutation';
|
|
396
|
-
export * from './useForgotPasswordMutation';
|
|
397
420
|
export * from './useRequestUploadUrlMutation';
|
|
398
|
-
export * from './useConfirmUploadMutation';
|
|
399
421
|
export * from './useProvisionBucketMutation';
|
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
export * from './useCreateOrgGetManagersRecordMutation';
|
|
7
7
|
export * from './useCreateOrgGetSubordinatesRecordMutation';
|
|
8
8
|
export * from './useCreateGetAllRecordMutation';
|
|
9
|
-
export * from './useCreateObjectMutation';
|
|
10
|
-
export * from './useUpdateObjectMutation';
|
|
11
|
-
export * from './useDeleteObjectMutation';
|
|
12
9
|
export * from './useCreateAppPermissionMutation';
|
|
13
10
|
export * from './useUpdateAppPermissionMutation';
|
|
14
11
|
export * from './useDeleteAppPermissionMutation';
|
|
15
12
|
export * from './useCreateOrgPermissionMutation';
|
|
16
13
|
export * from './useUpdateOrgPermissionMutation';
|
|
17
14
|
export * from './useDeleteOrgPermissionMutation';
|
|
15
|
+
export * from './useCreateObjectMutation';
|
|
16
|
+
export * from './useUpdateObjectMutation';
|
|
17
|
+
export * from './useDeleteObjectMutation';
|
|
18
18
|
export * from './useCreateAppLevelRequirementMutation';
|
|
19
19
|
export * from './useUpdateAppLevelRequirementMutation';
|
|
20
20
|
export * from './useDeleteAppLevelRequirementMutation';
|
|
@@ -255,6 +255,9 @@ export * from './useDeleteAppLimitMutation';
|
|
|
255
255
|
export * from './useCreateOrgLimitMutation';
|
|
256
256
|
export * from './useUpdateOrgLimitMutation';
|
|
257
257
|
export * from './useDeleteOrgLimitMutation';
|
|
258
|
+
export * from './useCreateOrgLimitAggregateMutation';
|
|
259
|
+
export * from './useUpdateOrgLimitAggregateMutation';
|
|
260
|
+
export * from './useDeleteOrgLimitAggregateMutation';
|
|
258
261
|
export * from './useCreateAppStepMutation';
|
|
259
262
|
export * from './useUpdateAppStepMutation';
|
|
260
263
|
export * from './useDeleteAppStepMutation';
|
|
@@ -291,9 +294,18 @@ export * from './useDeleteOrgClaimedInviteMutation';
|
|
|
291
294
|
export * from './useCreateAuditLogMutation';
|
|
292
295
|
export * from './useUpdateAuditLogMutation';
|
|
293
296
|
export * from './useDeleteAuditLogMutation';
|
|
294
|
-
export * from './
|
|
295
|
-
export * from './
|
|
296
|
-
export * from './
|
|
297
|
+
export * from './useCreateAgentThreadMutation';
|
|
298
|
+
export * from './useUpdateAgentThreadMutation';
|
|
299
|
+
export * from './useDeleteAgentThreadMutation';
|
|
300
|
+
export * from './useCreateAgentMessageMutation';
|
|
301
|
+
export * from './useUpdateAgentMessageMutation';
|
|
302
|
+
export * from './useDeleteAgentMessageMutation';
|
|
303
|
+
export * from './useCreateAgentTaskMutation';
|
|
304
|
+
export * from './useUpdateAgentTaskMutation';
|
|
305
|
+
export * from './useDeleteAgentTaskMutation';
|
|
306
|
+
export * from './useCreateRoleTypeMutation';
|
|
307
|
+
export * from './useUpdateRoleTypeMutation';
|
|
308
|
+
export * from './useDeleteRoleTypeMutation';
|
|
297
309
|
export * from './useCreateIdentityProviderMutation';
|
|
298
310
|
export * from './useCreateRefMutation';
|
|
299
311
|
export * from './useUpdateRefMutation';
|
|
@@ -301,46 +313,57 @@ export * from './useDeleteRefMutation';
|
|
|
301
313
|
export * from './useCreateStoreMutation';
|
|
302
314
|
export * from './useUpdateStoreMutation';
|
|
303
315
|
export * from './useDeleteStoreMutation';
|
|
304
|
-
export * from './
|
|
305
|
-
export * from './
|
|
306
|
-
export * from './
|
|
316
|
+
export * from './useCreateAppPermissionDefaultMutation';
|
|
317
|
+
export * from './useUpdateAppPermissionDefaultMutation';
|
|
318
|
+
export * from './useDeleteAppPermissionDefaultMutation';
|
|
319
|
+
export * from './useCreateMembershipTypeMutation';
|
|
320
|
+
export * from './useUpdateMembershipTypeMutation';
|
|
321
|
+
export * from './useDeleteMembershipTypeMutation';
|
|
307
322
|
export * from './useCreateMigrateFileMutation';
|
|
323
|
+
export * from './useCreateDevicesModuleMutation';
|
|
324
|
+
export * from './useUpdateDevicesModuleMutation';
|
|
325
|
+
export * from './useDeleteDevicesModuleMutation';
|
|
326
|
+
export * from './useCreateNodeTypeRegistryMutation';
|
|
327
|
+
export * from './useUpdateNodeTypeRegistryMutation';
|
|
328
|
+
export * from './useDeleteNodeTypeRegistryMutation';
|
|
308
329
|
export * from './useCreateAppLimitDefaultMutation';
|
|
309
330
|
export * from './useUpdateAppLimitDefaultMutation';
|
|
310
331
|
export * from './useDeleteAppLimitDefaultMutation';
|
|
311
332
|
export * from './useCreateOrgLimitDefaultMutation';
|
|
312
333
|
export * from './useUpdateOrgLimitDefaultMutation';
|
|
313
334
|
export * from './useDeleteOrgLimitDefaultMutation';
|
|
314
|
-
export * from './useCreateDevicesModuleMutation';
|
|
315
|
-
export * from './useUpdateDevicesModuleMutation';
|
|
316
|
-
export * from './useDeleteDevicesModuleMutation';
|
|
317
335
|
export * from './useCreateUserConnectedAccountMutation';
|
|
318
|
-
export * from './useCreateAppMembershipDefaultMutation';
|
|
319
|
-
export * from './useUpdateAppMembershipDefaultMutation';
|
|
320
|
-
export * from './useDeleteAppMembershipDefaultMutation';
|
|
321
|
-
export * from './useCreateOrgMembershipDefaultMutation';
|
|
322
|
-
export * from './useUpdateOrgMembershipDefaultMutation';
|
|
323
|
-
export * from './useDeleteOrgMembershipDefaultMutation';
|
|
324
336
|
export * from './useCreateCommitMutation';
|
|
325
337
|
export * from './useUpdateCommitMutation';
|
|
326
338
|
export * from './useDeleteCommitMutation';
|
|
327
339
|
export * from './useCreateRateLimitsModuleMutation';
|
|
328
340
|
export * from './useUpdateRateLimitsModuleMutation';
|
|
329
341
|
export * from './useDeleteRateLimitsModuleMutation';
|
|
330
|
-
export * from './
|
|
331
|
-
export * from './
|
|
332
|
-
export * from './
|
|
342
|
+
export * from './useCreateAppMembershipDefaultMutation';
|
|
343
|
+
export * from './useUpdateAppMembershipDefaultMutation';
|
|
344
|
+
export * from './useDeleteAppMembershipDefaultMutation';
|
|
345
|
+
export * from './useCreateOrgMembershipDefaultMutation';
|
|
346
|
+
export * from './useUpdateOrgMembershipDefaultMutation';
|
|
347
|
+
export * from './useDeleteOrgMembershipDefaultMutation';
|
|
348
|
+
export * from './useCreateAppLimitEventMutation';
|
|
349
|
+
export * from './useCreateOrgLimitEventMutation';
|
|
350
|
+
export * from './useCreatePlansModuleMutation';
|
|
351
|
+
export * from './useUpdatePlansModuleMutation';
|
|
352
|
+
export * from './useDeletePlansModuleMutation';
|
|
333
353
|
export * from './useCreateRlsModuleMutation';
|
|
334
354
|
export * from './useUpdateRlsModuleMutation';
|
|
335
355
|
export * from './useDeleteRlsModuleMutation';
|
|
336
356
|
export * from './useCreateSqlActionMutation';
|
|
337
|
-
export * from './
|
|
338
|
-
export * from './
|
|
339
|
-
export * from './
|
|
357
|
+
export * from './useCreateBillingModuleMutation';
|
|
358
|
+
export * from './useUpdateBillingModuleMutation';
|
|
359
|
+
export * from './useDeleteBillingModuleMutation';
|
|
360
|
+
export * from './useCreateAstMigrationMutation';
|
|
340
361
|
export * from './useCreateUserMutation';
|
|
341
362
|
export * from './useUpdateUserMutation';
|
|
342
363
|
export * from './useDeleteUserMutation';
|
|
343
|
-
export * from './
|
|
364
|
+
export * from './useCreateOrgMembershipSettingMutation';
|
|
365
|
+
export * from './useUpdateOrgMembershipSettingMutation';
|
|
366
|
+
export * from './useDeleteOrgMembershipSettingMutation';
|
|
344
367
|
export * from './useCreateAppMembershipMutation';
|
|
345
368
|
export * from './useUpdateAppMembershipMutation';
|
|
346
369
|
export * from './useDeleteAppMembershipMutation';
|
|
@@ -388,12 +411,11 @@ export * from './useSignInCrossOriginMutation';
|
|
|
388
411
|
export * from './useCreateUserDatabaseMutation';
|
|
389
412
|
export * from './useExtendTokenExpiresMutation';
|
|
390
413
|
export * from './useCreateApiKeyMutation';
|
|
414
|
+
export * from './useSendVerificationEmailMutation';
|
|
415
|
+
export * from './useForgotPasswordMutation';
|
|
391
416
|
export * from './useSignUpMutation';
|
|
392
417
|
export * from './useRequestCrossOriginTokenMutation';
|
|
393
418
|
export * from './useSignInMutation';
|
|
394
419
|
export * from './useProvisionTableMutation';
|
|
395
|
-
export * from './useSendVerificationEmailMutation';
|
|
396
|
-
export * from './useForgotPasswordMutation';
|
|
397
420
|
export * from './useRequestUploadUrlMutation';
|
|
398
|
-
export * from './useConfirmUploadMutation';
|
|
399
421
|
export * from './useProvisionBucketMutation';
|