@constructive-io/react 0.20.2 → 0.20.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 +18 -30
- package/admin/hooks/invalidation.js +48 -80
- package/admin/hooks/mutation-keys.d.ts +36 -60
- package/admin/hooks/mutation-keys.js +22 -36
- package/admin/hooks/mutations/index.d.ts +9 -15
- package/admin/hooks/mutations/index.js +9 -15
- package/admin/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
- package/admin/hooks/mutations/{useCreateAppLevelMutation.js → useCreateAppLimitWarningMutation.js} +6 -6
- package/admin/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
- package/admin/hooks/mutations/{useCreateAppAchievementMutation.js → useCreateOrgLimitWarningMutation.js} +6 -6
- package/admin/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
- package/admin/hooks/mutations/{useDeleteAppAchievementMutation.js → useDeleteAppLimitWarningMutation.js} +7 -7
- package/admin/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
- package/{public/hooks/mutations/useDeleteSecretsModuleMutation.js → admin/hooks/mutations/useDeleteOrgLimitWarningMutation.js} +7 -7
- package/admin/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
- package/admin/hooks/mutations/{useUpdateAppAchievementMutation.js → useUpdateAppLimitWarningMutation.js} +9 -9
- package/admin/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
- package/admin/hooks/mutations/{useUpdateAppLevelRequirementMutation.js → useUpdateOrgLimitWarningMutation.js} +9 -9
- package/admin/hooks/queries/index.d.ts +6 -12
- package/admin/hooks/queries/index.js +6 -12
- package/admin/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
- package/admin/hooks/queries/{useAppAchievementQuery.js → useAppLimitWarningQuery.js} +14 -14
- package/admin/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
- package/{public/hooks/queries/useAppStepsQuery.js → admin/hooks/queries/useAppLimitWarningsQuery.js} +14 -14
- package/admin/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
- package/admin/hooks/queries/{useAppStepQuery.js → useOrgLimitWarningQuery.js} +14 -14
- package/admin/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgLimitWarningsQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +42 -74
- package/admin/hooks/query-keys.js +25 -43
- package/admin/orm/index.d.ts +6 -20
- package/admin/orm/index.js +6 -10
- package/admin/orm/input-types.d.ts +488 -768
- package/admin/orm/models/appLimitWarning.d.ts +54 -0
- package/{public/orm/models/secretsModule.js → admin/orm/models/appLimitWarning.js} +27 -27
- package/admin/orm/models/index.d.ts +3 -5
- package/admin/orm/models/index.js +7 -11
- package/admin/orm/models/orgLimitWarning.d.ts +54 -0
- package/admin/orm/models/{appAchievement.js → orgLimitWarning.js} +27 -27
- package/admin/orm/query/index.d.ts +1 -28
- package/admin/orm/query/index.js +0 -44
- package/admin/schema-types.d.ts +372 -572
- package/admin/types.d.ts +28 -48
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +18 -30
- package/esm/admin/hooks/invalidation.js +49 -81
- package/esm/admin/hooks/mutation-keys.d.ts +36 -60
- package/esm/admin/hooks/mutation-keys.js +21 -35
- package/esm/admin/hooks/mutations/index.d.ts +9 -15
- package/esm/admin/hooks/mutations/index.js +9 -15
- package/esm/admin/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/{useCreateAppAchievementMutation.js → useCreateAppLimitWarningMutation.js} +7 -7
- package/esm/admin/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/{useCreateAppLevelRequirementMutation.js → useCreateOrgLimitWarningMutation.js} +7 -7
- package/esm/admin/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/{useDeleteAppAchievementMutation.js → useDeleteAppLimitWarningMutation.js} +8 -8
- package/esm/admin/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/{useDeleteAppLevelRequirementMutation.js → useDeleteOrgLimitWarningMutation.js} +8 -8
- package/esm/admin/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/{useUpdateAppAchievementMutation.js → useUpdateAppLimitWarningMutation.js} +10 -10
- package/esm/admin/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/{useUpdateAppLevelRequirementMutation.js → useUpdateOrgLimitWarningMutation.js} +10 -10
- package/esm/admin/hooks/queries/index.d.ts +6 -12
- package/esm/admin/hooks/queries/index.js +6 -12
- package/esm/admin/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/{useAppLevelRequirementQuery.js → useAppLimitWarningQuery.js} +11 -11
- package/esm/admin/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useAppLimitWarningsQuery.js +32 -0
- package/esm/admin/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/{useAppStepQuery.js → useOrgLimitWarningQuery.js} +11 -11
- package/esm/admin/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgLimitWarningsQuery.js +32 -0
- package/esm/admin/hooks/query-keys.d.ts +42 -74
- package/esm/admin/hooks/query-keys.js +24 -42
- package/esm/admin/orm/index.d.ts +6 -20
- package/esm/admin/orm/index.js +6 -10
- package/esm/admin/orm/input-types.d.ts +488 -768
- package/esm/admin/orm/models/appLimitWarning.d.ts +54 -0
- package/esm/admin/orm/models/{appLevel.js → appLimitWarning.js} +25 -25
- package/esm/admin/orm/models/index.d.ts +3 -5
- package/esm/admin/orm/models/index.js +3 -5
- package/esm/admin/orm/models/orgLimitWarning.d.ts +54 -0
- package/esm/admin/orm/models/{appAchievement.js → orgLimitWarning.js} +25 -25
- package/esm/admin/orm/query/index.d.ts +1 -28
- package/esm/admin/orm/query/index.js +0 -44
- package/esm/admin/schema-types.d.ts +372 -572
- package/esm/admin/types.d.ts +28 -48
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +27 -33
- package/esm/public/hooks/invalidation.js +60 -76
- package/esm/public/hooks/mutation-keys.d.ts +54 -66
- package/esm/public/hooks/mutation-keys.js +35 -39
- package/esm/public/hooks/mutations/index.d.ts +15 -18
- package/esm/public/hooks/mutations/index.js +15 -18
- package/esm/public/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
- package/esm/{admin/hooks/mutations/useCreateAppStepMutation.js → public/hooks/mutations/useCreateAppLimitWarningMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateEventsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateLevelsModuleMutation.js → useCreateEventsModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgLimitWarningMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateRateLimitMetersModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateAppLevelMutation.js → useCreateRateLimitMetersModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateUserStateModuleMutation.d.ts +34 -0
- package/esm/{admin/hooks/mutations/useCreateAppLevelMutation.js → public/hooks/mutations/useCreateUserStateModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
- package/esm/{admin/hooks/mutations/useDeleteAppStepMutation.js → public/hooks/mutations/useDeleteAppLimitWarningMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteEventsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteLevelsModuleMutation.js → useDeleteEventsModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitWarningMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.d.ts +38 -0
- package/esm/{admin/hooks/mutations/useDeleteAppLevelMutation.js → public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteUserStateModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteAppLevelMutation.js → useDeleteUserStateModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
- package/esm/{admin/hooks/mutations/useUpdateAppStepMutation.js → public/hooks/mutations/useUpdateAppLimitWarningMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateEventsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateLevelsModuleMutation.js → useUpdateEventsModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitWarningMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateRateLimitMetersModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateSecretsModuleMutation.js → useUpdateRateLimitMetersModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateUserStateModuleMutation.d.ts +40 -0
- package/esm/{admin/hooks/mutations/useUpdateAppLevelMutation.js → public/hooks/mutations/useUpdateUserStateModuleMutation.js} +10 -10
- package/esm/public/hooks/queries/index.d.ts +10 -14
- package/esm/public/hooks/queries/index.js +10 -14
- package/esm/public/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
- package/esm/{admin/hooks/queries/useAppAchievementQuery.js → public/hooks/queries/useAppLimitWarningQuery.js} +11 -11
- package/esm/public/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAppLimitWarningsQuery.js +32 -0
- package/esm/public/hooks/queries/useEventsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useLevelsModuleQuery.js → useEventsModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useEventsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useLevelsModulesQuery.js → useEventsModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgLimitWarningQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgLimitWarningsQuery.js +32 -0
- package/esm/public/hooks/queries/useRateLimitMetersModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useAppLevelQuery.js → useRateLimitMetersModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useRateLimitMetersModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useRateLimitMetersModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useUserStateModuleQuery.d.ts +65 -0
- package/esm/{admin/hooks/queries/useAppLevelQuery.js → public/hooks/queries/useUserStateModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useUserStateModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useAppLevelsQuery.js → useUserStateModulesQuery.js} +11 -11
- package/esm/public/hooks/query-keys.d.ts +64 -82
- package/esm/public/hooks/query-keys.js +37 -47
- package/esm/public/orm/index.d.ts +10 -22
- package/esm/public/orm/index.js +10 -12
- package/esm/public/orm/input-types.d.ts +1024 -919
- package/esm/public/orm/input-types.js +3 -5
- package/esm/public/orm/models/appLimitWarning.d.ts +54 -0
- package/esm/public/orm/models/{appAchievement.js → appLimitWarning.js} +25 -25
- package/esm/public/orm/models/eventsModule.d.ts +54 -0
- package/esm/public/orm/models/{levelsModule.js → eventsModule.js} +25 -25
- package/esm/public/orm/models/index.d.ts +5 -6
- package/esm/public/orm/models/index.js +5 -6
- package/esm/public/orm/models/orgLimitWarning.d.ts +54 -0
- package/esm/{admin/orm/models/appStep.js → public/orm/models/orgLimitWarning.js} +25 -25
- package/esm/public/orm/models/rateLimitMetersModule.d.ts +54 -0
- package/esm/{admin/orm/models/appLevelRequirement.js → public/orm/models/rateLimitMetersModule.js} +25 -25
- package/esm/public/orm/models/userStateModule.d.ts +54 -0
- package/esm/public/orm/models/userStateModule.js +100 -0
- package/esm/public/orm/mutation/index.d.ts +2 -2
- package/esm/public/orm/query/index.d.ts +1 -28
- package/esm/public/orm/query/index.js +0 -44
- package/esm/public/schema-types.d.ts +750 -731
- package/esm/public/types.d.ts +65 -50
- 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 +27 -33
- package/public/hooks/invalidation.js +59 -75
- package/public/hooks/mutation-keys.d.ts +54 -66
- package/public/hooks/mutation-keys.js +38 -43
- package/public/hooks/mutations/index.d.ts +15 -18
- package/public/hooks/mutations/index.js +15 -18
- package/public/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
- package/{admin/hooks/mutations/useCreateAppStepMutation.js → public/hooks/mutations/useCreateAppLimitWarningMutation.js} +6 -6
- package/public/hooks/mutations/useCreateEventsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateLevelsModuleMutation.js → useCreateEventsModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgLimitWarningMutation.js +34 -0
- package/public/hooks/mutations/useCreateRateLimitMetersModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateAppStepMutation.js → useCreateRateLimitMetersModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateUserStateModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateAppLevelMutation.js → useCreateUserStateModuleMutation.js} +6 -6
- package/public/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
- package/{admin/hooks/mutations/useDeleteAppLevelRequirementMutation.js → public/hooks/mutations/useDeleteAppLimitWarningMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteEventsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteLevelsModuleMutation.js → useDeleteEventsModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
- package/{admin/hooks/mutations/useDeleteAppStepMutation.js → public/hooks/mutations/useDeleteOrgLimitWarningMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.d.ts +38 -0
- package/{admin/hooks/mutations/useDeleteAppLevelMutation.js → public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteUserStateModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteAppLevelMutation.js → useDeleteUserStateModuleMutation.js} +7 -7
- package/public/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
- package/{admin/hooks/mutations/useUpdateAppStepMutation.js → public/hooks/mutations/useUpdateAppLimitWarningMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateEventsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateLevelsModuleMutation.js → useUpdateEventsModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitWarningMutation.js +40 -0
- package/public/hooks/mutations/useUpdateRateLimitMetersModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateAppLevelMutation.js → useUpdateRateLimitMetersModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateUserStateModuleMutation.d.ts +40 -0
- package/{admin/hooks/mutations/useUpdateAppLevelMutation.js → public/hooks/mutations/useUpdateUserStateModuleMutation.js} +9 -9
- package/public/hooks/queries/index.d.ts +10 -14
- package/public/hooks/queries/index.js +10 -14
- package/public/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
- package/{admin/hooks/queries/useAppLevelQuery.js → public/hooks/queries/useAppLimitWarningQuery.js} +14 -14
- package/public/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
- package/{admin/hooks/queries/useAppStepsQuery.js → public/hooks/queries/useAppLimitWarningsQuery.js} +14 -14
- package/public/hooks/queries/useEventsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useLevelsModuleQuery.js → useEventsModuleQuery.js} +14 -14
- package/public/hooks/queries/useEventsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/{useLevelsModulesQuery.js → useEventsModulesQuery.js} +14 -14
- package/public/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
- package/public/hooks/queries/{useAppAchievementQuery.js → useOrgLimitWarningQuery.js} +14 -14
- package/public/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgLimitWarningsQuery.js +38 -0
- package/public/hooks/queries/useRateLimitMetersModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useAppLevelRequirementQuery.js → useRateLimitMetersModuleQuery.js} +14 -14
- package/public/hooks/queries/useRateLimitMetersModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useRateLimitMetersModulesQuery.js +38 -0
- package/public/hooks/queries/useUserStateModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useAppLevelQuery.js → useUserStateModuleQuery.js} +14 -14
- package/public/hooks/queries/useUserStateModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useUserStateModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +64 -82
- package/public/hooks/query-keys.js +40 -51
- package/public/orm/index.d.ts +10 -22
- package/public/orm/index.js +10 -12
- package/public/orm/input-types.d.ts +1024 -919
- package/public/orm/input-types.js +3 -5
- package/public/orm/models/appLimitWarning.d.ts +54 -0
- package/{admin/orm/models/appStep.js → public/orm/models/appLimitWarning.js} +27 -27
- package/public/orm/models/eventsModule.d.ts +54 -0
- package/public/orm/models/{levelsModule.js → eventsModule.js} +27 -27
- package/public/orm/models/index.d.ts +5 -6
- package/public/orm/models/index.js +13 -15
- package/public/orm/models/orgLimitWarning.d.ts +54 -0
- package/{admin/orm/models/appLevel.js → public/orm/models/orgLimitWarning.js} +27 -27
- package/public/orm/models/rateLimitMetersModule.d.ts +54 -0
- package/public/orm/models/{appLevel.js → rateLimitMetersModule.js} +27 -27
- package/public/orm/models/userStateModule.d.ts +54 -0
- package/public/orm/models/{appAchievement.js → userStateModule.js} +27 -27
- package/public/orm/mutation/index.d.ts +2 -2
- package/public/orm/query/index.d.ts +1 -28
- package/public/orm/query/index.js +0 -44
- package/public/schema-types.d.ts +750 -731
- package/public/types.d.ts +65 -50
- package/admin/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
- package/admin/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
- package/admin/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
- package/admin/hooks/mutations/useCreateAppLevelRequirementMutation.js +0 -34
- package/admin/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
- package/admin/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
- package/admin/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
- package/admin/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
- package/admin/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
- package/admin/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
- package/admin/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
- package/admin/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
- package/admin/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
- package/admin/hooks/queries/useAppAchievementQuery.d.ts +0 -65
- package/admin/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
- package/admin/hooks/queries/useAppAchievementsQuery.js +0 -38
- package/admin/hooks/queries/useAppLevelQuery.d.ts +0 -65
- package/admin/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
- package/admin/hooks/queries/useAppLevelRequirementQuery.js +0 -53
- package/admin/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
- package/admin/hooks/queries/useAppLevelRequirementsQuery.js +0 -38
- package/admin/hooks/queries/useAppLevelsQuery.d.ts +0 -69
- package/admin/hooks/queries/useAppLevelsQuery.js +0 -38
- package/admin/hooks/queries/useAppStepQuery.d.ts +0 -65
- package/admin/hooks/queries/useAppStepsQuery.d.ts +0 -69
- package/admin/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
- package/admin/hooks/queries/useStepsAchievedQuery.js +0 -53
- package/admin/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
- package/admin/hooks/queries/useStepsRequiredQuery.js +0 -53
- package/admin/orm/models/appAchievement.d.ts +0 -54
- package/admin/orm/models/appLevel.d.ts +0 -54
- package/admin/orm/models/appLevelRequirement.d.ts +0 -54
- package/admin/orm/models/appLevelRequirement.js +0 -104
- package/admin/orm/models/appStep.d.ts +0 -54
- package/esm/admin/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
- package/esm/admin/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
- package/esm/admin/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
- package/esm/admin/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
- package/esm/admin/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
- package/esm/admin/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
- package/esm/admin/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
- package/esm/admin/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
- package/esm/admin/hooks/queries/useAppAchievementQuery.d.ts +0 -65
- package/esm/admin/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
- package/esm/admin/hooks/queries/useAppAchievementsQuery.js +0 -32
- package/esm/admin/hooks/queries/useAppLevelQuery.d.ts +0 -65
- package/esm/admin/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
- package/esm/admin/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
- package/esm/admin/hooks/queries/useAppLevelRequirementsQuery.js +0 -32
- package/esm/admin/hooks/queries/useAppLevelsQuery.d.ts +0 -69
- package/esm/admin/hooks/queries/useAppLevelsQuery.js +0 -32
- package/esm/admin/hooks/queries/useAppStepQuery.d.ts +0 -65
- package/esm/admin/hooks/queries/useAppStepsQuery.d.ts +0 -69
- package/esm/admin/hooks/queries/useAppStepsQuery.js +0 -32
- package/esm/admin/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
- package/esm/admin/hooks/queries/useStepsAchievedQuery.js +0 -47
- package/esm/admin/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
- package/esm/admin/hooks/queries/useStepsRequiredQuery.js +0 -47
- package/esm/admin/orm/models/appAchievement.d.ts +0 -54
- package/esm/admin/orm/models/appLevel.d.ts +0 -54
- package/esm/admin/orm/models/appLevelRequirement.d.ts +0 -54
- package/esm/admin/orm/models/appStep.d.ts +0 -54
- package/esm/public/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAppAchievementMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAppLevelRequirementMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAppStepMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateLevelsModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateSecretsModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateSecretsModuleMutation.js +0 -31
- package/esm/public/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAppAchievementMutation.js +0 -36
- package/esm/public/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAppLevelRequirementMutation.js +0 -36
- package/esm/public/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAppStepMutation.js +0 -36
- package/esm/public/hooks/mutations/useDeleteLevelsModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteSecretsModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteSecretsModuleMutation.js +0 -36
- package/esm/public/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAppAchievementMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAppLevelMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAppLevelRequirementMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAppStepMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateLevelsModuleMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateSecretsModuleMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useAppAchievementQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAppAchievementQuery.js +0 -47
- package/esm/public/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAppAchievementsQuery.js +0 -32
- package/esm/public/hooks/queries/useAppLevelQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAppLevelRequirementQuery.js +0 -47
- package/esm/public/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAppLevelRequirementsQuery.js +0 -32
- package/esm/public/hooks/queries/useAppLevelsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAppStepQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAppStepQuery.js +0 -47
- package/esm/public/hooks/queries/useAppStepsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAppStepsQuery.js +0 -32
- package/esm/public/hooks/queries/useLevelsModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useLevelsModulesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useSecretsModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useSecretsModuleQuery.js +0 -47
- package/esm/public/hooks/queries/useSecretsModulesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useSecretsModulesQuery.js +0 -32
- package/esm/public/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
- package/esm/public/hooks/queries/useStepsAchievedQuery.js +0 -47
- package/esm/public/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
- package/esm/public/hooks/queries/useStepsRequiredQuery.js +0 -47
- package/esm/public/orm/models/appAchievement.d.ts +0 -54
- package/esm/public/orm/models/appLevel.d.ts +0 -54
- package/esm/public/orm/models/appLevel.js +0 -100
- package/esm/public/orm/models/appLevelRequirement.d.ts +0 -54
- package/esm/public/orm/models/appLevelRequirement.js +0 -100
- package/esm/public/orm/models/appStep.d.ts +0 -54
- package/esm/public/orm/models/appStep.js +0 -100
- package/esm/public/orm/models/levelsModule.d.ts +0 -54
- package/esm/public/orm/models/secretsModule.d.ts +0 -54
- package/esm/public/orm/models/secretsModule.js +0 -100
- package/public/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateAppAchievementMutation.js +0 -34
- package/public/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateAppLevelRequirementMutation.js +0 -34
- package/public/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateLevelsModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateSecretsModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateSecretsModuleMutation.js +0 -34
- package/public/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAppAchievementMutation.js +0 -39
- package/public/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAppLevelRequirementMutation.js +0 -39
- package/public/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAppStepMutation.js +0 -39
- package/public/hooks/mutations/useDeleteLevelsModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteSecretsModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAppAchievementMutation.js +0 -40
- package/public/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAppLevelRequirementMutation.js +0 -40
- package/public/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAppStepMutation.js +0 -40
- package/public/hooks/mutations/useUpdateLevelsModuleMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateSecretsModuleMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateSecretsModuleMutation.js +0 -40
- package/public/hooks/queries/useAppAchievementQuery.d.ts +0 -65
- package/public/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
- package/public/hooks/queries/useAppAchievementsQuery.js +0 -38
- package/public/hooks/queries/useAppLevelQuery.d.ts +0 -65
- package/public/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
- package/public/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
- package/public/hooks/queries/useAppLevelRequirementsQuery.js +0 -38
- package/public/hooks/queries/useAppLevelsQuery.d.ts +0 -69
- package/public/hooks/queries/useAppLevelsQuery.js +0 -38
- package/public/hooks/queries/useAppStepQuery.d.ts +0 -65
- package/public/hooks/queries/useAppStepQuery.js +0 -53
- package/public/hooks/queries/useAppStepsQuery.d.ts +0 -69
- package/public/hooks/queries/useLevelsModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useLevelsModulesQuery.d.ts +0 -69
- package/public/hooks/queries/useSecretsModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useSecretsModuleQuery.js +0 -53
- package/public/hooks/queries/useSecretsModulesQuery.d.ts +0 -69
- package/public/hooks/queries/useSecretsModulesQuery.js +0 -38
- package/public/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
- package/public/hooks/queries/useStepsAchievedQuery.js +0 -53
- package/public/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
- package/public/hooks/queries/useStepsRequiredQuery.js +0 -53
- package/public/orm/models/appAchievement.d.ts +0 -54
- package/public/orm/models/appLevel.d.ts +0 -54
- package/public/orm/models/appLevelRequirement.d.ts +0 -54
- package/public/orm/models/appLevelRequirement.js +0 -104
- package/public/orm/models/appStep.d.ts +0 -54
- package/public/orm/models/appStep.js +0 -104
- package/public/orm/models/levelsModule.d.ts +0 -54
- package/public/orm/models/secretsModule.d.ts +0 -54
package/public/schema-types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { AgentMessage, AgentTask, AgentThread, Api, ApiModule, ApiSchema, ApiSetting, App,
|
|
6
|
+
import type { AgentMessage, AgentTask, AgentThread, Api, ApiModule, ApiSchema, ApiSetting, App, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLimit, AppLimitCap, AppLimitCapsDefault, AppLimitCredit, AppLimitCreditCode, AppLimitCreditCodeItem, AppLimitCreditRedemption, AppLimitDefault, AppLimitEvent, AppLimitWarning, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AstMigration, AuditLog, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, CheckConstraint, Commit, ConnectedAccountsModule, CorsSetting, CryptoAddress, CryptoAddressesModule, CryptoAuthModule, Database, DatabaseProvisionModule, DatabaseSetting, DatabaseTransfer, DefaultIdsModule, DefaultPrivilege, DenormalizedTableField, DevicesModule, Domain, Email, EmailsModule, EmbeddingChunk, EncryptedSecretsModule, EntityTypeProvision, Enum, EventsModule, Field, ForeignKeyConstraint, FullTextSearch, Function, GetAllRecord, HierarchyModule, IdentityProvider, IdentityProvidersModule, Index, InvitesModule, LimitsModule, MembershipType, MembershipTypesModule, MembershipsModule, MigrateFile, NodeTypeRegistry, NotificationsModule, Object, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitAggregate, OrgLimitCap, OrgLimitCapsDefault, OrgLimitCredit, OrgLimitDefault, OrgLimitEvent, OrgLimitWarning, OrgMember, OrgMemberProfile, OrgMembership, OrgMembershipDefault, OrgMembershipSetting, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, Partition, PermissionsModule, PhoneNumber, PhoneNumbersModule, PlansModule, Policy, PrimaryKeyConstraint, ProfilesModule, PubkeySetting, RateLimitMetersModule, RateLimitsModule, RealtimeModule, Ref, RelationProvision, RlsModule, RlsSetting, RoleType, Schema, SchemaGrant, SecureTableProvision, SessionSecretsModule, SessionsModule, Site, SiteMetadatum, SiteModule, SiteTheme, SpatialRelation, SqlAction, StorageModule, Store, Table, TableGrant, Trigger, TriggerFunction, UniqueConstraint, UsageSnapshot, User, UserAuthModule, UserConnectedAccount, UserStateModule, UsersModule, View, ViewGrant, ViewRule, ViewTable, WebauthnAuthModule, WebauthnCredential, WebauthnCredentialsModule, WebauthnSetting, BigIntFilter, BitStringFilter, BooleanFilter, DatetimeFilter, FloatFilter, FullTextFilter, IntFilter, InternetAddressFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
export type Base64EncodedBinary = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeAttachment = unknown;
|
|
9
9
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
@@ -44,7 +44,7 @@ export type ViewRuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
44
44
|
/** Methods to use when ordering `View`. */
|
|
45
45
|
export type ViewOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'VIEW_TYPE_ASC' | 'VIEW_TYPE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FILTER_TYPE_ASC' | 'FILTER_TYPE_DESC' | 'FILTER_DATA_ASC' | 'FILTER_DATA_DESC' | 'SECURITY_INVOKER_ASC' | 'SECURITY_INVOKER_DESC' | 'IS_READ_ONLY_ASC' | 'IS_READ_ONLY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
|
|
46
46
|
/** Methods to use when ordering `EmbeddingChunk`. */
|
|
47
|
-
export type EmbeddingChunkOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'EMBEDDING_FIELD_ID_ASC' | 'EMBEDDING_FIELD_ID_DESC' | 'CHUNKS_TABLE_ID_ASC' | 'CHUNKS_TABLE_ID_DESC' | 'CHUNKS_TABLE_NAME_ASC' | 'CHUNKS_TABLE_NAME_DESC' | 'CONTENT_FIELD_NAME_ASC' | 'CONTENT_FIELD_NAME_DESC' | 'DIMENSIONS_ASC' | 'DIMENSIONS_DESC' | 'METRIC_ASC' | 'METRIC_DESC' | 'CHUNK_SIZE_ASC' | 'CHUNK_SIZE_DESC' | 'CHUNK_OVERLAP_ASC' | 'CHUNK_OVERLAP_DESC' | 'CHUNK_STRATEGY_ASC' | 'CHUNK_STRATEGY_DESC' | 'METADATA_FIELDS_ASC' | 'METADATA_FIELDS_DESC' | 'ENQUEUE_CHUNKING_JOB_ASC' | 'ENQUEUE_CHUNKING_JOB_DESC' | 'CHUNKING_TASK_NAME_ASC' | 'CHUNKING_TASK_NAME_DESC' | 'PARENT_FK_FIELD_ID_ASC' | 'PARENT_FK_FIELD_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
47
|
+
export type EmbeddingChunkOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'EMBEDDING_FIELD_ID_ASC' | 'EMBEDDING_FIELD_ID_DESC' | 'CHUNKS_TABLE_ID_ASC' | 'CHUNKS_TABLE_ID_DESC' | 'CHUNKS_TABLE_NAME_ASC' | 'CHUNKS_TABLE_NAME_DESC' | 'CONTENT_FIELD_NAME_ASC' | 'CONTENT_FIELD_NAME_DESC' | 'DIMENSIONS_ASC' | 'DIMENSIONS_DESC' | 'METRIC_ASC' | 'METRIC_DESC' | 'CHUNK_SIZE_ASC' | 'CHUNK_SIZE_DESC' | 'CHUNK_OVERLAP_ASC' | 'CHUNK_OVERLAP_DESC' | 'CHUNK_STRATEGY_ASC' | 'CHUNK_STRATEGY_DESC' | 'METADATA_FIELDS_ASC' | 'METADATA_FIELDS_DESC' | 'SEARCH_INDEXES_ASC' | 'SEARCH_INDEXES_DESC' | 'ENQUEUE_CHUNKING_JOB_ASC' | 'ENQUEUE_CHUNKING_JOB_DESC' | 'CHUNKING_TASK_NAME_ASC' | 'CHUNKING_TASK_NAME_DESC' | 'EMBEDDING_MODEL_ASC' | 'EMBEDDING_MODEL_DESC' | 'EMBEDDING_PROVIDER_ASC' | 'EMBEDDING_PROVIDER_DESC' | 'PARENT_FK_FIELD_ID_ASC' | 'PARENT_FK_FIELD_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
48
48
|
/** Methods to use when ordering `SecureTableProvision`. */
|
|
49
49
|
export type SecureTableProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'NODES_ASC' | 'NODES_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'FIELDS_ASC' | 'FIELDS_DESC' | 'GRANTS_ASC' | 'GRANTS_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'OUT_FIELDS_ASC' | 'OUT_FIELDS_DESC';
|
|
50
50
|
/** Methods to use when ordering `RelationProvision`. */
|
|
@@ -54,7 +54,7 @@ export type SessionSecretsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMA
|
|
|
54
54
|
/** Methods to use when ordering `IdentityProvidersModule`. */
|
|
55
55
|
export type IdentityProvidersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
56
56
|
/** Methods to use when ordering `RealtimeModule`. */
|
|
57
|
-
export type RealtimeModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SUBSCRIPTIONS_SCHEMA_ID_ASC' | 'SUBSCRIPTIONS_SCHEMA_ID_DESC' | 'CHANGE_LOG_TABLE_ID_ASC' | 'CHANGE_LOG_TABLE_ID_DESC' | 'LISTENER_NODE_TABLE_ID_ASC' | 'LISTENER_NODE_TABLE_ID_DESC' | 'SOURCE_REGISTRY_TABLE_ID_ASC' | 'SOURCE_REGISTRY_TABLE_ID_DESC' | 'RETENTION_HOURS_ASC' | 'RETENTION_HOURS_DESC' | '
|
|
57
|
+
export type RealtimeModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SUBSCRIPTIONS_SCHEMA_ID_ASC' | 'SUBSCRIPTIONS_SCHEMA_ID_DESC' | 'CHANGE_LOG_TABLE_ID_ASC' | 'CHANGE_LOG_TABLE_ID_DESC' | 'LISTENER_NODE_TABLE_ID_ASC' | 'LISTENER_NODE_TABLE_ID_DESC' | 'SOURCE_REGISTRY_TABLE_ID_ASC' | 'SOURCE_REGISTRY_TABLE_ID_DESC' | 'RETENTION_HOURS_ASC' | 'RETENTION_HOURS_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NOTIFY_CHANNEL_ASC' | 'NOTIFY_CHANNEL_DESC';
|
|
58
58
|
/** Methods to use when ordering `Table`. */
|
|
59
59
|
export type TableOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'TIMESTAMPS_ASC' | 'TIMESTAMPS_DESC' | 'PEOPLESTAMPS_ASC' | 'PEOPLESTAMPS_DESC' | 'PLURAL_NAME_ASC' | 'PLURAL_NAME_DESC' | 'SINGULAR_NAME_ASC' | 'SINGULAR_NAME_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'PARTITIONED_ASC' | 'PARTITIONED_DESC' | 'PARTITION_STRATEGY_ASC' | 'PARTITION_STRATEGY_DESC' | 'PARTITION_KEY_NAMES_ASC' | 'PARTITION_KEY_NAMES_DESC' | 'PARTITION_KEY_TYPES_ASC' | 'PARTITION_KEY_TYPES_DESC' | 'INHERITS_ID_ASC' | 'INHERITS_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
60
60
|
/** Methods to use when ordering `SchemaGrant`. */
|
|
@@ -86,7 +86,7 @@ export type TriggerFunctionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KE
|
|
|
86
86
|
/** Methods to use when ordering `DatabaseTransfer`. */
|
|
87
87
|
export type DatabaseTransferOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TARGET_OWNER_ID_ASC' | 'TARGET_OWNER_ID_DESC' | 'SOURCE_APPROVED_ASC' | 'SOURCE_APPROVED_DESC' | 'TARGET_APPROVED_ASC' | 'TARGET_APPROVED_DESC' | 'SOURCE_APPROVED_AT_ASC' | 'SOURCE_APPROVED_AT_DESC' | 'TARGET_APPROVED_AT_ASC' | 'TARGET_APPROVED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'INITIATED_BY_ASC' | 'INITIATED_BY_DESC' | 'NOTES_ASC' | 'NOTES_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC';
|
|
88
88
|
/** Methods to use when ordering `Partition`. */
|
|
89
|
-
export type PartitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | '
|
|
89
|
+
export type PartitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | 'PARTITION_KEY_ID_ASC' | 'PARTITION_KEY_ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'NAMING_PATTERN_ASC' | 'NAMING_PATTERN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
90
90
|
/** Methods to use when ordering `Api`. */
|
|
91
91
|
export type ApiOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC' | 'ROLE_NAME_ASC' | 'ROLE_NAME_DESC' | 'ANON_ROLE_ASC' | 'ANON_ROLE_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC';
|
|
92
92
|
/** Methods to use when ordering `Site`. */
|
|
@@ -111,10 +111,10 @@ export type EmailsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_D
|
|
|
111
111
|
export type EncryptedSecretsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
112
112
|
/** Methods to use when ordering `InvitesModule`. */
|
|
113
113
|
export type InvitesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'EMAILS_TABLE_ID_ASC' | 'EMAILS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'INVITES_TABLE_ID_ASC' | 'INVITES_TABLE_ID_DESC' | 'CLAIMED_INVITES_TABLE_ID_ASC' | 'CLAIMED_INVITES_TABLE_ID_DESC' | 'INVITES_TABLE_NAME_ASC' | 'INVITES_TABLE_NAME_DESC' | 'CLAIMED_INVITES_TABLE_NAME_ASC' | 'CLAIMED_INVITES_TABLE_NAME_DESC' | 'SUBMIT_INVITE_CODE_FUNCTION_ASC' | 'SUBMIT_INVITE_CODE_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC';
|
|
114
|
-
/** Methods to use when ordering `
|
|
115
|
-
export type
|
|
114
|
+
/** Methods to use when ordering `EventsModule`. */
|
|
115
|
+
export type EventsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'EVENTS_TABLE_ID_ASC' | 'EVENTS_TABLE_ID_DESC' | 'EVENTS_TABLE_NAME_ASC' | 'EVENTS_TABLE_NAME_DESC' | 'EVENT_AGGREGATES_TABLE_ID_ASC' | 'EVENT_AGGREGATES_TABLE_ID_DESC' | 'EVENT_AGGREGATES_TABLE_NAME_ASC' | 'EVENT_AGGREGATES_TABLE_NAME_DESC' | 'EVENT_TYPES_TABLE_ID_ASC' | 'EVENT_TYPES_TABLE_ID_DESC' | 'EVENT_TYPES_TABLE_NAME_ASC' | 'EVENT_TYPES_TABLE_NAME_DESC' | 'LEVELS_TABLE_ID_ASC' | 'LEVELS_TABLE_ID_DESC' | 'LEVELS_TABLE_NAME_ASC' | 'LEVELS_TABLE_NAME_DESC' | 'LEVEL_REQUIREMENTS_TABLE_ID_ASC' | 'LEVEL_REQUIREMENTS_TABLE_ID_DESC' | 'LEVEL_REQUIREMENTS_TABLE_NAME_ASC' | 'LEVEL_REQUIREMENTS_TABLE_NAME_DESC' | 'LEVEL_GRANTS_TABLE_ID_ASC' | 'LEVEL_GRANTS_TABLE_ID_DESC' | 'LEVEL_GRANTS_TABLE_NAME_ASC' | 'LEVEL_GRANTS_TABLE_NAME_DESC' | 'ACHIEVEMENT_REWARDS_TABLE_ID_ASC' | 'ACHIEVEMENT_REWARDS_TABLE_ID_DESC' | 'ACHIEVEMENT_REWARDS_TABLE_NAME_ASC' | 'ACHIEVEMENT_REWARDS_TABLE_NAME_DESC' | 'RECORD_EVENT_ASC' | 'RECORD_EVENT_DESC' | 'REMOVE_EVENT_ASC' | 'REMOVE_EVENT_DESC' | 'TG_EVENT_ASC' | 'TG_EVENT_DESC' | 'TG_EVENT_TOGGLE_ASC' | 'TG_EVENT_TOGGLE_DESC' | 'TG_EVENT_TOGGLE_BOOL_ASC' | 'TG_EVENT_TOGGLE_BOOL_DESC' | 'TG_EVENT_BOOL_ASC' | 'TG_EVENT_BOOL_DESC' | 'UPSERT_AGGREGATE_ASC' | 'UPSERT_AGGREGATE_DESC' | 'TG_UPDATE_AGGREGATES_ASC' | 'TG_UPDATE_AGGREGATES_DESC' | 'PRUNE_EVENTS_ASC' | 'PRUNE_EVENTS_DESC' | 'STEPS_REQUIRED_ASC' | 'STEPS_REQUIRED_DESC' | 'LEVEL_ACHIEVED_ASC' | 'LEVEL_ACHIEVED_DESC' | 'TG_CHECK_ACHIEVEMENTS_ASC' | 'TG_CHECK_ACHIEVEMENTS_DESC' | 'GRANT_ACHIEVEMENT_ASC' | 'GRANT_ACHIEVEMENT_DESC' | 'TG_ACHIEVEMENT_REWARD_ASC' | 'TG_ACHIEVEMENT_REWARD_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC';
|
|
116
116
|
/** Methods to use when ordering `LimitsModule`. */
|
|
117
|
-
export type LimitsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'DEFAULT_TABLE_ID_ASC' | 'DEFAULT_TABLE_ID_DESC' | 'DEFAULT_TABLE_NAME_ASC' | 'DEFAULT_TABLE_NAME_DESC' | 'LIMIT_INCREMENT_FUNCTION_ASC' | 'LIMIT_INCREMENT_FUNCTION_DESC' | 'LIMIT_DECREMENT_FUNCTION_ASC' | 'LIMIT_DECREMENT_FUNCTION_DESC' | 'LIMIT_INCREMENT_TRIGGER_ASC' | 'LIMIT_INCREMENT_TRIGGER_DESC' | 'LIMIT_DECREMENT_TRIGGER_ASC' | 'LIMIT_DECREMENT_TRIGGER_DESC' | 'LIMIT_UPDATE_TRIGGER_ASC' | 'LIMIT_UPDATE_TRIGGER_DESC' | 'LIMIT_CHECK_FUNCTION_ASC' | 'LIMIT_CHECK_FUNCTION_DESC' | 'LIMIT_CREDITS_TABLE_ID_ASC' | 'LIMIT_CREDITS_TABLE_ID_DESC' | 'EVENTS_TABLE_ID_ASC' | 'EVENTS_TABLE_ID_DESC' | 'CREDIT_CODES_TABLE_ID_ASC' | 'CREDIT_CODES_TABLE_ID_DESC' | 'CREDIT_CODE_ITEMS_TABLE_ID_ASC' | 'CREDIT_CODE_ITEMS_TABLE_ID_DESC' | 'CREDIT_REDEMPTIONS_TABLE_ID_ASC' | 'CREDIT_REDEMPTIONS_TABLE_ID_DESC' | 'AGGREGATE_TABLE_ID_ASC' | 'AGGREGATE_TABLE_ID_DESC' | 'LIMIT_CAPS_TABLE_ID_ASC' | 'LIMIT_CAPS_TABLE_ID_DESC' | 'LIMIT_CAPS_DEFAULTS_TABLE_ID_ASC' | 'LIMIT_CAPS_DEFAULTS_TABLE_ID_DESC' | 'CAP_CHECK_TRIGGER_ASC' | 'CAP_CHECK_TRIGGER_DESC' | 'RESOLVE_CAP_FUNCTION_ASC' | 'RESOLVE_CAP_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC';
|
|
117
|
+
export type LimitsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'DEFAULT_TABLE_ID_ASC' | 'DEFAULT_TABLE_ID_DESC' | 'DEFAULT_TABLE_NAME_ASC' | 'DEFAULT_TABLE_NAME_DESC' | 'LIMIT_INCREMENT_FUNCTION_ASC' | 'LIMIT_INCREMENT_FUNCTION_DESC' | 'LIMIT_DECREMENT_FUNCTION_ASC' | 'LIMIT_DECREMENT_FUNCTION_DESC' | 'LIMIT_INCREMENT_TRIGGER_ASC' | 'LIMIT_INCREMENT_TRIGGER_DESC' | 'LIMIT_DECREMENT_TRIGGER_ASC' | 'LIMIT_DECREMENT_TRIGGER_DESC' | 'LIMIT_UPDATE_TRIGGER_ASC' | 'LIMIT_UPDATE_TRIGGER_DESC' | 'LIMIT_CHECK_FUNCTION_ASC' | 'LIMIT_CHECK_FUNCTION_DESC' | 'LIMIT_CREDITS_TABLE_ID_ASC' | 'LIMIT_CREDITS_TABLE_ID_DESC' | 'EVENTS_TABLE_ID_ASC' | 'EVENTS_TABLE_ID_DESC' | 'CREDIT_CODES_TABLE_ID_ASC' | 'CREDIT_CODES_TABLE_ID_DESC' | 'CREDIT_CODE_ITEMS_TABLE_ID_ASC' | 'CREDIT_CODE_ITEMS_TABLE_ID_DESC' | 'CREDIT_REDEMPTIONS_TABLE_ID_ASC' | 'CREDIT_REDEMPTIONS_TABLE_ID_DESC' | 'AGGREGATE_TABLE_ID_ASC' | 'AGGREGATE_TABLE_ID_DESC' | 'LIMIT_CAPS_TABLE_ID_ASC' | 'LIMIT_CAPS_TABLE_ID_DESC' | 'LIMIT_CAPS_DEFAULTS_TABLE_ID_ASC' | 'LIMIT_CAPS_DEFAULTS_TABLE_ID_DESC' | 'CAP_CHECK_TRIGGER_ASC' | 'CAP_CHECK_TRIGGER_DESC' | 'RESOLVE_CAP_FUNCTION_ASC' | 'RESOLVE_CAP_FUNCTION_DESC' | 'LIMIT_WARNINGS_TABLE_ID_ASC' | 'LIMIT_WARNINGS_TABLE_ID_DESC' | 'LIMIT_WARNING_STATE_TABLE_ID_ASC' | 'LIMIT_WARNING_STATE_TABLE_ID_DESC' | 'LIMIT_CHECK_SOFT_FUNCTION_ASC' | 'LIMIT_CHECK_SOFT_FUNCTION_DESC' | 'LIMIT_AGGREGATE_CHECK_SOFT_FUNCTION_ASC' | 'LIMIT_AGGREGATE_CHECK_SOFT_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC';
|
|
118
118
|
/** Methods to use when ordering `MembershipTypesModule`. */
|
|
119
119
|
export type MembershipTypesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
120
120
|
/** Methods to use when ordering `MembershipsModule`. */
|
|
@@ -125,8 +125,8 @@ export type PermissionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_
|
|
|
125
125
|
export type PhoneNumbersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
126
126
|
/** Methods to use when ordering `ProfilesModule`. */
|
|
127
127
|
export type ProfilesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'PROFILE_PERMISSIONS_TABLE_ID_ASC' | 'PROFILE_PERMISSIONS_TABLE_ID_DESC' | 'PROFILE_PERMISSIONS_TABLE_NAME_ASC' | 'PROFILE_PERMISSIONS_TABLE_NAME_DESC' | 'PROFILE_GRANTS_TABLE_ID_ASC' | 'PROFILE_GRANTS_TABLE_ID_DESC' | 'PROFILE_GRANTS_TABLE_NAME_ASC' | 'PROFILE_GRANTS_TABLE_NAME_DESC' | 'PROFILE_DEFINITION_GRANTS_TABLE_ID_ASC' | 'PROFILE_DEFINITION_GRANTS_TABLE_ID_DESC' | 'PROFILE_DEFINITION_GRANTS_TABLE_NAME_ASC' | 'PROFILE_DEFINITION_GRANTS_TABLE_NAME_DESC' | 'PROFILE_TEMPLATES_TABLE_ID_ASC' | 'PROFILE_TEMPLATES_TABLE_ID_DESC' | 'PROFILE_TEMPLATES_TABLE_NAME_ASC' | 'PROFILE_TEMPLATES_TABLE_NAME_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC' | 'PERMISSIONS_TABLE_ID_ASC' | 'PERMISSIONS_TABLE_ID_DESC' | 'MEMBERSHIPS_TABLE_ID_ASC' | 'MEMBERSHIPS_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
|
|
128
|
-
/** Methods to use when ordering `
|
|
129
|
-
export type
|
|
128
|
+
/** Methods to use when ordering `UserStateModule`. */
|
|
129
|
+
export type UserStateModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
130
130
|
/** Methods to use when ordering `SessionsModule`. */
|
|
131
131
|
export type SessionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ASC' | 'SESSIONS_TABLE_DESC' | 'SESSION_CREDENTIALS_TABLE_ASC' | 'SESSION_CREDENTIALS_TABLE_DESC' | 'AUTH_SETTINGS_TABLE_ASC' | 'AUTH_SETTINGS_TABLE_DESC';
|
|
132
132
|
/** Methods to use when ordering `UserAuthModule`. */
|
|
@@ -142,7 +142,7 @@ export type BlueprintConstructionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIM
|
|
|
142
142
|
/** Methods to use when ordering `StorageModule`. */
|
|
143
143
|
export type StorageModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'SKIP_DEFAULT_POLICY_TABLES_ASC' | 'SKIP_DEFAULT_POLICY_TABLES_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'HAS_CONFIRM_UPLOAD_ASC' | 'HAS_CONFIRM_UPLOAD_DESC' | 'CONFIRM_UPLOAD_DELAY_ASC' | 'CONFIRM_UPLOAD_DELAY_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC';
|
|
144
144
|
/** Methods to use when ordering `EntityTypeProvision`. */
|
|
145
|
-
export type EntityTypeProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PARENT_ENTITY_ASC' | 'PARENT_ENTITY_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'IS_VISIBLE_ASC' | 'IS_VISIBLE_DESC' | 'HAS_LIMITS_ASC' | 'HAS_LIMITS_DESC' | 'HAS_PROFILES_ASC' | 'HAS_PROFILES_DESC' | 'HAS_LEVELS_ASC' | 'HAS_LEVELS_DESC' | 'HAS_STORAGE_ASC' | 'HAS_STORAGE_DESC' | 'HAS_INVITES_ASC' | 'HAS_INVITES_DESC' | 'STORAGE_CONFIG_ASC' | 'STORAGE_CONFIG_DESC' | 'SKIP_ENTITY_POLICIES_ASC' | 'SKIP_ENTITY_POLICIES_DESC' | 'TABLE_PROVISION_ASC' | 'TABLE_PROVISION_DESC' | 'OUT_MEMBERSHIP_TYPE_ASC' | 'OUT_MEMBERSHIP_TYPE_DESC' | 'OUT_ENTITY_TABLE_ID_ASC' | 'OUT_ENTITY_TABLE_ID_DESC' | 'OUT_ENTITY_TABLE_NAME_ASC' | 'OUT_ENTITY_TABLE_NAME_DESC' | 'OUT_INSTALLED_MODULES_ASC' | 'OUT_INSTALLED_MODULES_DESC' | 'OUT_STORAGE_MODULE_ID_ASC' | 'OUT_STORAGE_MODULE_ID_DESC' | 'OUT_BUCKETS_TABLE_ID_ASC' | 'OUT_BUCKETS_TABLE_ID_DESC' | 'OUT_FILES_TABLE_ID_ASC' | 'OUT_FILES_TABLE_ID_DESC' | 'OUT_PATH_SHARES_TABLE_ID_ASC' | 'OUT_PATH_SHARES_TABLE_ID_DESC' | 'OUT_INVITES_MODULE_ID_ASC' | 'OUT_INVITES_MODULE_ID_DESC';
|
|
145
|
+
export type EntityTypeProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PARENT_ENTITY_ASC' | 'PARENT_ENTITY_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'IS_VISIBLE_ASC' | 'IS_VISIBLE_DESC' | 'HAS_LIMITS_ASC' | 'HAS_LIMITS_DESC' | 'HAS_PROFILES_ASC' | 'HAS_PROFILES_DESC' | 'HAS_LEVELS_ASC' | 'HAS_LEVELS_DESC' | 'HAS_STORAGE_ASC' | 'HAS_STORAGE_DESC' | 'HAS_INVITES_ASC' | 'HAS_INVITES_DESC' | 'HAS_INVITE_ACHIEVEMENTS_ASC' | 'HAS_INVITE_ACHIEVEMENTS_DESC' | 'STORAGE_CONFIG_ASC' | 'STORAGE_CONFIG_DESC' | 'SKIP_ENTITY_POLICIES_ASC' | 'SKIP_ENTITY_POLICIES_DESC' | 'TABLE_PROVISION_ASC' | 'TABLE_PROVISION_DESC' | 'OUT_MEMBERSHIP_TYPE_ASC' | 'OUT_MEMBERSHIP_TYPE_DESC' | 'OUT_ENTITY_TABLE_ID_ASC' | 'OUT_ENTITY_TABLE_ID_DESC' | 'OUT_ENTITY_TABLE_NAME_ASC' | 'OUT_ENTITY_TABLE_NAME_DESC' | 'OUT_INSTALLED_MODULES_ASC' | 'OUT_INSTALLED_MODULES_DESC' | 'OUT_STORAGE_MODULE_ID_ASC' | 'OUT_STORAGE_MODULE_ID_DESC' | 'OUT_BUCKETS_TABLE_ID_ASC' | 'OUT_BUCKETS_TABLE_ID_DESC' | 'OUT_FILES_TABLE_ID_ASC' | 'OUT_FILES_TABLE_ID_DESC' | 'OUT_PATH_SHARES_TABLE_ID_ASC' | 'OUT_PATH_SHARES_TABLE_ID_DESC' | 'OUT_INVITES_MODULE_ID_ASC' | 'OUT_INVITES_MODULE_ID_DESC';
|
|
146
146
|
/** Methods to use when ordering `WebauthnCredentialsModule`. */
|
|
147
147
|
export type WebauthnCredentialsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
148
148
|
/** Methods to use when ordering `WebauthnAuthModule`. */
|
|
@@ -191,12 +191,8 @@ export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
191
191
|
export type OrgLimitCreditOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC' | 'REASON_ASC' | 'REASON_DESC';
|
|
192
192
|
/** Methods to use when ordering `OrgLimitAggregate`. */
|
|
193
193
|
export type OrgLimitAggregateOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC' | 'RESERVED_ASC' | 'RESERVED_DESC';
|
|
194
|
-
/** Methods to use when ordering `
|
|
195
|
-
export type
|
|
196
|
-
/** Methods to use when ordering `AppAchievement`. */
|
|
197
|
-
export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
198
|
-
/** Methods to use when ordering `AppLevel`. */
|
|
199
|
-
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
194
|
+
/** Methods to use when ordering `OrgLimitWarning`. */
|
|
195
|
+
export type OrgLimitWarningOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'WARNING_TYPE_ASC' | 'WARNING_TYPE_DESC' | 'THRESHOLD_VALUE_ASC' | 'THRESHOLD_VALUE_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
200
196
|
/** Methods to use when ordering `Email`. */
|
|
201
197
|
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
202
198
|
/** Methods to use when ordering `PhoneNumber`. */
|
|
@@ -257,12 +253,12 @@ export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_K
|
|
|
257
253
|
export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC';
|
|
258
254
|
/** Methods to use when ordering `OrgLimitDefault`. */
|
|
259
255
|
export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC';
|
|
256
|
+
/** Methods to use when ordering `AppLimitWarning`. */
|
|
257
|
+
export type AppLimitWarningOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'WARNING_TYPE_ASC' | 'WARNING_TYPE_DESC' | 'THRESHOLD_VALUE_ASC' | 'THRESHOLD_VALUE_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
260
258
|
/** Methods to use when ordering `UserConnectedAccount`. */
|
|
261
259
|
export type UserConnectedAccountOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'DETAILS_ASC' | 'DETAILS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
262
260
|
/** Methods to use when ordering `Object`. */
|
|
263
261
|
export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FRZN_ASC' | 'FRZN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
264
|
-
/** Methods to use when ordering `AppLevelRequirement`. */
|
|
265
|
-
export type AppLevelRequirementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'REQUIRED_COUNT_ASC' | 'REQUIRED_COUNT_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
266
262
|
/** Methods to use when ordering `Commit`. */
|
|
267
263
|
export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC';
|
|
268
264
|
/** Methods to use when ordering `PubkeySetting`. */
|
|
@@ -283,6 +279,8 @@ export type AppLimitEventOrderBy = 'NATURAL' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR
|
|
|
283
279
|
export type OrgLimitEventOrderBy = 'NATURAL' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'DELTA_ASC' | 'DELTA_DESC' | 'NUM_BEFORE_ASC' | 'NUM_BEFORE_DESC' | 'NUM_AFTER_ASC' | 'NUM_AFTER_DESC' | 'MAX_AT_EVENT_ASC' | 'MAX_AT_EVENT_DESC' | 'REASON_ASC' | 'REASON_DESC';
|
|
284
280
|
/** Methods to use when ordering `RlsModule`. */
|
|
285
281
|
export type RlsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'AUTHENTICATE_ASC' | 'AUTHENTICATE_DESC' | 'AUTHENTICATE_STRICT_ASC' | 'AUTHENTICATE_STRICT_DESC' | 'CURRENT_ROLE_ASC' | 'CURRENT_ROLE_DESC' | 'CURRENT_ROLE_ID_ASC' | 'CURRENT_ROLE_ID_DESC';
|
|
282
|
+
/** Methods to use when ordering `RateLimitMetersModule`. */
|
|
283
|
+
export type RateLimitMetersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'RATE_LIMIT_STATE_TABLE_ID_ASC' | 'RATE_LIMIT_STATE_TABLE_ID_DESC' | 'RATE_LIMIT_STATE_TABLE_NAME_ASC' | 'RATE_LIMIT_STATE_TABLE_NAME_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_DESC' | 'RATE_WINDOW_LIMITS_TABLE_ID_ASC' | 'RATE_WINDOW_LIMITS_TABLE_ID_DESC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_ASC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_DESC' | 'CHECK_RATE_LIMIT_FUNCTION_ASC' | 'CHECK_RATE_LIMIT_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
|
|
286
284
|
/** Methods to use when ordering `PlansModule`. */
|
|
287
285
|
export type PlansModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PLANS_TABLE_ID_ASC' | 'PLANS_TABLE_ID_DESC' | 'PLANS_TABLE_NAME_ASC' | 'PLANS_TABLE_NAME_DESC' | 'PLAN_LIMITS_TABLE_ID_ASC' | 'PLAN_LIMITS_TABLE_ID_DESC' | 'PLAN_LIMITS_TABLE_NAME_ASC' | 'PLAN_LIMITS_TABLE_NAME_DESC' | 'PLAN_PRICING_TABLE_ID_ASC' | 'PLAN_PRICING_TABLE_ID_DESC' | 'PLAN_OVERRIDES_TABLE_ID_ASC' | 'PLAN_OVERRIDES_TABLE_ID_DESC' | 'APPLY_PLAN_FUNCTION_ASC' | 'APPLY_PLAN_FUNCTION_DESC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_ASC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
|
|
288
286
|
/** Methods to use when ordering `SqlAction`. */
|
|
@@ -587,10 +585,10 @@ export interface DatabaseFilter {
|
|
|
587
585
|
invitesModules?: DatabaseToManyInvitesModuleFilter;
|
|
588
586
|
/** `invitesModules` exist. */
|
|
589
587
|
invitesModulesExist?: boolean;
|
|
590
|
-
/** Filter by the object’s `
|
|
591
|
-
|
|
592
|
-
/** `
|
|
593
|
-
|
|
588
|
+
/** Filter by the object’s `eventsModules` relation. */
|
|
589
|
+
eventsModules?: DatabaseToManyEventsModuleFilter;
|
|
590
|
+
/** `eventsModules` exist. */
|
|
591
|
+
eventsModulesExist?: boolean;
|
|
594
592
|
/** Filter by the object’s `limitsModules` relation. */
|
|
595
593
|
limitsModules?: DatabaseToManyLimitsModuleFilter;
|
|
596
594
|
/** `limitsModules` exist. */
|
|
@@ -619,10 +617,10 @@ export interface DatabaseFilter {
|
|
|
619
617
|
rlsModule?: RlsModuleFilter;
|
|
620
618
|
/** A related `rlsModule` exists. */
|
|
621
619
|
rlsModuleExists?: boolean;
|
|
622
|
-
/** Filter by the object’s `
|
|
623
|
-
|
|
624
|
-
/** `
|
|
625
|
-
|
|
620
|
+
/** Filter by the object’s `userStateModules` relation. */
|
|
621
|
+
userStateModules?: DatabaseToManyUserStateModuleFilter;
|
|
622
|
+
/** `userStateModules` exist. */
|
|
623
|
+
userStateModulesExist?: boolean;
|
|
626
624
|
/** Filter by the object’s `sessionsModules` relation. */
|
|
627
625
|
sessionsModules?: DatabaseToManySessionsModuleFilter;
|
|
628
626
|
/** `sessionsModules` exist. */
|
|
@@ -707,6 +705,10 @@ export interface DatabaseFilter {
|
|
|
707
705
|
realtimeModules?: DatabaseToManyRealtimeModuleFilter;
|
|
708
706
|
/** `realtimeModules` exist. */
|
|
709
707
|
realtimeModulesExist?: boolean;
|
|
708
|
+
/** Filter by the object’s `rateLimitMetersModule` relation. */
|
|
709
|
+
rateLimitMetersModule?: RateLimitMetersModuleFilter;
|
|
710
|
+
/** A related `rateLimitMetersModule` exists. */
|
|
711
|
+
rateLimitMetersModuleExists?: boolean;
|
|
710
712
|
/** Filter by the object’s `databaseProvisionModules` relation. */
|
|
711
713
|
databaseProvisionModules?: DatabaseToManyDatabaseProvisionModuleFilter;
|
|
712
714
|
/** `databaseProvisionModules` exist. */
|
|
@@ -898,18 +900,10 @@ export interface UserFilter {
|
|
|
898
900
|
orgLimitAggregatesByEntityId?: UserToManyOrgLimitAggregateFilter;
|
|
899
901
|
/** `orgLimitAggregatesByEntityId` exist. */
|
|
900
902
|
orgLimitAggregatesByEntityIdExist?: boolean;
|
|
901
|
-
/** Filter by the object’s `
|
|
902
|
-
|
|
903
|
-
/** `
|
|
904
|
-
|
|
905
|
-
/** Filter by the object’s `appAchievementsByActorId` relation. */
|
|
906
|
-
appAchievementsByActorId?: UserToManyAppAchievementFilter;
|
|
907
|
-
/** `appAchievementsByActorId` exist. */
|
|
908
|
-
appAchievementsByActorIdExist?: boolean;
|
|
909
|
-
/** Filter by the object’s `ownedAppLevels` relation. */
|
|
910
|
-
ownedAppLevels?: UserToManyAppLevelFilter;
|
|
911
|
-
/** `ownedAppLevels` exist. */
|
|
912
|
-
ownedAppLevelsExist?: boolean;
|
|
903
|
+
/** Filter by the object’s `orgLimitWarningsByEntityId` relation. */
|
|
904
|
+
orgLimitWarningsByEntityId?: UserToManyOrgLimitWarningFilter;
|
|
905
|
+
/** `orgLimitWarningsByEntityId` exist. */
|
|
906
|
+
orgLimitWarningsByEntityIdExist?: boolean;
|
|
913
907
|
/** Filter by the object’s `ownedEmails` relation. */
|
|
914
908
|
ownedEmails?: UserToManyEmailFilter;
|
|
915
909
|
/** `ownedEmails` exist. */
|
|
@@ -2144,105 +2138,39 @@ export interface OrgLimitAggregateFilter {
|
|
|
2144
2138
|
/** Filter by the object’s `entity` relation. */
|
|
2145
2139
|
entity?: UserFilter;
|
|
2146
2140
|
}
|
|
2147
|
-
/** A filter to be used against many `
|
|
2148
|
-
export interface
|
|
2141
|
+
/** A filter to be used against many `OrgLimitWarning` object types. All fields are combined with a logical ‘and.’ */
|
|
2142
|
+
export interface UserToManyOrgLimitWarningFilter {
|
|
2149
2143
|
/** Filters to entities where at least one related entity matches. */
|
|
2150
|
-
some?:
|
|
2144
|
+
some?: OrgLimitWarningFilter;
|
|
2151
2145
|
/** Filters to entities where every related entity matches. */
|
|
2152
|
-
every?:
|
|
2146
|
+
every?: OrgLimitWarningFilter;
|
|
2153
2147
|
/** Filters to entities where no related entity matches. */
|
|
2154
|
-
none?:
|
|
2148
|
+
none?: OrgLimitWarningFilter;
|
|
2155
2149
|
}
|
|
2156
|
-
/** A filter to be used against `
|
|
2157
|
-
export interface
|
|
2158
|
-
/** Filter by the object’s `id` field. */
|
|
2159
|
-
id?: UUIDFilter;
|
|
2160
|
-
/** Filter by the object’s `actorId` field. */
|
|
2161
|
-
actorId?: UUIDFilter;
|
|
2162
|
-
/** Filter by the object’s `name` field. */
|
|
2163
|
-
name?: StringFilter;
|
|
2164
|
-
/** Filter by the object’s `count` field. */
|
|
2165
|
-
count?: IntFilter;
|
|
2166
|
-
/** Filter by the object’s `createdAt` field. */
|
|
2167
|
-
createdAt?: DatetimeFilter;
|
|
2168
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
2169
|
-
updatedAt?: DatetimeFilter;
|
|
2170
|
-
/** Checks for all expressions in this list. */
|
|
2171
|
-
and?: AppStepFilter[];
|
|
2172
|
-
/** Checks for any expressions in this list. */
|
|
2173
|
-
or?: AppStepFilter[];
|
|
2174
|
-
/** Negates the expression. */
|
|
2175
|
-
not?: AppStepFilter;
|
|
2176
|
-
/** Filter by the object’s `actor` relation. */
|
|
2177
|
-
actor?: UserFilter;
|
|
2178
|
-
}
|
|
2179
|
-
/** A filter to be used against many `AppAchievement` object types. All fields are combined with a logical ‘and.’ */
|
|
2180
|
-
export interface UserToManyAppAchievementFilter {
|
|
2181
|
-
/** Filters to entities where at least one related entity matches. */
|
|
2182
|
-
some?: AppAchievementFilter;
|
|
2183
|
-
/** Filters to entities where every related entity matches. */
|
|
2184
|
-
every?: AppAchievementFilter;
|
|
2185
|
-
/** Filters to entities where no related entity matches. */
|
|
2186
|
-
none?: AppAchievementFilter;
|
|
2187
|
-
}
|
|
2188
|
-
/** A filter to be used against `AppAchievement` object types. All fields are combined with a logical ‘and.’ */
|
|
2189
|
-
export interface AppAchievementFilter {
|
|
2190
|
-
/** Filter by the object’s `id` field. */
|
|
2191
|
-
id?: UUIDFilter;
|
|
2192
|
-
/** Filter by the object’s `actorId` field. */
|
|
2193
|
-
actorId?: UUIDFilter;
|
|
2194
|
-
/** Filter by the object’s `name` field. */
|
|
2195
|
-
name?: StringFilter;
|
|
2196
|
-
/** Filter by the object’s `count` field. */
|
|
2197
|
-
count?: IntFilter;
|
|
2198
|
-
/** Filter by the object’s `createdAt` field. */
|
|
2199
|
-
createdAt?: DatetimeFilter;
|
|
2200
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
2201
|
-
updatedAt?: DatetimeFilter;
|
|
2202
|
-
/** Checks for all expressions in this list. */
|
|
2203
|
-
and?: AppAchievementFilter[];
|
|
2204
|
-
/** Checks for any expressions in this list. */
|
|
2205
|
-
or?: AppAchievementFilter[];
|
|
2206
|
-
/** Negates the expression. */
|
|
2207
|
-
not?: AppAchievementFilter;
|
|
2208
|
-
/** Filter by the object’s `actor` relation. */
|
|
2209
|
-
actor?: UserFilter;
|
|
2210
|
-
}
|
|
2211
|
-
/** A filter to be used against many `AppLevel` object types. All fields are combined with a logical ‘and.’ */
|
|
2212
|
-
export interface UserToManyAppLevelFilter {
|
|
2213
|
-
/** Filters to entities where at least one related entity matches. */
|
|
2214
|
-
some?: AppLevelFilter;
|
|
2215
|
-
/** Filters to entities where every related entity matches. */
|
|
2216
|
-
every?: AppLevelFilter;
|
|
2217
|
-
/** Filters to entities where no related entity matches. */
|
|
2218
|
-
none?: AppLevelFilter;
|
|
2219
|
-
}
|
|
2220
|
-
/** A filter to be used against `AppLevel` object types. All fields are combined with a logical ‘and.’ */
|
|
2221
|
-
export interface AppLevelFilter {
|
|
2150
|
+
/** A filter to be used against `OrgLimitWarning` object types. All fields are combined with a logical ‘and.’ */
|
|
2151
|
+
export interface OrgLimitWarningFilter {
|
|
2222
2152
|
/** Filter by the object’s `id` field. */
|
|
2223
2153
|
id?: UUIDFilter;
|
|
2224
2154
|
/** Filter by the object’s `name` field. */
|
|
2225
2155
|
name?: StringFilter;
|
|
2226
|
-
/** Filter by the object’s `
|
|
2227
|
-
|
|
2228
|
-
/** Filter by the object’s `
|
|
2229
|
-
|
|
2230
|
-
/** Filter by the object’s `
|
|
2231
|
-
|
|
2232
|
-
/** Filter by the object’s `
|
|
2233
|
-
|
|
2234
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
2235
|
-
updatedAt?: DatetimeFilter;
|
|
2156
|
+
/** Filter by the object’s `warningType` field. */
|
|
2157
|
+
warningType?: StringFilter;
|
|
2158
|
+
/** Filter by the object’s `thresholdValue` field. */
|
|
2159
|
+
thresholdValue?: BigIntFilter;
|
|
2160
|
+
/** Filter by the object’s `taskIdentifier` field. */
|
|
2161
|
+
taskIdentifier?: StringFilter;
|
|
2162
|
+
/** Filter by the object’s `entityId` field. */
|
|
2163
|
+
entityId?: UUIDFilter;
|
|
2236
2164
|
/** Checks for all expressions in this list. */
|
|
2237
|
-
and?:
|
|
2165
|
+
and?: OrgLimitWarningFilter[];
|
|
2238
2166
|
/** Checks for any expressions in this list. */
|
|
2239
|
-
or?:
|
|
2167
|
+
or?: OrgLimitWarningFilter[];
|
|
2240
2168
|
/** Negates the expression. */
|
|
2241
|
-
not?:
|
|
2242
|
-
/** Filter by the object’s `
|
|
2243
|
-
|
|
2244
|
-
/** A related `
|
|
2245
|
-
|
|
2169
|
+
not?: OrgLimitWarningFilter;
|
|
2170
|
+
/** Filter by the object’s `entity` relation. */
|
|
2171
|
+
entity?: UserFilter;
|
|
2172
|
+
/** A related `entity` exists. */
|
|
2173
|
+
entityExists?: boolean;
|
|
2246
2174
|
}
|
|
2247
2175
|
/** A filter to be used against many `Email` object types. All fields are combined with a logical ‘and.’ */
|
|
2248
2176
|
export interface UserToManyEmailFilter {
|
|
@@ -3974,10 +3902,16 @@ export interface EmbeddingChunkFilter {
|
|
|
3974
3902
|
chunkStrategy?: StringFilter;
|
|
3975
3903
|
/** Filter by the object’s `metadataFields` field. */
|
|
3976
3904
|
metadataFields?: JSONFilter;
|
|
3905
|
+
/** Filter by the object’s `searchIndexes` field. */
|
|
3906
|
+
searchIndexes?: JSONFilter;
|
|
3977
3907
|
/** Filter by the object’s `enqueueChunkingJob` field. */
|
|
3978
3908
|
enqueueChunkingJob?: BooleanFilter;
|
|
3979
3909
|
/** Filter by the object’s `chunkingTaskName` field. */
|
|
3980
3910
|
chunkingTaskName?: StringFilter;
|
|
3911
|
+
/** Filter by the object’s `embeddingModel` field. */
|
|
3912
|
+
embeddingModel?: StringFilter;
|
|
3913
|
+
/** Filter by the object’s `embeddingProvider` field. */
|
|
3914
|
+
embeddingProvider?: StringFilter;
|
|
3981
3915
|
/** Filter by the object’s `parentFkFieldId` field. */
|
|
3982
3916
|
parentFkFieldId?: UUIDFilter;
|
|
3983
3917
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -4026,14 +3960,14 @@ export interface PartitionFilter {
|
|
|
4026
3960
|
tableId?: UUIDFilter;
|
|
4027
3961
|
/** Filter by the object’s `strategy` field. */
|
|
4028
3962
|
strategy?: StringFilter;
|
|
4029
|
-
/** Filter by the object’s `
|
|
4030
|
-
|
|
3963
|
+
/** Filter by the object’s `partitionKeyId` field. */
|
|
3964
|
+
partitionKeyId?: UUIDFilter;
|
|
4031
3965
|
/** Filter by the object’s `interval` field. */
|
|
4032
3966
|
interval?: StringFilter;
|
|
4033
3967
|
/** Filter by the object’s `retention` field. */
|
|
4034
3968
|
retention?: StringFilter;
|
|
4035
|
-
/** Filter by the object’s `
|
|
4036
|
-
|
|
3969
|
+
/** Filter by the object’s `premake` field. */
|
|
3970
|
+
premake?: IntFilter;
|
|
4037
3971
|
/** Filter by the object’s `namingPattern` field. */
|
|
4038
3972
|
namingPattern?: StringFilter;
|
|
4039
3973
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -4048,6 +3982,8 @@ export interface PartitionFilter {
|
|
|
4048
3982
|
not?: PartitionFilter;
|
|
4049
3983
|
/** Filter by the object’s `database` relation. */
|
|
4050
3984
|
database?: DatabaseFilter;
|
|
3985
|
+
/** Filter by the object’s `partitionKey` relation. */
|
|
3986
|
+
partitionKey?: FieldFilter;
|
|
4051
3987
|
/** Filter by the object’s `table` relation. */
|
|
4052
3988
|
table?: TableFilter;
|
|
4053
3989
|
}
|
|
@@ -4313,10 +4249,10 @@ export interface RealtimeModuleFilter {
|
|
|
4313
4249
|
sourceRegistryTableId?: UUIDFilter;
|
|
4314
4250
|
/** Filter by the object’s `retentionHours` field. */
|
|
4315
4251
|
retentionHours?: IntFilter;
|
|
4316
|
-
/** Filter by the object’s `
|
|
4317
|
-
|
|
4318
|
-
/** Filter by the object’s `
|
|
4319
|
-
|
|
4252
|
+
/** Filter by the object’s `premake` field. */
|
|
4253
|
+
premake?: IntFilter;
|
|
4254
|
+
/** Filter by the object’s `interval` field. */
|
|
4255
|
+
interval?: StringFilter;
|
|
4320
4256
|
/** Filter by the object’s `notifyChannel` field. */
|
|
4321
4257
|
notifyChannel?: StringFilter;
|
|
4322
4258
|
/** Checks for all expressions in this list. */
|
|
@@ -6129,17 +6065,17 @@ export interface InvitesModuleFilter {
|
|
|
6129
6065
|
/** Filter by the object’s `usersTable` relation. */
|
|
6130
6066
|
usersTable?: TableFilter;
|
|
6131
6067
|
}
|
|
6132
|
-
/** A filter to be used against many `
|
|
6133
|
-
export interface
|
|
6068
|
+
/** A filter to be used against many `EventsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6069
|
+
export interface DatabaseToManyEventsModuleFilter {
|
|
6134
6070
|
/** Filters to entities where at least one related entity matches. */
|
|
6135
|
-
some?:
|
|
6071
|
+
some?: EventsModuleFilter;
|
|
6136
6072
|
/** Filters to entities where every related entity matches. */
|
|
6137
|
-
every?:
|
|
6073
|
+
every?: EventsModuleFilter;
|
|
6138
6074
|
/** Filters to entities where no related entity matches. */
|
|
6139
|
-
none?:
|
|
6075
|
+
none?: EventsModuleFilter;
|
|
6140
6076
|
}
|
|
6141
|
-
/** A filter to be used against `
|
|
6142
|
-
export interface
|
|
6077
|
+
/** A filter to be used against `EventsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6078
|
+
export interface EventsModuleFilter {
|
|
6143
6079
|
/** Filter by the object’s `id` field. */
|
|
6144
6080
|
id?: UUIDFilter;
|
|
6145
6081
|
/** Filter by the object’s `databaseId` field. */
|
|
@@ -6148,14 +6084,18 @@ export interface LevelsModuleFilter {
|
|
|
6148
6084
|
schemaId?: UUIDFilter;
|
|
6149
6085
|
/** Filter by the object’s `privateSchemaId` field. */
|
|
6150
6086
|
privateSchemaId?: UUIDFilter;
|
|
6151
|
-
/** Filter by the object’s `
|
|
6152
|
-
|
|
6153
|
-
/** Filter by the object’s `
|
|
6154
|
-
|
|
6155
|
-
/** Filter by the object’s `
|
|
6156
|
-
|
|
6157
|
-
/** Filter by the object’s `
|
|
6158
|
-
|
|
6087
|
+
/** Filter by the object’s `eventsTableId` field. */
|
|
6088
|
+
eventsTableId?: UUIDFilter;
|
|
6089
|
+
/** Filter by the object’s `eventsTableName` field. */
|
|
6090
|
+
eventsTableName?: StringFilter;
|
|
6091
|
+
/** Filter by the object’s `eventAggregatesTableId` field. */
|
|
6092
|
+
eventAggregatesTableId?: UUIDFilter;
|
|
6093
|
+
/** Filter by the object’s `eventAggregatesTableName` field. */
|
|
6094
|
+
eventAggregatesTableName?: StringFilter;
|
|
6095
|
+
/** Filter by the object’s `eventTypesTableId` field. */
|
|
6096
|
+
eventTypesTableId?: UUIDFilter;
|
|
6097
|
+
/** Filter by the object’s `eventTypesTableName` field. */
|
|
6098
|
+
eventTypesTableName?: StringFilter;
|
|
6159
6099
|
/** Filter by the object’s `levelsTableId` field. */
|
|
6160
6100
|
levelsTableId?: UUIDFilter;
|
|
6161
6101
|
/** Filter by the object’s `levelsTableName` field. */
|
|
@@ -6164,26 +6104,48 @@ export interface LevelsModuleFilter {
|
|
|
6164
6104
|
levelRequirementsTableId?: UUIDFilter;
|
|
6165
6105
|
/** Filter by the object’s `levelRequirementsTableName` field. */
|
|
6166
6106
|
levelRequirementsTableName?: StringFilter;
|
|
6167
|
-
/** Filter by the object’s `
|
|
6168
|
-
|
|
6169
|
-
/** Filter by the object’s `
|
|
6170
|
-
|
|
6171
|
-
/** Filter by the object’s `
|
|
6172
|
-
|
|
6173
|
-
/** Filter by the object’s `
|
|
6174
|
-
|
|
6175
|
-
/** Filter by the object’s `
|
|
6176
|
-
|
|
6177
|
-
/** Filter by the object’s `
|
|
6178
|
-
|
|
6179
|
-
/** Filter by the object’s `
|
|
6180
|
-
|
|
6181
|
-
/** Filter by the object’s `
|
|
6182
|
-
|
|
6107
|
+
/** Filter by the object’s `levelGrantsTableId` field. */
|
|
6108
|
+
levelGrantsTableId?: UUIDFilter;
|
|
6109
|
+
/** Filter by the object’s `levelGrantsTableName` field. */
|
|
6110
|
+
levelGrantsTableName?: StringFilter;
|
|
6111
|
+
/** Filter by the object’s `achievementRewardsTableId` field. */
|
|
6112
|
+
achievementRewardsTableId?: UUIDFilter;
|
|
6113
|
+
/** Filter by the object’s `achievementRewardsTableName` field. */
|
|
6114
|
+
achievementRewardsTableName?: StringFilter;
|
|
6115
|
+
/** Filter by the object’s `recordEvent` field. */
|
|
6116
|
+
recordEvent?: StringFilter;
|
|
6117
|
+
/** Filter by the object’s `removeEvent` field. */
|
|
6118
|
+
removeEvent?: StringFilter;
|
|
6119
|
+
/** Filter by the object’s `tgEvent` field. */
|
|
6120
|
+
tgEvent?: StringFilter;
|
|
6121
|
+
/** Filter by the object’s `tgEventToggle` field. */
|
|
6122
|
+
tgEventToggle?: StringFilter;
|
|
6123
|
+
/** Filter by the object’s `tgEventToggleBool` field. */
|
|
6124
|
+
tgEventToggleBool?: StringFilter;
|
|
6125
|
+
/** Filter by the object’s `tgEventBool` field. */
|
|
6126
|
+
tgEventBool?: StringFilter;
|
|
6127
|
+
/** Filter by the object’s `upsertAggregate` field. */
|
|
6128
|
+
upsertAggregate?: StringFilter;
|
|
6129
|
+
/** Filter by the object’s `tgUpdateAggregates` field. */
|
|
6130
|
+
tgUpdateAggregates?: StringFilter;
|
|
6131
|
+
/** Filter by the object’s `pruneEvents` field. */
|
|
6132
|
+
pruneEvents?: StringFilter;
|
|
6183
6133
|
/** Filter by the object’s `stepsRequired` field. */
|
|
6184
6134
|
stepsRequired?: StringFilter;
|
|
6185
6135
|
/** Filter by the object’s `levelAchieved` field. */
|
|
6186
6136
|
levelAchieved?: StringFilter;
|
|
6137
|
+
/** Filter by the object’s `tgCheckAchievements` field. */
|
|
6138
|
+
tgCheckAchievements?: StringFilter;
|
|
6139
|
+
/** Filter by the object’s `grantAchievement` field. */
|
|
6140
|
+
grantAchievement?: StringFilter;
|
|
6141
|
+
/** Filter by the object’s `tgAchievementReward` field. */
|
|
6142
|
+
tgAchievementReward?: StringFilter;
|
|
6143
|
+
/** Filter by the object’s `interval` field. */
|
|
6144
|
+
interval?: StringFilter;
|
|
6145
|
+
/** Filter by the object’s `retention` field. */
|
|
6146
|
+
retention?: StringFilter;
|
|
6147
|
+
/** Filter by the object’s `premake` field. */
|
|
6148
|
+
premake?: IntFilter;
|
|
6187
6149
|
/** Filter by the object’s `prefix` field. */
|
|
6188
6150
|
prefix?: StringFilter;
|
|
6189
6151
|
/** Filter by the object’s `membershipType` field. */
|
|
@@ -6193,13 +6155,13 @@ export interface LevelsModuleFilter {
|
|
|
6193
6155
|
/** Filter by the object’s `actorTableId` field. */
|
|
6194
6156
|
actorTableId?: UUIDFilter;
|
|
6195
6157
|
/** Checks for all expressions in this list. */
|
|
6196
|
-
and?:
|
|
6158
|
+
and?: EventsModuleFilter[];
|
|
6197
6159
|
/** Checks for any expressions in this list. */
|
|
6198
|
-
or?:
|
|
6160
|
+
or?: EventsModuleFilter[];
|
|
6199
6161
|
/** Negates the expression. */
|
|
6200
|
-
not?:
|
|
6201
|
-
/** Filter by the object’s `
|
|
6202
|
-
|
|
6162
|
+
not?: EventsModuleFilter;
|
|
6163
|
+
/** Filter by the object’s `achievementRewardsTable` relation. */
|
|
6164
|
+
achievementRewardsTable?: TableFilter;
|
|
6203
6165
|
/** Filter by the object’s `actorTable` relation. */
|
|
6204
6166
|
actorTable?: TableFilter;
|
|
6205
6167
|
/** Filter by the object’s `database` relation. */
|
|
@@ -6208,6 +6170,14 @@ export interface LevelsModuleFilter {
|
|
|
6208
6170
|
entityTable?: TableFilter;
|
|
6209
6171
|
/** A related `entityTable` exists. */
|
|
6210
6172
|
entityTableExists?: boolean;
|
|
6173
|
+
/** Filter by the object’s `eventAggregatesTable` relation. */
|
|
6174
|
+
eventAggregatesTable?: TableFilter;
|
|
6175
|
+
/** Filter by the object’s `eventTypesTable` relation. */
|
|
6176
|
+
eventTypesTable?: TableFilter;
|
|
6177
|
+
/** Filter by the object’s `eventsTable` relation. */
|
|
6178
|
+
eventsTable?: TableFilter;
|
|
6179
|
+
/** Filter by the object’s `levelGrantsTable` relation. */
|
|
6180
|
+
levelGrantsTable?: TableFilter;
|
|
6211
6181
|
/** Filter by the object’s `levelRequirementsTable` relation. */
|
|
6212
6182
|
levelRequirementsTable?: TableFilter;
|
|
6213
6183
|
/** Filter by the object’s `levelsTable` relation. */
|
|
@@ -6216,8 +6186,6 @@ export interface LevelsModuleFilter {
|
|
|
6216
6186
|
privateSchema?: SchemaFilter;
|
|
6217
6187
|
/** Filter by the object’s `schema` relation. */
|
|
6218
6188
|
schema?: SchemaFilter;
|
|
6219
|
-
/** Filter by the object’s `stepsTable` relation. */
|
|
6220
|
-
stepsTable?: TableFilter;
|
|
6221
6189
|
}
|
|
6222
6190
|
/** A filter to be used against many `LimitsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6223
6191
|
export interface DatabaseToManyLimitsModuleFilter {
|
|
@@ -6278,6 +6246,14 @@ export interface LimitsModuleFilter {
|
|
|
6278
6246
|
capCheckTrigger?: StringFilter;
|
|
6279
6247
|
/** Filter by the object’s `resolveCapFunction` field. */
|
|
6280
6248
|
resolveCapFunction?: StringFilter;
|
|
6249
|
+
/** Filter by the object’s `limitWarningsTableId` field. */
|
|
6250
|
+
limitWarningsTableId?: UUIDFilter;
|
|
6251
|
+
/** Filter by the object’s `limitWarningStateTableId` field. */
|
|
6252
|
+
limitWarningStateTableId?: UUIDFilter;
|
|
6253
|
+
/** Filter by the object’s `limitCheckSoftFunction` field. */
|
|
6254
|
+
limitCheckSoftFunction?: StringFilter;
|
|
6255
|
+
/** Filter by the object’s `limitAggregateCheckSoftFunction` field. */
|
|
6256
|
+
limitAggregateCheckSoftFunction?: StringFilter;
|
|
6281
6257
|
/** Filter by the object’s `prefix` field. */
|
|
6282
6258
|
prefix?: StringFilter;
|
|
6283
6259
|
/** Filter by the object’s `membershipType` field. */
|
|
@@ -6334,6 +6310,14 @@ export interface LimitsModuleFilter {
|
|
|
6334
6310
|
limitCreditsTable?: TableFilter;
|
|
6335
6311
|
/** A related `limitCreditsTable` exists. */
|
|
6336
6312
|
limitCreditsTableExists?: boolean;
|
|
6313
|
+
/** Filter by the object’s `limitWarningStateTable` relation. */
|
|
6314
|
+
limitWarningStateTable?: TableFilter;
|
|
6315
|
+
/** A related `limitWarningStateTable` exists. */
|
|
6316
|
+
limitWarningStateTableExists?: boolean;
|
|
6317
|
+
/** Filter by the object’s `limitWarningsTable` relation. */
|
|
6318
|
+
limitWarningsTable?: TableFilter;
|
|
6319
|
+
/** A related `limitWarningsTable` exists. */
|
|
6320
|
+
limitWarningsTableExists?: boolean;
|
|
6337
6321
|
/** Filter by the object’s `privateSchema` relation. */
|
|
6338
6322
|
privateSchema?: SchemaFilter;
|
|
6339
6323
|
/** Filter by the object’s `schema` relation. */
|
|
@@ -6736,17 +6720,17 @@ export interface RlsModuleFilter {
|
|
|
6736
6720
|
/** Filter by the object’s `usersTable` relation. */
|
|
6737
6721
|
usersTable?: TableFilter;
|
|
6738
6722
|
}
|
|
6739
|
-
/** A filter to be used against many `
|
|
6740
|
-
export interface
|
|
6723
|
+
/** A filter to be used against many `UserStateModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6724
|
+
export interface DatabaseToManyUserStateModuleFilter {
|
|
6741
6725
|
/** Filters to entities where at least one related entity matches. */
|
|
6742
|
-
some?:
|
|
6726
|
+
some?: UserStateModuleFilter;
|
|
6743
6727
|
/** Filters to entities where every related entity matches. */
|
|
6744
|
-
every?:
|
|
6728
|
+
every?: UserStateModuleFilter;
|
|
6745
6729
|
/** Filters to entities where no related entity matches. */
|
|
6746
|
-
none?:
|
|
6730
|
+
none?: UserStateModuleFilter;
|
|
6747
6731
|
}
|
|
6748
|
-
/** A filter to be used against `
|
|
6749
|
-
export interface
|
|
6732
|
+
/** A filter to be used against `UserStateModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6733
|
+
export interface UserStateModuleFilter {
|
|
6750
6734
|
/** Filter by the object’s `id` field. */
|
|
6751
6735
|
id?: UUIDFilter;
|
|
6752
6736
|
/** Filter by the object’s `databaseId` field. */
|
|
@@ -6758,11 +6742,11 @@ export interface SecretsModuleFilter {
|
|
|
6758
6742
|
/** Filter by the object’s `tableName` field. */
|
|
6759
6743
|
tableName?: StringFilter;
|
|
6760
6744
|
/** Checks for all expressions in this list. */
|
|
6761
|
-
and?:
|
|
6745
|
+
and?: UserStateModuleFilter[];
|
|
6762
6746
|
/** Checks for any expressions in this list. */
|
|
6763
|
-
or?:
|
|
6747
|
+
or?: UserStateModuleFilter[];
|
|
6764
6748
|
/** Negates the expression. */
|
|
6765
|
-
not?:
|
|
6749
|
+
not?: UserStateModuleFilter;
|
|
6766
6750
|
/** Filter by the object’s `database` relation. */
|
|
6767
6751
|
database?: DatabaseFilter;
|
|
6768
6752
|
/** Filter by the object’s `schema` relation. */
|
|
@@ -7358,6 +7342,8 @@ export interface EntityTypeProvisionFilter {
|
|
|
7358
7342
|
hasStorage?: BooleanFilter;
|
|
7359
7343
|
/** Filter by the object’s `hasInvites` field. */
|
|
7360
7344
|
hasInvites?: BooleanFilter;
|
|
7345
|
+
/** Filter by the object’s `hasInviteAchievements` field. */
|
|
7346
|
+
hasInviteAchievements?: BooleanFilter;
|
|
7361
7347
|
/** Filter by the object’s `storageConfig` field. */
|
|
7362
7348
|
storageConfig?: JSONFilter;
|
|
7363
7349
|
/** Filter by the object’s `skipEntityPolicies` field. */
|
|
@@ -7859,6 +7845,55 @@ export interface DatabaseToManyRealtimeModuleFilter {
|
|
|
7859
7845
|
/** Filters to entities where no related entity matches. */
|
|
7860
7846
|
none?: RealtimeModuleFilter;
|
|
7861
7847
|
}
|
|
7848
|
+
/** A filter to be used against `RateLimitMetersModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7849
|
+
export interface RateLimitMetersModuleFilter {
|
|
7850
|
+
/** Filter by the object’s `id` field. */
|
|
7851
|
+
id?: UUIDFilter;
|
|
7852
|
+
/** Filter by the object’s `databaseId` field. */
|
|
7853
|
+
databaseId?: UUIDFilter;
|
|
7854
|
+
/** Filter by the object’s `schemaId` field. */
|
|
7855
|
+
schemaId?: UUIDFilter;
|
|
7856
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
7857
|
+
privateSchemaId?: UUIDFilter;
|
|
7858
|
+
/** Filter by the object’s `rateLimitStateTableId` field. */
|
|
7859
|
+
rateLimitStateTableId?: UUIDFilter;
|
|
7860
|
+
/** Filter by the object’s `rateLimitStateTableName` field. */
|
|
7861
|
+
rateLimitStateTableName?: StringFilter;
|
|
7862
|
+
/** Filter by the object’s `rateLimitOverridesTableId` field. */
|
|
7863
|
+
rateLimitOverridesTableId?: UUIDFilter;
|
|
7864
|
+
/** Filter by the object’s `rateLimitOverridesTableName` field. */
|
|
7865
|
+
rateLimitOverridesTableName?: StringFilter;
|
|
7866
|
+
/** Filter by the object’s `rateWindowLimitsTableId` field. */
|
|
7867
|
+
rateWindowLimitsTableId?: UUIDFilter;
|
|
7868
|
+
/** Filter by the object’s `rateWindowLimitsTableName` field. */
|
|
7869
|
+
rateWindowLimitsTableName?: StringFilter;
|
|
7870
|
+
/** Filter by the object’s `checkRateLimitFunction` field. */
|
|
7871
|
+
checkRateLimitFunction?: StringFilter;
|
|
7872
|
+
/** Filter by the object’s `prefix` field. */
|
|
7873
|
+
prefix?: StringFilter;
|
|
7874
|
+
/** Checks for all expressions in this list. */
|
|
7875
|
+
and?: RateLimitMetersModuleFilter[];
|
|
7876
|
+
/** Checks for any expressions in this list. */
|
|
7877
|
+
or?: RateLimitMetersModuleFilter[];
|
|
7878
|
+
/** Negates the expression. */
|
|
7879
|
+
not?: RateLimitMetersModuleFilter;
|
|
7880
|
+
/** Filter by the object’s `database` relation. */
|
|
7881
|
+
database?: DatabaseFilter;
|
|
7882
|
+
/** Filter by the object’s `privateSchema` relation. */
|
|
7883
|
+
privateSchema?: SchemaFilter;
|
|
7884
|
+
/** Filter by the object’s `rateLimitOverridesTableByRateLimitOverridesTableId` relation. */
|
|
7885
|
+
rateLimitOverridesTableByRateLimitOverridesTableId?: TableFilter;
|
|
7886
|
+
/** A related `rateLimitOverridesTableByRateLimitOverridesTableId` exists. */
|
|
7887
|
+
rateLimitOverridesTableByRateLimitOverridesTableIdExists?: boolean;
|
|
7888
|
+
/** Filter by the object’s `rateLimitStateTableByRateLimitStateTableId` relation. */
|
|
7889
|
+
rateLimitStateTableByRateLimitStateTableId?: TableFilter;
|
|
7890
|
+
/** Filter by the object’s `rateWindowLimitsTableByRateWindowLimitsTableId` relation. */
|
|
7891
|
+
rateWindowLimitsTableByRateWindowLimitsTableId?: TableFilter;
|
|
7892
|
+
/** A related `rateWindowLimitsTableByRateWindowLimitsTableId` exists. */
|
|
7893
|
+
rateWindowLimitsTableByRateWindowLimitsTableIdExists?: boolean;
|
|
7894
|
+
/** Filter by the object’s `schema` relation. */
|
|
7895
|
+
schema?: SchemaFilter;
|
|
7896
|
+
}
|
|
7862
7897
|
/** A filter to be used against many `DatabaseProvisionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7863
7898
|
export interface DatabaseToManyDatabaseProvisionModuleFilter {
|
|
7864
7899
|
/** Filters to entities where at least one related entity matches. */
|
|
@@ -8175,6 +8210,25 @@ export interface NodeTypeRegistryFilter {
|
|
|
8175
8210
|
/** Negates the expression. */
|
|
8176
8211
|
not?: NodeTypeRegistryFilter;
|
|
8177
8212
|
}
|
|
8213
|
+
/** A filter to be used against `AppLimitWarning` object types. All fields are combined with a logical ‘and.’ */
|
|
8214
|
+
export interface AppLimitWarningFilter {
|
|
8215
|
+
/** Filter by the object’s `id` field. */
|
|
8216
|
+
id?: UUIDFilter;
|
|
8217
|
+
/** Filter by the object’s `name` field. */
|
|
8218
|
+
name?: StringFilter;
|
|
8219
|
+
/** Filter by the object’s `warningType` field. */
|
|
8220
|
+
warningType?: StringFilter;
|
|
8221
|
+
/** Filter by the object’s `thresholdValue` field. */
|
|
8222
|
+
thresholdValue?: BigIntFilter;
|
|
8223
|
+
/** Filter by the object’s `taskIdentifier` field. */
|
|
8224
|
+
taskIdentifier?: StringFilter;
|
|
8225
|
+
/** Checks for all expressions in this list. */
|
|
8226
|
+
and?: AppLimitWarningFilter[];
|
|
8227
|
+
/** Checks for any expressions in this list. */
|
|
8228
|
+
or?: AppLimitWarningFilter[];
|
|
8229
|
+
/** Negates the expression. */
|
|
8230
|
+
not?: AppLimitWarningFilter;
|
|
8231
|
+
}
|
|
8178
8232
|
/** A filter to be used against `UserConnectedAccount` object types. All fields are combined with a logical ‘and.’ */
|
|
8179
8233
|
export interface UserConnectedAccountFilter {
|
|
8180
8234
|
/** Filter by the object’s `id` field. */
|
|
@@ -8223,31 +8277,6 @@ export interface ObjectFilter {
|
|
|
8223
8277
|
/** Negates the expression. */
|
|
8224
8278
|
not?: ObjectFilter;
|
|
8225
8279
|
}
|
|
8226
|
-
/** A filter to be used against `AppLevelRequirement` object types. All fields are combined with a logical ‘and.’ */
|
|
8227
|
-
export interface AppLevelRequirementFilter {
|
|
8228
|
-
/** Filter by the object’s `id` field. */
|
|
8229
|
-
id?: UUIDFilter;
|
|
8230
|
-
/** Filter by the object’s `name` field. */
|
|
8231
|
-
name?: StringFilter;
|
|
8232
|
-
/** Filter by the object’s `level` field. */
|
|
8233
|
-
level?: StringFilter;
|
|
8234
|
-
/** Filter by the object’s `description` field. */
|
|
8235
|
-
description?: StringFilter;
|
|
8236
|
-
/** Filter by the object’s `requiredCount` field. */
|
|
8237
|
-
requiredCount?: IntFilter;
|
|
8238
|
-
/** Filter by the object’s `priority` field. */
|
|
8239
|
-
priority?: IntFilter;
|
|
8240
|
-
/** Filter by the object’s `createdAt` field. */
|
|
8241
|
-
createdAt?: DatetimeFilter;
|
|
8242
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
8243
|
-
updatedAt?: DatetimeFilter;
|
|
8244
|
-
/** Checks for all expressions in this list. */
|
|
8245
|
-
and?: AppLevelRequirementFilter[];
|
|
8246
|
-
/** Checks for any expressions in this list. */
|
|
8247
|
-
or?: AppLevelRequirementFilter[];
|
|
8248
|
-
/** Negates the expression. */
|
|
8249
|
-
not?: AppLevelRequirementFilter;
|
|
8250
|
-
}
|
|
8251
8280
|
/** A filter to be used against `Commit` object types. All fields are combined with a logical ‘and.’ */
|
|
8252
8281
|
export interface CommitFilter {
|
|
8253
8282
|
/** Filter by the object’s `id` field. */
|
|
@@ -8944,13 +8973,13 @@ export interface MembershipTypesModuleInput {
|
|
|
8944
8973
|
tableId?: string;
|
|
8945
8974
|
tableName?: string;
|
|
8946
8975
|
}
|
|
8947
|
-
export interface
|
|
8976
|
+
export interface CreateUserStateModuleInput {
|
|
8948
8977
|
clientMutationId?: string;
|
|
8949
|
-
/** The `
|
|
8950
|
-
|
|
8978
|
+
/** The `UserStateModule` to be created by this mutation. */
|
|
8979
|
+
userStateModule: UserStateModuleInput;
|
|
8951
8980
|
}
|
|
8952
|
-
/** An input for mutations affecting `
|
|
8953
|
-
export interface
|
|
8981
|
+
/** An input for mutations affecting `UserStateModule` */
|
|
8982
|
+
export interface UserStateModuleInput {
|
|
8954
8983
|
id?: string;
|
|
8955
8984
|
databaseId: string;
|
|
8956
8985
|
schemaId?: string;
|
|
@@ -9127,38 +9156,6 @@ export interface AppOwnerGrantInput {
|
|
|
9127
9156
|
createdAt?: string;
|
|
9128
9157
|
updatedAt?: string;
|
|
9129
9158
|
}
|
|
9130
|
-
export interface CreateAppAchievementInput {
|
|
9131
|
-
clientMutationId?: string;
|
|
9132
|
-
/** The `AppAchievement` to be created by this mutation. */
|
|
9133
|
-
appAchievement: AppAchievementInput;
|
|
9134
|
-
}
|
|
9135
|
-
/** An input for mutations affecting `AppAchievement` */
|
|
9136
|
-
export interface AppAchievementInput {
|
|
9137
|
-
id?: string;
|
|
9138
|
-
actorId?: string;
|
|
9139
|
-
/** Name identifier of the level requirement being tracked */
|
|
9140
|
-
name: string;
|
|
9141
|
-
/** Cumulative count of completed steps toward this requirement */
|
|
9142
|
-
count?: number;
|
|
9143
|
-
createdAt?: string;
|
|
9144
|
-
updatedAt?: string;
|
|
9145
|
-
}
|
|
9146
|
-
export interface CreateAppStepInput {
|
|
9147
|
-
clientMutationId?: string;
|
|
9148
|
-
/** The `AppStep` to be created by this mutation. */
|
|
9149
|
-
appStep: AppStepInput;
|
|
9150
|
-
}
|
|
9151
|
-
/** An input for mutations affecting `AppStep` */
|
|
9152
|
-
export interface AppStepInput {
|
|
9153
|
-
id?: string;
|
|
9154
|
-
actorId?: string;
|
|
9155
|
-
/** Name identifier of the level requirement this step fulfills */
|
|
9156
|
-
name: string;
|
|
9157
|
-
/** Number of units completed in this step action */
|
|
9158
|
-
count?: number;
|
|
9159
|
-
createdAt?: string;
|
|
9160
|
-
updatedAt?: string;
|
|
9161
|
-
}
|
|
9162
9159
|
export interface CreateOrgPermissionDefaultInput {
|
|
9163
9160
|
clientMutationId?: string;
|
|
9164
9161
|
/** The `OrgPermissionDefault` to be created by this mutation. */
|
|
@@ -9534,6 +9531,23 @@ export interface AppLimitCreditCodeItemInput {
|
|
|
9534
9531
|
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
9535
9532
|
creditType?: string;
|
|
9536
9533
|
}
|
|
9534
|
+
export interface CreateAppLimitWarningInput {
|
|
9535
|
+
clientMutationId?: string;
|
|
9536
|
+
/** The `AppLimitWarning` to be created by this mutation. */
|
|
9537
|
+
appLimitWarning: AppLimitWarningInput;
|
|
9538
|
+
}
|
|
9539
|
+
/** An input for mutations affecting `AppLimitWarning` */
|
|
9540
|
+
export interface AppLimitWarningInput {
|
|
9541
|
+
id?: string;
|
|
9542
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
9543
|
+
name: string;
|
|
9544
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
9545
|
+
warningType: string;
|
|
9546
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
9547
|
+
thresholdValue: string;
|
|
9548
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
9549
|
+
taskIdentifier: string;
|
|
9550
|
+
}
|
|
9537
9551
|
export interface CreateUserConnectedAccountInput {
|
|
9538
9552
|
clientMutationId?: string;
|
|
9539
9553
|
/** The `UserConnectedAccount` to be created by this mutation. */
|
|
@@ -9644,6 +9658,25 @@ export interface AppLimitCreditInput {
|
|
|
9644
9658
|
/** Optional reason for the credit grant (promo code, admin grant, etc.) */
|
|
9645
9659
|
reason?: string;
|
|
9646
9660
|
}
|
|
9661
|
+
export interface CreateOrgLimitWarningInput {
|
|
9662
|
+
clientMutationId?: string;
|
|
9663
|
+
/** The `OrgLimitWarning` to be created by this mutation. */
|
|
9664
|
+
orgLimitWarning: OrgLimitWarningInput;
|
|
9665
|
+
}
|
|
9666
|
+
/** An input for mutations affecting `OrgLimitWarning` */
|
|
9667
|
+
export interface OrgLimitWarningInput {
|
|
9668
|
+
id?: string;
|
|
9669
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
9670
|
+
name: string;
|
|
9671
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
9672
|
+
warningType: string;
|
|
9673
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
9674
|
+
thresholdValue: string;
|
|
9675
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
9676
|
+
taskIdentifier: string;
|
|
9677
|
+
/** Per-entity override (NULL = scope default for all entities) */
|
|
9678
|
+
entityId?: string;
|
|
9679
|
+
}
|
|
9647
9680
|
export interface CreateOrgLimitCreditInput {
|
|
9648
9681
|
clientMutationId?: string;
|
|
9649
9682
|
/** The `OrgLimitCredit` to be created by this mutation. */
|
|
@@ -9700,27 +9733,6 @@ export interface SiteMetadatumInput {
|
|
|
9700
9733
|
/** Open Graph image for social media previews */
|
|
9701
9734
|
ogImage?: ConstructiveInternalTypeImage;
|
|
9702
9735
|
}
|
|
9703
|
-
export interface CreateAppLevelRequirementInput {
|
|
9704
|
-
clientMutationId?: string;
|
|
9705
|
-
/** The `AppLevelRequirement` to be created by this mutation. */
|
|
9706
|
-
appLevelRequirement: AppLevelRequirementInput;
|
|
9707
|
-
}
|
|
9708
|
-
/** An input for mutations affecting `AppLevelRequirement` */
|
|
9709
|
-
export interface AppLevelRequirementInput {
|
|
9710
|
-
id?: string;
|
|
9711
|
-
/** Name identifier of the requirement (matches step names) */
|
|
9712
|
-
name: string;
|
|
9713
|
-
/** Name of the level this requirement belongs to */
|
|
9714
|
-
level: string;
|
|
9715
|
-
/** Human-readable description of what this requirement entails */
|
|
9716
|
-
description?: string;
|
|
9717
|
-
/** Number of steps needed to satisfy this requirement */
|
|
9718
|
-
requiredCount?: number;
|
|
9719
|
-
/** Display ordering priority; lower values appear first */
|
|
9720
|
-
priority?: number;
|
|
9721
|
-
createdAt?: string;
|
|
9722
|
-
updatedAt?: string;
|
|
9723
|
-
}
|
|
9724
9736
|
export interface CreateFullTextSearchInput {
|
|
9725
9737
|
clientMutationId?: string;
|
|
9726
9738
|
/** The `FullTextSearch` to be created by this mutation. */
|
|
@@ -10204,10 +10216,10 @@ export interface PartitionInput {
|
|
|
10204
10216
|
databaseId: string;
|
|
10205
10217
|
tableId: string;
|
|
10206
10218
|
strategy: string;
|
|
10207
|
-
|
|
10219
|
+
partitionKeyId: string;
|
|
10208
10220
|
interval?: string;
|
|
10209
10221
|
retention?: string;
|
|
10210
|
-
|
|
10222
|
+
premake?: number;
|
|
10211
10223
|
namingPattern?: string;
|
|
10212
10224
|
createdAt?: string;
|
|
10213
10225
|
updatedAt?: string;
|
|
@@ -10300,25 +10312,6 @@ export interface OrgGrantInput {
|
|
|
10300
10312
|
createdAt?: string;
|
|
10301
10313
|
updatedAt?: string;
|
|
10302
10314
|
}
|
|
10303
|
-
export interface CreateAppLevelInput {
|
|
10304
|
-
clientMutationId?: string;
|
|
10305
|
-
/** The `AppLevel` to be created by this mutation. */
|
|
10306
|
-
appLevel: AppLevelInput;
|
|
10307
|
-
}
|
|
10308
|
-
/** An input for mutations affecting `AppLevel` */
|
|
10309
|
-
export interface AppLevelInput {
|
|
10310
|
-
id?: string;
|
|
10311
|
-
/** Unique name of the level */
|
|
10312
|
-
name: string;
|
|
10313
|
-
/** Human-readable description of what this level represents */
|
|
10314
|
-
description?: string;
|
|
10315
|
-
/** Badge or icon image associated with this level */
|
|
10316
|
-
image?: ConstructiveInternalTypeImage;
|
|
10317
|
-
/** Optional owner (actor) who created or manages this level */
|
|
10318
|
-
ownerId?: string;
|
|
10319
|
-
createdAt?: string;
|
|
10320
|
-
updatedAt?: string;
|
|
10321
|
-
}
|
|
10322
10315
|
export interface CreateBlueprintInput {
|
|
10323
10316
|
clientMutationId?: string;
|
|
10324
10317
|
/** The `Blueprint` to be created by this mutation. */
|
|
@@ -10371,6 +10364,26 @@ export interface DenormalizedTableFieldInput {
|
|
|
10371
10364
|
funcName?: string;
|
|
10372
10365
|
funcOrder?: number;
|
|
10373
10366
|
}
|
|
10367
|
+
export interface CreateRateLimitMetersModuleInput {
|
|
10368
|
+
clientMutationId?: string;
|
|
10369
|
+
/** The `RateLimitMetersModule` to be created by this mutation. */
|
|
10370
|
+
rateLimitMetersModule: RateLimitMetersModuleInput;
|
|
10371
|
+
}
|
|
10372
|
+
/** An input for mutations affecting `RateLimitMetersModule` */
|
|
10373
|
+
export interface RateLimitMetersModuleInput {
|
|
10374
|
+
id?: string;
|
|
10375
|
+
databaseId: string;
|
|
10376
|
+
schemaId?: string;
|
|
10377
|
+
privateSchemaId?: string;
|
|
10378
|
+
rateLimitStateTableId?: string;
|
|
10379
|
+
rateLimitStateTableName?: string;
|
|
10380
|
+
rateLimitOverridesTableId?: string;
|
|
10381
|
+
rateLimitOverridesTableName?: string;
|
|
10382
|
+
rateWindowLimitsTableId?: string;
|
|
10383
|
+
rateWindowLimitsTableName?: string;
|
|
10384
|
+
checkRateLimitFunction?: string;
|
|
10385
|
+
prefix?: string;
|
|
10386
|
+
}
|
|
10374
10387
|
export interface CreateRealtimeModuleInput {
|
|
10375
10388
|
clientMutationId?: string;
|
|
10376
10389
|
/** The `RealtimeModule` to be created by this mutation. */
|
|
@@ -10387,8 +10400,8 @@ export interface RealtimeModuleInput {
|
|
|
10387
10400
|
listenerNodeTableId?: string;
|
|
10388
10401
|
sourceRegistryTableId?: string;
|
|
10389
10402
|
retentionHours?: number;
|
|
10390
|
-
|
|
10391
|
-
|
|
10403
|
+
premake?: number;
|
|
10404
|
+
interval?: string;
|
|
10392
10405
|
notifyChannel?: string;
|
|
10393
10406
|
}
|
|
10394
10407
|
export interface CreatePlansModuleInput {
|
|
@@ -11207,32 +11220,6 @@ export interface PolicyInput {
|
|
|
11207
11220
|
createdAt?: string;
|
|
11208
11221
|
updatedAt?: string;
|
|
11209
11222
|
}
|
|
11210
|
-
export interface CreateEmbeddingChunkInput {
|
|
11211
|
-
clientMutationId?: string;
|
|
11212
|
-
/** The `EmbeddingChunk` to be created by this mutation. */
|
|
11213
|
-
embeddingChunk: EmbeddingChunkInput;
|
|
11214
|
-
}
|
|
11215
|
-
/** An input for mutations affecting `EmbeddingChunk` */
|
|
11216
|
-
export interface EmbeddingChunkInput {
|
|
11217
|
-
id?: string;
|
|
11218
|
-
databaseId?: string;
|
|
11219
|
-
tableId: string;
|
|
11220
|
-
embeddingFieldId?: string;
|
|
11221
|
-
chunksTableId?: string;
|
|
11222
|
-
chunksTableName?: string;
|
|
11223
|
-
contentFieldName?: string;
|
|
11224
|
-
dimensions?: number;
|
|
11225
|
-
metric?: string;
|
|
11226
|
-
chunkSize?: number;
|
|
11227
|
-
chunkOverlap?: number;
|
|
11228
|
-
chunkStrategy?: string;
|
|
11229
|
-
metadataFields?: unknown;
|
|
11230
|
-
enqueueChunkingJob?: boolean;
|
|
11231
|
-
chunkingTaskName?: string;
|
|
11232
|
-
parentFkFieldId?: string;
|
|
11233
|
-
createdAt?: string;
|
|
11234
|
-
updatedAt?: string;
|
|
11235
|
-
}
|
|
11236
11223
|
export interface CreateWebauthnSettingInput {
|
|
11237
11224
|
clientMutationId?: string;
|
|
11238
11225
|
/** The `WebauthnSetting` to be created by this mutation. */
|
|
@@ -11566,6 +11553,35 @@ export interface OrgMembershipInput {
|
|
|
11566
11553
|
isReadOnly?: boolean;
|
|
11567
11554
|
profileId?: string;
|
|
11568
11555
|
}
|
|
11556
|
+
export interface CreateEmbeddingChunkInput {
|
|
11557
|
+
clientMutationId?: string;
|
|
11558
|
+
/** The `EmbeddingChunk` to be created by this mutation. */
|
|
11559
|
+
embeddingChunk: EmbeddingChunkInput;
|
|
11560
|
+
}
|
|
11561
|
+
/** An input for mutations affecting `EmbeddingChunk` */
|
|
11562
|
+
export interface EmbeddingChunkInput {
|
|
11563
|
+
id?: string;
|
|
11564
|
+
databaseId?: string;
|
|
11565
|
+
tableId: string;
|
|
11566
|
+
embeddingFieldId?: string;
|
|
11567
|
+
chunksTableId?: string;
|
|
11568
|
+
chunksTableName?: string;
|
|
11569
|
+
contentFieldName?: string;
|
|
11570
|
+
dimensions?: number;
|
|
11571
|
+
metric?: string;
|
|
11572
|
+
chunkSize?: number;
|
|
11573
|
+
chunkOverlap?: number;
|
|
11574
|
+
chunkStrategy?: string;
|
|
11575
|
+
metadataFields?: unknown;
|
|
11576
|
+
searchIndexes?: unknown;
|
|
11577
|
+
enqueueChunkingJob?: boolean;
|
|
11578
|
+
chunkingTaskName?: string;
|
|
11579
|
+
embeddingModel?: string;
|
|
11580
|
+
embeddingProvider?: string;
|
|
11581
|
+
parentFkFieldId?: string;
|
|
11582
|
+
createdAt?: string;
|
|
11583
|
+
updatedAt?: string;
|
|
11584
|
+
}
|
|
11569
11585
|
export interface CreateForeignKeyConstraintInput {
|
|
11570
11586
|
clientMutationId?: string;
|
|
11571
11587
|
/** The `ForeignKeyConstraint` to be created by this mutation. */
|
|
@@ -11783,7 +11799,7 @@ export interface EntityTypeProvisionInput {
|
|
|
11783
11799
|
*/
|
|
11784
11800
|
hasProfiles?: boolean;
|
|
11785
11801
|
/**
|
|
11786
|
-
* Whether to provision
|
|
11802
|
+
* Whether to provision events_module for this type. Defaults to false.
|
|
11787
11803
|
* Levels provide gamification/achievement tracking for members.
|
|
11788
11804
|
* When true, creates level steps, achievements, and level tables with security.
|
|
11789
11805
|
*/
|
|
@@ -11805,6 +11821,16 @@ export interface EntityTypeProvisionInput {
|
|
|
11805
11821
|
* ON CONFLICT DO NOTHING in the fan-out makes repeated INSERTs safe.
|
|
11806
11822
|
*/
|
|
11807
11823
|
hasInvites?: boolean;
|
|
11824
|
+
/**
|
|
11825
|
+
* Whether to auto-attach an EventTracker to the claimed_invites table for invite-based
|
|
11826
|
+
* achievements. Defaults to false. Requires has_invites=true AND has_levels=true.
|
|
11827
|
+
* When true, the trigger calls event_tracker() on the claimed_invites table with
|
|
11828
|
+
* event_name='invite_claimed', actor_field='sender_id', events=['INSERT'],
|
|
11829
|
+
* crediting the SENDER (inviter) when someone claims their invite code.
|
|
11830
|
+
* Developers can then define achievements in the blueprint achievements[] section
|
|
11831
|
+
* that reference the 'invite_claimed' event (e.g., "Invite 5 friends" = count: 5).
|
|
11832
|
+
*/
|
|
11833
|
+
hasInviteAchievements?: boolean;
|
|
11808
11834
|
/**
|
|
11809
11835
|
* Optional jsonb object for storage module configuration and initial bucket seeding.
|
|
11810
11836
|
* Only used when has_storage = true; ignored otherwise. NULL = use defaults.
|
|
@@ -11915,40 +11941,6 @@ export interface EntityTypeProvisionInput {
|
|
|
11915
11941
|
*/
|
|
11916
11942
|
outInvitesModuleId?: string;
|
|
11917
11943
|
}
|
|
11918
|
-
export interface CreateLevelsModuleInput {
|
|
11919
|
-
clientMutationId?: string;
|
|
11920
|
-
/** The `LevelsModule` to be created by this mutation. */
|
|
11921
|
-
levelsModule: LevelsModuleInput;
|
|
11922
|
-
}
|
|
11923
|
-
/** An input for mutations affecting `LevelsModule` */
|
|
11924
|
-
export interface LevelsModuleInput {
|
|
11925
|
-
id?: string;
|
|
11926
|
-
databaseId: string;
|
|
11927
|
-
schemaId?: string;
|
|
11928
|
-
privateSchemaId?: string;
|
|
11929
|
-
stepsTableId?: string;
|
|
11930
|
-
stepsTableName?: string;
|
|
11931
|
-
achievementsTableId?: string;
|
|
11932
|
-
achievementsTableName?: string;
|
|
11933
|
-
levelsTableId?: string;
|
|
11934
|
-
levelsTableName?: string;
|
|
11935
|
-
levelRequirementsTableId?: string;
|
|
11936
|
-
levelRequirementsTableName?: string;
|
|
11937
|
-
completedStep?: string;
|
|
11938
|
-
incompletedStep?: string;
|
|
11939
|
-
tgAchievement?: string;
|
|
11940
|
-
tgAchievementToggle?: string;
|
|
11941
|
-
tgAchievementToggleBoolean?: string;
|
|
11942
|
-
tgAchievementBoolean?: string;
|
|
11943
|
-
upsertAchievement?: string;
|
|
11944
|
-
tgUpdateAchievements?: string;
|
|
11945
|
-
stepsRequired?: string;
|
|
11946
|
-
levelAchieved?: string;
|
|
11947
|
-
prefix?: string;
|
|
11948
|
-
membershipType: number;
|
|
11949
|
-
entityTableId?: string;
|
|
11950
|
-
actorTableId?: string;
|
|
11951
|
-
}
|
|
11952
11944
|
export interface CreateUserAuthModuleInput {
|
|
11953
11945
|
clientMutationId?: string;
|
|
11954
11946
|
/** The `UserAuthModule` to be created by this mutation. */
|
|
@@ -12077,6 +12069,10 @@ export interface LimitsModuleInput {
|
|
|
12077
12069
|
limitCapsDefaultsTableId?: string;
|
|
12078
12070
|
capCheckTrigger?: string;
|
|
12079
12071
|
resolveCapFunction?: string;
|
|
12072
|
+
limitWarningsTableId?: string;
|
|
12073
|
+
limitWarningStateTableId?: string;
|
|
12074
|
+
limitCheckSoftFunction?: string;
|
|
12075
|
+
limitAggregateCheckSoftFunction?: string;
|
|
12080
12076
|
prefix?: string;
|
|
12081
12077
|
membershipType: number;
|
|
12082
12078
|
entityTableId?: string;
|
|
@@ -12165,6 +12161,53 @@ export interface MembershipsModuleInput {
|
|
|
12165
12161
|
entityIdsFunction?: string;
|
|
12166
12162
|
memberProfilesTableId?: string;
|
|
12167
12163
|
}
|
|
12164
|
+
export interface CreateEventsModuleInput {
|
|
12165
|
+
clientMutationId?: string;
|
|
12166
|
+
/** The `EventsModule` to be created by this mutation. */
|
|
12167
|
+
eventsModule: EventsModuleInput;
|
|
12168
|
+
}
|
|
12169
|
+
/** An input for mutations affecting `EventsModule` */
|
|
12170
|
+
export interface EventsModuleInput {
|
|
12171
|
+
id?: string;
|
|
12172
|
+
databaseId: string;
|
|
12173
|
+
schemaId?: string;
|
|
12174
|
+
privateSchemaId?: string;
|
|
12175
|
+
eventsTableId?: string;
|
|
12176
|
+
eventsTableName?: string;
|
|
12177
|
+
eventAggregatesTableId?: string;
|
|
12178
|
+
eventAggregatesTableName?: string;
|
|
12179
|
+
eventTypesTableId?: string;
|
|
12180
|
+
eventTypesTableName?: string;
|
|
12181
|
+
levelsTableId?: string;
|
|
12182
|
+
levelsTableName?: string;
|
|
12183
|
+
levelRequirementsTableId?: string;
|
|
12184
|
+
levelRequirementsTableName?: string;
|
|
12185
|
+
levelGrantsTableId?: string;
|
|
12186
|
+
levelGrantsTableName?: string;
|
|
12187
|
+
achievementRewardsTableId?: string;
|
|
12188
|
+
achievementRewardsTableName?: string;
|
|
12189
|
+
recordEvent?: string;
|
|
12190
|
+
removeEvent?: string;
|
|
12191
|
+
tgEvent?: string;
|
|
12192
|
+
tgEventToggle?: string;
|
|
12193
|
+
tgEventToggleBool?: string;
|
|
12194
|
+
tgEventBool?: string;
|
|
12195
|
+
upsertAggregate?: string;
|
|
12196
|
+
tgUpdateAggregates?: string;
|
|
12197
|
+
pruneEvents?: string;
|
|
12198
|
+
stepsRequired?: string;
|
|
12199
|
+
levelAchieved?: string;
|
|
12200
|
+
tgCheckAchievements?: string;
|
|
12201
|
+
grantAchievement?: string;
|
|
12202
|
+
tgAchievementReward?: string;
|
|
12203
|
+
interval?: string;
|
|
12204
|
+
retention?: string;
|
|
12205
|
+
premake?: number;
|
|
12206
|
+
prefix?: string;
|
|
12207
|
+
membershipType: number;
|
|
12208
|
+
entityTableId?: string;
|
|
12209
|
+
actorTableId?: string;
|
|
12210
|
+
}
|
|
12168
12211
|
export interface UpdateDefaultIdsModuleInput {
|
|
12169
12212
|
clientMutationId?: string;
|
|
12170
12213
|
id: string;
|
|
@@ -12362,14 +12405,14 @@ export interface MembershipTypesModulePatch {
|
|
|
12362
12405
|
tableId?: string;
|
|
12363
12406
|
tableName?: string;
|
|
12364
12407
|
}
|
|
12365
|
-
export interface
|
|
12408
|
+
export interface UpdateUserStateModuleInput {
|
|
12366
12409
|
clientMutationId?: string;
|
|
12367
12410
|
id: string;
|
|
12368
|
-
/** An object where the defined keys will be set on the `
|
|
12369
|
-
|
|
12411
|
+
/** An object where the defined keys will be set on the `UserStateModule` being updated. */
|
|
12412
|
+
userStateModulePatch: UserStateModulePatch;
|
|
12370
12413
|
}
|
|
12371
|
-
/** Represents an update to a `
|
|
12372
|
-
export interface
|
|
12414
|
+
/** Represents an update to a `UserStateModule`. Fields that are set will be updated. */
|
|
12415
|
+
export interface UserStateModulePatch {
|
|
12373
12416
|
id?: string;
|
|
12374
12417
|
databaseId?: string;
|
|
12375
12418
|
schemaId?: string;
|
|
@@ -12559,41 +12602,7 @@ export interface AppOwnerGrantPatch {
|
|
|
12559
12602
|
createdAt?: string;
|
|
12560
12603
|
updatedAt?: string;
|
|
12561
12604
|
}
|
|
12562
|
-
export interface
|
|
12563
|
-
clientMutationId?: string;
|
|
12564
|
-
id: string;
|
|
12565
|
-
/** An object where the defined keys will be set on the `AppAchievement` being updated. */
|
|
12566
|
-
appAchievementPatch: AppAchievementPatch;
|
|
12567
|
-
}
|
|
12568
|
-
/** Represents an update to a `AppAchievement`. Fields that are set will be updated. */
|
|
12569
|
-
export interface AppAchievementPatch {
|
|
12570
|
-
id?: string;
|
|
12571
|
-
actorId?: string;
|
|
12572
|
-
/** Name identifier of the level requirement being tracked */
|
|
12573
|
-
name?: string;
|
|
12574
|
-
/** Cumulative count of completed steps toward this requirement */
|
|
12575
|
-
count?: number;
|
|
12576
|
-
createdAt?: string;
|
|
12577
|
-
updatedAt?: string;
|
|
12578
|
-
}
|
|
12579
|
-
export interface UpdateAppStepInput {
|
|
12580
|
-
clientMutationId?: string;
|
|
12581
|
-
id: string;
|
|
12582
|
-
/** An object where the defined keys will be set on the `AppStep` being updated. */
|
|
12583
|
-
appStepPatch: AppStepPatch;
|
|
12584
|
-
}
|
|
12585
|
-
/** Represents an update to a `AppStep`. Fields that are set will be updated. */
|
|
12586
|
-
export interface AppStepPatch {
|
|
12587
|
-
id?: string;
|
|
12588
|
-
actorId?: string;
|
|
12589
|
-
/** Name identifier of the level requirement this step fulfills */
|
|
12590
|
-
name?: string;
|
|
12591
|
-
/** Number of units completed in this step action */
|
|
12592
|
-
count?: number;
|
|
12593
|
-
createdAt?: string;
|
|
12594
|
-
updatedAt?: string;
|
|
12595
|
-
}
|
|
12596
|
-
export interface UpdateOrgPermissionDefaultInput {
|
|
12605
|
+
export interface UpdateOrgPermissionDefaultInput {
|
|
12597
12606
|
clientMutationId?: string;
|
|
12598
12607
|
id: string;
|
|
12599
12608
|
/** An object where the defined keys will be set on the `OrgPermissionDefault` being updated. */
|
|
@@ -12982,6 +12991,24 @@ export interface AppLimitCreditCodeItemPatch {
|
|
|
12982
12991
|
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
12983
12992
|
creditType?: string;
|
|
12984
12993
|
}
|
|
12994
|
+
export interface UpdateAppLimitWarningInput {
|
|
12995
|
+
clientMutationId?: string;
|
|
12996
|
+
id: string;
|
|
12997
|
+
/** An object where the defined keys will be set on the `AppLimitWarning` being updated. */
|
|
12998
|
+
appLimitWarningPatch: AppLimitWarningPatch;
|
|
12999
|
+
}
|
|
13000
|
+
/** Represents an update to a `AppLimitWarning`. Fields that are set will be updated. */
|
|
13001
|
+
export interface AppLimitWarningPatch {
|
|
13002
|
+
id?: string;
|
|
13003
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
13004
|
+
name?: string;
|
|
13005
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
13006
|
+
warningType?: string;
|
|
13007
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
13008
|
+
thresholdValue?: string;
|
|
13009
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
13010
|
+
taskIdentifier?: string;
|
|
13011
|
+
}
|
|
12985
13012
|
export interface UpdateDatabaseInput {
|
|
12986
13013
|
clientMutationId?: string;
|
|
12987
13014
|
id: string;
|
|
@@ -13081,6 +13108,26 @@ export interface AppLimitCreditPatch {
|
|
|
13081
13108
|
/** Optional reason for the credit grant (promo code, admin grant, etc.) */
|
|
13082
13109
|
reason?: string;
|
|
13083
13110
|
}
|
|
13111
|
+
export interface UpdateOrgLimitWarningInput {
|
|
13112
|
+
clientMutationId?: string;
|
|
13113
|
+
id: string;
|
|
13114
|
+
/** An object where the defined keys will be set on the `OrgLimitWarning` being updated. */
|
|
13115
|
+
orgLimitWarningPatch: OrgLimitWarningPatch;
|
|
13116
|
+
}
|
|
13117
|
+
/** Represents an update to a `OrgLimitWarning`. Fields that are set will be updated. */
|
|
13118
|
+
export interface OrgLimitWarningPatch {
|
|
13119
|
+
id?: string;
|
|
13120
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
13121
|
+
name?: string;
|
|
13122
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
13123
|
+
warningType?: string;
|
|
13124
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
13125
|
+
thresholdValue?: string;
|
|
13126
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
13127
|
+
taskIdentifier?: string;
|
|
13128
|
+
/** Per-entity override (NULL = scope default for all entities) */
|
|
13129
|
+
entityId?: string;
|
|
13130
|
+
}
|
|
13084
13131
|
export interface UpdateOrgLimitCreditInput {
|
|
13085
13132
|
clientMutationId?: string;
|
|
13086
13133
|
id: string;
|
|
@@ -13144,28 +13191,6 @@ export interface SiteMetadatumPatch {
|
|
|
13144
13191
|
/** Upload for Open Graph image for social media previews */
|
|
13145
13192
|
ogImageUpload?: File;
|
|
13146
13193
|
}
|
|
13147
|
-
export interface UpdateAppLevelRequirementInput {
|
|
13148
|
-
clientMutationId?: string;
|
|
13149
|
-
id: string;
|
|
13150
|
-
/** An object where the defined keys will be set on the `AppLevelRequirement` being updated. */
|
|
13151
|
-
appLevelRequirementPatch: AppLevelRequirementPatch;
|
|
13152
|
-
}
|
|
13153
|
-
/** Represents an update to a `AppLevelRequirement`. Fields that are set will be updated. */
|
|
13154
|
-
export interface AppLevelRequirementPatch {
|
|
13155
|
-
id?: string;
|
|
13156
|
-
/** Name identifier of the requirement (matches step names) */
|
|
13157
|
-
name?: string;
|
|
13158
|
-
/** Name of the level this requirement belongs to */
|
|
13159
|
-
level?: string;
|
|
13160
|
-
/** Human-readable description of what this requirement entails */
|
|
13161
|
-
description?: string;
|
|
13162
|
-
/** Number of steps needed to satisfy this requirement */
|
|
13163
|
-
requiredCount?: number;
|
|
13164
|
-
/** Display ordering priority; lower values appear first */
|
|
13165
|
-
priority?: number;
|
|
13166
|
-
createdAt?: string;
|
|
13167
|
-
updatedAt?: string;
|
|
13168
|
-
}
|
|
13169
13194
|
export interface UpdateFullTextSearchInput {
|
|
13170
13195
|
clientMutationId?: string;
|
|
13171
13196
|
id: string;
|
|
@@ -13624,10 +13649,10 @@ export interface PartitionPatch {
|
|
|
13624
13649
|
databaseId?: string;
|
|
13625
13650
|
tableId?: string;
|
|
13626
13651
|
strategy?: string;
|
|
13627
|
-
|
|
13652
|
+
partitionKeyId?: string;
|
|
13628
13653
|
interval?: string;
|
|
13629
13654
|
retention?: string;
|
|
13630
|
-
|
|
13655
|
+
premake?: number;
|
|
13631
13656
|
namingPattern?: string;
|
|
13632
13657
|
createdAt?: string;
|
|
13633
13658
|
updatedAt?: string;
|
|
@@ -13725,28 +13750,6 @@ export interface OrgGrantPatch {
|
|
|
13725
13750
|
createdAt?: string;
|
|
13726
13751
|
updatedAt?: string;
|
|
13727
13752
|
}
|
|
13728
|
-
export interface UpdateAppLevelInput {
|
|
13729
|
-
clientMutationId?: string;
|
|
13730
|
-
id: string;
|
|
13731
|
-
/** An object where the defined keys will be set on the `AppLevel` being updated. */
|
|
13732
|
-
appLevelPatch: AppLevelPatch;
|
|
13733
|
-
}
|
|
13734
|
-
/** Represents an update to a `AppLevel`. Fields that are set will be updated. */
|
|
13735
|
-
export interface AppLevelPatch {
|
|
13736
|
-
id?: string;
|
|
13737
|
-
/** Unique name of the level */
|
|
13738
|
-
name?: string;
|
|
13739
|
-
/** Human-readable description of what this level represents */
|
|
13740
|
-
description?: string;
|
|
13741
|
-
/** Badge or icon image associated with this level */
|
|
13742
|
-
image?: ConstructiveInternalTypeImage;
|
|
13743
|
-
/** Optional owner (actor) who created or manages this level */
|
|
13744
|
-
ownerId?: string;
|
|
13745
|
-
createdAt?: string;
|
|
13746
|
-
updatedAt?: string;
|
|
13747
|
-
/** Upload for Badge or icon image associated with this level */
|
|
13748
|
-
imageUpload?: File;
|
|
13749
|
-
}
|
|
13750
13753
|
export interface UpdateBlueprintInput {
|
|
13751
13754
|
clientMutationId?: string;
|
|
13752
13755
|
/** Unique identifier for this blueprint. */
|
|
@@ -13802,6 +13805,27 @@ export interface DenormalizedTableFieldPatch {
|
|
|
13802
13805
|
funcName?: string;
|
|
13803
13806
|
funcOrder?: number;
|
|
13804
13807
|
}
|
|
13808
|
+
export interface UpdateRateLimitMetersModuleInput {
|
|
13809
|
+
clientMutationId?: string;
|
|
13810
|
+
id: string;
|
|
13811
|
+
/** An object where the defined keys will be set on the `RateLimitMetersModule` being updated. */
|
|
13812
|
+
rateLimitMetersModulePatch: RateLimitMetersModulePatch;
|
|
13813
|
+
}
|
|
13814
|
+
/** Represents an update to a `RateLimitMetersModule`. Fields that are set will be updated. */
|
|
13815
|
+
export interface RateLimitMetersModulePatch {
|
|
13816
|
+
id?: string;
|
|
13817
|
+
databaseId?: string;
|
|
13818
|
+
schemaId?: string;
|
|
13819
|
+
privateSchemaId?: string;
|
|
13820
|
+
rateLimitStateTableId?: string;
|
|
13821
|
+
rateLimitStateTableName?: string;
|
|
13822
|
+
rateLimitOverridesTableId?: string;
|
|
13823
|
+
rateLimitOverridesTableName?: string;
|
|
13824
|
+
rateWindowLimitsTableId?: string;
|
|
13825
|
+
rateWindowLimitsTableName?: string;
|
|
13826
|
+
checkRateLimitFunction?: string;
|
|
13827
|
+
prefix?: string;
|
|
13828
|
+
}
|
|
13805
13829
|
export interface UpdateRealtimeModuleInput {
|
|
13806
13830
|
clientMutationId?: string;
|
|
13807
13831
|
id: string;
|
|
@@ -13819,8 +13843,8 @@ export interface RealtimeModulePatch {
|
|
|
13819
13843
|
listenerNodeTableId?: string;
|
|
13820
13844
|
sourceRegistryTableId?: string;
|
|
13821
13845
|
retentionHours?: number;
|
|
13822
|
-
|
|
13823
|
-
|
|
13846
|
+
premake?: number;
|
|
13847
|
+
interval?: string;
|
|
13824
13848
|
notifyChannel?: string;
|
|
13825
13849
|
}
|
|
13826
13850
|
export interface UpdatePlansModuleInput {
|
|
@@ -14646,33 +14670,6 @@ export interface PolicyPatch {
|
|
|
14646
14670
|
createdAt?: string;
|
|
14647
14671
|
updatedAt?: string;
|
|
14648
14672
|
}
|
|
14649
|
-
export interface UpdateEmbeddingChunkInput {
|
|
14650
|
-
clientMutationId?: string;
|
|
14651
|
-
id: string;
|
|
14652
|
-
/** An object where the defined keys will be set on the `EmbeddingChunk` being updated. */
|
|
14653
|
-
embeddingChunkPatch: EmbeddingChunkPatch;
|
|
14654
|
-
}
|
|
14655
|
-
/** Represents an update to a `EmbeddingChunk`. Fields that are set will be updated. */
|
|
14656
|
-
export interface EmbeddingChunkPatch {
|
|
14657
|
-
id?: string;
|
|
14658
|
-
databaseId?: string;
|
|
14659
|
-
tableId?: string;
|
|
14660
|
-
embeddingFieldId?: string;
|
|
14661
|
-
chunksTableId?: string;
|
|
14662
|
-
chunksTableName?: string;
|
|
14663
|
-
contentFieldName?: string;
|
|
14664
|
-
dimensions?: number;
|
|
14665
|
-
metric?: string;
|
|
14666
|
-
chunkSize?: number;
|
|
14667
|
-
chunkOverlap?: number;
|
|
14668
|
-
chunkStrategy?: string;
|
|
14669
|
-
metadataFields?: unknown;
|
|
14670
|
-
enqueueChunkingJob?: boolean;
|
|
14671
|
-
chunkingTaskName?: string;
|
|
14672
|
-
parentFkFieldId?: string;
|
|
14673
|
-
createdAt?: string;
|
|
14674
|
-
updatedAt?: string;
|
|
14675
|
-
}
|
|
14676
14673
|
export interface UpdateWebauthnSettingInput {
|
|
14677
14674
|
clientMutationId?: string;
|
|
14678
14675
|
/** Unique identifier for this WebAuthn settings record */
|
|
@@ -15018,6 +15015,36 @@ export interface OrgMembershipPatch {
|
|
|
15018
15015
|
isReadOnly?: boolean;
|
|
15019
15016
|
profileId?: string;
|
|
15020
15017
|
}
|
|
15018
|
+
export interface UpdateEmbeddingChunkInput {
|
|
15019
|
+
clientMutationId?: string;
|
|
15020
|
+
id: string;
|
|
15021
|
+
/** An object where the defined keys will be set on the `EmbeddingChunk` being updated. */
|
|
15022
|
+
embeddingChunkPatch: EmbeddingChunkPatch;
|
|
15023
|
+
}
|
|
15024
|
+
/** Represents an update to a `EmbeddingChunk`. Fields that are set will be updated. */
|
|
15025
|
+
export interface EmbeddingChunkPatch {
|
|
15026
|
+
id?: string;
|
|
15027
|
+
databaseId?: string;
|
|
15028
|
+
tableId?: string;
|
|
15029
|
+
embeddingFieldId?: string;
|
|
15030
|
+
chunksTableId?: string;
|
|
15031
|
+
chunksTableName?: string;
|
|
15032
|
+
contentFieldName?: string;
|
|
15033
|
+
dimensions?: number;
|
|
15034
|
+
metric?: string;
|
|
15035
|
+
chunkSize?: number;
|
|
15036
|
+
chunkOverlap?: number;
|
|
15037
|
+
chunkStrategy?: string;
|
|
15038
|
+
metadataFields?: unknown;
|
|
15039
|
+
searchIndexes?: unknown;
|
|
15040
|
+
enqueueChunkingJob?: boolean;
|
|
15041
|
+
chunkingTaskName?: string;
|
|
15042
|
+
embeddingModel?: string;
|
|
15043
|
+
embeddingProvider?: string;
|
|
15044
|
+
parentFkFieldId?: string;
|
|
15045
|
+
createdAt?: string;
|
|
15046
|
+
updatedAt?: string;
|
|
15047
|
+
}
|
|
15021
15048
|
export interface UpdateForeignKeyConstraintInput {
|
|
15022
15049
|
clientMutationId?: string;
|
|
15023
15050
|
id: string;
|
|
@@ -15240,7 +15267,7 @@ export interface EntityTypeProvisionPatch {
|
|
|
15240
15267
|
*/
|
|
15241
15268
|
hasProfiles?: boolean;
|
|
15242
15269
|
/**
|
|
15243
|
-
* Whether to provision
|
|
15270
|
+
* Whether to provision events_module for this type. Defaults to false.
|
|
15244
15271
|
* Levels provide gamification/achievement tracking for members.
|
|
15245
15272
|
* When true, creates level steps, achievements, and level tables with security.
|
|
15246
15273
|
*/
|
|
@@ -15262,6 +15289,16 @@ export interface EntityTypeProvisionPatch {
|
|
|
15262
15289
|
* ON CONFLICT DO NOTHING in the fan-out makes repeated INSERTs safe.
|
|
15263
15290
|
*/
|
|
15264
15291
|
hasInvites?: boolean;
|
|
15292
|
+
/**
|
|
15293
|
+
* Whether to auto-attach an EventTracker to the claimed_invites table for invite-based
|
|
15294
|
+
* achievements. Defaults to false. Requires has_invites=true AND has_levels=true.
|
|
15295
|
+
* When true, the trigger calls event_tracker() on the claimed_invites table with
|
|
15296
|
+
* event_name='invite_claimed', actor_field='sender_id', events=['INSERT'],
|
|
15297
|
+
* crediting the SENDER (inviter) when someone claims their invite code.
|
|
15298
|
+
* Developers can then define achievements in the blueprint achievements[] section
|
|
15299
|
+
* that reference the 'invite_claimed' event (e.g., "Invite 5 friends" = count: 5).
|
|
15300
|
+
*/
|
|
15301
|
+
hasInviteAchievements?: boolean;
|
|
15265
15302
|
/**
|
|
15266
15303
|
* Optional jsonb object for storage module configuration and initial bucket seeding.
|
|
15267
15304
|
* Only used when has_storage = true; ignored otherwise. NULL = use defaults.
|
|
@@ -15372,41 +15409,6 @@ export interface EntityTypeProvisionPatch {
|
|
|
15372
15409
|
*/
|
|
15373
15410
|
outInvitesModuleId?: string;
|
|
15374
15411
|
}
|
|
15375
|
-
export interface UpdateLevelsModuleInput {
|
|
15376
|
-
clientMutationId?: string;
|
|
15377
|
-
id: string;
|
|
15378
|
-
/** An object where the defined keys will be set on the `LevelsModule` being updated. */
|
|
15379
|
-
levelsModulePatch: LevelsModulePatch;
|
|
15380
|
-
}
|
|
15381
|
-
/** Represents an update to a `LevelsModule`. Fields that are set will be updated. */
|
|
15382
|
-
export interface LevelsModulePatch {
|
|
15383
|
-
id?: string;
|
|
15384
|
-
databaseId?: string;
|
|
15385
|
-
schemaId?: string;
|
|
15386
|
-
privateSchemaId?: string;
|
|
15387
|
-
stepsTableId?: string;
|
|
15388
|
-
stepsTableName?: string;
|
|
15389
|
-
achievementsTableId?: string;
|
|
15390
|
-
achievementsTableName?: string;
|
|
15391
|
-
levelsTableId?: string;
|
|
15392
|
-
levelsTableName?: string;
|
|
15393
|
-
levelRequirementsTableId?: string;
|
|
15394
|
-
levelRequirementsTableName?: string;
|
|
15395
|
-
completedStep?: string;
|
|
15396
|
-
incompletedStep?: string;
|
|
15397
|
-
tgAchievement?: string;
|
|
15398
|
-
tgAchievementToggle?: string;
|
|
15399
|
-
tgAchievementToggleBoolean?: string;
|
|
15400
|
-
tgAchievementBoolean?: string;
|
|
15401
|
-
upsertAchievement?: string;
|
|
15402
|
-
tgUpdateAchievements?: string;
|
|
15403
|
-
stepsRequired?: string;
|
|
15404
|
-
levelAchieved?: string;
|
|
15405
|
-
prefix?: string;
|
|
15406
|
-
membershipType?: number;
|
|
15407
|
-
entityTableId?: string;
|
|
15408
|
-
actorTableId?: string;
|
|
15409
|
-
}
|
|
15410
15412
|
export interface UpdateUserAuthModuleInput {
|
|
15411
15413
|
clientMutationId?: string;
|
|
15412
15414
|
id: string;
|
|
@@ -15539,6 +15541,10 @@ export interface LimitsModulePatch {
|
|
|
15539
15541
|
limitCapsDefaultsTableId?: string;
|
|
15540
15542
|
capCheckTrigger?: string;
|
|
15541
15543
|
resolveCapFunction?: string;
|
|
15544
|
+
limitWarningsTableId?: string;
|
|
15545
|
+
limitWarningStateTableId?: string;
|
|
15546
|
+
limitCheckSoftFunction?: string;
|
|
15547
|
+
limitAggregateCheckSoftFunction?: string;
|
|
15542
15548
|
prefix?: string;
|
|
15543
15549
|
membershipType?: number;
|
|
15544
15550
|
entityTableId?: string;
|
|
@@ -15629,6 +15635,54 @@ export interface MembershipsModulePatch {
|
|
|
15629
15635
|
entityIdsFunction?: string;
|
|
15630
15636
|
memberProfilesTableId?: string;
|
|
15631
15637
|
}
|
|
15638
|
+
export interface UpdateEventsModuleInput {
|
|
15639
|
+
clientMutationId?: string;
|
|
15640
|
+
id: string;
|
|
15641
|
+
/** An object where the defined keys will be set on the `EventsModule` being updated. */
|
|
15642
|
+
eventsModulePatch: EventsModulePatch;
|
|
15643
|
+
}
|
|
15644
|
+
/** Represents an update to a `EventsModule`. Fields that are set will be updated. */
|
|
15645
|
+
export interface EventsModulePatch {
|
|
15646
|
+
id?: string;
|
|
15647
|
+
databaseId?: string;
|
|
15648
|
+
schemaId?: string;
|
|
15649
|
+
privateSchemaId?: string;
|
|
15650
|
+
eventsTableId?: string;
|
|
15651
|
+
eventsTableName?: string;
|
|
15652
|
+
eventAggregatesTableId?: string;
|
|
15653
|
+
eventAggregatesTableName?: string;
|
|
15654
|
+
eventTypesTableId?: string;
|
|
15655
|
+
eventTypesTableName?: string;
|
|
15656
|
+
levelsTableId?: string;
|
|
15657
|
+
levelsTableName?: string;
|
|
15658
|
+
levelRequirementsTableId?: string;
|
|
15659
|
+
levelRequirementsTableName?: string;
|
|
15660
|
+
levelGrantsTableId?: string;
|
|
15661
|
+
levelGrantsTableName?: string;
|
|
15662
|
+
achievementRewardsTableId?: string;
|
|
15663
|
+
achievementRewardsTableName?: string;
|
|
15664
|
+
recordEvent?: string;
|
|
15665
|
+
removeEvent?: string;
|
|
15666
|
+
tgEvent?: string;
|
|
15667
|
+
tgEventToggle?: string;
|
|
15668
|
+
tgEventToggleBool?: string;
|
|
15669
|
+
tgEventBool?: string;
|
|
15670
|
+
upsertAggregate?: string;
|
|
15671
|
+
tgUpdateAggregates?: string;
|
|
15672
|
+
pruneEvents?: string;
|
|
15673
|
+
stepsRequired?: string;
|
|
15674
|
+
levelAchieved?: string;
|
|
15675
|
+
tgCheckAchievements?: string;
|
|
15676
|
+
grantAchievement?: string;
|
|
15677
|
+
tgAchievementReward?: string;
|
|
15678
|
+
interval?: string;
|
|
15679
|
+
retention?: string;
|
|
15680
|
+
premake?: number;
|
|
15681
|
+
prefix?: string;
|
|
15682
|
+
membershipType?: number;
|
|
15683
|
+
entityTableId?: string;
|
|
15684
|
+
actorTableId?: string;
|
|
15685
|
+
}
|
|
15632
15686
|
export interface DeleteDefaultIdsModuleInput {
|
|
15633
15687
|
clientMutationId?: string;
|
|
15634
15688
|
id: string;
|
|
@@ -15687,7 +15741,7 @@ export interface DeleteMembershipTypesModuleInput {
|
|
|
15687
15741
|
clientMutationId?: string;
|
|
15688
15742
|
id: string;
|
|
15689
15743
|
}
|
|
15690
|
-
export interface
|
|
15744
|
+
export interface DeleteUserStateModuleInput {
|
|
15691
15745
|
clientMutationId?: string;
|
|
15692
15746
|
id: string;
|
|
15693
15747
|
}
|
|
@@ -15737,14 +15791,6 @@ export interface DeleteAppOwnerGrantInput {
|
|
|
15737
15791
|
clientMutationId?: string;
|
|
15738
15792
|
id: string;
|
|
15739
15793
|
}
|
|
15740
|
-
export interface DeleteAppAchievementInput {
|
|
15741
|
-
clientMutationId?: string;
|
|
15742
|
-
id: string;
|
|
15743
|
-
}
|
|
15744
|
-
export interface DeleteAppStepInput {
|
|
15745
|
-
clientMutationId?: string;
|
|
15746
|
-
id: string;
|
|
15747
|
-
}
|
|
15748
15794
|
export interface DeleteOrgPermissionDefaultInput {
|
|
15749
15795
|
clientMutationId?: string;
|
|
15750
15796
|
id: string;
|
|
@@ -15839,6 +15885,10 @@ export interface DeleteAppLimitCreditCodeItemInput {
|
|
|
15839
15885
|
clientMutationId?: string;
|
|
15840
15886
|
id: string;
|
|
15841
15887
|
}
|
|
15888
|
+
export interface DeleteAppLimitWarningInput {
|
|
15889
|
+
clientMutationId?: string;
|
|
15890
|
+
id: string;
|
|
15891
|
+
}
|
|
15842
15892
|
export interface DeleteDatabaseInput {
|
|
15843
15893
|
clientMutationId?: string;
|
|
15844
15894
|
id: string;
|
|
@@ -15859,6 +15909,10 @@ export interface DeleteAppLimitCreditInput {
|
|
|
15859
15909
|
clientMutationId?: string;
|
|
15860
15910
|
id: string;
|
|
15861
15911
|
}
|
|
15912
|
+
export interface DeleteOrgLimitWarningInput {
|
|
15913
|
+
clientMutationId?: string;
|
|
15914
|
+
id: string;
|
|
15915
|
+
}
|
|
15862
15916
|
export interface DeleteOrgLimitCreditInput {
|
|
15863
15917
|
clientMutationId?: string;
|
|
15864
15918
|
id: string;
|
|
@@ -15873,10 +15927,6 @@ export interface DeleteSiteMetadatumInput {
|
|
|
15873
15927
|
/** Unique identifier for this metadata record */
|
|
15874
15928
|
id: string;
|
|
15875
15929
|
}
|
|
15876
|
-
export interface DeleteAppLevelRequirementInput {
|
|
15877
|
-
clientMutationId?: string;
|
|
15878
|
-
id: string;
|
|
15879
|
-
}
|
|
15880
15930
|
export interface DeleteFullTextSearchInput {
|
|
15881
15931
|
clientMutationId?: string;
|
|
15882
15932
|
id: string;
|
|
@@ -15984,10 +16034,6 @@ export interface DeleteOrgGrantInput {
|
|
|
15984
16034
|
clientMutationId?: string;
|
|
15985
16035
|
id: string;
|
|
15986
16036
|
}
|
|
15987
|
-
export interface DeleteAppLevelInput {
|
|
15988
|
-
clientMutationId?: string;
|
|
15989
|
-
id: string;
|
|
15990
|
-
}
|
|
15991
16037
|
export interface DeleteBlueprintInput {
|
|
15992
16038
|
clientMutationId?: string;
|
|
15993
16039
|
/** Unique identifier for this blueprint. */
|
|
@@ -15997,6 +16043,10 @@ export interface DeleteDenormalizedTableFieldInput {
|
|
|
15997
16043
|
clientMutationId?: string;
|
|
15998
16044
|
id: string;
|
|
15999
16045
|
}
|
|
16046
|
+
export interface DeleteRateLimitMetersModuleInput {
|
|
16047
|
+
clientMutationId?: string;
|
|
16048
|
+
id: string;
|
|
16049
|
+
}
|
|
16000
16050
|
export interface DeleteRealtimeModuleInput {
|
|
16001
16051
|
clientMutationId?: string;
|
|
16002
16052
|
id: string;
|
|
@@ -16126,10 +16176,6 @@ export interface DeletePolicyInput {
|
|
|
16126
16176
|
clientMutationId?: string;
|
|
16127
16177
|
id: string;
|
|
16128
16178
|
}
|
|
16129
|
-
export interface DeleteEmbeddingChunkInput {
|
|
16130
|
-
clientMutationId?: string;
|
|
16131
|
-
id: string;
|
|
16132
|
-
}
|
|
16133
16179
|
export interface DeleteWebauthnSettingInput {
|
|
16134
16180
|
clientMutationId?: string;
|
|
16135
16181
|
/** Unique identifier for this WebAuthn settings record */
|
|
@@ -16172,6 +16218,10 @@ export interface DeleteOrgMembershipInput {
|
|
|
16172
16218
|
clientMutationId?: string;
|
|
16173
16219
|
id: string;
|
|
16174
16220
|
}
|
|
16221
|
+
export interface DeleteEmbeddingChunkInput {
|
|
16222
|
+
clientMutationId?: string;
|
|
16223
|
+
id: string;
|
|
16224
|
+
}
|
|
16175
16225
|
export interface DeleteForeignKeyConstraintInput {
|
|
16176
16226
|
clientMutationId?: string;
|
|
16177
16227
|
id: string;
|
|
@@ -16186,10 +16236,6 @@ export interface DeleteEntityTypeProvisionInput {
|
|
|
16186
16236
|
/** Unique identifier for this provision row. */
|
|
16187
16237
|
id: string;
|
|
16188
16238
|
}
|
|
16189
|
-
export interface DeleteLevelsModuleInput {
|
|
16190
|
-
clientMutationId?: string;
|
|
16191
|
-
id: string;
|
|
16192
|
-
}
|
|
16193
16239
|
export interface DeleteUserAuthModuleInput {
|
|
16194
16240
|
clientMutationId?: string;
|
|
16195
16241
|
id: string;
|
|
@@ -16214,6 +16260,10 @@ export interface DeleteMembershipsModuleInput {
|
|
|
16214
16260
|
clientMutationId?: string;
|
|
16215
16261
|
id: string;
|
|
16216
16262
|
}
|
|
16263
|
+
export interface DeleteEventsModuleInput {
|
|
16264
|
+
clientMutationId?: string;
|
|
16265
|
+
id: string;
|
|
16266
|
+
}
|
|
16217
16267
|
export interface ProvisionBucketInput {
|
|
16218
16268
|
/** The logical bucket key (e.g., "public", "private") */
|
|
16219
16269
|
bucketKey: string;
|
|
@@ -16265,13 +16315,6 @@ export interface ObjectConnection {
|
|
|
16265
16315
|
pageInfo: PageInfo;
|
|
16266
16316
|
totalCount: number;
|
|
16267
16317
|
}
|
|
16268
|
-
/** A connection to a list of `AppLevelRequirement` values. */
|
|
16269
|
-
export interface AppLevelRequirementConnection {
|
|
16270
|
-
nodes: AppLevelRequirement[];
|
|
16271
|
-
edges: AppLevelRequirementEdge[];
|
|
16272
|
-
pageInfo: PageInfo;
|
|
16273
|
-
totalCount: number;
|
|
16274
|
-
}
|
|
16275
16318
|
/** A connection to a list of `DefaultIdsModule` values. */
|
|
16276
16319
|
export interface DefaultIdsModuleConnection {
|
|
16277
16320
|
nodes: DefaultIdsModule[];
|
|
@@ -16370,10 +16413,10 @@ export interface MembershipTypesModuleConnection {
|
|
|
16370
16413
|
pageInfo: PageInfo;
|
|
16371
16414
|
totalCount: number;
|
|
16372
16415
|
}
|
|
16373
|
-
/** A connection to a list of `
|
|
16374
|
-
export interface
|
|
16375
|
-
nodes:
|
|
16376
|
-
edges:
|
|
16416
|
+
/** A connection to a list of `UserStateModule` values. */
|
|
16417
|
+
export interface UserStateModuleConnection {
|
|
16418
|
+
nodes: UserStateModule[];
|
|
16419
|
+
edges: UserStateModuleEdge[];
|
|
16377
16420
|
pageInfo: PageInfo;
|
|
16378
16421
|
totalCount: number;
|
|
16379
16422
|
}
|
|
@@ -16454,20 +16497,6 @@ export interface AppOwnerGrantConnection {
|
|
|
16454
16497
|
pageInfo: PageInfo;
|
|
16455
16498
|
totalCount: number;
|
|
16456
16499
|
}
|
|
16457
|
-
/** A connection to a list of `AppAchievement` values. */
|
|
16458
|
-
export interface AppAchievementConnection {
|
|
16459
|
-
nodes: AppAchievement[];
|
|
16460
|
-
edges: AppAchievementEdge[];
|
|
16461
|
-
pageInfo: PageInfo;
|
|
16462
|
-
totalCount: number;
|
|
16463
|
-
}
|
|
16464
|
-
/** A connection to a list of `AppStep` values. */
|
|
16465
|
-
export interface AppStepConnection {
|
|
16466
|
-
nodes: AppStep[];
|
|
16467
|
-
edges: AppStepEdge[];
|
|
16468
|
-
pageInfo: PageInfo;
|
|
16469
|
-
totalCount: number;
|
|
16470
|
-
}
|
|
16471
16500
|
/** A connection to a list of `OrgPermissionDefault` values. */
|
|
16472
16501
|
export interface OrgPermissionDefaultConnection {
|
|
16473
16502
|
nodes: OrgPermissionDefault[];
|
|
@@ -16622,6 +16651,13 @@ export interface AppLimitCreditCodeItemConnection {
|
|
|
16622
16651
|
pageInfo: PageInfo;
|
|
16623
16652
|
totalCount: number;
|
|
16624
16653
|
}
|
|
16654
|
+
/** A connection to a list of `AppLimitWarning` values. */
|
|
16655
|
+
export interface AppLimitWarningConnection {
|
|
16656
|
+
nodes: AppLimitWarning[];
|
|
16657
|
+
edges: AppLimitWarningEdge[];
|
|
16658
|
+
pageInfo: PageInfo;
|
|
16659
|
+
totalCount: number;
|
|
16660
|
+
}
|
|
16625
16661
|
/** A connection to a list of `UserConnectedAccount` values. */
|
|
16626
16662
|
export interface UserConnectedAccountConnection {
|
|
16627
16663
|
nodes: UserConnectedAccount[];
|
|
@@ -16664,6 +16700,13 @@ export interface AppLimitCreditConnection {
|
|
|
16664
16700
|
pageInfo: PageInfo;
|
|
16665
16701
|
totalCount: number;
|
|
16666
16702
|
}
|
|
16703
|
+
/** A connection to a list of `OrgLimitWarning` values. */
|
|
16704
|
+
export interface OrgLimitWarningConnection {
|
|
16705
|
+
nodes: OrgLimitWarning[];
|
|
16706
|
+
edges: OrgLimitWarningEdge[];
|
|
16707
|
+
pageInfo: PageInfo;
|
|
16708
|
+
totalCount: number;
|
|
16709
|
+
}
|
|
16667
16710
|
/** A connection to a list of `OrgLimitCredit` values. */
|
|
16668
16711
|
export interface OrgLimitCreditConnection {
|
|
16669
16712
|
nodes: OrgLimitCredit[];
|
|
@@ -16867,13 +16910,6 @@ export interface OrgGrantConnection {
|
|
|
16867
16910
|
pageInfo: PageInfo;
|
|
16868
16911
|
totalCount: number;
|
|
16869
16912
|
}
|
|
16870
|
-
/** A connection to a list of `AppLevel` values. */
|
|
16871
|
-
export interface AppLevelConnection {
|
|
16872
|
-
nodes: AppLevel[];
|
|
16873
|
-
edges: AppLevelEdge[];
|
|
16874
|
-
pageInfo: PageInfo;
|
|
16875
|
-
totalCount: number;
|
|
16876
|
-
}
|
|
16877
16913
|
/** A connection to a list of `Blueprint` values. */
|
|
16878
16914
|
export interface BlueprintConnection {
|
|
16879
16915
|
nodes: Blueprint[];
|
|
@@ -16888,6 +16924,13 @@ export interface DenormalizedTableFieldConnection {
|
|
|
16888
16924
|
pageInfo: PageInfo;
|
|
16889
16925
|
totalCount: number;
|
|
16890
16926
|
}
|
|
16927
|
+
/** A connection to a list of `RateLimitMetersModule` values. */
|
|
16928
|
+
export interface RateLimitMetersModuleConnection {
|
|
16929
|
+
nodes: RateLimitMetersModule[];
|
|
16930
|
+
edges: RateLimitMetersModuleEdge[];
|
|
16931
|
+
pageInfo: PageInfo;
|
|
16932
|
+
totalCount: number;
|
|
16933
|
+
}
|
|
16891
16934
|
/** A connection to a list of `RealtimeModule` values. */
|
|
16892
16935
|
export interface RealtimeModuleConnection {
|
|
16893
16936
|
nodes: RealtimeModule[];
|
|
@@ -17119,13 +17162,6 @@ export interface PolicyConnection {
|
|
|
17119
17162
|
pageInfo: PageInfo;
|
|
17120
17163
|
totalCount: number;
|
|
17121
17164
|
}
|
|
17122
|
-
/** A connection to a list of `EmbeddingChunk` values. */
|
|
17123
|
-
export interface EmbeddingChunkConnection {
|
|
17124
|
-
nodes: EmbeddingChunk[];
|
|
17125
|
-
edges: EmbeddingChunkEdge[];
|
|
17126
|
-
pageInfo: PageInfo;
|
|
17127
|
-
totalCount: number;
|
|
17128
|
-
}
|
|
17129
17165
|
/** A connection to a list of `WebauthnSetting` values. */
|
|
17130
17166
|
export interface WebauthnSettingConnection {
|
|
17131
17167
|
nodes: WebauthnSetting[];
|
|
@@ -17196,6 +17232,13 @@ export interface OrgMembershipConnection {
|
|
|
17196
17232
|
pageInfo: PageInfo;
|
|
17197
17233
|
totalCount: number;
|
|
17198
17234
|
}
|
|
17235
|
+
/** A connection to a list of `EmbeddingChunk` values. */
|
|
17236
|
+
export interface EmbeddingChunkConnection {
|
|
17237
|
+
nodes: EmbeddingChunk[];
|
|
17238
|
+
edges: EmbeddingChunkEdge[];
|
|
17239
|
+
pageInfo: PageInfo;
|
|
17240
|
+
totalCount: number;
|
|
17241
|
+
}
|
|
17199
17242
|
/** A connection to a list of `ForeignKeyConstraint` values. */
|
|
17200
17243
|
export interface ForeignKeyConstraintConnection {
|
|
17201
17244
|
nodes: ForeignKeyConstraint[];
|
|
@@ -17217,13 +17260,6 @@ export interface EntityTypeProvisionConnection {
|
|
|
17217
17260
|
pageInfo: PageInfo;
|
|
17218
17261
|
totalCount: number;
|
|
17219
17262
|
}
|
|
17220
|
-
/** A connection to a list of `LevelsModule` values. */
|
|
17221
|
-
export interface LevelsModuleConnection {
|
|
17222
|
-
nodes: LevelsModule[];
|
|
17223
|
-
edges: LevelsModuleEdge[];
|
|
17224
|
-
pageInfo: PageInfo;
|
|
17225
|
-
totalCount: number;
|
|
17226
|
-
}
|
|
17227
17263
|
/** A connection to a list of `UserAuthModule` values. */
|
|
17228
17264
|
export interface UserAuthModuleConnection {
|
|
17229
17265
|
nodes: UserAuthModule[];
|
|
@@ -17266,6 +17302,13 @@ export interface MembershipsModuleConnection {
|
|
|
17266
17302
|
pageInfo: PageInfo;
|
|
17267
17303
|
totalCount: number;
|
|
17268
17304
|
}
|
|
17305
|
+
/** A connection to a list of `EventsModule` values. */
|
|
17306
|
+
export interface EventsModuleConnection {
|
|
17307
|
+
nodes: EventsModule[];
|
|
17308
|
+
edges: EventsModuleEdge[];
|
|
17309
|
+
pageInfo: PageInfo;
|
|
17310
|
+
totalCount: number;
|
|
17311
|
+
}
|
|
17269
17312
|
/** Root meta schema type */
|
|
17270
17313
|
export interface MetaSchema {
|
|
17271
17314
|
tables: MetaTable[];
|
|
@@ -17536,11 +17579,11 @@ export interface CreateMembershipTypesModulePayload {
|
|
|
17536
17579
|
membershipTypesModule?: MembershipTypesModule | null;
|
|
17537
17580
|
membershipTypesModuleEdge?: MembershipTypesModuleEdge | null;
|
|
17538
17581
|
}
|
|
17539
|
-
export interface
|
|
17582
|
+
export interface CreateUserStateModulePayload {
|
|
17540
17583
|
clientMutationId?: string | null;
|
|
17541
|
-
/** The `
|
|
17542
|
-
|
|
17543
|
-
|
|
17584
|
+
/** The `UserStateModule` that was created by this mutation. */
|
|
17585
|
+
userStateModule?: UserStateModule | null;
|
|
17586
|
+
userStateModuleEdge?: UserStateModuleEdge | null;
|
|
17544
17587
|
}
|
|
17545
17588
|
export interface CreateAppPermissionDefaultPayload {
|
|
17546
17589
|
clientMutationId?: string | null;
|
|
@@ -17608,18 +17651,6 @@ export interface CreateAppOwnerGrantPayload {
|
|
|
17608
17651
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
17609
17652
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
17610
17653
|
}
|
|
17611
|
-
export interface CreateAppAchievementPayload {
|
|
17612
|
-
clientMutationId?: string | null;
|
|
17613
|
-
/** The `AppAchievement` that was created by this mutation. */
|
|
17614
|
-
appAchievement?: AppAchievement | null;
|
|
17615
|
-
appAchievementEdge?: AppAchievementEdge | null;
|
|
17616
|
-
}
|
|
17617
|
-
export interface CreateAppStepPayload {
|
|
17618
|
-
clientMutationId?: string | null;
|
|
17619
|
-
/** The `AppStep` that was created by this mutation. */
|
|
17620
|
-
appStep?: AppStep | null;
|
|
17621
|
-
appStepEdge?: AppStepEdge | null;
|
|
17622
|
-
}
|
|
17623
17654
|
export interface CreateOrgPermissionDefaultPayload {
|
|
17624
17655
|
clientMutationId?: string | null;
|
|
17625
17656
|
/** The `OrgPermissionDefault` that was created by this mutation. */
|
|
@@ -17763,6 +17794,12 @@ export interface CreateAppLimitCreditCodeItemPayload {
|
|
|
17763
17794
|
appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
|
|
17764
17795
|
appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
|
|
17765
17796
|
}
|
|
17797
|
+
export interface CreateAppLimitWarningPayload {
|
|
17798
|
+
clientMutationId?: string | null;
|
|
17799
|
+
/** The `AppLimitWarning` that was created by this mutation. */
|
|
17800
|
+
appLimitWarning?: AppLimitWarning | null;
|
|
17801
|
+
appLimitWarningEdge?: AppLimitWarningEdge | null;
|
|
17802
|
+
}
|
|
17766
17803
|
export interface CreateUserConnectedAccountPayload {
|
|
17767
17804
|
clientMutationId?: string | null;
|
|
17768
17805
|
/** The `UserConnectedAccount` that was created by this mutation. */
|
|
@@ -17798,6 +17835,12 @@ export interface CreateAppLimitCreditPayload {
|
|
|
17798
17835
|
appLimitCredit?: AppLimitCredit | null;
|
|
17799
17836
|
appLimitCreditEdge?: AppLimitCreditEdge | null;
|
|
17800
17837
|
}
|
|
17838
|
+
export interface CreateOrgLimitWarningPayload {
|
|
17839
|
+
clientMutationId?: string | null;
|
|
17840
|
+
/** The `OrgLimitWarning` that was created by this mutation. */
|
|
17841
|
+
orgLimitWarning?: OrgLimitWarning | null;
|
|
17842
|
+
orgLimitWarningEdge?: OrgLimitWarningEdge | null;
|
|
17843
|
+
}
|
|
17801
17844
|
export interface CreateOrgLimitCreditPayload {
|
|
17802
17845
|
clientMutationId?: string | null;
|
|
17803
17846
|
/** The `OrgLimitCredit` that was created by this mutation. */
|
|
@@ -17816,12 +17859,6 @@ export interface CreateSiteMetadatumPayload {
|
|
|
17816
17859
|
siteMetadatum?: SiteMetadatum | null;
|
|
17817
17860
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
17818
17861
|
}
|
|
17819
|
-
export interface CreateAppLevelRequirementPayload {
|
|
17820
|
-
clientMutationId?: string | null;
|
|
17821
|
-
/** The `AppLevelRequirement` that was created by this mutation. */
|
|
17822
|
-
appLevelRequirement?: AppLevelRequirement | null;
|
|
17823
|
-
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
17824
|
-
}
|
|
17825
17862
|
export interface CreateFullTextSearchPayload {
|
|
17826
17863
|
clientMutationId?: string | null;
|
|
17827
17864
|
/** The `FullTextSearch` that was created by this mutation. */
|
|
@@ -17982,12 +18019,6 @@ export interface CreateOrgGrantPayload {
|
|
|
17982
18019
|
orgGrant?: OrgGrant | null;
|
|
17983
18020
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
17984
18021
|
}
|
|
17985
|
-
export interface CreateAppLevelPayload {
|
|
17986
|
-
clientMutationId?: string | null;
|
|
17987
|
-
/** The `AppLevel` that was created by this mutation. */
|
|
17988
|
-
appLevel?: AppLevel | null;
|
|
17989
|
-
appLevelEdge?: AppLevelEdge | null;
|
|
17990
|
-
}
|
|
17991
18022
|
export interface CreateBlueprintPayload {
|
|
17992
18023
|
clientMutationId?: string | null;
|
|
17993
18024
|
/** The `Blueprint` that was created by this mutation. */
|
|
@@ -18000,6 +18031,12 @@ export interface CreateDenormalizedTableFieldPayload {
|
|
|
18000
18031
|
denormalizedTableField?: DenormalizedTableField | null;
|
|
18001
18032
|
denormalizedTableFieldEdge?: DenormalizedTableFieldEdge | null;
|
|
18002
18033
|
}
|
|
18034
|
+
export interface CreateRateLimitMetersModulePayload {
|
|
18035
|
+
clientMutationId?: string | null;
|
|
18036
|
+
/** The `RateLimitMetersModule` that was created by this mutation. */
|
|
18037
|
+
rateLimitMetersModule?: RateLimitMetersModule | null;
|
|
18038
|
+
rateLimitMetersModuleEdge?: RateLimitMetersModuleEdge | null;
|
|
18039
|
+
}
|
|
18003
18040
|
export interface CreateRealtimeModulePayload {
|
|
18004
18041
|
clientMutationId?: string | null;
|
|
18005
18042
|
/** The `RealtimeModule` that was created by this mutation. */
|
|
@@ -18196,12 +18233,6 @@ export interface CreatePolicyPayload {
|
|
|
18196
18233
|
policy?: Policy | null;
|
|
18197
18234
|
policyEdge?: PolicyEdge | null;
|
|
18198
18235
|
}
|
|
18199
|
-
export interface CreateEmbeddingChunkPayload {
|
|
18200
|
-
clientMutationId?: string | null;
|
|
18201
|
-
/** The `EmbeddingChunk` that was created by this mutation. */
|
|
18202
|
-
embeddingChunk?: EmbeddingChunk | null;
|
|
18203
|
-
embeddingChunkEdge?: EmbeddingChunkEdge | null;
|
|
18204
|
-
}
|
|
18205
18236
|
export interface CreateWebauthnSettingPayload {
|
|
18206
18237
|
clientMutationId?: string | null;
|
|
18207
18238
|
/** The `WebauthnSetting` that was created by this mutation. */
|
|
@@ -18262,6 +18293,12 @@ export interface CreateOrgMembershipPayload {
|
|
|
18262
18293
|
orgMembership?: OrgMembership | null;
|
|
18263
18294
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
18264
18295
|
}
|
|
18296
|
+
export interface CreateEmbeddingChunkPayload {
|
|
18297
|
+
clientMutationId?: string | null;
|
|
18298
|
+
/** The `EmbeddingChunk` that was created by this mutation. */
|
|
18299
|
+
embeddingChunk?: EmbeddingChunk | null;
|
|
18300
|
+
embeddingChunkEdge?: EmbeddingChunkEdge | null;
|
|
18301
|
+
}
|
|
18265
18302
|
export interface CreateForeignKeyConstraintPayload {
|
|
18266
18303
|
clientMutationId?: string | null;
|
|
18267
18304
|
/** The `ForeignKeyConstraint` that was created by this mutation. */
|
|
@@ -18280,12 +18317,6 @@ export interface CreateEntityTypeProvisionPayload {
|
|
|
18280
18317
|
entityTypeProvision?: EntityTypeProvision | null;
|
|
18281
18318
|
entityTypeProvisionEdge?: EntityTypeProvisionEdge | null;
|
|
18282
18319
|
}
|
|
18283
|
-
export interface CreateLevelsModulePayload {
|
|
18284
|
-
clientMutationId?: string | null;
|
|
18285
|
-
/** The `LevelsModule` that was created by this mutation. */
|
|
18286
|
-
levelsModule?: LevelsModule | null;
|
|
18287
|
-
levelsModuleEdge?: LevelsModuleEdge | null;
|
|
18288
|
-
}
|
|
18289
18320
|
export interface CreateUserAuthModulePayload {
|
|
18290
18321
|
clientMutationId?: string | null;
|
|
18291
18322
|
/** The `UserAuthModule` that was created by this mutation. */
|
|
@@ -18322,6 +18353,12 @@ export interface CreateMembershipsModulePayload {
|
|
|
18322
18353
|
membershipsModule?: MembershipsModule | null;
|
|
18323
18354
|
membershipsModuleEdge?: MembershipsModuleEdge | null;
|
|
18324
18355
|
}
|
|
18356
|
+
export interface CreateEventsModulePayload {
|
|
18357
|
+
clientMutationId?: string | null;
|
|
18358
|
+
/** The `EventsModule` that was created by this mutation. */
|
|
18359
|
+
eventsModule?: EventsModule | null;
|
|
18360
|
+
eventsModuleEdge?: EventsModuleEdge | null;
|
|
18361
|
+
}
|
|
18325
18362
|
export interface UpdateDefaultIdsModulePayload {
|
|
18326
18363
|
clientMutationId?: string | null;
|
|
18327
18364
|
/** The `DefaultIdsModule` that was updated by this mutation. */
|
|
@@ -18400,11 +18437,11 @@ export interface UpdateMembershipTypesModulePayload {
|
|
|
18400
18437
|
membershipTypesModule?: MembershipTypesModule | null;
|
|
18401
18438
|
membershipTypesModuleEdge?: MembershipTypesModuleEdge | null;
|
|
18402
18439
|
}
|
|
18403
|
-
export interface
|
|
18440
|
+
export interface UpdateUserStateModulePayload {
|
|
18404
18441
|
clientMutationId?: string | null;
|
|
18405
|
-
/** The `
|
|
18406
|
-
|
|
18407
|
-
|
|
18442
|
+
/** The `UserStateModule` that was updated by this mutation. */
|
|
18443
|
+
userStateModule?: UserStateModule | null;
|
|
18444
|
+
userStateModuleEdge?: UserStateModuleEdge | null;
|
|
18408
18445
|
}
|
|
18409
18446
|
export interface UpdateAppPermissionDefaultPayload {
|
|
18410
18447
|
clientMutationId?: string | null;
|
|
@@ -18472,18 +18509,6 @@ export interface UpdateAppOwnerGrantPayload {
|
|
|
18472
18509
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
18473
18510
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
18474
18511
|
}
|
|
18475
|
-
export interface UpdateAppAchievementPayload {
|
|
18476
|
-
clientMutationId?: string | null;
|
|
18477
|
-
/** The `AppAchievement` that was updated by this mutation. */
|
|
18478
|
-
appAchievement?: AppAchievement | null;
|
|
18479
|
-
appAchievementEdge?: AppAchievementEdge | null;
|
|
18480
|
-
}
|
|
18481
|
-
export interface UpdateAppStepPayload {
|
|
18482
|
-
clientMutationId?: string | null;
|
|
18483
|
-
/** The `AppStep` that was updated by this mutation. */
|
|
18484
|
-
appStep?: AppStep | null;
|
|
18485
|
-
appStepEdge?: AppStepEdge | null;
|
|
18486
|
-
}
|
|
18487
18512
|
export interface UpdateOrgPermissionDefaultPayload {
|
|
18488
18513
|
clientMutationId?: string | null;
|
|
18489
18514
|
/** The `OrgPermissionDefault` that was updated by this mutation. */
|
|
@@ -18622,6 +18647,12 @@ export interface UpdateAppLimitCreditCodeItemPayload {
|
|
|
18622
18647
|
appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
|
|
18623
18648
|
appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
|
|
18624
18649
|
}
|
|
18650
|
+
export interface UpdateAppLimitWarningPayload {
|
|
18651
|
+
clientMutationId?: string | null;
|
|
18652
|
+
/** The `AppLimitWarning` that was updated by this mutation. */
|
|
18653
|
+
appLimitWarning?: AppLimitWarning | null;
|
|
18654
|
+
appLimitWarningEdge?: AppLimitWarningEdge | null;
|
|
18655
|
+
}
|
|
18625
18656
|
export interface UpdateDatabasePayload {
|
|
18626
18657
|
clientMutationId?: string | null;
|
|
18627
18658
|
/** The `Database` that was updated by this mutation. */
|
|
@@ -18652,6 +18683,12 @@ export interface UpdateAppLimitCreditPayload {
|
|
|
18652
18683
|
appLimitCredit?: AppLimitCredit | null;
|
|
18653
18684
|
appLimitCreditEdge?: AppLimitCreditEdge | null;
|
|
18654
18685
|
}
|
|
18686
|
+
export interface UpdateOrgLimitWarningPayload {
|
|
18687
|
+
clientMutationId?: string | null;
|
|
18688
|
+
/** The `OrgLimitWarning` that was updated by this mutation. */
|
|
18689
|
+
orgLimitWarning?: OrgLimitWarning | null;
|
|
18690
|
+
orgLimitWarningEdge?: OrgLimitWarningEdge | null;
|
|
18691
|
+
}
|
|
18655
18692
|
export interface UpdateOrgLimitCreditPayload {
|
|
18656
18693
|
clientMutationId?: string | null;
|
|
18657
18694
|
/** The `OrgLimitCredit` that was updated by this mutation. */
|
|
@@ -18670,12 +18707,6 @@ export interface UpdateSiteMetadatumPayload {
|
|
|
18670
18707
|
siteMetadatum?: SiteMetadatum | null;
|
|
18671
18708
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
18672
18709
|
}
|
|
18673
|
-
export interface UpdateAppLevelRequirementPayload {
|
|
18674
|
-
clientMutationId?: string | null;
|
|
18675
|
-
/** The `AppLevelRequirement` that was updated by this mutation. */
|
|
18676
|
-
appLevelRequirement?: AppLevelRequirement | null;
|
|
18677
|
-
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
18678
|
-
}
|
|
18679
18710
|
export interface UpdateFullTextSearchPayload {
|
|
18680
18711
|
clientMutationId?: string | null;
|
|
18681
18712
|
/** The `FullTextSearch` that was updated by this mutation. */
|
|
@@ -18826,12 +18857,6 @@ export interface UpdateOrgGrantPayload {
|
|
|
18826
18857
|
orgGrant?: OrgGrant | null;
|
|
18827
18858
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
18828
18859
|
}
|
|
18829
|
-
export interface UpdateAppLevelPayload {
|
|
18830
|
-
clientMutationId?: string | null;
|
|
18831
|
-
/** The `AppLevel` that was updated by this mutation. */
|
|
18832
|
-
appLevel?: AppLevel | null;
|
|
18833
|
-
appLevelEdge?: AppLevelEdge | null;
|
|
18834
|
-
}
|
|
18835
18860
|
export interface UpdateBlueprintPayload {
|
|
18836
18861
|
clientMutationId?: string | null;
|
|
18837
18862
|
/** The `Blueprint` that was updated by this mutation. */
|
|
@@ -18844,6 +18869,12 @@ export interface UpdateDenormalizedTableFieldPayload {
|
|
|
18844
18869
|
denormalizedTableField?: DenormalizedTableField | null;
|
|
18845
18870
|
denormalizedTableFieldEdge?: DenormalizedTableFieldEdge | null;
|
|
18846
18871
|
}
|
|
18872
|
+
export interface UpdateRateLimitMetersModulePayload {
|
|
18873
|
+
clientMutationId?: string | null;
|
|
18874
|
+
/** The `RateLimitMetersModule` that was updated by this mutation. */
|
|
18875
|
+
rateLimitMetersModule?: RateLimitMetersModule | null;
|
|
18876
|
+
rateLimitMetersModuleEdge?: RateLimitMetersModuleEdge | null;
|
|
18877
|
+
}
|
|
18847
18878
|
export interface UpdateRealtimeModulePayload {
|
|
18848
18879
|
clientMutationId?: string | null;
|
|
18849
18880
|
/** The `RealtimeModule` that was updated by this mutation. */
|
|
@@ -19030,12 +19061,6 @@ export interface UpdatePolicyPayload {
|
|
|
19030
19061
|
policy?: Policy | null;
|
|
19031
19062
|
policyEdge?: PolicyEdge | null;
|
|
19032
19063
|
}
|
|
19033
|
-
export interface UpdateEmbeddingChunkPayload {
|
|
19034
|
-
clientMutationId?: string | null;
|
|
19035
|
-
/** The `EmbeddingChunk` that was updated by this mutation. */
|
|
19036
|
-
embeddingChunk?: EmbeddingChunk | null;
|
|
19037
|
-
embeddingChunkEdge?: EmbeddingChunkEdge | null;
|
|
19038
|
-
}
|
|
19039
19064
|
export interface UpdateWebauthnSettingPayload {
|
|
19040
19065
|
clientMutationId?: string | null;
|
|
19041
19066
|
/** The `WebauthnSetting` that was updated by this mutation. */
|
|
@@ -19096,6 +19121,12 @@ export interface UpdateOrgMembershipPayload {
|
|
|
19096
19121
|
orgMembership?: OrgMembership | null;
|
|
19097
19122
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
19098
19123
|
}
|
|
19124
|
+
export interface UpdateEmbeddingChunkPayload {
|
|
19125
|
+
clientMutationId?: string | null;
|
|
19126
|
+
/** The `EmbeddingChunk` that was updated by this mutation. */
|
|
19127
|
+
embeddingChunk?: EmbeddingChunk | null;
|
|
19128
|
+
embeddingChunkEdge?: EmbeddingChunkEdge | null;
|
|
19129
|
+
}
|
|
19099
19130
|
export interface UpdateForeignKeyConstraintPayload {
|
|
19100
19131
|
clientMutationId?: string | null;
|
|
19101
19132
|
/** The `ForeignKeyConstraint` that was updated by this mutation. */
|
|
@@ -19114,12 +19145,6 @@ export interface UpdateEntityTypeProvisionPayload {
|
|
|
19114
19145
|
entityTypeProvision?: EntityTypeProvision | null;
|
|
19115
19146
|
entityTypeProvisionEdge?: EntityTypeProvisionEdge | null;
|
|
19116
19147
|
}
|
|
19117
|
-
export interface UpdateLevelsModulePayload {
|
|
19118
|
-
clientMutationId?: string | null;
|
|
19119
|
-
/** The `LevelsModule` that was updated by this mutation. */
|
|
19120
|
-
levelsModule?: LevelsModule | null;
|
|
19121
|
-
levelsModuleEdge?: LevelsModuleEdge | null;
|
|
19122
|
-
}
|
|
19123
19148
|
export interface UpdateUserAuthModulePayload {
|
|
19124
19149
|
clientMutationId?: string | null;
|
|
19125
19150
|
/** The `UserAuthModule` that was updated by this mutation. */
|
|
@@ -19156,6 +19181,12 @@ export interface UpdateMembershipsModulePayload {
|
|
|
19156
19181
|
membershipsModule?: MembershipsModule | null;
|
|
19157
19182
|
membershipsModuleEdge?: MembershipsModuleEdge | null;
|
|
19158
19183
|
}
|
|
19184
|
+
export interface UpdateEventsModulePayload {
|
|
19185
|
+
clientMutationId?: string | null;
|
|
19186
|
+
/** The `EventsModule` that was updated by this mutation. */
|
|
19187
|
+
eventsModule?: EventsModule | null;
|
|
19188
|
+
eventsModuleEdge?: EventsModuleEdge | null;
|
|
19189
|
+
}
|
|
19159
19190
|
export interface DeleteDefaultIdsModulePayload {
|
|
19160
19191
|
clientMutationId?: string | null;
|
|
19161
19192
|
/** The `DefaultIdsModule` that was deleted by this mutation. */
|
|
@@ -19234,11 +19265,11 @@ export interface DeleteMembershipTypesModulePayload {
|
|
|
19234
19265
|
membershipTypesModule?: MembershipTypesModule | null;
|
|
19235
19266
|
membershipTypesModuleEdge?: MembershipTypesModuleEdge | null;
|
|
19236
19267
|
}
|
|
19237
|
-
export interface
|
|
19268
|
+
export interface DeleteUserStateModulePayload {
|
|
19238
19269
|
clientMutationId?: string | null;
|
|
19239
|
-
/** The `
|
|
19240
|
-
|
|
19241
|
-
|
|
19270
|
+
/** The `UserStateModule` that was deleted by this mutation. */
|
|
19271
|
+
userStateModule?: UserStateModule | null;
|
|
19272
|
+
userStateModuleEdge?: UserStateModuleEdge | null;
|
|
19242
19273
|
}
|
|
19243
19274
|
export interface DeleteAppPermissionDefaultPayload {
|
|
19244
19275
|
clientMutationId?: string | null;
|
|
@@ -19306,18 +19337,6 @@ export interface DeleteAppOwnerGrantPayload {
|
|
|
19306
19337
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
19307
19338
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
19308
19339
|
}
|
|
19309
|
-
export interface DeleteAppAchievementPayload {
|
|
19310
|
-
clientMutationId?: string | null;
|
|
19311
|
-
/** The `AppAchievement` that was deleted by this mutation. */
|
|
19312
|
-
appAchievement?: AppAchievement | null;
|
|
19313
|
-
appAchievementEdge?: AppAchievementEdge | null;
|
|
19314
|
-
}
|
|
19315
|
-
export interface DeleteAppStepPayload {
|
|
19316
|
-
clientMutationId?: string | null;
|
|
19317
|
-
/** The `AppStep` that was deleted by this mutation. */
|
|
19318
|
-
appStep?: AppStep | null;
|
|
19319
|
-
appStepEdge?: AppStepEdge | null;
|
|
19320
|
-
}
|
|
19321
19340
|
export interface DeleteOrgPermissionDefaultPayload {
|
|
19322
19341
|
clientMutationId?: string | null;
|
|
19323
19342
|
/** The `OrgPermissionDefault` that was deleted by this mutation. */
|
|
@@ -19456,6 +19475,12 @@ export interface DeleteAppLimitCreditCodeItemPayload {
|
|
|
19456
19475
|
appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
|
|
19457
19476
|
appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
|
|
19458
19477
|
}
|
|
19478
|
+
export interface DeleteAppLimitWarningPayload {
|
|
19479
|
+
clientMutationId?: string | null;
|
|
19480
|
+
/** The `AppLimitWarning` that was deleted by this mutation. */
|
|
19481
|
+
appLimitWarning?: AppLimitWarning | null;
|
|
19482
|
+
appLimitWarningEdge?: AppLimitWarningEdge | null;
|
|
19483
|
+
}
|
|
19459
19484
|
export interface DeleteDatabasePayload {
|
|
19460
19485
|
clientMutationId?: string | null;
|
|
19461
19486
|
/** The `Database` that was deleted by this mutation. */
|
|
@@ -19486,6 +19511,12 @@ export interface DeleteAppLimitCreditPayload {
|
|
|
19486
19511
|
appLimitCredit?: AppLimitCredit | null;
|
|
19487
19512
|
appLimitCreditEdge?: AppLimitCreditEdge | null;
|
|
19488
19513
|
}
|
|
19514
|
+
export interface DeleteOrgLimitWarningPayload {
|
|
19515
|
+
clientMutationId?: string | null;
|
|
19516
|
+
/** The `OrgLimitWarning` that was deleted by this mutation. */
|
|
19517
|
+
orgLimitWarning?: OrgLimitWarning | null;
|
|
19518
|
+
orgLimitWarningEdge?: OrgLimitWarningEdge | null;
|
|
19519
|
+
}
|
|
19489
19520
|
export interface DeleteOrgLimitCreditPayload {
|
|
19490
19521
|
clientMutationId?: string | null;
|
|
19491
19522
|
/** The `OrgLimitCredit` that was deleted by this mutation. */
|
|
@@ -19504,12 +19535,6 @@ export interface DeleteSiteMetadatumPayload {
|
|
|
19504
19535
|
siteMetadatum?: SiteMetadatum | null;
|
|
19505
19536
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
19506
19537
|
}
|
|
19507
|
-
export interface DeleteAppLevelRequirementPayload {
|
|
19508
|
-
clientMutationId?: string | null;
|
|
19509
|
-
/** The `AppLevelRequirement` that was deleted by this mutation. */
|
|
19510
|
-
appLevelRequirement?: AppLevelRequirement | null;
|
|
19511
|
-
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
19512
|
-
}
|
|
19513
19538
|
export interface DeleteFullTextSearchPayload {
|
|
19514
19539
|
clientMutationId?: string | null;
|
|
19515
19540
|
/** The `FullTextSearch` that was deleted by this mutation. */
|
|
@@ -19660,12 +19685,6 @@ export interface DeleteOrgGrantPayload {
|
|
|
19660
19685
|
orgGrant?: OrgGrant | null;
|
|
19661
19686
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
19662
19687
|
}
|
|
19663
|
-
export interface DeleteAppLevelPayload {
|
|
19664
|
-
clientMutationId?: string | null;
|
|
19665
|
-
/** The `AppLevel` that was deleted by this mutation. */
|
|
19666
|
-
appLevel?: AppLevel | null;
|
|
19667
|
-
appLevelEdge?: AppLevelEdge | null;
|
|
19668
|
-
}
|
|
19669
19688
|
export interface DeleteBlueprintPayload {
|
|
19670
19689
|
clientMutationId?: string | null;
|
|
19671
19690
|
/** The `Blueprint` that was deleted by this mutation. */
|
|
@@ -19678,6 +19697,12 @@ export interface DeleteDenormalizedTableFieldPayload {
|
|
|
19678
19697
|
denormalizedTableField?: DenormalizedTableField | null;
|
|
19679
19698
|
denormalizedTableFieldEdge?: DenormalizedTableFieldEdge | null;
|
|
19680
19699
|
}
|
|
19700
|
+
export interface DeleteRateLimitMetersModulePayload {
|
|
19701
|
+
clientMutationId?: string | null;
|
|
19702
|
+
/** The `RateLimitMetersModule` that was deleted by this mutation. */
|
|
19703
|
+
rateLimitMetersModule?: RateLimitMetersModule | null;
|
|
19704
|
+
rateLimitMetersModuleEdge?: RateLimitMetersModuleEdge | null;
|
|
19705
|
+
}
|
|
19681
19706
|
export interface DeleteRealtimeModulePayload {
|
|
19682
19707
|
clientMutationId?: string | null;
|
|
19683
19708
|
/** The `RealtimeModule` that was deleted by this mutation. */
|
|
@@ -19864,12 +19889,6 @@ export interface DeletePolicyPayload {
|
|
|
19864
19889
|
policy?: Policy | null;
|
|
19865
19890
|
policyEdge?: PolicyEdge | null;
|
|
19866
19891
|
}
|
|
19867
|
-
export interface DeleteEmbeddingChunkPayload {
|
|
19868
|
-
clientMutationId?: string | null;
|
|
19869
|
-
/** The `EmbeddingChunk` that was deleted by this mutation. */
|
|
19870
|
-
embeddingChunk?: EmbeddingChunk | null;
|
|
19871
|
-
embeddingChunkEdge?: EmbeddingChunkEdge | null;
|
|
19872
|
-
}
|
|
19873
19892
|
export interface DeleteWebauthnSettingPayload {
|
|
19874
19893
|
clientMutationId?: string | null;
|
|
19875
19894
|
/** The `WebauthnSetting` that was deleted by this mutation. */
|
|
@@ -19930,6 +19949,12 @@ export interface DeleteOrgMembershipPayload {
|
|
|
19930
19949
|
orgMembership?: OrgMembership | null;
|
|
19931
19950
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
19932
19951
|
}
|
|
19952
|
+
export interface DeleteEmbeddingChunkPayload {
|
|
19953
|
+
clientMutationId?: string | null;
|
|
19954
|
+
/** The `EmbeddingChunk` that was deleted by this mutation. */
|
|
19955
|
+
embeddingChunk?: EmbeddingChunk | null;
|
|
19956
|
+
embeddingChunkEdge?: EmbeddingChunkEdge | null;
|
|
19957
|
+
}
|
|
19933
19958
|
export interface DeleteForeignKeyConstraintPayload {
|
|
19934
19959
|
clientMutationId?: string | null;
|
|
19935
19960
|
/** The `ForeignKeyConstraint` that was deleted by this mutation. */
|
|
@@ -19948,12 +19973,6 @@ export interface DeleteEntityTypeProvisionPayload {
|
|
|
19948
19973
|
entityTypeProvision?: EntityTypeProvision | null;
|
|
19949
19974
|
entityTypeProvisionEdge?: EntityTypeProvisionEdge | null;
|
|
19950
19975
|
}
|
|
19951
|
-
export interface DeleteLevelsModulePayload {
|
|
19952
|
-
clientMutationId?: string | null;
|
|
19953
|
-
/** The `LevelsModule` that was deleted by this mutation. */
|
|
19954
|
-
levelsModule?: LevelsModule | null;
|
|
19955
|
-
levelsModuleEdge?: LevelsModuleEdge | null;
|
|
19956
|
-
}
|
|
19957
19976
|
export interface DeleteUserAuthModulePayload {
|
|
19958
19977
|
clientMutationId?: string | null;
|
|
19959
19978
|
/** The `UserAuthModule` that was deleted by this mutation. */
|
|
@@ -19990,6 +20009,12 @@ export interface DeleteMembershipsModulePayload {
|
|
|
19990
20009
|
membershipsModule?: MembershipsModule | null;
|
|
19991
20010
|
membershipsModuleEdge?: MembershipsModuleEdge | null;
|
|
19992
20011
|
}
|
|
20012
|
+
export interface DeleteEventsModulePayload {
|
|
20013
|
+
clientMutationId?: string | null;
|
|
20014
|
+
/** The `EventsModule` that was deleted by this mutation. */
|
|
20015
|
+
eventsModule?: EventsModule | null;
|
|
20016
|
+
eventsModuleEdge?: EventsModuleEdge | null;
|
|
20017
|
+
}
|
|
19993
20018
|
export interface ProvisionBucketPayload {
|
|
19994
20019
|
/** Whether provisioning succeeded */
|
|
19995
20020
|
success: boolean;
|
|
@@ -20051,12 +20076,6 @@ export interface ObjectEdge {
|
|
|
20051
20076
|
/** The `Object` at the end of the edge. */
|
|
20052
20077
|
node?: Object | null;
|
|
20053
20078
|
}
|
|
20054
|
-
/** A `AppLevelRequirement` edge in the connection. */
|
|
20055
|
-
export interface AppLevelRequirementEdge {
|
|
20056
|
-
cursor?: string | null;
|
|
20057
|
-
/** The `AppLevelRequirement` at the end of the edge. */
|
|
20058
|
-
node?: AppLevelRequirement | null;
|
|
20059
|
-
}
|
|
20060
20079
|
/** A `DefaultIdsModule` edge in the connection. */
|
|
20061
20080
|
export interface DefaultIdsModuleEdge {
|
|
20062
20081
|
cursor?: string | null;
|
|
@@ -20141,11 +20160,11 @@ export interface MembershipTypesModuleEdge {
|
|
|
20141
20160
|
/** The `MembershipTypesModule` at the end of the edge. */
|
|
20142
20161
|
node?: MembershipTypesModule | null;
|
|
20143
20162
|
}
|
|
20144
|
-
/** A `
|
|
20145
|
-
export interface
|
|
20163
|
+
/** A `UserStateModule` edge in the connection. */
|
|
20164
|
+
export interface UserStateModuleEdge {
|
|
20146
20165
|
cursor?: string | null;
|
|
20147
|
-
/** The `
|
|
20148
|
-
node?:
|
|
20166
|
+
/** The `UserStateModule` at the end of the edge. */
|
|
20167
|
+
node?: UserStateModule | null;
|
|
20149
20168
|
}
|
|
20150
20169
|
/** A `AppPermissionDefault` edge in the connection. */
|
|
20151
20170
|
export interface AppPermissionDefaultEdge {
|
|
@@ -20213,18 +20232,6 @@ export interface AppOwnerGrantEdge {
|
|
|
20213
20232
|
/** The `AppOwnerGrant` at the end of the edge. */
|
|
20214
20233
|
node?: AppOwnerGrant | null;
|
|
20215
20234
|
}
|
|
20216
|
-
/** A `AppAchievement` edge in the connection. */
|
|
20217
|
-
export interface AppAchievementEdge {
|
|
20218
|
-
cursor?: string | null;
|
|
20219
|
-
/** The `AppAchievement` at the end of the edge. */
|
|
20220
|
-
node?: AppAchievement | null;
|
|
20221
|
-
}
|
|
20222
|
-
/** A `AppStep` edge in the connection. */
|
|
20223
|
-
export interface AppStepEdge {
|
|
20224
|
-
cursor?: string | null;
|
|
20225
|
-
/** The `AppStep` at the end of the edge. */
|
|
20226
|
-
node?: AppStep | null;
|
|
20227
|
-
}
|
|
20228
20235
|
/** A `OrgPermissionDefault` edge in the connection. */
|
|
20229
20236
|
export interface OrgPermissionDefaultEdge {
|
|
20230
20237
|
cursor?: string | null;
|
|
@@ -20357,6 +20364,12 @@ export interface AppLimitCreditCodeItemEdge {
|
|
|
20357
20364
|
/** The `AppLimitCreditCodeItem` at the end of the edge. */
|
|
20358
20365
|
node?: AppLimitCreditCodeItem | null;
|
|
20359
20366
|
}
|
|
20367
|
+
/** A `AppLimitWarning` edge in the connection. */
|
|
20368
|
+
export interface AppLimitWarningEdge {
|
|
20369
|
+
cursor?: string | null;
|
|
20370
|
+
/** The `AppLimitWarning` at the end of the edge. */
|
|
20371
|
+
node?: AppLimitWarning | null;
|
|
20372
|
+
}
|
|
20360
20373
|
/** A `UserConnectedAccount` edge in the connection. */
|
|
20361
20374
|
export interface UserConnectedAccountEdge {
|
|
20362
20375
|
cursor?: string | null;
|
|
@@ -20393,6 +20406,12 @@ export interface AppLimitCreditEdge {
|
|
|
20393
20406
|
/** The `AppLimitCredit` at the end of the edge. */
|
|
20394
20407
|
node?: AppLimitCredit | null;
|
|
20395
20408
|
}
|
|
20409
|
+
/** A `OrgLimitWarning` edge in the connection. */
|
|
20410
|
+
export interface OrgLimitWarningEdge {
|
|
20411
|
+
cursor?: string | null;
|
|
20412
|
+
/** The `OrgLimitWarning` at the end of the edge. */
|
|
20413
|
+
node?: OrgLimitWarning | null;
|
|
20414
|
+
}
|
|
20396
20415
|
/** A `OrgLimitCredit` edge in the connection. */
|
|
20397
20416
|
export interface OrgLimitCreditEdge {
|
|
20398
20417
|
cursor?: string | null;
|
|
@@ -20567,12 +20586,6 @@ export interface OrgGrantEdge {
|
|
|
20567
20586
|
/** The `OrgGrant` at the end of the edge. */
|
|
20568
20587
|
node?: OrgGrant | null;
|
|
20569
20588
|
}
|
|
20570
|
-
/** A `AppLevel` edge in the connection. */
|
|
20571
|
-
export interface AppLevelEdge {
|
|
20572
|
-
cursor?: string | null;
|
|
20573
|
-
/** The `AppLevel` at the end of the edge. */
|
|
20574
|
-
node?: AppLevel | null;
|
|
20575
|
-
}
|
|
20576
20589
|
/** A `Blueprint` edge in the connection. */
|
|
20577
20590
|
export interface BlueprintEdge {
|
|
20578
20591
|
cursor?: string | null;
|
|
@@ -20585,6 +20598,12 @@ export interface DenormalizedTableFieldEdge {
|
|
|
20585
20598
|
/** The `DenormalizedTableField` at the end of the edge. */
|
|
20586
20599
|
node?: DenormalizedTableField | null;
|
|
20587
20600
|
}
|
|
20601
|
+
/** A `RateLimitMetersModule` edge in the connection. */
|
|
20602
|
+
export interface RateLimitMetersModuleEdge {
|
|
20603
|
+
cursor?: string | null;
|
|
20604
|
+
/** The `RateLimitMetersModule` at the end of the edge. */
|
|
20605
|
+
node?: RateLimitMetersModule | null;
|
|
20606
|
+
}
|
|
20588
20607
|
/** A `RealtimeModule` edge in the connection. */
|
|
20589
20608
|
export interface RealtimeModuleEdge {
|
|
20590
20609
|
cursor?: string | null;
|
|
@@ -20783,12 +20802,6 @@ export interface PolicyEdge {
|
|
|
20783
20802
|
/** The `Policy` at the end of the edge. */
|
|
20784
20803
|
node?: Policy | null;
|
|
20785
20804
|
}
|
|
20786
|
-
/** A `EmbeddingChunk` edge in the connection. */
|
|
20787
|
-
export interface EmbeddingChunkEdge {
|
|
20788
|
-
cursor?: string | null;
|
|
20789
|
-
/** The `EmbeddingChunk` at the end of the edge. */
|
|
20790
|
-
node?: EmbeddingChunk | null;
|
|
20791
|
-
}
|
|
20792
20805
|
/** A `WebauthnSetting` edge in the connection. */
|
|
20793
20806
|
export interface WebauthnSettingEdge {
|
|
20794
20807
|
cursor?: string | null;
|
|
@@ -20849,6 +20862,12 @@ export interface OrgMembershipEdge {
|
|
|
20849
20862
|
/** The `OrgMembership` at the end of the edge. */
|
|
20850
20863
|
node?: OrgMembership | null;
|
|
20851
20864
|
}
|
|
20865
|
+
/** A `EmbeddingChunk` edge in the connection. */
|
|
20866
|
+
export interface EmbeddingChunkEdge {
|
|
20867
|
+
cursor?: string | null;
|
|
20868
|
+
/** The `EmbeddingChunk` at the end of the edge. */
|
|
20869
|
+
node?: EmbeddingChunk | null;
|
|
20870
|
+
}
|
|
20852
20871
|
/** A `ForeignKeyConstraint` edge in the connection. */
|
|
20853
20872
|
export interface ForeignKeyConstraintEdge {
|
|
20854
20873
|
cursor?: string | null;
|
|
@@ -20867,12 +20886,6 @@ export interface EntityTypeProvisionEdge {
|
|
|
20867
20886
|
/** The `EntityTypeProvision` at the end of the edge. */
|
|
20868
20887
|
node?: EntityTypeProvision | null;
|
|
20869
20888
|
}
|
|
20870
|
-
/** A `LevelsModule` edge in the connection. */
|
|
20871
|
-
export interface LevelsModuleEdge {
|
|
20872
|
-
cursor?: string | null;
|
|
20873
|
-
/** The `LevelsModule` at the end of the edge. */
|
|
20874
|
-
node?: LevelsModule | null;
|
|
20875
|
-
}
|
|
20876
20889
|
/** A `UserAuthModule` edge in the connection. */
|
|
20877
20890
|
export interface UserAuthModuleEdge {
|
|
20878
20891
|
cursor?: string | null;
|
|
@@ -20909,6 +20922,12 @@ export interface MembershipsModuleEdge {
|
|
|
20909
20922
|
/** The `MembershipsModule` at the end of the edge. */
|
|
20910
20923
|
node?: MembershipsModule | null;
|
|
20911
20924
|
}
|
|
20925
|
+
/** A `EventsModule` edge in the connection. */
|
|
20926
|
+
export interface EventsModuleEdge {
|
|
20927
|
+
cursor?: string | null;
|
|
20928
|
+
/** The `EventsModule` at the end of the edge. */
|
|
20929
|
+
node?: EventsModule | null;
|
|
20930
|
+
}
|
|
20912
20931
|
/** Information about a database table */
|
|
20913
20932
|
export interface MetaTable {
|
|
20914
20933
|
name: string;
|