@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
|
@@ -31,13 +31,6 @@ export declare const orgPermissionKeys: {
|
|
|
31
31
|
/** Detail query keys */ readonly details: () => readonly ["orgpermission", "detail"];
|
|
32
32
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgpermission", "detail", string | number];
|
|
33
33
|
};
|
|
34
|
-
export declare const appLevelRequirementKeys: {
|
|
35
|
-
/** All appLevelRequirement queries */ readonly all: readonly ["applevelrequirement"];
|
|
36
|
-
/** List query keys */ readonly lists: () => readonly ["applevelrequirement", "list"];
|
|
37
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applevelrequirement", "list", object];
|
|
38
|
-
/** Detail query keys */ readonly details: () => readonly ["applevelrequirement", "detail"];
|
|
39
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applevelrequirement", "detail", string | number];
|
|
40
|
-
};
|
|
41
34
|
export declare const appLimitCreditRedemptionKeys: {
|
|
42
35
|
/** All appLimitCreditRedemption queries */ readonly all: readonly ["applimitcreditredemption"];
|
|
43
36
|
/** List query keys */ readonly lists: () => readonly ["applimitcreditredemption", "list"];
|
|
@@ -101,20 +94,6 @@ export declare const appOwnerGrantKeys: {
|
|
|
101
94
|
/** Detail query keys */ readonly details: () => readonly ["appownergrant", "detail"];
|
|
102
95
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appownergrant", "detail", string | number];
|
|
103
96
|
};
|
|
104
|
-
export declare const appAchievementKeys: {
|
|
105
|
-
/** All appAchievement queries */ readonly all: readonly ["appachievement"];
|
|
106
|
-
/** List query keys */ readonly lists: () => readonly ["appachievement", "list"];
|
|
107
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appachievement", "list", object];
|
|
108
|
-
/** Detail query keys */ readonly details: () => readonly ["appachievement", "detail"];
|
|
109
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appachievement", "detail", string | number];
|
|
110
|
-
};
|
|
111
|
-
export declare const appStepKeys: {
|
|
112
|
-
/** All appStep queries */ readonly all: readonly ["appstep"];
|
|
113
|
-
/** List query keys */ readonly lists: () => readonly ["appstep", "list"];
|
|
114
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appstep", "list", object];
|
|
115
|
-
/** Detail query keys */ readonly details: () => readonly ["appstep", "detail"];
|
|
116
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appstep", "detail", string | number];
|
|
117
|
-
};
|
|
118
97
|
export declare const appLimitCapsDefaultKeys: {
|
|
119
98
|
/** All appLimitCapsDefault queries */ readonly all: readonly ["applimitcapsdefault"];
|
|
120
99
|
/** List query keys */ readonly lists: () => readonly ["applimitcapsdefault", "list"];
|
|
@@ -185,6 +164,20 @@ export declare const orgLimitCreditKeys: {
|
|
|
185
164
|
/** Detail query keys */ readonly details: () => readonly ["orglimitcredit", "detail"];
|
|
186
165
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitcredit", "detail", string | number];
|
|
187
166
|
};
|
|
167
|
+
export declare const appLimitWarningKeys: {
|
|
168
|
+
/** All appLimitWarning queries */ readonly all: readonly ["applimitwarning"];
|
|
169
|
+
/** List query keys */ readonly lists: () => readonly ["applimitwarning", "list"];
|
|
170
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitwarning", "list", object];
|
|
171
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitwarning", "detail"];
|
|
172
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitwarning", "detail", string | number];
|
|
173
|
+
};
|
|
174
|
+
export declare const orgLimitWarningKeys: {
|
|
175
|
+
/** All orgLimitWarning queries */ readonly all: readonly ["orglimitwarning"];
|
|
176
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitwarning", "list"];
|
|
177
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitwarning", "list", object];
|
|
178
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitwarning", "detail"];
|
|
179
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitwarning", "detail", string | number];
|
|
180
|
+
};
|
|
188
181
|
export declare const orgChartEdgeGrantKeys: {
|
|
189
182
|
/** All orgChartEdgeGrant queries */ readonly all: readonly ["orgchartedgegrant"];
|
|
190
183
|
/** List query keys */ readonly lists: () => readonly ["orgchartedgegrant", "list"];
|
|
@@ -262,20 +255,6 @@ export declare const usageSnapshotKeys: {
|
|
|
262
255
|
/** Detail query keys */ readonly details: () => readonly ["usagesnapshot", "detail"];
|
|
263
256
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["usagesnapshot", "detail", string | number];
|
|
264
257
|
};
|
|
265
|
-
export declare const orgMemberProfileKeys: {
|
|
266
|
-
/** All orgMemberProfile queries */ readonly all: readonly ["orgmemberprofile"];
|
|
267
|
-
/** List query keys */ readonly lists: () => readonly ["orgmemberprofile", "list"];
|
|
268
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmemberprofile", "list", object];
|
|
269
|
-
/** Detail query keys */ readonly details: () => readonly ["orgmemberprofile", "detail"];
|
|
270
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmemberprofile", "detail", string | number];
|
|
271
|
-
};
|
|
272
|
-
export declare const appLevelKeys: {
|
|
273
|
-
/** All appLevel queries */ readonly all: readonly ["applevel"];
|
|
274
|
-
/** List query keys */ readonly lists: () => readonly ["applevel", "list"];
|
|
275
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applevel", "list", object];
|
|
276
|
-
/** Detail query keys */ readonly details: () => readonly ["applevel", "detail"];
|
|
277
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applevel", "detail", string | number];
|
|
278
|
-
};
|
|
279
258
|
export declare const appLimitKeys: {
|
|
280
259
|
/** All appLimit queries */ readonly all: readonly ["applimit"];
|
|
281
260
|
/** List query keys */ readonly lists: () => readonly ["applimit", "list"];
|
|
@@ -311,6 +290,13 @@ export declare const orgLimitKeys: {
|
|
|
311
290
|
/** Detail query keys */ readonly details: () => readonly ["orglimit", "detail"];
|
|
312
291
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimit", "detail", string | number];
|
|
313
292
|
};
|
|
293
|
+
export declare const orgMemberProfileKeys: {
|
|
294
|
+
/** All orgMemberProfile queries */ readonly all: readonly ["orgmemberprofile"];
|
|
295
|
+
/** List query keys */ readonly lists: () => readonly ["orgmemberprofile", "list"];
|
|
296
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmemberprofile", "list", object];
|
|
297
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmemberprofile", "detail"];
|
|
298
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmemberprofile", "detail", string | number];
|
|
299
|
+
};
|
|
314
300
|
export declare const appMembershipKeys: {
|
|
315
301
|
/** All appMembership queries */ readonly all: readonly ["appmembership"];
|
|
316
302
|
/** List query keys */ readonly lists: () => readonly ["appmembership", "list"];
|
|
@@ -338,12 +324,10 @@ export declare const customQueryKeys: {
|
|
|
338
324
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
339
325
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
340
326
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
341
|
-
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
342
327
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
343
328
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
344
329
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
345
330
|
/** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
|
|
346
|
-
/** Query key for stepsRequired */ readonly stepsRequired: (variables?: object) => readonly ["stepsRequired", object];
|
|
347
331
|
};
|
|
348
332
|
/**
|
|
349
333
|
|
|
@@ -396,13 +380,6 @@ export declare const queryKeys: {
|
|
|
396
380
|
/** Detail query keys */ readonly details: () => readonly ["orgpermission", "detail"];
|
|
397
381
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgpermission", "detail", string | number];
|
|
398
382
|
};
|
|
399
|
-
readonly appLevelRequirement: {
|
|
400
|
-
/** All appLevelRequirement queries */ readonly all: readonly ["applevelrequirement"];
|
|
401
|
-
/** List query keys */ readonly lists: () => readonly ["applevelrequirement", "list"];
|
|
402
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applevelrequirement", "list", object];
|
|
403
|
-
/** Detail query keys */ readonly details: () => readonly ["applevelrequirement", "detail"];
|
|
404
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applevelrequirement", "detail", string | number];
|
|
405
|
-
};
|
|
406
383
|
readonly appLimitCreditRedemption: {
|
|
407
384
|
/** All appLimitCreditRedemption queries */ readonly all: readonly ["applimitcreditredemption"];
|
|
408
385
|
/** List query keys */ readonly lists: () => readonly ["applimitcreditredemption", "list"];
|
|
@@ -466,20 +443,6 @@ export declare const queryKeys: {
|
|
|
466
443
|
/** Detail query keys */ readonly details: () => readonly ["appownergrant", "detail"];
|
|
467
444
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appownergrant", "detail", string | number];
|
|
468
445
|
};
|
|
469
|
-
readonly appAchievement: {
|
|
470
|
-
/** All appAchievement queries */ readonly all: readonly ["appachievement"];
|
|
471
|
-
/** List query keys */ readonly lists: () => readonly ["appachievement", "list"];
|
|
472
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appachievement", "list", object];
|
|
473
|
-
/** Detail query keys */ readonly details: () => readonly ["appachievement", "detail"];
|
|
474
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appachievement", "detail", string | number];
|
|
475
|
-
};
|
|
476
|
-
readonly appStep: {
|
|
477
|
-
/** All appStep queries */ readonly all: readonly ["appstep"];
|
|
478
|
-
/** List query keys */ readonly lists: () => readonly ["appstep", "list"];
|
|
479
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appstep", "list", object];
|
|
480
|
-
/** Detail query keys */ readonly details: () => readonly ["appstep", "detail"];
|
|
481
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appstep", "detail", string | number];
|
|
482
|
-
};
|
|
483
446
|
readonly appLimitCapsDefault: {
|
|
484
447
|
/** All appLimitCapsDefault queries */ readonly all: readonly ["applimitcapsdefault"];
|
|
485
448
|
/** List query keys */ readonly lists: () => readonly ["applimitcapsdefault", "list"];
|
|
@@ -550,6 +513,20 @@ export declare const queryKeys: {
|
|
|
550
513
|
/** Detail query keys */ readonly details: () => readonly ["orglimitcredit", "detail"];
|
|
551
514
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitcredit", "detail", string | number];
|
|
552
515
|
};
|
|
516
|
+
readonly appLimitWarning: {
|
|
517
|
+
/** All appLimitWarning queries */ readonly all: readonly ["applimitwarning"];
|
|
518
|
+
/** List query keys */ readonly lists: () => readonly ["applimitwarning", "list"];
|
|
519
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitwarning", "list", object];
|
|
520
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitwarning", "detail"];
|
|
521
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitwarning", "detail", string | number];
|
|
522
|
+
};
|
|
523
|
+
readonly orgLimitWarning: {
|
|
524
|
+
/** All orgLimitWarning queries */ readonly all: readonly ["orglimitwarning"];
|
|
525
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitwarning", "list"];
|
|
526
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitwarning", "list", object];
|
|
527
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitwarning", "detail"];
|
|
528
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitwarning", "detail", string | number];
|
|
529
|
+
};
|
|
553
530
|
readonly orgChartEdgeGrant: {
|
|
554
531
|
/** All orgChartEdgeGrant queries */ readonly all: readonly ["orgchartedgegrant"];
|
|
555
532
|
/** List query keys */ readonly lists: () => readonly ["orgchartedgegrant", "list"];
|
|
@@ -627,20 +604,6 @@ export declare const queryKeys: {
|
|
|
627
604
|
/** Detail query keys */ readonly details: () => readonly ["usagesnapshot", "detail"];
|
|
628
605
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["usagesnapshot", "detail", string | number];
|
|
629
606
|
};
|
|
630
|
-
readonly orgMemberProfile: {
|
|
631
|
-
/** All orgMemberProfile queries */ readonly all: readonly ["orgmemberprofile"];
|
|
632
|
-
/** List query keys */ readonly lists: () => readonly ["orgmemberprofile", "list"];
|
|
633
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmemberprofile", "list", object];
|
|
634
|
-
/** Detail query keys */ readonly details: () => readonly ["orgmemberprofile", "detail"];
|
|
635
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmemberprofile", "detail", string | number];
|
|
636
|
-
};
|
|
637
|
-
readonly appLevel: {
|
|
638
|
-
/** All appLevel queries */ readonly all: readonly ["applevel"];
|
|
639
|
-
/** List query keys */ readonly lists: () => readonly ["applevel", "list"];
|
|
640
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applevel", "list", object];
|
|
641
|
-
/** Detail query keys */ readonly details: () => readonly ["applevel", "detail"];
|
|
642
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applevel", "detail", string | number];
|
|
643
|
-
};
|
|
644
607
|
readonly appLimit: {
|
|
645
608
|
/** All appLimit queries */ readonly all: readonly ["applimit"];
|
|
646
609
|
/** List query keys */ readonly lists: () => readonly ["applimit", "list"];
|
|
@@ -676,6 +639,13 @@ export declare const queryKeys: {
|
|
|
676
639
|
/** Detail query keys */ readonly details: () => readonly ["orglimit", "detail"];
|
|
677
640
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimit", "detail", string | number];
|
|
678
641
|
};
|
|
642
|
+
readonly orgMemberProfile: {
|
|
643
|
+
/** All orgMemberProfile queries */ readonly all: readonly ["orgmemberprofile"];
|
|
644
|
+
/** List query keys */ readonly lists: () => readonly ["orgmemberprofile", "list"];
|
|
645
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmemberprofile", "list", object];
|
|
646
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmemberprofile", "detail"];
|
|
647
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmemberprofile", "detail", string | number];
|
|
648
|
+
};
|
|
679
649
|
readonly appMembership: {
|
|
680
650
|
/** All appMembership queries */ readonly all: readonly ["appmembership"];
|
|
681
651
|
/** List query keys */ readonly lists: () => readonly ["appmembership", "list"];
|
|
@@ -703,12 +673,10 @@ export declare const queryKeys: {
|
|
|
703
673
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
704
674
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
705
675
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
706
|
-
/** Query key for stepsAchieved */ readonly stepsAchieved: (variables?: object) => readonly ["stepsAchieved", object];
|
|
707
676
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
708
677
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
709
678
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
710
679
|
/** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
|
|
711
|
-
/** Query key for stepsRequired */ readonly stepsRequired: (variables?: object) => readonly ["stepsRequired", object];
|
|
712
680
|
};
|
|
713
681
|
};
|
|
714
682
|
/** Type representing all available query key scopes */
|
|
@@ -44,13 +44,6 @@ export const orgPermissionKeys = {
|
|
|
44
44
|
/** Detail query keys */ details: () => [...orgPermissionKeys.all, 'detail'],
|
|
45
45
|
/** Detail query key for specific item */ detail: (id) => [...orgPermissionKeys.details(), id],
|
|
46
46
|
};
|
|
47
|
-
export const appLevelRequirementKeys = {
|
|
48
|
-
/** All appLevelRequirement queries */ all: ['applevelrequirement'],
|
|
49
|
-
/** List query keys */ lists: () => [...appLevelRequirementKeys.all, 'list'],
|
|
50
|
-
/** List query key with variables */ list: (variables) => [...appLevelRequirementKeys.lists(), variables],
|
|
51
|
-
/** Detail query keys */ details: () => [...appLevelRequirementKeys.all, 'detail'],
|
|
52
|
-
/** Detail query key for specific item */ detail: (id) => [...appLevelRequirementKeys.details(), id],
|
|
53
|
-
};
|
|
54
47
|
export const appLimitCreditRedemptionKeys = {
|
|
55
48
|
/** All appLimitCreditRedemption queries */ all: ['applimitcreditredemption'],
|
|
56
49
|
/** List query keys */ lists: () => [...appLimitCreditRedemptionKeys.all, 'list'],
|
|
@@ -114,20 +107,6 @@ export const appOwnerGrantKeys = {
|
|
|
114
107
|
/** Detail query keys */ details: () => [...appOwnerGrantKeys.all, 'detail'],
|
|
115
108
|
/** Detail query key for specific item */ detail: (id) => [...appOwnerGrantKeys.details(), id],
|
|
116
109
|
};
|
|
117
|
-
export const appAchievementKeys = {
|
|
118
|
-
/** All appAchievement queries */ all: ['appachievement'],
|
|
119
|
-
/** List query keys */ lists: () => [...appAchievementKeys.all, 'list'],
|
|
120
|
-
/** List query key with variables */ list: (variables) => [...appAchievementKeys.lists(), variables],
|
|
121
|
-
/** Detail query keys */ details: () => [...appAchievementKeys.all, 'detail'],
|
|
122
|
-
/** Detail query key for specific item */ detail: (id) => [...appAchievementKeys.details(), id],
|
|
123
|
-
};
|
|
124
|
-
export const appStepKeys = {
|
|
125
|
-
/** All appStep queries */ all: ['appstep'],
|
|
126
|
-
/** List query keys */ lists: () => [...appStepKeys.all, 'list'],
|
|
127
|
-
/** List query key with variables */ list: (variables) => [...appStepKeys.lists(), variables],
|
|
128
|
-
/** Detail query keys */ details: () => [...appStepKeys.all, 'detail'],
|
|
129
|
-
/** Detail query key for specific item */ detail: (id) => [...appStepKeys.details(), id],
|
|
130
|
-
};
|
|
131
110
|
export const appLimitCapsDefaultKeys = {
|
|
132
111
|
/** All appLimitCapsDefault queries */ all: ['applimitcapsdefault'],
|
|
133
112
|
/** List query keys */ lists: () => [...appLimitCapsDefaultKeys.all, 'list'],
|
|
@@ -198,6 +177,20 @@ export const orgLimitCreditKeys = {
|
|
|
198
177
|
/** Detail query keys */ details: () => [...orgLimitCreditKeys.all, 'detail'],
|
|
199
178
|
/** Detail query key for specific item */ detail: (id) => [...orgLimitCreditKeys.details(), id],
|
|
200
179
|
};
|
|
180
|
+
export const appLimitWarningKeys = {
|
|
181
|
+
/** All appLimitWarning queries */ all: ['applimitwarning'],
|
|
182
|
+
/** List query keys */ lists: () => [...appLimitWarningKeys.all, 'list'],
|
|
183
|
+
/** List query key with variables */ list: (variables) => [...appLimitWarningKeys.lists(), variables],
|
|
184
|
+
/** Detail query keys */ details: () => [...appLimitWarningKeys.all, 'detail'],
|
|
185
|
+
/** Detail query key for specific item */ detail: (id) => [...appLimitWarningKeys.details(), id],
|
|
186
|
+
};
|
|
187
|
+
export const orgLimitWarningKeys = {
|
|
188
|
+
/** All orgLimitWarning queries */ all: ['orglimitwarning'],
|
|
189
|
+
/** List query keys */ lists: () => [...orgLimitWarningKeys.all, 'list'],
|
|
190
|
+
/** List query key with variables */ list: (variables) => [...orgLimitWarningKeys.lists(), variables],
|
|
191
|
+
/** Detail query keys */ details: () => [...orgLimitWarningKeys.all, 'detail'],
|
|
192
|
+
/** Detail query key for specific item */ detail: (id) => [...orgLimitWarningKeys.details(), id],
|
|
193
|
+
};
|
|
201
194
|
export const orgChartEdgeGrantKeys = {
|
|
202
195
|
/** All orgChartEdgeGrant queries */ all: ['orgchartedgegrant'],
|
|
203
196
|
/** List query keys */ lists: () => [...orgChartEdgeGrantKeys.all, 'list'],
|
|
@@ -275,20 +268,6 @@ export const usageSnapshotKeys = {
|
|
|
275
268
|
/** Detail query keys */ details: () => [...usageSnapshotKeys.all, 'detail'],
|
|
276
269
|
/** Detail query key for specific item */ detail: (id) => [...usageSnapshotKeys.details(), id],
|
|
277
270
|
};
|
|
278
|
-
export const orgMemberProfileKeys = {
|
|
279
|
-
/** All orgMemberProfile queries */ all: ['orgmemberprofile'],
|
|
280
|
-
/** List query keys */ lists: () => [...orgMemberProfileKeys.all, 'list'],
|
|
281
|
-
/** List query key with variables */ list: (variables) => [...orgMemberProfileKeys.lists(), variables],
|
|
282
|
-
/** Detail query keys */ details: () => [...orgMemberProfileKeys.all, 'detail'],
|
|
283
|
-
/** Detail query key for specific item */ detail: (id) => [...orgMemberProfileKeys.details(), id],
|
|
284
|
-
};
|
|
285
|
-
export const appLevelKeys = {
|
|
286
|
-
/** All appLevel queries */ all: ['applevel'],
|
|
287
|
-
/** List query keys */ lists: () => [...appLevelKeys.all, 'list'],
|
|
288
|
-
/** List query key with variables */ list: (variables) => [...appLevelKeys.lists(), variables],
|
|
289
|
-
/** Detail query keys */ details: () => [...appLevelKeys.all, 'detail'],
|
|
290
|
-
/** Detail query key for specific item */ detail: (id) => [...appLevelKeys.details(), id],
|
|
291
|
-
};
|
|
292
271
|
export const appLimitKeys = {
|
|
293
272
|
/** All appLimit queries */ all: ['applimit'],
|
|
294
273
|
/** List query keys */ lists: () => [...appLimitKeys.all, 'list'],
|
|
@@ -324,6 +303,13 @@ export const orgLimitKeys = {
|
|
|
324
303
|
/** Detail query keys */ details: () => [...orgLimitKeys.all, 'detail'],
|
|
325
304
|
/** Detail query key for specific item */ detail: (id) => [...orgLimitKeys.details(), id],
|
|
326
305
|
};
|
|
306
|
+
export const orgMemberProfileKeys = {
|
|
307
|
+
/** All orgMemberProfile queries */ all: ['orgmemberprofile'],
|
|
308
|
+
/** List query keys */ lists: () => [...orgMemberProfileKeys.all, 'list'],
|
|
309
|
+
/** List query key with variables */ list: (variables) => [...orgMemberProfileKeys.lists(), variables],
|
|
310
|
+
/** Detail query keys */ details: () => [...orgMemberProfileKeys.all, 'detail'],
|
|
311
|
+
/** Detail query key for specific item */ detail: (id) => [...orgMemberProfileKeys.details(), id],
|
|
312
|
+
};
|
|
327
313
|
export const appMembershipKeys = {
|
|
328
314
|
/** All appMembership queries */ all: ['appmembership'],
|
|
329
315
|
/** List query keys */ lists: () => [...appMembershipKeys.all, 'list'],
|
|
@@ -354,12 +340,10 @@ export const customQueryKeys = {
|
|
|
354
340
|
/** Query key for orgIsManagerOf */ orgIsManagerOf: (variables) => ['orgIsManagerOf', variables],
|
|
355
341
|
/** Query key for appPermissionsGetMask */ appPermissionsGetMask: (variables) => ['appPermissionsGetMask', variables],
|
|
356
342
|
/** Query key for orgPermissionsGetMask */ orgPermissionsGetMask: (variables) => ['orgPermissionsGetMask', variables],
|
|
357
|
-
/** Query key for stepsAchieved */ stepsAchieved: (variables) => ['stepsAchieved', variables],
|
|
358
343
|
/** Query key for appPermissionsGetMaskByNames */ appPermissionsGetMaskByNames: (variables) => ['appPermissionsGetMaskByNames', variables],
|
|
359
344
|
/** Query key for orgPermissionsGetMaskByNames */ orgPermissionsGetMaskByNames: (variables) => ['orgPermissionsGetMaskByNames', variables],
|
|
360
345
|
/** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
|
|
361
346
|
/** Query key for orgPermissionsGetByMask */ orgPermissionsGetByMask: (variables) => ['orgPermissionsGetByMask', variables],
|
|
362
|
-
/** Query key for stepsRequired */ stepsRequired: (variables) => ['stepsRequired', variables],
|
|
363
347
|
};
|
|
364
348
|
/**
|
|
365
349
|
|
|
@@ -388,7 +372,6 @@ export const queryKeys = {
|
|
|
388
372
|
orgGetSubordinatesRecord: orgGetSubordinatesRecordKeys,
|
|
389
373
|
appPermission: appPermissionKeys,
|
|
390
374
|
orgPermission: orgPermissionKeys,
|
|
391
|
-
appLevelRequirement: appLevelRequirementKeys,
|
|
392
375
|
appLimitCreditRedemption: appLimitCreditRedemptionKeys,
|
|
393
376
|
appLimitCreditCodeItem: appLimitCreditCodeItemKeys,
|
|
394
377
|
appLimitCredit: appLimitCreditKeys,
|
|
@@ -398,8 +381,6 @@ export const queryKeys = {
|
|
|
398
381
|
orgPermissionDefault: orgPermissionDefaultKeys,
|
|
399
382
|
appAdminGrant: appAdminGrantKeys,
|
|
400
383
|
appOwnerGrant: appOwnerGrantKeys,
|
|
401
|
-
appAchievement: appAchievementKeys,
|
|
402
|
-
appStep: appStepKeys,
|
|
403
384
|
appLimitCapsDefault: appLimitCapsDefaultKeys,
|
|
404
385
|
orgLimitCapsDefault: orgLimitCapsDefaultKeys,
|
|
405
386
|
appLimitCap: appLimitCapKeys,
|
|
@@ -410,6 +391,8 @@ export const queryKeys = {
|
|
|
410
391
|
appLimitDefault: appLimitDefaultKeys,
|
|
411
392
|
orgLimitDefault: orgLimitDefaultKeys,
|
|
412
393
|
orgLimitCredit: orgLimitCreditKeys,
|
|
394
|
+
appLimitWarning: appLimitWarningKeys,
|
|
395
|
+
orgLimitWarning: orgLimitWarningKeys,
|
|
413
396
|
orgChartEdgeGrant: orgChartEdgeGrantKeys,
|
|
414
397
|
appClaimedInvite: appClaimedInviteKeys,
|
|
415
398
|
appGrant: appGrantKeys,
|
|
@@ -421,13 +404,12 @@ export const queryKeys = {
|
|
|
421
404
|
orgGrant: orgGrantKeys,
|
|
422
405
|
orgChartEdge: orgChartEdgeKeys,
|
|
423
406
|
usageSnapshot: usageSnapshotKeys,
|
|
424
|
-
orgMemberProfile: orgMemberProfileKeys,
|
|
425
|
-
appLevel: appLevelKeys,
|
|
426
407
|
appLimit: appLimitKeys,
|
|
427
408
|
appInvite: appInviteKeys,
|
|
428
409
|
orgMembershipSetting: orgMembershipSettingKeys,
|
|
429
410
|
orgLimitAggregate: orgLimitAggregateKeys,
|
|
430
411
|
orgLimit: orgLimitKeys,
|
|
412
|
+
orgMemberProfile: orgMemberProfileKeys,
|
|
431
413
|
appMembership: appMembershipKeys,
|
|
432
414
|
orgInvite: orgInviteKeys,
|
|
433
415
|
orgMembership: orgMembershipKeys,
|
package/esm/admin/orm/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
|
3
3
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
4
4
|
import { AppPermissionModel } from './models/appPermission';
|
|
5
5
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
6
|
-
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
7
6
|
import { AppLimitCreditRedemptionModel } from './models/appLimitCreditRedemption';
|
|
8
7
|
import { AppLimitCreditCodeItemModel } from './models/appLimitCreditCodeItem';
|
|
9
8
|
import { AppLimitCreditModel } from './models/appLimitCredit';
|
|
@@ -13,8 +12,6 @@ import { AppLimitCreditCodeModel } from './models/appLimitCreditCode';
|
|
|
13
12
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
14
13
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
15
14
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
16
|
-
import { AppAchievementModel } from './models/appAchievement';
|
|
17
|
-
import { AppStepModel } from './models/appStep';
|
|
18
15
|
import { AppLimitCapsDefaultModel } from './models/appLimitCapsDefault';
|
|
19
16
|
import { OrgLimitCapsDefaultModel } from './models/orgLimitCapsDefault';
|
|
20
17
|
import { AppLimitCapModel } from './models/appLimitCap';
|
|
@@ -25,6 +22,8 @@ import { MembershipTypeModel } from './models/membershipType';
|
|
|
25
22
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
26
23
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
27
24
|
import { OrgLimitCreditModel } from './models/orgLimitCredit';
|
|
25
|
+
import { AppLimitWarningModel } from './models/appLimitWarning';
|
|
26
|
+
import { OrgLimitWarningModel } from './models/orgLimitWarning';
|
|
28
27
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
29
28
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
30
29
|
import { AppGrantModel } from './models/appGrant';
|
|
@@ -36,13 +35,12 @@ import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
|
36
35
|
import { OrgGrantModel } from './models/orgGrant';
|
|
37
36
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
38
37
|
import { UsageSnapshotModel } from './models/usageSnapshot';
|
|
39
|
-
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
40
|
-
import { AppLevelModel } from './models/appLevel';
|
|
41
38
|
import { AppLimitModel } from './models/appLimit';
|
|
42
39
|
import { AppInviteModel } from './models/appInvite';
|
|
43
40
|
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
44
41
|
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
45
42
|
import { OrgLimitModel } from './models/orgLimit';
|
|
43
|
+
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
46
44
|
import { AppMembershipModel } from './models/appMembership';
|
|
47
45
|
import { OrgInviteModel } from './models/orgInvite';
|
|
48
46
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
@@ -81,7 +79,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
81
79
|
orgGetSubordinatesRecord: OrgGetSubordinatesRecordModel;
|
|
82
80
|
appPermission: AppPermissionModel;
|
|
83
81
|
orgPermission: OrgPermissionModel;
|
|
84
|
-
appLevelRequirement: AppLevelRequirementModel;
|
|
85
82
|
appLimitCreditRedemption: AppLimitCreditRedemptionModel;
|
|
86
83
|
appLimitCreditCodeItem: AppLimitCreditCodeItemModel;
|
|
87
84
|
appLimitCredit: AppLimitCreditModel;
|
|
@@ -91,8 +88,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
91
88
|
orgPermissionDefault: OrgPermissionDefaultModel;
|
|
92
89
|
appAdminGrant: AppAdminGrantModel;
|
|
93
90
|
appOwnerGrant: AppOwnerGrantModel;
|
|
94
|
-
appAchievement: AppAchievementModel;
|
|
95
|
-
appStep: AppStepModel;
|
|
96
91
|
appLimitCapsDefault: AppLimitCapsDefaultModel;
|
|
97
92
|
orgLimitCapsDefault: OrgLimitCapsDefaultModel;
|
|
98
93
|
appLimitCap: AppLimitCapModel;
|
|
@@ -103,6 +98,8 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
103
98
|
appLimitDefault: AppLimitDefaultModel;
|
|
104
99
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
105
100
|
orgLimitCredit: OrgLimitCreditModel;
|
|
101
|
+
appLimitWarning: AppLimitWarningModel;
|
|
102
|
+
orgLimitWarning: OrgLimitWarningModel;
|
|
106
103
|
orgChartEdgeGrant: OrgChartEdgeGrantModel;
|
|
107
104
|
appClaimedInvite: AppClaimedInviteModel;
|
|
108
105
|
appGrant: AppGrantModel;
|
|
@@ -114,13 +111,12 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
114
111
|
orgGrant: OrgGrantModel;
|
|
115
112
|
orgChartEdge: OrgChartEdgeModel;
|
|
116
113
|
usageSnapshot: UsageSnapshotModel;
|
|
117
|
-
orgMemberProfile: OrgMemberProfileModel;
|
|
118
|
-
appLevel: AppLevelModel;
|
|
119
114
|
appLimit: AppLimitModel;
|
|
120
115
|
appInvite: AppInviteModel;
|
|
121
116
|
orgMembershipSetting: OrgMembershipSettingModel;
|
|
122
117
|
orgLimitAggregate: OrgLimitAggregateModel;
|
|
123
118
|
orgLimit: OrgLimitModel;
|
|
119
|
+
orgMemberProfile: OrgMemberProfileModel;
|
|
124
120
|
appMembership: AppMembershipModel;
|
|
125
121
|
orgInvite: OrgInviteModel;
|
|
126
122
|
orgMembership: OrgMembershipModel;
|
|
@@ -150,11 +146,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
150
146
|
}) => import("./query-builder").QueryBuilder<{
|
|
151
147
|
orgPermissionsGetMask: string | null;
|
|
152
148
|
}>;
|
|
153
|
-
stepsAchieved: (args: import("./query").StepsAchievedVariables, options?: {
|
|
154
|
-
select?: Record<string, unknown>;
|
|
155
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
156
|
-
stepsAchieved: boolean | null;
|
|
157
|
-
}>;
|
|
158
149
|
appPermissionsGetMaskByNames: (args: import("./query").AppPermissionsGetMaskByNamesVariables, options?: {
|
|
159
150
|
select?: Record<string, unknown>;
|
|
160
151
|
}) => import("./query-builder").QueryBuilder<{
|
|
@@ -175,11 +166,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
175
166
|
}) => import("./query-builder").QueryBuilder<{
|
|
176
167
|
orgPermissionsGetByMask: import("./input-types").OrgPermissionConnection | null;
|
|
177
168
|
}>;
|
|
178
|
-
stepsRequired: (args: import("./query").StepsRequiredVariables, options?: {
|
|
179
|
-
select?: Record<string, unknown>;
|
|
180
|
-
}) => import("./query-builder").QueryBuilder<{
|
|
181
|
-
stepsRequired: import("./input-types").AppLevelRequirementConnection | null;
|
|
182
|
-
}>;
|
|
183
169
|
};
|
|
184
170
|
mutation: {
|
|
185
171
|
submitAppInviteCode: <S extends import("./input-types").SubmitAppInviteCodePayloadSelect>(args: import("./mutation").SubmitAppInviteCodeVariables, options: {
|
package/esm/admin/orm/index.js
CHANGED
|
@@ -8,7 +8,6 @@ import { OrgGetManagersRecordModel } from './models/orgGetManagersRecord';
|
|
|
8
8
|
import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord';
|
|
9
9
|
import { AppPermissionModel } from './models/appPermission';
|
|
10
10
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
11
|
-
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
12
11
|
import { AppLimitCreditRedemptionModel } from './models/appLimitCreditRedemption';
|
|
13
12
|
import { AppLimitCreditCodeItemModel } from './models/appLimitCreditCodeItem';
|
|
14
13
|
import { AppLimitCreditModel } from './models/appLimitCredit';
|
|
@@ -18,8 +17,6 @@ import { AppLimitCreditCodeModel } from './models/appLimitCreditCode';
|
|
|
18
17
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
19
18
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
20
19
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
21
|
-
import { AppAchievementModel } from './models/appAchievement';
|
|
22
|
-
import { AppStepModel } from './models/appStep';
|
|
23
20
|
import { AppLimitCapsDefaultModel } from './models/appLimitCapsDefault';
|
|
24
21
|
import { OrgLimitCapsDefaultModel } from './models/orgLimitCapsDefault';
|
|
25
22
|
import { AppLimitCapModel } from './models/appLimitCap';
|
|
@@ -30,6 +27,8 @@ import { MembershipTypeModel } from './models/membershipType';
|
|
|
30
27
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
31
28
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
32
29
|
import { OrgLimitCreditModel } from './models/orgLimitCredit';
|
|
30
|
+
import { AppLimitWarningModel } from './models/appLimitWarning';
|
|
31
|
+
import { OrgLimitWarningModel } from './models/orgLimitWarning';
|
|
33
32
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
34
33
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
35
34
|
import { AppGrantModel } from './models/appGrant';
|
|
@@ -41,13 +40,12 @@ import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
|
41
40
|
import { OrgGrantModel } from './models/orgGrant';
|
|
42
41
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
43
42
|
import { UsageSnapshotModel } from './models/usageSnapshot';
|
|
44
|
-
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
45
|
-
import { AppLevelModel } from './models/appLevel';
|
|
46
43
|
import { AppLimitModel } from './models/appLimit';
|
|
47
44
|
import { AppInviteModel } from './models/appInvite';
|
|
48
45
|
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
49
46
|
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
50
47
|
import { OrgLimitModel } from './models/orgLimit';
|
|
48
|
+
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
51
49
|
import { AppMembershipModel } from './models/appMembership';
|
|
52
50
|
import { OrgInviteModel } from './models/orgInvite';
|
|
53
51
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
@@ -89,7 +87,6 @@ export function createClient(config) {
|
|
|
89
87
|
orgGetSubordinatesRecord: new OrgGetSubordinatesRecordModel(client),
|
|
90
88
|
appPermission: new AppPermissionModel(client),
|
|
91
89
|
orgPermission: new OrgPermissionModel(client),
|
|
92
|
-
appLevelRequirement: new AppLevelRequirementModel(client),
|
|
93
90
|
appLimitCreditRedemption: new AppLimitCreditRedemptionModel(client),
|
|
94
91
|
appLimitCreditCodeItem: new AppLimitCreditCodeItemModel(client),
|
|
95
92
|
appLimitCredit: new AppLimitCreditModel(client),
|
|
@@ -99,8 +96,6 @@ export function createClient(config) {
|
|
|
99
96
|
orgPermissionDefault: new OrgPermissionDefaultModel(client),
|
|
100
97
|
appAdminGrant: new AppAdminGrantModel(client),
|
|
101
98
|
appOwnerGrant: new AppOwnerGrantModel(client),
|
|
102
|
-
appAchievement: new AppAchievementModel(client),
|
|
103
|
-
appStep: new AppStepModel(client),
|
|
104
99
|
appLimitCapsDefault: new AppLimitCapsDefaultModel(client),
|
|
105
100
|
orgLimitCapsDefault: new OrgLimitCapsDefaultModel(client),
|
|
106
101
|
appLimitCap: new AppLimitCapModel(client),
|
|
@@ -111,6 +106,8 @@ export function createClient(config) {
|
|
|
111
106
|
appLimitDefault: new AppLimitDefaultModel(client),
|
|
112
107
|
orgLimitDefault: new OrgLimitDefaultModel(client),
|
|
113
108
|
orgLimitCredit: new OrgLimitCreditModel(client),
|
|
109
|
+
appLimitWarning: new AppLimitWarningModel(client),
|
|
110
|
+
orgLimitWarning: new OrgLimitWarningModel(client),
|
|
114
111
|
orgChartEdgeGrant: new OrgChartEdgeGrantModel(client),
|
|
115
112
|
appClaimedInvite: new AppClaimedInviteModel(client),
|
|
116
113
|
appGrant: new AppGrantModel(client),
|
|
@@ -122,13 +119,12 @@ export function createClient(config) {
|
|
|
122
119
|
orgGrant: new OrgGrantModel(client),
|
|
123
120
|
orgChartEdge: new OrgChartEdgeModel(client),
|
|
124
121
|
usageSnapshot: new UsageSnapshotModel(client),
|
|
125
|
-
orgMemberProfile: new OrgMemberProfileModel(client),
|
|
126
|
-
appLevel: new AppLevelModel(client),
|
|
127
122
|
appLimit: new AppLimitModel(client),
|
|
128
123
|
appInvite: new AppInviteModel(client),
|
|
129
124
|
orgMembershipSetting: new OrgMembershipSettingModel(client),
|
|
130
125
|
orgLimitAggregate: new OrgLimitAggregateModel(client),
|
|
131
126
|
orgLimit: new OrgLimitModel(client),
|
|
127
|
+
orgMemberProfile: new OrgMemberProfileModel(client),
|
|
132
128
|
appMembership: new AppMembershipModel(client),
|
|
133
129
|
orgInvite: new OrgInviteModel(client),
|
|
134
130
|
orgMembership: new OrgMembershipModel(client),
|