@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
|
@@ -63,17 +63,17 @@ export declare const appOwnerGrantMutationKeys: {
|
|
|
63
63
|
/** Update appOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appownergrant", "update", string | number];
|
|
64
64
|
/** Delete appOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appownergrant", "delete", string | number];
|
|
65
65
|
};
|
|
66
|
-
export declare const
|
|
67
|
-
/** All
|
|
68
|
-
/** Create
|
|
69
|
-
/** Update
|
|
70
|
-
/** Delete
|
|
66
|
+
export declare const appAchievementMutationKeys: {
|
|
67
|
+
/** All appAchievement mutation keys */ readonly all: readonly ["mutation", "appachievement"];
|
|
68
|
+
/** Create appAchievement mutation key */ readonly create: () => readonly ["mutation", "appachievement", "create"];
|
|
69
|
+
/** Update appAchievement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appachievement", "update", string | number];
|
|
70
|
+
/** Delete appAchievement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appachievement", "delete", string | number];
|
|
71
71
|
};
|
|
72
|
-
export declare const
|
|
73
|
-
/** All
|
|
74
|
-
/** Create
|
|
75
|
-
/** Update
|
|
76
|
-
/** Delete
|
|
72
|
+
export declare const appStepMutationKeys: {
|
|
73
|
+
/** All appStep mutation keys */ readonly all: readonly ["mutation", "appstep"];
|
|
74
|
+
/** Create appStep mutation key */ readonly create: () => readonly ["mutation", "appstep", "create"];
|
|
75
|
+
/** Update appStep mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appstep", "update", string | number];
|
|
76
|
+
/** Delete appStep mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appstep", "delete", string | number];
|
|
77
77
|
};
|
|
78
78
|
export declare const orgAdminGrantMutationKeys: {
|
|
79
79
|
/** All orgAdminGrant mutation keys */ readonly all: readonly ["mutation", "orgadmingrant"];
|
|
@@ -87,29 +87,23 @@ export declare const orgOwnerGrantMutationKeys: {
|
|
|
87
87
|
/** Update orgOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgownergrant", "update", string | number];
|
|
88
88
|
/** Delete orgOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgownergrant", "delete", string | number];
|
|
89
89
|
};
|
|
90
|
-
export declare const
|
|
91
|
-
/** All
|
|
92
|
-
/** Create
|
|
93
|
-
/** Update
|
|
94
|
-
/** Delete
|
|
95
|
-
};
|
|
96
|
-
export declare const appAchievementMutationKeys: {
|
|
97
|
-
/** All appAchievement mutation keys */ readonly all: readonly ["mutation", "appachievement"];
|
|
98
|
-
/** Create appAchievement mutation key */ readonly create: () => readonly ["mutation", "appachievement", "create"];
|
|
99
|
-
/** Update appAchievement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appachievement", "update", string | number];
|
|
100
|
-
/** Delete appAchievement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appachievement", "delete", string | number];
|
|
90
|
+
export declare const membershipTypeMutationKeys: {
|
|
91
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
92
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
93
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
94
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
101
95
|
};
|
|
102
|
-
export declare const
|
|
103
|
-
/** All
|
|
104
|
-
/** Create
|
|
105
|
-
/** Update
|
|
106
|
-
/** Delete
|
|
96
|
+
export declare const appLimitDefaultMutationKeys: {
|
|
97
|
+
/** All appLimitDefault mutation keys */ readonly all: readonly ["mutation", "applimitdefault"];
|
|
98
|
+
/** Create appLimitDefault mutation key */ readonly create: () => readonly ["mutation", "applimitdefault", "create"];
|
|
99
|
+
/** Update appLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitdefault", "update", string | number];
|
|
100
|
+
/** Delete appLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitdefault", "delete", string | number];
|
|
107
101
|
};
|
|
108
|
-
export declare const
|
|
109
|
-
/** All
|
|
110
|
-
/** Create
|
|
111
|
-
/** Update
|
|
112
|
-
/** Delete
|
|
102
|
+
export declare const orgLimitDefaultMutationKeys: {
|
|
103
|
+
/** All orgLimitDefault mutation keys */ readonly all: readonly ["mutation", "orglimitdefault"];
|
|
104
|
+
/** Create orgLimitDefault mutation key */ readonly create: () => readonly ["mutation", "orglimitdefault", "create"];
|
|
105
|
+
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
106
|
+
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
113
107
|
};
|
|
114
108
|
export declare const orgChartEdgeGrantMutationKeys: {
|
|
115
109
|
/** All orgChartEdgeGrant mutation keys */ readonly all: readonly ["mutation", "orgchartedgegrant"];
|
|
@@ -117,17 +111,11 @@ export declare const orgChartEdgeGrantMutationKeys: {
|
|
|
117
111
|
/** Update orgChartEdgeGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgchartedgegrant", "update", string | number];
|
|
118
112
|
/** Delete orgChartEdgeGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgchartedgegrant", "delete", string | number];
|
|
119
113
|
};
|
|
120
|
-
export declare const
|
|
121
|
-
/** All
|
|
122
|
-
/** Create
|
|
123
|
-
/** Update
|
|
124
|
-
/** Delete
|
|
125
|
-
};
|
|
126
|
-
export declare const membershipTypeMutationKeys: {
|
|
127
|
-
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
128
|
-
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
129
|
-
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
130
|
-
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
114
|
+
export declare const appClaimedInviteMutationKeys: {
|
|
115
|
+
/** All appClaimedInvite mutation keys */ readonly all: readonly ["mutation", "appclaimedinvite"];
|
|
116
|
+
/** Create appClaimedInvite mutation key */ readonly create: () => readonly ["mutation", "appclaimedinvite", "create"];
|
|
117
|
+
/** Update appClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appclaimedinvite", "update", string | number];
|
|
118
|
+
/** Delete appClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appclaimedinvite", "delete", string | number];
|
|
131
119
|
};
|
|
132
120
|
export declare const appGrantMutationKeys: {
|
|
133
121
|
/** All appGrant mutation keys */ readonly all: readonly ["mutation", "appgrant"];
|
|
@@ -153,6 +141,18 @@ export declare const orgClaimedInviteMutationKeys: {
|
|
|
153
141
|
/** Update orgClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "update", string | number];
|
|
154
142
|
/** Delete orgClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "delete", string | number];
|
|
155
143
|
};
|
|
144
|
+
export declare const appLimitEventMutationKeys: {
|
|
145
|
+
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
146
|
+
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
147
|
+
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
148
|
+
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
149
|
+
};
|
|
150
|
+
export declare const orgLimitEventMutationKeys: {
|
|
151
|
+
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
152
|
+
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
153
|
+
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
154
|
+
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
155
|
+
};
|
|
156
156
|
export declare const orgGrantMutationKeys: {
|
|
157
157
|
/** All orgGrant mutation keys */ readonly all: readonly ["mutation", "orggrant"];
|
|
158
158
|
/** Create orgGrant mutation key */ readonly create: () => readonly ["mutation", "orggrant", "create"];
|
|
@@ -165,17 +165,29 @@ export declare const orgChartEdgeMutationKeys: {
|
|
|
165
165
|
/** Update orgChartEdge mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgchartedge", "update", string | number];
|
|
166
166
|
/** Delete orgChartEdge mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgchartedge", "delete", string | number];
|
|
167
167
|
};
|
|
168
|
+
export declare const appLimitMutationKeys: {
|
|
169
|
+
/** All appLimit mutation keys */ readonly all: readonly ["mutation", "applimit"];
|
|
170
|
+
/** Create appLimit mutation key */ readonly create: () => readonly ["mutation", "applimit", "create"];
|
|
171
|
+
/** Update appLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimit", "update", string | number];
|
|
172
|
+
/** Delete appLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimit", "delete", string | number];
|
|
173
|
+
};
|
|
174
|
+
export declare const orgLimitAggregateMutationKeys: {
|
|
175
|
+
/** All orgLimitAggregate mutation keys */ readonly all: readonly ["mutation", "orglimitaggregate"];
|
|
176
|
+
/** Create orgLimitAggregate mutation key */ readonly create: () => readonly ["mutation", "orglimitaggregate", "create"];
|
|
177
|
+
/** Update orgLimitAggregate mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitaggregate", "update", string | number];
|
|
178
|
+
/** Delete orgLimitAggregate mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitaggregate", "delete", string | number];
|
|
179
|
+
};
|
|
168
180
|
export declare const orgMemberProfileMutationKeys: {
|
|
169
181
|
/** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
|
|
170
182
|
/** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
|
|
171
183
|
/** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
|
|
172
184
|
/** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
|
|
173
185
|
};
|
|
174
|
-
export declare const
|
|
175
|
-
/** All
|
|
176
|
-
/** Create
|
|
177
|
-
/** Update
|
|
178
|
-
/** Delete
|
|
186
|
+
export declare const orgLimitMutationKeys: {
|
|
187
|
+
/** All orgLimit mutation keys */ readonly all: readonly ["mutation", "orglimit"];
|
|
188
|
+
/** Create orgLimit mutation key */ readonly create: () => readonly ["mutation", "orglimit", "create"];
|
|
189
|
+
/** Update orgLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimit", "update", string | number];
|
|
190
|
+
/** Delete orgLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimit", "delete", string | number];
|
|
179
191
|
};
|
|
180
192
|
export declare const appLevelMutationKeys: {
|
|
181
193
|
/** All appLevel mutation keys */ readonly all: readonly ["mutation", "applevel"];
|
|
@@ -189,6 +201,12 @@ export declare const appInviteMutationKeys: {
|
|
|
189
201
|
/** Update appInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appinvite", "update", string | number];
|
|
190
202
|
/** Delete appInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appinvite", "delete", string | number];
|
|
191
203
|
};
|
|
204
|
+
export declare const orgMembershipSettingMutationKeys: {
|
|
205
|
+
/** All orgMembershipSetting mutation keys */ readonly all: readonly ["mutation", "orgmembershipsetting"];
|
|
206
|
+
/** Create orgMembershipSetting mutation key */ readonly create: () => readonly ["mutation", "orgmembershipsetting", "create"];
|
|
207
|
+
/** Update orgMembershipSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "update", string | number];
|
|
208
|
+
/** Delete orgMembershipSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "delete", string | number];
|
|
209
|
+
};
|
|
192
210
|
export declare const orgInviteMutationKeys: {
|
|
193
211
|
/** All orgInvite mutation keys */ readonly all: readonly ["mutation", "orginvite"];
|
|
194
212
|
/** Create orgInvite mutation key */ readonly create: () => readonly ["mutation", "orginvite", "create"];
|
|
@@ -211,7 +229,6 @@ export declare const customMutationKeys: {
|
|
|
211
229
|
/** Mutation key for submitAppInviteCode */ readonly submitAppInviteCode: (identifier?: string) => readonly ["mutation", "submitAppInviteCode", string] | readonly ["mutation", "submitAppInviteCode"];
|
|
212
230
|
/** Mutation key for submitOrgInviteCode */ readonly submitOrgInviteCode: (identifier?: string) => readonly ["mutation", "submitOrgInviteCode", string] | readonly ["mutation", "submitOrgInviteCode"];
|
|
213
231
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
214
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
215
232
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
216
233
|
};
|
|
217
234
|
/**
|
|
@@ -297,17 +314,17 @@ export declare const mutationKeys: {
|
|
|
297
314
|
/** Update appOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appownergrant", "update", string | number];
|
|
298
315
|
/** Delete appOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appownergrant", "delete", string | number];
|
|
299
316
|
};
|
|
300
|
-
readonly
|
|
301
|
-
/** All
|
|
302
|
-
/** Create
|
|
303
|
-
/** Update
|
|
304
|
-
/** Delete
|
|
317
|
+
readonly appAchievement: {
|
|
318
|
+
/** All appAchievement mutation keys */ readonly all: readonly ["mutation", "appachievement"];
|
|
319
|
+
/** Create appAchievement mutation key */ readonly create: () => readonly ["mutation", "appachievement", "create"];
|
|
320
|
+
/** Update appAchievement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appachievement", "update", string | number];
|
|
321
|
+
/** Delete appAchievement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appachievement", "delete", string | number];
|
|
305
322
|
};
|
|
306
|
-
readonly
|
|
307
|
-
/** All
|
|
308
|
-
/** Create
|
|
309
|
-
/** Update
|
|
310
|
-
/** Delete
|
|
323
|
+
readonly appStep: {
|
|
324
|
+
/** All appStep mutation keys */ readonly all: readonly ["mutation", "appstep"];
|
|
325
|
+
/** Create appStep mutation key */ readonly create: () => readonly ["mutation", "appstep", "create"];
|
|
326
|
+
/** Update appStep mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appstep", "update", string | number];
|
|
327
|
+
/** Delete appStep mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appstep", "delete", string | number];
|
|
311
328
|
};
|
|
312
329
|
readonly orgAdminGrant: {
|
|
313
330
|
/** All orgAdminGrant mutation keys */ readonly all: readonly ["mutation", "orgadmingrant"];
|
|
@@ -321,29 +338,23 @@ export declare const mutationKeys: {
|
|
|
321
338
|
/** Update orgOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgownergrant", "update", string | number];
|
|
322
339
|
/** Delete orgOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgownergrant", "delete", string | number];
|
|
323
340
|
};
|
|
324
|
-
readonly
|
|
325
|
-
/** All
|
|
326
|
-
/** Create
|
|
327
|
-
/** Update
|
|
328
|
-
/** Delete
|
|
329
|
-
};
|
|
330
|
-
readonly appAchievement: {
|
|
331
|
-
/** All appAchievement mutation keys */ readonly all: readonly ["mutation", "appachievement"];
|
|
332
|
-
/** Create appAchievement mutation key */ readonly create: () => readonly ["mutation", "appachievement", "create"];
|
|
333
|
-
/** Update appAchievement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appachievement", "update", string | number];
|
|
334
|
-
/** Delete appAchievement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appachievement", "delete", string | number];
|
|
341
|
+
readonly membershipType: {
|
|
342
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
343
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
344
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
345
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
335
346
|
};
|
|
336
|
-
readonly
|
|
337
|
-
/** All
|
|
338
|
-
/** Create
|
|
339
|
-
/** Update
|
|
340
|
-
/** Delete
|
|
347
|
+
readonly appLimitDefault: {
|
|
348
|
+
/** All appLimitDefault mutation keys */ readonly all: readonly ["mutation", "applimitdefault"];
|
|
349
|
+
/** Create appLimitDefault mutation key */ readonly create: () => readonly ["mutation", "applimitdefault", "create"];
|
|
350
|
+
/** Update appLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitdefault", "update", string | number];
|
|
351
|
+
/** Delete appLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitdefault", "delete", string | number];
|
|
341
352
|
};
|
|
342
|
-
readonly
|
|
343
|
-
/** All
|
|
344
|
-
/** Create
|
|
345
|
-
/** Update
|
|
346
|
-
/** Delete
|
|
353
|
+
readonly orgLimitDefault: {
|
|
354
|
+
/** All orgLimitDefault mutation keys */ readonly all: readonly ["mutation", "orglimitdefault"];
|
|
355
|
+
/** Create orgLimitDefault mutation key */ readonly create: () => readonly ["mutation", "orglimitdefault", "create"];
|
|
356
|
+
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
357
|
+
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
347
358
|
};
|
|
348
359
|
readonly orgChartEdgeGrant: {
|
|
349
360
|
/** All orgChartEdgeGrant mutation keys */ readonly all: readonly ["mutation", "orgchartedgegrant"];
|
|
@@ -351,17 +362,11 @@ export declare const mutationKeys: {
|
|
|
351
362
|
/** Update orgChartEdgeGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgchartedgegrant", "update", string | number];
|
|
352
363
|
/** Delete orgChartEdgeGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgchartedgegrant", "delete", string | number];
|
|
353
364
|
};
|
|
354
|
-
readonly
|
|
355
|
-
/** All
|
|
356
|
-
/** Create
|
|
357
|
-
/** Update
|
|
358
|
-
/** Delete
|
|
359
|
-
};
|
|
360
|
-
readonly membershipType: {
|
|
361
|
-
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
362
|
-
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
363
|
-
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
364
|
-
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
365
|
+
readonly appClaimedInvite: {
|
|
366
|
+
/** All appClaimedInvite mutation keys */ readonly all: readonly ["mutation", "appclaimedinvite"];
|
|
367
|
+
/** Create appClaimedInvite mutation key */ readonly create: () => readonly ["mutation", "appclaimedinvite", "create"];
|
|
368
|
+
/** Update appClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appclaimedinvite", "update", string | number];
|
|
369
|
+
/** Delete appClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appclaimedinvite", "delete", string | number];
|
|
365
370
|
};
|
|
366
371
|
readonly appGrant: {
|
|
367
372
|
/** All appGrant mutation keys */ readonly all: readonly ["mutation", "appgrant"];
|
|
@@ -387,6 +392,18 @@ export declare const mutationKeys: {
|
|
|
387
392
|
/** Update orgClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "update", string | number];
|
|
388
393
|
/** Delete orgClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "delete", string | number];
|
|
389
394
|
};
|
|
395
|
+
readonly appLimitEvent: {
|
|
396
|
+
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
397
|
+
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
398
|
+
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
399
|
+
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
400
|
+
};
|
|
401
|
+
readonly orgLimitEvent: {
|
|
402
|
+
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
403
|
+
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
404
|
+
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
405
|
+
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
406
|
+
};
|
|
390
407
|
readonly orgGrant: {
|
|
391
408
|
/** All orgGrant mutation keys */ readonly all: readonly ["mutation", "orggrant"];
|
|
392
409
|
/** Create orgGrant mutation key */ readonly create: () => readonly ["mutation", "orggrant", "create"];
|
|
@@ -399,17 +416,29 @@ export declare const mutationKeys: {
|
|
|
399
416
|
/** Update orgChartEdge mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgchartedge", "update", string | number];
|
|
400
417
|
/** Delete orgChartEdge mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgchartedge", "delete", string | number];
|
|
401
418
|
};
|
|
419
|
+
readonly appLimit: {
|
|
420
|
+
/** All appLimit mutation keys */ readonly all: readonly ["mutation", "applimit"];
|
|
421
|
+
/** Create appLimit mutation key */ readonly create: () => readonly ["mutation", "applimit", "create"];
|
|
422
|
+
/** Update appLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimit", "update", string | number];
|
|
423
|
+
/** Delete appLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimit", "delete", string | number];
|
|
424
|
+
};
|
|
425
|
+
readonly orgLimitAggregate: {
|
|
426
|
+
/** All orgLimitAggregate mutation keys */ readonly all: readonly ["mutation", "orglimitaggregate"];
|
|
427
|
+
/** Create orgLimitAggregate mutation key */ readonly create: () => readonly ["mutation", "orglimitaggregate", "create"];
|
|
428
|
+
/** Update orgLimitAggregate mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitaggregate", "update", string | number];
|
|
429
|
+
/** Delete orgLimitAggregate mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitaggregate", "delete", string | number];
|
|
430
|
+
};
|
|
402
431
|
readonly orgMemberProfile: {
|
|
403
432
|
/** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
|
|
404
433
|
/** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
|
|
405
434
|
/** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
|
|
406
435
|
/** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
|
|
407
436
|
};
|
|
408
|
-
readonly
|
|
409
|
-
/** All
|
|
410
|
-
/** Create
|
|
411
|
-
/** Update
|
|
412
|
-
/** Delete
|
|
437
|
+
readonly orgLimit: {
|
|
438
|
+
/** All orgLimit mutation keys */ readonly all: readonly ["mutation", "orglimit"];
|
|
439
|
+
/** Create orgLimit mutation key */ readonly create: () => readonly ["mutation", "orglimit", "create"];
|
|
440
|
+
/** Update orgLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimit", "update", string | number];
|
|
441
|
+
/** Delete orgLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimit", "delete", string | number];
|
|
413
442
|
};
|
|
414
443
|
readonly appLevel: {
|
|
415
444
|
/** All appLevel mutation keys */ readonly all: readonly ["mutation", "applevel"];
|
|
@@ -423,6 +452,12 @@ export declare const mutationKeys: {
|
|
|
423
452
|
/** Update appInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appinvite", "update", string | number];
|
|
424
453
|
/** Delete appInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appinvite", "delete", string | number];
|
|
425
454
|
};
|
|
455
|
+
readonly orgMembershipSetting: {
|
|
456
|
+
/** All orgMembershipSetting mutation keys */ readonly all: readonly ["mutation", "orgmembershipsetting"];
|
|
457
|
+
/** Create orgMembershipSetting mutation key */ readonly create: () => readonly ["mutation", "orgmembershipsetting", "create"];
|
|
458
|
+
/** Update orgMembershipSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "update", string | number];
|
|
459
|
+
/** Delete orgMembershipSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "delete", string | number];
|
|
460
|
+
};
|
|
426
461
|
readonly orgInvite: {
|
|
427
462
|
/** All orgInvite mutation keys */ readonly all: readonly ["mutation", "orginvite"];
|
|
428
463
|
/** Create orgInvite mutation key */ readonly create: () => readonly ["mutation", "orginvite", "create"];
|
|
@@ -445,7 +480,6 @@ export declare const mutationKeys: {
|
|
|
445
480
|
/** Mutation key for submitAppInviteCode */ readonly submitAppInviteCode: (identifier?: string) => readonly ["mutation", "submitAppInviteCode", string] | readonly ["mutation", "submitAppInviteCode"];
|
|
446
481
|
/** Mutation key for submitOrgInviteCode */ readonly submitOrgInviteCode: (identifier?: string) => readonly ["mutation", "submitOrgInviteCode", string] | readonly ["mutation", "submitOrgInviteCode"];
|
|
447
482
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
448
|
-
/** Mutation key for confirmUpload */ readonly confirmUpload: (identifier?: string) => readonly ["mutation", "confirmUpload", string] | readonly ["mutation", "confirmUpload"];
|
|
449
483
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
450
484
|
};
|
|
451
485
|
};
|
|
@@ -78,17 +78,17 @@ export const appOwnerGrantMutationKeys = {
|
|
|
78
78
|
/** Update appOwnerGrant mutation key */ update: (id) => ['mutation', 'appownergrant', 'update', id],
|
|
79
79
|
/** Delete appOwnerGrant mutation key */ delete: (id) => ['mutation', 'appownergrant', 'delete', id],
|
|
80
80
|
};
|
|
81
|
-
export const
|
|
82
|
-
/** All
|
|
83
|
-
/** Create
|
|
84
|
-
/** Update
|
|
85
|
-
/** Delete
|
|
81
|
+
export const appAchievementMutationKeys = {
|
|
82
|
+
/** All appAchievement mutation keys */ all: ['mutation', 'appachievement'],
|
|
83
|
+
/** Create appAchievement mutation key */ create: () => ['mutation', 'appachievement', 'create'],
|
|
84
|
+
/** Update appAchievement mutation key */ update: (id) => ['mutation', 'appachievement', 'update', id],
|
|
85
|
+
/** Delete appAchievement mutation key */ delete: (id) => ['mutation', 'appachievement', 'delete', id],
|
|
86
86
|
};
|
|
87
|
-
export const
|
|
88
|
-
/** All
|
|
89
|
-
/** Create
|
|
90
|
-
/** Update
|
|
91
|
-
/** Delete
|
|
87
|
+
export const appStepMutationKeys = {
|
|
88
|
+
/** All appStep mutation keys */ all: ['mutation', 'appstep'],
|
|
89
|
+
/** Create appStep mutation key */ create: () => ['mutation', 'appstep', 'create'],
|
|
90
|
+
/** Update appStep mutation key */ update: (id) => ['mutation', 'appstep', 'update', id],
|
|
91
|
+
/** Delete appStep mutation key */ delete: (id) => ['mutation', 'appstep', 'delete', id],
|
|
92
92
|
};
|
|
93
93
|
export const orgAdminGrantMutationKeys = {
|
|
94
94
|
/** All orgAdminGrant mutation keys */ all: ['mutation', 'orgadmingrant'],
|
|
@@ -102,29 +102,23 @@ export const orgOwnerGrantMutationKeys = {
|
|
|
102
102
|
/** Update orgOwnerGrant mutation key */ update: (id) => ['mutation', 'orgownergrant', 'update', id],
|
|
103
103
|
/** Delete orgOwnerGrant mutation key */ delete: (id) => ['mutation', 'orgownergrant', 'delete', id],
|
|
104
104
|
};
|
|
105
|
-
export const
|
|
106
|
-
/** All
|
|
107
|
-
/** Create
|
|
108
|
-
/** Update
|
|
109
|
-
/** Delete
|
|
110
|
-
};
|
|
111
|
-
export const appAchievementMutationKeys = {
|
|
112
|
-
/** All appAchievement mutation keys */ all: ['mutation', 'appachievement'],
|
|
113
|
-
/** Create appAchievement mutation key */ create: () => ['mutation', 'appachievement', 'create'],
|
|
114
|
-
/** Update appAchievement mutation key */ update: (id) => ['mutation', 'appachievement', 'update', id],
|
|
115
|
-
/** Delete appAchievement mutation key */ delete: (id) => ['mutation', 'appachievement', 'delete', id],
|
|
105
|
+
export const membershipTypeMutationKeys = {
|
|
106
|
+
/** All membershipType mutation keys */ all: ['mutation', 'membershiptype'],
|
|
107
|
+
/** Create membershipType mutation key */ create: () => ['mutation', 'membershiptype', 'create'],
|
|
108
|
+
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
109
|
+
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
116
110
|
};
|
|
117
|
-
export const
|
|
118
|
-
/** All
|
|
119
|
-
/** Create
|
|
120
|
-
/** Update
|
|
121
|
-
/** Delete
|
|
111
|
+
export const appLimitDefaultMutationKeys = {
|
|
112
|
+
/** All appLimitDefault mutation keys */ all: ['mutation', 'applimitdefault'],
|
|
113
|
+
/** Create appLimitDefault mutation key */ create: () => ['mutation', 'applimitdefault', 'create'],
|
|
114
|
+
/** Update appLimitDefault mutation key */ update: (id) => ['mutation', 'applimitdefault', 'update', id],
|
|
115
|
+
/** Delete appLimitDefault mutation key */ delete: (id) => ['mutation', 'applimitdefault', 'delete', id],
|
|
122
116
|
};
|
|
123
|
-
export const
|
|
124
|
-
/** All
|
|
125
|
-
/** Create
|
|
126
|
-
/** Update
|
|
127
|
-
/** Delete
|
|
117
|
+
export const orgLimitDefaultMutationKeys = {
|
|
118
|
+
/** All orgLimitDefault mutation keys */ all: ['mutation', 'orglimitdefault'],
|
|
119
|
+
/** Create orgLimitDefault mutation key */ create: () => ['mutation', 'orglimitdefault', 'create'],
|
|
120
|
+
/** Update orgLimitDefault mutation key */ update: (id) => ['mutation', 'orglimitdefault', 'update', id],
|
|
121
|
+
/** Delete orgLimitDefault mutation key */ delete: (id) => ['mutation', 'orglimitdefault', 'delete', id],
|
|
128
122
|
};
|
|
129
123
|
export const orgChartEdgeGrantMutationKeys = {
|
|
130
124
|
/** All orgChartEdgeGrant mutation keys */ all: ['mutation', 'orgchartedgegrant'],
|
|
@@ -132,17 +126,11 @@ export const orgChartEdgeGrantMutationKeys = {
|
|
|
132
126
|
/** Update orgChartEdgeGrant mutation key */ update: (id) => ['mutation', 'orgchartedgegrant', 'update', id],
|
|
133
127
|
/** Delete orgChartEdgeGrant mutation key */ delete: (id) => ['mutation', 'orgchartedgegrant', 'delete', id],
|
|
134
128
|
};
|
|
135
|
-
export const
|
|
136
|
-
/** All
|
|
137
|
-
/** Create
|
|
138
|
-
/** Update
|
|
139
|
-
/** Delete
|
|
140
|
-
};
|
|
141
|
-
export const membershipTypeMutationKeys = {
|
|
142
|
-
/** All membershipType mutation keys */ all: ['mutation', 'membershiptype'],
|
|
143
|
-
/** Create membershipType mutation key */ create: () => ['mutation', 'membershiptype', 'create'],
|
|
144
|
-
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
145
|
-
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
129
|
+
export const appClaimedInviteMutationKeys = {
|
|
130
|
+
/** All appClaimedInvite mutation keys */ all: ['mutation', 'appclaimedinvite'],
|
|
131
|
+
/** Create appClaimedInvite mutation key */ create: () => ['mutation', 'appclaimedinvite', 'create'],
|
|
132
|
+
/** Update appClaimedInvite mutation key */ update: (id) => ['mutation', 'appclaimedinvite', 'update', id],
|
|
133
|
+
/** Delete appClaimedInvite mutation key */ delete: (id) => ['mutation', 'appclaimedinvite', 'delete', id],
|
|
146
134
|
};
|
|
147
135
|
export const appGrantMutationKeys = {
|
|
148
136
|
/** All appGrant mutation keys */ all: ['mutation', 'appgrant'],
|
|
@@ -168,6 +156,18 @@ export const orgClaimedInviteMutationKeys = {
|
|
|
168
156
|
/** Update orgClaimedInvite mutation key */ update: (id) => ['mutation', 'orgclaimedinvite', 'update', id],
|
|
169
157
|
/** Delete orgClaimedInvite mutation key */ delete: (id) => ['mutation', 'orgclaimedinvite', 'delete', id],
|
|
170
158
|
};
|
|
159
|
+
export const appLimitEventMutationKeys = {
|
|
160
|
+
/** All appLimitEvent mutation keys */ all: ['mutation', 'applimitevent'],
|
|
161
|
+
/** Create appLimitEvent mutation key */ create: () => ['mutation', 'applimitevent', 'create'],
|
|
162
|
+
/** Update appLimitEvent mutation key */ update: (id) => ['mutation', 'applimitevent', 'update', id],
|
|
163
|
+
/** Delete appLimitEvent mutation key */ delete: (id) => ['mutation', 'applimitevent', 'delete', id],
|
|
164
|
+
};
|
|
165
|
+
export const orgLimitEventMutationKeys = {
|
|
166
|
+
/** All orgLimitEvent mutation keys */ all: ['mutation', 'orglimitevent'],
|
|
167
|
+
/** Create orgLimitEvent mutation key */ create: () => ['mutation', 'orglimitevent', 'create'],
|
|
168
|
+
/** Update orgLimitEvent mutation key */ update: (id) => ['mutation', 'orglimitevent', 'update', id],
|
|
169
|
+
/** Delete orgLimitEvent mutation key */ delete: (id) => ['mutation', 'orglimitevent', 'delete', id],
|
|
170
|
+
};
|
|
171
171
|
export const orgGrantMutationKeys = {
|
|
172
172
|
/** All orgGrant mutation keys */ all: ['mutation', 'orggrant'],
|
|
173
173
|
/** Create orgGrant mutation key */ create: () => ['mutation', 'orggrant', 'create'],
|
|
@@ -180,17 +180,29 @@ export const orgChartEdgeMutationKeys = {
|
|
|
180
180
|
/** Update orgChartEdge mutation key */ update: (id) => ['mutation', 'orgchartedge', 'update', id],
|
|
181
181
|
/** Delete orgChartEdge mutation key */ delete: (id) => ['mutation', 'orgchartedge', 'delete', id],
|
|
182
182
|
};
|
|
183
|
+
export const appLimitMutationKeys = {
|
|
184
|
+
/** All appLimit mutation keys */ all: ['mutation', 'applimit'],
|
|
185
|
+
/** Create appLimit mutation key */ create: () => ['mutation', 'applimit', 'create'],
|
|
186
|
+
/** Update appLimit mutation key */ update: (id) => ['mutation', 'applimit', 'update', id],
|
|
187
|
+
/** Delete appLimit mutation key */ delete: (id) => ['mutation', 'applimit', 'delete', id],
|
|
188
|
+
};
|
|
189
|
+
export const orgLimitAggregateMutationKeys = {
|
|
190
|
+
/** All orgLimitAggregate mutation keys */ all: ['mutation', 'orglimitaggregate'],
|
|
191
|
+
/** Create orgLimitAggregate mutation key */ create: () => ['mutation', 'orglimitaggregate', 'create'],
|
|
192
|
+
/** Update orgLimitAggregate mutation key */ update: (id) => ['mutation', 'orglimitaggregate', 'update', id],
|
|
193
|
+
/** Delete orgLimitAggregate mutation key */ delete: (id) => ['mutation', 'orglimitaggregate', 'delete', id],
|
|
194
|
+
};
|
|
183
195
|
export const orgMemberProfileMutationKeys = {
|
|
184
196
|
/** All orgMemberProfile mutation keys */ all: ['mutation', 'orgmemberprofile'],
|
|
185
197
|
/** Create orgMemberProfile mutation key */ create: () => ['mutation', 'orgmemberprofile', 'create'],
|
|
186
198
|
/** Update orgMemberProfile mutation key */ update: (id) => ['mutation', 'orgmemberprofile', 'update', id],
|
|
187
199
|
/** Delete orgMemberProfile mutation key */ delete: (id) => ['mutation', 'orgmemberprofile', 'delete', id],
|
|
188
200
|
};
|
|
189
|
-
export const
|
|
190
|
-
/** All
|
|
191
|
-
/** Create
|
|
192
|
-
/** Update
|
|
193
|
-
/** Delete
|
|
201
|
+
export const orgLimitMutationKeys = {
|
|
202
|
+
/** All orgLimit mutation keys */ all: ['mutation', 'orglimit'],
|
|
203
|
+
/** Create orgLimit mutation key */ create: () => ['mutation', 'orglimit', 'create'],
|
|
204
|
+
/** Update orgLimit mutation key */ update: (id) => ['mutation', 'orglimit', 'update', id],
|
|
205
|
+
/** Delete orgLimit mutation key */ delete: (id) => ['mutation', 'orglimit', 'delete', id],
|
|
194
206
|
};
|
|
195
207
|
export const appLevelMutationKeys = {
|
|
196
208
|
/** All appLevel mutation keys */ all: ['mutation', 'applevel'],
|
|
@@ -204,6 +216,12 @@ export const appInviteMutationKeys = {
|
|
|
204
216
|
/** Update appInvite mutation key */ update: (id) => ['mutation', 'appinvite', 'update', id],
|
|
205
217
|
/** Delete appInvite mutation key */ delete: (id) => ['mutation', 'appinvite', 'delete', id],
|
|
206
218
|
};
|
|
219
|
+
export const orgMembershipSettingMutationKeys = {
|
|
220
|
+
/** All orgMembershipSetting mutation keys */ all: ['mutation', 'orgmembershipsetting'],
|
|
221
|
+
/** Create orgMembershipSetting mutation key */ create: () => ['mutation', 'orgmembershipsetting', 'create'],
|
|
222
|
+
/** Update orgMembershipSetting mutation key */ update: (id) => ['mutation', 'orgmembershipsetting', 'update', id],
|
|
223
|
+
/** Delete orgMembershipSetting mutation key */ delete: (id) => ['mutation', 'orgmembershipsetting', 'delete', id],
|
|
224
|
+
};
|
|
207
225
|
export const orgInviteMutationKeys = {
|
|
208
226
|
/** All orgInvite mutation keys */ all: ['mutation', 'orginvite'],
|
|
209
227
|
/** Create orgInvite mutation key */ create: () => ['mutation', 'orginvite', 'create'],
|
|
@@ -235,9 +253,6 @@ export const customMutationKeys = {
|
|
|
235
253
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
236
254
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
237
255
|
: ['mutation', 'requestUploadUrl'],
|
|
238
|
-
/** Mutation key for confirmUpload */ confirmUpload: (identifier) => identifier
|
|
239
|
-
? ['mutation', 'confirmUpload', identifier]
|
|
240
|
-
: ['mutation', 'confirmUpload'],
|
|
241
256
|
/** Mutation key for provisionBucket */ provisionBucket: (identifier) => identifier
|
|
242
257
|
? ['mutation', 'provisionBucket', identifier]
|
|
243
258
|
: ['mutation', 'provisionBucket'],
|
|
@@ -275,27 +290,30 @@ export const mutationKeys = {
|
|
|
275
290
|
orgPermissionDefault: orgPermissionDefaultMutationKeys,
|
|
276
291
|
appAdminGrant: appAdminGrantMutationKeys,
|
|
277
292
|
appOwnerGrant: appOwnerGrantMutationKeys,
|
|
278
|
-
appLimitDefault: appLimitDefaultMutationKeys,
|
|
279
|
-
orgLimitDefault: orgLimitDefaultMutationKeys,
|
|
280
|
-
orgAdminGrant: orgAdminGrantMutationKeys,
|
|
281
|
-
orgOwnerGrant: orgOwnerGrantMutationKeys,
|
|
282
|
-
appLimit: appLimitMutationKeys,
|
|
283
293
|
appAchievement: appAchievementMutationKeys,
|
|
284
294
|
appStep: appStepMutationKeys,
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
orgLimit: orgLimitMutationKeys,
|
|
295
|
+
orgAdminGrant: orgAdminGrantMutationKeys,
|
|
296
|
+
orgOwnerGrant: orgOwnerGrantMutationKeys,
|
|
288
297
|
membershipType: membershipTypeMutationKeys,
|
|
298
|
+
appLimitDefault: appLimitDefaultMutationKeys,
|
|
299
|
+
orgLimitDefault: orgLimitDefaultMutationKeys,
|
|
300
|
+
orgChartEdgeGrant: orgChartEdgeGrantMutationKeys,
|
|
301
|
+
appClaimedInvite: appClaimedInviteMutationKeys,
|
|
289
302
|
appGrant: appGrantMutationKeys,
|
|
290
303
|
appMembershipDefault: appMembershipDefaultMutationKeys,
|
|
291
304
|
orgMembershipDefault: orgMembershipDefaultMutationKeys,
|
|
292
305
|
orgClaimedInvite: orgClaimedInviteMutationKeys,
|
|
306
|
+
appLimitEvent: appLimitEventMutationKeys,
|
|
307
|
+
orgLimitEvent: orgLimitEventMutationKeys,
|
|
293
308
|
orgGrant: orgGrantMutationKeys,
|
|
294
309
|
orgChartEdge: orgChartEdgeMutationKeys,
|
|
310
|
+
appLimit: appLimitMutationKeys,
|
|
311
|
+
orgLimitAggregate: orgLimitAggregateMutationKeys,
|
|
295
312
|
orgMemberProfile: orgMemberProfileMutationKeys,
|
|
296
|
-
|
|
313
|
+
orgLimit: orgLimitMutationKeys,
|
|
297
314
|
appLevel: appLevelMutationKeys,
|
|
298
315
|
appInvite: appInviteMutationKeys,
|
|
316
|
+
orgMembershipSetting: orgMembershipSettingMutationKeys,
|
|
299
317
|
orgInvite: orgInviteMutationKeys,
|
|
300
318
|
appMembership: appMembershipMutationKeys,
|
|
301
319
|
orgMembership: orgMembershipMutationKeys,
|