@adminide-stack/core 0.0.2-0.0.16-6.0 → 0.0.2-alpha.0

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.
Files changed (285) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +2 -2
  3. package/lib/constants/billing-plan.d.ts +1 -0
  4. package/lib/constants/billing-plan.js +5 -0
  5. package/lib/constants/billing-plan.js.map +1 -0
  6. package/lib/constants/configuration.d.ts +6 -0
  7. package/lib/constants/configuration.js +10 -0
  8. package/lib/constants/configuration.js.map +1 -0
  9. package/lib/constants/constants.d.ts +0 -41
  10. package/lib/constants/constants.js +6 -0
  11. package/lib/constants/constants.js.map +1 -0
  12. package/lib/constants/default-workspace-config.js +7 -0
  13. package/lib/constants/default-workspace-config.js.map +1 -0
  14. package/lib/constants/index.d.ts +5 -0
  15. package/lib/constants/index.js +24 -0
  16. package/lib/constants/index.js.map +1 -0
  17. package/lib/constants/routes.d.ts +4 -0
  18. package/lib/constants/routes.js +10 -0
  19. package/lib/constants/routes.js.map +1 -0
  20. package/lib/constants/types.d.ts +19 -0
  21. package/lib/constants/types.js +23 -0
  22. package/lib/constants/types.js.map +1 -0
  23. package/lib/constants/urls.d.ts +3 -0
  24. package/lib/constants/urls.js +7 -0
  25. package/lib/constants/urls.js.map +1 -0
  26. package/lib/core/configurations/configuration.d.ts +64 -0
  27. package/lib/core/configurations/configuration.js +236 -0
  28. package/lib/core/configurations/configuration.js.map +1 -0
  29. package/lib/core/configurations/events/abstract-configuration-change-event.d.ts +6 -0
  30. package/lib/core/configurations/events/abstract-configuration-change-event.js +27 -0
  31. package/lib/core/configurations/events/abstract-configuration-change-event.js.map +1 -0
  32. package/lib/core/configurations/events/all-keys-configuration-change-event.d.ts +17 -0
  33. package/lib/core/configurations/events/all-keys-configuration-change-event.js +33 -0
  34. package/lib/core/configurations/events/all-keys-configuration-change-event.js.map +1 -0
  35. package/lib/core/configurations/events/configuration-change-event.d.ts +24 -0
  36. package/lib/core/configurations/events/configuration-change-event.js +84 -0
  37. package/lib/core/configurations/events/configuration-change-event.js.map +1 -0
  38. package/lib/core/configurations/events/index.d.ts +4 -0
  39. package/lib/core/configurations/events/index.js +21 -0
  40. package/lib/core/configurations/events/index.js.map +1 -0
  41. package/lib/core/configurations/events/organization-configuration-change-event.d.ts +15 -0
  42. package/lib/core/configurations/events/organization-configuration-change-event.js +39 -0
  43. package/lib/core/configurations/events/organization-configuration-change-event.js.map +1 -0
  44. package/lib/core/configurations/helpers/configuration.d.ts +26 -0
  45. package/lib/core/configurations/helpers/configuration.js +203 -0
  46. package/lib/core/configurations/helpers/configuration.js.map +1 -0
  47. package/lib/core/configurations/helpers/index.d.ts +1 -0
  48. package/lib/core/configurations/helpers/index.js +18 -0
  49. package/lib/core/configurations/helpers/index.js.map +1 -0
  50. package/lib/core/configurations/index.d.ts +4 -0
  51. package/lib/core/configurations/index.js +21 -0
  52. package/lib/core/configurations/index.js.map +1 -0
  53. package/lib/core/configurations/models/configuration-model.d.ts +24 -0
  54. package/lib/core/configurations/models/configuration-model.js +143 -0
  55. package/lib/core/configurations/models/configuration-model.js.map +1 -0
  56. package/lib/core/configurations/models/index.d.ts +1 -0
  57. package/lib/core/configurations/models/index.js +18 -0
  58. package/lib/core/configurations/models/index.js.map +1 -0
  59. package/lib/core/disposable.d.ts +28 -0
  60. package/lib/core/disposable.js +82 -0
  61. package/lib/core/disposable.js.map +1 -0
  62. package/lib/core/event.d.ts +76 -0
  63. package/lib/core/event.js +249 -0
  64. package/lib/core/event.js.map +1 -0
  65. package/lib/core/event.test.d.ts +1 -0
  66. package/lib/core/event.test.js +15 -0
  67. package/lib/core/event.test.js.map +1 -0
  68. package/lib/core/index.d.ts +6 -0
  69. package/lib/core/index.js +23 -0
  70. package/lib/core/index.js.map +1 -0
  71. package/lib/core/organization/configuration.d.ts +31 -0
  72. package/lib/core/organization/configuration.js +87 -0
  73. package/lib/core/organization/configuration.js.map +1 -0
  74. package/lib/core/organization/helpers/index.d.ts +1 -0
  75. package/lib/core/organization/helpers/index.js +18 -0
  76. package/lib/core/organization/helpers/index.js.map +1 -0
  77. package/lib/core/organization/helpers/organization-helpers.d.ts +6 -0
  78. package/lib/core/organization/helpers/organization-helpers.js +34 -0
  79. package/lib/core/organization/helpers/organization-helpers.js.map +1 -0
  80. package/lib/core/organization/index.d.ts +3 -0
  81. package/lib/core/organization/index.js +20 -0
  82. package/lib/core/organization/index.js.map +1 -0
  83. package/lib/core/organization/organization.d.ts +31 -0
  84. package/lib/core/organization/organization.js +135 -0
  85. package/lib/core/organization/organization.js.map +1 -0
  86. package/lib/core/path.d.ts +58 -0
  87. package/lib/core/path.js +189 -0
  88. package/lib/core/path.js.map +1 -0
  89. package/lib/core/path.test.d.ts +1 -0
  90. package/lib/core/path.test.js +205 -0
  91. package/lib/core/path.test.js.map +1 -0
  92. package/lib/core/types.d.ts +1 -0
  93. package/lib/core/types.js +3 -0
  94. package/lib/core/types.js.map +1 -0
  95. package/lib/core/uri.d.ts +68 -0
  96. package/lib/core/uri.js +158 -0
  97. package/lib/core/uri.js.map +1 -0
  98. package/lib/core/uri.test.d.ts +1 -0
  99. package/lib/core/uri.test.js +136 -0
  100. package/lib/core/uri.test.js.map +1 -0
  101. package/lib/enums/connection-status.d.ts +6 -0
  102. package/lib/enums/connection-status.js +11 -0
  103. package/lib/enums/connection-status.js.map +1 -0
  104. package/lib/enums/index.d.ts +7 -0
  105. package/lib/enums/index.js +24 -0
  106. package/lib/enums/index.js.map +1 -0
  107. package/lib/enums/integration-configuration-status.d.ts +5 -0
  108. package/lib/enums/integration-configuration-status.js +10 -0
  109. package/lib/enums/integration-configuration-status.js.map +1 -0
  110. package/lib/enums/integrations-configuration-steps.d.ts +8 -0
  111. package/lib/enums/integrations-configuration-steps.js +13 -0
  112. package/lib/enums/integrations-configuration-steps.js.map +1 -0
  113. package/lib/enums/integrations-connection-names.d.ts +11 -0
  114. package/lib/enums/integrations-connection-names.js +17 -0
  115. package/lib/enums/integrations-connection-names.js.map +1 -0
  116. package/lib/enums/integrations.d.ts +9 -0
  117. package/lib/enums/integrations.js +14 -0
  118. package/lib/enums/integrations.js.map +1 -0
  119. package/lib/enums/permissions.d.ts +7 -0
  120. package/lib/enums/permissions.js +12 -0
  121. package/lib/enums/permissions.js.map +1 -0
  122. package/lib/enums/team-member-status.d.ts +4 -0
  123. package/lib/enums/team-member-status.js +9 -0
  124. package/lib/enums/team-member-status.js.map +1 -0
  125. package/lib/errors/auth-error-messages.d.ts +25 -0
  126. package/lib/errors/auth-error-messages.js +31 -0
  127. package/lib/errors/auth-error-messages.js.map +1 -0
  128. package/lib/errors/auth-error.d.ts +8 -0
  129. package/lib/errors/auth-error.js +13 -0
  130. package/lib/errors/auth-error.js.map +1 -0
  131. package/lib/errors/index.d.ts +2 -0
  132. package/lib/errors/index.js +19 -0
  133. package/lib/errors/index.js.map +1 -0
  134. package/lib/index.d.ts +6 -0
  135. package/lib/index.js +23 -256
  136. package/lib/index.js.map +1 -1
  137. package/lib/interfaces/apollo-context.d.ts +48 -0
  138. package/lib/interfaces/apollo-context.js +3 -0
  139. package/lib/interfaces/apollo-context.js.map +1 -0
  140. package/lib/interfaces/common.d.ts +2 -2
  141. package/lib/interfaces/common.js +3 -0
  142. package/lib/interfaces/common.js.map +1 -0
  143. package/lib/interfaces/configuration/configuration-file-service.d.ts +5 -0
  144. package/lib/interfaces/configuration/configuration-file-service.js +3 -0
  145. package/lib/interfaces/configuration/configuration-file-service.js.map +1 -0
  146. package/lib/interfaces/configuration/configuration-server-service.d.ts +10 -0
  147. package/lib/interfaces/configuration/configuration-server-service.js +3 -0
  148. package/lib/interfaces/configuration/configuration-server-service.js.map +1 -0
  149. package/lib/interfaces/configuration/configuration.d.ts +39 -0
  150. package/lib/interfaces/configuration/configuration.js +53 -0
  151. package/lib/interfaces/configuration/configuration.js.map +1 -0
  152. package/lib/interfaces/configuration/configuraton-service.d.ts +60 -0
  153. package/lib/interfaces/configuration/configuraton-service.js +3 -0
  154. package/lib/interfaces/configuration/configuraton-service.js.map +1 -0
  155. package/lib/interfaces/configuration/event.d.ts +12 -0
  156. package/lib/interfaces/configuration/event.js +3 -0
  157. package/lib/interfaces/configuration/event.js.map +1 -0
  158. package/lib/interfaces/configuration/index.d.ts +5 -0
  159. package/lib/interfaces/configuration/index.js +22 -0
  160. package/lib/interfaces/configuration/index.js.map +1 -0
  161. package/lib/interfaces/contex-key-service.d.ts +2 -0
  162. package/lib/interfaces/contex-key-service.js +3 -0
  163. package/lib/interfaces/contex-key-service.js.map +1 -0
  164. package/lib/interfaces/database-migration.d.ts +8 -0
  165. package/lib/interfaces/database-migration.js +3 -0
  166. package/lib/interfaces/database-migration.js.map +1 -0
  167. package/lib/interfaces/enum.d.ts +26 -0
  168. package/lib/interfaces/enum.js +71 -0
  169. package/lib/interfaces/enum.js.map +1 -0
  170. package/lib/interfaces/environment/argv.d.ts +6 -0
  171. package/lib/interfaces/environment/argv.js +3 -0
  172. package/lib/interfaces/environment/argv.js.map +1 -0
  173. package/lib/interfaces/environment/environment-service.d.ts +7 -0
  174. package/lib/interfaces/environment/environment-service.js +3 -0
  175. package/lib/interfaces/environment/environment-service.js.map +1 -0
  176. package/lib/interfaces/environment/index.d.ts +2 -0
  177. package/lib/interfaces/environment/index.js +19 -0
  178. package/lib/interfaces/environment/index.js.map +1 -0
  179. package/lib/interfaces/generated/generated-models.d.ts +9198 -0
  180. package/lib/interfaces/generated/generated-models.js +3183 -0
  181. package/lib/interfaces/generated/generated-models.js.map +1 -0
  182. package/lib/interfaces/generated/index.d.ts +1 -0
  183. package/lib/interfaces/generated/index.js +18 -0
  184. package/lib/interfaces/generated/index.js.map +1 -0
  185. package/lib/interfaces/index.d.ts +16 -1
  186. package/lib/interfaces/index.js +34 -0
  187. package/lib/interfaces/index.js.map +1 -0
  188. package/lib/interfaces/lifecycle-service.d.ts +1 -0
  189. package/lib/interfaces/lifecycle-service.js +8 -0
  190. package/lib/interfaces/lifecycle-service.js.map +1 -0
  191. package/lib/interfaces/log/index.d.ts +1 -0
  192. package/lib/interfaces/log/index.js +18 -0
  193. package/lib/interfaces/log/index.js.map +1 -0
  194. package/lib/interfaces/log/log-service.d.ts +16 -0
  195. package/lib/interfaces/log/log-service.js +3 -0
  196. package/lib/interfaces/log/log-service.js.map +1 -0
  197. package/lib/interfaces/nav-items.d.ts +5 -0
  198. package/lib/interfaces/nav-items.js +3 -0
  199. package/lib/interfaces/nav-items.js.map +1 -0
  200. package/lib/interfaces/organization/index.d.ts +3 -0
  201. package/lib/interfaces/organization/index.js +20 -0
  202. package/lib/interfaces/organization/index.js.map +1 -0
  203. package/lib/interfaces/organization/organization-context-service.d.ts +65 -0
  204. package/lib/interfaces/organization/organization-context-service.js +3 -0
  205. package/lib/interfaces/organization/organization-context-service.js.map +1 -0
  206. package/lib/interfaces/organization/organization-context.d.ts +39 -0
  207. package/lib/interfaces/organization/organization-context.js +31 -0
  208. package/lib/interfaces/organization/organization-context.js.map +1 -0
  209. package/lib/interfaces/organization/organizations-context.d.ts +35 -0
  210. package/lib/interfaces/organization/organizations-context.js +3 -0
  211. package/lib/interfaces/organization/organizations-context.js.map +1 -0
  212. package/lib/interfaces/page-store.d.ts +16 -0
  213. package/lib/interfaces/page-store.js +3 -0
  214. package/lib/interfaces/page-store.js.map +1 -0
  215. package/lib/interfaces/permissions.d.ts +2 -0
  216. package/lib/interfaces/permissions.js +3 -0
  217. package/lib/interfaces/permissions.js.map +1 -0
  218. package/lib/interfaces/preferences-service.d.ts +40 -0
  219. package/lib/interfaces/preferences-service.js +3 -0
  220. package/lib/interfaces/preferences-service.js.map +1 -0
  221. package/lib/interfaces/service.d.ts +18 -0
  222. package/lib/interfaces/service.js +3 -0
  223. package/lib/interfaces/service.js.map +1 -0
  224. package/lib/interfaces/workbench-exports.d.ts +5 -0
  225. package/lib/interfaces/workbench-exports.js +6 -0
  226. package/lib/interfaces/workbench-exports.js.map +1 -0
  227. package/lib/modules/account-api/enums/index.d.ts +51 -0
  228. package/lib/modules/account-api/enums/index.js +56 -0
  229. package/lib/modules/account-api/enums/index.js.map +1 -0
  230. package/lib/modules/account-api/index.d.ts +1 -0
  231. package/lib/modules/account-api/index.js +18 -0
  232. package/lib/modules/account-api/index.js.map +1 -0
  233. package/lib/modules/billing-api/enums/index.d.ts +22 -0
  234. package/lib/modules/billing-api/enums/index.js +28 -0
  235. package/lib/modules/billing-api/enums/index.js.map +1 -0
  236. package/lib/modules/billing-api/index.d.ts +1 -0
  237. package/lib/modules/billing-api/index.js +18 -0
  238. package/lib/modules/billing-api/index.js.map +1 -0
  239. package/lib/modules/index.d.ts +2 -0
  240. package/lib/modules/index.js +19 -0
  241. package/lib/modules/index.js.map +1 -0
  242. package/lib/services/abstract-configuration.d.ts +54 -0
  243. package/lib/services/abstract-configuration.js +80 -0
  244. package/lib/services/abstract-configuration.js.map +1 -0
  245. package/lib/services/abstract-organization-context-service.d.ts +40 -0
  246. package/lib/services/abstract-organization-context-service.js +115 -0
  247. package/lib/services/abstract-organization-context-service.js.map +1 -0
  248. package/lib/services/index.d.ts +2 -0
  249. package/lib/services/index.js +19 -0
  250. package/lib/services/index.js.map +1 -0
  251. package/lib/utils/configuration-utils.d.ts +4 -0
  252. package/lib/utils/configuration-utils.js +15 -0
  253. package/lib/utils/configuration-utils.js.map +1 -0
  254. package/lib/utils/date-utils.d.ts +1 -0
  255. package/lib/utils/date-utils.js +9 -0
  256. package/lib/utils/date-utils.js.map +1 -0
  257. package/lib/utils/flatten-utils.d.ts +1 -0
  258. package/lib/utils/flatten-utils.js +20 -0
  259. package/lib/utils/flatten-utils.js.map +1 -0
  260. package/lib/utils/generate-uri.d.ts +35 -0
  261. package/lib/utils/generate-uri.js +50 -0
  262. package/lib/utils/generate-uri.js.map +1 -0
  263. package/lib/utils/generated-settings-id.d.ts +2 -0
  264. package/lib/utils/generated-settings-id.js +13 -0
  265. package/lib/utils/generated-settings-id.js.map +1 -0
  266. package/lib/utils/index.d.ts +9 -0
  267. package/lib/utils/index.js +26 -0
  268. package/lib/utils/index.js.map +1 -0
  269. package/lib/utils/omit-deep.d.ts +1 -0
  270. package/lib/utils/omit-deep.js +16 -0
  271. package/lib/utils/omit-deep.js.map +1 -0
  272. package/lib/utils/roles-utils.d.ts +2 -0
  273. package/lib/utils/roles-utils.js +11 -0
  274. package/lib/utils/roles-utils.js.map +1 -0
  275. package/lib/utils/uri.d.ts +3 -0
  276. package/lib/utils/uri.js +21 -0
  277. package/lib/utils/uri.js.map +1 -0
  278. package/lib/utils/utils.d.ts +3 -0
  279. package/lib/utils/utils.js +37 -0
  280. package/lib/utils/utils.js.map +1 -0
  281. package/lib/utils/validations.d.ts +1 -0
  282. package/lib/utils/validations.js +9 -0
  283. package/lib/utils/validations.js.map +1 -0
  284. package/package.json +34 -48
  285. package/lib/interfaces/workspace.d.ts +0 -159
