@forge/cli-shared 8.17.1-next.3 → 8.17.1-next.4-experimental-13a01c2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.17.1-next.4-experimental-13a01c2
4
+
5
+ ### Patch Changes
6
+
7
+ - ec5e461: Clean up feature gate forge-cli-enable-xpa-installation
8
+ - Updated dependencies [34fc90d]
9
+ - Updated dependencies [a1a0375]
10
+ - Updated dependencies [06c240c]
11
+ - Updated dependencies [2e6f63a]
12
+ - @forge/manifest@12.4.0-next.3-experimental-13a01c2
13
+
14
+ ## 8.17.1-next.4
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [a1a0375]
19
+ - @forge/manifest@12.4.0-next.3
20
+
3
21
  ## 8.17.1-next.3
4
22
 
5
23
  ### Patch Changes
@@ -5778,7 +5778,7 @@ export declare type AgentWorkspaceEligibleGroup = {
5778
5778
  __typename?: 'AgentWorkspaceEligibleGroup';
5779
5779
  group?: Maybe<IdentityGroup>;
5780
5780
  groupAri: Scalars['ID']['output'];
5781
- membersPreview: AgentWorkspaceGroupMembersPreview;
5781
+ members: Array<AgentWorkspaceGroupMember>;
5782
5782
  };
5783
5783
  export declare type AgentWorkspaceEligibleGroupsPayload = {
5784
5784
  __typename?: 'AgentWorkspaceEligibleGroupsPayload';
@@ -5798,16 +5798,11 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
5798
5798
  rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
5799
5799
  success: Scalars['Boolean']['output'];
5800
5800
  };
