@constructive-io/react 0.20.3 → 0.20.5
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
|
@@ -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 {
|
|
6
|
+
import type { AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLimit, AppLimitCap, AppLimitCapsDefault, AppLimitCredit, AppLimitCreditCode, AppLimitCreditCodeItem, AppLimitCreditRedemption, AppLimitDefault, AppLimitEvent, AppLimitWarning, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, MembershipType, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitAggregate, OrgLimitCap, OrgLimitCapsDefault, OrgLimitCredit, OrgLimitDefault, OrgLimitEvent, OrgLimitWarning, OrgMember, OrgMemberProfile, OrgMembership, OrgMembershipDefault, OrgMembershipSetting, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, UsageSnapshot, BigIntFilter, BitStringFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, UUIDFilter } from './types';
|
|
7
7
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeImage = unknown;
|
|
9
9
|
/** Methods to use when ordering `AppLimitCredit`. */
|
|
@@ -28,10 +28,6 @@ export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
|
|
|
28
28
|
export type AppAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
29
29
|
/** Methods to use when ordering `AppOwnerGrant`. */
|
|
30
30
|
export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
31
|
-
/** Methods to use when ordering `AppAchievement`. */
|
|
32
|
-
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';
|
|
33
|
-
/** Methods to use when ordering `AppStep`. */
|
|
34
|
-
export type AppStepOrderBy = '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';
|
|
35
31
|
/** Methods to use when ordering `AppLimitCapsDefault`. */
|
|
36
32
|
export type AppLimitCapsDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
|
|
37
33
|
/** Methods to use when ordering `OrgLimitCapsDefault`. */
|
|
@@ -52,8 +48,10 @@ export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KE
|
|
|
52
48
|
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';
|
|
53
49
|
/** Methods to use when ordering `OrgLimitDefault`. */
|
|
54
50
|
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';
|
|
55
|
-
/** Methods to use when ordering `
|
|
56
|
-
export type
|
|
51
|
+
/** Methods to use when ordering `AppLimitWarning`. */
|
|
52
|
+
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';
|
|
53
|
+
/** Methods to use when ordering `OrgLimitWarning`. */
|
|
54
|
+
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';
|
|
57
55
|
/** Methods to use when ordering `OrgChartEdgeGrant`. */
|
|
58
56
|
export type OrgChartEdgeGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
59
57
|
/** Methods to use when ordering `AppClaimedInvite`. */
|
|
@@ -76,10 +74,6 @@ export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
76
74
|
export type OrgChartEdgeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC';
|
|
77
75
|
/** Methods to use when ordering `UsageSnapshot`. */
|
|
78
76
|
export type UsageSnapshotOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'METRIC_NAME_ASC' | 'METRIC_NAME_DESC' | 'METRIC_VALUE_ASC' | 'METRIC_VALUE_DESC' | 'DIMENSIONS_ASC' | 'DIMENSIONS_DESC' | 'CAPTURED_AT_ASC' | 'CAPTURED_AT_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
79
|
-
/** Methods to use when ordering `OrgMemberProfile`. */
|
|
80
|
-
export type OrgMemberProfileOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'MEMBERSHIP_ID_ASC' | 'MEMBERSHIP_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'BIO_ASC' | 'BIO_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC';
|
|
81
|
-
/** Methods to use when ordering `AppLevel`. */
|
|
82
|
-
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';
|
|
83
77
|
/** Methods to use when ordering `AppLimit`. */
|
|
84
78
|
export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_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';
|
|
85
79
|
/** Methods to use when ordering `AppInvite`. */
|
|
@@ -90,6 +84,8 @@ export type OrgMembershipSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMA
|
|
|
90
84
|
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';
|
|
91
85
|
/** Methods to use when ordering `OrgLimit`. */
|
|
92
86
|
export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
87
|
+
/** Methods to use when ordering `OrgMemberProfile`. */
|
|
88
|
+
export type OrgMemberProfileOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'MEMBERSHIP_ID_ASC' | 'MEMBERSHIP_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'BIO_ASC' | 'BIO_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC';
|
|
93
89
|
/** Methods to use when ordering `AppMembership`. */
|
|
94
90
|
export type AppMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
95
91
|
/** Methods to use when ordering `OrgInvite`. */
|
|
@@ -372,48 +368,6 @@ export interface AppOwnerGrantFilter {
|
|
|
372
368
|
/** Negates the expression. */
|
|
373
369
|
not?: AppOwnerGrantFilter;
|
|
374
370
|
}
|
|
375
|
-
/** A filter to be used against `AppAchievement` object types. All fields are combined with a logical ‘and.’ */
|
|
376
|
-
export interface AppAchievementFilter {
|
|
377
|
-
/** Filter by the object’s `id` field. */
|
|
378
|
-
id?: UUIDFilter;
|
|
379
|
-
/** Filter by the object’s `actorId` field. */
|
|
380
|
-
actorId?: UUIDFilter;
|
|
381
|
-
/** Filter by the object’s `name` field. */
|
|
382
|
-
name?: StringFilter;
|
|
383
|
-
/** Filter by the object’s `count` field. */
|
|
384
|
-
count?: IntFilter;
|
|
385
|
-
/** Filter by the object’s `createdAt` field. */
|
|
386
|
-
createdAt?: DatetimeFilter;
|
|
387
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
388
|
-
updatedAt?: DatetimeFilter;
|
|
389
|
-
/** Checks for all expressions in this list. */
|
|
390
|
-
and?: AppAchievementFilter[];
|
|
391
|
-
/** Checks for any expressions in this list. */
|
|
392
|
-
or?: AppAchievementFilter[];
|
|
393
|
-
/** Negates the expression. */
|
|
394
|
-
not?: AppAchievementFilter;
|
|
395
|
-
}
|
|
396
|
-
/** A filter to be used against `AppStep` object types. All fields are combined with a logical ‘and.’ */
|
|
397
|
-
export interface AppStepFilter {
|
|
398
|
-
/** Filter by the object’s `id` field. */
|
|
399
|
-
id?: UUIDFilter;
|
|
400
|
-
/** Filter by the object’s `actorId` field. */
|
|
401
|
-
actorId?: UUIDFilter;
|
|
402
|
-
/** Filter by the object’s `name` field. */
|
|
403
|
-
name?: StringFilter;
|
|
404
|
-
/** Filter by the object’s `count` field. */
|
|
405
|
-
count?: IntFilter;
|
|
406
|
-
/** Filter by the object’s `createdAt` field. */
|
|
407
|
-
createdAt?: DatetimeFilter;
|
|
408
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
409
|
-
updatedAt?: DatetimeFilter;
|
|
410
|
-
/** Checks for all expressions in this list. */
|
|
411
|
-
and?: AppStepFilter[];
|
|
412
|
-
/** Checks for any expressions in this list. */
|
|
413
|
-
or?: AppStepFilter[];
|
|
414
|
-
/** Negates the expression. */
|
|
415
|
-
not?: AppStepFilter;
|
|
416
|
-
}
|
|
417
371
|
/** A filter to be used against `AppLimitCapsDefault` object types. All fields are combined with a logical ‘and.’ */
|
|
418
372
|
export interface AppLimitCapsDefaultFilter {
|
|
419
373
|
/** Filter by the object’s `id` field. */
|
|
@@ -600,30 +554,45 @@ export interface OrgLimitDefaultToManyOrgLimitCreditFilter {
|
|
|
600
554
|
/** Filters to entities where no related entity matches. */
|
|
601
555
|
none?: OrgLimitCreditFilter;
|
|
602
556
|
}
|
|
603
|
-
/** A filter to be used against `
|
|
604
|
-
export interface
|
|
557
|
+
/** A filter to be used against `AppLimitWarning` object types. All fields are combined with a logical ‘and.’ */
|
|
558
|
+
export interface AppLimitWarningFilter {
|
|
605
559
|
/** Filter by the object’s `id` field. */
|
|
606
560
|
id?: UUIDFilter;
|
|
607
561
|
/** Filter by the object’s `name` field. */
|
|
608
562
|
name?: StringFilter;
|
|
609
|
-
/** Filter by the object’s `
|
|
610
|
-
|
|
611
|
-
/** Filter by the object’s `
|
|
612
|
-
|
|
613
|
-
/** Filter by the object’s `
|
|
614
|
-
|
|
615
|
-
/** Filter by the object’s `priority` field. */
|
|
616
|
-
priority?: IntFilter;
|
|
617
|
-
/** Filter by the object’s `createdAt` field. */
|
|
618
|
-
createdAt?: DatetimeFilter;
|
|
619
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
620
|
-
updatedAt?: DatetimeFilter;
|
|
563
|
+
/** Filter by the object’s `warningType` field. */
|
|
564
|
+
warningType?: StringFilter;
|
|
565
|
+
/** Filter by the object’s `thresholdValue` field. */
|
|
566
|
+
thresholdValue?: BigIntFilter;
|
|
567
|
+
/** Filter by the object’s `taskIdentifier` field. */
|
|
568
|
+
taskIdentifier?: StringFilter;
|
|
621
569
|
/** Checks for all expressions in this list. */
|
|
622
|
-
and?:
|
|
570
|
+
and?: AppLimitWarningFilter[];
|
|
623
571
|
/** Checks for any expressions in this list. */
|
|
624
|
-
or?:
|
|
572
|
+
or?: AppLimitWarningFilter[];
|
|
625
573
|
/** Negates the expression. */
|
|
626
|
-
not?:
|
|
574
|
+
not?: AppLimitWarningFilter;
|
|
575
|
+
}
|
|
576
|
+
/** A filter to be used against `OrgLimitWarning` object types. All fields are combined with a logical ‘and.’ */
|
|
577
|
+
export interface OrgLimitWarningFilter {
|
|
578
|
+
/** Filter by the object’s `id` field. */
|
|
579
|
+
id?: UUIDFilter;
|
|
580
|
+
/** Filter by the object’s `name` field. */
|
|
581
|
+
name?: StringFilter;
|
|
582
|
+
/** Filter by the object’s `warningType` field. */
|
|
583
|
+
warningType?: StringFilter;
|
|
584
|
+
/** Filter by the object’s `thresholdValue` field. */
|
|
585
|
+
thresholdValue?: BigIntFilter;
|
|
586
|
+
/** Filter by the object’s `taskIdentifier` field. */
|
|
587
|
+
taskIdentifier?: StringFilter;
|
|
588
|
+
/** Filter by the object’s `entityId` field. */
|
|
589
|
+
entityId?: UUIDFilter;
|
|
590
|
+
/** Checks for all expressions in this list. */
|
|
591
|
+
and?: OrgLimitWarningFilter[];
|
|
592
|
+
/** Checks for any expressions in this list. */
|
|
593
|
+
or?: OrgLimitWarningFilter[];
|
|
594
|
+
/** Negates the expression. */
|
|
595
|
+
not?: OrgLimitWarningFilter;
|
|
627
596
|
}
|
|
628
597
|
/** A filter to be used against `OrgChartEdgeGrant` object types. All fields are combined with a logical ‘and.’ */
|
|
629
598
|
export interface OrgChartEdgeGrantFilter {
|
|
@@ -886,146 +855,6 @@ export interface UsageSnapshotFilter {
|
|
|
886
855
|
/** Negates the expression. */
|
|
887
856
|
not?: UsageSnapshotFilter;
|
|
888
857
|
}
|
|
889
|
-
/** A filter to be used against `OrgMemberProfile` object types. All fields are combined with a logical ‘and.’ */
|
|
890
|
-
export interface OrgMemberProfileFilter {
|
|
891
|
-
/** Filter by the object’s `id` field. */
|
|
892
|
-
id?: UUIDFilter;
|
|
893
|
-
/** Filter by the object’s `createdAt` field. */
|
|
894
|
-
createdAt?: DatetimeFilter;
|
|
895
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
896
|
-
updatedAt?: DatetimeFilter;
|
|
897
|
-
/** Filter by the object’s `membershipId` field. */
|
|
898
|
-
membershipId?: UUIDFilter;
|
|
899
|
-
/** Filter by the object’s `entityId` field. */
|
|
900
|
-
entityId?: UUIDFilter;
|
|
901
|
-
/** Filter by the object’s `actorId` field. */
|
|
902
|
-
actorId?: UUIDFilter;
|
|
903
|
-
/** Filter by the object’s `displayName` field. */
|
|
904
|
-
displayName?: StringFilter;
|
|
905
|
-
/** Filter by the object’s `email` field. */
|
|
906
|
-
email?: StringFilter;
|
|
907
|
-
/** Filter by the object’s `title` field. */
|
|
908
|
-
title?: StringFilter;
|
|
909
|
-
/** Filter by the object’s `bio` field. */
|
|
910
|
-
bio?: StringFilter;
|
|
911
|
-
/** Filter by the object’s `profilePicture` field. */
|
|
912
|
-
profilePicture?: ConstructiveInternalTypeImageFilter;
|
|
913
|
-
/** Checks for all expressions in this list. */
|
|
914
|
-
and?: OrgMemberProfileFilter[];
|
|
915
|
-
/** Checks for any expressions in this list. */
|
|
916
|
-
or?: OrgMemberProfileFilter[];
|
|
917
|
-
/** Negates the expression. */
|
|
918
|
-
not?: OrgMemberProfileFilter;
|
|
919
|
-
/** Filter by the object’s `membership` relation. */
|
|
920
|
-
membership?: OrgMembershipFilter;
|
|
921
|
-
}
|
|
922
|
-
/** A filter to be used against ConstructiveInternalTypeImage fields. All fields are combined with a logical ‘and.’ */
|
|
923
|
-
export interface ConstructiveInternalTypeImageFilter {
|
|
924
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
925
|
-
isNull?: boolean;
|
|
926
|
-
/** Equal to the specified value. */
|
|
927
|
-
equalTo?: ConstructiveInternalTypeImage;
|
|
928
|
-
/** Not equal to the specified value. */
|
|
929
|
-
notEqualTo?: ConstructiveInternalTypeImage;
|
|
930
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
931
|
-
distinctFrom?: ConstructiveInternalTypeImage;
|
|
932
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
933
|
-
notDistinctFrom?: ConstructiveInternalTypeImage;
|
|
934
|
-
/** Included in the specified list. */
|
|
935
|
-
in?: ConstructiveInternalTypeImage[];
|
|
936
|
-
/** Not included in the specified list. */
|
|
937
|
-
notIn?: ConstructiveInternalTypeImage[];
|
|
938
|
-
/** Less than the specified value. */
|
|
939
|
-
lessThan?: ConstructiveInternalTypeImage;
|
|
940
|
-
/** Less than or equal to the specified value. */
|
|
941
|
-
lessThanOrEqualTo?: ConstructiveInternalTypeImage;
|
|
942
|
-
/** Greater than the specified value. */
|
|
943
|
-
greaterThan?: ConstructiveInternalTypeImage;
|
|
944
|
-
/** Greater than or equal to the specified value. */
|
|
945
|
-
greaterThanOrEqualTo?: ConstructiveInternalTypeImage;
|
|
946
|
-
/** Contains the specified JSON. */
|
|
947
|
-
contains?: ConstructiveInternalTypeImage;
|
|
948
|
-
/** Contains the specified key. */
|
|
949
|
-
containsKey?: string;
|
|
950
|
-
/** Contains all of the specified keys. */
|
|
951
|
-
containsAllKeys?: string[];
|
|
952
|
-
/** Contains any of the specified keys. */
|
|
953
|
-
containsAnyKeys?: string[];
|
|
954
|
-
/** Contained by the specified JSON. */
|
|
955
|
-
containedBy?: ConstructiveInternalTypeImage;
|
|
956
|
-
}
|
|
957
|
-
/** A filter to be used against `OrgMembership` object types. All fields are combined with a logical ‘and.’ */
|
|
958
|
-
export interface OrgMembershipFilter {
|
|
959
|
-
/** Filter by the object’s `id` field. */
|
|
960
|
-
id?: UUIDFilter;
|
|
961
|
-
/** Filter by the object’s `createdAt` field. */
|
|
962
|
-
createdAt?: DatetimeFilter;
|
|
963
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
964
|
-
updatedAt?: DatetimeFilter;
|
|
965
|
-
/** Filter by the object’s `createdBy` field. */
|
|
966
|
-
createdBy?: UUIDFilter;
|
|
967
|
-
/** Filter by the object’s `updatedBy` field. */
|
|
968
|
-
updatedBy?: UUIDFilter;
|
|
969
|
-
/** Filter by the object’s `isApproved` field. */
|
|
970
|
-
isApproved?: BooleanFilter;
|
|
971
|
-
/** Filter by the object’s `isBanned` field. */
|
|
972
|
-
isBanned?: BooleanFilter;
|
|
973
|
-
/** Filter by the object’s `isDisabled` field. */
|
|
974
|
-
isDisabled?: BooleanFilter;
|
|
975
|
-
/** Filter by the object’s `isActive` field. */
|
|
976
|
-
isActive?: BooleanFilter;
|
|
977
|
-
/** Filter by the object’s `isExternal` field. */
|
|
978
|
-
isExternal?: BooleanFilter;
|
|
979
|
-
/** Filter by the object’s `isOwner` field. */
|
|
980
|
-
isOwner?: BooleanFilter;
|
|
981
|
-
/** Filter by the object’s `isAdmin` field. */
|
|
982
|
-
isAdmin?: BooleanFilter;
|
|
983
|
-
/** Filter by the object’s `permissions` field. */
|
|
984
|
-
permissions?: BitStringFilter;
|
|
985
|
-
/** Filter by the object’s `granted` field. */
|
|
986
|
-
granted?: BitStringFilter;
|
|
987
|
-
/** Filter by the object’s `actorId` field. */
|
|
988
|
-
actorId?: UUIDFilter;
|
|
989
|
-
/** Filter by the object’s `entityId` field. */
|
|
990
|
-
entityId?: UUIDFilter;
|
|
991
|
-
/** Filter by the object’s `isReadOnly` field. */
|
|
992
|
-
isReadOnly?: BooleanFilter;
|
|
993
|
-
/** Filter by the object’s `profileId` field. */
|
|
994
|
-
profileId?: UUIDFilter;
|
|
995
|
-
/** Checks for all expressions in this list. */
|
|
996
|
-
and?: OrgMembershipFilter[];
|
|
997
|
-
/** Checks for any expressions in this list. */
|
|
998
|
-
or?: OrgMembershipFilter[];
|
|
999
|
-
/** Negates the expression. */
|
|
1000
|
-
not?: OrgMembershipFilter;
|
|
1001
|
-
/** Filter by the object’s `orgMemberProfileByMembershipId` relation. */
|
|
1002
|
-
orgMemberProfileByMembershipId?: OrgMemberProfileFilter;
|
|
1003
|
-
/** A related `orgMemberProfileByMembershipId` exists. */
|
|
1004
|
-
orgMemberProfileByMembershipIdExists?: boolean;
|
|
1005
|
-
}
|
|
1006
|
-
/** A filter to be used against `AppLevel` object types. All fields are combined with a logical ‘and.’ */
|
|
1007
|
-
export interface AppLevelFilter {
|
|
1008
|
-
/** Filter by the object’s `id` field. */
|
|
1009
|
-
id?: UUIDFilter;
|
|
1010
|
-
/** Filter by the object’s `name` field. */
|
|
1011
|
-
name?: StringFilter;
|
|
1012
|
-
/** Filter by the object’s `description` field. */
|
|
1013
|
-
description?: StringFilter;
|
|
1014
|
-
/** Filter by the object’s `image` field. */
|
|
1015
|
-
image?: ConstructiveInternalTypeImageFilter;
|
|
1016
|
-
/** Filter by the object’s `ownerId` field. */
|
|
1017
|
-
ownerId?: UUIDFilter;
|
|
1018
|
-
/** Filter by the object’s `createdAt` field. */
|
|
1019
|
-
createdAt?: DatetimeFilter;
|
|
1020
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
1021
|
-
updatedAt?: DatetimeFilter;
|
|
1022
|
-
/** Checks for all expressions in this list. */
|
|
1023
|
-
and?: AppLevelFilter[];
|
|
1024
|
-
/** Checks for any expressions in this list. */
|
|
1025
|
-
or?: AppLevelFilter[];
|
|
1026
|
-
/** Negates the expression. */
|
|
1027
|
-
not?: AppLevelFilter;
|
|
1028
|
-
}
|
|
1029
858
|
/** A filter to be used against `AppLimit` object types. All fields are combined with a logical ‘and.’ */
|
|
1030
859
|
export interface AppLimitFilter {
|
|
1031
860
|
/** Filter by the object’s `id` field. */
|
|
@@ -1314,6 +1143,123 @@ export interface OrgLimitFilter {
|
|
|
1314
1143
|
/** Negates the expression. */
|
|
1315
1144
|
not?: OrgLimitFilter;
|
|
1316
1145
|
}
|
|
1146
|
+
/** A filter to be used against `OrgMemberProfile` object types. All fields are combined with a logical ‘and.’ */
|
|
1147
|
+
export interface OrgMemberProfileFilter {
|
|
1148
|
+
/** Filter by the object’s `id` field. */
|
|
1149
|
+
id?: UUIDFilter;
|
|
1150
|
+
/** Filter by the object’s `createdAt` field. */
|
|
1151
|
+
createdAt?: DatetimeFilter;
|
|
1152
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
1153
|
+
updatedAt?: DatetimeFilter;
|
|
1154
|
+
/** Filter by the object’s `membershipId` field. */
|
|
1155
|
+
membershipId?: UUIDFilter;
|
|
1156
|
+
/** Filter by the object’s `entityId` field. */
|
|
1157
|
+
entityId?: UUIDFilter;
|
|
1158
|
+
/** Filter by the object’s `actorId` field. */
|
|
1159
|
+
actorId?: UUIDFilter;
|
|
1160
|
+
/** Filter by the object’s `displayName` field. */
|
|
1161
|
+
displayName?: StringFilter;
|
|
1162
|
+
/** Filter by the object’s `email` field. */
|
|
1163
|
+
email?: StringFilter;
|
|
1164
|
+
/** Filter by the object’s `title` field. */
|
|
1165
|
+
title?: StringFilter;
|
|
1166
|
+
/** Filter by the object’s `bio` field. */
|
|
1167
|
+
bio?: StringFilter;
|
|
1168
|
+
/** Filter by the object’s `profilePicture` field. */
|
|
1169
|
+
profilePicture?: ConstructiveInternalTypeImageFilter;
|
|
1170
|
+
/** Checks for all expressions in this list. */
|
|
1171
|
+
and?: OrgMemberProfileFilter[];
|
|
1172
|
+
/** Checks for any expressions in this list. */
|
|
1173
|
+
or?: OrgMemberProfileFilter[];
|
|
1174
|
+
/** Negates the expression. */
|
|
1175
|
+
not?: OrgMemberProfileFilter;
|
|
1176
|
+
/** Filter by the object’s `membership` relation. */
|
|
1177
|
+
membership?: OrgMembershipFilter;
|
|
1178
|
+
}
|
|
1179
|
+
/** A filter to be used against ConstructiveInternalTypeImage fields. All fields are combined with a logical ‘and.’ */
|
|
1180
|
+
export interface ConstructiveInternalTypeImageFilter {
|
|
1181
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
1182
|
+
isNull?: boolean;
|
|
1183
|
+
/** Equal to the specified value. */
|
|
1184
|
+
equalTo?: ConstructiveInternalTypeImage;
|
|
1185
|
+
/** Not equal to the specified value. */
|
|
1186
|
+
notEqualTo?: ConstructiveInternalTypeImage;
|
|
1187
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
1188
|
+
distinctFrom?: ConstructiveInternalTypeImage;
|
|
1189
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
1190
|
+
notDistinctFrom?: ConstructiveInternalTypeImage;
|
|
1191
|
+
/** Included in the specified list. */
|
|
1192
|
+
in?: ConstructiveInternalTypeImage[];
|
|
1193
|
+
/** Not included in the specified list. */
|
|
1194
|
+
notIn?: ConstructiveInternalTypeImage[];
|
|
1195
|
+
/** Less than the specified value. */
|
|
1196
|
+
lessThan?: ConstructiveInternalTypeImage;
|
|
1197
|
+
/** Less than or equal to the specified value. */
|
|
1198
|
+
lessThanOrEqualTo?: ConstructiveInternalTypeImage;
|
|
1199
|
+
/** Greater than the specified value. */
|
|
1200
|
+
greaterThan?: ConstructiveInternalTypeImage;
|
|
1201
|
+
/** Greater than or equal to the specified value. */
|
|
1202
|
+
greaterThanOrEqualTo?: ConstructiveInternalTypeImage;
|
|
1203
|
+
/** Contains the specified JSON. */
|
|
1204
|
+
contains?: ConstructiveInternalTypeImage;
|
|
1205
|
+
/** Contains the specified key. */
|
|
1206
|
+
containsKey?: string;
|
|
1207
|
+
/** Contains all of the specified keys. */
|
|
1208
|
+
containsAllKeys?: string[];
|
|
1209
|
+
/** Contains any of the specified keys. */
|
|
1210
|
+
containsAnyKeys?: string[];
|
|
1211
|
+
/** Contained by the specified JSON. */
|
|
1212
|
+
containedBy?: ConstructiveInternalTypeImage;
|
|
1213
|
+
}
|
|
1214
|
+
/** A filter to be used against `OrgMembership` object types. All fields are combined with a logical ‘and.’ */
|
|
1215
|
+
export interface OrgMembershipFilter {
|
|
1216
|
+
/** Filter by the object’s `id` field. */
|
|
1217
|
+
id?: UUIDFilter;
|
|
1218
|
+
/** Filter by the object’s `createdAt` field. */
|
|
1219
|
+
createdAt?: DatetimeFilter;
|
|
1220
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
1221
|
+
updatedAt?: DatetimeFilter;
|
|
1222
|
+
/** Filter by the object’s `createdBy` field. */
|
|
1223
|
+
createdBy?: UUIDFilter;
|
|
1224
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
1225
|
+
updatedBy?: UUIDFilter;
|
|
1226
|
+
/** Filter by the object’s `isApproved` field. */
|
|
1227
|
+
isApproved?: BooleanFilter;
|
|
1228
|
+
/** Filter by the object’s `isBanned` field. */
|
|
1229
|
+
isBanned?: BooleanFilter;
|
|
1230
|
+
/** Filter by the object’s `isDisabled` field. */
|
|
1231
|
+
isDisabled?: BooleanFilter;
|
|
1232
|
+
/** Filter by the object’s `isActive` field. */
|
|
1233
|
+
isActive?: BooleanFilter;
|
|
1234
|
+
/** Filter by the object’s `isExternal` field. */
|
|
1235
|
+
isExternal?: BooleanFilter;
|
|
1236
|
+
/** Filter by the object’s `isOwner` field. */
|
|
1237
|
+
isOwner?: BooleanFilter;
|
|
1238
|
+
/** Filter by the object’s `isAdmin` field. */
|
|
1239
|
+
isAdmin?: BooleanFilter;
|
|
1240
|
+
/** Filter by the object’s `permissions` field. */
|
|
1241
|
+
permissions?: BitStringFilter;
|
|
1242
|
+
/** Filter by the object’s `granted` field. */
|
|
1243
|
+
granted?: BitStringFilter;
|
|
1244
|
+
/** Filter by the object’s `actorId` field. */
|
|
1245
|
+
actorId?: UUIDFilter;
|
|
1246
|
+
/** Filter by the object’s `entityId` field. */
|
|
1247
|
+
entityId?: UUIDFilter;
|
|
1248
|
+
/** Filter by the object’s `isReadOnly` field. */
|
|
1249
|
+
isReadOnly?: BooleanFilter;
|
|
1250
|
+
/** Filter by the object’s `profileId` field. */
|
|
1251
|
+
profileId?: UUIDFilter;
|
|
1252
|
+
/** Checks for all expressions in this list. */
|
|
1253
|
+
and?: OrgMembershipFilter[];
|
|
1254
|
+
/** Checks for any expressions in this list. */
|
|
1255
|
+
or?: OrgMembershipFilter[];
|
|
1256
|
+
/** Negates the expression. */
|
|
1257
|
+
not?: OrgMembershipFilter;
|
|
1258
|
+
/** Filter by the object’s `orgMemberProfileByMembershipId` relation. */
|
|
1259
|
+
orgMemberProfileByMembershipId?: OrgMemberProfileFilter;
|
|
1260
|
+
/** A related `orgMemberProfileByMembershipId` exists. */
|
|
1261
|
+
orgMemberProfileByMembershipIdExists?: boolean;
|
|
1262
|
+
}
|
|
1317
1263
|
/** A filter to be used against `AppMembership` object types. All fields are combined with a logical ‘and.’ */
|
|
1318
1264
|
export interface AppMembershipFilter {
|
|
1319
1265
|
/** Filter by the object’s `id` field. */
|
|
@@ -1537,38 +1483,6 @@ export interface AppOwnerGrantInput {
|
|
|
1537
1483
|
createdAt?: string;
|
|
1538
1484
|
updatedAt?: string;
|
|
1539
1485
|
}
|
|
1540
|
-
export interface CreateAppAchievementInput {
|
|
1541
|
-
clientMutationId?: string;
|
|
1542
|
-
/** The `AppAchievement` to be created by this mutation. */
|
|
1543
|
-
appAchievement: AppAchievementInput;
|
|
1544
|
-
}
|
|
1545
|
-
/** An input for mutations affecting `AppAchievement` */
|
|
1546
|
-
export interface AppAchievementInput {
|
|
1547
|
-
id?: string;
|
|
1548
|
-
actorId?: string;
|
|
1549
|
-
/** Name identifier of the level requirement being tracked */
|
|
1550
|
-
name: string;
|
|
1551
|
-
/** Cumulative count of completed steps toward this requirement */
|
|
1552
|
-
count?: number;
|
|
1553
|
-
createdAt?: string;
|
|
1554
|
-
updatedAt?: string;
|
|
1555
|
-
}
|
|
1556
|
-
export interface CreateAppStepInput {
|
|
1557
|
-
clientMutationId?: string;
|
|
1558
|
-
/** The `AppStep` to be created by this mutation. */
|
|
1559
|
-
appStep: AppStepInput;
|
|
1560
|
-
}
|
|
1561
|
-
/** An input for mutations affecting `AppStep` */
|
|
1562
|
-
export interface AppStepInput {
|
|
1563
|
-
id?: string;
|
|
1564
|
-
actorId?: string;
|
|
1565
|
-
/** Name identifier of the level requirement this step fulfills */
|
|
1566
|
-
name: string;
|
|
1567
|
-
/** Number of units completed in this step action */
|
|
1568
|
-
count?: number;
|
|
1569
|
-
createdAt?: string;
|
|
1570
|
-
updatedAt?: string;
|
|
1571
|
-
}
|
|
1572
1486
|
export interface CreateAppLimitCapsDefaultInput {
|
|
1573
1487
|
clientMutationId?: string;
|
|
1574
1488
|
/** The `AppLimitCapsDefault` to be created by this mutation. */
|
|
@@ -1728,26 +1642,22 @@ export interface AppLimitCreditCodeItemInput {
|
|
|
1728
1642
|
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
1729
1643
|
creditType?: string;
|
|
1730
1644
|
}
|
|
1731
|
-
export interface
|
|
1645
|
+
export interface CreateAppLimitWarningInput {
|
|
1732
1646
|
clientMutationId?: string;
|
|
1733
|
-
/** The `
|
|
1734
|
-
|
|
1647
|
+
/** The `AppLimitWarning` to be created by this mutation. */
|
|
1648
|
+
appLimitWarning: AppLimitWarningInput;
|
|
1735
1649
|
}
|
|
1736
|
-
/** An input for mutations affecting `
|
|
1737
|
-
export interface
|
|
1650
|
+
/** An input for mutations affecting `AppLimitWarning` */
|
|
1651
|
+
export interface AppLimitWarningInput {
|
|
1738
1652
|
id?: string;
|
|
1739
|
-
/**
|
|
1653
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
1740
1654
|
name: string;
|
|
1741
|
-
/**
|
|
1742
|
-
|
|
1743
|
-
/**
|
|
1744
|
-
|
|
1745
|
-
/**
|
|
1746
|
-
|
|
1747
|
-
/** Display ordering priority; lower values appear first */
|
|
1748
|
-
priority?: number;
|
|
1749
|
-
createdAt?: string;
|
|
1750
|
-
updatedAt?: string;
|
|
1655
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
1656
|
+
warningType: string;
|
|
1657
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
1658
|
+
thresholdValue: string;
|
|
1659
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
1660
|
+
taskIdentifier: string;
|
|
1751
1661
|
}
|
|
1752
1662
|
export interface CreateAppLimitCreditInput {
|
|
1753
1663
|
clientMutationId?: string;
|
|
@@ -1768,6 +1678,25 @@ export interface AppLimitCreditInput {
|
|
|
1768
1678
|
/** Optional reason for the credit grant (promo code, admin grant, etc.) */
|
|
1769
1679
|
reason?: string;
|
|
1770
1680
|
}
|
|
1681
|
+
export interface CreateOrgLimitWarningInput {
|
|
1682
|
+
clientMutationId?: string;
|
|
1683
|
+
/** The `OrgLimitWarning` to be created by this mutation. */
|
|
1684
|
+
orgLimitWarning: OrgLimitWarningInput;
|
|
1685
|
+
}
|
|
1686
|
+
/** An input for mutations affecting `OrgLimitWarning` */
|
|
1687
|
+
export interface OrgLimitWarningInput {
|
|
1688
|
+
id?: string;
|
|
1689
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
1690
|
+
name: string;
|
|
1691
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
1692
|
+
warningType: string;
|
|
1693
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
1694
|
+
thresholdValue: string;
|
|
1695
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
1696
|
+
taskIdentifier: string;
|
|
1697
|
+
/** Per-entity override (NULL = scope default for all entities) */
|
|
1698
|
+
entityId?: string;
|
|
1699
|
+
}
|
|
1771
1700
|
export interface CreateOrgLimitCreditInput {
|
|
1772
1701
|
clientMutationId?: string;
|
|
1773
1702
|
/** The `OrgLimitCredit` to be created by this mutation. */
|
|
@@ -2013,52 +1942,6 @@ export interface UsageSnapshotInput {
|
|
|
2013
1942
|
capturedAt?: string;
|
|
2014
1943
|
id?: string;
|
|
2015
1944
|
}
|
|
2016
|
-
export interface CreateOrgMemberProfileInput {
|
|
2017
|
-
clientMutationId?: string;
|
|
2018
|
-
/** The `OrgMemberProfile` to be created by this mutation. */
|
|
2019
|
-
orgMemberProfile: OrgMemberProfileInput;
|
|
2020
|
-
}
|
|
2021
|
-
/** An input for mutations affecting `OrgMemberProfile` */
|
|
2022
|
-
export interface OrgMemberProfileInput {
|
|
2023
|
-
id?: string;
|
|
2024
|
-
createdAt?: string;
|
|
2025
|
-
updatedAt?: string;
|
|
2026
|
-
/** References the membership this profile belongs to (1:1) */
|
|
2027
|
-
membershipId: string;
|
|
2028
|
-
/** References the entity this profile belongs to (used for RLS lookups) */
|
|
2029
|
-
entityId: string;
|
|
2030
|
-
/** References the user who owns this profile (for self-edit RLS) */
|
|
2031
|
-
actorId: string;
|
|
2032
|
-
/** Display name shown to other entity members */
|
|
2033
|
-
displayName?: string;
|
|
2034
|
-
/** Email address visible to other entity members (auto-populated from verified primary email) */
|
|
2035
|
-
email?: string;
|
|
2036
|
-
/** Job title or role description visible to other entity members */
|
|
2037
|
-
title?: string;
|
|
2038
|
-
/** Short biography visible to other entity members */
|
|
2039
|
-
bio?: string;
|
|
2040
|
-
/** Profile picture visible to other entity members */
|
|
2041
|
-
profilePicture?: ConstructiveInternalTypeImage;
|
|
2042
|
-
}
|
|
2043
|
-
export interface CreateAppLevelInput {
|
|
2044
|
-
clientMutationId?: string;
|
|
2045
|
-
/** The `AppLevel` to be created by this mutation. */
|
|
2046
|
-
appLevel: AppLevelInput;
|
|
2047
|
-
}
|
|
2048
|
-
/** An input for mutations affecting `AppLevel` */
|
|
2049
|
-
export interface AppLevelInput {
|
|
2050
|
-
id?: string;
|
|
2051
|
-
/** Unique name of the level */
|
|
2052
|
-
name: string;
|
|
2053
|
-
/** Human-readable description of what this level represents */
|
|
2054
|
-
description?: string;
|
|
2055
|
-
/** Badge or icon image associated with this level */
|
|
2056
|
-
image?: ConstructiveInternalTypeImage;
|
|
2057
|
-
/** Optional owner (actor) who created or manages this level */
|
|
2058
|
-
ownerId?: string;
|
|
2059
|
-
createdAt?: string;
|
|
2060
|
-
updatedAt?: string;
|
|
2061
|
-
}
|
|
2062
1945
|
export interface CreateAppLimitInput {
|
|
2063
1946
|
clientMutationId?: string;
|
|
2064
1947
|
/** The `AppLimit` to be created by this mutation. */
|
|
@@ -2211,6 +2094,33 @@ export interface OrgLimitInput {
|
|
|
2211
2094
|
periodCredits?: string;
|
|
2212
2095
|
entityId: string;
|
|
2213
2096
|
}
|
|
2097
|
+
export interface CreateOrgMemberProfileInput {
|
|
2098
|
+
clientMutationId?: string;
|
|
2099
|
+
/** The `OrgMemberProfile` to be created by this mutation. */
|
|
2100
|
+
orgMemberProfile: OrgMemberProfileInput;
|
|
2101
|
+
}
|
|
2102
|
+
/** An input for mutations affecting `OrgMemberProfile` */
|
|
2103
|
+
export interface OrgMemberProfileInput {
|
|
2104
|
+
id?: string;
|
|
2105
|
+
createdAt?: string;
|
|
2106
|
+
updatedAt?: string;
|
|
2107
|
+
/** References the membership this profile belongs to (1:1) */
|
|
2108
|
+
membershipId: string;
|
|
2109
|
+
/** References the entity this profile belongs to (used for RLS lookups) */
|
|
2110
|
+
entityId: string;
|
|
2111
|
+
/** References the user who owns this profile (for self-edit RLS) */
|
|
2112
|
+
actorId: string;
|
|
2113
|
+
/** Display name shown to other entity members */
|
|
2114
|
+
displayName?: string;
|
|
2115
|
+
/** Email address visible to other entity members (auto-populated from verified primary email) */
|
|
2116
|
+
email?: string;
|
|
2117
|
+
/** Job title or role description visible to other entity members */
|
|
2118
|
+
title?: string;
|
|
2119
|
+
/** Short biography visible to other entity members */
|
|
2120
|
+
bio?: string;
|
|
2121
|
+
/** Profile picture visible to other entity members */
|
|
2122
|
+
profilePicture?: ConstructiveInternalTypeImage;
|
|
2123
|
+
}
|
|
2214
2124
|
export interface CreateAppMembershipInput {
|
|
2215
2125
|
clientMutationId?: string;
|
|
2216
2126
|
/** The `AppMembership` to be created by this mutation. */
|
|
@@ -2463,40 +2373,6 @@ export interface AppOwnerGrantPatch {
|
|
|
2463
2373
|
createdAt?: string;
|
|
2464
2374
|
updatedAt?: string;
|
|
2465
2375
|
}
|
|
2466
|
-
export interface UpdateAppAchievementInput {
|
|
2467
|
-
clientMutationId?: string;
|
|
2468
|
-
id: string;
|
|
2469
|
-
/** An object where the defined keys will be set on the `AppAchievement` being updated. */
|
|
2470
|
-
appAchievementPatch: AppAchievementPatch;
|
|
2471
|
-
}
|
|
2472
|
-
/** Represents an update to a `AppAchievement`. Fields that are set will be updated. */
|
|
2473
|
-
export interface AppAchievementPatch {
|
|
2474
|
-
id?: string;
|
|
2475
|
-
actorId?: string;
|
|
2476
|
-
/** Name identifier of the level requirement being tracked */
|
|
2477
|
-
name?: string;
|
|
2478
|
-
/** Cumulative count of completed steps toward this requirement */
|
|
2479
|
-
count?: number;
|
|
2480
|
-
createdAt?: string;
|
|
2481
|
-
updatedAt?: string;
|
|
2482
|
-
}
|
|
2483
|
-
export interface UpdateAppStepInput {
|
|
2484
|
-
clientMutationId?: string;
|
|
2485
|
-
id: string;
|
|
2486
|
-
/** An object where the defined keys will be set on the `AppStep` being updated. */
|
|
2487
|
-
appStepPatch: AppStepPatch;
|
|
2488
|
-
}
|
|
2489
|
-
/** Represents an update to a `AppStep`. Fields that are set will be updated. */
|
|
2490
|
-
export interface AppStepPatch {
|
|
2491
|
-
id?: string;
|
|
2492
|
-
actorId?: string;
|
|
2493
|
-
/** Name identifier of the level requirement this step fulfills */
|
|
2494
|
-
name?: string;
|
|
2495
|
-
/** Number of units completed in this step action */
|
|
2496
|
-
count?: number;
|
|
2497
|
-
createdAt?: string;
|
|
2498
|
-
updatedAt?: string;
|
|
2499
|
-
}
|
|
2500
2376
|
export interface UpdateAppLimitCapsDefaultInput {
|
|
2501
2377
|
clientMutationId?: string;
|
|
2502
2378
|
id: string;
|
|
@@ -2667,27 +2543,23 @@ export interface AppLimitCreditCodeItemPatch {
|
|
|
2667
2543
|
/** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
|
|
2668
2544
|
creditType?: string;
|
|
2669
2545
|
}
|
|
2670
|
-
export interface
|
|
2546
|
+
export interface UpdateAppLimitWarningInput {
|
|
2671
2547
|
clientMutationId?: string;
|
|
2672
2548
|
id: string;
|
|
2673
|
-
/** An object where the defined keys will be set on the `
|
|
2674
|
-
|
|
2549
|
+
/** An object where the defined keys will be set on the `AppLimitWarning` being updated. */
|
|
2550
|
+
appLimitWarningPatch: AppLimitWarningPatch;
|
|
2675
2551
|
}
|
|
2676
|
-
/** Represents an update to a `
|
|
2677
|
-
export interface
|
|
2552
|
+
/** Represents an update to a `AppLimitWarning`. Fields that are set will be updated. */
|
|
2553
|
+
export interface AppLimitWarningPatch {
|
|
2678
2554
|
id?: string;
|
|
2679
|
-
/**
|
|
2555
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
2680
2556
|
name?: string;
|
|
2681
|
-
/**
|
|
2682
|
-
|
|
2683
|
-
/**
|
|
2684
|
-
|
|
2685
|
-
/**
|
|
2686
|
-
|
|
2687
|
-
/** Display ordering priority; lower values appear first */
|
|
2688
|
-
priority?: number;
|
|
2689
|
-
createdAt?: string;
|
|
2690
|
-
updatedAt?: string;
|
|
2557
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
2558
|
+
warningType?: string;
|
|
2559
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
2560
|
+
thresholdValue?: string;
|
|
2561
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
2562
|
+
taskIdentifier?: string;
|
|
2691
2563
|
}
|
|
2692
2564
|
export interface UpdateAppLimitCreditInput {
|
|
2693
2565
|
clientMutationId?: string;
|
|
@@ -2709,6 +2581,26 @@ export interface AppLimitCreditPatch {
|
|
|
2709
2581
|
/** Optional reason for the credit grant (promo code, admin grant, etc.) */
|
|
2710
2582
|
reason?: string;
|
|
2711
2583
|
}
|
|
2584
|
+
export interface UpdateOrgLimitWarningInput {
|
|
2585
|
+
clientMutationId?: string;
|
|
2586
|
+
id: string;
|
|
2587
|
+
/** An object where the defined keys will be set on the `OrgLimitWarning` being updated. */
|
|
2588
|
+
orgLimitWarningPatch: OrgLimitWarningPatch;
|
|
2589
|
+
}
|
|
2590
|
+
/** Represents an update to a `OrgLimitWarning`. Fields that are set will be updated. */
|
|
2591
|
+
export interface OrgLimitWarningPatch {
|
|
2592
|
+
id?: string;
|
|
2593
|
+
/** Limit name this warning applies to (must match a default_limits entry) */
|
|
2594
|
+
name?: string;
|
|
2595
|
+
/** Threshold type: absolute (fixed count) or percentage (of max) */
|
|
2596
|
+
warningType?: string;
|
|
2597
|
+
/** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
|
|
2598
|
+
thresholdValue?: string;
|
|
2599
|
+
/** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
|
|
2600
|
+
taskIdentifier?: string;
|
|
2601
|
+
/** Per-entity override (NULL = scope default for all entities) */
|
|
2602
|
+
entityId?: string;
|
|
2603
|
+
}
|
|
2712
2604
|
export interface UpdateOrgLimitCreditInput {
|
|
2713
2605
|
clientMutationId?: string;
|
|
2714
2606
|
id: string;
|
|
@@ -2912,58 +2804,6 @@ export interface UsageSnapshotPatch {
|
|
|
2912
2804
|
capturedAt?: string;
|
|
2913
2805
|
id?: string;
|
|
2914
2806
|
}
|
|
2915
|
-
export interface UpdateOrgMemberProfileInput {
|
|
2916
|
-
clientMutationId?: string;
|
|
2917
|
-
id: string;
|
|
2918
|
-
/** An object where the defined keys will be set on the `OrgMemberProfile` being updated. */
|
|
2919
|
-
orgMemberProfilePatch: OrgMemberProfilePatch;
|
|
2920
|
-
}
|
|
2921
|
-
/** Represents an update to a `OrgMemberProfile`. Fields that are set will be updated. */
|
|
2922
|
-
export interface OrgMemberProfilePatch {
|
|
2923
|
-
id?: string;
|
|
2924
|
-
createdAt?: string;
|
|
2925
|
-
updatedAt?: string;
|
|
2926
|
-
/** References the membership this profile belongs to (1:1) */
|
|
2927
|
-
membershipId?: string;
|
|
2928
|
-
/** References the entity this profile belongs to (used for RLS lookups) */
|
|
2929
|
-
entityId?: string;
|
|
2930
|
-
/** References the user who owns this profile (for self-edit RLS) */
|
|
2931
|
-
actorId?: string;
|
|
2932
|
-
/** Display name shown to other entity members */
|
|
2933
|
-
displayName?: string;
|
|
2934
|
-
/** Email address visible to other entity members (auto-populated from verified primary email) */
|
|
2935
|
-
email?: string;
|
|
2936
|
-
/** Job title or role description visible to other entity members */
|
|
2937
|
-
title?: string;
|
|
2938
|
-
/** Short biography visible to other entity members */
|
|
2939
|
-
bio?: string;
|
|
2940
|
-
/** Profile picture visible to other entity members */
|
|
2941
|
-
profilePicture?: ConstructiveInternalTypeImage;
|
|
2942
|
-
/** Upload for Profile picture visible to other entity members */
|
|
2943
|
-
profilePictureUpload?: File;
|
|
2944
|
-
}
|
|
2945
|
-
export interface UpdateAppLevelInput {
|
|
2946
|
-
clientMutationId?: string;
|
|
2947
|
-
id: string;
|
|
2948
|
-
/** An object where the defined keys will be set on the `AppLevel` being updated. */
|
|
2949
|
-
appLevelPatch: AppLevelPatch;
|
|
2950
|
-
}
|
|
2951
|
-
/** Represents an update to a `AppLevel`. Fields that are set will be updated. */
|
|
2952
|
-
export interface AppLevelPatch {
|
|
2953
|
-
id?: string;
|
|
2954
|
-
/** Unique name of the level */
|
|
2955
|
-
name?: string;
|
|
2956
|
-
/** Human-readable description of what this level represents */
|
|
2957
|
-
description?: string;
|
|
2958
|
-
/** Badge or icon image associated with this level */
|
|
2959
|
-
image?: ConstructiveInternalTypeImage;
|
|
2960
|
-
/** Optional owner (actor) who created or manages this level */
|
|
2961
|
-
ownerId?: string;
|
|
2962
|
-
createdAt?: string;
|
|
2963
|
-
updatedAt?: string;
|
|
2964
|
-
/** Upload for Badge or icon image associated with this level */
|
|
2965
|
-
imageUpload?: File;
|
|
2966
|
-
}
|
|
2967
2807
|
export interface UpdateAppLimitInput {
|
|
2968
2808
|
clientMutationId?: string;
|
|
2969
2809
|
id: string;
|
|
@@ -3121,6 +2961,36 @@ export interface OrgLimitPatch {
|
|
|
3121
2961
|
periodCredits?: string;
|
|
3122
2962
|
entityId?: string;
|
|
3123
2963
|
}
|
|
2964
|
+
export interface UpdateOrgMemberProfileInput {
|
|
2965
|
+
clientMutationId?: string;
|
|
2966
|
+
id: string;
|
|
2967
|
+
/** An object where the defined keys will be set on the `OrgMemberProfile` being updated. */
|
|
2968
|
+
orgMemberProfilePatch: OrgMemberProfilePatch;
|
|
2969
|
+
}
|
|
2970
|
+
/** Represents an update to a `OrgMemberProfile`. Fields that are set will be updated. */
|
|
2971
|
+
export interface OrgMemberProfilePatch {
|
|
2972
|
+
id?: string;
|
|
2973
|
+
createdAt?: string;
|
|
2974
|
+
updatedAt?: string;
|
|
2975
|
+
/** References the membership this profile belongs to (1:1) */
|
|
2976
|
+
membershipId?: string;
|
|
2977
|
+
/** References the entity this profile belongs to (used for RLS lookups) */
|
|
2978
|
+
entityId?: string;
|
|
2979
|
+
/** References the user who owns this profile (for self-edit RLS) */
|
|
2980
|
+
actorId?: string;
|
|
2981
|
+
/** Display name shown to other entity members */
|
|
2982
|
+
displayName?: string;
|
|
2983
|
+
/** Email address visible to other entity members (auto-populated from verified primary email) */
|
|
2984
|
+
email?: string;
|
|
2985
|
+
/** Job title or role description visible to other entity members */
|
|
2986
|
+
title?: string;
|
|
2987
|
+
/** Short biography visible to other entity members */
|
|
2988
|
+
bio?: string;
|
|
2989
|
+
/** Profile picture visible to other entity members */
|
|
2990
|
+
profilePicture?: ConstructiveInternalTypeImage;
|
|
2991
|
+
/** Upload for Profile picture visible to other entity members */
|
|
2992
|
+
profilePictureUpload?: File;
|
|
2993
|
+
}
|
|
3124
2994
|
export interface UpdateAppMembershipInput {
|
|
3125
2995
|
clientMutationId?: string;
|
|
3126
2996
|
id: string;
|
|
@@ -3268,14 +3138,6 @@ export interface DeleteAppOwnerGrantInput {
|
|
|
3268
3138
|
clientMutationId?: string;
|
|
3269
3139
|
id: string;
|
|
3270
3140
|
}
|
|
3271
|
-
export interface DeleteAppAchievementInput {
|
|
3272
|
-
clientMutationId?: string;
|
|
3273
|
-
id: string;
|
|
3274
|
-
}
|
|
3275
|
-
export interface DeleteAppStepInput {
|
|
3276
|
-
clientMutationId?: string;
|
|
3277
|
-
id: string;
|
|
3278
|
-
}
|
|
3279
3141
|
export interface DeleteAppLimitCapsDefaultInput {
|
|
3280
3142
|
clientMutationId?: string;
|
|
3281
3143
|
id: string;
|
|
@@ -3317,7 +3179,7 @@ export interface DeleteAppLimitCreditCodeItemInput {
|
|
|
3317
3179
|
clientMutationId?: string;
|
|
3318
3180
|
id: string;
|
|
3319
3181
|
}
|
|
3320
|
-
export interface
|
|
3182
|
+
export interface DeleteAppLimitWarningInput {
|
|
3321
3183
|
clientMutationId?: string;
|
|
3322
3184
|
id: string;
|
|
3323
3185
|
}
|
|
@@ -3325,6 +3187,10 @@ export interface DeleteAppLimitCreditInput {
|
|
|
3325
3187
|
clientMutationId?: string;
|
|
3326
3188
|
id: string;
|
|
3327
3189
|
}
|
|
3190
|
+
export interface DeleteOrgLimitWarningInput {
|
|
3191
|
+
clientMutationId?: string;
|
|
3192
|
+
id: string;
|
|
3193
|
+
}
|
|
3328
3194
|
export interface DeleteOrgLimitCreditInput {
|
|
3329
3195
|
clientMutationId?: string;
|
|
3330
3196
|
id: string;
|
|
@@ -3365,14 +3231,6 @@ export interface DeleteUsageSnapshotInput {
|
|
|
3365
3231
|
clientMutationId?: string;
|
|
3366
3232
|
id: string;
|
|
3367
3233
|
}
|
|
3368
|
-
export interface DeleteOrgMemberProfileInput {
|
|
3369
|
-
clientMutationId?: string;
|
|
3370
|
-
id: string;
|
|
3371
|
-
}
|
|
3372
|
-
export interface DeleteAppLevelInput {
|
|
3373
|
-
clientMutationId?: string;
|
|
3374
|
-
id: string;
|
|
3375
|
-
}
|
|
3376
3234
|
export interface DeleteAppLimitInput {
|
|
3377
3235
|
clientMutationId?: string;
|
|
3378
3236
|
id: string;
|
|
@@ -3393,6 +3251,10 @@ export interface DeleteOrgLimitInput {
|
|
|
3393
3251
|
clientMutationId?: string;
|
|
3394
3252
|
id: string;
|
|
3395
3253
|
}
|
|
3254
|
+
export interface DeleteOrgMemberProfileInput {
|
|
3255
|
+
clientMutationId?: string;
|
|
3256
|
+
id: string;
|
|
3257
|
+
}
|
|
3396
3258
|
export interface DeleteAppMembershipInput {
|
|
3397
3259
|
clientMutationId?: string;
|
|
3398
3260
|
id: string;
|
|
@@ -3442,13 +3304,6 @@ export interface OrgPermissionConnection {
|
|
|
3442
3304
|
pageInfo: PageInfo;
|
|
3443
3305
|
totalCount: number;
|
|
3444
3306
|
}
|
|
3445
|
-
/** A connection to a list of `AppLevelRequirement` values. */
|
|
3446
|
-
export interface AppLevelRequirementConnection {
|
|
3447
|
-
nodes: AppLevelRequirement[];
|
|
3448
|
-
edges: AppLevelRequirementEdge[];
|
|
3449
|
-
pageInfo: PageInfo;
|
|
3450
|
-
totalCount: number;
|
|
3451
|
-
}
|
|
3452
3307
|
/** A connection to a list of `AppLimitCreditRedemption` values. */
|
|
3453
3308
|
export interface AppLimitCreditRedemptionConnection {
|
|
3454
3309
|
nodes: AppLimitCreditRedemption[];
|
|
@@ -3498,20 +3353,6 @@ export interface AppOwnerGrantConnection {
|
|
|
3498
3353
|
pageInfo: PageInfo;
|
|
3499
3354
|
totalCount: number;
|
|
3500
3355
|
}
|
|
3501
|
-
/** A connection to a list of `AppAchievement` values. */
|
|
3502
|
-
export interface AppAchievementConnection {
|
|
3503
|
-
nodes: AppAchievement[];
|
|
3504
|
-
edges: AppAchievementEdge[];
|
|
3505
|
-
pageInfo: PageInfo;
|
|
3506
|
-
totalCount: number;
|
|
3507
|
-
}
|
|
3508
|
-
/** A connection to a list of `AppStep` values. */
|
|
3509
|
-
export interface AppStepConnection {
|
|
3510
|
-
nodes: AppStep[];
|
|
3511
|
-
edges: AppStepEdge[];
|
|
3512
|
-
pageInfo: PageInfo;
|
|
3513
|
-
totalCount: number;
|
|
3514
|
-
}
|
|
3515
3356
|
/** A connection to a list of `AppLimitCapsDefault` values. */
|
|
3516
3357
|
export interface AppLimitCapsDefaultConnection {
|
|
3517
3358
|
nodes: AppLimitCapsDefault[];
|
|
@@ -3582,6 +3423,13 @@ export interface AppLimitCreditCodeItemConnection {
|
|
|
3582
3423
|
pageInfo: PageInfo;
|
|
3583
3424
|
totalCount: number;
|
|
3584
3425
|
}
|
|
3426
|
+
/** A connection to a list of `AppLimitWarning` values. */
|
|
3427
|
+
export interface AppLimitWarningConnection {
|
|
3428
|
+
nodes: AppLimitWarning[];
|
|
3429
|
+
edges: AppLimitWarningEdge[];
|
|
3430
|
+
pageInfo: PageInfo;
|
|
3431
|
+
totalCount: number;
|
|
3432
|
+
}
|
|
3585
3433
|
/** A connection to a list of `AppLimitCredit` values. */
|
|
3586
3434
|
export interface AppLimitCreditConnection {
|
|
3587
3435
|
nodes: AppLimitCredit[];
|
|
@@ -3589,6 +3437,13 @@ export interface AppLimitCreditConnection {
|
|
|
3589
3437
|
pageInfo: PageInfo;
|
|
3590
3438
|
totalCount: number;
|
|
3591
3439
|
}
|
|
3440
|
+
/** A connection to a list of `OrgLimitWarning` values. */
|
|
3441
|
+
export interface OrgLimitWarningConnection {
|
|
3442
|
+
nodes: OrgLimitWarning[];
|
|
3443
|
+
edges: OrgLimitWarningEdge[];
|
|
3444
|
+
pageInfo: PageInfo;
|
|
3445
|
+
totalCount: number;
|
|
3446
|
+
}
|
|
3592
3447
|
/** A connection to a list of `OrgLimitCredit` values. */
|
|
3593
3448
|
export interface OrgLimitCreditConnection {
|
|
3594
3449
|
nodes: OrgLimitCredit[];
|
|
@@ -3673,20 +3528,6 @@ export interface UsageSnapshotConnection {
|
|
|
3673
3528
|
pageInfo: PageInfo;
|
|
3674
3529
|
totalCount: number;
|
|
3675
3530
|
}
|
|
3676
|
-
/** A connection to a list of `OrgMemberProfile` values. */
|
|
3677
|
-
export interface OrgMemberProfileConnection {
|
|
3678
|
-
nodes: OrgMemberProfile[];
|
|
3679
|
-
edges: OrgMemberProfileEdge[];
|
|
3680
|
-
pageInfo: PageInfo;
|
|
3681
|
-
totalCount: number;
|
|
3682
|
-
}
|
|
3683
|
-
/** A connection to a list of `AppLevel` values. */
|
|
3684
|
-
export interface AppLevelConnection {
|
|
3685
|
-
nodes: AppLevel[];
|
|
3686
|
-
edges: AppLevelEdge[];
|
|
3687
|
-
pageInfo: PageInfo;
|
|
3688
|
-
totalCount: number;
|
|
3689
|
-
}
|
|
3690
3531
|
/** A connection to a list of `AppLimit` values. */
|
|
3691
3532
|
export interface AppLimitConnection {
|
|
3692
3533
|
nodes: AppLimit[];
|
|
@@ -3722,6 +3563,13 @@ export interface OrgLimitConnection {
|
|
|
3722
3563
|
pageInfo: PageInfo;
|
|
3723
3564
|
totalCount: number;
|
|
3724
3565
|
}
|
|
3566
|
+
/** A connection to a list of `OrgMemberProfile` values. */
|
|
3567
|
+
export interface OrgMemberProfileConnection {
|
|
3568
|
+
nodes: OrgMemberProfile[];
|
|
3569
|
+
edges: OrgMemberProfileEdge[];
|
|
3570
|
+
pageInfo: PageInfo;
|
|
3571
|
+
totalCount: number;
|
|
3572
|
+
}
|
|
3725
3573
|
/** A connection to a list of `AppMembership` values. */
|
|
3726
3574
|
export interface AppMembershipConnection {
|
|
3727
3575
|
nodes: AppMembership[];
|
|
@@ -3809,18 +3657,6 @@ export interface CreateAppOwnerGrantPayload {
|
|
|
3809
3657
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
3810
3658
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
3811
3659
|
}
|
|
3812
|
-
export interface CreateAppAchievementPayload {
|
|
3813
|
-
clientMutationId?: string | null;
|
|
3814
|
-
/** The `AppAchievement` that was created by this mutation. */
|
|
3815
|
-
appAchievement?: AppAchievement | null;
|
|
3816
|
-
appAchievementEdge?: AppAchievementEdge | null;
|
|
3817
|
-
}
|
|
3818
|
-
export interface CreateAppStepPayload {
|
|
3819
|
-
clientMutationId?: string | null;
|
|
3820
|
-
/** The `AppStep` that was created by this mutation. */
|
|
3821
|
-
appStep?: AppStep | null;
|
|
3822
|
-
appStepEdge?: AppStepEdge | null;
|
|
3823
|
-
}
|
|
3824
3660
|
export interface CreateAppLimitCapsDefaultPayload {
|
|
3825
3661
|
clientMutationId?: string | null;
|
|
3826
3662
|
/** The `AppLimitCapsDefault` that was created by this mutation. */
|
|
@@ -3881,11 +3717,11 @@ export interface CreateAppLimitCreditCodeItemPayload {
|
|
|
3881
3717
|
appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
|
|
3882
3718
|
appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
|
|
3883
3719
|
}
|
|
3884
|
-
export interface
|
|
3720
|
+
export interface CreateAppLimitWarningPayload {
|
|
3885
3721
|
clientMutationId?: string | null;
|
|
3886
|
-
/** The `
|
|
3887
|
-
|
|
3888
|
-
|
|
3722
|
+
/** The `AppLimitWarning` that was created by this mutation. */
|
|
3723
|
+
appLimitWarning?: AppLimitWarning | null;
|
|
3724
|
+
appLimitWarningEdge?: AppLimitWarningEdge | null;
|
|
3889
3725
|
}
|
|
3890
3726
|
export interface CreateAppLimitCreditPayload {
|
|
3891
3727
|
clientMutationId?: string | null;
|
|
@@ -3893,6 +3729,12 @@ export interface CreateAppLimitCreditPayload {
|
|
|
3893
3729
|
appLimitCredit?: AppLimitCredit | null;
|
|
3894
3730
|
appLimitCreditEdge?: AppLimitCreditEdge | null;
|
|
3895
3731
|
}
|
|
3732
|
+
export interface CreateOrgLimitWarningPayload {
|
|
3733
|
+
clientMutationId?: string | null;
|
|
3734
|
+
/** The `OrgLimitWarning` that was created by this mutation. */
|
|
3735
|
+
orgLimitWarning?: OrgLimitWarning | null;
|
|
3736
|
+
orgLimitWarningEdge?: OrgLimitWarningEdge | null;
|
|
3737
|
+
}
|
|
3896
3738
|
export interface CreateOrgLimitCreditPayload {
|
|
3897
3739
|
clientMutationId?: string | null;
|
|
3898
3740
|
/** The `OrgLimitCredit` that was created by this mutation. */
|
|
@@ -3963,18 +3805,6 @@ export interface CreateUsageSnapshotPayload {
|
|
|
3963
3805
|
usageSnapshot?: UsageSnapshot | null;
|
|
3964
3806
|
usageSnapshotEdge?: UsageSnapshotEdge | null;
|
|
3965
3807
|
}
|
|
3966
|
-
export interface CreateOrgMemberProfilePayload {
|
|
3967
|
-
clientMutationId?: string | null;
|
|
3968
|
-
/** The `OrgMemberProfile` that was created by this mutation. */
|
|
3969
|
-
orgMemberProfile?: OrgMemberProfile | null;
|
|
3970
|
-
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
3971
|
-
}
|
|
3972
|
-
export interface CreateAppLevelPayload {
|
|
3973
|
-
clientMutationId?: string | null;
|
|
3974
|
-
/** The `AppLevel` that was created by this mutation. */
|
|
3975
|
-
appLevel?: AppLevel | null;
|
|
3976
|
-
appLevelEdge?: AppLevelEdge | null;
|
|
3977
|
-
}
|
|
3978
3808
|
export interface CreateAppLimitPayload {
|
|
3979
3809
|
clientMutationId?: string | null;
|
|
3980
3810
|
/** The `AppLimit` that was created by this mutation. */
|
|
@@ -4005,6 +3835,12 @@ export interface CreateOrgLimitPayload {
|
|
|
4005
3835
|
orgLimit?: OrgLimit | null;
|
|
4006
3836
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
4007
3837
|
}
|
|
3838
|
+
export interface CreateOrgMemberProfilePayload {
|
|
3839
|
+
clientMutationId?: string | null;
|
|
3840
|
+
/** The `OrgMemberProfile` that was created by this mutation. */
|
|
3841
|
+
orgMemberProfile?: OrgMemberProfile | null;
|
|
3842
|
+
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
3843
|
+
}
|
|
4008
3844
|
export interface CreateAppMembershipPayload {
|
|
4009
3845
|
clientMutationId?: string | null;
|
|
4010
3846
|
/** The `AppMembership` that was created by this mutation. */
|
|
@@ -4077,18 +3913,6 @@ export interface UpdateAppOwnerGrantPayload {
|
|
|
4077
3913
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
4078
3914
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
4079
3915
|
}
|
|
4080
|
-
export interface UpdateAppAchievementPayload {
|
|
4081
|
-
clientMutationId?: string | null;
|
|
4082
|
-
/** The `AppAchievement` that was updated by this mutation. */
|
|
4083
|
-
appAchievement?: AppAchievement | null;
|
|
4084
|
-
appAchievementEdge?: AppAchievementEdge | null;
|
|
4085
|
-
}
|
|
4086
|
-
export interface UpdateAppStepPayload {
|
|
4087
|
-
clientMutationId?: string | null;
|
|
4088
|
-
/** The `AppStep` that was updated by this mutation. */
|
|
4089
|
-
appStep?: AppStep | null;
|
|
4090
|
-
appStepEdge?: AppStepEdge | null;
|
|
4091
|
-
}
|
|
4092
3916
|
export interface UpdateAppLimitCapsDefaultPayload {
|
|
4093
3917
|
clientMutationId?: string | null;
|
|
4094
3918
|
/** The `AppLimitCapsDefault` that was updated by this mutation. */
|
|
@@ -4149,11 +3973,11 @@ export interface UpdateAppLimitCreditCodeItemPayload {
|
|
|
4149
3973
|
appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
|
|
4150
3974
|
appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
|
|
4151
3975
|
}
|
|
4152
|
-
export interface
|
|
3976
|
+
export interface UpdateAppLimitWarningPayload {
|
|
4153
3977
|
clientMutationId?: string | null;
|
|
4154
|
-
/** The `
|
|
4155
|
-
|
|
4156
|
-
|
|
3978
|
+
/** The `AppLimitWarning` that was updated by this mutation. */
|
|
3979
|
+
appLimitWarning?: AppLimitWarning | null;
|
|
3980
|
+
appLimitWarningEdge?: AppLimitWarningEdge | null;
|
|
4157
3981
|
}
|
|
4158
3982
|
export interface UpdateAppLimitCreditPayload {
|
|
4159
3983
|
clientMutationId?: string | null;
|
|
@@ -4161,6 +3985,12 @@ export interface UpdateAppLimitCreditPayload {
|
|
|
4161
3985
|
appLimitCredit?: AppLimitCredit | null;
|
|
4162
3986
|
appLimitCreditEdge?: AppLimitCreditEdge | null;
|
|
4163
3987
|
}
|
|
3988
|
+
export interface UpdateOrgLimitWarningPayload {
|
|
3989
|
+
clientMutationId?: string | null;
|
|
3990
|
+
/** The `OrgLimitWarning` that was updated by this mutation. */
|
|
3991
|
+
orgLimitWarning?: OrgLimitWarning | null;
|
|
3992
|
+
orgLimitWarningEdge?: OrgLimitWarningEdge | null;
|
|
3993
|
+
}
|
|
4164
3994
|
export interface UpdateOrgLimitCreditPayload {
|
|
4165
3995
|
clientMutationId?: string | null;
|
|
4166
3996
|
/** The `OrgLimitCredit` that was updated by this mutation. */
|
|
@@ -4221,18 +4051,6 @@ export interface UpdateUsageSnapshotPayload {
|
|
|
4221
4051
|
usageSnapshot?: UsageSnapshot | null;
|
|
4222
4052
|
usageSnapshotEdge?: UsageSnapshotEdge | null;
|
|
4223
4053
|
}
|
|
4224
|
-
export interface UpdateOrgMemberProfilePayload {
|
|
4225
|
-
clientMutationId?: string | null;
|
|
4226
|
-
/** The `OrgMemberProfile` that was updated by this mutation. */
|
|
4227
|
-
orgMemberProfile?: OrgMemberProfile | null;
|
|
4228
|
-
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
4229
|
-
}
|
|
4230
|
-
export interface UpdateAppLevelPayload {
|
|
4231
|
-
clientMutationId?: string | null;
|
|
4232
|
-
/** The `AppLevel` that was updated by this mutation. */
|
|
4233
|
-
appLevel?: AppLevel | null;
|
|
4234
|
-
appLevelEdge?: AppLevelEdge | null;
|
|
4235
|
-
}
|
|
4236
4054
|
export interface UpdateAppLimitPayload {
|
|
4237
4055
|
clientMutationId?: string | null;
|
|
4238
4056
|
/** The `AppLimit` that was updated by this mutation. */
|
|
@@ -4263,6 +4081,12 @@ export interface UpdateOrgLimitPayload {
|
|
|
4263
4081
|
orgLimit?: OrgLimit | null;
|
|
4264
4082
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
4265
4083
|
}
|
|
4084
|
+
export interface UpdateOrgMemberProfilePayload {
|
|
4085
|
+
clientMutationId?: string | null;
|
|
4086
|
+
/** The `OrgMemberProfile` that was updated by this mutation. */
|
|
4087
|
+
orgMemberProfile?: OrgMemberProfile | null;
|
|
4088
|
+
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
4089
|
+
}
|
|
4266
4090
|
export interface UpdateAppMembershipPayload {
|
|
4267
4091
|
clientMutationId?: string | null;
|
|
4268
4092
|
/** The `AppMembership` that was updated by this mutation. */
|
|
@@ -4335,18 +4159,6 @@ export interface DeleteAppOwnerGrantPayload {
|
|
|
4335
4159
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
4336
4160
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
4337
4161
|
}
|
|
4338
|
-
export interface DeleteAppAchievementPayload {
|
|
4339
|
-
clientMutationId?: string | null;
|
|
4340
|
-
/** The `AppAchievement` that was deleted by this mutation. */
|
|
4341
|
-
appAchievement?: AppAchievement | null;
|
|
4342
|
-
appAchievementEdge?: AppAchievementEdge | null;
|
|
4343
|
-
}
|
|
4344
|
-
export interface DeleteAppStepPayload {
|
|
4345
|
-
clientMutationId?: string | null;
|
|
4346
|
-
/** The `AppStep` that was deleted by this mutation. */
|
|
4347
|
-
appStep?: AppStep | null;
|
|
4348
|
-
appStepEdge?: AppStepEdge | null;
|
|
4349
|
-
}
|
|
4350
4162
|
export interface DeleteAppLimitCapsDefaultPayload {
|
|
4351
4163
|
clientMutationId?: string | null;
|
|
4352
4164
|
/** The `AppLimitCapsDefault` that was deleted by this mutation. */
|
|
@@ -4407,11 +4219,11 @@ export interface DeleteAppLimitCreditCodeItemPayload {
|
|
|
4407
4219
|
appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
|
|
4408
4220
|
appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
|
|
4409
4221
|
}
|
|
4410
|
-
export interface
|
|
4222
|
+
export interface DeleteAppLimitWarningPayload {
|
|
4411
4223
|
clientMutationId?: string | null;
|
|
4412
|
-
/** The `
|
|
4413
|
-
|
|
4414
|
-
|
|
4224
|
+
/** The `AppLimitWarning` that was deleted by this mutation. */
|
|
4225
|
+
appLimitWarning?: AppLimitWarning | null;
|
|
4226
|
+
appLimitWarningEdge?: AppLimitWarningEdge | null;
|
|
4415
4227
|
}
|
|
4416
4228
|
export interface DeleteAppLimitCreditPayload {
|
|
4417
4229
|
clientMutationId?: string | null;
|
|
@@ -4419,6 +4231,12 @@ export interface DeleteAppLimitCreditPayload {
|
|
|
4419
4231
|
appLimitCredit?: AppLimitCredit | null;
|
|
4420
4232
|
appLimitCreditEdge?: AppLimitCreditEdge | null;
|
|
4421
4233
|
}
|
|
4234
|
+
export interface DeleteOrgLimitWarningPayload {
|
|
4235
|
+
clientMutationId?: string | null;
|
|
4236
|
+
/** The `OrgLimitWarning` that was deleted by this mutation. */
|
|
4237
|
+
orgLimitWarning?: OrgLimitWarning | null;
|
|
4238
|
+
orgLimitWarningEdge?: OrgLimitWarningEdge | null;
|
|
4239
|
+
}
|
|
4422
4240
|
export interface DeleteOrgLimitCreditPayload {
|
|
4423
4241
|
clientMutationId?: string | null;
|
|
4424
4242
|
/** The `OrgLimitCredit` that was deleted by this mutation. */
|
|
@@ -4479,18 +4297,6 @@ export interface DeleteUsageSnapshotPayload {
|
|
|
4479
4297
|
usageSnapshot?: UsageSnapshot | null;
|
|
4480
4298
|
usageSnapshotEdge?: UsageSnapshotEdge | null;
|
|
4481
4299
|
}
|
|
4482
|
-
export interface DeleteOrgMemberProfilePayload {
|
|
4483
|
-
clientMutationId?: string | null;
|
|
4484
|
-
/** The `OrgMemberProfile` that was deleted by this mutation. */
|
|
4485
|
-
orgMemberProfile?: OrgMemberProfile | null;
|
|
4486
|
-
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
4487
|
-
}
|
|
4488
|
-
export interface DeleteAppLevelPayload {
|
|
4489
|
-
clientMutationId?: string | null;
|
|
4490
|
-
/** The `AppLevel` that was deleted by this mutation. */
|
|
4491
|
-
appLevel?: AppLevel | null;
|
|
4492
|
-
appLevelEdge?: AppLevelEdge | null;
|
|
4493
|
-
}
|
|
4494
4300
|
export interface DeleteAppLimitPayload {
|
|
4495
4301
|
clientMutationId?: string | null;
|
|
4496
4302
|
/** The `AppLimit` that was deleted by this mutation. */
|
|
@@ -4521,6 +4327,12 @@ export interface DeleteOrgLimitPayload {
|
|
|
4521
4327
|
orgLimit?: OrgLimit | null;
|
|
4522
4328
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
4523
4329
|
}
|
|
4330
|
+
export interface DeleteOrgMemberProfilePayload {
|
|
4331
|
+
clientMutationId?: string | null;
|
|
4332
|
+
/** The `OrgMemberProfile` that was deleted by this mutation. */
|
|
4333
|
+
orgMemberProfile?: OrgMemberProfile | null;
|
|
4334
|
+
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
4335
|
+
}
|
|
4524
4336
|
export interface DeleteAppMembershipPayload {
|
|
4525
4337
|
clientMutationId?: string | null;
|
|
4526
4338
|
/** The `AppMembership` that was deleted by this mutation. */
|
|
@@ -4588,12 +4400,6 @@ export interface OrgPermissionEdge {
|
|
|
4588
4400
|
/** The `OrgPermission` at the end of the edge. */
|
|
4589
4401
|
node?: OrgPermission | null;
|
|
4590
4402
|
}
|
|
4591
|
-
/** A `AppLevelRequirement` edge in the connection. */
|
|
4592
|
-
export interface AppLevelRequirementEdge {
|
|
4593
|
-
cursor?: string | null;
|
|
4594
|
-
/** The `AppLevelRequirement` at the end of the edge. */
|
|
4595
|
-
node?: AppLevelRequirement | null;
|
|
4596
|
-
}
|
|
4597
4403
|
/** A `AppLimitCreditRedemption` edge in the connection. */
|
|
4598
4404
|
export interface AppLimitCreditRedemptionEdge {
|
|
4599
4405
|
cursor?: string | null;
|
|
@@ -4636,18 +4442,6 @@ export interface AppOwnerGrantEdge {
|
|
|
4636
4442
|
/** The `AppOwnerGrant` at the end of the edge. */
|
|
4637
4443
|
node?: AppOwnerGrant | null;
|
|
4638
4444
|
}
|
|
4639
|
-
/** A `AppAchievement` edge in the connection. */
|
|
4640
|
-
export interface AppAchievementEdge {
|
|
4641
|
-
cursor?: string | null;
|
|
4642
|
-
/** The `AppAchievement` at the end of the edge. */
|
|
4643
|
-
node?: AppAchievement | null;
|
|
4644
|
-
}
|
|
4645
|
-
/** A `AppStep` edge in the connection. */
|
|
4646
|
-
export interface AppStepEdge {
|
|
4647
|
-
cursor?: string | null;
|
|
4648
|
-
/** The `AppStep` at the end of the edge. */
|
|
4649
|
-
node?: AppStep | null;
|
|
4650
|
-
}
|
|
4651
4445
|
/** A `AppLimitCapsDefault` edge in the connection. */
|
|
4652
4446
|
export interface AppLimitCapsDefaultEdge {
|
|
4653
4447
|
cursor?: string | null;
|
|
@@ -4708,12 +4502,24 @@ export interface AppLimitCreditCodeItemEdge {
|
|
|
4708
4502
|
/** The `AppLimitCreditCodeItem` at the end of the edge. */
|
|
4709
4503
|
node?: AppLimitCreditCodeItem | null;
|
|
4710
4504
|
}
|
|
4505
|
+
/** A `AppLimitWarning` edge in the connection. */
|
|
4506
|
+
export interface AppLimitWarningEdge {
|
|
4507
|
+
cursor?: string | null;
|
|
4508
|
+
/** The `AppLimitWarning` at the end of the edge. */
|
|
4509
|
+
node?: AppLimitWarning | null;
|
|
4510
|
+
}
|
|
4711
4511
|
/** A `AppLimitCredit` edge in the connection. */
|
|
4712
4512
|
export interface AppLimitCreditEdge {
|
|
4713
4513
|
cursor?: string | null;
|
|
4714
4514
|
/** The `AppLimitCredit` at the end of the edge. */
|
|
4715
4515
|
node?: AppLimitCredit | null;
|
|
4716
4516
|
}
|
|
4517
|
+
/** A `OrgLimitWarning` edge in the connection. */
|
|
4518
|
+
export interface OrgLimitWarningEdge {
|
|
4519
|
+
cursor?: string | null;
|
|
4520
|
+
/** The `OrgLimitWarning` at the end of the edge. */
|
|
4521
|
+
node?: OrgLimitWarning | null;
|
|
4522
|
+
}
|
|
4717
4523
|
/** A `OrgLimitCredit` edge in the connection. */
|
|
4718
4524
|
export interface OrgLimitCreditEdge {
|
|
4719
4525
|
cursor?: string | null;
|
|
@@ -4786,18 +4592,6 @@ export interface UsageSnapshotEdge {
|
|
|
4786
4592
|
/** The `UsageSnapshot` at the end of the edge. */
|
|
4787
4593
|
node?: UsageSnapshot | null;
|
|
4788
4594
|
}
|
|
4789
|
-
/** A `OrgMemberProfile` edge in the connection. */
|
|
4790
|
-
export interface OrgMemberProfileEdge {
|
|
4791
|
-
cursor?: string | null;
|
|
4792
|
-
/** The `OrgMemberProfile` at the end of the edge. */
|
|
4793
|
-
node?: OrgMemberProfile | null;
|
|
4794
|
-
}
|
|
4795
|
-
/** A `AppLevel` edge in the connection. */
|
|
4796
|
-
export interface AppLevelEdge {
|
|
4797
|
-
cursor?: string | null;
|
|
4798
|
-
/** The `AppLevel` at the end of the edge. */
|
|
4799
|
-
node?: AppLevel | null;
|
|
4800
|
-
}
|
|
4801
4595
|
/** A `AppLimit` edge in the connection. */
|
|
4802
4596
|
export interface AppLimitEdge {
|
|
4803
4597
|
cursor?: string | null;
|
|
@@ -4828,6 +4622,12 @@ export interface OrgLimitEdge {
|
|
|
4828
4622
|
/** The `OrgLimit` at the end of the edge. */
|
|
4829
4623
|
node?: OrgLimit | null;
|
|
4830
4624
|
}
|
|
4625
|
+
/** A `OrgMemberProfile` edge in the connection. */
|
|
4626
|
+
export interface OrgMemberProfileEdge {
|
|
4627
|
+
cursor?: string | null;
|
|
4628
|
+
/** The `OrgMemberProfile` at the end of the edge. */
|
|
4629
|
+
node?: OrgMemberProfile | null;
|
|
4630
|
+
}
|
|
4831
4631
|
/** A `AppMembership` edge in the connection. */
|
|
4832
4632
|
export interface AppMembershipEdge {
|
|
4833
4633
|
cursor?: string | null;
|