@constructive-io/react 0.15.2 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +65 -47
- package/admin/hooks/invalidation.js +143 -95
- package/admin/hooks/mutation-keys.d.ts +130 -96
- package/admin/hooks/mutation-keys.js +78 -60
- package/admin/hooks/mutations/index.d.ts +32 -28
- package/admin/hooks/mutations/index.js +32 -28
- package/admin/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/{auth/hooks/mutations/useConfirmUploadMutation.js → admin/hooks/mutations/useCreateAppLimitEventMutation.js} +14 -6
- package/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.js +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgLimitEventMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +22 -18
- package/admin/hooks/queries/index.js +22 -18
- package/admin/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/admin/hooks/queries/useAppLimitEventsQuery.js +38 -0
- package/admin/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgLimitAggregateQuery.js +53 -0
- package/admin/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitAggregatesQuery.js +38 -0
- package/admin/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitEventsQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +154 -112
- package/admin/hooks/query-keys.js +90 -66
- package/admin/orm/index.d.ts +24 -23
- package/admin/orm/index.js +24 -18
- package/admin/orm/input-types.d.ts +1297 -839
- package/admin/orm/models/appLimitEvent.d.ts +32 -0
- package/admin/orm/models/appLimitEvent.js +55 -0
- package/admin/orm/models/index.d.ts +12 -9
- package/admin/orm/models/index.js +25 -19
- package/admin/orm/models/orgLimitAggregate.d.ts +56 -0
- package/admin/orm/models/orgLimitAggregate.js +100 -0
- package/admin/orm/models/orgLimitEvent.d.ts +32 -0
- package/admin/orm/models/orgLimitEvent.js +55 -0
- package/admin/orm/mutation/index.d.ts +1 -15
- package/admin/orm/mutation/index.js +0 -12
- package/admin/schema-types.d.ts +1207 -856
- package/admin/types.d.ts +96 -53
- package/auth/hooks/mutation-keys.d.ts +0 -2
- package/auth/hooks/mutation-keys.js +0 -3
- package/auth/hooks/mutations/index.d.ts +0 -1
- package/auth/hooks/mutations/index.js +0 -1
- package/auth/orm/index.d.ts +0 -5
- package/auth/orm/input-types.d.ts +0 -20
- package/auth/orm/mutation/index.d.ts +1 -15
- package/auth/orm/mutation/index.js +0 -12
- package/auth/schema-types.d.ts +0 -14
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +65 -47
- package/esm/admin/hooks/invalidation.js +144 -96
- package/esm/admin/hooks/mutation-keys.d.ts +130 -96
- package/esm/admin/hooks/mutation-keys.js +77 -59
- package/esm/admin/hooks/mutations/index.d.ts +32 -28
- package/esm/admin/hooks/mutations/index.js +32 -28
- package/esm/admin/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateAppLimitEventMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitAggregateMutation.js +31 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgLimitEventMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +22 -18
- package/esm/admin/hooks/queries/index.js +22 -18
- package/esm/admin/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useAppLimitEventsQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregateQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitAggregatesQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitEventsQuery.js +32 -0
- package/esm/admin/hooks/query-keys.d.ts +154 -112
- package/esm/admin/hooks/query-keys.js +89 -65
- package/esm/admin/orm/index.d.ts +24 -23
- package/esm/admin/orm/index.js +24 -18
- package/esm/admin/orm/input-types.d.ts +1297 -839
- package/esm/admin/orm/models/appLimitEvent.d.ts +32 -0
- package/esm/admin/orm/models/appLimitEvent.js +51 -0
- package/esm/admin/orm/models/index.d.ts +12 -9
- package/esm/admin/orm/models/index.js +12 -9
- package/esm/admin/orm/models/orgLimitAggregate.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitAggregate.js +96 -0
- package/esm/admin/orm/models/orgLimitEvent.d.ts +32 -0
- package/esm/admin/orm/models/orgLimitEvent.js +51 -0
- package/esm/admin/orm/mutation/index.d.ts +1 -15
- package/esm/admin/orm/mutation/index.js +0 -12
- package/esm/admin/schema-types.d.ts +1207 -856
- package/esm/admin/types.d.ts +96 -53
- package/esm/auth/hooks/mutation-keys.d.ts +0 -2
- package/esm/auth/hooks/mutation-keys.js +0 -3
- package/esm/auth/hooks/mutations/index.d.ts +0 -1
- package/esm/auth/hooks/mutations/index.js +0 -1
- package/esm/auth/orm/index.d.ts +0 -5
- package/esm/auth/orm/input-types.d.ts +0 -20
- package/esm/auth/orm/mutation/index.d.ts +1 -15
- package/esm/auth/orm/mutation/index.js +0 -12
- package/esm/auth/schema-types.d.ts +0 -14
- package/esm/objects/hooks/mutation-keys.d.ts +0 -2
- package/esm/objects/hooks/mutation-keys.js +0 -3
- package/esm/objects/hooks/mutations/index.d.ts +0 -1
- package/esm/objects/hooks/mutations/index.js +0 -1
- package/esm/objects/orm/index.d.ts +0 -5
- package/esm/objects/orm/input-types.d.ts +0 -20
- package/esm/objects/orm/mutation/index.d.ts +1 -15
- package/esm/objects/orm/mutation/index.js +0 -12
- package/esm/objects/schema-types.d.ts +0 -14
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +101 -47
- package/esm/public/hooks/invalidation.js +239 -95
- package/esm/public/hooks/mutation-keys.d.ts +206 -100
- package/esm/public/hooks/mutation-keys.js +125 -65
- package/esm/public/hooks/mutations/index.d.ts +50 -28
- package/esm/public/hooks/mutations/index.js +50 -28
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAppLimitEventMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateBillingModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBillingModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateNodeTypeRegistryMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateNodeTypeRegistryMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitAggregateMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitEventMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreatePlansModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreatePlansModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteBillingModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBillingModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeletePlansModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeletePlansModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateBillingModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBillingModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdatePlansModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdatePlansModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +36 -20
- package/esm/public/hooks/queries/index.js +36 -20
- package/esm/public/hooks/queries/useAgentMessageQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentMessageQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentMessagesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentMessagesQuery.js +32 -0
- package/esm/public/hooks/queries/useAgentTaskQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentTaskQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentTasksQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentTasksQuery.js +32 -0
- package/esm/public/hooks/queries/useAgentThreadQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAgentThreadQuery.js +47 -0
- package/esm/public/hooks/queries/useAgentThreadsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAgentThreadsQuery.js +32 -0
- package/esm/public/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAppLimitEventsQuery.js +32 -0
- package/esm/public/hooks/queries/useBillingModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBillingModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useBillingModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBillingModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useNodeTypeRegistriesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useNodeTypeRegistriesQuery.js +32 -0
- package/esm/public/hooks/queries/useNodeTypeRegistryQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useNodeTypeRegistryQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgLimitAggregateQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitAggregatesQuery.js +32 -0
- package/esm/public/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitEventsQuery.js +32 -0
- package/esm/public/hooks/queries/usePlansModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/usePlansModuleQuery.js +47 -0
- package/esm/public/hooks/queries/usePlansModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/usePlansModulesQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +246 -120
- package/esm/public/hooks/query-keys.js +141 -69
- package/esm/public/orm/index.d.ts +56 -43
- package/esm/public/orm/index.js +36 -18
- package/esm/public/orm/input-types.d.ts +2983 -1112
- package/esm/public/orm/input-types.js +9 -0
- package/esm/public/orm/models/agentMessage.d.ts +56 -0
- package/esm/public/orm/models/agentMessage.js +96 -0
- package/esm/public/orm/models/agentTask.d.ts +56 -0
- package/esm/public/orm/models/agentTask.js +96 -0
- package/esm/public/orm/models/agentThread.d.ts +56 -0
- package/esm/public/orm/models/agentThread.js +96 -0
- package/esm/public/orm/models/appLimitEvent.d.ts +32 -0
- package/esm/public/orm/models/appLimitEvent.js +51 -0
- package/esm/public/orm/models/billingModule.d.ts +56 -0
- package/esm/public/orm/models/billingModule.js +96 -0
- package/esm/public/orm/models/index.d.ts +18 -9
- package/esm/public/orm/models/index.js +18 -9
- package/esm/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/esm/public/orm/models/nodeTypeRegistry.js +96 -0
- package/esm/public/orm/models/orgLimitAggregate.d.ts +56 -0
- package/esm/public/orm/models/orgLimitAggregate.js +96 -0
- package/esm/public/orm/models/orgLimitEvent.d.ts +32 -0
- package/esm/public/orm/models/orgLimitEvent.js +51 -0
- package/esm/public/orm/models/plansModule.d.ts +56 -0
- package/esm/public/orm/models/plansModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +17 -31
- package/esm/public/orm/mutation/index.js +24 -36
- package/esm/public/orm/query/index.d.ts +28 -28
- package/esm/public/orm/query/index.js +48 -48
- package/esm/public/schema-types.d.ts +3948 -2833
- package/esm/public/types.d.ts +194 -77
- package/objects/hooks/mutation-keys.d.ts +0 -2
- package/objects/hooks/mutation-keys.js +0 -3
- package/objects/hooks/mutations/index.d.ts +0 -1
- package/objects/hooks/mutations/index.js +0 -1
- package/objects/orm/index.d.ts +0 -5
- package/objects/orm/input-types.d.ts +0 -20
- package/objects/orm/mutation/index.d.ts +1 -15
- package/objects/orm/mutation/index.js +0 -12
- package/objects/schema-types.d.ts +0 -14
- package/package.json +4 -4
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +101 -47
- package/public/hooks/invalidation.js +238 -94
- package/public/hooks/mutation-keys.d.ts +206 -100
- package/public/hooks/mutation-keys.js +128 -68
- package/public/hooks/mutations/index.d.ts +50 -28
- package/public/hooks/mutations/index.js +50 -28
- package/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentMessageMutation.js +34 -0
- package/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentTaskMutation.js +34 -0
- package/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAgentThreadMutation.js +34 -0
- package/public/hooks/mutations/useCreateAppLimitEventMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAppLimitEventMutation.js +34 -0
- package/public/hooks/mutations/useCreateBillingModuleMutation.d.ts +34 -0
- package/{admin/hooks/mutations/useConfirmUploadMutation.js → public/hooks/mutations/useCreateBillingModuleMutation.js} +14 -6
- package/public/hooks/mutations/useCreateNodeTypeRegistryMutation.d.ts +34 -0
- package/public/hooks/mutations/{useConfirmUploadMutation.js → useCreateNodeTypeRegistryMutation.js} +14 -6
- package/public/hooks/mutations/useCreateOrgLimitAggregateMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitAggregateMutation.js +34 -0
- package/public/hooks/mutations/useCreateOrgLimitEventMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitEventMutation.js +34 -0
- package/public/hooks/mutations/useCreatePlansModuleMutation.d.ts +34 -0
- package/{objects/hooks/mutations/useConfirmUploadMutation.js → public/hooks/mutations/useCreatePlansModuleMutation.js} +14 -6
- package/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentMessageMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentTaskMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAgentThreadMutation.js +39 -0
- package/public/hooks/mutations/useDeleteBillingModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBillingModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteNodeTypeRegistryMutation.js +39 -0
- package/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteOrgLimitAggregateMutation.js +39 -0
- package/public/hooks/mutations/useDeletePlansModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeletePlansModuleMutation.js +39 -0
- package/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentMessageMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentTaskMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAgentThreadMutation.js +40 -0
- package/public/hooks/mutations/useUpdateBillingModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBillingModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateNodeTypeRegistryMutation.js +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitAggregateMutation.js +40 -0
- package/public/hooks/mutations/useUpdatePlansModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdatePlansModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +36 -20
- package/public/hooks/queries/index.js +36 -20
- package/public/hooks/queries/useAgentMessageQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentMessageQuery.js +53 -0
- package/public/hooks/queries/useAgentMessagesQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentMessagesQuery.js +38 -0
- package/public/hooks/queries/useAgentTaskQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentTaskQuery.js +53 -0
- package/public/hooks/queries/useAgentTasksQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentTasksQuery.js +38 -0
- package/public/hooks/queries/useAgentThreadQuery.d.ts +65 -0
- package/public/hooks/queries/useAgentThreadQuery.js +53 -0
- package/public/hooks/queries/useAgentThreadsQuery.d.ts +69 -0
- package/public/hooks/queries/useAgentThreadsQuery.js +38 -0
- package/public/hooks/queries/useAppLimitEventsQuery.d.ts +69 -0
- package/public/hooks/queries/useAppLimitEventsQuery.js +38 -0
- package/public/hooks/queries/useBillingModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useBillingModuleQuery.js +53 -0
- package/public/hooks/queries/useBillingModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useBillingModulesQuery.js +38 -0
- package/public/hooks/queries/useNodeTypeRegistriesQuery.d.ts +69 -0
- package/public/hooks/queries/useNodeTypeRegistriesQuery.js +38 -0
- package/public/hooks/queries/useNodeTypeRegistryQuery.d.ts +65 -0
- package/public/hooks/queries/useNodeTypeRegistryQuery.js +53 -0
- package/public/hooks/queries/useOrgLimitAggregateQuery.d.ts +65 -0
- package/public/hooks/queries/useOrgLimitAggregateQuery.js +53 -0
- package/public/hooks/queries/useOrgLimitAggregatesQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitAggregatesQuery.js +38 -0
- package/public/hooks/queries/useOrgLimitEventsQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitEventsQuery.js +38 -0
- package/public/hooks/queries/usePlansModuleQuery.d.ts +65 -0
- package/public/hooks/queries/usePlansModuleQuery.js +53 -0
- package/public/hooks/queries/usePlansModulesQuery.d.ts +69 -0
- package/public/hooks/queries/usePlansModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +246 -120
- package/public/hooks/query-keys.js +144 -72
- package/public/orm/index.d.ts +56 -43
- package/public/orm/index.js +36 -18
- package/public/orm/input-types.d.ts +2983 -1112
- package/public/orm/input-types.js +9 -0
- package/public/orm/models/agentMessage.d.ts +56 -0
- package/public/orm/models/agentMessage.js +100 -0
- package/public/orm/models/agentTask.d.ts +56 -0
- package/public/orm/models/agentTask.js +100 -0
- package/public/orm/models/agentThread.d.ts +56 -0
- package/public/orm/models/agentThread.js +100 -0
- package/public/orm/models/appLimitEvent.d.ts +32 -0
- package/public/orm/models/appLimitEvent.js +55 -0
- package/public/orm/models/billingModule.d.ts +56 -0
- package/public/orm/models/billingModule.js +100 -0
- package/public/orm/models/index.d.ts +18 -9
- package/public/orm/models/index.js +39 -21
- package/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/public/orm/models/nodeTypeRegistry.js +100 -0
- package/public/orm/models/orgLimitAggregate.d.ts +56 -0
- package/public/orm/models/orgLimitAggregate.js +100 -0
- package/public/orm/models/orgLimitEvent.d.ts +32 -0
- package/public/orm/models/orgLimitEvent.js +55 -0
- package/public/orm/models/plansModule.d.ts +56 -0
- package/public/orm/models/plansModule.js +100 -0
- package/public/orm/mutation/index.d.ts +17 -31
- package/public/orm/mutation/index.js +24 -36
- package/public/orm/query/index.d.ts +28 -28
- package/public/orm/query/index.js +48 -48
- package/public/schema-types.d.ts +3948 -2833
- package/public/types.d.ts +194 -77
- package/admin/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/auth/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/admin/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/auth/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/objects/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/objects/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/esm/public/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useConfirmUploadMutation.js +0 -23
- package/objects/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
- package/public/hooks/mutations/useConfirmUploadMutation.d.ts +0 -20
package/esm/admin/types.d.ts
CHANGED
|
@@ -68,15 +68,21 @@ export interface AppOwnerGrant {
|
|
|
68
68
|
createdAt: string | null;
|
|
69
69
|
updatedAt: string | null;
|
|
70
70
|
}
|
|
71
|
-
export interface
|
|
71
|
+
export interface AppAchievement {
|
|
72
72
|
id: string | null;
|
|
73
|
+
actorId: string | null;
|
|
73
74
|
name: string | null;
|
|
74
|
-
|
|
75
|
+
count: number | null;
|
|
76
|
+
createdAt: string | null;
|
|
77
|
+
updatedAt: string | null;
|
|
75
78
|
}
|
|
76
|
-
export interface
|
|
79
|
+
export interface AppStep {
|
|
77
80
|
id: string | null;
|
|
81
|
+
actorId: string | null;
|
|
78
82
|
name: string | null;
|
|
79
|
-
|
|
83
|
+
count: number | null;
|
|
84
|
+
createdAt: string | null;
|
|
85
|
+
updatedAt: string | null;
|
|
80
86
|
}
|
|
81
87
|
export interface OrgAdminGrant {
|
|
82
88
|
id: string | null;
|
|
@@ -96,36 +102,25 @@ export interface OrgOwnerGrant {
|
|
|
96
102
|
createdAt: string | null;
|
|
97
103
|
updatedAt: string | null;
|
|
98
104
|
}
|
|
99
|
-
export interface
|
|
100
|
-
id:
|
|
105
|
+
export interface MembershipType {
|
|
106
|
+
id: number | null;
|
|
101
107
|
name: string | null;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
108
|
+
description: string | null;
|
|
109
|
+
prefix: string | null;
|
|
110
|
+
parentMembershipType: number | null;
|
|
111
|
+
hasUsersTableEntry: boolean | null;
|
|
105
112
|
}
|
|
106
|
-
export interface
|
|
113
|
+
export interface AppLimitDefault {
|
|
107
114
|
id: string | null;
|
|
108
|
-
actorId: string | null;
|
|
109
115
|
name: string | null;
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
updatedAt: string | null;
|
|
116
|
+
max: string | null;
|
|
117
|
+
softMax: string | null;
|
|
113
118
|
}
|
|
114
|
-
export interface
|
|
119
|
+
export interface OrgLimitDefault {
|
|
115
120
|
id: string | null;
|
|
116
|
-
actorId: string | null;
|
|
117
121
|
name: string | null;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
updatedAt: string | null;
|
|
121
|
-
}
|
|
122
|
-
export interface AppClaimedInvite {
|
|
123
|
-
id: string | null;
|
|
124
|
-
data: unknown | null;
|
|
125
|
-
senderId: string | null;
|
|
126
|
-
receiverId: string | null;
|
|
127
|
-
createdAt: string | null;
|
|
128
|
-
updatedAt: string | null;
|
|
122
|
+
max: string | null;
|
|
123
|
+
softMax: string | null;
|
|
129
124
|
}
|
|
130
125
|
export interface OrgChartEdgeGrant {
|
|
131
126
|
id: string | null;
|
|
@@ -138,21 +133,13 @@ export interface OrgChartEdgeGrant {
|
|
|
138
133
|
positionLevel: number | null;
|
|
139
134
|
createdAt: string | null;
|
|
140
135
|
}
|
|
141
|
-
export interface
|
|
136
|
+
export interface AppClaimedInvite {
|
|
142
137
|
id: string | null;
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
}
|
|
149
|
-
export interface MembershipType {
|
|
150
|
-
id: number | null;
|
|
151
|
-
name: string | null;
|
|
152
|
-
description: string | null;
|
|
153
|
-
prefix: string | null;
|
|
154
|
-
parentMembershipType: number | null;
|
|
155
|
-
hasUsersTableEntry: boolean | null;
|
|
138
|
+
data: unknown | null;
|
|
139
|
+
senderId: string | null;
|
|
140
|
+
receiverId: string | null;
|
|
141
|
+
createdAt: string | null;
|
|
142
|
+
updatedAt: string | null;
|
|
156
143
|
}
|
|
157
144
|
export interface AppGrant {
|
|
158
145
|
id: string | null;
|
|
@@ -190,6 +177,28 @@ export interface OrgClaimedInvite {
|
|
|
190
177
|
updatedAt: string | null;
|
|
191
178
|
entityId: string | null;
|
|
192
179
|
}
|
|
180
|
+
export interface AppLimitEvent {
|
|
181
|
+
name: string | null;
|
|
182
|
+
actorId: string | null;
|
|
183
|
+
entityId: string | null;
|
|
184
|
+
eventType: string | null;
|
|
185
|
+
delta: string | null;
|
|
186
|
+
numBefore: string | null;
|
|
187
|
+
numAfter: string | null;
|
|
188
|
+
maxAtEvent: string | null;
|
|
189
|
+
reason: string | null;
|
|
190
|
+
}
|
|
191
|
+
export interface OrgLimitEvent {
|
|
192
|
+
name: string | null;
|
|
193
|
+
actorId: string | null;
|
|
194
|
+
entityId: string | null;
|
|
195
|
+
eventType: string | null;
|
|
196
|
+
delta: string | null;
|
|
197
|
+
numBefore: string | null;
|
|
198
|
+
numAfter: string | null;
|
|
199
|
+
maxAtEvent: string | null;
|
|
200
|
+
reason: string | null;
|
|
201
|
+
}
|
|
193
202
|
export interface OrgGrant {
|
|
194
203
|
id: string | null;
|
|
195
204
|
permissions: string | null;
|
|
@@ -210,6 +219,26 @@ export interface OrgChartEdge {
|
|
|
210
219
|
positionTitle: string | null;
|
|
211
220
|
positionLevel: number | null;
|
|
212
221
|
}
|
|
222
|
+
export interface AppLimit {
|
|
223
|
+
id: string | null;
|
|
224
|
+
name: string | null;
|
|
225
|
+
actorId: string | null;
|
|
226
|
+
num: string | null;
|
|
227
|
+
max: string | null;
|
|
228
|
+
softMax: string | null;
|
|
229
|
+
windowStart: string | null;
|
|
230
|
+
windowDuration: string | null;
|
|
231
|
+
}
|
|
232
|
+
export interface OrgLimitAggregate {
|
|
233
|
+
id: string | null;
|
|
234
|
+
name: string | null;
|
|
235
|
+
entityId: string | null;
|
|
236
|
+
num: string | null;
|
|
237
|
+
max: string | null;
|
|
238
|
+
softMax: string | null;
|
|
239
|
+
windowStart: string | null;
|
|
240
|
+
windowDuration: string | null;
|
|
241
|
+
}
|
|
213
242
|
export interface OrgMemberProfile {
|
|
214
243
|
id: string | null;
|
|
215
244
|
createdAt: string | null;
|
|
@@ -223,19 +252,16 @@ export interface OrgMemberProfile {
|
|
|
223
252
|
bio: string | null;
|
|
224
253
|
profilePicture: ConstructiveInternalTypeImage | null;
|
|
225
254
|
}
|
|
226
|
-
export interface
|
|
255
|
+
export interface OrgLimit {
|
|
227
256
|
id: string | null;
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
257
|
+
name: string | null;
|
|
258
|
+
actorId: string | null;
|
|
259
|
+
num: string | null;
|
|
260
|
+
max: string | null;
|
|
261
|
+
softMax: string | null;
|
|
262
|
+
windowStart: string | null;
|
|
263
|
+
windowDuration: string | null;
|
|
232
264
|
entityId: string | null;
|
|
233
|
-
deleteMemberCascadeChildren: boolean | null;
|
|
234
|
-
createChildCascadeOwners: boolean | null;
|
|
235
|
-
createChildCascadeAdmins: boolean | null;
|
|
236
|
-
createChildCascadeMembers: boolean | null;
|
|
237
|
-
allowExternalMembers: boolean | null;
|
|
238
|
-
populateMemberEmail: boolean | null;
|
|
239
265
|
}
|
|
240
266
|
export interface AppLevel {
|
|
241
267
|
id: string | null;
|
|
@@ -256,10 +282,27 @@ export interface AppInvite {
|
|
|
256
282
|
inviteCount: number | null;
|
|
257
283
|
multiple: boolean | null;
|
|
258
284
|
data: unknown | null;
|
|
285
|
+
profileId: string | null;
|
|
259
286
|
expiresAt: string | null;
|
|
260
287
|
createdAt: string | null;
|
|
261
288
|
updatedAt: string | null;
|
|
262
289
|
}
|
|
290
|
+
export interface OrgMembershipSetting {
|
|
291
|
+
id: string | null;
|
|
292
|
+
createdAt: string | null;
|
|
293
|
+
updatedAt: string | null;
|
|
294
|
+
createdBy: string | null;
|
|
295
|
+
updatedBy: string | null;
|
|
296
|
+
entityId: string | null;
|
|
297
|
+
deleteMemberCascadeChildren: boolean | null;
|
|
298
|
+
createChildCascadeOwners: boolean | null;
|
|
299
|
+
createChildCascadeAdmins: boolean | null;
|
|
300
|
+
createChildCascadeMembers: boolean | null;
|
|
301
|
+
allowExternalMembers: boolean | null;
|
|
302
|
+
inviteProfileAssignmentMode: string | null;
|
|
303
|
+
populateMemberEmail: boolean | null;
|
|
304
|
+
limitAllocationMode: string | null;
|
|
305
|
+
}
|
|
263
306
|
export interface OrgInvite {
|
|
264
307
|
id: string | null;
|
|
265
308
|
email: ConstructiveInternalTypeEmail | null;
|
|
@@ -271,6 +314,7 @@ export interface OrgInvite {
|
|
|
271
314
|
inviteCount: number | null;
|
|
272
315
|
multiple: boolean | null;
|
|
273
316
|
data: unknown | null;
|
|
317
|
+
profileId: string | null;
|
|
274
318
|
expiresAt: string | null;
|
|
275
319
|
createdAt: string | null;
|
|
276
320
|
updatedAt: string | null;
|
|
@@ -287,7 +331,6 @@ export interface AppMembership {
|
|
|
287
331
|
isDisabled: boolean | null;
|
|
288
332
|
isVerified: boolean | null;
|
|
289
333
|
isActive: boolean | null;
|
|
290
|
-
isExternal: boolean | null;
|
|
291
334
|
isOwner: boolean | null;
|
|
292
335
|
isAdmin: boolean | null;
|
|
293
336
|
permissions: string | null;
|
|
@@ -80,7 +80,6 @@ export declare const customMutationKeys: {
|
|
|
80
80
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
81
81
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
82
82
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
83
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
84
83
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
85
84
|
};
|
|
86
85
|
/**
|
|
@@ -183,7 +182,6 @@ export declare const mutationKeys: {
|
|
|
183
182
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
184
183
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
185
184
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
186
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
187
185
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
188
186
|
};
|
|
189
187
|
};
|
|
@@ -135,9 +135,6 @@ export const customMutationKeys = {
|
|
|
135
135
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
136
136
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
137
137
|
: ['mutation', 'requestUploadUrl'],
|
|
138
|
-
/** Mutation key for confirmUpload */ confirmUpload: (identifier) => identifier
|
|
139
|
-
? ['mutation', 'confirmUpload', identifier]
|
|
140
|
-
: ['mutation', 'confirmUpload'],
|
|
141
138
|
/** Mutation key for provisionBucket */ provisionBucket: (identifier) => identifier
|
|
142
139
|
? ['mutation', 'provisionBucket', identifier]
|
|
143
140
|
: ['mutation', 'provisionBucket'],
|
|
@@ -48,5 +48,4 @@ export * from './useCreateApiKeyMutation';
|
|
|
48
48
|
export * from './useForgotPasswordMutation';
|
|
49
49
|
export * from './useSendVerificationEmailMutation';
|
|
50
50
|
export * from './useRequestUploadUrlMutation';
|
|
51
|
-
export * from './useConfirmUploadMutation';
|
|
52
51
|
export * from './useProvisionBucketMutation';
|
|
@@ -48,5 +48,4 @@ export * from './useCreateApiKeyMutation';
|
|
|
48
48
|
export * from './useForgotPasswordMutation';
|
|
49
49
|
export * from './useSendVerificationEmailMutation';
|
|
50
50
|
export * from './useRequestUploadUrlMutation';
|
|
51
|
-
export * from './useConfirmUploadMutation';
|
|
52
51
|
export * from './useProvisionBucketMutation';
|
package/esm/auth/orm/index.d.ts
CHANGED
|
@@ -186,11 +186,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
186
186
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestUploadUrlPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
187
187
|
requestUploadUrl: import("./select-types").InferSelectResult<import("./input-types").RequestUploadUrlPayload, S> | null;
|
|
188
188
|
}>;
|
|
189
|
-
confirmUpload: <S extends import("./input-types").ConfirmUploadPayloadSelect>(args: import("./mutation").ConfirmUploadVariables, options: {
|
|
190
|
-
select: S;
|
|
191
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ConfirmUploadPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
192
|
-
confirmUpload: import("./select-types").InferSelectResult<import("./input-types").ConfirmUploadPayload, S> | null;
|
|
193
|
-
}>;
|
|
194
189
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
195
190
|
select: S;
|
|
196
191
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -1181,10 +1181,6 @@ export interface RequestUploadUrlInput {
|
|
|
1181
1181
|
/** Original filename (optional, for display and Content-Disposition) */
|
|
1182
1182
|
filename?: string;
|
|
1183
1183
|
}
|
|
1184
|
-
export interface ConfirmUploadInput {
|
|
1185
|
-
/** The file ID returned by requestUploadUrl */
|
|
1186
|
-
fileId: string;
|
|
1187
|
-
}
|
|
1188
1184
|
export interface ProvisionBucketInput {
|
|
1189
1185
|
/** The logical bucket key (e.g., "public", "private") */
|
|
1190
1186
|
bucketKey: string;
|
|
@@ -2252,8 +2248,6 @@ export interface RequestUploadUrlPayload {
|
|
|
2252
2248
|
deduplicated: boolean;
|
|
2253
2249
|
/** Presigned URL expiry time (null if deduplicated) */
|
|
2254
2250
|
expiresAt?: string | null;
|
|
2255
|
-
/** File status — 'pending' for fresh uploads, 'ready' or 'processed' for deduplicated files. Clients can use this to know immediately whether the file is usable. */
|
|
2256
|
-
status: string;
|
|
2257
2251
|
}
|
|
2258
2252
|
export type RequestUploadUrlPayloadSelect = {
|
|
2259
2253
|
uploadUrl?: boolean;
|
|
@@ -2261,20 +2255,6 @@ export type RequestUploadUrlPayloadSelect = {
|
|
|
2261
2255
|
key?: boolean;
|
|
2262
2256
|
deduplicated?: boolean;
|
|
2263
2257
|
expiresAt?: boolean;
|
|
2264
|
-
status?: boolean;
|
|
2265
|
-
};
|
|
2266
|
-
export interface ConfirmUploadPayload {
|
|
2267
|
-
/** The confirmed file ID */
|
|
2268
|
-
fileId: string;
|
|
2269
|
-
/** New file status */
|
|
2270
|
-
status: string;
|
|
2271
|
-
/** Whether confirmation succeeded */
|
|
2272
|
-
success: boolean;
|
|
2273
|
-
}
|
|
2274
|
-
export type ConfirmUploadPayloadSelect = {
|
|
2275
|
-
fileId?: boolean;
|
|
2276
|
-
status?: boolean;
|
|
2277
|
-
success?: boolean;
|
|
2278
2258
|
};
|
|
2279
2259
|
export interface ProvisionBucketPayload {
|
|
2280
2260
|
/** Whether provisioning succeeded */
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ProvisionNewUserInput, ResetPasswordInput, SignInCrossOriginInput, SignUpInput, RequestCrossOriginTokenInput, SignInInput, ExtendTokenExpiresInput, CreateApiKeyInput, ForgotPasswordInput, SendVerificationEmailInput, RequestUploadUrlInput,
|
|
9
|
+
import type { SignOutInput, SendAccountDeletionEmailInput, CheckPasswordInput, DisconnectAccountInput, RevokeApiKeyInput, RevokeSessionInput, VerifyPasswordInput, VerifyTotpInput, ConfirmDeleteAccountInput, SetPasswordInput, VerifyEmailInput, ProvisionNewUserInput, ResetPasswordInput, SignInCrossOriginInput, SignUpInput, RequestCrossOriginTokenInput, SignInInput, ExtendTokenExpiresInput, CreateApiKeyInput, ForgotPasswordInput, SendVerificationEmailInput, RequestUploadUrlInput, ProvisionBucketInput, SignOutPayload, SendAccountDeletionEmailPayload, CheckPasswordPayload, DisconnectAccountPayload, RevokeApiKeyPayload, RevokeSessionPayload, VerifyPasswordPayload, VerifyTotpPayload, ConfirmDeleteAccountPayload, SetPasswordPayload, VerifyEmailPayload, ProvisionNewUserPayload, ResetPasswordPayload, SignInCrossOriginPayload, SignUpPayload, RequestCrossOriginTokenPayload, SignInPayload, ExtendTokenExpiresPayload, CreateApiKeyPayload, ForgotPasswordPayload, SendVerificationEmailPayload, RequestUploadUrlPayload, ProvisionBucketPayload, SignOutPayloadSelect, SendAccountDeletionEmailPayloadSelect, CheckPasswordPayloadSelect, DisconnectAccountPayloadSelect, RevokeApiKeyPayloadSelect, RevokeSessionPayloadSelect, VerifyPasswordPayloadSelect, VerifyTotpPayloadSelect, ConfirmDeleteAccountPayloadSelect, SetPasswordPayloadSelect, VerifyEmailPayloadSelect, ProvisionNewUserPayloadSelect, ResetPasswordPayloadSelect, SignInCrossOriginPayloadSelect, SignUpPayloadSelect, RequestCrossOriginTokenPayloadSelect, SignInPayloadSelect, ExtendTokenExpiresPayloadSelect, CreateApiKeyPayloadSelect, ForgotPasswordPayloadSelect, SendVerificationEmailPayloadSelect, RequestUploadUrlPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface SignOutVariables {
|
|
11
11
|
input: SignOutInput;
|
|
12
12
|
}
|
|
@@ -80,15 +80,6 @@ existing file ID and deduplicated=true with no uploadUrl.
|
|
|
80
80
|
export interface RequestUploadUrlVariables {
|
|
81
81
|
input: RequestUploadUrlInput;
|
|
82
82
|
}
|
|
83
|
-
/**
|
|
84
|
-
* Variables for confirmUpload
|
|
85
|
-
* Confirm that a file has been uploaded to S3.
|
|
86
|
-
Verifies the object exists in S3, checks content-type,
|
|
87
|
-
and transitions the file status from 'pending' to 'ready'.
|
|
88
|
-
*/
|
|
89
|
-
export interface ConfirmUploadVariables {
|
|
90
|
-
input: ConfirmUploadInput;
|
|
91
|
-
}
|
|
92
83
|
/**
|
|
93
84
|
* Variables for provisionBucket
|
|
94
85
|
* Provision an S3 bucket for a logical bucket in the database.
|
|
@@ -210,11 +201,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
210
201
|
} & StrictSelect<S, RequestUploadUrlPayloadSelect>) => QueryBuilder<{
|
|
211
202
|
requestUploadUrl: InferSelectResult<RequestUploadUrlPayload, S> | null;
|
|
212
203
|
}>;
|
|
213
|
-
confirmUpload: <S extends ConfirmUploadPayloadSelect>(args: ConfirmUploadVariables, options: {
|
|
214
|
-
select: S;
|
|
215
|
-
} & StrictSelect<S, ConfirmUploadPayloadSelect>) => QueryBuilder<{
|
|
216
|
-
confirmUpload: InferSelectResult<ConfirmUploadPayload, S> | null;
|
|
217
|
-
}>;
|
|
218
204
|
provisionBucket: <S extends ProvisionBucketPayloadSelect>(args: ProvisionBucketVariables, options: {
|
|
219
205
|
select: S;
|
|
220
206
|
} & StrictSelect<S, ProvisionBucketPayloadSelect>) => QueryBuilder<{
|
|
@@ -266,18 +266,6 @@ export function createMutationOperations(client) {
|
|
|
266
266
|
},
|
|
267
267
|
], connectionFieldsMap, 'RequestUploadUrlPayload'),
|
|
268
268
|
}),
|
|
269
|
-
confirmUpload: (args, options) => new QueryBuilder({
|
|
270
|
-
client,
|
|
271
|
-
operation: 'mutation',
|
|
272
|
-
operationName: 'ConfirmUpload',
|
|
273
|
-
fieldName: 'confirmUpload',
|
|
274
|
-
...buildCustomDocument('mutation', 'ConfirmUpload', 'confirmUpload', options.select, args, [
|
|
275
|
-
{
|
|
276
|
-
name: 'input',
|
|
277
|
-
type: 'ConfirmUploadInput!',
|
|
278
|
-
},
|
|
279
|
-
], connectionFieldsMap, 'ConfirmUploadPayload'),
|
|
280
|
-
}),
|
|
281
269
|
provisionBucket: (args, options) => new QueryBuilder({
|
|
282
270
|
client,
|
|
283
271
|
operation: 'mutation',
|
|
@@ -1123,10 +1123,6 @@ export interface RequestUploadUrlInput {
|
|
|
1123
1123
|
/** Original filename (optional, for display and Content-Disposition) */
|
|
1124
1124
|
filename?: string;
|
|
1125
1125
|
}
|
|
1126
|
-
export interface ConfirmUploadInput {
|
|
1127
|
-
/** The file ID returned by requestUploadUrl */
|
|
1128
|
-
fileId: string;
|
|
1129
|
-
}
|
|
1130
1126
|
export interface ProvisionBucketInput {
|
|
1131
1127
|
/** The logical bucket key (e.g., "public", "private") */
|
|
1132
1128
|
bucketKey: string;
|
|
@@ -1431,16 +1427,6 @@ export interface RequestUploadUrlPayload {
|
|
|
1431
1427
|
deduplicated: boolean;
|
|
1432
1428
|
/** Presigned URL expiry time (null if deduplicated) */
|
|
1433
1429
|
expiresAt?: string | null;
|
|
1434
|
-
/** File status — 'pending' for fresh uploads, 'ready' or 'processed' for deduplicated files. Clients can use this to know immediately whether the file is usable. */
|
|
1435
|
-
status: string;
|
|
1436
|
-
}
|
|
1437
|
-
export interface ConfirmUploadPayload {
|
|
1438
|
-
/** The confirmed file ID */
|
|
1439
|
-
fileId: string;
|
|
1440
|
-
/** New file status */
|
|
1441
|
-
status: string;
|
|
1442
|
-
/** Whether confirmation succeeded */
|
|
1443
|
-
success: boolean;
|
|
1444
1430
|
}
|
|
1445
1431
|
export interface ProvisionBucketPayload {
|
|
1446
1432
|
/** Whether provisioning succeeded */
|
|
@@ -43,7 +43,6 @@ export declare const customMutationKeys: {
|
|
|
43
43
|
/** Mutation key for updateNodeAtPath */ readonly updateNodeAtPath: (identifier?: string) => readonly ["mutation", "updateNodeAtPath", string] | readonly ["mutation", "updateNodeAtPath"];
|
|
44
44
|
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
45
45
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
46
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
47
46
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
48
47
|
};
|
|
49
48
|
/**
|
|
@@ -109,7 +108,6 @@ export declare const mutationKeys: {
|
|
|
109
108
|
/** Mutation key for updateNodeAtPath */ readonly updateNodeAtPath: (identifier?: string) => readonly ["mutation", "updateNodeAtPath", string] | readonly ["mutation", "updateNodeAtPath"];
|
|
110
109
|
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
111
110
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
112
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
113
111
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
114
112
|
};
|
|
115
113
|
};
|
|
@@ -76,9 +76,6 @@ export const customMutationKeys = {
|
|
|
76
76
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
77
77
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
78
78
|
: ['mutation', 'requestUploadUrl'],
|
|
79
|
-
/** Mutation key for confirmUpload */ confirmUpload: (identifier) => identifier
|
|
80
|
-
? ['mutation', 'confirmUpload', identifier]
|
|
81
|
-
: ['mutation', 'confirmUpload'],
|
|
82
79
|
/** Mutation key for provisionBucket */ provisionBucket: (identifier) => identifier
|
|
83
80
|
? ['mutation', 'provisionBucket', identifier]
|
|
84
81
|
: ['mutation', 'provisionBucket'],
|
|
@@ -25,5 +25,4 @@ export * from './useInsertNodeAtPathMutation';
|
|
|
25
25
|
export * from './useUpdateNodeAtPathMutation';
|
|
26
26
|
export * from './useSetAndCommitMutation';
|
|
27
27
|
export * from './useRequestUploadUrlMutation';
|
|
28
|
-
export * from './useConfirmUploadMutation';
|
|
29
28
|
export * from './useProvisionBucketMutation';
|
|
@@ -25,5 +25,4 @@ export * from './useInsertNodeAtPathMutation';
|
|
|
25
25
|
export * from './useUpdateNodeAtPathMutation';
|
|
26
26
|
export * from './useSetAndCommitMutation';
|
|
27
27
|
export * from './useRequestUploadUrlMutation';
|
|
28
|
-
export * from './useConfirmUploadMutation';
|
|
29
28
|
export * from './useProvisionBucketMutation';
|
|
@@ -108,11 +108,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
108
108
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestUploadUrlPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
109
109
|
requestUploadUrl: import("./select-types").InferSelectResult<import("./input-types").RequestUploadUrlPayload, S> | null;
|
|
110
110
|
}>;
|
|
111
|
-
confirmUpload: <S extends import("./input-types").ConfirmUploadPayloadSelect>(args: import("./mutation").ConfirmUploadVariables, options: {
|
|
112
|
-
select: S;
|
|
113
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ConfirmUploadPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
114
|
-
confirmUpload: import("./select-types").InferSelectResult<import("./input-types").ConfirmUploadPayload, S> | null;
|
|
115
|
-
}>;
|
|
116
111
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
117
112
|
select: S;
|
|
118
113
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -648,10 +648,6 @@ export interface RequestUploadUrlInput {
|
|
|
648
648
|
/** Original filename (optional, for display and Content-Disposition) */
|
|
649
649
|
filename?: string;
|
|
650
650
|
}
|
|
651
|
-
export interface ConfirmUploadInput {
|
|
652
|
-
/** The file ID returned by requestUploadUrl */
|
|
653
|
-
fileId: string;
|
|
654
|
-
}
|
|
655
651
|
export interface ProvisionBucketInput {
|
|
656
652
|
/** The logical bucket key (e.g., "public", "private") */
|
|
657
653
|
bucketKey: string;
|
|
@@ -751,8 +747,6 @@ export interface RequestUploadUrlPayload {
|
|
|
751
747
|
deduplicated: boolean;
|
|
752
748
|
/** Presigned URL expiry time (null if deduplicated) */
|
|
753
749
|
expiresAt?: string | null;
|
|
754
|
-
/** File status — 'pending' for fresh uploads, 'ready' or 'processed' for deduplicated files. Clients can use this to know immediately whether the file is usable. */
|
|
755
|
-
status: string;
|
|
756
750
|
}
|
|
757
751
|
export type RequestUploadUrlPayloadSelect = {
|
|
758
752
|
uploadUrl?: boolean;
|
|
@@ -760,20 +754,6 @@ export type RequestUploadUrlPayloadSelect = {
|
|
|
760
754
|
key?: boolean;
|
|
761
755
|
deduplicated?: boolean;
|
|
762
756
|
expiresAt?: boolean;
|
|
763
|
-
status?: boolean;
|
|
764
|
-
};
|
|
765
|
-
export interface ConfirmUploadPayload {
|
|
766
|
-
/** The confirmed file ID */
|
|
767
|
-
fileId: string;
|
|
768
|
-
/** New file status */
|
|
769
|
-
status: string;
|
|
770
|
-
/** Whether confirmation succeeded */
|
|
771
|
-
success: boolean;
|
|
772
|
-
}
|
|
773
|
-
export type ConfirmUploadPayloadSelect = {
|
|
774
|
-
fileId?: boolean;
|
|
775
|
-
status?: boolean;
|
|
776
|
-
success?: boolean;
|
|
777
757
|
};
|
|
778
758
|
export interface ProvisionBucketPayload {
|
|
779
759
|
/** Whether provisioning succeeded */
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { FreezeObjectsInput, InitEmptyRepoInput, RemoveNodeAtPathInput, SetDataAtPathInput, SetPropsAndCommitInput, InsertNodeAtPathInput, UpdateNodeAtPathInput, SetAndCommitInput, RequestUploadUrlInput,
|
|
9
|
+
import type { FreezeObjectsInput, InitEmptyRepoInput, RemoveNodeAtPathInput, SetDataAtPathInput, SetPropsAndCommitInput, InsertNodeAtPathInput, UpdateNodeAtPathInput, SetAndCommitInput, RequestUploadUrlInput, ProvisionBucketInput, FreezeObjectsPayload, InitEmptyRepoPayload, RemoveNodeAtPathPayload, SetDataAtPathPayload, SetPropsAndCommitPayload, InsertNodeAtPathPayload, UpdateNodeAtPathPayload, SetAndCommitPayload, RequestUploadUrlPayload, ProvisionBucketPayload, FreezeObjectsPayloadSelect, InitEmptyRepoPayloadSelect, RemoveNodeAtPathPayloadSelect, SetDataAtPathPayloadSelect, SetPropsAndCommitPayloadSelect, InsertNodeAtPathPayloadSelect, UpdateNodeAtPathPayloadSelect, SetAndCommitPayloadSelect, RequestUploadUrlPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
10
10
|
export interface FreezeObjectsVariables {
|
|
11
11
|
input: FreezeObjectsInput;
|
|
12
12
|
}
|
|
@@ -41,15 +41,6 @@ existing file ID and deduplicated=true with no uploadUrl.
|
|
|
41
41
|
export interface RequestUploadUrlVariables {
|
|
42
42
|
input: RequestUploadUrlInput;
|
|
43
43
|
}
|
|
44
|
-
/**
|
|
45
|
-
* Variables for confirmUpload
|
|
46
|
-
* Confirm that a file has been uploaded to S3.
|
|
47
|
-
Verifies the object exists in S3, checks content-type,
|
|
48
|
-
and transitions the file status from 'pending' to 'ready'.
|
|
49
|
-
*/
|
|
50
|
-
export interface ConfirmUploadVariables {
|
|
51
|
-
input: ConfirmUploadInput;
|
|
52
|
-
}
|
|
53
44
|
/**
|
|
54
45
|
* Variables for provisionBucket
|
|
55
46
|
* Provision an S3 bucket for a logical bucket in the database.
|
|
@@ -106,11 +97,6 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
106
97
|
} & StrictSelect<S, RequestUploadUrlPayloadSelect>) => QueryBuilder<{
|
|
107
98
|
requestUploadUrl: InferSelectResult<RequestUploadUrlPayload, S> | null;
|
|
108
99
|
}>;
|
|
109
|
-
confirmUpload: <S extends ConfirmUploadPayloadSelect>(args: ConfirmUploadVariables, options: {
|
|
110
|
-
select: S;
|
|
111
|
-
} & StrictSelect<S, ConfirmUploadPayloadSelect>) => QueryBuilder<{
|
|
112
|
-
confirmUpload: InferSelectResult<ConfirmUploadPayload, S> | null;
|
|
113
|
-
}>;
|
|
114
100
|
provisionBucket: <S extends ProvisionBucketPayloadSelect>(args: ProvisionBucketVariables, options: {
|
|
115
101
|
select: S;
|
|
116
102
|
} & StrictSelect<S, ProvisionBucketPayloadSelect>) => QueryBuilder<{
|
|
@@ -110,18 +110,6 @@ export function createMutationOperations(client) {
|
|
|
110
110
|
},
|
|
111
111
|
], connectionFieldsMap, 'RequestUploadUrlPayload'),
|
|
112
112
|
}),
|
|
113
|
-
confirmUpload: (args, options) => new QueryBuilder({
|
|
114
|
-
client,
|
|
115
|
-
operation: 'mutation',
|
|
116
|
-
operationName: 'ConfirmUpload',
|
|
117
|
-
fieldName: 'confirmUpload',
|
|
118
|
-
...buildCustomDocument('mutation', 'ConfirmUpload', 'confirmUpload', options.select, args, [
|
|
119
|
-
{
|
|
120
|
-
name: 'input',
|
|
121
|
-
type: 'ConfirmUploadInput!',
|
|
122
|
-
},
|
|
123
|
-
], connectionFieldsMap, 'ConfirmUploadPayload'),
|
|
124
|
-
}),
|
|
125
113
|
provisionBucket: (args, options) => new QueryBuilder({
|
|
126
114
|
client,
|
|
127
115
|
operation: 'mutation',
|
|
@@ -354,10 +354,6 @@ export interface RequestUploadUrlInput {
|
|
|
354
354
|
/** Original filename (optional, for display and Content-Disposition) */
|
|
355
355
|
filename?: string;
|
|
356
356
|
}
|
|
357
|
-
export interface ConfirmUploadInput {
|
|
358
|
-
/** The file ID returned by requestUploadUrl */
|
|
359
|
-
fileId: string;
|
|
360
|
-
}
|
|
361
357
|
export interface ProvisionBucketInput {
|
|
362
358
|
/** The logical bucket key (e.g., "public", "private") */
|
|
363
359
|
bucketKey: string;
|
|
@@ -519,16 +515,6 @@ export interface RequestUploadUrlPayload {
|
|
|
519
515
|
deduplicated: boolean;
|
|
520
516
|
/** Presigned URL expiry time (null if deduplicated) */
|
|
521
517
|
expiresAt?: string | null;
|
|
522
|
-
/** File status — 'pending' for fresh uploads, 'ready' or 'processed' for deduplicated files. Clients can use this to know immediately whether the file is usable. */
|
|
523
|
-
status: string;
|
|
524
|
-
}
|
|
525
|
-
export interface ConfirmUploadPayload {
|
|
526
|
-
/** The confirmed file ID */
|
|
527
|
-
fileId: string;
|
|
528
|
-
/** New file status */
|
|
529
|
-
status: string;
|
|
530
|
-
/** Whether confirmation succeeded */
|
|
531
|
-
success: boolean;
|
|
532
518
|
}
|
|
533
519
|
export interface ProvisionBucketPayload {
|
|
534
520
|
/** Whether provisioning succeeded */
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, AppPermission, OrgPermission, Object, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, IdentityProvidersModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, WebauthnAuthModule, NotificationsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, OrgLimitAggregate, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, WebauthnCredential, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AgentThread, AgentMessage, AgentTask, RoleType, IdentityProvider, Ref, Store, AppPermissionDefault, MembershipType, MigrateFile, DevicesModule, NodeTypeRegistry, AppLimitDefault, OrgLimitDefault, UserConnectedAccount, Commit, RateLimitsModule, AppMembershipDefault, OrgMembershipDefault, AppLimitEvent, OrgLimitEvent, PlansModule, RlsModule, SqlAction, BillingModule, AstMigration, User, OrgMembershipSetting, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, AppPermission, OrgPermission, Object, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, IdentityProvidersModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, WebauthnAuthModule, NotificationsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, OrgLimitAggregate, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, WebauthnCredential, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AgentThread, AgentMessage, AgentTask, RoleType, IdentityProvider, Ref, Store, AppPermissionDefault, MembershipType, MigrateFile, DevicesModule, NodeTypeRegistry, AppLimitDefault, OrgLimitDefault, UserConnectedAccount, Commit, RateLimitsModule, AppMembershipDefault, OrgMembershipDefault, AppLimitEvent, OrgLimitEvent, PlansModule, RlsModule, SqlAction, BillingModule, AstMigration, User, OrgMembershipSetting, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|