5801
- export declare type AgentWorkspaceGroupMemberPreview = {
5802
- __typename?: 'AgentWorkspaceGroupMemberPreview';
5801
+ export declare type AgentWorkspaceGroupMember = {
5802
+ __typename?: 'AgentWorkspaceGroupMember';
5803
5803
  accountId: Scalars['String']['output'];
5804
5804
  user?: Maybe<User>;
5805
5805
  };
5806
- export declare type AgentWorkspaceGroupMembersPreview = {
5807
- __typename?: 'AgentWorkspaceGroupMembersPreview';
5808
- hasMoreMembers: Scalars['Boolean']['output'];
5809
- members: Array<AgentWorkspaceGroupMemberPreview>;
5810
- };
5811
5806
  export declare type AgentWorkspaceGroupTooLarge = {
5812
5807
  __typename?: 'AgentWorkspaceGroupTooLarge';
5813
5808
  group?: Maybe<IdentityGroup>;
@@ -33708,6 +33703,23 @@ export declare type CplsDeleteAllSuggestionsForUserPayload = Payload & {
33708
33703
  errors?: Maybe<Array<MutationError>>;
33709
33704
  success: Scalars['Boolean']['output'];
33710
33705
  };
33706
+ export declare type CplsDeleteContributionSuggestionForUserInput = {
33707
+ contributions: Array<CplsDeleteContributionSuggestionInput>;
33708
+ scopeId: Scalars['ID']['input'];
33709
+ };
33710
+ export declare type CplsDeleteContributionSuggestionInput = {
33711
+ contributorDataId: Scalars['ID']['input'];
33712
+ endDate: Scalars['Date']['input'];
33713
+ startDate: Scalars['Date']['input'];
33714
+ workId: Scalars['ID']['input'];
33715
+ };
33716
+ export declare type CplsDeleteContributionSuggestionsPayload = Payload & {
33717
+ __typename?: 'CplsDeleteContributionSuggestionsPayload';
33718
+ contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
33719
+ errors?: Maybe<Array<MutationError>>;
33720
+ success: Scalars['Boolean']['output'];
33721
+ works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
33722
+ };
33711
33723
  export declare type CplsDeleteContributorScopeAssociationInput = {
33712
33724
  cloudId: Scalars['ID']['input'];
33713
33725
  contributorDataIds: Array<Scalars['ID']['input']>;
@@ -33719,6 +33731,16 @@ export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
33719
33731
  ids?: Maybe<Array<Scalars['ID']['output']>>;
33720
33732
  success: Scalars['Boolean']['output'];
33721
33733
  };
33734
+ export declare type CplsDeleteContributorScopeAssociationSuggestionForUserInput = {
33735
+ contributorDataIds: Array<Scalars['ID']['input']>;
33736
+ scopeId: Scalars['ID']['input'];
33737
+ };
33738
+ export declare type CplsDeleteContributorScopeAssociationSuggestionPayload = Payload & {
33739
+ __typename?: 'CplsDeleteContributorScopeAssociationSuggestionPayload';
33740
+ errors?: Maybe<Array<MutationError>>;
33741
+ ids?: Maybe<Array<Scalars['ID']['output']>>;
33742
+ success: Scalars['Boolean']['output'];
33743
+ };
33722
33744
  export declare type CplsDeleteContributorWorkAssociationInput = {
33723
33745
  cloudId: Scalars['ID']['input'];
33724
33746
  contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
@@ -33737,6 +33759,24 @@ export declare type CplsDeleteContributorWorkAssociationPayloadContributorsBySco
33737
33759
  export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
33738
33760
  scopeId: Scalars['ID']['input'];
33739
33761
  };
33762
+ export declare type CplsDeleteContributorWorkAssociationSuggestionForUserInput = {
33763
+ contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
33764
+ scopeId: Scalars['ID']['input'];
33765
+ };
33766
+ export declare type CplsDeleteContributorWorkAssociationSuggestionPayload = Payload & {
33767
+ __typename?: 'CplsDeleteContributorWorkAssociationSuggestionPayload';
33768
+ contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
33769
+ errors?: Maybe<Array<MutationError>>;
33770
+ ids?: Maybe<Array<Scalars['ID']['output']>>;
33771
+ success: Scalars['Boolean']['output'];
33772
+ worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
33773
+ };
33774
+ export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadContributorsByScopeArgs = {
33775
+ scopeId: Scalars['ID']['input'];
33776
+ };
33777
+ export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadWorksByScopeArgs = {
33778
+ scopeId: Scalars['ID']['input'];
33779
+ };
33740
33780
  export declare type CplsDeleteWorkScopeAssociationsInput = {
33741
33781
  cloudId: Scalars['ID']['input'];
33742
33782
  scopeId: Scalars['ID']['input'];
@@ -123514,6 +123554,16 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
123514
123554
  errors?: Maybe<Array<MutationError>>;
123515
123555
  success: Scalars['Boolean']['output'];
123516
123556
  };
123557
+ export declare type JiraSetTimelineSearchFiltersInput = {
123558
+ additionalJql?: InputMaybe<Scalars['String']['input']>;
123559
+ filters?: InputMaybe<JiraTimelineSearchFilterInput>;
123560
+ viewId: Scalars['ID']['input'];
123561
+ };
123562
+ export declare type JiraSetTimelineSearchFiltersPayload = Payload & {
123563
+ __typename?: 'JiraSetTimelineSearchFiltersPayload';
123564
+ errors?: Maybe<Array<MutationError>>;
123565
+ success: Scalars['Boolean']['output'];
123566
+ };
123517
123567
  export declare type JiraSetTimelineViewFieldSetsInput = {
123518
123568
  fieldSetIds: Array<Scalars['String']['input']>;
123519
123569
  viewId: Scalars['ID']['input'];
@@ -125034,7 +125084,13 @@ export declare type JiraTimelineProjectSettings = {
125034
125084
  isUserBoardAdmin?: Maybe<Scalars['Boolean']['output']>;
125035
125085
  rankIssueSupported?: Maybe<Scalars['Boolean']['output']>;
125036
125086
  };
125087
+ export declare type JiraTimelineSearchFilterInput = {
125088
+ customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
125089
+ quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
125090
+ };
125037
125091
  export declare type JiraTimelineStaticViewInput = {
125092
+ hideDependencies?: InputMaybe<Scalars['Boolean']['input']>;
125093
+ hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
125038
125094
  hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
125039
125095
  rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
125040
125096
  };
@@ -141710,8 +141766,11 @@ export declare type Mutation = {
141710
141766
  cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
141711
141767
  cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
141712
141768
  cpls_deleteAllSuggestionsForUser?: Maybe<CplsDeleteAllSuggestionsForUserPayload>;
141769
+ cpls_deleteContributionSuggestionForUser?: Maybe<CplsDeleteContributionSuggestionsPayload>;
141713
141770
  cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
141771
+ cpls_deleteContributorScopeAssociationSuggestionForUser?: Maybe<CplsDeleteContributorScopeAssociationSuggestionPayload>;
141714
141772
  cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
141773
+ cpls_deleteContributorWorkAssociationSuggestionForUser?: Maybe<CplsDeleteContributorWorkAssociationSuggestionPayload>;
141715
141774
  cpls_deleteWorkScopeAssociations?: Maybe<CplsDeleteWorkScopeAssociationsPayload>;
141716
141775
  cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
141717
141776
  cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
@@ -142058,6 +142117,7 @@ export declare type Mutation = {
142058
142117
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
142059
142118
  jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
142060
142119
  jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
142120
+ jira_setTimelineSearchFilters?: Maybe<JiraSetTimelineSearchFiltersPayload>;
142061
142121
  jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
142062
142122
  jira_setTimelineViewHideDependencies?: Maybe<JiraSetTimelineViewHideDependenciesPayload>;
142063
142123
  jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
@@ -143943,12 +144003,21 @@ export declare type MutationCpls_CreateSuggestionsArgs = {
143943
144003
  export declare type MutationCpls_DeleteAllSuggestionsForUserArgs = {
143944
144004
  input: CplsDeleteAllSuggestionsForUserInput;
143945
144005
  };
144006
+ export declare type MutationCpls_DeleteContributionSuggestionForUserArgs = {
144007
+ input: CplsDeleteContributionSuggestionForUserInput;
144008
+ };
143946
144009
  export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
143947
144010
  input: CplsDeleteContributorScopeAssociationInput;
143948
144011
  };
144012
+ export declare type MutationCpls_DeleteContributorScopeAssociationSuggestionForUserArgs = {
144013
+ input: CplsDeleteContributorScopeAssociationSuggestionForUserInput;
144014
+ };
143949
144015
  export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
143950
144016
  input: CplsDeleteContributorWorkAssociationInput;
143951
144017
  };
144018
+ export declare type MutationCpls_DeleteContributorWorkAssociationSuggestionForUserArgs = {
144019
+ input: CplsDeleteContributorWorkAssociationSuggestionForUserInput;
144020
+ };
143952
144021
  export declare type MutationCpls_DeleteWorkScopeAssociationsArgs = {
143953
144022
  input: CplsDeleteWorkScopeAssociationsInput;
143954
144023
  };
@@ -145077,6 +145146,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
145077
145146
  cloudId: Scalars['ID']['input'];
145078
145147
  input: JiraSetTimelineHighlightedReleasesInput;
145079
145148
  };
145149
+ export declare type MutationJira_SetTimelineSearchFiltersArgs = {
145150
+ input: JiraSetTimelineSearchFiltersInput;
145151
+ };
145080
145152
  export declare type MutationJira_SetTimelineViewFieldSetsArgs = {
145081
145153
  input: JiraSetTimelineViewFieldSetsInput;
145082
145154
  };
@@ -149754,6 +149826,7 @@ export declare type Query = {
149754
149826
  ccp_transactionAccount?: Maybe<CcpTransactionAccount>;
149755
149827
  ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
149756
149828
  cfo_analytics?: Maybe<CfoAnalyticsResult>;
149829
+ champion?: Maybe<UnifiedChampionQuery>;
149757
149830
  changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
149758
149831
  changeManagement_globalRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
149759
149832
  changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
@@ -150627,6 +150700,7 @@ export declare type Query = {
150627
150700
  stakeholderComms_testAPIStandardPlusOnly?: Maybe<Scalars['String']['output']>;
150628
150701
  stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
150629
150702
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
150703
+ studio_solutionPlan?: Maybe<StudioSolutionPlan>;
150630
150704
  suggest?: Maybe<QuerySuggestionApi>;
150631
150705
  suggestedSpaces?: Maybe<PaginatedSpaceList>;
150632
150706
  supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
@@ -155656,6 +155730,11 @@ export declare type QueryStalePagesArgs = {
155656
155730
  sort?: InputMaybe<StalePagesSortingType>;
155657
155731
  spaceId: Scalars['ID']['input'];
155658
155732
  };
155733
+ export declare type QueryStudio_SolutionPlanArgs = {
155734
+ solutionId: Scalars['String']['input'];
155735
+ solutionVersion: Scalars['Int']['input'];
155736
+ workspaceId: Scalars['ID']['input'];
155737
+ };
155659
155738
  export declare type QuerySuggestedSpacesArgs = {
155660
155739
  connections?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
155661
155740
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -182399,6 +182478,60 @@ export declare enum StringUserInputType {
182399
182478
  Paragraph = "PARAGRAPH",
182400
182479
  Text = "TEXT"
182401
182480
  }
182481
+ export declare type StudioBuild = {
182482
+ __typename?: 'StudioBuild';
182483
+ buildId?: Maybe<Scalars['UUID']['output']>;
182484
+ dependencies?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
182485
+ number?: Maybe<Scalars['Int']['output']>;
182486
+ overview?: Maybe<Scalars['String']['output']>;
182487
+ specification?: Maybe<StudioBuildSpecification>;
182488
+ state?: Maybe<StudioBuildState>;
182489
+ type?: Maybe<StudioBuildType>;
182490
+ };
182491
+ export declare type StudioBuildSpecification = {
182492
+ __typename?: 'StudioBuildSpecification';
182493
+ details?: Maybe<Scalars['String']['output']>;
182494
+ };
182495
+ export declare enum StudioBuildState {
182496
+ Failed = "FAILED",
182497
+ InProgress = "IN_PROGRESS",
182498
+ Success = "SUCCESS",
182499
+ Waiting = "WAITING"
182500
+ }
182501
+ export declare enum StudioBuildType {
182502
+ AutomationRule = "AUTOMATION_RULE",
182503
+ EcosystemApp = "ECOSYSTEM_APP",
182504
+ RovoAgent = "ROVO_AGENT"
182505
+ }
182506
+ export declare type StudioBuilds = {
182507
+ __typename?: 'StudioBuilds';
182508
+ sequence?: Maybe<Array<Maybe<StudioBuild>>>;
182509
+ };
182510
+ export declare enum StudioPlanState {
182511
+ Completed = "COMPLETED",
182512
+ Disabled = "DISABLED",
182513
+ Draft = "DRAFT",
182514
+ Failed = "FAILED",
182515
+ InProgress = "IN_PROGRESS"
182516
+ }
182517
+ export declare type StudioSolutionPlan = {
182518
+ __typename?: 'StudioSolutionPlan';
182519
+ builds?: Maybe<StudioBuilds>;
182520
+ conversationId?: Maybe<Scalars['UUID']['output']>;
182521
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
182522
+ createdBy?: Maybe<User>;
182523
+ currentBuildNumber?: Maybe<Scalars['Int']['output']>;
182524
+ name?: Maybe<Scalars['String']['output']>;
182525
+ numBuilds?: Maybe<Scalars['Int']['output']>;
182526
+ planId?: Maybe<Scalars['UUID']['output']>;
182527
+ solutionId?: Maybe<Scalars['UUID']['output']>;
182528
+ solutionVersion?: Maybe<Scalars['Int']['output']>;
182529
+ spaceId?: Maybe<Scalars['UUID']['output']>;
182530
+ state?: Maybe<StudioPlanState>;
182531
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
182532
+ updatedBy?: Maybe<User>;
182533
+ workspaceId: Scalars['ID']['output'];
182534
+ };
182402
182535
  export declare type SubjectKey = {
182403
182536
  __typename?: 'SubjectKey';
182404
182537
  confluencePerson?: Maybe<ConfluencePerson>;
@@ -193597,16 +193730,61 @@ export declare type UnifiedCachingQueryGetCachedDataFromFieldArgs = {
193597
193730
  export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
193598
193731
  id: Scalars['String']['input'];
193599
193732
  };
193733
+ export declare type UnifiedChampionConsentInput = {
193734
+ aaid: Scalars['String']['input'];
193735
+ consentProgramAgreement: Scalars['Boolean']['input'];
193736
+ consentSuccessChampionAgreement: Scalars['Boolean']['input'];
193737
+ };
193738
+ export declare type UnifiedChampionConsentMutation = {
193739
+ __typename?: 'UnifiedChampionConsentMutation';
193740
+ setChampionPageConsent?: Maybe<UnifiedChampionConsentPayload>;
193741
+ };
193742
+ export declare type UnifiedChampionConsentMutationSetChampionPageConsentArgs = {
193743
+ input: UnifiedChampionConsentInput;
193744
+ };
193745
+ export declare type UnifiedChampionConsentPayload = UnifiedPayload & {
193746
+ __typename?: 'UnifiedChampionConsentPayload';
193747
+ aaid?: Maybe<Scalars['String']['output']>;
193748
+ consentsSet?: Maybe<Array<Scalars['String']['output']>>;
193749
+ errors?: Maybe<Array<UnifiedMutationError>>;
193750
+ message?: Maybe<Scalars['String']['output']>;
193751
+ success: Scalars['Boolean']['output'];
193752
+ };
193753
+ export declare type UnifiedChampionConsentQuery = {
193754
+ __typename?: 'UnifiedChampionConsentQuery';
193755
+ getChampionConsent?: Maybe<UnifiedUChampionConsentResult>;
193756
+ };
193757
+ export declare type UnifiedChampionConsentQueryGetChampionConsentArgs = {
193758
+ aaid: Scalars['String']['input'];
193759
+ };
193760
+ export declare type UnifiedChampionConsentResponse = {
193761
+ __typename?: 'UnifiedChampionConsentResponse';
193762
+ aaid: Scalars['String']['output'];
193763
+ consents: Array<UnifiedChampionConsentStatus>;
193764
+ hasAllRequiredConsents: Scalars['Boolean']['output'];
193765
+ missingConsents: Array<Scalars['String']['output']>;
193766
+ };
193767
+ export declare type UnifiedChampionConsentStatus = {
193768
+ __typename?: 'UnifiedChampionConsentStatus';
193769
+ consentKey: Scalars['String']['output'];
193770
+ consentStatus: Scalars['Boolean']['output'];
193771
+ displayedText?: Maybe<Scalars['String']['output']>;
193772
+ grantedAt?: Maybe<Scalars['String']['output']>;
193773
+ };
193600
193774
  export declare type UnifiedChampionMutation = {
193601
193775
  __typename?: 'UnifiedChampionMutation';
193776
+ championConsent?: Maybe<UnifiedChampionConsentMutation>;
193602
193777
  championSignup?: Maybe<UnifiedChampionSignupMutation>;
193603
193778
  };
193779
+ export declare type UnifiedChampionQuery = {
193780
+ __typename?: 'UnifiedChampionQuery';
193781
+ championConsent?: Maybe<UnifiedChampionConsentQuery>;
193782
+ };
193604
193783
  export declare type UnifiedChampionSignupInput = {
193784
+ aaid: Scalars['String']['input'];
193605
193785
  aceExperience?: InputMaybe<Scalars['String']['input']>;
193606
193786
  activeCug?: InputMaybe<Scalars['String']['input']>;
193607
193787
  activityAndEvent?: InputMaybe<Scalars['String']['input']>;
193608
- agreeNda?: InputMaybe<Scalars['Boolean']['input']>;
193609
- agreePrivacy?: InputMaybe<Scalars['Boolean']['input']>;
193610
193788
  attendedAce?: InputMaybe<Scalars['String']['input']>;
193611
193789
  bestContent1?: InputMaybe<Scalars['String']['input']>;
193612
193790
  bestContent2?: InputMaybe<Scalars['String']['input']>;
@@ -193616,20 +193794,24 @@ export declare type UnifiedChampionSignupInput = {
193616
193794
  city?: InputMaybe<Scalars['String']['input']>;
193617
193795
  coeFocus?: InputMaybe<Scalars['String']['input']>;
193618
193796
  commitSharingContent?: InputMaybe<Scalars['String']['input']>;
193619
- communityProfileUrl?: InputMaybe<Scalars['String']['input']>;
193797
+ communityProfileUrl: Scalars['String']['input'];
193798
+ consentNda: Scalars['Boolean']['input'];
193799
+ consentPrivacyPolicy: Scalars['Boolean']['input'];
193800
+ consentProgramAgreement: Scalars['Boolean']['input'];
193801
+ consentSuccessChampionAgreement?: InputMaybe<Scalars['Boolean']['input']>;
193620
193802
  contentSharingFrequency?: InputMaybe<Scalars['String']['input']>;
193621
193803
  country?: InputMaybe<Scalars['String']['input']>;
193622
193804
  discussInCoE?: InputMaybe<Scalars['String']['input']>;
193623
- email?: InputMaybe<Scalars['String']['input']>;
193805
+ email: Scalars['String']['input'];
193624
193806
  eventsPerYear?: InputMaybe<Scalars['String']['input']>;
193625
- firstName?: InputMaybe<Scalars['String']['input']>;
193807
+ firstName: Scalars['String']['input'];
193626
193808
  fourEventsPerYear?: InputMaybe<Scalars['String']['input']>;
193627
193809
  howContributeOnline?: InputMaybe<Scalars['String']['input']>;
193628
193810
  howHeard?: InputMaybe<Scalars['String']['input']>;
193629
193811
  howHeardEmployee?: InputMaybe<Scalars['String']['input']>;
193630
193812
  howHeardOther?: InputMaybe<Scalars['String']['input']>;
193631
- lastName?: InputMaybe<Scalars['String']['input']>;
193632
- linkedinUrl?: InputMaybe<Scalars['String']['input']>;
193813
+ lastName: Scalars['String']['input'];
193814
+ linkedinUrl: Scalars['String']['input'];
193633
193815
  otherAtlassianProducts?: InputMaybe<Scalars['String']['input']>;
193634
193816
  otherExcellence?: InputMaybe<Scalars['String']['input']>;
193635
193817
  otherURL?: InputMaybe<Scalars['String']['input']>;
@@ -194362,6 +194544,7 @@ export declare type UnifiedUAtlassianOneUserResult = UnifiedAtlassianOneUser | U
194362
194544
  export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
194363
194545
  export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
194364
194546
  export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
194547
+ export declare type UnifiedUChampionConsentResult = UnifiedChampionConsentResponse | UnifiedQueryError;
194365
194548
  export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
194366
194549
  export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
194367
194550
  export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;