@forge/cli-shared 8.1.0 → 8.1.1-next.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.
package/CHANGELOG.md
CHANGED
|
@@ -19807,6 +19807,10 @@ export declare type DevAiWorkspace = {
|
|
|
19807
19807
|
status?: Maybe<Scalars['String']['output']>;
|
|
19808
19808
|
workspaceAri: Scalars['ID']['output'];
|
|
19809
19809
|
};
|
|
19810
|
+
export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
|
|
19811
|
+
__typename?: 'DevConsoleBulkDeveloperSpaceDetailsResponse';
|
|
19812
|
+
results: Array<DevConsoleDeveloperSpaceDetailsResult>;
|
|
19813
|
+
};
|
|
19810
19814
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
19811
19815
|
name: Scalars['String']['input'];
|
|
19812
19816
|
};
|
|
@@ -19824,6 +19828,18 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
19824
19828
|
logo?: Maybe<Scalars['String']['output']>;
|
|
19825
19829
|
name: Scalars['String']['output'];
|
|
19826
19830
|
};
|
|
19831
|
+
export declare type DevConsoleDeveloperSpaceDetailsError = {
|
|
19832
|
+
__typename?: 'DevConsoleDeveloperSpaceDetailsError';
|
|
19833
|
+
code: Scalars['String']['output'];
|
|
19834
|
+
message: Scalars['String']['output'];
|
|
19835
|
+
};
|
|
19836
|
+
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
19837
|
+
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
19838
|
+
details?: Maybe<DevConsoleDeveloperSpaceDetails>;
|
|
19839
|
+
developerSpaceId: Scalars['String']['output'];
|
|
19840
|
+
error?: Maybe<DevConsoleDeveloperSpaceDetailsError>;
|
|
19841
|
+
success: Scalars['Boolean']['output'];
|
|
19842
|
+
};
|
|
19827
19843
|
export declare enum DevConsoleDeveloperSpaceType {
|
|
19828
19844
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
19829
19845
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
@@ -19837,11 +19853,11 @@ export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
|
19837
19853
|
};
|
|
19838
19854
|
export declare type DevConsoleQuery = {
|
|
19839
19855
|
__typename?: 'DevConsoleQuery';
|
|
19840
|
-
getDeveloperSpaceDetails:
|
|
19856
|
+
getDeveloperSpaceDetails: DevConsoleBulkDeveloperSpaceDetailsResponse;
|
|
19841
19857
|
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
19842
19858
|
};
|
|
19843
19859
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
19844
|
-
|
|
19860
|
+
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
19845
19861
|
};
|
|
19846
19862
|
export declare type DevOps = {
|
|
19847
19863
|
__typename?: 'DevOps';
|
|
@@ -49673,6 +49689,10 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
49673
49689
|
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
49674
49690
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
49675
49691
|
};
|
|
49692
|
+
export declare type GrowthUnifiedProfileCreateOrgProfileInput = {
|
|
49693
|
+
orgId: Scalars['ID']['input'];
|
|
49694
|
+
twcOnboardingContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcOnboardingContextInput>>>;
|
|
49695
|
+
};
|
|
49676
49696
|
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
49677
49697
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
49678
49698
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -49839,6 +49859,15 @@ export declare enum GrowthUnifiedProfileOnboardingContextProjectLandingSelection
|
|
|
49839
49859
|
CreateProject = "CREATE_PROJECT",
|
|
49840
49860
|
SampleProject = "SAMPLE_PROJECT"
|
|
49841
49861
|
}
|
|
49862
|
+
export declare type GrowthUnifiedProfileOrgProfileFilterInput = {
|
|
49863
|
+
entitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
49864
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
49865
|
+
};
|
|
49866
|
+
export declare type GrowthUnifiedProfileOrgProfileResult = {
|
|
49867
|
+
__typename?: 'GrowthUnifiedProfileOrgProfileResult';
|
|
49868
|
+
orgId: Scalars['ID']['output'];
|
|
49869
|
+
twcOnboardingContext?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcOnboardingContext>>>;
|
|
49870
|
+
};
|
|
49842
49871
|
export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
49843
49872
|
__typename?: 'GrowthUnifiedProfilePaidChannelContext';
|
|
49844
49873
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
@@ -49961,6 +49990,48 @@ export declare enum GrowthUnifiedProfileTrialType {
|
|
|
49961
49990
|
DirectTrial = "DIRECT_TRIAL",
|
|
49962
49991
|
ReverseTrial = "REVERSE_TRIAL"
|
|
49963
49992
|
}
|
|
49993
|
+
export declare type GrowthUnifiedProfileTwcCreateOrgProfileResponse = {
|
|
49994
|
+
__typename?: 'GrowthUnifiedProfileTwcCreateOrgProfileResponse';
|
|
49995
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
49996
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
49997
|
+
orgId: Scalars['ID']['output'];
|
|
49998
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
49999
|
+
};
|
|
50000
|
+
export declare enum GrowthUnifiedProfileTwcCreatedFrom {
|
|
50001
|
+
AdminHub = "ADMIN_HUB",
|
|
50002
|
+
CrossFlow = "CROSS_FLOW",
|
|
50003
|
+
SignUp = "SIGN_UP"
|
|
50004
|
+
}
|
|
50005
|
+
export declare enum GrowthUnifiedProfileTwcEdition {
|
|
50006
|
+
Free = "FREE",
|
|
50007
|
+
Premium = "PREMIUM"
|
|
50008
|
+
}
|
|
50009
|
+
export declare type GrowthUnifiedProfileTwcOnboardingContext = {
|
|
50010
|
+
__typename?: 'GrowthUnifiedProfileTwcOnboardingContext';
|
|
50011
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
50012
|
+
createdFrom?: Maybe<GrowthUnifiedProfileTwcCreatedFrom>;
|
|
50013
|
+
edition?: Maybe<GrowthUnifiedProfileTwcEdition>;
|
|
50014
|
+
entitlementId: Scalars['ID']['output'];
|
|
50015
|
+
existingProducts?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcProductDetails>>>;
|
|
50016
|
+
newProducts?: Maybe<Array<Maybe<GrowthUnifiedProfileTwcProductDetails>>>;
|
|
50017
|
+
};
|
|
50018
|
+
export declare type GrowthUnifiedProfileTwcOnboardingContextInput = {
|
|
50019
|
+
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
50020
|
+
createdFrom?: InputMaybe<GrowthUnifiedProfileTwcCreatedFrom>;
|
|
50021
|
+
edition?: InputMaybe<GrowthUnifiedProfileTwcEdition>;
|
|
50022
|
+
entitlementId: Scalars['ID']['input'];
|
|
50023
|
+
existingProducts?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcProductDetailsInput>>>;
|
|
50024
|
+
newProducts?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcProductDetailsInput>>>;
|
|
50025
|
+
};
|
|
50026
|
+
export declare type GrowthUnifiedProfileTwcProductDetails = {
|
|
50027
|
+
__typename?: 'GrowthUnifiedProfileTwcProductDetails';
|
|
50028
|
+
productKey: Scalars['String']['output'];
|
|
50029
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
50030
|
+
};
|
|
50031
|
+
export declare type GrowthUnifiedProfileTwcProductDetailsInput = {
|
|
50032
|
+
productKey: Scalars['String']['input'];
|
|
50033
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
50034
|
+
};
|
|
49964
50035
|
export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
49965
50036
|
__typename?: 'GrowthUnifiedProfileUserActivityContext';
|
|
49966
50037
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileUserActivitySiteDetails>>>;
|
|
@@ -79436,6 +79507,7 @@ export declare type Mutation = {
|
|
|
79436
79507
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
79437
79508
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
79438
79509
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
79510
|
+
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
79439
79511
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
79440
79512
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
79441
79513
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
@@ -79693,7 +79765,6 @@ export declare type Mutation = {
|
|
|
79693
79765
|
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
79694
79766
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
79695
79767
|
updatePolarisViewArrangementInfo?: Maybe<UpdatePolarisViewArrangementInfoPayload>;
|
|
79696
|
-
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
79697
79768
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
79698
79769
|
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
79699
79770
|
updatePushNotificationCustomSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
@@ -80532,6 +80603,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
80532
80603
|
export declare type MutationGrantContentAccessArgs = {
|
|
80533
80604
|
grantContentAccessInput: GrantContentAccessInput;
|
|
80534
80605
|
};
|
|
80606
|
+
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
80607
|
+
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
80608
|
+
};
|
|
80535
80609
|
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
80536
80610
|
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
80537
80611
|
};
|
|
@@ -81297,10 +81371,6 @@ export declare type MutationUpdatePolarisViewArrangementInfoArgs = {
|
|
|
81297
81371
|
id: Scalars['ID']['input'];
|
|
81298
81372
|
input?: InputMaybe<Scalars['JSON']['input']>;
|
|
81299
81373
|
};
|
|
81300
|
-
export declare type MutationUpdatePolarisViewLastViewedTimestampArgs = {
|
|
81301
|
-
timestampInput?: InputMaybe<Scalars['String']['input']>;
|
|
81302
|
-
viewId: Scalars['ID']['input'];
|
|
81303
|
-
};
|
|
81304
81374
|
export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
81305
81375
|
id: Scalars['ID']['input'];
|
|
81306
81376
|
input: UpdatePolarisViewRankInput;
|
|
@@ -84438,6 +84508,7 @@ export declare type Query = {
|
|
|
84438
84508
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
84439
84509
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
84440
84510
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
84511
|
+
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
84441
84512
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
84442
84513
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
84443
84514
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -85984,6 +86055,10 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
85984
86055
|
contentId: Scalars['ID']['input'];
|
|
85985
86056
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
85986
86057
|
};
|
|
86058
|
+
export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
86059
|
+
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
86060
|
+
orgId: Scalars['ID']['input'];
|
|
86061
|
+
};
|
|
85987
86062
|
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
85988
86063
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85989
86064
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -100608,11 +100683,6 @@ export declare type UpdatePolarisViewSetPayload = Payload & {
|
|
|
100608
100683
|
node?: Maybe<PolarisViewSet>;
|
|
100609
100684
|
success: Scalars['Boolean']['output'];
|
|
100610
100685
|
};
|
|
100611
|
-
export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
100612
|
-
__typename?: 'UpdatePolarisViewTimestampPayload';
|
|
100613
|
-
errors?: Maybe<Array<MutationError>>;
|
|
100614
|
-
success: Scalars['Boolean']['output'];
|
|
100615
|
-
};
|
|
100616
100686
|
export declare type UpdatePolarisWhiteboardConfig = {
|
|
100617
100687
|
id: Scalars['ID']['input'];
|
|
100618
100688
|
};
|