@forge/cli-shared 8.17.1-next.4 → 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,16 @@
|
|
|
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
|
+
|
|
3
14
|
## 8.17.1-next.4
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -149826,6 +149826,7 @@ export declare type Query = {
|
|
|
149826
149826
|
ccp_transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
149827
149827
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
149828
149828
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
149829
|
+
champion?: Maybe<UnifiedChampionQuery>;
|
|
149829
149830
|
changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
149830
149831
|
changeManagement_globalRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
|
|
149831
149832
|
changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
|
|
@@ -193729,16 +193730,61 @@ export declare type UnifiedCachingQueryGetCachedDataFromFieldArgs = {
|
|
|
193729
193730
|
export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
|
|
193730
193731
|
id: Scalars['String']['input'];
|
|
193731
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
|
+
};
|
|
193732
193774
|
export declare type UnifiedChampionMutation = {
|
|
193733
193775
|
__typename?: 'UnifiedChampionMutation';
|
|
193776
|
+
championConsent?: Maybe<UnifiedChampionConsentMutation>;
|
|
193734
193777
|
championSignup?: Maybe<UnifiedChampionSignupMutation>;
|
|
193735
193778
|
};
|
|
193779
|
+
export declare type UnifiedChampionQuery = {
|
|
193780
|
+
__typename?: 'UnifiedChampionQuery';
|
|
193781
|
+
championConsent?: Maybe<UnifiedChampionConsentQuery>;
|
|
193782
|
+
};
|
|
193736
193783
|
export declare type UnifiedChampionSignupInput = {
|
|
193784
|
+
aaid: Scalars['String']['input'];
|
|
193737
193785
|
aceExperience?: InputMaybe<Scalars['String']['input']>;
|
|
193738
193786
|
activeCug?: InputMaybe<Scalars['String']['input']>;
|
|
193739
193787
|
activityAndEvent?: InputMaybe<Scalars['String']['input']>;
|
|
193740
|
-
agreeNda?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193741
|
-
agreePrivacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193742
193788
|
attendedAce?: InputMaybe<Scalars['String']['input']>;
|
|
193743
193789
|
bestContent1?: InputMaybe<Scalars['String']['input']>;
|
|
193744
193790
|
bestContent2?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -193748,20 +193794,24 @@ export declare type UnifiedChampionSignupInput = {
|
|
|
193748
193794
|
city?: InputMaybe<Scalars['String']['input']>;
|
|
193749
193795
|
coeFocus?: InputMaybe<Scalars['String']['input']>;
|
|
193750
193796
|
commitSharingContent?: InputMaybe<Scalars['String']['input']>;
|
|
193751
|
-
communityProfileUrl
|
|
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']>;
|
|
193752
193802
|
contentSharingFrequency?: InputMaybe<Scalars['String']['input']>;
|
|
193753
193803
|
country?: InputMaybe<Scalars['String']['input']>;
|
|
193754
193804
|
discussInCoE?: InputMaybe<Scalars['String']['input']>;
|
|
193755
|
-
email
|
|
193805
|
+
email: Scalars['String']['input'];
|
|
193756
193806
|
eventsPerYear?: InputMaybe<Scalars['String']['input']>;
|
|
193757
|
-
firstName
|
|
193807
|
+
firstName: Scalars['String']['input'];
|
|
193758
193808
|
fourEventsPerYear?: InputMaybe<Scalars['String']['input']>;
|
|
193759
193809
|
howContributeOnline?: InputMaybe<Scalars['String']['input']>;
|
|
193760
193810
|
howHeard?: InputMaybe<Scalars['String']['input']>;
|
|
193761
193811
|
howHeardEmployee?: InputMaybe<Scalars['String']['input']>;
|
|
193762
193812
|
howHeardOther?: InputMaybe<Scalars['String']['input']>;
|
|
193763
|
-
lastName
|
|
193764
|
-
linkedinUrl
|
|
193813
|
+
lastName: Scalars['String']['input'];
|
|
193814
|
+
linkedinUrl: Scalars['String']['input'];
|
|
193765
193815
|
otherAtlassianProducts?: InputMaybe<Scalars['String']['input']>;
|
|
193766
193816
|
otherExcellence?: InputMaybe<Scalars['String']['input']>;
|
|
193767
193817
|
otherURL?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -194494,6 +194544,7 @@ export declare type UnifiedUAtlassianOneUserResult = UnifiedAtlassianOneUser | U
|
|
|
194494
194544
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
194495
194545
|
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
194496
194546
|
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|
|
194547
|
+
export declare type UnifiedUChampionConsentResult = UnifiedChampionConsentResponse | UnifiedQueryError;
|
|
194497
194548
|
export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
|
|
194498
194549
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
194499
194550
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|