@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
|
@@ -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
|
};
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* DO NOT EDIT - changes will be overwritten
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.mutationKeys = exports.customMutationKeys = exports.orgMembershipMutationKeys = exports.appMembershipMutationKeys = exports.orgInviteMutationKeys = exports.appInviteMutationKeys = exports.appLevelMutationKeys = exports.
|
|
8
|
+
exports.mutationKeys = exports.customMutationKeys = exports.orgMembershipMutationKeys = exports.appMembershipMutationKeys = exports.orgInviteMutationKeys = exports.orgMembershipSettingMutationKeys = exports.appInviteMutationKeys = exports.appLevelMutationKeys = exports.orgLimitMutationKeys = exports.orgMemberProfileMutationKeys = exports.orgLimitAggregateMutationKeys = exports.appLimitMutationKeys = exports.orgChartEdgeMutationKeys = exports.orgGrantMutationKeys = exports.orgLimitEventMutationKeys = exports.appLimitEventMutationKeys = exports.orgClaimedInviteMutationKeys = exports.orgMembershipDefaultMutationKeys = exports.appMembershipDefaultMutationKeys = exports.appGrantMutationKeys = exports.appClaimedInviteMutationKeys = exports.orgChartEdgeGrantMutationKeys = exports.orgLimitDefaultMutationKeys = exports.appLimitDefaultMutationKeys = exports.membershipTypeMutationKeys = exports.orgOwnerGrantMutationKeys = exports.orgAdminGrantMutationKeys = exports.appStepMutationKeys = exports.appAchievementMutationKeys = exports.appOwnerGrantMutationKeys = exports.appAdminGrantMutationKeys = exports.orgPermissionDefaultMutationKeys = exports.appPermissionDefaultMutationKeys = exports.orgMemberMutationKeys = exports.appLevelRequirementMutationKeys = exports.orgPermissionMutationKeys = exports.appPermissionMutationKeys = exports.orgGetSubordinatesRecordMutationKeys = exports.orgGetManagersRecordMutationKeys = void 0;
|
|
9
9
|
// ============================================================================
|
|
10
10
|
// Mutation keys for tracking in-flight mutations
|
|
11
11
|
//
|
|
@@ -81,17 +81,17 @@ exports.appOwnerGrantMutationKeys = {
|
|
|
81
81
|
/** Update appOwnerGrant mutation key */ update: (id) => ['mutation', 'appownergrant', 'update', id],
|
|
82
82
|
/** Delete appOwnerGrant mutation key */ delete: (id) => ['mutation', 'appownergrant', 'delete', id],
|
|
83
83
|
};
|
|
84
|
-
exports.
|
|
85
|
-
/** All
|
|
86
|
-
/** Create
|
|
87
|
-
/** Update
|
|
88
|
-
/** Delete
|
|
84
|
+
exports.appAchievementMutationKeys = {
|
|
85
|
+
/** All appAchievement mutation keys */ all: ['mutation', 'appachievement'],
|
|
86
|
+
/** Create appAchievement mutation key */ create: () => ['mutation', 'appachievement', 'create'],
|
|
87
|
+
/** Update appAchievement mutation key */ update: (id) => ['mutation', 'appachievement', 'update', id],
|
|
88
|
+
/** Delete appAchievement mutation key */ delete: (id) => ['mutation', 'appachievement', 'delete', id],
|
|
89
89
|
};
|
|
90
|
-
exports.
|
|
91
|
-
/** All
|
|
92
|
-
/** Create
|
|
93
|
-
/** Update
|
|
94
|
-
/** Delete
|
|
90
|
+
exports.appStepMutationKeys = {
|
|
91
|
+
/** All appStep mutation keys */ all: ['mutation', 'appstep'],
|
|
92
|
+
/** Create appStep mutation key */ create: () => ['mutation', 'appstep', 'create'],
|
|
93
|
+
/** Update appStep mutation key */ update: (id) => ['mutation', 'appstep', 'update', id],
|
|
94
|
+
/** Delete appStep mutation key */ delete: (id) => ['mutation', 'appstep', 'delete', id],
|
|
95
95
|
};
|
|
96
96
|
exports.orgAdminGrantMutationKeys = {
|
|
97
97
|
/** All orgAdminGrant mutation keys */ all: ['mutation', 'orgadmingrant'],
|
|
@@ -105,29 +105,23 @@ exports.orgOwnerGrantMutationKeys = {
|
|
|
105
105
|
/** Update orgOwnerGrant mutation key */ update: (id) => ['mutation', 'orgownergrant', 'update', id],
|
|
106
106
|
/** Delete orgOwnerGrant mutation key */ delete: (id) => ['mutation', 'orgownergrant', 'delete', id],
|
|
107
107
|
};
|
|
108
|
-
exports.
|
|
109
|
-
/** All
|
|
110
|
-
/** Create
|
|
111
|
-
/** Update
|
|
112
|
-
/** Delete
|
|
113
|
-
};
|
|
114
|
-
exports.appAchievementMutationKeys = {
|
|
115
|
-
/** All appAchievement mutation keys */ all: ['mutation', 'appachievement'],
|
|
116
|
-
/** Create appAchievement mutation key */ create: () => ['mutation', 'appachievement', 'create'],
|
|
117
|
-
/** Update appAchievement mutation key */ update: (id) => ['mutation', 'appachievement', 'update', id],
|
|
118
|
-
/** Delete appAchievement mutation key */ delete: (id) => ['mutation', 'appachievement', 'delete', id],
|
|
108
|
+
exports.membershipTypeMutationKeys = {
|
|
109
|
+
/** All membershipType mutation keys */ all: ['mutation', 'membershiptype'],
|
|
110
|
+
/** Create membershipType mutation key */ create: () => ['mutation', 'membershiptype', 'create'],
|
|
111
|
+
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
112
|
+
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
119
113
|
};
|
|
120
|
-
exports.
|
|
121
|
-
/** All
|
|
122
|
-
/** Create
|
|
123
|
-
/** Update
|
|
124
|
-
/** Delete
|
|
114
|
+
exports.appLimitDefaultMutationKeys = {
|
|
115
|
+
/** All appLimitDefault mutation keys */ all: ['mutation', 'applimitdefault'],
|
|
116
|
+
/** Create appLimitDefault mutation key */ create: () => ['mutation', 'applimitdefault', 'create'],
|
|
117
|
+
/** Update appLimitDefault mutation key */ update: (id) => ['mutation', 'applimitdefault', 'update', id],
|
|
118
|
+
/** Delete appLimitDefault mutation key */ delete: (id) => ['mutation', 'applimitdefault', 'delete', id],
|
|
125
119
|
};
|
|
126
|
-
exports.
|
|
127
|
-
/** All
|
|
128
|
-
/** Create
|
|
129
|
-
/** Update
|
|
130
|
-
/** Delete
|
|
120
|
+
exports.orgLimitDefaultMutationKeys = {
|
|
121
|
+
/** All orgLimitDefault mutation keys */ all: ['mutation', 'orglimitdefault'],
|
|
122
|
+
/** Create orgLimitDefault mutation key */ create: () => ['mutation', 'orglimitdefault', 'create'],
|
|
123
|
+
/** Update orgLimitDefault mutation key */ update: (id) => ['mutation', 'orglimitdefault', 'update', id],
|
|
124
|
+
/** Delete orgLimitDefault mutation key */ delete: (id) => ['mutation', 'orglimitdefault', 'delete', id],
|
|
131
125
|
};
|
|
132
126
|
exports.orgChartEdgeGrantMutationKeys = {
|
|
133
127
|
/** All orgChartEdgeGrant mutation keys */ all: ['mutation', 'orgchartedgegrant'],
|
|
@@ -135,17 +129,11 @@ exports.orgChartEdgeGrantMutationKeys = {
|
|
|
135
129
|
/** Update orgChartEdgeGrant mutation key */ update: (id) => ['mutation', 'orgchartedgegrant', 'update', id],
|
|
136
130
|
/** Delete orgChartEdgeGrant mutation key */ delete: (id) => ['mutation', 'orgchartedgegrant', 'delete', id],
|
|
137
131
|
};
|
|
138
|
-
exports.
|
|
139
|
-
/** All
|
|
140
|
-
/** Create
|
|
141
|
-
/** Update
|
|
142
|
-
/** Delete
|
|
143
|
-
};
|
|
144
|
-
exports.membershipTypeMutationKeys = {
|
|
145
|
-
/** All membershipType mutation keys */ all: ['mutation', 'membershiptype'],
|
|
146
|
-
/** Create membershipType mutation key */ create: () => ['mutation', 'membershiptype', 'create'],
|
|
147
|
-
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
148
|
-
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
132
|
+
exports.appClaimedInviteMutationKeys = {
|
|
133
|
+
/** All appClaimedInvite mutation keys */ all: ['mutation', 'appclaimedinvite'],
|
|
134
|
+
/** Create appClaimedInvite mutation key */ create: () => ['mutation', 'appclaimedinvite', 'create'],
|
|
135
|
+
/** Update appClaimedInvite mutation key */ update: (id) => ['mutation', 'appclaimedinvite', 'update', id],
|
|
136
|
+
/** Delete appClaimedInvite mutation key */ delete: (id) => ['mutation', 'appclaimedinvite', 'delete', id],
|
|
149
137
|
};
|
|
150
138
|
exports.appGrantMutationKeys = {
|
|
151
139
|
/** All appGrant mutation keys */ all: ['mutation', 'appgrant'],
|
|
@@ -171,6 +159,18 @@ exports.orgClaimedInviteMutationKeys = {
|
|
|
171
159
|
/** Update orgClaimedInvite mutation key */ update: (id) => ['mutation', 'orgclaimedinvite', 'update', id],
|
|
172
160
|
/** Delete orgClaimedInvite mutation key */ delete: (id) => ['mutation', 'orgclaimedinvite', 'delete', id],
|
|
173
161
|
};
|
|
162
|
+
exports.appLimitEventMutationKeys = {
|
|
163
|
+
/** All appLimitEvent mutation keys */ all: ['mutation', 'applimitevent'],
|
|
164
|
+
/** Create appLimitEvent mutation key */ create: () => ['mutation', 'applimitevent', 'create'],
|
|
165
|
+
/** Update appLimitEvent mutation key */ update: (id) => ['mutation', 'applimitevent', 'update', id],
|
|
166
|
+
/** Delete appLimitEvent mutation key */ delete: (id) => ['mutation', 'applimitevent', 'delete', id],
|
|
167
|
+
};
|
|
168
|
+
exports.orgLimitEventMutationKeys = {
|
|
169
|
+
/** All orgLimitEvent mutation keys */ all: ['mutation', 'orglimitevent'],
|
|
170
|
+
/** Create orgLimitEvent mutation key */ create: () => ['mutation', 'orglimitevent', 'create'],
|
|
171
|
+
/** Update orgLimitEvent mutation key */ update: (id) => ['mutation', 'orglimitevent', 'update', id],
|
|
172
|
+
/** Delete orgLimitEvent mutation key */ delete: (id) => ['mutation', 'orglimitevent', 'delete', id],
|
|
173
|
+
};
|
|
174
174
|
exports.orgGrantMutationKeys = {
|
|
175
175
|
/** All orgGrant mutation keys */ all: ['mutation', 'orggrant'],
|
|
176
176
|
/** Create orgGrant mutation key */ create: () => ['mutation', 'orggrant', 'create'],
|
|
@@ -183,17 +183,29 @@ exports.orgChartEdgeMutationKeys = {
|
|
|
183
183
|
/** Update orgChartEdge mutation key */ update: (id) => ['mutation', 'orgchartedge', 'update', id],
|
|
184
184
|
/** Delete orgChartEdge mutation key */ delete: (id) => ['mutation', 'orgchartedge', 'delete', id],
|
|
185
185
|
};
|
|
186
|
+
exports.appLimitMutationKeys = {
|
|
187
|
+
/** All appLimit mutation keys */ all: ['mutation', 'applimit'],
|
|
188
|
+
/** Create appLimit mutation key */ create: () => ['mutation', 'applimit', 'create'],
|
|
189
|
+
/** Update appLimit mutation key */ update: (id) => ['mutation', 'applimit', 'update', id],
|
|
190
|
+
/** Delete appLimit mutation key */ delete: (id) => ['mutation', 'applimit', 'delete', id],
|
|
191
|
+
};
|
|
192
|
+
exports.orgLimitAggregateMutationKeys = {
|
|
193
|
+
/** All orgLimitAggregate mutation keys */ all: ['mutation', 'orglimitaggregate'],
|
|
194
|
+
/** Create orgLimitAggregate mutation key */ create: () => ['mutation', 'orglimitaggregate', 'create'],
|
|
195
|
+
/** Update orgLimitAggregate mutation key */ update: (id) => ['mutation', 'orglimitaggregate', 'update', id],
|
|
196
|
+
/** Delete orgLimitAggregate mutation key */ delete: (id) => ['mutation', 'orglimitaggregate', 'delete', id],
|
|
197
|
+
};
|
|
186
198
|
exports.orgMemberProfileMutationKeys = {
|
|
187
199
|
/** All orgMemberProfile mutation keys */ all: ['mutation', 'orgmemberprofile'],
|
|
188
200
|
/** Create orgMemberProfile mutation key */ create: () => ['mutation', 'orgmemberprofile', 'create'],
|
|
189
201
|
/** Update orgMemberProfile mutation key */ update: (id) => ['mutation', 'orgmemberprofile', 'update', id],
|
|
190
202
|
/** Delete orgMemberProfile mutation key */ delete: (id) => ['mutation', 'orgmemberprofile', 'delete', id],
|
|
191
203
|
};
|
|
192
|
-
exports.
|
|
193
|
-
/** All
|
|
194
|
-
/** Create
|
|
195
|
-
/** Update
|
|
196
|
-
/** Delete
|
|
204
|
+
exports.orgLimitMutationKeys = {
|
|
205
|
+
/** All orgLimit mutation keys */ all: ['mutation', 'orglimit'],
|
|
206
|
+
/** Create orgLimit mutation key */ create: () => ['mutation', 'orglimit', 'create'],
|
|
207
|
+
/** Update orgLimit mutation key */ update: (id) => ['mutation', 'orglimit', 'update', id],
|
|
208
|
+
/** Delete orgLimit mutation key */ delete: (id) => ['mutation', 'orglimit', 'delete', id],
|
|
197
209
|
};
|
|
198
210
|
exports.appLevelMutationKeys = {
|
|
199
211
|
/** All appLevel mutation keys */ all: ['mutation', 'applevel'],
|
|
@@ -207,6 +219,12 @@ exports.appInviteMutationKeys = {
|
|
|
207
219
|
/** Update appInvite mutation key */ update: (id) => ['mutation', 'appinvite', 'update', id],
|
|
208
220
|
/** Delete appInvite mutation key */ delete: (id) => ['mutation', 'appinvite', 'delete', id],
|
|
209
221
|
};
|
|
222
|
+
exports.orgMembershipSettingMutationKeys = {
|
|
223
|
+
/** All orgMembershipSetting mutation keys */ all: ['mutation', 'orgmembershipsetting'],
|
|
224
|
+
/** Create orgMembershipSetting mutation key */ create: () => ['mutation', 'orgmembershipsetting', 'create'],
|
|
225
|
+
/** Update orgMembershipSetting mutation key */ update: (id) => ['mutation', 'orgmembershipsetting', 'update', id],
|
|
226
|
+
/** Delete orgMembershipSetting mutation key */ delete: (id) => ['mutation', 'orgmembershipsetting', 'delete', id],
|
|
227
|
+
};
|
|
210
228
|
exports.orgInviteMutationKeys = {
|
|
211
229
|
/** All orgInvite mutation keys */ all: ['mutation', 'orginvite'],
|
|
212
230
|
/** Create orgInvite mutation key */ create: () => ['mutation', 'orginvite', 'create'],
|
|
@@ -238,9 +256,6 @@ exports.customMutationKeys = {
|
|
|
238
256
|
/** Mutation key for requestUploadUrl */ requestUploadUrl: (identifier) => identifier
|
|
239
257
|
? ['mutation', 'requestUploadUrl', identifier]
|
|
240
258
|
: ['mutation', 'requestUploadUrl'],
|
|
241
|
-
/** Mutation key for confirmUpload */ confirmUpload: (identifier) => identifier
|
|
242
|
-
? ['mutation', 'confirmUpload', identifier]
|
|
243
|
-
: ['mutation', 'confirmUpload'],
|
|
244
259
|
/** Mutation key for provisionBucket */ provisionBucket: (identifier) => identifier
|
|
245
260
|
? ['mutation', 'provisionBucket', identifier]
|
|
246
261
|
: ['mutation', 'provisionBucket'],
|
|
@@ -278,27 +293,30 @@ exports.mutationKeys = {
|
|
|
278
293
|
orgPermissionDefault: exports.orgPermissionDefaultMutationKeys,
|
|
279
294
|
appAdminGrant: exports.appAdminGrantMutationKeys,
|
|
280
295
|
appOwnerGrant: exports.appOwnerGrantMutationKeys,
|
|
281
|
-
appLimitDefault: exports.appLimitDefaultMutationKeys,
|
|
282
|
-
orgLimitDefault: exports.orgLimitDefaultMutationKeys,
|
|
283
|
-
orgAdminGrant: exports.orgAdminGrantMutationKeys,
|
|
284
|
-
orgOwnerGrant: exports.orgOwnerGrantMutationKeys,
|
|
285
|
-
appLimit: exports.appLimitMutationKeys,
|
|
286
296
|
appAchievement: exports.appAchievementMutationKeys,
|
|
287
297
|
appStep: exports.appStepMutationKeys,
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
orgLimit: exports.orgLimitMutationKeys,
|
|
298
|
+
orgAdminGrant: exports.orgAdminGrantMutationKeys,
|
|
299
|
+
orgOwnerGrant: exports.orgOwnerGrantMutationKeys,
|
|
291
300
|
membershipType: exports.membershipTypeMutationKeys,
|
|
301
|
+
appLimitDefault: exports.appLimitDefaultMutationKeys,
|
|
302
|
+
orgLimitDefault: exports.orgLimitDefaultMutationKeys,
|
|
303
|
+
orgChartEdgeGrant: exports.orgChartEdgeGrantMutationKeys,
|
|
304
|
+
appClaimedInvite: exports.appClaimedInviteMutationKeys,
|
|
292
305
|
appGrant: exports.appGrantMutationKeys,
|
|
293
306
|
appMembershipDefault: exports.appMembershipDefaultMutationKeys,
|
|
294
307
|
orgMembershipDefault: exports.orgMembershipDefaultMutationKeys,
|
|
295
308
|
orgClaimedInvite: exports.orgClaimedInviteMutationKeys,
|
|
309
|
+
appLimitEvent: exports.appLimitEventMutationKeys,
|
|
310
|
+
orgLimitEvent: exports.orgLimitEventMutationKeys,
|
|
296
311
|
orgGrant: exports.orgGrantMutationKeys,
|
|
297
312
|
orgChartEdge: exports.orgChartEdgeMutationKeys,
|
|
313
|
+
appLimit: exports.appLimitMutationKeys,
|
|
314
|
+
orgLimitAggregate: exports.orgLimitAggregateMutationKeys,
|
|
298
315
|
orgMemberProfile: exports.orgMemberProfileMutationKeys,
|
|
299
|
-
|
|
316
|
+
orgLimit: exports.orgLimitMutationKeys,
|
|
300
317
|
appLevel: exports.appLevelMutationKeys,
|
|
301
318
|
appInvite: exports.appInviteMutationKeys,
|
|
319
|
+
orgMembershipSetting: exports.orgMembershipSettingMutationKeys,
|
|
302
320
|
orgInvite: exports.orgInviteMutationKeys,
|
|
303
321
|
appMembership: exports.appMembershipMutationKeys,
|
|
304
322
|
orgMembership: exports.orgMembershipMutationKeys,
|