@@ -0,0 +1,3183 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DefaultSettingFragmentDoc = exports.ConfigurationUpdateEventFragmentDoc = exports.UserCreationEventFragmentDoc = exports.OrgUserFragmentDoc = exports.AllContextFragmentDoc = exports.IVisibility = exports.IUserOrderBy = exports.IUserBroadcasterAction = exports.ITokenTypesEnum = exports.ITeamServiceAction = exports.ISshKeyType = exports.ISshKeyServiceAction = exports.ISortEnum = exports.ISettingValueType = exports.IRouteParams = exports.IRole = exports.IResourceAuthority = exports.IRegistryExtensions = exports.IPreDefinedRole = exports.IPortalLanguage = exports.IPermissionType = exports.IPermissionResource = exports.IPermissionAction = exports.IOrganizationServiceAction = exports.IOrganizationContextPubSubEvents = exports.IOrgainizationInvitationRole = exports.IOrgUserRole = exports.IMoleculerServiceName = exports.IMenuPosition = exports.IMailTemplateId = exports.IInviteStatus = exports.IIntegrationConfigServiceAction = exports.IGlobalLanguages = exports.IGlobalCurrencies = exports.IEditPresentationTypes = exports.IContextServiceAction = exports.ConfigurationTarget = exports.ConfigurationScope = exports.IConfigurationContributionNames = exports.IConfigFragmentName = exports.IConfigCollectionName = exports.IClientTypes = exports.IClientContainerService = exports.IClientCacheTypeNames = exports.ICacheControlScope = exports.IAuthErrorCodes = exports.IApplicationRoles = exports.IApplicationBillingPlanPolicy = exports.IAccountServiceAction = exports.IAccountBroadcasterActions = void 0;
4
+ exports.ResetUserPasswordDocument = exports.useResendUserEmailVerificationEmailMutation = exports.ResendUserEmailVerificationEmailDocument = exports.useResendOrganizationInvitationMutation = exports.ResendOrganizationInvitationDocument = exports.useRemoveTeamMemberMutation = exports.RemoveTeamMemberDocument = exports.useRemoveTeamMutation = exports.RemoveTeamDocument = exports.useRemoveOrganizationMutation = exports.RemoveOrganizationDocument = exports.useRemoveOrgMemberMutation = exports.RemoveOrgMemberDocument = exports.useRegisterAccountUserMutation = exports.RegisterAccountUserDocument = exports.useDeleteUserAccountMutation = exports.DeleteUserAccountDocument = exports.useDeclineOrganizationInvitationMutation = exports.DeclineOrganizationInvitationDocument = exports.useCreateTeamMutation = exports.CreateTeamDocument = exports.useCreateOrganizationMutation = exports.CreateOrganizationDocument = exports.useChangeOrgMemberRoleMutation = exports.ChangeOrgMemberRoleDocument = exports.useChangeMemberRoleMutation = exports.ChangeMemberRoleDocument = exports.useAddTeamMembersMutation = exports.AddTeamMembersDocument = exports.useAccountOnBoardingMutation = exports.AccountOnBoardingDocument = exports.useAcceptOrganizationInvitationMutation = exports.AcceptOrganizationInvitationDocument = exports.OrganizationDataFragmentDoc = exports.ConfigurationModelFragmentDoc = exports.AccountBillingPreferencesFragmentDoc = exports.TeamWithOrgOnContextFragmentDoc = exports.TeamContextFragmentDoc = exports.TeamNameInContextFragmentDoc = exports.RoleTargetFragmentDoc = exports.ResourceUserRoleFragmentDoc = exports.OrganizationUserFragmentDoc = exports.OrgContextFragmentDoc = exports.OrgNameInContextFragmentDoc = exports.MachineConfigurationFragmentDoc = exports.DefaultContextFragmentDoc = exports.ContextConfigurationFragmentDoc = exports.ResourceDataFragmentDoc = exports.ConfigurationFragmentDoc = exports.OverWriteRoleValueFragmentDoc = void 0;
5
+ exports.useGetTeamQuery = exports.GetTeamDocument = exports.useGetOrganizationTeamsLazyQuery = exports.useGetOrganizationTeamsQuery = exports.GetOrganizationTeamsDocument = exports.useGetOrganizationMembersWithNameLazyQuery = exports.useGetOrganizationMembersWithNameQuery = exports.GetOrganizationMembersWithNameDocument = exports.useGetOrgUserLazyQuery = exports.useGetOrgUserQuery = exports.GetOrgUserDocument = exports.useGetOrgTeamInvitationsLazyQuery = exports.useGetOrgTeamInvitationsQuery = exports.GetOrgTeamInvitationsDocument = exports.useGetOrganizationInvitationLazyQuery = exports.useGetOrganizationInvitationQuery = exports.GetOrganizationInvitationDocument = exports.useGetOrgInvitationMembersLazyQuery = exports.useGetOrgInvitationMembersQuery = exports.GetOrgInvitationMembersDocument = exports.useGetManageableOrganizationsLazyQuery = exports.useGetManageableOrganizationsQuery = exports.GetManageableOrganizationsDocument = exports.useGetAllCountriesLazyQuery = exports.useGetAllCountriesQuery = exports.GetAllCountriesDocument = exports.useGetAccountsLazyQuery = exports.useGetAccountsQuery = exports.GetAccountsDocument = exports.useDecodeOrganizationInvitationLazyQuery = exports.useDecodeOrganizationInvitationQuery = exports.DecodeOrganizationInvitationDocument = exports.useGetUserOrganizationsListLazyQuery = exports.useGetUserOrganizationsListQuery = exports.GetUserOrganizationsListDocument = exports.useVerifyUserEmailVerificationTokenMutation = exports.VerifyUserEmailVerificationTokenDocument = exports.useUpdateUserAccountMutation = exports.UpdateUserAccountDocument = exports.useUpdateTeamConfigurationMutation = exports.UpdateTeamConfigurationDocument = exports.useUpdateOrganizationMutation = exports.UpdateOrganizationDocument = exports.useUpdateOrgMemberTeamsMutation = exports.UpdateOrgMemberTeamsDocument = exports.useSendOrganizationInvitationMutation = exports.SendOrganizationInvitationDocument = exports.useSendUserPasswordResetEmailMutation = exports.SendUserPasswordResetEmailDocument = exports.useResetUserPasswordMutation = void 0;
6
+ exports.FilterIntegrationConfigurationDocument = exports.useGetUsersLazyQuery = exports.useGetUsersQuery = exports.GetUsersDocument = exports.useGetOrgMembersWithRolesLazyQuery = exports.useGetOrgMembersWithRolesQuery = exports.GetOrgMembersWithRolesDocument = exports.useGetOrgMembersWithRolesUnsecuredLazyQuery = exports.useGetOrgMembersWithRolesUnsecuredQuery = exports.GetOrgMembersWithRolesUnsecuredDocument = exports.useGetAccountsApplicationPoliciesLazyQuery = exports.useGetAccountsApplicationPoliciesQuery = exports.GetAccountsApplicationPoliciesDocument = exports.useGetAccountsViewerSettingsLazyQuery = exports.useGetAccountsViewerSettingsQuery = exports.GetAccountsViewerSettingsDocument = exports.useGetViewerSettingsLazyQuery = exports.useGetViewerSettingsQuery = exports.GetViewerSettingsDocument = exports.useTeamsLazyQuery = exports.useTeamsQuery = exports.TeamsDocument = exports.useTeamLazyQuery = exports.useTeamQuery = exports.TeamDocument = exports.useOrganizationsLazyQuery = exports.useOrganizationsQuery = exports.OrganizationsDocument = exports.useGetOrganizationMembersLazyQuery = exports.useGetOrganizationMembersQuery = exports.GetOrganizationMembersDocument = exports.useGetUserOrganizationsWithRoleLazyQuery = exports.useGetUserOrganizationsWithRoleQuery = exports.GetUserOrganizationsWithRoleDocument = exports.useGetUserOrganizationsLazyQuery = exports.useGetUserOrganizationsQuery = exports.GetUserOrganizationsDocument = exports.useGetUserTokenDetailsLazyQuery = exports.useGetUserTokenDetailsQuery = exports.GetUserTokenDetailsDocument = exports.useGetUserAccountByAuth0IdLazyQuery = exports.useGetUserAccountByAuth0IdQuery = exports.GetUserAccountByAuth0IdDocument = exports.useGetUserAccountLazyQuery = exports.useGetUserAccountQuery = exports.GetUserAccountDocument = exports.useGetTeamByNameLazyQuery = exports.useGetTeamByNameQuery = exports.GetTeamByNameDocument = exports.useGetTeamLazyQuery = void 0;
7
+ exports.useGetDefaultRoleLazyQuery = exports.useGetDefaultRoleQuery = exports.GetDefaultRoleDocument = exports.useGetDefaultPolicySettingsLazyQuery = exports.useGetDefaultPolicySettingsQuery = exports.GetDefaultPolicySettingsDocument = exports.useGetDefaultPermissionsLazyQuery = exports.useGetDefaultPermissionsQuery = exports.GetDefaultPermissionsDocument = exports.useGetDefaultApplicationPermissionsLazyQuery = exports.useGetDefaultApplicationPermissionsQuery = exports.GetDefaultApplicationPermissionsDocument = exports.useGetContextPropertyLazyQuery = exports.useGetContextPropertyQuery = exports.GetContextPropertyDocument = exports.useGetConfigurationTargetLazyQuery = exports.useGetConfigurationTargetQuery = exports.GetConfigurationTargetDocument = exports.useDefaultResolveSettingsLazyQuery = exports.useDefaultResolveSettingsQuery = exports.DefaultResolveSettingsDocument = exports.useGetApplicationRoleLazyQuery = exports.useGetApplicationRoleQuery = exports.GetApplicationRoleDocument = exports.useGetApplicationPolicyLazyQuery = exports.useGetApplicationPolicyQuery = exports.GetApplicationPolicyDocument = exports.useUpdateConfigurationMutation = exports.UpdateConfigurationDocument = exports.useReassignConfigurationMutation = exports.ReassignConfigurationDocument = exports.useInitializeTeamInContextMutation = exports.InitializeTeamInContextDocument = exports.useInitializeOrgNameInContextMutation = exports.InitializeOrgNameInContextDocument = exports.useInitiateConfigurationValueMutation = exports.InitiateConfigurationValueDocument = exports.useChangeOrganizationMutation = exports.ChangeOrganizationDocument = exports.useAddResourceToContextMutation = exports.AddResourceToContextDocument = exports.useAddContributionRoleMutation = exports.AddContributionRoleDocument = exports.useSidebarStateLazyQuery = exports.useSidebarStateQuery = exports.SidebarStateDocument = exports.useToggleSidebarMutation = exports.ToggleSidebarDocument = exports.useFilterIntegrationConfigurationLazyQuery = exports.useFilterIntegrationConfigurationQuery = void 0;
8
+ exports.useGetRoleQuery = exports.GetRoleDocument = exports.useGetOrgNameFromContextLazyQuery = exports.useGetOrgNameFromContextQuery = exports.GetOrgNameFromContextDocument = exports.useGetOrgContextLazyQuery = exports.useGetOrgContextQuery = exports.GetOrgContextDocument = exports.useGetContributionRolesLazyQuery = exports.useGetContributionRolesQuery = exports.GetContributionRolesDocument = exports.useDefaultSettingsLazyQuery = exports.useDefaultSettingsQuery = exports.DefaultSettingsDocument = exports.useGetUserConfigurationLazyQuery = exports.useGetUserConfigurationQuery = exports.GetUserConfigurationDocument = exports.useGetResourcesConfigurationLazyQuery = exports.useGetResourcesConfigurationQuery = exports.GetResourcesConfigurationDocument = exports.useResolveConfigurationLazyQuery = exports.useResolveConfigurationQuery = exports.ResolveConfigurationDocument = exports.useGetOrgWithResourcesRoleLazyQuery = exports.useGetOrgWithResourcesRoleQuery = exports.GetOrgWithResourcesRoleDocument = exports.useGetOrgWithResourcesPolicyLazyQuery = exports.useGetOrgWithResourcesPolicyQuery = exports.GetOrgWithResourcesPolicyDocument = exports.useGetOrgRoleLazyQuery = exports.useGetOrgRoleQuery = exports.GetOrgRoleDocument = exports.useGetOrgPolicyLazyQuery = exports.useGetOrgPolicyQuery = exports.GetOrgPolicyDocument = exports.useGetOrgConfigurationLazyQuery = exports.useGetOrgConfigurationQuery = exports.GetOrgConfigurationDocument = exports.useOpenPreferencesSettingsLazyQuery = exports.useOpenPreferencesSettingsQuery = exports.OpenPreferencesSettingsDocument = exports.useGetUserAccessRoleLazyQuery = exports.useGetUserAccessRoleQuery = exports.GetUserAccessRoleDocument = exports.useGetTeamNameFromContextLazyQuery = exports.useGetTeamNameFromContextQuery = exports.GetTeamNameFromContextDocument = exports.useGetTeamContextLazyQuery = exports.useGetTeamContextQuery = exports.GetTeamContextDocument = void 0;
9
+ exports.useViewerSettingsLazyQuery = exports.useViewerSettingsQuery = exports.ViewerSettingsDocument = exports.useOrganizationResourceContextLazyQuery = exports.useOrganizationResourceContextQuery = exports.OrganizationResourceContextDocument = exports.useGetConfigurationDataLazyQuery = exports.useGetConfigurationDataQuery = exports.GetConfigurationDataDocument = exports.useUpdateRoleValueMutation = exports.UpdateRoleValueDocument = exports.useUpdatePolicyValueMutation = exports.UpdatePolicyValueDocument = exports.useUpdateOrganizationContextUpdateResourcesMutation = exports.UpdateOrganizationContextUpdateResourcesDocument = exports.useUpdateOrganizationContextRemoveResourcesMutation = exports.UpdateOrganizationContextRemoveResourcesDocument = exports.useUpdateOrganizationContextAddResourcesMutation = exports.UpdateOrganizationContextAddResourcesDocument = exports.useUpdateConfigurationValueMutation = exports.UpdateConfigurationValueDocument = exports.useUpdateConfigurationValueByUriMutation = exports.UpdateConfigurationValueByUriDocument = exports.useSubscribeToPolicyUpdateSubscription = exports.SubscribeToPolicyUpdateDocument = exports.useSubscribeToPermissionUpdateSubscription = exports.SubscribeToPermissionUpdateDocument = exports.useSubscribeToOrganizationContextSubscription = exports.SubscribeToOrganizationContextDocument = exports.useSubscribeToConfigurationUpdateSubscription = exports.SubscribeToConfigurationUpdateDocument = exports.useGetUserWithDefaultConfigurationLazyQuery = exports.useGetUserWithDefaultConfigurationQuery = exports.GetUserWithDefaultConfigurationDocument = exports.useGetOrgWithResourcesConfigurationLazyQuery = exports.useGetOrgWithResourcesConfigurationQuery = exports.GetOrgWithResourcesConfigurationDocument = exports.useGetRoleLazyQuery = void 0;
10
+ const configuration_1 = require("../configuration");
11
+ Object.defineProperty(exports, "ConfigurationScope", { enumerable: true, get: function () { return configuration_1.ConfigurationScope; } });
12
+ const configuration_2 = require("../configuration");
13
+ Object.defineProperty(exports, "ConfigurationTarget", { enumerable: true, get: function () { return configuration_2.ConfigurationTarget; } });
14
+ const Apollo = require("@apollo/client");
15
+ const defaultOptions = {};
16
+ var IAccountBroadcasterActions;
17
+ (function (IAccountBroadcasterActions) {
18
+ IAccountBroadcasterActions["OnAccountCreated"] = "onAccountCreated";
19
+ IAccountBroadcasterActions["OnAccountUpdated"] = "onAccountUpdated";
20
+ IAccountBroadcasterActions["OnEmailVerified"] = "onEmailVerified";
21
+ IAccountBroadcasterActions["OnAccountDeleted"] = "onAccountDeleted";
22
+ IAccountBroadcasterActions["OnPasswordReset"] = "onPasswordReset";
23
+ IAccountBroadcasterActions["OnPictureChanged"] = "onPictureChanged";
24
+ })(IAccountBroadcasterActions = exports.IAccountBroadcasterActions || (exports.IAccountBroadcasterActions = {}));
25
+ var IAccountServiceAction;
26
+ (function (IAccountServiceAction) {
27
+ IAccountServiceAction["CreateDefaultAccount"] = "createDefaultAccount";
28
+ IAccountServiceAction["CreateAccount"] = "createAccount";
29
+ IAccountServiceAction["FindAccountById"] = "findAccountById";
30
+ IAccountServiceAction["FindAccountByUser"] = "findAccountByUser";
31
+ IAccountServiceAction["FindAccountByEmail"] = "findAccountByEmail";
32
+ IAccountServiceAction["UpdateAccount"] = "updateAccount";
33
+ IAccountServiceAction["DeleteAccount"] = "deleteAccount";
34
+ IAccountServiceAction["OnAccountCreated"] = "onAccountCreated";
35
+ IAccountServiceAction["OnAccountDeleted"] = "onAccountDeleted";
36
+ IAccountServiceAction["AccountOnBoarding"] = "accountOnBoarding";
37
+ })(IAccountServiceAction = exports.IAccountServiceAction || (exports.IAccountServiceAction = {}));
38
+ var IApplicationBillingPlanPolicy;
39
+ (function (IApplicationBillingPlanPolicy) {
40
+ IApplicationBillingPlanPolicy["Invoicing"] = "Invoicing";
41
+ IApplicationBillingPlanPolicy["ManagerRole"] = "ManagerRole";
42
+ IApplicationBillingPlanPolicy["ProjectTemplates"] = "ProjectTemplates";
43
+ IApplicationBillingPlanPolicy["ScheduledReports"] = "ScheduledReports";
44
+ IApplicationBillingPlanPolicy["Alerts"] = "Alerts";
45
+ IApplicationBillingPlanPolicy["CustomFields"] = "CustomFields";
46
+ })(IApplicationBillingPlanPolicy = exports.IApplicationBillingPlanPolicy || (exports.IApplicationBillingPlanPolicy = {}));
47
+ var IApplicationRoles;
48
+ (function (IApplicationRoles) {
49
+ /** Admin of an Organization */
50
+ IApplicationRoles["Admin"] = "ADMIN";
51
+ /** Project Contributors */
52
+ IApplicationRoles["Contributors"] = "CONTRIBUTORS";
53
+ /** Guest */
54
+ IApplicationRoles["Guest"] = "GUEST";
55
+ IApplicationRoles["Member"] = "MEMBER";
56
+ /** organization member */
57
+ IApplicationRoles["OrganizationManager"] = "ORGANIZATION_MANAGER";
58
+ /** Owner of an Organization */
59
+ IApplicationRoles["Owner"] = "OWNER";
60
+ /** Project Admin */
61
+ IApplicationRoles["ProjectAdmin"] = "PROJECT_ADMIN";
62
+ /** Project Viewer */
63
+ IApplicationRoles["ProjectViewer"] = "PROJECT_VIEWER";
64
+ IApplicationRoles["TeamMaintainer"] = "TEAM_MAINTAINER";
65
+ IApplicationRoles["TeamMember"] = "TEAM_MEMBER";
66
+ /** User who is logged in */
67
+ IApplicationRoles["User"] = "USER";
68
+ })(IApplicationRoles = exports.IApplicationRoles || (exports.IApplicationRoles = {}));
69
+ var IAuthErrorCodes;
70
+ (function (IAuthErrorCodes) {
71
+ IAuthErrorCodes["Unauthenticated"] = "UNAUTHENTICATED";
72
+ IAuthErrorCodes["InternalServerError"] = "INTERNAL_SERVER_ERROR";
73
+ })(IAuthErrorCodes = exports.IAuthErrorCodes || (exports.IAuthErrorCodes = {}));
74
+ var ICacheControlScope;
75
+ (function (ICacheControlScope) {
76
+ ICacheControlScope["Public"] = "PUBLIC";
77
+ ICacheControlScope["Private"] = "PRIVATE";
78
+ })(ICacheControlScope = exports.ICacheControlScope || (exports.ICacheControlScope = {}));
79
+ var IClientCacheTypeNames;
80
+ (function (IClientCacheTypeNames) {
81
+ IClientCacheTypeNames["ApplicationPolicy"] = "ApplicationPolicy";
82
+ IClientCacheTypeNames["ApplicationRolePermission"] = "ApplicationRolePermission";
83
+ IClientCacheTypeNames["Configuration"] = "Configuration";
84
+ IClientCacheTypeNames["Context"] = "Context";
85
+ IClientCacheTypeNames["ContextKeyService"] = "ContextKeyService";
86
+ IClientCacheTypeNames["ContributionPermissions"] = "ContributionPermissions";
87
+ IClientCacheTypeNames["ContributionSettings"] = "ContributionSettings";
88
+ IClientCacheTypeNames["DefaultConfiguration"] = "DefaultConfiguration";
89
+ IClientCacheTypeNames["DefaultPolicy"] = "DefaultPolicy";
90
+ IClientCacheTypeNames["DefaultRole"] = "DefaultRole";
91
+ IClientCacheTypeNames["Environment"] = "Environment";
92
+ IClientCacheTypeNames["ExternalResourceData"] = "ExternalResourceData";
93
+ IClientCacheTypeNames["MachineConfiguration"] = "MachineConfiguration";
94
+ IClientCacheTypeNames["OrgMember"] = "OrgMember";
95
+ IClientCacheTypeNames["OrgUser"] = "OrgUser";
96
+ IClientCacheTypeNames["Organization"] = "Organization";
97
+ IClientCacheTypeNames["OrganizationConfiguration"] = "OrganizationConfiguration";
98
+ IClientCacheTypeNames["OrganizationData"] = "OrganizationData";
99
+ IClientCacheTypeNames["OrganizationPolicy"] = "OrganizationPolicy";
100
+ IClientCacheTypeNames["OrganizationResourceConfiguration"] = "OrganizationResourceConfiguration";
101
+ IClientCacheTypeNames["OrganizationResourceData"] = "OrganizationResourceData";
102
+ IClientCacheTypeNames["OrganizationRole"] = "OrganizationRole";
103
+ IClientCacheTypeNames["ResourcePolicy"] = "ResourcePolicy";
104
+ IClientCacheTypeNames["ResourceRole"] = "ResourceRole";
105
+ IClientCacheTypeNames["ResourceUser"] = "ResourceUser";
106
+ IClientCacheTypeNames["SettingsGroup"] = "SettingsGroup";
107
+ IClientCacheTypeNames["SettingsSection"] = "SettingsSection";
108
+ IClientCacheTypeNames["UserConfiguration"] = "UserConfiguration";
109
+ })(IClientCacheTypeNames = exports.IClientCacheTypeNames || (exports.IClientCacheTypeNames = {}));
110
+ var IClientContainerService;
111
+ (function (IClientContainerService) {
112
+ IClientContainerService["ApolloErrorHandler"] = "ApolloErrorHandler";
113
+ IClientContainerService["Auth0Authentication"] = "Auth0Authentication";
114
+ IClientContainerService["IConfigurationFileService"] = "IConfigurationFileService";
115
+ IClientContainerService["IConfigurationPolicyService"] = "IConfigurationPolicyService";
116
+ IClientContainerService["IConfigurationService"] = "IConfigurationService";
117
+ IClientContainerService["IContextKeyService"] = "IContextKeyService";
118
+ IClientContainerService["IFileService"] = "IFileService";
119
+ IClientContainerService["ILifecycleService"] = "ILifecycleService";
120
+ IClientContainerService["IOrganizationContext"] = "IOrganizationContext";
121
+ IClientContainerService["IOrganizationContextService"] = "IOrganizationContextService";
122
+ IClientContainerService["IOrganizationKeyContextService"] = "IOrganizationKeyContextService";
123
+ IClientContainerService["IPermissionService"] = "IPermissionService";
124
+ IClientContainerService["IPreferenceService"] = "IPreferenceService";
125
+ IClientContainerService["ITeamKeyContextService"] = "ITeamKeyContextService";
126
+ })(IClientContainerService = exports.IClientContainerService || (exports.IClientContainerService = {}));
127
+ var IClientTypes;
128
+ (function (IClientTypes) {
129
+ IClientTypes["Business"] = "Business";
130
+ IClientTypes["Individuals"] = "Individuals";
131
+ })(IClientTypes = exports.IClientTypes || (exports.IClientTypes = {}));
132
+ var IConfigCollectionName;
133
+ (function (IConfigCollectionName) {
134
+ IConfigCollectionName["Accounts"] = "accounts";
135
+ IConfigCollectionName["Application"] = "application";
136
+ IConfigCollectionName["Clients"] = "clients";
137
+ IConfigCollectionName["IntegrationWorkflow"] = "integrationWorkflow";
138
+ IConfigCollectionName["Machines"] = "machines";
139
+ IConfigCollectionName["Organizations"] = "organizations";
140
+ IConfigCollectionName["Projects"] = "projects";
141
+ IConfigCollectionName["Tags"] = "tags";
142
+ IConfigCollectionName["Tasks"] = "tasks";
143
+ IConfigCollectionName["Teams"] = "teams";
144
+ IConfigCollectionName["Workspaces"] = "workspaces";
145
+ })(IConfigCollectionName = exports.IConfigCollectionName || (exports.IConfigCollectionName = {}));
146
+ var IConfigFragmentName;
147
+ (function (IConfigFragmentName) {
148
+ IConfigFragmentName["Resources"] = "resources";
149
+ IConfigFragmentName["Settings"] = "settings";
150
+ IConfigFragmentName["Policies"] = "policies";
151
+ IConfigFragmentName["ApplicationPolicies"] = "applicationPolicies";
152
+ IConfigFragmentName["Roles"] = "roles";
153
+ IConfigFragmentName["ContributionRoles"] = "contributionRoles";
154
+ /** Team Members Document with role value */
155
+ IConfigFragmentName["TeamMembers"] = "teamMembers";
156
+ /** Organization Members Document with role value */
157
+ IConfigFragmentName["OrgMembers"] = "orgMembers";
158
+ /** Billing */
159
+ IConfigFragmentName["BillingPlanPolicies"] = "billingPlanPolicies";
160
+ })(IConfigFragmentName = exports.IConfigFragmentName || (exports.IConfigFragmentName = {}));
161
+ var IConfigurationContributionNames;
162
+ (function (IConfigurationContributionNames) {
163
+ IConfigurationContributionNames["DefaultPermissions"] = "defaultPermissions";
164
+ IConfigurationContributionNames["DefaultPolicies"] = "defaultPolicies";
165
+ IConfigurationContributionNames["DefaultSettings"] = "defaultSettings";
166
+ /** Integration settings */
167
+ IConfigurationContributionNames["Integration"] = "integration";
168
+ })(IConfigurationContributionNames = exports.IConfigurationContributionNames || (exports.IConfigurationContributionNames = {}));
169
+ var IContextServiceAction;
170
+ (function (IContextServiceAction) {
171
+ IContextServiceAction["OnResourceCreated"] = "onResourceCreated";
172
+ IContextServiceAction["OnResourceUpdated"] = "onResourceUpdated";
173
+ IContextServiceAction["OnResourceDeleted"] = "onResourceDeleted";
174
+ IContextServiceAction["OnResourceDeactivated"] = "onResourceDeactivated";
175
+ })(IContextServiceAction = exports.IContextServiceAction || (exports.IContextServiceAction = {}));
176
+ var IEditPresentationTypes;
177
+ (function (IEditPresentationTypes) {
178
+ IEditPresentationTypes["Multiline"] = "Multiline";
179
+ IEditPresentationTypes["Singleline"] = "Singleline";
180
+ })(IEditPresentationTypes = exports.IEditPresentationTypes || (exports.IEditPresentationTypes = {}));
181
+ var IGlobalCurrencies;
182
+ (function (IGlobalCurrencies) {
183
+ IGlobalCurrencies["Usd"] = "USD";
184
+ IGlobalCurrencies["Euro"] = "EURO";
185
+ IGlobalCurrencies["Aud"] = "AUD";
186
+ })(IGlobalCurrencies = exports.IGlobalCurrencies || (exports.IGlobalCurrencies = {}));
187
+ var IGlobalLanguages;
188
+ (function (IGlobalLanguages) {
189
+ IGlobalLanguages["English"] = "English";
190
+ IGlobalLanguages["Spanish"] = "Spanish";
191
+ IGlobalLanguages["French"] = "French";
192
+ IGlobalLanguages["Russian"] = "Russian";
193
+ })(IGlobalLanguages = exports.IGlobalLanguages || (exports.IGlobalLanguages = {}));
194
+ var IIntegrationConfigServiceAction;
195
+ (function (IIntegrationConfigServiceAction) {
196
+ IIntegrationConfigServiceAction["OnIntegrationConfigurationDeleted"] = "onIntegrationConfigurationDeleted";
197
+ })(IIntegrationConfigServiceAction = exports.IIntegrationConfigServiceAction || (exports.IIntegrationConfigServiceAction = {}));
198
+ var IInviteStatus;
199
+ (function (IInviteStatus) {
200
+ IInviteStatus["Pending"] = "PENDING";
201
+ IInviteStatus["Accepted"] = "ACCEPTED";
202
+ IInviteStatus["Declined"] = "DECLINED";
203
+ })(IInviteStatus = exports.IInviteStatus || (exports.IInviteStatus = {}));
204
+ var IMailTemplateId;
205
+ (function (IMailTemplateId) {
206
+ IMailTemplateId["BillingNotificationId"] = "BillingNotificationId";
207
+ /** Prefix with Db to make sure it look into the database */
208
+ IMailTemplateId["DbTeamInivitationId"] = "DbTeamInivitationId";
209
+ IMailTemplateId["JoinNotifyMember"] = "JOIN_NOTIFY_MEMBER";
210
+ IMailTemplateId["JoinNotifyOwner"] = "JOIN_NOTIFY_OWNER";
211
+ /** Prefix with Db to make sure it look into the database */
212
+ IMailTemplateId["PaymentServiceId"] = "PaymentServiceId";
213
+ IMailTemplateId["TeamAddedMemberNotification"] = "TEAM_ADDED_MEMBER_NOTIFICATION";
214
+ IMailTemplateId["UserEmailVerificationNotification"] = "USER_EMAIL_VERIFICATION_NOTIFICATION";
215
+ IMailTemplateId["UserPasswordReset"] = "USER_PASSWORD_RESET";
216
+ IMailTemplateId["Dummy"] = "dummy";
217
+ })(IMailTemplateId = exports.IMailTemplateId || (exports.IMailTemplateId = {}));
218
+ var IMenuPosition;
219
+ (function (IMenuPosition) {
220
+ IMenuPosition["Logo"] = "LOGO";
221
+ IMenuPosition["Upper"] = "UPPER";
222
+ IMenuPosition["Middle"] = "MIDDLE";
223
+ IMenuPosition["Lower"] = "LOWER";
224
+ IMenuPosition["Bottom"] = "BOTTOM";
225
+ })(IMenuPosition = exports.IMenuPosition || (exports.IMenuPosition = {}));
226
+ /** All Moleculer Topic names are extended from this. */
227
+ var IMoleculerServiceName;
228
+ (function (IMoleculerServiceName) {
229
+ IMoleculerServiceName["AccountOrganization"] = "AccountOrganization";
230
+ IMoleculerServiceName["AccountTeam"] = "AccountTeam";
231
+ IMoleculerServiceName["AccountUser"] = "AccountUser";
232
+ IMoleculerServiceName["AccountsPostEventsService"] = "AccountsPostEventsService";
233
+ IMoleculerServiceName["AuthUserService"] = "AuthUserService";
234
+ IMoleculerServiceName["OrganizationContextService"] = "OrganizationContextService";
235
+ IMoleculerServiceName["PaymentEventListener"] = "PaymentEventListener";
236
+ IMoleculerServiceName["PaymentService"] = "PaymentService";
237
+ IMoleculerServiceName["PaypalService"] = "PaypalService";
238
+ IMoleculerServiceName["SshKeyService"] = "SshKeyService";
239
+ IMoleculerServiceName["StripeService"] = "StripeService";
240
+ IMoleculerServiceName["UserBroadcaster"] = "UserBroadcaster";
241
+ IMoleculerServiceName["Dummy"] = "dummy";
242
+ /** Actions */
243
+ IMoleculerServiceName["OnConfigurationUpdated"] = "onConfigurationUpdated";
244
+ })(IMoleculerServiceName = exports.IMoleculerServiceName || (exports.IMoleculerServiceName = {}));
245
+ var IOrgUserRole;
246
+ (function (IOrgUserRole) {
247
+ IOrgUserRole["BillingLeader"] = "BILLING_LEADER";
248
+ IOrgUserRole["Member"] = "MEMBER";
249
+ IOrgUserRole["Admin"] = "ADMIN";
250
+ IOrgUserRole["Owner"] = "OWNER";
251
+ })(IOrgUserRole = exports.IOrgUserRole || (exports.IOrgUserRole = {}));
252
+ /**
253
+ * OrganizationInvitationRole: The possible organization invitation roles.
254
+ *
255
+ * @property
256
+ * ADMIN: The user is invited to be an admin of the organization
257
+ * BILLING_MANAGER: The user is invited to be a billing manager of the organization.
258
+ * DIRECT_MEMBER: The user is invited to be a direct member of the organization.
259
+ * REINSTATE: The user's previous role will be reinstated.
260
+ */
261
+ var IOrgainizationInvitationRole;
262
+ (function (IOrgainizationInvitationRole) {
263
+ IOrgainizationInvitationRole["Admin"] = "ADMIN";
264
+ IOrgainizationInvitationRole["Reinstate"] = "REINSTATE";
265
+ IOrgainizationInvitationRole["DirectMember"] = "DIRECT_MEMBER";
266
+ IOrgainizationInvitationRole["BillingManager"] = "BILLING_MANAGER";
267
+ })(IOrgainizationInvitationRole = exports.IOrgainizationInvitationRole || (exports.IOrgainizationInvitationRole = {}));
268
+ /** Subscription event for context */
269
+ var IOrganizationContextPubSubEvents;
270
+ (function (IOrganizationContextPubSubEvents) {
271
+ IOrganizationContextPubSubEvents["OrganizationContextUpdated"] = "OrganizationContextUpdated";
272
+ IOrganizationContextPubSubEvents["OrganizationPolicyUpdated"] = "OrganizationPolicyUpdated";
273
+ IOrganizationContextPubSubEvents["OrganizationConfigurationUpdated"] = "OrganizationConfigurationUpdated";
274
+ IOrganizationContextPubSubEvents["OrganizationPermissionUpdated"] = "OrganizationPermissionUpdated";
275
+ })(IOrganizationContextPubSubEvents = exports.IOrganizationContextPubSubEvents || (exports.IOrganizationContextPubSubEvents = {}));
276
+ var IOrganizationServiceAction;
277
+ (function (IOrganizationServiceAction) {
278
+ IOrganizationServiceAction["GetOrganization"] = "getOrganization";
279
+ IOrganizationServiceAction["CreateDefaultOrganization"] = "createDefaultOrganization";
280
+ IOrganizationServiceAction["GetUserOrganizations"] = "getUserOrganizations";
281
+ IOrganizationServiceAction["CreateOrganization"] = "createOrganization";
282
+ IOrganizationServiceAction["UpdateOrganization"] = "updateOrganization";
283
+ IOrganizationServiceAction["RemoveOrganization"] = "removeOrganization";
284
+ IOrganizationServiceAction["OnOrganizationCreated"] = "onOrganizationCreated";
285
+ IOrganizationServiceAction["OnOrganizationUpdated"] = "onOrganizationUpdated";
286
+ IOrganizationServiceAction["OnOrganizationDeleted"] = "onOrganizationDeleted";
287
+ IOrganizationServiceAction["OnOrganizationsDeleted"] = "onOrganizationsDeleted";
288
+ IOrganizationServiceAction["OnOrganizationsDeactivated"] = "onOrganizationsDeactivated";
289
+ IOrganizationServiceAction["OnUserJoinedOrganization"] = "onUserJoinedOrganization";
290
+ IOrganizationServiceAction["OnUserInvitationSend"] = "onUserInvitationSend";
291
+ IOrganizationServiceAction["OnUserInvitationResend"] = "onUserInvitationResend";
292
+ IOrganizationServiceAction["OnOrgMemberRemoved"] = "onOrgMemberRemoved";
293
+ IOrganizationServiceAction["OnCreateOrganization"] = "onCreateOrganization";
294
+ IOrganizationServiceAction["OnCreateTeam"] = "onCreateTeam";
295
+ IOrganizationServiceAction["OnSendInvitation"] = "onSendInvitation";
296
+ })(IOrganizationServiceAction = exports.IOrganizationServiceAction || (exports.IOrganizationServiceAction = {}));
297
+ var IPermissionAction;
298
+ (function (IPermissionAction) {
299
+ IPermissionAction["Create"] = "Create";
300
+ IPermissionAction["Delete"] = "Delete";
301
+ IPermissionAction["Edit"] = "Edit";
302
+ IPermissionAction["Invite"] = "Invite";
303
+ IPermissionAction["Manage"] = "Manage";
304
+ IPermissionAction["View"] = "View";
305
+ })(IPermissionAction = exports.IPermissionAction || (exports.IPermissionAction = {}));
306
+ var IPermissionResource;
307
+ (function (IPermissionResource) {
308
+ IPermissionResource["Members"] = "Members";
309
+ IPermissionResource["Organization"] = "Organization";
310
+ IPermissionResource["Permissions"] = "Permissions";
311
+ IPermissionResource["Roles"] = "Roles";
312
+ IPermissionResource["Settings"] = "Settings";
313
+ IPermissionResource["Teams"] = "Teams";
314
+ })(IPermissionResource = exports.IPermissionResource || (exports.IPermissionResource = {}));
315
+ var IPermissionType;
316
+ (function (IPermissionType) {
317
+ IPermissionType["Allow"] = "Allow";
318
+ IPermissionType["Deny"] = "Deny";
319
+ IPermissionType["NotSet"] = "NotSet";
320
+ })(IPermissionType = exports.IPermissionType || (exports.IPermissionType = {}));
321
+ var IPortalLanguage;
322
+ (function (IPortalLanguage) {
323
+ IPortalLanguage["English"] = "English";
324
+ IPortalLanguage["Hindi"] = "Hindi";
325
+ IPortalLanguage["Gujarati"] = "Gujarati";
326
+ IPortalLanguage["Spanish"] = "Spanish";
327
+ IPortalLanguage["Russian"] = "Russian";
328
+ })(IPortalLanguage = exports.IPortalLanguage || (exports.IPortalLanguage = {}));
329
+ var IPreDefinedRole;
330
+ (function (IPreDefinedRole) {
331
+ IPreDefinedRole["Owner"] = "OWNER";
332
+ IPreDefinedRole["Admin"] = "ADMIN";
333
+ IPreDefinedRole["Maintainer"] = "MAINTAINER";
334
+ IPreDefinedRole["Member"] = "MEMBER";
335
+ IPreDefinedRole["ProjectAdmin"] = "PROJECT_ADMIN";
336
+ IPreDefinedRole["BillingLeader"] = "BILLING_LEADER";
337
+ IPreDefinedRole["DirectMember"] = "DIRECT_MEMBER";
338
+ IPreDefinedRole["Viewer"] = "VIEWER";
339
+ IPreDefinedRole["Guest"] = "GUEST";
340
+ IPreDefinedRole["Contributors"] = "CONTRIBUTORS";
341
+ })(IPreDefinedRole = exports.IPreDefinedRole || (exports.IPreDefinedRole = {}));
342
+ /** Registry Extensions */
343
+ var IRegistryExtensions;
344
+ (function (IRegistryExtensions) {
345
+ IRegistryExtensions["UserRole"] = "UserRole";
346
+ IRegistryExtensions["Permissions"] = "Permissions";
347
+ IRegistryExtensions["Policies"] = "Policies";
348
+ IRegistryExtensions["Configuration"] = "Configuration";
349
+ IRegistryExtensions["JsonContribution"] = "JSONContribution";
350
+ })(IRegistryExtensions = exports.IRegistryExtensions || (exports.IRegistryExtensions = {}));
351
+ var IResourceAuthority;
352
+ (function (IResourceAuthority) {
353
+ IResourceAuthority["Defaultsettings"] = "defaultsettings";
354
+ IResourceAuthority["Defaultpermissions"] = "defaultpermissions";
355
+ IResourceAuthority["Defaultpolicies"] = "defaultpolicies";
356
+ })(IResourceAuthority = exports.IResourceAuthority || (exports.IResourceAuthority = {}));
357
+ var IRole;
358
+ (function (IRole) {
359
+ IRole["Admin"] = "ADMIN";
360
+ IRole["Reviewer"] = "REVIEWER";
361
+ IRole["User"] = "USER";
362
+ IRole["Unknown"] = "UNKNOWN";
363
+ })(IRole = exports.IRole || (exports.IRole = {}));
364
+ var IRouteParams;
365
+ (function (IRouteParams) {
366
+ IRouteParams["OrgName"] = "orgName";
367
+ IRouteParams["TeamName"] = "teamName";
368
+ })(IRouteParams = exports.IRouteParams || (exports.IRouteParams = {}));
369
+ var ISettingValueType;
370
+ (function (ISettingValueType) {
371
+ ISettingValueType["Null"] = "Null";
372
+ ISettingValueType["Enum"] = "Enum";
373
+ ISettingValueType["String"] = "String";
374
+ ISettingValueType["Integer"] = "Integer";
375
+ ISettingValueType["Number"] = "Number";
376
+ ISettingValueType["Boolean"] = "Boolean";
377
+ ISettingValueType["Exclude"] = "Exclude";
378
+ ISettingValueType["Complex"] = "Complex";
379
+ ISettingValueType["NullableInteger"] = "NullableInteger";
380
+ ISettingValueType["NullableNumber"] = "NullableNumber";
381
+ })(ISettingValueType = exports.ISettingValueType || (exports.ISettingValueType = {}));
382
+ var ISortEnum;
383
+ (function (ISortEnum) {
384
+ ISortEnum["Asc"] = "ASC";
385
+ ISortEnum["Desc"] = "DESC";
386
+ })(ISortEnum = exports.ISortEnum || (exports.ISortEnum = {}));
387
+ var ISshKeyServiceAction;
388
+ (function (ISshKeyServiceAction) {
389
+ ISshKeyServiceAction["GetSshKey"] = "getSshKey";
390
+ ISshKeyServiceAction["DeleteSshKey"] = "deleteSshKey";
391
+ ISshKeyServiceAction["AddSshKey"] = "addSshKey";
392
+ ISshKeyServiceAction["GenerateKeys"] = "generateKeys";
393
+ ISshKeyServiceAction["UpdateSshKey"] = "updateSshKey";
394
+ })(ISshKeyServiceAction = exports.ISshKeyServiceAction || (exports.ISshKeyServiceAction = {}));
395
+ var ISshKeyType;
396
+ (function (ISshKeyType) {
397
+ ISshKeyType["Rsa"] = "RSA";
398
+ ISshKeyType["Ed25519"] = "ED25519";
399
+ })(ISshKeyType = exports.ISshKeyType || (exports.ISshKeyType = {}));
400
+ var ITeamServiceAction;
401
+ (function (ITeamServiceAction) {
402
+ ITeamServiceAction["GetTeam"] = "getTeam";
403
+ ITeamServiceAction["GetUserTeams"] = "getUserTeams";
404
+ ITeamServiceAction["CreateTeam"] = "createTeam";
405
+ ITeamServiceAction["UpdateTeam"] = "updateTeam";
406
+ ITeamServiceAction["AddWorkspaces"] = "addWorkspaces";
407
+ ITeamServiceAction["ResendInvitation"] = "resendInvitation";
408
+ ITeamServiceAction["RemoveTeam"] = "removeTeam";
409
+ ITeamServiceAction["GetInvitation"] = "getInvitation";
410
+ ITeamServiceAction["SendInvitation"] = "sendInvitation";
411
+ ITeamServiceAction["CreateDefaultTeam"] = "createDefaultTeam";
412
+ ITeamServiceAction["AcceptInvitation"] = "acceptInvitation";
413
+ ITeamServiceAction["DeclineInvitation"] = "declineInvitation";
414
+ ITeamServiceAction["SendProjectNotificaiton"] = "sendProjectNotificaiton";
415
+ })(ITeamServiceAction = exports.ITeamServiceAction || (exports.ITeamServiceAction = {}));
416
+ /**
417
+ * The User Account.
418
+ *
419
+ * @property
420
+ * id: User ID
421
+ * @property
422
+ * email: The user email
423
+ * @property
424
+ * emailVerified: ture if email is verified, otherwise false
425
+ * @property
426
+ * featureFlags: Any super power given to the user via a super user
427
+ * @property
428
+ * identities: An array of objects with information about the user's identities.
429
+ * More than one will exists in case accounts are linked.
430
+ * @property
431
+ * inactive: true if the user is not currently being billed for service.
432
+ * @property
433
+ * isBillingLeader: true if user is BillingLeader
434
+ * @property
435
+ * userOgs: the orgs and roles for this user on each.
436
+ */
437
+ var ITokenTypesEnum;
438
+ (function (ITokenTypesEnum) {
439
+ ITokenTypesEnum["EmailVerification"] = "EMAIL_VERIFICATION";
440
+ ITokenTypesEnum["PasswordReset"] = "PASSWORD_RESET";
441
+ })(ITokenTypesEnum = exports.ITokenTypesEnum || (exports.ITokenTypesEnum = {}));
442
+ var IUserBroadcasterAction;
443
+ (function (IUserBroadcasterAction) {
444
+ IUserBroadcasterAction["OnUserLoggedIn"] = "onUserLoggedIn";
445
+ IUserBroadcasterAction["OnUserCreated"] = "onUserCreated";
446
+ IUserBroadcasterAction["OnUserUpdated"] = "onUserUpdated";
447
+ IUserBroadcasterAction["OnUserDeleted"] = "onUserDeleted";
448
+ })(IUserBroadcasterAction = exports.IUserBroadcasterAction || (exports.IUserBroadcasterAction = {}));
449
+ var IUserOrderBy;
450
+ (function (IUserOrderBy) {
451
+ IUserOrderBy["Auth0UserIdAsc"] = "auth0UserId_ASC";
452
+ IUserOrderBy["Auth0UserIdDesc"] = "auth0UserId_DESC";
453
+ IUserOrderBy["CreatedAtAsc"] = "createdAt_ASC";
454
+ IUserOrderBy["CreatedAtDesc"] = "createdAt_DESC";
455
+ IUserOrderBy["EmailSubscriptionAsc"] = "emailSubscription_ASC";
456
+ IUserOrderBy["EmailSubscriptionDesc"] = "emailSubscription_DESC";
457
+ IUserOrderBy["IdAsc"] = "id_ASC";
458
+ IUserOrderBy["IdDesc"] = "id_DESC";
459
+ IUserOrderBy["UpdatedAtAsc"] = "updatedAt_ASC";
460
+ IUserOrderBy["UpdatedAtDesc"] = "updatedAt_DESC";
461
+ })(IUserOrderBy = exports.IUserOrderBy || (exports.IUserOrderBy = {}));
462
+ var IVisibility;
463
+ (function (IVisibility) {
464
+ IVisibility["Private"] = "private";
465
+ IVisibility["Public"] = "public";
466
+ })(IVisibility = exports.IVisibility || (exports.IVisibility = {}));
467
+ exports.AllContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "AllContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "teamResource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgResource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgResourceId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgResourceName" } }] } }] };
468
+ exports.OrgUserFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
469
+ exports.UserCreationEventFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "UserCreationEvent" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserProfile" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "nickname" } }, { "kind": "Field", "name": { "kind": "Name", "value": "picture" } }, { "kind": "Field", "name": { "kind": "Name", "value": "user_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "username" } }, { "kind": "Field", "name": { "kind": "Name", "value": "given_name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "family_name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email_verified" } }, { "kind": "Field", "name": { "kind": "Name", "value": "user_metadata" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "last_name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "first_name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "phone_number" } }, { "kind": "Field", "name": { "kind": "Name", "value": "work_email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "country" } }, { "kind": "Field", "name": { "kind": "Name", "value": "company_name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "dob" } }, { "kind": "Field", "name": { "kind": "Name", "value": "zip_code" } }] } }] } }] };
470
+ exports.ConfigurationUpdateEventFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrideIdentifier" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
471
+ exports.DefaultSettingFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "DefaultSetting" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "descriptionIsMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deprecationMessage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptionsAreMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "properties" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "readOnly" } }, { "kind": "Field", "name": { "kind": "Name", "value": "disabled" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "arrayItemType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingDependencies" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maximum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxItems" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minItems" } }] } }] };
472
+ exports.OverWriteRoleValueFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OverWriteRoleValue" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }] } }] };
473
+ exports.ConfigurationFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
474
+ exports.ResourceDataFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
475
+ exports.ContextConfigurationFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ContextConfiguration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "configuration" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resources" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
476
+ exports.DefaultContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "DefaultContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }] } }] };
477
+ exports.MachineConfigurationFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "MachineConfiguration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "MachineConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
478
+ exports.OrgNameInContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgNameInContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }] } }] };
479
+ exports.OrgContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgUri" } }] } }] };
480
+ exports.OrganizationUserFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrganizationUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IOrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
481
+ exports.ResourceUserRoleFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceUserRole" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }] } }] };
482
+ exports.RoleTargetFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "RoleTarget" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionRoles" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "target" } }] } }] };
483
+ exports.TeamNameInContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "TeamNameInContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }] } }] };
484
+ exports.TeamContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "TeamContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamUri" } }] } }] };
485
+ exports.TeamWithOrgOnContextFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "TeamWithOrgOnContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }] } }] };
486
+ exports.AccountBillingPreferencesFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "AccountBillingPreferences" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Preferences" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "notification" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "primaryEmail" } }, { "kind": "Field", "name": { "kind": "Name", "value": "billing" } }] } }] } }] } }] };
487
+ exports.ConfigurationModelFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ConfigurationModel" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }] } }] };
488
+ exports.OrganizationDataFragmentDoc = { "kind": "Document", "definitions": [{ "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrganizationData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resources" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ExternalResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "configuration" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
489
+ exports.AcceptOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "acceptOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ID" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "notification" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationNotificationValues" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "acceptOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "id" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "notification" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "notification" } } }] }] } }] };
490
+ /**
491
+ * __useAcceptOrganizationInvitationMutation__
492
+ *
493
+ * To run a mutation, you first call `useAcceptOrganizationInvitationMutation` within a React component and pass it any options that fit your needs.
494
+ * When your component renders, `useAcceptOrganizationInvitationMutation` returns a tuple that includes:
495
+ * - A mutate function that you can call at any time to execute the mutation
496
+ * - An object with fields that represent the current status of the mutation's execution
497
+ *
498
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
499
+ *
500
+ * @example
501
+ * const [acceptOrganizationInvitationMutation, { data, loading, error }] = useAcceptOrganizationInvitationMutation({
502
+ * variables: {
503
+ * id: // value for 'id'
504
+ * notification: // value for 'notification'
505
+ * },
506
+ * });
507
+ */
508
+ function useAcceptOrganizationInvitationMutation(baseOptions) {
509
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
510
+ return Apollo.useMutation(exports.AcceptOrganizationInvitationDocument, options);
511
+ }
512
+ exports.useAcceptOrganizationInvitationMutation = useAcceptOrganizationInvitationMutation;
513
+ exports.AccountOnBoardingDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "AccountOnBoarding" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IOnBoardingParams" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "accountOnBoarding" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }] }] } }] };
514
+ /**
515
+ * __useAccountOnBoardingMutation__
516
+ *
517
+ * To run a mutation, you first call `useAccountOnBoardingMutation` within a React component and pass it any options that fit your needs.
518
+ * When your component renders, `useAccountOnBoardingMutation` returns a tuple that includes:
519
+ * - A mutate function that you can call at any time to execute the mutation
520
+ * - An object with fields that represent the current status of the mutation's execution
521
+ *
522
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
523
+ *
524
+ * @example
525
+ * const [accountOnBoardingMutation, { data, loading, error }] = useAccountOnBoardingMutation({
526
+ * variables: {
527
+ * input: // value for 'input'
528
+ * },
529
+ * });
530
+ */
531
+ function useAccountOnBoardingMutation(baseOptions) {
532
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
533
+ return Apollo.useMutation(exports.AccountOnBoardingDocument, options);
534
+ }
535
+ exports.useAccountOnBoardingMutation = useAccountOnBoardingMutation;
536
+ exports.AddTeamMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "AddTeamMembers" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "memberIds" } }, "type": { "kind": "NonNullType", "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "addTeamMembers" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "teamName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "memberIds" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "memberIds" } } }] }] } }] };
537
+ /**
538
+ * __useAddTeamMembersMutation__
539
+ *
540
+ * To run a mutation, you first call `useAddTeamMembersMutation` within a React component and pass it any options that fit your needs.
541
+ * When your component renders, `useAddTeamMembersMutation` returns a tuple that includes:
542
+ * - A mutate function that you can call at any time to execute the mutation
543
+ * - An object with fields that represent the current status of the mutation's execution
544
+ *
545
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
546
+ *
547
+ * @example
548
+ * const [addTeamMembersMutation, { data, loading, error }] = useAddTeamMembersMutation({
549
+ * variables: {
550
+ * orgName: // value for 'orgName'
551
+ * teamName: // value for 'teamName'
552
+ * memberIds: // value for 'memberIds'
553
+ * },
554
+ * });
555
+ */
556
+ function useAddTeamMembersMutation(baseOptions) {
557
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
558
+ return Apollo.useMutation(exports.AddTeamMembersDocument, options);
559
+ }
560
+ exports.useAddTeamMembersMutation = useAddTeamMembersMutation;
561
+ exports.ChangeMemberRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "changeMemberRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "memberId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "role" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "changeMemberRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "teamName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "memberId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "memberId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "role" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "role" } } }] }] } }] };
562
+ /**
563
+ * __useChangeMemberRoleMutation__
564
+ *
565
+ * To run a mutation, you first call `useChangeMemberRoleMutation` within a React component and pass it any options that fit your needs.
566
+ * When your component renders, `useChangeMemberRoleMutation` returns a tuple that includes:
567
+ * - A mutate function that you can call at any time to execute the mutation
568
+ * - An object with fields that represent the current status of the mutation's execution
569
+ *
570
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
571
+ *
572
+ * @example
573
+ * const [changeMemberRoleMutation, { data, loading, error }] = useChangeMemberRoleMutation({
574
+ * variables: {
575
+ * orgName: // value for 'orgName'
576
+ * teamName: // value for 'teamName'
577
+ * memberId: // value for 'memberId'
578
+ * role: // value for 'role'
579
+ * },
580
+ * });
581
+ */
582
+ function useChangeMemberRoleMutation(baseOptions) {
583
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
584
+ return Apollo.useMutation(exports.ChangeMemberRoleDocument, options);
585
+ }
586
+ exports.useChangeMemberRoleMutation = useChangeMemberRoleMutation;
587
+ exports.ChangeOrgMemberRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "changeOrgMemberRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "role" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ApplicationRoles" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "changeOrgMemberRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "role" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "role" } } }] }] } }] };
588
+ /**
589
+ * __useChangeOrgMemberRoleMutation__
590
+ *
591
+ * To run a mutation, you first call `useChangeOrgMemberRoleMutation` within a React component and pass it any options that fit your needs.
592
+ * When your component renders, `useChangeOrgMemberRoleMutation` returns a tuple that includes:
593
+ * - A mutate function that you can call at any time to execute the mutation
594
+ * - An object with fields that represent the current status of the mutation's execution
595
+ *
596
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
597
+ *
598
+ * @example
599
+ * const [changeOrgMemberRoleMutation, { data, loading, error }] = useChangeOrgMemberRoleMutation({
600
+ * variables: {
601
+ * userId: // value for 'userId'
602
+ * role: // value for 'role'
603
+ * },
604
+ * });
605
+ */
606
+ function useChangeOrgMemberRoleMutation(baseOptions) {
607
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
608
+ return Apollo.useMutation(exports.ChangeOrgMemberRoleDocument, options);
609
+ }
610
+ exports.useChangeOrgMemberRoleMutation = useChangeOrgMemberRoleMutation;
611
+ exports.CreateOrganizationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "createOrganization" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "organization" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationCreateRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createOrganization" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "organization" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "organization" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "picture" } }, { "kind": "Field", "name": { "kind": "Name", "value": "namespace" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgUserCount" } }] } }] } }] };
612
+ /**
613
+ * __useCreateOrganizationMutation__
614
+ *
615
+ * To run a mutation, you first call `useCreateOrganizationMutation` within a React component and pass it any options that fit your needs.
616
+ * When your component renders, `useCreateOrganizationMutation` returns a tuple that includes:
617
+ * - A mutate function that you can call at any time to execute the mutation
618
+ * - An object with fields that represent the current status of the mutation's execution
619
+ *
620
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
621
+ *
622
+ * @example
623
+ * const [createOrganizationMutation, { data, loading, error }] = useCreateOrganizationMutation({
624
+ * variables: {
625
+ * organization: // value for 'organization'
626
+ * },
627
+ * });
628
+ */
629
+ function useCreateOrganizationMutation(baseOptions) {
630
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
631
+ return Apollo.useMutation(exports.CreateOrganizationDocument, options);
632
+ }
633
+ exports.useCreateOrganizationMutation = useCreateOrganizationMutation;
634
+ exports.CreateTeamDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "createTeam" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "TeamCreationRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createTeam" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "request" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }] } }] } }] };
635
+ /**
636
+ * __useCreateTeamMutation__
637
+ *
638
+ * To run a mutation, you first call `useCreateTeamMutation` within a React component and pass it any options that fit your needs.
639
+ * When your component renders, `useCreateTeamMutation` returns a tuple that includes:
640
+ * - A mutate function that you can call at any time to execute the mutation
641
+ * - An object with fields that represent the current status of the mutation's execution
642
+ *
643
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
644
+ *
645
+ * @example
646
+ * const [createTeamMutation, { data, loading, error }] = useCreateTeamMutation({
647
+ * variables: {
648
+ * request: // value for 'request'
649
+ * },
650
+ * });
651
+ */
652
+ function useCreateTeamMutation(baseOptions) {
653
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
654
+ return Apollo.useMutation(exports.CreateTeamDocument, options);
655
+ }
656
+ exports.useCreateTeamMutation = useCreateTeamMutation;
657
+ exports.DeclineOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "DeclineOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ID" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "declineOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "id" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } } }] }] } }] };
658
+ /**
659
+ * __useDeclineOrganizationInvitationMutation__
660
+ *
661
+ * To run a mutation, you first call `useDeclineOrganizationInvitationMutation` within a React component and pass it any options that fit your needs.
662
+ * When your component renders, `useDeclineOrganizationInvitationMutation` returns a tuple that includes:
663
+ * - A mutate function that you can call at any time to execute the mutation
664
+ * - An object with fields that represent the current status of the mutation's execution
665
+ *
666
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
667
+ *
668
+ * @example
669
+ * const [declineOrganizationInvitationMutation, { data, loading, error }] = useDeclineOrganizationInvitationMutation({
670
+ * variables: {
671
+ * id: // value for 'id'
672
+ * },
673
+ * });
674
+ */
675
+ function useDeclineOrganizationInvitationMutation(baseOptions) {
676
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
677
+ return Apollo.useMutation(exports.DeclineOrganizationInvitationDocument, options);
678
+ }
679
+ exports.useDeclineOrganizationInvitationMutation = useDeclineOrganizationInvitationMutation;
680
+ exports.DeleteUserAccountDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "deleteUserAccount" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "deleteUserAccount" } }] } }] };
681
+ /**
682
+ * __useDeleteUserAccountMutation__
683
+ *
684
+ * To run a mutation, you first call `useDeleteUserAccountMutation` within a React component and pass it any options that fit your needs.
685
+ * When your component renders, `useDeleteUserAccountMutation` returns a tuple that includes:
686
+ * - A mutate function that you can call at any time to execute the mutation
687
+ * - An object with fields that represent the current status of the mutation's execution
688
+ *
689
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
690
+ *
691
+ * @example
692
+ * const [deleteUserAccountMutation, { data, loading, error }] = useDeleteUserAccountMutation({
693
+ * variables: {
694
+ * },
695
+ * });
696
+ */
697
+ function useDeleteUserAccountMutation(baseOptions) {
698
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
699
+ return Apollo.useMutation(exports.DeleteUserAccountDocument, options);
700
+ }
701
+ exports.useDeleteUserAccountMutation = useDeleteUserAccountMutation;
702
+ exports.RegisterAccountUserDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "registerAccountUser" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userInfo" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserAuth0UpdateFields" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "registerAccountUser" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userInfo" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userInfo" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "username" } }] } }] } }] };
703
+ /**
704
+ * __useRegisterAccountUserMutation__
705
+ *
706
+ * To run a mutation, you first call `useRegisterAccountUserMutation` within a React component and pass it any options that fit your needs.
707
+ * When your component renders, `useRegisterAccountUserMutation` returns a tuple that includes:
708
+ * - A mutate function that you can call at any time to execute the mutation
709
+ * - An object with fields that represent the current status of the mutation's execution
710
+ *
711
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
712
+ *
713
+ * @example
714
+ * const [registerAccountUserMutation, { data, loading, error }] = useRegisterAccountUserMutation({
715
+ * variables: {
716
+ * userInfo: // value for 'userInfo'
717
+ * },
718
+ * });
719
+ */
720
+ function useRegisterAccountUserMutation(baseOptions) {
721
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
722
+ return Apollo.useMutation(exports.RegisterAccountUserDocument, options);
723
+ }
724
+ exports.useRegisterAccountUserMutation = useRegisterAccountUserMutation;
725
+ exports.RemoveOrgMemberDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "RemoveOrgMember" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "memberId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "removeOrgMember" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "memberId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "memberId" } } }] }] } }] };
726
+ /**
727
+ * __useRemoveOrgMemberMutation__
728
+ *
729
+ * To run a mutation, you first call `useRemoveOrgMemberMutation` within a React component and pass it any options that fit your needs.
730
+ * When your component renders, `useRemoveOrgMemberMutation` returns a tuple that includes:
731
+ * - A mutate function that you can call at any time to execute the mutation
732
+ * - An object with fields that represent the current status of the mutation's execution
733
+ *
734
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
735
+ *
736
+ * @example
737
+ * const [removeOrgMemberMutation, { data, loading, error }] = useRemoveOrgMemberMutation({
738
+ * variables: {
739
+ * memberId: // value for 'memberId'
740
+ * },
741
+ * });
742
+ */
743
+ function useRemoveOrgMemberMutation(baseOptions) {
744
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
745
+ return Apollo.useMutation(exports.RemoveOrgMemberDocument, options);
746
+ }
747
+ exports.useRemoveOrgMemberMutation = useRemoveOrgMemberMutation;
748
+ exports.RemoveOrganizationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "removeOrganization" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "organization" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRemoveRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "removeOrganization" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "organization" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "organization" } } }] }] } }] };
749
+ /**
750
+ * __useRemoveOrganizationMutation__
751
+ *
752
+ * To run a mutation, you first call `useRemoveOrganizationMutation` within a React component and pass it any options that fit your needs.
753
+ * When your component renders, `useRemoveOrganizationMutation` returns a tuple that includes:
754
+ * - A mutate function that you can call at any time to execute the mutation
755
+ * - An object with fields that represent the current status of the mutation's execution
756
+ *
757
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
758
+ *
759
+ * @example
760
+ * const [removeOrganizationMutation, { data, loading, error }] = useRemoveOrganizationMutation({
761
+ * variables: {
762
+ * organization: // value for 'organization'
763
+ * },
764
+ * });
765
+ */
766
+ function useRemoveOrganizationMutation(baseOptions) {
767
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
768
+ return Apollo.useMutation(exports.RemoveOrganizationDocument, options);
769
+ }
770
+ exports.useRemoveOrganizationMutation = useRemoveOrganizationMutation;
771
+ exports.RemoveTeamDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "removeTeam" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "removeTeam" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "teamId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamId" } } }] }] } }] };
772
+ /**
773
+ * __useRemoveTeamMutation__
774
+ *
775
+ * To run a mutation, you first call `useRemoveTeamMutation` within a React component and pass it any options that fit your needs.
776
+ * When your component renders, `useRemoveTeamMutation` returns a tuple that includes:
777
+ * - A mutate function that you can call at any time to execute the mutation
778
+ * - An object with fields that represent the current status of the mutation's execution
779
+ *
780
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
781
+ *
782
+ * @example
783
+ * const [removeTeamMutation, { data, loading, error }] = useRemoveTeamMutation({
784
+ * variables: {
785
+ * teamId: // value for 'teamId'
786
+ * },
787
+ * });
788
+ */
789
+ function useRemoveTeamMutation(baseOptions) {
790
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
791
+ return Apollo.useMutation(exports.RemoveTeamDocument, options);
792
+ }
793
+ exports.useRemoveTeamMutation = useRemoveTeamMutation;
794
+ exports.RemoveTeamMemberDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "RemoveTeamMember" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "memberId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "removeTeamMember" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "teamName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "memberId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "memberId" } } }] }] } }] };
795
+ /**
796
+ * __useRemoveTeamMemberMutation__
797
+ *
798
+ * To run a mutation, you first call `useRemoveTeamMemberMutation` within a React component and pass it any options that fit your needs.
799
+ * When your component renders, `useRemoveTeamMemberMutation` returns a tuple that includes:
800
+ * - A mutate function that you can call at any time to execute the mutation
801
+ * - An object with fields that represent the current status of the mutation's execution
802
+ *
803
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
804
+ *
805
+ * @example
806
+ * const [removeTeamMemberMutation, { data, loading, error }] = useRemoveTeamMemberMutation({
807
+ * variables: {
808
+ * orgName: // value for 'orgName'
809
+ * teamName: // value for 'teamName'
810
+ * memberId: // value for 'memberId'
811
+ * },
812
+ * });
813
+ */
814
+ function useRemoveTeamMemberMutation(baseOptions) {
815
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
816
+ return Apollo.useMutation(exports.RemoveTeamMemberDocument, options);
817
+ }
818
+ exports.useRemoveTeamMemberMutation = useRemoveTeamMemberMutation;
819
+ exports.ResendOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "ResendOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ID" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resendOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "id" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } } }] }] } }] };
820
+ /**
821
+ * __useResendOrganizationInvitationMutation__
822
+ *
823
+ * To run a mutation, you first call `useResendOrganizationInvitationMutation` within a React component and pass it any options that fit your needs.
824
+ * When your component renders, `useResendOrganizationInvitationMutation` returns a tuple that includes:
825
+ * - A mutate function that you can call at any time to execute the mutation
826
+ * - An object with fields that represent the current status of the mutation's execution
827
+ *
828
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
829
+ *
830
+ * @example
831
+ * const [resendOrganizationInvitationMutation, { data, loading, error }] = useResendOrganizationInvitationMutation({
832
+ * variables: {
833
+ * id: // value for 'id'
834
+ * },
835
+ * });
836
+ */
837
+ function useResendOrganizationInvitationMutation(baseOptions) {
838
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
839
+ return Apollo.useMutation(exports.ResendOrganizationInvitationDocument, options);
840
+ }
841
+ exports.useResendOrganizationInvitationMutation = useResendOrganizationInvitationMutation;
842
+ exports.ResendUserEmailVerificationEmailDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "ResendUserEmailVerificationEmail" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resendUserEmailVerificationEmail" } }] } }] };
843
+ /**
844
+ * __useResendUserEmailVerificationEmailMutation__
845
+ *
846
+ * To run a mutation, you first call `useResendUserEmailVerificationEmailMutation` within a React component and pass it any options that fit your needs.
847
+ * When your component renders, `useResendUserEmailVerificationEmailMutation` returns a tuple that includes:
848
+ * - A mutate function that you can call at any time to execute the mutation
849
+ * - An object with fields that represent the current status of the mutation's execution
850
+ *
851
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
852
+ *
853
+ * @example
854
+ * const [resendUserEmailVerificationEmailMutation, { data, loading, error }] = useResendUserEmailVerificationEmailMutation({
855
+ * variables: {
856
+ * },
857
+ * });
858
+ */
859
+ function useResendUserEmailVerificationEmailMutation(baseOptions) {
860
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
861
+ return Apollo.useMutation(exports.ResendUserEmailVerificationEmailDocument, options);
862
+ }
863
+ exports.useResendUserEmailVerificationEmailMutation = useResendUserEmailVerificationEmailMutation;
864
+ exports.ResetUserPasswordDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "ResetUserPassword" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserPasswordResetInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resetUserPassword" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }] }] } }] };
865
+ /**
866
+ * __useResetUserPasswordMutation__
867
+ *
868
+ * To run a mutation, you first call `useResetUserPasswordMutation` within a React component and pass it any options that fit your needs.
869
+ * When your component renders, `useResetUserPasswordMutation` returns a tuple that includes:
870
+ * - A mutate function that you can call at any time to execute the mutation
871
+ * - An object with fields that represent the current status of the mutation's execution
872
+ *
873
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
874
+ *
875
+ * @example
876
+ * const [resetUserPasswordMutation, { data, loading, error }] = useResetUserPasswordMutation({
877
+ * variables: {
878
+ * input: // value for 'input'
879
+ * },
880
+ * });
881
+ */
882
+ function useResetUserPasswordMutation(baseOptions) {
883
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
884
+ return Apollo.useMutation(exports.ResetUserPasswordDocument, options);
885
+ }
886
+ exports.useResetUserPasswordMutation = useResetUserPasswordMutation;
887
+ exports.SendUserPasswordResetEmailDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "SendUserPasswordResetEmail" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "email" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sendUserPasswordResetEmail" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "email" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "email" } } }] }] } }] };
888
+ /**
889
+ * __useSendUserPasswordResetEmailMutation__
890
+ *
891
+ * To run a mutation, you first call `useSendUserPasswordResetEmailMutation` within a React component and pass it any options that fit your needs.
892
+ * When your component renders, `useSendUserPasswordResetEmailMutation` returns a tuple that includes:
893
+ * - A mutate function that you can call at any time to execute the mutation
894
+ * - An object with fields that represent the current status of the mutation's execution
895
+ *
896
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
897
+ *
898
+ * @example
899
+ * const [sendUserPasswordResetEmailMutation, { data, loading, error }] = useSendUserPasswordResetEmailMutation({
900
+ * variables: {
901
+ * email: // value for 'email'
902
+ * },
903
+ * });
904
+ */
905
+ function useSendUserPasswordResetEmailMutation(baseOptions) {
906
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
907
+ return Apollo.useMutation(exports.SendUserPasswordResetEmailDocument, options);
908
+ }
909
+ exports.useSendUserPasswordResetEmailMutation = useSendUserPasswordResetEmailMutation;
910
+ exports.SendOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "sendOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationInvitationRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sendOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "request" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } } }] }] } }] };
911
+ /**
912
+ * __useSendOrganizationInvitationMutation__
913
+ *
914
+ * To run a mutation, you first call `useSendOrganizationInvitationMutation` within a React component and pass it any options that fit your needs.
915
+ * When your component renders, `useSendOrganizationInvitationMutation` returns a tuple that includes:
916
+ * - A mutate function that you can call at any time to execute the mutation
917
+ * - An object with fields that represent the current status of the mutation's execution
918
+ *
919
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
920
+ *
921
+ * @example
922
+ * const [sendOrganizationInvitationMutation, { data, loading, error }] = useSendOrganizationInvitationMutation({
923
+ * variables: {
924
+ * request: // value for 'request'
925
+ * },
926
+ * });
927
+ */
928
+ function useSendOrganizationInvitationMutation(baseOptions) {
929
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
930
+ return Apollo.useMutation(exports.SendOrganizationInvitationDocument, options);
931
+ }
932
+ exports.useSendOrganizationInvitationMutation = useSendOrganizationInvitationMutation;
933
+ exports.UpdateOrgMemberTeamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateOrgMemberTeams" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "addToTeams" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "removeFromTeams" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateOrgMemberTeams" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "addToTeams" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "addToTeams" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "removeFromTeams" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "removeFromTeams" } } }] }] } }] };
934
+ /**
935
+ * __useUpdateOrgMemberTeamsMutation__
936
+ *
937
+ * To run a mutation, you first call `useUpdateOrgMemberTeamsMutation` within a React component and pass it any options that fit your needs.
938
+ * When your component renders, `useUpdateOrgMemberTeamsMutation` returns a tuple that includes:
939
+ * - A mutate function that you can call at any time to execute the mutation
940
+ * - An object with fields that represent the current status of the mutation's execution
941
+ *
942
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
943
+ *
944
+ * @example
945
+ * const [updateOrgMemberTeamsMutation, { data, loading, error }] = useUpdateOrgMemberTeamsMutation({
946
+ * variables: {
947
+ * userId: // value for 'userId'
948
+ * orgName: // value for 'orgName'
949
+ * addToTeams: // value for 'addToTeams'
950
+ * removeFromTeams: // value for 'removeFromTeams'
951
+ * },
952
+ * });
953
+ */
954
+ function useUpdateOrgMemberTeamsMutation(baseOptions) {
955
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
956
+ return Apollo.useMutation(exports.UpdateOrgMemberTeamsDocument, options);
957
+ }
958
+ exports.useUpdateOrgMemberTeamsMutation = useUpdateOrgMemberTeamsMutation;
959
+ exports.UpdateOrganizationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateOrganization" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "organization" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationUpdateRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateOrganization" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "organization" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "organization" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "picture" } }, { "kind": "Field", "name": { "kind": "Name", "value": "namespace" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgUserCount" } }] } }] } }] };
960
+ /**
961
+ * __useUpdateOrganizationMutation__
962
+ *
963
+ * To run a mutation, you first call `useUpdateOrganizationMutation` within a React component and pass it any options that fit your needs.
964
+ * When your component renders, `useUpdateOrganizationMutation` returns a tuple that includes:
965
+ * - A mutate function that you can call at any time to execute the mutation
966
+ * - An object with fields that represent the current status of the mutation's execution
967
+ *
968
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
969
+ *
970
+ * @example
971
+ * const [updateOrganizationMutation, { data, loading, error }] = useUpdateOrganizationMutation({
972
+ * variables: {
973
+ * organization: // value for 'organization'
974
+ * },
975
+ * });
976
+ */
977
+ function useUpdateOrganizationMutation(baseOptions) {
978
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
979
+ return Apollo.useMutation(exports.UpdateOrganizationDocument, options);
980
+ }
981
+ exports.useUpdateOrganizationMutation = useUpdateOrganizationMutation;
982
+ exports.UpdateTeamConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateTeamConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateConfigurationValue" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }] }] } }] };
983
+ /**
984
+ * __useUpdateTeamConfigurationMutation__
985
+ *
986
+ * To run a mutation, you first call `useUpdateTeamConfigurationMutation` within a React component and pass it any options that fit your needs.
987
+ * When your component renders, `useUpdateTeamConfigurationMutation` returns a tuple that includes:
988
+ * - A mutate function that you can call at any time to execute the mutation
989
+ * - An object with fields that represent the current status of the mutation's execution
990
+ *
991
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
992
+ *
993
+ * @example
994
+ * const [updateTeamConfigurationMutation, { data, loading, error }] = useUpdateTeamConfigurationMutation({
995
+ * variables: {
996
+ * key: // value for 'key'
997
+ * value: // value for 'value'
998
+ * overrides: // value for 'overrides'
999
+ * target: // value for 'target'
1000
+ * donotNotifyError: // value for 'donotNotifyError'
1001
+ * },
1002
+ * });
1003
+ */
1004
+ function useUpdateTeamConfigurationMutation(baseOptions) {
1005
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1006
+ return Apollo.useMutation(exports.UpdateTeamConfigurationDocument, options);
1007
+ }
1008
+ exports.useUpdateTeamConfigurationMutation = useUpdateTeamConfigurationMutation;
1009
+ exports.UpdateUserAccountDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateUserAccount" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userInfo" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserAuth0UpdateFields" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateUserAccount" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userInfo" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userInfo" } } }] }] } }] };
1010
+ /**
1011
+ * __useUpdateUserAccountMutation__
1012
+ *
1013
+ * To run a mutation, you first call `useUpdateUserAccountMutation` within a React component and pass it any options that fit your needs.
1014
+ * When your component renders, `useUpdateUserAccountMutation` returns a tuple that includes:
1015
+ * - A mutate function that you can call at any time to execute the mutation
1016
+ * - An object with fields that represent the current status of the mutation's execution
1017
+ *
1018
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1019
+ *
1020
+ * @example
1021
+ * const [updateUserAccountMutation, { data, loading, error }] = useUpdateUserAccountMutation({
1022
+ * variables: {
1023
+ * userInfo: // value for 'userInfo'
1024
+ * },
1025
+ * });
1026
+ */
1027
+ function useUpdateUserAccountMutation(baseOptions) {
1028
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1029
+ return Apollo.useMutation(exports.UpdateUserAccountDocument, options);
1030
+ }
1031
+ exports.useUpdateUserAccountMutation = useUpdateUserAccountMutation;
1032
+ exports.VerifyUserEmailVerificationTokenDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "VerifyUserEmailVerificationToken" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "token" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "verifyUserEmailVerificationToken" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "token" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "token" } } }] }] } }] };
1033
+ /**
1034
+ * __useVerifyUserEmailVerificationTokenMutation__
1035
+ *
1036
+ * To run a mutation, you first call `useVerifyUserEmailVerificationTokenMutation` within a React component and pass it any options that fit your needs.
1037
+ * When your component renders, `useVerifyUserEmailVerificationTokenMutation` returns a tuple that includes:
1038
+ * - A mutate function that you can call at any time to execute the mutation
1039
+ * - An object with fields that represent the current status of the mutation's execution
1040
+ *
1041
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1042
+ *
1043
+ * @example
1044
+ * const [verifyUserEmailVerificationTokenMutation, { data, loading, error }] = useVerifyUserEmailVerificationTokenMutation({
1045
+ * variables: {
1046
+ * token: // value for 'token'
1047
+ * },
1048
+ * });
1049
+ */
1050
+ function useVerifyUserEmailVerificationTokenMutation(baseOptions) {
1051
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1052
+ return Apollo.useMutation(exports.VerifyUserEmailVerificationTokenDocument, options);
1053
+ }
1054
+ exports.useVerifyUserEmailVerificationTokenMutation = useVerifyUserEmailVerificationTokenMutation;
1055
+ exports.GetUserOrganizationsListDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserOrganizationsList" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
1056
+ /**
1057
+ * __useGetUserOrganizationsListQuery__
1058
+ *
1059
+ * To run a query within a React component, call `useGetUserOrganizationsListQuery` and pass it any options that fit your needs.
1060
+ * When your component renders, `useGetUserOrganizationsListQuery` returns an object from Apollo Client that contains loading, error, and data properties
1061
+ * you can use to render your UI.
1062
+ *
1063
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1064
+ *
1065
+ * @example
1066
+ * const { data, loading, error } = useGetUserOrganizationsListQuery({
1067
+ * variables: {
1068
+ * },
1069
+ * });
1070
+ */
1071
+ function useGetUserOrganizationsListQuery(baseOptions) {
1072
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1073
+ return Apollo.useQuery(exports.GetUserOrganizationsListDocument, options);
1074
+ }
1075
+ exports.useGetUserOrganizationsListQuery = useGetUserOrganizationsListQuery;
1076
+ function useGetUserOrganizationsListLazyQuery(baseOptions) {
1077
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1078
+ return Apollo.useLazyQuery(exports.GetUserOrganizationsListDocument, options);
1079
+ }
1080
+ exports.useGetUserOrganizationsListLazyQuery = useGetUserOrganizationsListLazyQuery;
1081
+ exports.DecodeOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "DecodeOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "token" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "decodeOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "token" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "token" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "invitationId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "invitedBy" } }] } }] } }] };
1082
+ /**
1083
+ * __useDecodeOrganizationInvitationQuery__
1084
+ *
1085
+ * To run a query within a React component, call `useDecodeOrganizationInvitationQuery` and pass it any options that fit your needs.
1086
+ * When your component renders, `useDecodeOrganizationInvitationQuery` returns an object from Apollo Client that contains loading, error, and data properties
1087
+ * you can use to render your UI.
1088
+ *
1089
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1090
+ *
1091
+ * @example
1092
+ * const { data, loading, error } = useDecodeOrganizationInvitationQuery({
1093
+ * variables: {
1094
+ * token: // value for 'token'
1095
+ * },
1096
+ * });
1097
+ */
1098
+ function useDecodeOrganizationInvitationQuery(baseOptions) {
1099
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1100
+ return Apollo.useQuery(exports.DecodeOrganizationInvitationDocument, options);
1101
+ }
1102
+ exports.useDecodeOrganizationInvitationQuery = useDecodeOrganizationInvitationQuery;
1103
+ function useDecodeOrganizationInvitationLazyQuery(baseOptions) {
1104
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1105
+ return Apollo.useLazyQuery(exports.DecodeOrganizationInvitationDocument, options);
1106
+ }
1107
+ exports.useDecodeOrganizationInvitationLazyQuery = useDecodeOrganizationInvitationLazyQuery;
1108
+ exports.GetAccountsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAccounts" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserAccountWhere" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getAccounts" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "username" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }] } }] } }] };
1109
+ /**
1110
+ * __useGetAccountsQuery__
1111
+ *
1112
+ * To run a query within a React component, call `useGetAccountsQuery` and pass it any options that fit your needs.
1113
+ * When your component renders, `useGetAccountsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1114
+ * you can use to render your UI.
1115
+ *
1116
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1117
+ *
1118
+ * @example
1119
+ * const { data, loading, error } = useGetAccountsQuery({
1120
+ * variables: {
1121
+ * where: // value for 'where'
1122
+ * },
1123
+ * });
1124
+ */
1125
+ function useGetAccountsQuery(baseOptions) {
1126
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1127
+ return Apollo.useQuery(exports.GetAccountsDocument, options);
1128
+ }
1129
+ exports.useGetAccountsQuery = useGetAccountsQuery;
1130
+ function useGetAccountsLazyQuery(baseOptions) {
1131
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1132
+ return Apollo.useLazyQuery(exports.GetAccountsDocument, options);
1133
+ }
1134
+ exports.useGetAccountsLazyQuery = useGetAccountsLazyQuery;
1135
+ exports.GetAllCountriesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAllCountries" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "criteria" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "JSON" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getAllCountries" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "criteria" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "criteria" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "phoneCode" } }] } }] } }] };
1136
+ /**
1137
+ * __useGetAllCountriesQuery__
1138
+ *
1139
+ * To run a query within a React component, call `useGetAllCountriesQuery` and pass it any options that fit your needs.
1140
+ * When your component renders, `useGetAllCountriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1141
+ * you can use to render your UI.
1142
+ *
1143
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1144
+ *
1145
+ * @example
1146
+ * const { data, loading, error } = useGetAllCountriesQuery({
1147
+ * variables: {
1148
+ * criteria: // value for 'criteria'
1149
+ * },
1150
+ * });
1151
+ */
1152
+ function useGetAllCountriesQuery(baseOptions) {
1153
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1154
+ return Apollo.useQuery(exports.GetAllCountriesDocument, options);
1155
+ }
1156
+ exports.useGetAllCountriesQuery = useGetAllCountriesQuery;
1157
+ function useGetAllCountriesLazyQuery(baseOptions) {
1158
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1159
+ return Apollo.useLazyQuery(exports.GetAllCountriesDocument, options);
1160
+ }
1161
+ exports.useGetAllCountriesLazyQuery = useGetAllCountriesLazyQuery;
1162
+ exports.GetManageableOrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetManageableOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getManageableOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
1163
+ /**
1164
+ * __useGetManageableOrganizationsQuery__
1165
+ *
1166
+ * To run a query within a React component, call `useGetManageableOrganizationsQuery` and pass it any options that fit your needs.
1167
+ * When your component renders, `useGetManageableOrganizationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1168
+ * you can use to render your UI.
1169
+ *
1170
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1171
+ *
1172
+ * @example
1173
+ * const { data, loading, error } = useGetManageableOrganizationsQuery({
1174
+ * variables: {
1175
+ * },
1176
+ * });
1177
+ */
1178
+ function useGetManageableOrganizationsQuery(baseOptions) {
1179
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1180
+ return Apollo.useQuery(exports.GetManageableOrganizationsDocument, options);
1181
+ }
1182
+ exports.useGetManageableOrganizationsQuery = useGetManageableOrganizationsQuery;
1183
+ function useGetManageableOrganizationsLazyQuery(baseOptions) {
1184
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1185
+ return Apollo.useLazyQuery(exports.GetManageableOrganizationsDocument, options);
1186
+ }
1187
+ exports.useGetManageableOrganizationsLazyQuery = useGetManageableOrganizationsLazyQuery;
1188
+ exports.GetOrgInvitationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgInvitationMembers" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgInvitationMembers" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
1189
+ /**
1190
+ * __useGetOrgInvitationMembersQuery__
1191
+ *
1192
+ * To run a query within a React component, call `useGetOrgInvitationMembersQuery` and pass it any options that fit your needs.
1193
+ * When your component renders, `useGetOrgInvitationMembersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1194
+ * you can use to render your UI.
1195
+ *
1196
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1197
+ *
1198
+ * @example
1199
+ * const { data, loading, error } = useGetOrgInvitationMembersQuery({
1200
+ * variables: {
1201
+ * offset: // value for 'offset'
1202
+ * limit: // value for 'limit'
1203
+ * },
1204
+ * });
1205
+ */
1206
+ function useGetOrgInvitationMembersQuery(baseOptions) {
1207
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1208
+ return Apollo.useQuery(exports.GetOrgInvitationMembersDocument, options);
1209
+ }
1210
+ exports.useGetOrgInvitationMembersQuery = useGetOrgInvitationMembersQuery;
1211
+ function useGetOrgInvitationMembersLazyQuery(baseOptions) {
1212
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1213
+ return Apollo.useLazyQuery(exports.GetOrgInvitationMembersDocument, options);
1214
+ }
1215
+ exports.useGetOrgInvitationMembersLazyQuery = useGetOrgInvitationMembersLazyQuery;
1216
+ exports.GetOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ID" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "id" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "id" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "active" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fullName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inviteCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tokenExpiration" } }] } }] } }] };
1217
+ /**
1218
+ * __useGetOrganizationInvitationQuery__
1219
+ *
1220
+ * To run a query within a React component, call `useGetOrganizationInvitationQuery` and pass it any options that fit your needs.
1221
+ * When your component renders, `useGetOrganizationInvitationQuery` returns an object from Apollo Client that contains loading, error, and data properties
1222
+ * you can use to render your UI.
1223
+ *
1224
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1225
+ *
1226
+ * @example
1227
+ * const { data, loading, error } = useGetOrganizationInvitationQuery({
1228
+ * variables: {
1229
+ * id: // value for 'id'
1230
+ * },
1231
+ * });
1232
+ */
1233
+ function useGetOrganizationInvitationQuery(baseOptions) {
1234
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1235
+ return Apollo.useQuery(exports.GetOrganizationInvitationDocument, options);
1236
+ }
1237
+ exports.useGetOrganizationInvitationQuery = useGetOrganizationInvitationQuery;
1238
+ function useGetOrganizationInvitationLazyQuery(baseOptions) {
1239
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1240
+ return Apollo.useLazyQuery(exports.GetOrganizationInvitationDocument, options);
1241
+ }
1242
+ exports.useGetOrganizationInvitationLazyQuery = useGetOrganizationInvitationLazyQuery;
1243
+ exports.GetOrgTeamInvitationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getOrgTeamInvitations" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgTeamInvitations" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "teamId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "active" } }, { "kind": "Field", "name": { "kind": "Name", "value": "fullName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inviteCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "invitedBy" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tokenExpiration" } }] } }] } }] };
1244
+ /**
1245
+ * __useGetOrgTeamInvitationsQuery__
1246
+ *
1247
+ * To run a query within a React component, call `useGetOrgTeamInvitationsQuery` and pass it any options that fit your needs.
1248
+ * When your component renders, `useGetOrgTeamInvitationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1249
+ * you can use to render your UI.
1250
+ *
1251
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1252
+ *
1253
+ * @example
1254
+ * const { data, loading, error } = useGetOrgTeamInvitationsQuery({
1255
+ * variables: {
1256
+ * teamId: // value for 'teamId'
1257
+ * },
1258
+ * });
1259
+ */
1260
+ function useGetOrgTeamInvitationsQuery(baseOptions) {
1261
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1262
+ return Apollo.useQuery(exports.GetOrgTeamInvitationsDocument, options);
1263
+ }
1264
+ exports.useGetOrgTeamInvitationsQuery = useGetOrgTeamInvitationsQuery;
1265
+ function useGetOrgTeamInvitationsLazyQuery(baseOptions) {
1266
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1267
+ return Apollo.useLazyQuery(exports.GetOrgTeamInvitationsDocument, options);
1268
+ }
1269
+ exports.useGetOrgTeamInvitationsLazyQuery = useGetOrgTeamInvitationsLazyQuery;
1270
+ exports.GetOrgUserDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgUser" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgUser" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
1271
+ /**
1272
+ * __useGetOrgUserQuery__
1273
+ *
1274
+ * To run a query within a React component, call `useGetOrgUserQuery` and pass it any options that fit your needs.
1275
+ * When your component renders, `useGetOrgUserQuery` returns an object from Apollo Client that contains loading, error, and data properties
1276
+ * you can use to render your UI.
1277
+ *
1278
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1279
+ *
1280
+ * @example
1281
+ * const { data, loading, error } = useGetOrgUserQuery({
1282
+ * variables: {
1283
+ * userId: // value for 'userId'
1284
+ * },
1285
+ * });
1286
+ */
1287
+ function useGetOrgUserQuery(baseOptions) {
1288
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1289
+ return Apollo.useQuery(exports.GetOrgUserDocument, options);
1290
+ }
1291
+ exports.useGetOrgUserQuery = useGetOrgUserQuery;
1292
+ function useGetOrgUserLazyQuery(baseOptions) {
1293
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1294
+ return Apollo.useLazyQuery(exports.GetOrgUserDocument, options);
1295
+ }
1296
+ exports.useGetOrgUserLazyQuery = useGetOrgUserLazyQuery;
1297
+ exports.GetOrganizationMembersWithNameDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationMembersWithName" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgDetailWhere" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationDetail" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }, { "kind": "Field", "name": { "kind": "Name", "value": "crossCheckEmail" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "user" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "alias" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "username" } }, { "kind": "Field", "name": { "kind": "Name", "value": "emailVerified" } }] } }] } }] } }] } }] };
1298
+ /**
1299
+ * __useGetOrganizationMembersWithNameQuery__
1300
+ *
1301
+ * To run a query within a React component, call `useGetOrganizationMembersWithNameQuery` and pass it any options that fit your needs.
1302
+ * When your component renders, `useGetOrganizationMembersWithNameQuery` returns an object from Apollo Client that contains loading, error, and data properties
1303
+ * you can use to render your UI.
1304
+ *
1305
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1306
+ *
1307
+ * @example
1308
+ * const { data, loading, error } = useGetOrganizationMembersWithNameQuery({
1309
+ * variables: {
1310
+ * where: // value for 'where'
1311
+ * },
1312
+ * });
1313
+ */
1314
+ function useGetOrganizationMembersWithNameQuery(baseOptions) {
1315
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1316
+ return Apollo.useQuery(exports.GetOrganizationMembersWithNameDocument, options);
1317
+ }
1318
+ exports.useGetOrganizationMembersWithNameQuery = useGetOrganizationMembersWithNameQuery;
1319
+ function useGetOrganizationMembersWithNameLazyQuery(baseOptions) {
1320
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1321
+ return Apollo.useLazyQuery(exports.GetOrganizationMembersWithNameDocument, options);
1322
+ }
1323
+ exports.useGetOrganizationMembersWithNameLazyQuery = useGetOrganizationMembersWithNameLazyQuery;
1324
+ exports.GetOrganizationTeamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getOrganizationTeams" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationTeams" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsUri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
1325
+ /**
1326
+ * __useGetOrganizationTeamsQuery__
1327
+ *
1328
+ * To run a query within a React component, call `useGetOrganizationTeamsQuery` and pass it any options that fit your needs.
1329
+ * When your component renders, `useGetOrganizationTeamsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1330
+ * you can use to render your UI.
1331
+ *
1332
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1333
+ *
1334
+ * @example
1335
+ * const { data, loading, error } = useGetOrganizationTeamsQuery({
1336
+ * variables: {
1337
+ * orgName: // value for 'orgName'
1338
+ * },
1339
+ * });
1340
+ */
1341
+ function useGetOrganizationTeamsQuery(baseOptions) {
1342
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1343
+ return Apollo.useQuery(exports.GetOrganizationTeamsDocument, options);
1344
+ }
1345
+ exports.useGetOrganizationTeamsQuery = useGetOrganizationTeamsQuery;
1346
+ function useGetOrganizationTeamsLazyQuery(baseOptions) {
1347
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1348
+ return Apollo.useLazyQuery(exports.GetOrganizationTeamsDocument, options);
1349
+ }
1350
+ exports.useGetOrganizationTeamsLazyQuery = useGetOrganizationTeamsLazyQuery;
1351
+ exports.GetTeamDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getTeam" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getTeam" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "teamName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsUri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "username" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
1352
+ /**
1353
+ * __useGetTeamQuery__
1354
+ *
1355
+ * To run a query within a React component, call `useGetTeamQuery` and pass it any options that fit your needs.
1356
+ * When your component renders, `useGetTeamQuery` returns an object from Apollo Client that contains loading, error, and data properties
1357
+ * you can use to render your UI.
1358
+ *
1359
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1360
+ *
1361
+ * @example
1362
+ * const { data, loading, error } = useGetTeamQuery({
1363
+ * variables: {
1364
+ * orgName: // value for 'orgName'
1365
+ * teamName: // value for 'teamName'
1366
+ * },
1367
+ * });
1368
+ */
1369
+ function useGetTeamQuery(baseOptions) {
1370
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1371
+ return Apollo.useQuery(exports.GetTeamDocument, options);
1372
+ }
1373
+ exports.useGetTeamQuery = useGetTeamQuery;
1374
+ function useGetTeamLazyQuery(baseOptions) {
1375
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1376
+ return Apollo.useLazyQuery(exports.GetTeamDocument, options);
1377
+ }
1378
+ exports.useGetTeamLazyQuery = useGetTeamLazyQuery;
1379
+ exports.GetTeamByNameDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getTeamByName" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getTeam" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "teamName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
1380
+ /**
1381
+ * __useGetTeamByNameQuery__
1382
+ *
1383
+ * To run a query within a React component, call `useGetTeamByNameQuery` and pass it any options that fit your needs.
1384
+ * When your component renders, `useGetTeamByNameQuery` returns an object from Apollo Client that contains loading, error, and data properties
1385
+ * you can use to render your UI.
1386
+ *
1387
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1388
+ *
1389
+ * @example
1390
+ * const { data, loading, error } = useGetTeamByNameQuery({
1391
+ * variables: {
1392
+ * orgName: // value for 'orgName'
1393
+ * teamName: // value for 'teamName'
1394
+ * },
1395
+ * });
1396
+ */
1397
+ function useGetTeamByNameQuery(baseOptions) {
1398
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1399
+ return Apollo.useQuery(exports.GetTeamByNameDocument, options);
1400
+ }
1401
+ exports.useGetTeamByNameQuery = useGetTeamByNameQuery;
1402
+ function useGetTeamByNameLazyQuery(baseOptions) {
1403
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1404
+ return Apollo.useLazyQuery(exports.GetTeamByNameDocument, options);
1405
+ }
1406
+ exports.useGetTeamByNameLazyQuery = useGetTeamByNameLazyQuery;
1407
+ exports.GetUserAccountDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserAccount" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserAccount" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "username" } }] } }] } }] };
1408
+ /**
1409
+ * __useGetUserAccountQuery__
1410
+ *
1411
+ * To run a query within a React component, call `useGetUserAccountQuery` and pass it any options that fit your needs.
1412
+ * When your component renders, `useGetUserAccountQuery` returns an object from Apollo Client that contains loading, error, and data properties
1413
+ * you can use to render your UI.
1414
+ *
1415
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1416
+ *
1417
+ * @example
1418
+ * const { data, loading, error } = useGetUserAccountQuery({
1419
+ * variables: {
1420
+ * userId: // value for 'userId'
1421
+ * },
1422
+ * });
1423
+ */
1424
+ function useGetUserAccountQuery(baseOptions) {
1425
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1426
+ return Apollo.useQuery(exports.GetUserAccountDocument, options);
1427
+ }
1428
+ exports.useGetUserAccountQuery = useGetUserAccountQuery;
1429
+ function useGetUserAccountLazyQuery(baseOptions) {
1430
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1431
+ return Apollo.useLazyQuery(exports.GetUserAccountDocument, options);
1432
+ }
1433
+ exports.useGetUserAccountLazyQuery = useGetUserAccountLazyQuery;
1434
+ exports.GetUserAccountByAuth0IdDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserAccountByAuth0Id" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userAuth0Id" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserAccountByAuth0Id" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userAuth0Id" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userAuth0Id" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "username" } }] } }] } }] };
1435
+ /**
1436
+ * __useGetUserAccountByAuth0IdQuery__
1437
+ *
1438
+ * To run a query within a React component, call `useGetUserAccountByAuth0IdQuery` and pass it any options that fit your needs.
1439
+ * When your component renders, `useGetUserAccountByAuth0IdQuery` returns an object from Apollo Client that contains loading, error, and data properties
1440
+ * you can use to render your UI.
1441
+ *
1442
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1443
+ *
1444
+ * @example
1445
+ * const { data, loading, error } = useGetUserAccountByAuth0IdQuery({
1446
+ * variables: {
1447
+ * userAuth0Id: // value for 'userAuth0Id'
1448
+ * },
1449
+ * });
1450
+ */
1451
+ function useGetUserAccountByAuth0IdQuery(baseOptions) {
1452
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1453
+ return Apollo.useQuery(exports.GetUserAccountByAuth0IdDocument, options);
1454
+ }
1455
+ exports.useGetUserAccountByAuth0IdQuery = useGetUserAccountByAuth0IdQuery;
1456
+ function useGetUserAccountByAuth0IdLazyQuery(baseOptions) {
1457
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1458
+ return Apollo.useLazyQuery(exports.GetUserAccountByAuth0IdDocument, options);
1459
+ }
1460
+ exports.useGetUserAccountByAuth0IdLazyQuery = useGetUserAccountByAuth0IdLazyQuery;
1461
+ exports.GetUserTokenDetailsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserTokenDetails" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "type" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenTypesEnum" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserTokenDetails" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "type" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "type" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "valid" } }, { "kind": "Field", "name": { "kind": "Name", "value": "refreshedCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "usedCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }] } }] } }] };
1462
+ /**
1463
+ * __useGetUserTokenDetailsQuery__
1464
+ *
1465
+ * To run a query within a React component, call `useGetUserTokenDetailsQuery` and pass it any options that fit your needs.
1466
+ * When your component renders, `useGetUserTokenDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1467
+ * you can use to render your UI.
1468
+ *
1469
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1470
+ *
1471
+ * @example
1472
+ * const { data, loading, error } = useGetUserTokenDetailsQuery({
1473
+ * variables: {
1474
+ * userId: // value for 'userId'
1475
+ * type: // value for 'type'
1476
+ * },
1477
+ * });
1478
+ */
1479
+ function useGetUserTokenDetailsQuery(baseOptions) {
1480
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1481
+ return Apollo.useQuery(exports.GetUserTokenDetailsDocument, options);
1482
+ }
1483
+ exports.useGetUserTokenDetailsQuery = useGetUserTokenDetailsQuery;
1484
+ function useGetUserTokenDetailsLazyQuery(baseOptions) {
1485
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1486
+ return Apollo.useLazyQuery(exports.GetUserTokenDetailsDocument, options);
1487
+ }
1488
+ exports.useGetUserTokenDetailsLazyQuery = useGetUserTokenDetailsLazyQuery;
1489
+ exports.GetUserOrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserOrganizations" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizations" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }] } }] } }] } }] };
1490
+ /**
1491
+ * __useGetUserOrganizationsQuery__
1492
+ *
1493
+ * To run a query within a React component, call `useGetUserOrganizationsQuery` and pass it any options that fit your needs.
1494
+ * When your component renders, `useGetUserOrganizationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1495
+ * you can use to render your UI.
1496
+ *
1497
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1498
+ *
1499
+ * @example
1500
+ * const { data, loading, error } = useGetUserOrganizationsQuery({
1501
+ * variables: {
1502
+ * userId: // value for 'userId'
1503
+ * },
1504
+ * });
1505
+ */
1506
+ function useGetUserOrganizationsQuery(baseOptions) {
1507
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1508
+ return Apollo.useQuery(exports.GetUserOrganizationsDocument, options);
1509
+ }
1510
+ exports.useGetUserOrganizationsQuery = useGetUserOrganizationsQuery;
1511
+ function useGetUserOrganizationsLazyQuery(baseOptions) {
1512
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1513
+ return Apollo.useLazyQuery(exports.GetUserOrganizationsDocument, options);
1514
+ }
1515
+ exports.useGetUserOrganizationsLazyQuery = useGetUserOrganizationsLazyQuery;
1516
+ exports.GetUserOrganizationsWithRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserOrganizationsWithRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizationsWithRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
1517
+ /**
1518
+ * __useGetUserOrganizationsWithRoleQuery__
1519
+ *
1520
+ * To run a query within a React component, call `useGetUserOrganizationsWithRoleQuery` and pass it any options that fit your needs.
1521
+ * When your component renders, `useGetUserOrganizationsWithRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
1522
+ * you can use to render your UI.
1523
+ *
1524
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1525
+ *
1526
+ * @example
1527
+ * const { data, loading, error } = useGetUserOrganizationsWithRoleQuery({
1528
+ * variables: {
1529
+ * userId: // value for 'userId'
1530
+ * },
1531
+ * });
1532
+ */
1533
+ function useGetUserOrganizationsWithRoleQuery(baseOptions) {
1534
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1535
+ return Apollo.useQuery(exports.GetUserOrganizationsWithRoleDocument, options);
1536
+ }
1537
+ exports.useGetUserOrganizationsWithRoleQuery = useGetUserOrganizationsWithRoleQuery;
1538
+ function useGetUserOrganizationsWithRoleLazyQuery(baseOptions) {
1539
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1540
+ return Apollo.useLazyQuery(exports.GetUserOrganizationsWithRoleDocument, options);
1541
+ }
1542
+ exports.useGetUserOrganizationsWithRoleLazyQuery = useGetUserOrganizationsWithRoleLazyQuery;
1543
+ exports.GetOrganizationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationMembers" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationMembers" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "offset" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "offset" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "limit" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "limit" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "totalCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamNames" } }, { "kind": "Field", "name": { "kind": "Name", "value": "crossCheckEmail" } }] } }] } }] } }] };
1544
+ /**
1545
+ * __useGetOrganizationMembersQuery__
1546
+ *
1547
+ * To run a query within a React component, call `useGetOrganizationMembersQuery` and pass it any options that fit your needs.
1548
+ * When your component renders, `useGetOrganizationMembersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1549
+ * you can use to render your UI.
1550
+ *
1551
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1552
+ *
1553
+ * @example
1554
+ * const { data, loading, error } = useGetOrganizationMembersQuery({
1555
+ * variables: {
1556
+ * offset: // value for 'offset'
1557
+ * limit: // value for 'limit'
1558
+ * },
1559
+ * });
1560
+ */
1561
+ function useGetOrganizationMembersQuery(baseOptions) {
1562
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1563
+ return Apollo.useQuery(exports.GetOrganizationMembersDocument, options);
1564
+ }
1565
+ exports.useGetOrganizationMembersQuery = useGetOrganizationMembersQuery;
1566
+ function useGetOrganizationMembersLazyQuery(baseOptions) {
1567
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1568
+ return Apollo.useLazyQuery(exports.GetOrganizationMembersDocument, options);
1569
+ }
1570
+ exports.useGetOrganizationMembersLazyQuery = useGetOrganizationMembersLazyQuery;
1571
+ exports.OrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "organizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "organizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "picture" } }, { "kind": "Field", "name": { "kind": "Name", "value": "stripeId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "namespace" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "periodStop" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "periodStart" } }, { "kind": "Field", "name": { "kind": "Name", "value": "billingLeaders" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "mainBilingLeaderId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "stripeSubscriptionId" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
1572
+ /**
1573
+ * __useOrganizationsQuery__
1574
+ *
1575
+ * To run a query within a React component, call `useOrganizationsQuery` and pass it any options that fit your needs.
1576
+ * When your component renders, `useOrganizationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1577
+ * you can use to render your UI.
1578
+ *
1579
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1580
+ *
1581
+ * @example
1582
+ * const { data, loading, error } = useOrganizationsQuery({
1583
+ * variables: {
1584
+ * },
1585
+ * });
1586
+ */
1587
+ function useOrganizationsQuery(baseOptions) {
1588
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1589
+ return Apollo.useQuery(exports.OrganizationsDocument, options);
1590
+ }
1591
+ exports.useOrganizationsQuery = useOrganizationsQuery;
1592
+ function useOrganizationsLazyQuery(baseOptions) {
1593
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1594
+ return Apollo.useLazyQuery(exports.OrganizationsDocument, options);
1595
+ }
1596
+ exports.useOrganizationsLazyQuery = useOrganizationsLazyQuery;
1597
+ exports.TeamDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "team" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamId" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ID" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "team" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "teamId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsUri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
1598
+ /**
1599
+ * __useTeamQuery__
1600
+ *
1601
+ * To run a query within a React component, call `useTeamQuery` and pass it any options that fit your needs.
1602
+ * When your component renders, `useTeamQuery` returns an object from Apollo Client that contains loading, error, and data properties
1603
+ * you can use to render your UI.
1604
+ *
1605
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1606
+ *
1607
+ * @example
1608
+ * const { data, loading, error } = useTeamQuery({
1609
+ * variables: {
1610
+ * teamId: // value for 'teamId'
1611
+ * },
1612
+ * });
1613
+ */
1614
+ function useTeamQuery(baseOptions) {
1615
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1616
+ return Apollo.useQuery(exports.TeamDocument, options);
1617
+ }
1618
+ exports.useTeamQuery = useTeamQuery;
1619
+ function useTeamLazyQuery(baseOptions) {
1620
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1621
+ return Apollo.useLazyQuery(exports.TeamDocument, options);
1622
+ }
1623
+ exports.useTeamLazyQuery = useTeamLazyQuery;
1624
+ exports.TeamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "Teams" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "teams" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsUri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
1625
+ /**
1626
+ * __useTeamsQuery__
1627
+ *
1628
+ * To run a query within a React component, call `useTeamsQuery` and pass it any options that fit your needs.
1629
+ * When your component renders, `useTeamsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1630
+ * you can use to render your UI.
1631
+ *
1632
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1633
+ *
1634
+ * @example
1635
+ * const { data, loading, error } = useTeamsQuery({
1636
+ * variables: {
1637
+ * },
1638
+ * });
1639
+ */
1640
+ function useTeamsQuery(baseOptions) {
1641
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1642
+ return Apollo.useQuery(exports.TeamsDocument, options);
1643
+ }
1644
+ exports.useTeamsQuery = useTeamsQuery;
1645
+ function useTeamsLazyQuery(baseOptions) {
1646
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1647
+ return Apollo.useLazyQuery(exports.TeamsDocument, options);
1648
+ }
1649
+ exports.useTeamsLazyQuery = useTeamsLazyQuery;
1650
+ exports.GetViewerSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetViewerSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ViewerSettingsInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "viewerSettings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsURL" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "default" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "organization" } }] } }] } }] } }] } }] } }] };
1651
+ /**
1652
+ * __useGetViewerSettingsQuery__
1653
+ *
1654
+ * To run a query within a React component, call `useGetViewerSettingsQuery` and pass it any options that fit your needs.
1655
+ * When your component renders, `useGetViewerSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1656
+ * you can use to render your UI.
1657
+ *
1658
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1659
+ *
1660
+ * @example
1661
+ * const { data, loading, error } = useGetViewerSettingsQuery({
1662
+ * variables: {
1663
+ * input: // value for 'input'
1664
+ * },
1665
+ * });
1666
+ */
1667
+ function useGetViewerSettingsQuery(baseOptions) {
1668
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1669
+ return Apollo.useQuery(exports.GetViewerSettingsDocument, options);
1670
+ }
1671
+ exports.useGetViewerSettingsQuery = useGetViewerSettingsQuery;
1672
+ function useGetViewerSettingsLazyQuery(baseOptions) {
1673
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1674
+ return Apollo.useLazyQuery(exports.GetViewerSettingsDocument, options);
1675
+ }
1676
+ exports.useGetViewerSettingsLazyQuery = useGetViewerSettingsLazyQuery;
1677
+ exports.GetAccountsViewerSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAccountsViewerSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ViewerSettingsInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "viewerSettings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "settings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "default" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "organization" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "notification" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "primaryEmail" } }] } }] } }] } }] } }] } }] };
1678
+ /**
1679
+ * __useGetAccountsViewerSettingsQuery__
1680
+ *
1681
+ * To run a query within a React component, call `useGetAccountsViewerSettingsQuery` and pass it any options that fit your needs.
1682
+ * When your component renders, `useGetAccountsViewerSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1683
+ * you can use to render your UI.
1684
+ *
1685
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1686
+ *
1687
+ * @example
1688
+ * const { data, loading, error } = useGetAccountsViewerSettingsQuery({
1689
+ * variables: {
1690
+ * input: // value for 'input'
1691
+ * },
1692
+ * });
1693
+ */
1694
+ function useGetAccountsViewerSettingsQuery(baseOptions) {
1695
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1696
+ return Apollo.useQuery(exports.GetAccountsViewerSettingsDocument, options);
1697
+ }
1698
+ exports.useGetAccountsViewerSettingsQuery = useGetAccountsViewerSettingsQuery;
1699
+ function useGetAccountsViewerSettingsLazyQuery(baseOptions) {
1700
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1701
+ return Apollo.useLazyQuery(exports.GetAccountsViewerSettingsDocument, options);
1702
+ }
1703
+ exports.useGetAccountsViewerSettingsLazyQuery = useGetAccountsViewerSettingsLazyQuery;
1704
+ exports.GetAccountsApplicationPoliciesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAccountsApplicationPolicies" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ViewerPoliciesInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getViewerPolicies" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "policies" } }] } }] } }] };
1705
+ /**
1706
+ * __useGetAccountsApplicationPoliciesQuery__
1707
+ *
1708
+ * To run a query within a React component, call `useGetAccountsApplicationPoliciesQuery` and pass it any options that fit your needs.
1709
+ * When your component renders, `useGetAccountsApplicationPoliciesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1710
+ * you can use to render your UI.
1711
+ *
1712
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1713
+ *
1714
+ * @example
1715
+ * const { data, loading, error } = useGetAccountsApplicationPoliciesQuery({
1716
+ * variables: {
1717
+ * input: // value for 'input'
1718
+ * },
1719
+ * });
1720
+ */
1721
+ function useGetAccountsApplicationPoliciesQuery(baseOptions) {
1722
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1723
+ return Apollo.useQuery(exports.GetAccountsApplicationPoliciesDocument, options);
1724
+ }
1725
+ exports.useGetAccountsApplicationPoliciesQuery = useGetAccountsApplicationPoliciesQuery;
1726
+ function useGetAccountsApplicationPoliciesLazyQuery(baseOptions) {
1727
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1728
+ return Apollo.useLazyQuery(exports.GetAccountsApplicationPoliciesDocument, options);
1729
+ }
1730
+ exports.useGetAccountsApplicationPoliciesLazyQuery = useGetAccountsApplicationPoliciesLazyQuery;
1731
+ exports.GetOrgMembersWithRolesUnsecuredDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgMembersWithRolesUnsecured" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationDetailUnsecured" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "ObjectValue", "fields": [{ "kind": "ObjectField", "name": { "kind": "Name", "value": "name" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } } }] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }] } }] } }] } }] };
1732
+ /**
1733
+ * __useGetOrgMembersWithRolesUnsecuredQuery__
1734
+ *
1735
+ * To run a query within a React component, call `useGetOrgMembersWithRolesUnsecuredQuery` and pass it any options that fit your needs.
1736
+ * When your component renders, `useGetOrgMembersWithRolesUnsecuredQuery` returns an object from Apollo Client that contains loading, error, and data properties
1737
+ * you can use to render your UI.
1738
+ *
1739
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1740
+ *
1741
+ * @example
1742
+ * const { data, loading, error } = useGetOrgMembersWithRolesUnsecuredQuery({
1743
+ * variables: {
1744
+ * name: // value for 'name'
1745
+ * },
1746
+ * });
1747
+ */
1748
+ function useGetOrgMembersWithRolesUnsecuredQuery(baseOptions) {
1749
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1750
+ return Apollo.useQuery(exports.GetOrgMembersWithRolesUnsecuredDocument, options);
1751
+ }
1752
+ exports.useGetOrgMembersWithRolesUnsecuredQuery = useGetOrgMembersWithRolesUnsecuredQuery;
1753
+ function useGetOrgMembersWithRolesUnsecuredLazyQuery(baseOptions) {
1754
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1755
+ return Apollo.useLazyQuery(exports.GetOrgMembersWithRolesUnsecuredDocument, options);
1756
+ }
1757
+ exports.useGetOrgMembersWithRolesUnsecuredLazyQuery = useGetOrgMembersWithRolesUnsecuredLazyQuery;
1758
+ exports.GetOrgMembersWithRolesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgMembersWithRoles" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationDetail" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "ObjectValue", "fields": [{ "kind": "ObjectField", "name": { "kind": "Name", "value": "name" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } } }] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }] } }] } }] } }] };
1759
+ /**
1760
+ * __useGetOrgMembersWithRolesQuery__
1761
+ *
1762
+ * To run a query within a React component, call `useGetOrgMembersWithRolesQuery` and pass it any options that fit your needs.
1763
+ * When your component renders, `useGetOrgMembersWithRolesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1764
+ * you can use to render your UI.
1765
+ *
1766
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1767
+ *
1768
+ * @example
1769
+ * const { data, loading, error } = useGetOrgMembersWithRolesQuery({
1770
+ * variables: {
1771
+ * name: // value for 'name'
1772
+ * },
1773
+ * });
1774
+ */
1775
+ function useGetOrgMembersWithRolesQuery(baseOptions) {
1776
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1777
+ return Apollo.useQuery(exports.GetOrgMembersWithRolesDocument, options);
1778
+ }
1779
+ exports.useGetOrgMembersWithRolesQuery = useGetOrgMembersWithRolesQuery;
1780
+ function useGetOrgMembersWithRolesLazyQuery(baseOptions) {
1781
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1782
+ return Apollo.useLazyQuery(exports.GetOrgMembersWithRolesDocument, options);
1783
+ }
1784
+ exports.useGetOrgMembersWithRolesLazyQuery = useGetOrgMembersWithRolesLazyQuery;
1785
+ exports.GetUsersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUsers" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserAccountWhere" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUsers" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "username" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }] } }] } }] };
1786
+ /**
1787
+ * __useGetUsersQuery__
1788
+ *
1789
+ * To run a query within a React component, call `useGetUsersQuery` and pass it any options that fit your needs.
1790
+ * When your component renders, `useGetUsersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1791
+ * you can use to render your UI.
1792
+ *
1793
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1794
+ *
1795
+ * @example
1796
+ * const { data, loading, error } = useGetUsersQuery({
1797
+ * variables: {
1798
+ * where: // value for 'where'
1799
+ * },
1800
+ * });
1801
+ */
1802
+ function useGetUsersQuery(baseOptions) {
1803
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1804
+ return Apollo.useQuery(exports.GetUsersDocument, options);
1805
+ }
1806
+ exports.useGetUsersQuery = useGetUsersQuery;
1807
+ function useGetUsersLazyQuery(baseOptions) {
1808
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1809
+ return Apollo.useLazyQuery(exports.GetUsersDocument, options);
1810
+ }
1811
+ exports.useGetUsersLazyQuery = useGetUsersLazyQuery;
1812
+ exports.FilterIntegrationConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "FilterIntegrationConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "filter" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IntegrationConfigurationFilterInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "filterIntegrationConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "filter" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "filter" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "integrationName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "integrationInfo" } }] } }] } }] };
1813
+ /**
1814
+ * __useFilterIntegrationConfigurationQuery__
1815
+ *
1816
+ * To run a query within a React component, call `useFilterIntegrationConfigurationQuery` and pass it any options that fit your needs.
1817
+ * When your component renders, `useFilterIntegrationConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
1818
+ * you can use to render your UI.
1819
+ *
1820
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1821
+ *
1822
+ * @example
1823
+ * const { data, loading, error } = useFilterIntegrationConfigurationQuery({
1824
+ * variables: {
1825
+ * filter: // value for 'filter'
1826
+ * },
1827
+ * });
1828
+ */
1829
+ function useFilterIntegrationConfigurationQuery(baseOptions) {
1830
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1831
+ return Apollo.useQuery(exports.FilterIntegrationConfigurationDocument, options);
1832
+ }
1833
+ exports.useFilterIntegrationConfigurationQuery = useFilterIntegrationConfigurationQuery;
1834
+ function useFilterIntegrationConfigurationLazyQuery(baseOptions) {
1835
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1836
+ return Apollo.useLazyQuery(exports.FilterIntegrationConfigurationDocument, options);
1837
+ }
1838
+ exports.useFilterIntegrationConfigurationLazyQuery = useFilterIntegrationConfigurationLazyQuery;
1839
+ exports.ToggleSidebarDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "toggleSidebar" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "state" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "toggleSidebar" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "state" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "state" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
1840
+ /**
1841
+ * __useToggleSidebarMutation__
1842
+ *
1843
+ * To run a mutation, you first call `useToggleSidebarMutation` within a React component and pass it any options that fit your needs.
1844
+ * When your component renders, `useToggleSidebarMutation` returns a tuple that includes:
1845
+ * - A mutate function that you can call at any time to execute the mutation
1846
+ * - An object with fields that represent the current status of the mutation's execution
1847
+ *
1848
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1849
+ *
1850
+ * @example
1851
+ * const [toggleSidebarMutation, { data, loading, error }] = useToggleSidebarMutation({
1852
+ * variables: {
1853
+ * state: // value for 'state'
1854
+ * },
1855
+ * });
1856
+ */
1857
+ function useToggleSidebarMutation(baseOptions) {
1858
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1859
+ return Apollo.useMutation(exports.ToggleSidebarDocument, options);
1860
+ }
1861
+ exports.useToggleSidebarMutation = useToggleSidebarMutation;
1862
+ exports.SidebarStateDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "sidebarState" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sidebarState" }, "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
1863
+ /**
1864
+ * __useSidebarStateQuery__
1865
+ *
1866
+ * To run a query within a React component, call `useSidebarStateQuery` and pass it any options that fit your needs.
1867
+ * When your component renders, `useSidebarStateQuery` returns an object from Apollo Client that contains loading, error, and data properties
1868
+ * you can use to render your UI.
1869
+ *
1870
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1871
+ *
1872
+ * @example
1873
+ * const { data, loading, error } = useSidebarStateQuery({
1874
+ * variables: {
1875
+ * },
1876
+ * });
1877
+ */
1878
+ function useSidebarStateQuery(baseOptions) {
1879
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1880
+ return Apollo.useQuery(exports.SidebarStateDocument, options);
1881
+ }
1882
+ exports.useSidebarStateQuery = useSidebarStateQuery;
1883
+ function useSidebarStateLazyQuery(baseOptions) {
1884
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1885
+ return Apollo.useLazyQuery(exports.SidebarStateDocument, options);
1886
+ }
1887
+ exports.useSidebarStateLazyQuery = useSidebarStateLazyQuery;
1888
+ exports.AddContributionRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "AddContributionRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "description" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "addContributionRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "name" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "name" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "description" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "description" } } }] }] } }] };
1889
+ /**
1890
+ * __useAddContributionRoleMutation__
1891
+ *
1892
+ * To run a mutation, you first call `useAddContributionRoleMutation` within a React component and pass it any options that fit your needs.
1893
+ * When your component renders, `useAddContributionRoleMutation` returns a tuple that includes:
1894
+ * - A mutate function that you can call at any time to execute the mutation
1895
+ * - An object with fields that represent the current status of the mutation's execution
1896
+ *
1897
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1898
+ *
1899
+ * @example
1900
+ * const [addContributionRoleMutation, { data, loading, error }] = useAddContributionRoleMutation({
1901
+ * variables: {
1902
+ * name: // value for 'name'
1903
+ * description: // value for 'description'
1904
+ * },
1905
+ * });
1906
+ */
1907
+ function useAddContributionRoleMutation(baseOptions) {
1908
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1909
+ return Apollo.useMutation(exports.AddContributionRoleDocument, options);
1910
+ }
1911
+ exports.useAddContributionRoleMutation = useAddContributionRoleMutation;
1912
+ exports.AddResourceToContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "AddResourceToContext" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToAdd" } }, "type": { "kind": "NonNullType", "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceCreationDataInput" } } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "addResourceToContext" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resourcesToAdd" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToAdd" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
1913
+ /**
1914
+ * __useAddResourceToContextMutation__
1915
+ *
1916
+ * To run a mutation, you first call `useAddResourceToContextMutation` within a React component and pass it any options that fit your needs.
1917
+ * When your component renders, `useAddResourceToContextMutation` returns a tuple that includes:
1918
+ * - A mutate function that you can call at any time to execute the mutation
1919
+ * - An object with fields that represent the current status of the mutation's execution
1920
+ *
1921
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1922
+ *
1923
+ * @example
1924
+ * const [addResourceToContextMutation, { data, loading, error }] = useAddResourceToContextMutation({
1925
+ * variables: {
1926
+ * resourcesToAdd: // value for 'resourcesToAdd'
1927
+ * },
1928
+ * });
1929
+ */
1930
+ function useAddResourceToContextMutation(baseOptions) {
1931
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1932
+ return Apollo.useMutation(exports.AddResourceToContextDocument, options);
1933
+ }
1934
+ exports.useAddResourceToContextMutation = useAddResourceToContextMutation;
1935
+ exports.ChangeOrganizationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "ChangeOrganization" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "changeOrganization" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }] }] } }] };
1936
+ /**
1937
+ * __useChangeOrganizationMutation__
1938
+ *
1939
+ * To run a mutation, you first call `useChangeOrganizationMutation` within a React component and pass it any options that fit your needs.
1940
+ * When your component renders, `useChangeOrganizationMutation` returns a tuple that includes:
1941
+ * - A mutate function that you can call at any time to execute the mutation
1942
+ * - An object with fields that represent the current status of the mutation's execution
1943
+ *
1944
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1945
+ *
1946
+ * @example
1947
+ * const [changeOrganizationMutation, { data, loading, error }] = useChangeOrganizationMutation({
1948
+ * variables: {
1949
+ * orgName: // value for 'orgName'
1950
+ * },
1951
+ * });
1952
+ */
1953
+ function useChangeOrganizationMutation(baseOptions) {
1954
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1955
+ return Apollo.useMutation(exports.ChangeOrganizationDocument, options);
1956
+ }
1957
+ exports.useChangeOrganizationMutation = useChangeOrganizationMutation;
1958
+ exports.InitiateConfigurationValueDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "InitiateConfigurationValue" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "initiateConfigurationValue" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resource" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } } }] }] } }] };
1959
+ /**
1960
+ * __useInitiateConfigurationValueMutation__
1961
+ *
1962
+ * To run a mutation, you first call `useInitiateConfigurationValueMutation` within a React component and pass it any options that fit your needs.
1963
+ * When your component renders, `useInitiateConfigurationValueMutation` returns a tuple that includes:
1964
+ * - A mutate function that you can call at any time to execute the mutation
1965
+ * - An object with fields that represent the current status of the mutation's execution
1966
+ *
1967
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1968
+ *
1969
+ * @example
1970
+ * const [initiateConfigurationValueMutation, { data, loading, error }] = useInitiateConfigurationValueMutation({
1971
+ * variables: {
1972
+ * resource: // value for 'resource'
1973
+ * },
1974
+ * });
1975
+ */
1976
+ function useInitiateConfigurationValueMutation(baseOptions) {
1977
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
1978
+ return Apollo.useMutation(exports.InitiateConfigurationValueDocument, options);
1979
+ }
1980
+ exports.useInitiateConfigurationValueMutation = useInitiateConfigurationValueMutation;
1981
+ exports.InitializeOrgNameInContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "InitializeOrgNameInContext" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "initializeOrgNameInContext" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
1982
+ /**
1983
+ * __useInitializeOrgNameInContextMutation__
1984
+ *
1985
+ * To run a mutation, you first call `useInitializeOrgNameInContextMutation` within a React component and pass it any options that fit your needs.
1986
+ * When your component renders, `useInitializeOrgNameInContextMutation` returns a tuple that includes:
1987
+ * - A mutate function that you can call at any time to execute the mutation
1988
+ * - An object with fields that represent the current status of the mutation's execution
1989
+ *
1990
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1991
+ *
1992
+ * @example
1993
+ * const [initializeOrgNameInContextMutation, { data, loading, error }] = useInitializeOrgNameInContextMutation({
1994
+ * variables: {
1995
+ * orgName: // value for 'orgName'
1996
+ * },
1997
+ * });
1998
+ */
1999
+ function useInitializeOrgNameInContextMutation(baseOptions) {
2000
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2001
+ return Apollo.useMutation(exports.InitializeOrgNameInContextDocument, options);
2002
+ }
2003
+ exports.useInitializeOrgNameInContextMutation = useInitializeOrgNameInContextMutation;
2004
+ exports.InitializeTeamInContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "InitializeTeamInContext" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "initializeTeamInContext" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "teamName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "teamName" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
2005
+ /**
2006
+ * __useInitializeTeamInContextMutation__
2007
+ *
2008
+ * To run a mutation, you first call `useInitializeTeamInContextMutation` within a React component and pass it any options that fit your needs.
2009
+ * When your component renders, `useInitializeTeamInContextMutation` returns a tuple that includes:
2010
+ * - A mutate function that you can call at any time to execute the mutation
2011
+ * - An object with fields that represent the current status of the mutation's execution
2012
+ *
2013
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2014
+ *
2015
+ * @example
2016
+ * const [initializeTeamInContextMutation, { data, loading, error }] = useInitializeTeamInContextMutation({
2017
+ * variables: {
2018
+ * teamName: // value for 'teamName'
2019
+ * orgName: // value for 'orgName'
2020
+ * },
2021
+ * });
2022
+ */
2023
+ function useInitializeTeamInContextMutation(baseOptions) {
2024
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2025
+ return Apollo.useMutation(exports.InitializeTeamInContextDocument, options);
2026
+ }
2027
+ exports.useInitializeTeamInContextMutation = useInitializeTeamInContextMutation;
2028
+ exports.ReassignConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "ReassignConfiguration" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "reassignRole" }, "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }] }] } }] };
2029
+ /**
2030
+ * __useReassignConfigurationMutation__
2031
+ *
2032
+ * To run a mutation, you first call `useReassignConfigurationMutation` within a React component and pass it any options that fit your needs.
2033
+ * When your component renders, `useReassignConfigurationMutation` returns a tuple that includes:
2034
+ * - A mutate function that you can call at any time to execute the mutation
2035
+ * - An object with fields that represent the current status of the mutation's execution
2036
+ *
2037
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2038
+ *
2039
+ * @example
2040
+ * const [reassignConfigurationMutation, { data, loading, error }] = useReassignConfigurationMutation({
2041
+ * variables: {
2042
+ * },
2043
+ * });
2044
+ */
2045
+ function useReassignConfigurationMutation(baseOptions) {
2046
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2047
+ return Apollo.useMutation(exports.ReassignConfigurationDocument, options);
2048
+ }
2049
+ exports.useReassignConfigurationMutation = useReassignConfigurationMutation;
2050
+ exports.UpdateConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdateConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PreferencesInputInput" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }] }] } }] };
2051
+ /**
2052
+ * __useUpdateConfigurationMutation__
2053
+ *
2054
+ * To run a mutation, you first call `useUpdateConfigurationMutation` within a React component and pass it any options that fit your needs.
2055
+ * When your component renders, `useUpdateConfigurationMutation` returns a tuple that includes:
2056
+ * - A mutate function that you can call at any time to execute the mutation
2057
+ * - An object with fields that represent the current status of the mutation's execution
2058
+ *
2059
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2060
+ *
2061
+ * @example
2062
+ * const [updateConfigurationMutation, { data, loading, error }] = useUpdateConfigurationMutation({
2063
+ * variables: {
2064
+ * input: // value for 'input'
2065
+ * key: // value for 'key'
2066
+ * value: // value for 'value'
2067
+ * overrides: // value for 'overrides'
2068
+ * target: // value for 'target'
2069
+ * donotNotifyError: // value for 'donotNotifyError'
2070
+ * },
2071
+ * });
2072
+ */
2073
+ function useUpdateConfigurationMutation(baseOptions) {
2074
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2075
+ return Apollo.useMutation(exports.UpdateConfigurationDocument, options);
2076
+ }
2077
+ exports.useUpdateConfigurationMutation = useUpdateConfigurationMutation;
2078
+ exports.GetApplicationPolicyDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetApplicationPolicy" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfigurationPolicies" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ApplicationPolicy" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "DefaultPolicy" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2079
+ /**
2080
+ * __useGetApplicationPolicyQuery__
2081
+ *
2082
+ * To run a query within a React component, call `useGetApplicationPolicyQuery` and pass it any options that fit your needs.
2083
+ * When your component renders, `useGetApplicationPolicyQuery` returns an object from Apollo Client that contains loading, error, and data properties
2084
+ * you can use to render your UI.
2085
+ *
2086
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2087
+ *
2088
+ * @example
2089
+ * const { data, loading, error } = useGetApplicationPolicyQuery({
2090
+ * variables: {
2091
+ * input: // value for 'input'
2092
+ * },
2093
+ * });
2094
+ */
2095
+ function useGetApplicationPolicyQuery(baseOptions) {
2096
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2097
+ return Apollo.useQuery(exports.GetApplicationPolicyDocument, options);
2098
+ }
2099
+ exports.useGetApplicationPolicyQuery = useGetApplicationPolicyQuery;
2100
+ function useGetApplicationPolicyLazyQuery(baseOptions) {
2101
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2102
+ return Apollo.useLazyQuery(exports.GetApplicationPolicyDocument, options);
2103
+ }
2104
+ exports.useGetApplicationPolicyLazyQuery = useGetApplicationPolicyLazyQuery;
2105
+ exports.GetApplicationRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetApplicationRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ApplicationRolePermission" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2106
+ /**
2107
+ * __useGetApplicationRoleQuery__
2108
+ *
2109
+ * To run a query within a React component, call `useGetApplicationRoleQuery` and pass it any options that fit your needs.
2110
+ * When your component renders, `useGetApplicationRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
2111
+ * you can use to render your UI.
2112
+ *
2113
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2114
+ *
2115
+ * @example
2116
+ * const { data, loading, error } = useGetApplicationRoleQuery({
2117
+ * variables: {
2118
+ * input: // value for 'input'
2119
+ * },
2120
+ * });
2121
+ */
2122
+ function useGetApplicationRoleQuery(baseOptions) {
2123
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2124
+ return Apollo.useQuery(exports.GetApplicationRoleDocument, options);
2125
+ }
2126
+ exports.useGetApplicationRoleQuery = useGetApplicationRoleQuery;
2127
+ function useGetApplicationRoleLazyQuery(baseOptions) {
2128
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2129
+ return Apollo.useLazyQuery(exports.GetApplicationRoleDocument, options);
2130
+ }
2131
+ exports.useGetApplicationRoleLazyQuery = useGetApplicationRoleLazyQuery;
2132
+ exports.DefaultResolveSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "DefaultResolveSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "uri" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resolveSettings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "uri" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "uri" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "DefaultSetting" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "DefaultSetting" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "descriptionIsMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deprecationMessage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptionsAreMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "properties" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "readOnly" } }, { "kind": "Field", "name": { "kind": "Name", "value": "disabled" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "arrayItemType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingDependencies" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maximum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxItems" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minItems" } }] } }] };
2133
+ /**
2134
+ * __useDefaultResolveSettingsQuery__
2135
+ *
2136
+ * To run a query within a React component, call `useDefaultResolveSettingsQuery` and pass it any options that fit your needs.
2137
+ * When your component renders, `useDefaultResolveSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2138
+ * you can use to render your UI.
2139
+ *
2140
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2141
+ *
2142
+ * @example
2143
+ * const { data, loading, error } = useDefaultResolveSettingsQuery({
2144
+ * variables: {
2145
+ * uri: // value for 'uri'
2146
+ * target: // value for 'target'
2147
+ * },
2148
+ * });
2149
+ */
2150
+ function useDefaultResolveSettingsQuery(baseOptions) {
2151
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2152
+ return Apollo.useQuery(exports.DefaultResolveSettingsDocument, options);
2153
+ }
2154
+ exports.useDefaultResolveSettingsQuery = useDefaultResolveSettingsQuery;
2155
+ function useDefaultResolveSettingsLazyQuery(baseOptions) {
2156
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2157
+ return Apollo.useLazyQuery(exports.DefaultResolveSettingsDocument, options);
2158
+ }
2159
+ exports.useDefaultResolveSettingsLazyQuery = useDefaultResolveSettingsLazyQuery;
2160
+ exports.GetConfigurationTargetDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetConfigurationTarget" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfigurationTarget" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resource" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
2161
+ /**
2162
+ * __useGetConfigurationTargetQuery__
2163
+ *
2164
+ * To run a query within a React component, call `useGetConfigurationTargetQuery` and pass it any options that fit your needs.
2165
+ * When your component renders, `useGetConfigurationTargetQuery` returns an object from Apollo Client that contains loading, error, and data properties
2166
+ * you can use to render your UI.
2167
+ *
2168
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2169
+ *
2170
+ * @example
2171
+ * const { data, loading, error } = useGetConfigurationTargetQuery({
2172
+ * variables: {
2173
+ * resource: // value for 'resource'
2174
+ * },
2175
+ * });
2176
+ */
2177
+ function useGetConfigurationTargetQuery(baseOptions) {
2178
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2179
+ return Apollo.useQuery(exports.GetConfigurationTargetDocument, options);
2180
+ }
2181
+ exports.useGetConfigurationTargetQuery = useGetConfigurationTargetQuery;
2182
+ function useGetConfigurationTargetLazyQuery(baseOptions) {
2183
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2184
+ return Apollo.useLazyQuery(exports.GetConfigurationTargetDocument, options);
2185
+ }
2186
+ exports.useGetConfigurationTargetLazyQuery = useGetConfigurationTargetLazyQuery;
2187
+ exports.GetContextPropertyDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetContextProperty" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "keys" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getContextProperty" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "keys" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "keys" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }] }] } }] };
2188
+ /**
2189
+ * __useGetContextPropertyQuery__
2190
+ *
2191
+ * To run a query within a React component, call `useGetContextPropertyQuery` and pass it any options that fit your needs.
2192
+ * When your component renders, `useGetContextPropertyQuery` returns an object from Apollo Client that contains loading, error, and data properties
2193
+ * you can use to render your UI.
2194
+ *
2195
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2196
+ *
2197
+ * @example
2198
+ * const { data, loading, error } = useGetContextPropertyQuery({
2199
+ * variables: {
2200
+ * keys: // value for 'keys'
2201
+ * },
2202
+ * });
2203
+ */
2204
+ function useGetContextPropertyQuery(baseOptions) {
2205
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2206
+ return Apollo.useQuery(exports.GetContextPropertyDocument, options);
2207
+ }
2208
+ exports.useGetContextPropertyQuery = useGetContextPropertyQuery;
2209
+ function useGetContextPropertyLazyQuery(baseOptions) {
2210
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2211
+ return Apollo.useLazyQuery(exports.GetContextPropertyDocument, options);
2212
+ }
2213
+ exports.useGetContextPropertyLazyQuery = useGetContextPropertyLazyQuery;
2214
+ exports.GetDefaultApplicationPermissionsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetDefaultApplicationPermissions" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "roleName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "mergedApplicationPermissions" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "roleName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "roleName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OverWriteRoleValue" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OverWriteRoleValue" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }] } }] };
2215
+ /**
2216
+ * __useGetDefaultApplicationPermissionsQuery__
2217
+ *
2218
+ * To run a query within a React component, call `useGetDefaultApplicationPermissionsQuery` and pass it any options that fit your needs.
2219
+ * When your component renders, `useGetDefaultApplicationPermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2220
+ * you can use to render your UI.
2221
+ *
2222
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2223
+ *
2224
+ * @example
2225
+ * const { data, loading, error } = useGetDefaultApplicationPermissionsQuery({
2226
+ * variables: {
2227
+ * roleName: // value for 'roleName'
2228
+ * },
2229
+ * });
2230
+ */
2231
+ function useGetDefaultApplicationPermissionsQuery(baseOptions) {
2232
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2233
+ return Apollo.useQuery(exports.GetDefaultApplicationPermissionsDocument, options);
2234
+ }
2235
+ exports.useGetDefaultApplicationPermissionsQuery = useGetDefaultApplicationPermissionsQuery;
2236
+ function useGetDefaultApplicationPermissionsLazyQuery(baseOptions) {
2237
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2238
+ return Apollo.useLazyQuery(exports.GetDefaultApplicationPermissionsDocument, options);
2239
+ }
2240
+ exports.useGetDefaultApplicationPermissionsLazyQuery = useGetDefaultApplicationPermissionsLazyQuery;
2241
+ exports.GetDefaultPermissionsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetDefaultPermissions" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "defaultPermissions" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sections" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "DefaultSetting" } }] } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "DefaultSetting" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "descriptionIsMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deprecationMessage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptionsAreMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "properties" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "readOnly" } }, { "kind": "Field", "name": { "kind": "Name", "value": "disabled" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "arrayItemType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingDependencies" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maximum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxItems" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minItems" } }] } }] };
2242
+ /**
2243
+ * __useGetDefaultPermissionsQuery__
2244
+ *
2245
+ * To run a query within a React component, call `useGetDefaultPermissionsQuery` and pass it any options that fit your needs.
2246
+ * When your component renders, `useGetDefaultPermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2247
+ * you can use to render your UI.
2248
+ *
2249
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2250
+ *
2251
+ * @example
2252
+ * const { data, loading, error } = useGetDefaultPermissionsQuery({
2253
+ * variables: {
2254
+ * target: // value for 'target'
2255
+ * },
2256
+ * });
2257
+ */
2258
+ function useGetDefaultPermissionsQuery(baseOptions) {
2259
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2260
+ return Apollo.useQuery(exports.GetDefaultPermissionsDocument, options);
2261
+ }
2262
+ exports.useGetDefaultPermissionsQuery = useGetDefaultPermissionsQuery;
2263
+ function useGetDefaultPermissionsLazyQuery(baseOptions) {
2264
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2265
+ return Apollo.useLazyQuery(exports.GetDefaultPermissionsDocument, options);
2266
+ }
2267
+ exports.useGetDefaultPermissionsLazyQuery = useGetDefaultPermissionsLazyQuery;
2268
+ exports.GetDefaultPolicySettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetDefaultPolicySettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "defaultPolicies" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sections" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "DefaultSetting" } }] } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "DefaultSetting" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "descriptionIsMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deprecationMessage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptionsAreMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "properties" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "readOnly" } }, { "kind": "Field", "name": { "kind": "Name", "value": "disabled" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "arrayItemType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingDependencies" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maximum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxItems" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minItems" } }] } }] };
2269
+ /**
2270
+ * __useGetDefaultPolicySettingsQuery__
2271
+ *
2272
+ * To run a query within a React component, call `useGetDefaultPolicySettingsQuery` and pass it any options that fit your needs.
2273
+ * When your component renders, `useGetDefaultPolicySettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2274
+ * you can use to render your UI.
2275
+ *
2276
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2277
+ *
2278
+ * @example
2279
+ * const { data, loading, error } = useGetDefaultPolicySettingsQuery({
2280
+ * variables: {
2281
+ * target: // value for 'target'
2282
+ * },
2283
+ * });
2284
+ */
2285
+ function useGetDefaultPolicySettingsQuery(baseOptions) {
2286
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2287
+ return Apollo.useQuery(exports.GetDefaultPolicySettingsDocument, options);
2288
+ }
2289
+ exports.useGetDefaultPolicySettingsQuery = useGetDefaultPolicySettingsQuery;
2290
+ function useGetDefaultPolicySettingsLazyQuery(baseOptions) {
2291
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2292
+ return Apollo.useLazyQuery(exports.GetDefaultPolicySettingsDocument, options);
2293
+ }
2294
+ exports.useGetDefaultPolicySettingsLazyQuery = useGetDefaultPolicySettingsLazyQuery;
2295
+ exports.GetDefaultRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetDefaultRole" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "ListValue", "values": [{ "kind": "ObjectValue", "fields": [{ "kind": "ObjectField", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "IntValue", "value": "6" } }] }] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "DefaultRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2296
+ /**
2297
+ * __useGetDefaultRoleQuery__
2298
+ *
2299
+ * To run a query within a React component, call `useGetDefaultRoleQuery` and pass it any options that fit your needs.
2300
+ * When your component renders, `useGetDefaultRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
2301
+ * you can use to render your UI.
2302
+ *
2303
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2304
+ *
2305
+ * @example
2306
+ * const { data, loading, error } = useGetDefaultRoleQuery({
2307
+ * variables: {
2308
+ * },
2309
+ * });
2310
+ */
2311
+ function useGetDefaultRoleQuery(baseOptions) {
2312
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2313
+ return Apollo.useQuery(exports.GetDefaultRoleDocument, options);
2314
+ }
2315
+ exports.useGetDefaultRoleQuery = useGetDefaultRoleQuery;
2316
+ function useGetDefaultRoleLazyQuery(baseOptions) {
2317
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2318
+ return Apollo.useLazyQuery(exports.GetDefaultRoleDocument, options);
2319
+ }
2320
+ exports.useGetDefaultRoleLazyQuery = useGetDefaultRoleLazyQuery;
2321
+ exports.GetTeamContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetTeamContext" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getTeamContext" }, "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "TeamContext" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "TeamContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamUri" } }] } }] };
2322
+ /**
2323
+ * __useGetTeamContextQuery__
2324
+ *
2325
+ * To run a query within a React component, call `useGetTeamContextQuery` and pass it any options that fit your needs.
2326
+ * When your component renders, `useGetTeamContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
2327
+ * you can use to render your UI.
2328
+ *
2329
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2330
+ *
2331
+ * @example
2332
+ * const { data, loading, error } = useGetTeamContextQuery({
2333
+ * variables: {
2334
+ * },
2335
+ * });
2336
+ */
2337
+ function useGetTeamContextQuery(baseOptions) {
2338
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2339
+ return Apollo.useQuery(exports.GetTeamContextDocument, options);
2340
+ }
2341
+ exports.useGetTeamContextQuery = useGetTeamContextQuery;
2342
+ function useGetTeamContextLazyQuery(baseOptions) {
2343
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2344
+ return Apollo.useLazyQuery(exports.GetTeamContextDocument, options);
2345
+ }
2346
+ exports.useGetTeamContextLazyQuery = useGetTeamContextLazyQuery;
2347
+ exports.GetTeamNameFromContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetTeamNameFromContext" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getTeamNameFromContext" }, "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "TeamNameInContext" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "TeamNameInContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }] } }] };
2348
+ /**
2349
+ * __useGetTeamNameFromContextQuery__
2350
+ *
2351
+ * To run a query within a React component, call `useGetTeamNameFromContextQuery` and pass it any options that fit your needs.
2352
+ * When your component renders, `useGetTeamNameFromContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
2353
+ * you can use to render your UI.
2354
+ *
2355
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2356
+ *
2357
+ * @example
2358
+ * const { data, loading, error } = useGetTeamNameFromContextQuery({
2359
+ * variables: {
2360
+ * },
2361
+ * });
2362
+ */
2363
+ function useGetTeamNameFromContextQuery(baseOptions) {
2364
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2365
+ return Apollo.useQuery(exports.GetTeamNameFromContextDocument, options);
2366
+ }
2367
+ exports.useGetTeamNameFromContextQuery = useGetTeamNameFromContextQuery;
2368
+ function useGetTeamNameFromContextLazyQuery(baseOptions) {
2369
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2370
+ return Apollo.useLazyQuery(exports.GetTeamNameFromContextDocument, options);
2371
+ }
2372
+ exports.useGetTeamNameFromContextLazyQuery = useGetTeamNameFromContextLazyQuery;
2373
+ exports.GetUserAccessRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserAccessRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserAccessRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "accessRoles" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "resourceUserRoles" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2374
+ /**
2375
+ * __useGetUserAccessRoleQuery__
2376
+ *
2377
+ * To run a query within a React component, call `useGetUserAccessRoleQuery` and pass it any options that fit your needs.
2378
+ * When your component renders, `useGetUserAccessRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
2379
+ * you can use to render your UI.
2380
+ *
2381
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2382
+ *
2383
+ * @example
2384
+ * const { data, loading, error } = useGetUserAccessRoleQuery({
2385
+ * variables: {
2386
+ * input: // value for 'input'
2387
+ * },
2388
+ * });
2389
+ */
2390
+ function useGetUserAccessRoleQuery(baseOptions) {
2391
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2392
+ return Apollo.useQuery(exports.GetUserAccessRoleDocument, options);
2393
+ }
2394
+ exports.useGetUserAccessRoleQuery = useGetUserAccessRoleQuery;
2395
+ function useGetUserAccessRoleLazyQuery(baseOptions) {
2396
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2397
+ return Apollo.useLazyQuery(exports.GetUserAccessRoleDocument, options);
2398
+ }
2399
+ exports.useGetUserAccessRoleLazyQuery = useGetUserAccessRoleLazyQuery;
2400
+ exports.OpenPreferencesSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "OpenPreferencesSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "jsonEditor" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "options" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PreferencesOpenOptionsInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "openPreferencesSettings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resource" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "jsonEditor" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "jsonEditor" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "options" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "options" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "editableSettingsInput" } }, { "kind": "Field", "name": { "kind": "Name", "value": "defaultPreferencesInput" } }] } }] } }] };
2401
+ /**
2402
+ * __useOpenPreferencesSettingsQuery__
2403
+ *
2404
+ * To run a query within a React component, call `useOpenPreferencesSettingsQuery` and pass it any options that fit your needs.
2405
+ * When your component renders, `useOpenPreferencesSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2406
+ * you can use to render your UI.
2407
+ *
2408
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2409
+ *
2410
+ * @example
2411
+ * const { data, loading, error } = useOpenPreferencesSettingsQuery({
2412
+ * variables: {
2413
+ * resource: // value for 'resource'
2414
+ * jsonEditor: // value for 'jsonEditor'
2415
+ * options: // value for 'options'
2416
+ * },
2417
+ * });
2418
+ */
2419
+ function useOpenPreferencesSettingsQuery(baseOptions) {
2420
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2421
+ return Apollo.useQuery(exports.OpenPreferencesSettingsDocument, options);
2422
+ }
2423
+ exports.useOpenPreferencesSettingsQuery = useOpenPreferencesSettingsQuery;
2424
+ function useOpenPreferencesSettingsLazyQuery(baseOptions) {
2425
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2426
+ return Apollo.useLazyQuery(exports.OpenPreferencesSettingsDocument, options);
2427
+ }
2428
+ exports.useOpenPreferencesSettingsLazyQuery = useOpenPreferencesSettingsLazyQuery;
2429
+ exports.GetOrgConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2430
+ /**
2431
+ * __useGetOrgConfigurationQuery__
2432
+ *
2433
+ * To run a query within a React component, call `useGetOrgConfigurationQuery` and pass it any options that fit your needs.
2434
+ * When your component renders, `useGetOrgConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2435
+ * you can use to render your UI.
2436
+ *
2437
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2438
+ *
2439
+ * @example
2440
+ * const { data, loading, error } = useGetOrgConfigurationQuery({
2441
+ * variables: {
2442
+ * input: // value for 'input'
2443
+ * },
2444
+ * });
2445
+ */
2446
+ function useGetOrgConfigurationQuery(baseOptions) {
2447
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2448
+ return Apollo.useQuery(exports.GetOrgConfigurationDocument, options);
2449
+ }
2450
+ exports.useGetOrgConfigurationQuery = useGetOrgConfigurationQuery;
2451
+ function useGetOrgConfigurationLazyQuery(baseOptions) {
2452
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2453
+ return Apollo.useLazyQuery(exports.GetOrgConfigurationDocument, options);
2454
+ }
2455
+ exports.useGetOrgConfigurationLazyQuery = useGetOrgConfigurationLazyQuery;
2456
+ exports.GetOrgPolicyDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgPolicy" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfigurationPolicies" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationPolicy" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2457
+ /**
2458
+ * __useGetOrgPolicyQuery__
2459
+ *
2460
+ * To run a query within a React component, call `useGetOrgPolicyQuery` and pass it any options that fit your needs.
2461
+ * When your component renders, `useGetOrgPolicyQuery` returns an object from Apollo Client that contains loading, error, and data properties
2462
+ * you can use to render your UI.
2463
+ *
2464
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2465
+ *
2466
+ * @example
2467
+ * const { data, loading, error } = useGetOrgPolicyQuery({
2468
+ * variables: {
2469
+ * input: // value for 'input'
2470
+ * },
2471
+ * });
2472
+ */
2473
+ function useGetOrgPolicyQuery(baseOptions) {
2474
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2475
+ return Apollo.useQuery(exports.GetOrgPolicyDocument, options);
2476
+ }
2477
+ exports.useGetOrgPolicyQuery = useGetOrgPolicyQuery;
2478
+ function useGetOrgPolicyLazyQuery(baseOptions) {
2479
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2480
+ return Apollo.useLazyQuery(exports.GetOrgPolicyDocument, options);
2481
+ }
2482
+ exports.useGetOrgPolicyLazyQuery = useGetOrgPolicyLazyQuery;
2483
+ exports.GetOrgRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2484
+ /**
2485
+ * __useGetOrgRoleQuery__
2486
+ *
2487
+ * To run a query within a React component, call `useGetOrgRoleQuery` and pass it any options that fit your needs.
2488
+ * When your component renders, `useGetOrgRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
2489
+ * you can use to render your UI.
2490
+ *
2491
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2492
+ *
2493
+ * @example
2494
+ * const { data, loading, error } = useGetOrgRoleQuery({
2495
+ * variables: {
2496
+ * input: // value for 'input'
2497
+ * },
2498
+ * });
2499
+ */
2500
+ function useGetOrgRoleQuery(baseOptions) {
2501
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2502
+ return Apollo.useQuery(exports.GetOrgRoleDocument, options);
2503
+ }
2504
+ exports.useGetOrgRoleQuery = useGetOrgRoleQuery;
2505
+ function useGetOrgRoleLazyQuery(baseOptions) {
2506
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2507
+ return Apollo.useLazyQuery(exports.GetOrgRoleDocument, options);
2508
+ }
2509
+ exports.useGetOrgRoleLazyQuery = useGetOrgRoleLazyQuery;
2510
+ exports.GetOrgWithResourcesPolicyDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgWithResourcesPolicy" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfigurationPolicies" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationPolicy" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourcePolicy" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2511
+ /**
2512
+ * __useGetOrgWithResourcesPolicyQuery__
2513
+ *
2514
+ * To run a query within a React component, call `useGetOrgWithResourcesPolicyQuery` and pass it any options that fit your needs.
2515
+ * When your component renders, `useGetOrgWithResourcesPolicyQuery` returns an object from Apollo Client that contains loading, error, and data properties
2516
+ * you can use to render your UI.
2517
+ *
2518
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2519
+ *
2520
+ * @example
2521
+ * const { data, loading, error } = useGetOrgWithResourcesPolicyQuery({
2522
+ * variables: {
2523
+ * input: // value for 'input'
2524
+ * },
2525
+ * });
2526
+ */
2527
+ function useGetOrgWithResourcesPolicyQuery(baseOptions) {
2528
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2529
+ return Apollo.useQuery(exports.GetOrgWithResourcesPolicyDocument, options);
2530
+ }
2531
+ exports.useGetOrgWithResourcesPolicyQuery = useGetOrgWithResourcesPolicyQuery;
2532
+ function useGetOrgWithResourcesPolicyLazyQuery(baseOptions) {
2533
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2534
+ return Apollo.useLazyQuery(exports.GetOrgWithResourcesPolicyDocument, options);
2535
+ }
2536
+ exports.useGetOrgWithResourcesPolicyLazyQuery = useGetOrgWithResourcesPolicyLazyQuery;
2537
+ exports.GetOrgWithResourcesRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgWithResourcesRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRoles" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2538
+ /**
2539
+ * __useGetOrgWithResourcesRoleQuery__
2540
+ *
2541
+ * To run a query within a React component, call `useGetOrgWithResourcesRoleQuery` and pass it any options that fit your needs.
2542
+ * When your component renders, `useGetOrgWithResourcesRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
2543
+ * you can use to render your UI.
2544
+ *
2545
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2546
+ *
2547
+ * @example
2548
+ * const { data, loading, error } = useGetOrgWithResourcesRoleQuery({
2549
+ * variables: {
2550
+ * input: // value for 'input'
2551
+ * },
2552
+ * });
2553
+ */
2554
+ function useGetOrgWithResourcesRoleQuery(baseOptions) {
2555
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2556
+ return Apollo.useQuery(exports.GetOrgWithResourcesRoleDocument, options);
2557
+ }
2558
+ exports.useGetOrgWithResourcesRoleQuery = useGetOrgWithResourcesRoleQuery;
2559
+ function useGetOrgWithResourcesRoleLazyQuery(baseOptions) {
2560
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2561
+ return Apollo.useLazyQuery(exports.GetOrgWithResourcesRoleDocument, options);
2562
+ }
2563
+ exports.useGetOrgWithResourcesRoleLazyQuery = useGetOrgWithResourcesRoleLazyQuery;
2564
+ exports.ResolveConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "ResolveConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PreferencesInputInput" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resolveConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }] }] } }] };
2565
+ /**
2566
+ * __useResolveConfigurationQuery__
2567
+ *
2568
+ * To run a query within a React component, call `useResolveConfigurationQuery` and pass it any options that fit your needs.
2569
+ * When your component renders, `useResolveConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2570
+ * you can use to render your UI.
2571
+ *
2572
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2573
+ *
2574
+ * @example
2575
+ * const { data, loading, error } = useResolveConfigurationQuery({
2576
+ * variables: {
2577
+ * input: // value for 'input'
2578
+ * key: // value for 'key'
2579
+ * overrides: // value for 'overrides'
2580
+ * },
2581
+ * });
2582
+ */
2583
+ function useResolveConfigurationQuery(baseOptions) {
2584
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2585
+ return Apollo.useQuery(exports.ResolveConfigurationDocument, options);
2586
+ }
2587
+ exports.useResolveConfigurationQuery = useResolveConfigurationQuery;
2588
+ function useResolveConfigurationLazyQuery(baseOptions) {
2589
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2590
+ return Apollo.useLazyQuery(exports.ResolveConfigurationDocument, options);
2591
+ }
2592
+ exports.useResolveConfigurationLazyQuery = useResolveConfigurationLazyQuery;
2593
+ exports.GetResourcesConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetResourcesConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2594
+ /**
2595
+ * __useGetResourcesConfigurationQuery__
2596
+ *
2597
+ * To run a query within a React component, call `useGetResourcesConfigurationQuery` and pass it any options that fit your needs.
2598
+ * When your component renders, `useGetResourcesConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2599
+ * you can use to render your UI.
2600
+ *
2601
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2602
+ *
2603
+ * @example
2604
+ * const { data, loading, error } = useGetResourcesConfigurationQuery({
2605
+ * variables: {
2606
+ * input: // value for 'input'
2607
+ * },
2608
+ * });
2609
+ */
2610
+ function useGetResourcesConfigurationQuery(baseOptions) {
2611
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2612
+ return Apollo.useQuery(exports.GetResourcesConfigurationDocument, options);
2613
+ }
2614
+ exports.useGetResourcesConfigurationQuery = useGetResourcesConfigurationQuery;
2615
+ function useGetResourcesConfigurationLazyQuery(baseOptions) {
2616
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2617
+ return Apollo.useLazyQuery(exports.GetResourcesConfigurationDocument, options);
2618
+ }
2619
+ exports.useGetResourcesConfigurationLazyQuery = useGetResourcesConfigurationLazyQuery;
2620
+ exports.GetUserConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "MachineConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "DefaultConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2621
+ /**
2622
+ * __useGetUserConfigurationQuery__
2623
+ *
2624
+ * To run a query within a React component, call `useGetUserConfigurationQuery` and pass it any options that fit your needs.
2625
+ * When your component renders, `useGetUserConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2626
+ * you can use to render your UI.
2627
+ *
2628
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2629
+ *
2630
+ * @example
2631
+ * const { data, loading, error } = useGetUserConfigurationQuery({
2632
+ * variables: {
2633
+ * input: // value for 'input'
2634
+ * },
2635
+ * });
2636
+ */
2637
+ function useGetUserConfigurationQuery(baseOptions) {
2638
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2639
+ return Apollo.useQuery(exports.GetUserConfigurationDocument, options);
2640
+ }
2641
+ exports.useGetUserConfigurationQuery = useGetUserConfigurationQuery;
2642
+ function useGetUserConfigurationLazyQuery(baseOptions) {
2643
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2644
+ return Apollo.useLazyQuery(exports.GetUserConfigurationDocument, options);
2645
+ }
2646
+ exports.useGetUserConfigurationLazyQuery = useGetUserConfigurationLazyQuery;
2647
+ exports.DefaultSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "DefaultSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "defaultViewerSettingsSubject" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "settingsCascade" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "finalConfiguration" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "defaultSetting" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sections" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "settings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "DefaultSetting" } }] } }] } }] } }] } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "DefaultSetting" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ContributionSettings" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "descriptionIsMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deprecationMessage" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enumDescriptionsAreMarkdown" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "properties" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "readOnly" } }, { "kind": "Field", "name": { "kind": "Name", "value": "disabled" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "arrayItemType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingDependencies" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maximum" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minLength" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maxItems" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minItems" } }] } }] };
2648
+ /**
2649
+ * __useDefaultSettingsQuery__
2650
+ *
2651
+ * To run a query within a React component, call `useDefaultSettingsQuery` and pass it any options that fit your needs.
2652
+ * When your component renders, `useDefaultSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2653
+ * you can use to render your UI.
2654
+ *
2655
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2656
+ *
2657
+ * @example
2658
+ * const { data, loading, error } = useDefaultSettingsQuery({
2659
+ * variables: {
2660
+ * target: // value for 'target'
2661
+ * },
2662
+ * });
2663
+ */
2664
+ function useDefaultSettingsQuery(baseOptions) {
2665
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2666
+ return Apollo.useQuery(exports.DefaultSettingsDocument, options);
2667
+ }
2668
+ exports.useDefaultSettingsQuery = useDefaultSettingsQuery;
2669
+ function useDefaultSettingsLazyQuery(baseOptions) {
2670
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2671
+ return Apollo.useLazyQuery(exports.DefaultSettingsDocument, options);
2672
+ }
2673
+ exports.useDefaultSettingsLazyQuery = useDefaultSettingsLazyQuery;
2674
+ exports.GetContributionRolesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getContributionRoles" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getContributionRoles" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }] } }] } }] };
2675
+ /**
2676
+ * __useGetContributionRolesQuery__
2677
+ *
2678
+ * To run a query within a React component, call `useGetContributionRolesQuery` and pass it any options that fit your needs.
2679
+ * When your component renders, `useGetContributionRolesQuery` returns an object from Apollo Client that contains loading, error, and data properties
2680
+ * you can use to render your UI.
2681
+ *
2682
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2683
+ *
2684
+ * @example
2685
+ * const { data, loading, error } = useGetContributionRolesQuery({
2686
+ * variables: {
2687
+ * },
2688
+ * });
2689
+ */
2690
+ function useGetContributionRolesQuery(baseOptions) {
2691
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2692
+ return Apollo.useQuery(exports.GetContributionRolesDocument, options);
2693
+ }
2694
+ exports.useGetContributionRolesQuery = useGetContributionRolesQuery;
2695
+ function useGetContributionRolesLazyQuery(baseOptions) {
2696
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2697
+ return Apollo.useLazyQuery(exports.GetContributionRolesDocument, options);
2698
+ }
2699
+ exports.useGetContributionRolesLazyQuery = useGetContributionRolesLazyQuery;
2700
+ exports.GetOrgContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgContext" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgContext" }, "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgContext" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgUri" } }] } }] };
2701
+ /**
2702
+ * __useGetOrgContextQuery__
2703
+ *
2704
+ * To run a query within a React component, call `useGetOrgContextQuery` and pass it any options that fit your needs.
2705
+ * When your component renders, `useGetOrgContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
2706
+ * you can use to render your UI.
2707
+ *
2708
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2709
+ *
2710
+ * @example
2711
+ * const { data, loading, error } = useGetOrgContextQuery({
2712
+ * variables: {
2713
+ * },
2714
+ * });
2715
+ */
2716
+ function useGetOrgContextQuery(baseOptions) {
2717
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2718
+ return Apollo.useQuery(exports.GetOrgContextDocument, options);
2719
+ }
2720
+ exports.useGetOrgContextQuery = useGetOrgContextQuery;
2721
+ function useGetOrgContextLazyQuery(baseOptions) {
2722
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2723
+ return Apollo.useLazyQuery(exports.GetOrgContextDocument, options);
2724
+ }
2725
+ exports.useGetOrgContextLazyQuery = useGetOrgContextLazyQuery;
2726
+ exports.GetOrgNameFromContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgNameFromContext" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrgNameFromContext" }, "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgNameInContext" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgNameInContext" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Context" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }] } }] };
2727
+ /**
2728
+ * __useGetOrgNameFromContextQuery__
2729
+ *
2730
+ * To run a query within a React component, call `useGetOrgNameFromContextQuery` and pass it any options that fit your needs.
2731
+ * When your component renders, `useGetOrgNameFromContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
2732
+ * you can use to render your UI.
2733
+ *
2734
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2735
+ *
2736
+ * @example
2737
+ * const { data, loading, error } = useGetOrgNameFromContextQuery({
2738
+ * variables: {
2739
+ * },
2740
+ * });
2741
+ */
2742
+ function useGetOrgNameFromContextQuery(baseOptions) {
2743
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2744
+ return Apollo.useQuery(exports.GetOrgNameFromContextDocument, options);
2745
+ }
2746
+ exports.useGetOrgNameFromContextQuery = useGetOrgNameFromContextQuery;
2747
+ function useGetOrgNameFromContextLazyQuery(baseOptions) {
2748
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2749
+ return Apollo.useLazyQuery(exports.GetOrgNameFromContextDocument, options);
2750
+ }
2751
+ exports.useGetOrgNameFromContextLazyQuery = useGetOrgNameFromContextLazyQuery;
2752
+ exports.GetRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationRole" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }] } }] } }] } }] };
2753
+ /**
2754
+ * __useGetRoleQuery__
2755
+ *
2756
+ * To run a query within a React component, call `useGetRoleQuery` and pass it any options that fit your needs.
2757
+ * When your component renders, `useGetRoleQuery` returns an object from Apollo Client that contains loading, error, and data properties
2758
+ * you can use to render your UI.
2759
+ *
2760
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2761
+ *
2762
+ * @example
2763
+ * const { data, loading, error } = useGetRoleQuery({
2764
+ * variables: {
2765
+ * input: // value for 'input'
2766
+ * },
2767
+ * });
2768
+ */
2769
+ function useGetRoleQuery(baseOptions) {
2770
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2771
+ return Apollo.useQuery(exports.GetRoleDocument, options);
2772
+ }
2773
+ exports.useGetRoleQuery = useGetRoleQuery;
2774
+ function useGetRoleLazyQuery(baseOptions) {
2775
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2776
+ return Apollo.useLazyQuery(exports.GetRoleDocument, options);
2777
+ }
2778
+ exports.useGetRoleLazyQuery = useGetRoleLazyQuery;
2779
+ exports.GetOrgWithResourcesConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrgWithResourcesConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "MachineConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2780
+ /**
2781
+ * __useGetOrgWithResourcesConfigurationQuery__
2782
+ *
2783
+ * To run a query within a React component, call `useGetOrgWithResourcesConfigurationQuery` and pass it any options that fit your needs.
2784
+ * When your component renders, `useGetOrgWithResourcesConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2785
+ * you can use to render your UI.
2786
+ *
2787
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2788
+ *
2789
+ * @example
2790
+ * const { data, loading, error } = useGetOrgWithResourcesConfigurationQuery({
2791
+ * variables: {
2792
+ * input: // value for 'input'
2793
+ * },
2794
+ * });
2795
+ */
2796
+ function useGetOrgWithResourcesConfigurationQuery(baseOptions) {
2797
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2798
+ return Apollo.useQuery(exports.GetOrgWithResourcesConfigurationDocument, options);
2799
+ }
2800
+ exports.useGetOrgWithResourcesConfigurationQuery = useGetOrgWithResourcesConfigurationQuery;
2801
+ function useGetOrgWithResourcesConfigurationLazyQuery(baseOptions) {
2802
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2803
+ return Apollo.useLazyQuery(exports.GetOrgWithResourcesConfigurationDocument, options);
2804
+ }
2805
+ exports.useGetOrgWithResourcesConfigurationLazyQuery = useGetOrgWithResourcesConfigurationLazyQuery;
2806
+ exports.GetUserWithDefaultConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserWithDefaultConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationInput" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "DefaultConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "UserConfiguration" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2807
+ /**
2808
+ * __useGetUserWithDefaultConfigurationQuery__
2809
+ *
2810
+ * To run a query within a React component, call `useGetUserWithDefaultConfigurationQuery` and pass it any options that fit your needs.
2811
+ * When your component renders, `useGetUserWithDefaultConfigurationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2812
+ * you can use to render your UI.
2813
+ *
2814
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2815
+ *
2816
+ * @example
2817
+ * const { data, loading, error } = useGetUserWithDefaultConfigurationQuery({
2818
+ * variables: {
2819
+ * input: // value for 'input'
2820
+ * },
2821
+ * });
2822
+ */
2823
+ function useGetUserWithDefaultConfigurationQuery(baseOptions) {
2824
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2825
+ return Apollo.useQuery(exports.GetUserWithDefaultConfigurationDocument, options);
2826
+ }
2827
+ exports.useGetUserWithDefaultConfigurationQuery = useGetUserWithDefaultConfigurationQuery;
2828
+ function useGetUserWithDefaultConfigurationLazyQuery(baseOptions) {
2829
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2830
+ return Apollo.useLazyQuery(exports.GetUserWithDefaultConfigurationDocument, options);
2831
+ }
2832
+ exports.useGetUserWithDefaultConfigurationLazyQuery = useGetUserWithDefaultConfigurationLazyQuery;
2833
+ exports.SubscribeToConfigurationUpdateDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "subscription", "name": { "kind": "Name", "value": "SubscribeToConfigurationUpdate" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "SubscribeToConfigurationUpdate" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrideIdentifier" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2834
+ /**
2835
+ * __useSubscribeToConfigurationUpdateSubscription__
2836
+ *
2837
+ * To run a query within a React component, call `useSubscribeToConfigurationUpdateSubscription` and pass it any options that fit your needs.
2838
+ * When your component renders, `useSubscribeToConfigurationUpdateSubscription` returns an object from Apollo Client that contains loading, error, and data properties
2839
+ * you can use to render your UI.
2840
+ *
2841
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2842
+ *
2843
+ * @example
2844
+ * const { data, loading, error } = useSubscribeToConfigurationUpdateSubscription({
2845
+ * variables: {
2846
+ * orgName: // value for 'orgName'
2847
+ * },
2848
+ * });
2849
+ */
2850
+ function useSubscribeToConfigurationUpdateSubscription(baseOptions) {
2851
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2852
+ return Apollo.useSubscription(exports.SubscribeToConfigurationUpdateDocument, options);
2853
+ }
2854
+ exports.useSubscribeToConfigurationUpdateSubscription = useSubscribeToConfigurationUpdateSubscription;
2855
+ exports.SubscribeToOrganizationContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "subscription", "name": { "kind": "Name", "value": "subscribeToOrganizationContext" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgNameFilter" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "SubscribeToOrganizationContext" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgNameFilter" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgNameFilter" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resources" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgNameFilter" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
2856
+ /**
2857
+ * __useSubscribeToOrganizationContextSubscription__
2858
+ *
2859
+ * To run a query within a React component, call `useSubscribeToOrganizationContextSubscription` and pass it any options that fit your needs.
2860
+ * When your component renders, `useSubscribeToOrganizationContextSubscription` returns an object from Apollo Client that contains loading, error, and data properties
2861
+ * you can use to render your UI.
2862
+ *
2863
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2864
+ *
2865
+ * @example
2866
+ * const { data, loading, error } = useSubscribeToOrganizationContextSubscription({
2867
+ * variables: {
2868
+ * orgNameFilter: // value for 'orgNameFilter'
2869
+ * },
2870
+ * });
2871
+ */
2872
+ function useSubscribeToOrganizationContextSubscription(baseOptions) {
2873
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2874
+ return Apollo.useSubscription(exports.SubscribeToOrganizationContextDocument, options);
2875
+ }
2876
+ exports.useSubscribeToOrganizationContextSubscription = useSubscribeToOrganizationContextSubscription;
2877
+ exports.SubscribeToPermissionUpdateDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "subscription", "name": { "kind": "Name", "value": "SubscribeToPermissionUpdate" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "SubscribeToPermissionUpdate" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrideIdentifier" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2878
+ /**
2879
+ * __useSubscribeToPermissionUpdateSubscription__
2880
+ *
2881
+ * To run a query within a React component, call `useSubscribeToPermissionUpdateSubscription` and pass it any options that fit your needs.
2882
+ * When your component renders, `useSubscribeToPermissionUpdateSubscription` returns an object from Apollo Client that contains loading, error, and data properties
2883
+ * you can use to render your UI.
2884
+ *
2885
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2886
+ *
2887
+ * @example
2888
+ * const { data, loading, error } = useSubscribeToPermissionUpdateSubscription({
2889
+ * variables: {
2890
+ * orgName: // value for 'orgName'
2891
+ * },
2892
+ * });
2893
+ */
2894
+ function useSubscribeToPermissionUpdateSubscription(baseOptions) {
2895
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2896
+ return Apollo.useSubscription(exports.SubscribeToPermissionUpdateDocument, options);
2897
+ }
2898
+ exports.useSubscribeToPermissionUpdateSubscription = useSubscribeToPermissionUpdateSubscription;
2899
+ exports.SubscribeToPolicyUpdateDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "subscription", "name": { "kind": "Name", "value": "SubscribeToPolicyUpdate" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "SubscribeToPolicyUpdate" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationUpdateEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrideIdentifier" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
2900
+ /**
2901
+ * __useSubscribeToPolicyUpdateSubscription__
2902
+ *
2903
+ * To run a query within a React component, call `useSubscribeToPolicyUpdateSubscription` and pass it any options that fit your needs.
2904
+ * When your component renders, `useSubscribeToPolicyUpdateSubscription` returns an object from Apollo Client that contains loading, error, and data properties
2905
+ * you can use to render your UI.
2906
+ *
2907
+ * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2908
+ *
2909
+ * @example
2910
+ * const { data, loading, error } = useSubscribeToPolicyUpdateSubscription({
2911
+ * variables: {
2912
+ * orgName: // value for 'orgName'
2913
+ * },
2914
+ * });
2915
+ */
2916
+ function useSubscribeToPolicyUpdateSubscription(baseOptions) {
2917
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2918
+ return Apollo.useSubscription(exports.SubscribeToPolicyUpdateDocument, options);
2919
+ }
2920
+ exports.useSubscribeToPolicyUpdateSubscription = useSubscribeToPolicyUpdateSubscription;
2921
+ exports.UpdateConfigurationValueByUriDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdateConfigurationValueByUri" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateConfigurationValueByUri" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resource" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }] }] } }] };
2922
+ /**
2923
+ * __useUpdateConfigurationValueByUriMutation__
2924
+ *
2925
+ * To run a mutation, you first call `useUpdateConfigurationValueByUriMutation` within a React component and pass it any options that fit your needs.
2926
+ * When your component renders, `useUpdateConfigurationValueByUriMutation` returns a tuple that includes:
2927
+ * - A mutate function that you can call at any time to execute the mutation
2928
+ * - An object with fields that represent the current status of the mutation's execution
2929
+ *
2930
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2931
+ *
2932
+ * @example
2933
+ * const [updateConfigurationValueByUriMutation, { data, loading, error }] = useUpdateConfigurationValueByUriMutation({
2934
+ * variables: {
2935
+ * resource: // value for 'resource'
2936
+ * key: // value for 'key'
2937
+ * value: // value for 'value'
2938
+ * overrides: // value for 'overrides'
2939
+ * target: // value for 'target'
2940
+ * donotNotifyError: // value for 'donotNotifyError'
2941
+ * },
2942
+ * });
2943
+ */
2944
+ function useUpdateConfigurationValueByUriMutation(baseOptions) {
2945
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2946
+ return Apollo.useMutation(exports.UpdateConfigurationValueByUriDocument, options);
2947
+ }
2948
+ exports.useUpdateConfigurationValueByUriMutation = useUpdateConfigurationValueByUriMutation;
2949
+ exports.UpdateConfigurationValueDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdateConfigurationValue" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateConfigurationValue" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }] }] } }] };
2950
+ /**
2951
+ * __useUpdateConfigurationValueMutation__
2952
+ *
2953
+ * To run a mutation, you first call `useUpdateConfigurationValueMutation` within a React component and pass it any options that fit your needs.
2954
+ * When your component renders, `useUpdateConfigurationValueMutation` returns a tuple that includes:
2955
+ * - A mutate function that you can call at any time to execute the mutation
2956
+ * - An object with fields that represent the current status of the mutation's execution
2957
+ *
2958
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2959
+ *
2960
+ * @example
2961
+ * const [updateConfigurationValueMutation, { data, loading, error }] = useUpdateConfigurationValueMutation({
2962
+ * variables: {
2963
+ * key: // value for 'key'
2964
+ * value: // value for 'value'
2965
+ * overrides: // value for 'overrides'
2966
+ * target: // value for 'target'
2967
+ * donotNotifyError: // value for 'donotNotifyError'
2968
+ * },
2969
+ * });
2970
+ */
2971
+ function useUpdateConfigurationValueMutation(baseOptions) {
2972
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2973
+ return Apollo.useMutation(exports.UpdateConfigurationValueDocument, options);
2974
+ }
2975
+ exports.useUpdateConfigurationValueMutation = useUpdateConfigurationValueMutation;
2976
+ exports.UpdateOrganizationContextAddResourcesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateOrganizationContextAddResources" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToAdd" } }, "type": { "kind": "NonNullType", "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceCreationDataInput" } } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "index" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateOrganizationContextAddResources" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgId" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "resourcesToAdd" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToAdd" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "index" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "index" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
2977
+ /**
2978
+ * __useUpdateOrganizationContextAddResourcesMutation__
2979
+ *
2980
+ * To run a mutation, you first call `useUpdateOrganizationContextAddResourcesMutation` within a React component and pass it any options that fit your needs.
2981
+ * When your component renders, `useUpdateOrganizationContextAddResourcesMutation` returns a tuple that includes:
2982
+ * - A mutate function that you can call at any time to execute the mutation
2983
+ * - An object with fields that represent the current status of the mutation's execution
2984
+ *
2985
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2986
+ *
2987
+ * @example
2988
+ * const [updateOrganizationContextAddResourcesMutation, { data, loading, error }] = useUpdateOrganizationContextAddResourcesMutation({
2989
+ * variables: {
2990
+ * orgId: // value for 'orgId'
2991
+ * resourcesToAdd: // value for 'resourcesToAdd'
2992
+ * index: // value for 'index'
2993
+ * },
2994
+ * });
2995
+ */
2996
+ function useUpdateOrganizationContextAddResourcesMutation(baseOptions) {
2997
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
2998
+ return Apollo.useMutation(exports.UpdateOrganizationContextAddResourcesDocument, options);
2999
+ }
3000
+ exports.useUpdateOrganizationContextAddResourcesMutation = useUpdateOrganizationContextAddResourcesMutation;
3001
+ exports.UpdateOrganizationContextRemoveResourcesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateOrganizationContextRemoveResources" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToRemove" } }, "type": { "kind": "NonNullType", "type": { "kind": "ListType", "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateOrganizationContextRemoveResources" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resourcesToRemove" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToRemove" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
3002
+ /**
3003
+ * __useUpdateOrganizationContextRemoveResourcesMutation__
3004
+ *
3005
+ * To run a mutation, you first call `useUpdateOrganizationContextRemoveResourcesMutation` within a React component and pass it any options that fit your needs.
3006
+ * When your component renders, `useUpdateOrganizationContextRemoveResourcesMutation` returns a tuple that includes:
3007
+ * - A mutate function that you can call at any time to execute the mutation
3008
+ * - An object with fields that represent the current status of the mutation's execution
3009
+ *
3010
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
3011
+ *
3012
+ * @example
3013
+ * const [updateOrganizationContextRemoveResourcesMutation, { data, loading, error }] = useUpdateOrganizationContextRemoveResourcesMutation({
3014
+ * variables: {
3015
+ * resourcesToRemove: // value for 'resourcesToRemove'
3016
+ * },
3017
+ * });
3018
+ */
3019
+ function useUpdateOrganizationContextRemoveResourcesMutation(baseOptions) {
3020
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3021
+ return Apollo.useMutation(exports.UpdateOrganizationContextRemoveResourcesDocument, options);
3022
+ }
3023
+ exports.useUpdateOrganizationContextRemoveResourcesMutation = useUpdateOrganizationContextRemoveResourcesMutation;
3024
+ exports.UpdateOrganizationContextUpdateResourcesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "updateOrganizationContextUpdateResources" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToAdd" } }, "type": { "kind": "NonNullType", "type": { "kind": "ListType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ResourceCreationDataInput" } } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToRemove" } }, "type": { "kind": "NonNullType", "type": { "kind": "ListType", "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "index" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateOrganizationContextUpdateResources" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resourcesToAdd" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToAdd" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "resourcesToRemove" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resourcesToRemove" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "index" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "index" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }] };
3025
+ /**
3026
+ * __useUpdateOrganizationContextUpdateResourcesMutation__
3027
+ *
3028
+ * To run a mutation, you first call `useUpdateOrganizationContextUpdateResourcesMutation` within a React component and pass it any options that fit your needs.
3029
+ * When your component renders, `useUpdateOrganizationContextUpdateResourcesMutation` returns a tuple that includes:
3030
+ * - A mutate function that you can call at any time to execute the mutation
3031
+ * - An object with fields that represent the current status of the mutation's execution
3032
+ *
3033
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
3034
+ *
3035
+ * @example
3036
+ * const [updateOrganizationContextUpdateResourcesMutation, { data, loading, error }] = useUpdateOrganizationContextUpdateResourcesMutation({
3037
+ * variables: {
3038
+ * resourcesToAdd: // value for 'resourcesToAdd'
3039
+ * resourcesToRemove: // value for 'resourcesToRemove'
3040
+ * index: // value for 'index'
3041
+ * },
3042
+ * });
3043
+ */
3044
+ function useUpdateOrganizationContextUpdateResourcesMutation(baseOptions) {
3045
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3046
+ return Apollo.useMutation(exports.UpdateOrganizationContextUpdateResourcesDocument, options);
3047
+ }
3048
+ exports.useUpdateOrganizationContextUpdateResourcesMutation = useUpdateOrganizationContextUpdateResourcesMutation;
3049
+ exports.UpdatePolicyValueDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdatePolicyValue" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateConfigurationPolicyValue" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }] }] } }] };
3050
+ /**
3051
+ * __useUpdatePolicyValueMutation__
3052
+ *
3053
+ * To run a mutation, you first call `useUpdatePolicyValueMutation` within a React component and pass it any options that fit your needs.
3054
+ * When your component renders, `useUpdatePolicyValueMutation` returns a tuple that includes:
3055
+ * - A mutate function that you can call at any time to execute the mutation
3056
+ * - An object with fields that represent the current status of the mutation's execution
3057
+ *
3058
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
3059
+ *
3060
+ * @example
3061
+ * const [updatePolicyValueMutation, { data, loading, error }] = useUpdatePolicyValueMutation({
3062
+ * variables: {
3063
+ * key: // value for 'key'
3064
+ * value: // value for 'value'
3065
+ * overrides: // value for 'overrides'
3066
+ * target: // value for 'target'
3067
+ * donotNotifyError: // value for 'donotNotifyError'
3068
+ * },
3069
+ * });
3070
+ */
3071
+ function useUpdatePolicyValueMutation(baseOptions) {
3072
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3073
+ return Apollo.useMutation(exports.UpdatePolicyValueDocument, options);
3074
+ }
3075
+ exports.useUpdatePolicyValueMutation = useUpdatePolicyValueMutation;
3076
+ exports.UpdateRoleValueDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdateRoleValue" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateRoleValue" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }] }] } }] };
3077
+ /**
3078
+ * __useUpdateRoleValueMutation__
3079
+ *
3080
+ * To run a mutation, you first call `useUpdateRoleValueMutation` within a React component and pass it any options that fit your needs.
3081
+ * When your component renders, `useUpdateRoleValueMutation` returns a tuple that includes:
3082
+ * - A mutate function that you can call at any time to execute the mutation
3083
+ * - An object with fields that represent the current status of the mutation's execution
3084
+ *
3085
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
3086
+ *
3087
+ * @example
3088
+ * const [updateRoleValueMutation, { data, loading, error }] = useUpdateRoleValueMutation({
3089
+ * variables: {
3090
+ * key: // value for 'key'
3091
+ * value: // value for 'value'
3092
+ * overrides: // value for 'overrides'
3093
+ * target: // value for 'target'
3094
+ * donotNotifyError: // value for 'donotNotifyError'
3095
+ * },
3096
+ * });
3097
+ */
3098
+ function useUpdateRoleValueMutation(baseOptions) {
3099
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3100
+ return Apollo.useMutation(exports.UpdateRoleValueDocument, options);
3101
+ }
3102
+ exports.useUpdateRoleValueMutation = useUpdateRoleValueMutation;
3103
+ exports.GetConfigurationDataDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getConfigurationData" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getConfigurationData" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "defaults" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "user" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "machine" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "organization" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "resources" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "Configuration" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "isComplete" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "Configuration" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IConfigurationModel" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resource" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "keys" } }, { "kind": "Field", "name": { "kind": "Name", "value": "overrides" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "contents" } }, { "kind": "Field", "name": { "kind": "Name", "value": "identifiers" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }] } }] };
3104
+ /**
3105
+ * __useGetConfigurationDataQuery__
3106
+ *
3107
+ * To run a query within a React component, call `useGetConfigurationDataQuery` and pass it any options that fit your needs.
3108
+ * When your component renders, `useGetConfigurationDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
3109
+ * you can use to render your UI.
3110
+ *
3111
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
3112
+ *
3113
+ * @example
3114
+ * const { data, loading, error } = useGetConfigurationDataQuery({
3115
+ * variables: {
3116
+ * },
3117
+ * });
3118
+ */
3119
+ function useGetConfigurationDataQuery(baseOptions) {
3120
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3121
+ return Apollo.useQuery(exports.GetConfigurationDataDocument, options);
3122
+ }
3123
+ exports.useGetConfigurationDataQuery = useGetConfigurationDataQuery;
3124
+ function useGetConfigurationDataLazyQuery(baseOptions) {
3125
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3126
+ return Apollo.useLazyQuery(exports.GetConfigurationDataDocument, options);
3127
+ }
3128
+ exports.useGetConfigurationDataLazyQuery = useGetConfigurationDataLazyQuery;
3129
+ exports.OrganizationResourceContextDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "OrganizationResourceContext" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationResourceContext" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrganizationData" } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "ResourceData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "uri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrganizationData" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resources" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrganizationResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ExternalResourceData" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "ResourceData" } }] } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "configuration" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }] } }] };
3130
+ /**
3131
+ * __useOrganizationResourceContextQuery__
3132
+ *
3133
+ * To run a query within a React component, call `useOrganizationResourceContextQuery` and pass it any options that fit your needs.
3134
+ * When your component renders, `useOrganizationResourceContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
3135
+ * you can use to render your UI.
3136
+ *
3137
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
3138
+ *
3139
+ * @example
3140
+ * const { data, loading, error } = useOrganizationResourceContextQuery({
3141
+ * variables: {
3142
+ * orgId: // value for 'orgId'
3143
+ * },
3144
+ * });
3145
+ */
3146
+ function useOrganizationResourceContextQuery(baseOptions) {
3147
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3148
+ return Apollo.useQuery(exports.OrganizationResourceContextDocument, options);
3149
+ }
3150
+ exports.useOrganizationResourceContextQuery = useOrganizationResourceContextQuery;
3151
+ function useOrganizationResourceContextLazyQuery(baseOptions) {
3152
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3153
+ return Apollo.useLazyQuery(exports.OrganizationResourceContextDocument, options);
3154
+ }
3155
+ exports.useOrganizationResourceContextLazyQuery = useOrganizationResourceContextLazyQuery;
3156
+ exports.ViewerSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "ViewerSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ViewerSettingsInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "viewerSettings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "settings" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "AccountBillingPreferences" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "AccountBillingPreferences" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Preferences" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "notification" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "primaryEmail" } }, { "kind": "Field", "name": { "kind": "Name", "value": "billing" } }] } }] } }] } }] };
3157
+ /**
3158
+ * __useViewerSettingsQuery__
3159
+ *
3160
+ * To run a query within a React component, call `useViewerSettingsQuery` and pass it any options that fit your needs.
3161
+ * When your component renders, `useViewerSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
3162
+ * you can use to render your UI.
3163
+ *
3164
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
3165
+ *
3166
+ * @example
3167
+ * const { data, loading, error } = useViewerSettingsQuery({
3168
+ * variables: {
3169
+ * input: // value for 'input'
3170
+ * },
3171
+ * });
3172
+ */
3173
+ function useViewerSettingsQuery(baseOptions) {
3174
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3175
+ return Apollo.useQuery(exports.ViewerSettingsDocument, options);
3176
+ }
3177
+ exports.useViewerSettingsQuery = useViewerSettingsQuery;
3178
+ function useViewerSettingsLazyQuery(baseOptions) {
3179
+ const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
3180
+ return Apollo.useLazyQuery(exports.ViewerSettingsDocument, options);
3181
+ }
3182
+ exports.useViewerSettingsLazyQuery = useViewerSettingsLazyQuery;
3183
+ //# sourceMappingURL=generated-models.js.map