@forge/cli-shared 6.6.1-next.17 → 6.6.1-next.18
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 +6 -0
- package/out/graphql/graphql-types.d.ts +55 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -30206,6 +30206,7 @@ export declare type GraphStore = {
|
|
|
30206
30206
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
30207
30207
|
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
30208
30208
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
30209
|
+
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
30209
30210
|
issueInStatusInverse?: Maybe<GraphStoreSimplifiedIssueInStatusInverseConnection>;
|
|
30210
30211
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
30211
30212
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31822,6 +31823,13 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
31822
31823
|
id: Scalars['ID']['input'];
|
|
31823
31824
|
sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
|
|
31824
31825
|
};
|
|
31826
|
+
export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
|
|
31827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31828
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31829
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31830
|
+
id: Scalars['ID']['input'];
|
|
31831
|
+
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
31832
|
+
};
|
|
31825
31833
|
export declare type GraphStoreIssueInStatusInverseArgs = {
|
|
31826
31834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31827
31835
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40217,6 +40225,9 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
|
40217
40225
|
export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
40218
40226
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40219
40227
|
};
|
|
40228
|
+
export declare type GraphStoreIssueHasAutodevJobSortInput = {
|
|
40229
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40230
|
+
};
|
|
40220
40231
|
export declare type GraphStoreIssueInStatusSortInput = {
|
|
40221
40232
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40222
40233
|
};
|
|
@@ -42734,6 +42745,20 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
42734
42745
|
};
|
|
42735
42746
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
42736
42747
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42748
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
|
|
42749
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
|
|
42750
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
|
|
42751
|
+
pageInfo: PageInfo;
|
|
42752
|
+
};
|
|
42753
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
|
|
42754
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseEdge';
|
|
42755
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42756
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42757
|
+
id: Scalars['ID']['output'];
|
|
42758
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42759
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseUnion>;
|
|
42760
|
+
};
|
|
42761
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseUnion = JiraIssue;
|
|
42737
42762
|
export declare type GraphStoreSimplifiedIssueInStatusInverseConnection = HasPageInfo & {
|
|
42738
42763
|
__typename?: 'GraphStoreSimplifiedIssueInStatusInverseConnection';
|
|
42739
42764
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueInStatusInverseEdge>>>;
|
|
@@ -69897,6 +69922,11 @@ export declare enum LoomMeetingSource {
|
|
|
69897
69922
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
69898
69923
|
Zoom = "ZOOM"
|
|
69899
69924
|
}
|
|
69925
|
+
export declare type LoomSettings = {
|
|
69926
|
+
__typename?: 'LoomSettings';
|
|
69927
|
+
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
69928
|
+
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69929
|
+
};
|
|
69900
69930
|
export declare type LoomSpace = Node & {
|
|
69901
69931
|
__typename?: 'LoomSpace';
|
|
69902
69932
|
id: Scalars['ID']['output'];
|
|
@@ -70364,6 +70394,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
70364
70394
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
70365
70395
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
70366
70396
|
hosting: MarketplaceConsoleHosting;
|
|
70397
|
+
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
70367
70398
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
70368
70399
|
latestForgeVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
70369
70400
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
@@ -72521,6 +72552,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
72521
72552
|
teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
72522
72553
|
updatedDate: Scalars['String']['output'];
|
|
72523
72554
|
url?: Maybe<Scalars['String']['output']>;
|
|
72555
|
+
uuid: Scalars['UUID']['output'];
|
|
72524
72556
|
watchers?: Maybe<MercuryUserConnection>;
|
|
72525
72557
|
watching: Scalars['Boolean']['output'];
|
|
72526
72558
|
};
|
|
@@ -76070,6 +76102,9 @@ export declare type MyVisitedSpacesItems = {
|
|
|
76070
76102
|
__typename?: 'MyVisitedSpacesItems';
|
|
76071
76103
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
76072
76104
|
};
|
|
76105
|
+
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
76106
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76107
|
+
};
|
|
76073
76108
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
76074
76109
|
resultId: Scalars['String']['input'];
|
|
76075
76110
|
sourceId: Scalars['String']['input'];
|
|
@@ -79062,6 +79097,7 @@ export declare type Query = {
|
|
|
79062
79097
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
79063
79098
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
79064
79099
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
79100
|
+
loom_settings?: Maybe<LoomSettings>;
|
|
79065
79101
|
loom_space?: Maybe<LoomSpace>;
|
|
79066
79102
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
79067
79103
|
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
@@ -81216,6 +81252,9 @@ export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
|
81216
81252
|
export declare type QueryLoom_MeetingsArgs = {
|
|
81217
81253
|
ids: Array<Scalars['ID']['input']>;
|
|
81218
81254
|
};
|
|
81255
|
+
export declare type QueryLoom_SettingsArgs = {
|
|
81256
|
+
siteId: Scalars['ID']['input'];
|
|
81257
|
+
};
|
|
81219
81258
|
export declare type QueryLoom_SpaceArgs = {
|
|
81220
81259
|
id: Scalars['ID']['input'];
|
|
81221
81260
|
};
|
|
@@ -81270,6 +81309,7 @@ export declare type QueryMyVisitedPagesArgs = {
|
|
|
81270
81309
|
};
|
|
81271
81310
|
export declare type QueryMyVisitedSpacesArgs = {
|
|
81272
81311
|
accountId?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
81312
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81273
81313
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
81274
81314
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
81275
81315
|
eventName?: InputMaybe<Array<InputMaybe<AnalyticsEventName>>>;
|
|
@@ -81652,6 +81692,7 @@ export declare type QuerySoftwareBoardsArgs = {
|
|
|
81652
81692
|
projectAri: Scalars['ID']['input'];
|
|
81653
81693
|
};
|
|
81654
81694
|
export declare type QuerySpaceArgs = {
|
|
81695
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81655
81696
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
81656
81697
|
identifier?: InputMaybe<Scalars['ID']['input']>;
|
|
81657
81698
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84202,6 +84243,7 @@ export declare type SearchLayerDefinition = {
|
|
|
84202
84243
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
84203
84244
|
};
|
|
84204
84245
|
export declare type SearchMercuryFilter = {
|
|
84246
|
+
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84205
84247
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84206
84248
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84207
84249
|
};
|
|
@@ -84561,6 +84603,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
84561
84603
|
export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
84562
84604
|
__typename?: 'SearchResultMercuryFocusAreaStatusUpdate';
|
|
84563
84605
|
description: Scalars['String']['output'];
|
|
84606
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
84564
84607
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
84565
84608
|
id: Scalars['ID']['output'];
|
|
84566
84609
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -92215,16 +92258,17 @@ export declare type UnifiedConsentMutationUpdateConsentArgs = {
|
|
|
92215
92258
|
};
|
|
92216
92259
|
export declare type UnifiedConsentObj = {
|
|
92217
92260
|
__typename?: 'UnifiedConsentObj';
|
|
92218
|
-
|
|
92219
|
-
|
|
92220
|
-
|
|
92221
|
-
|
|
92222
|
-
|
|
92261
|
+
consentKey: Scalars['String']['output'];
|
|
92262
|
+
consentStatus: Scalars['String']['output'];
|
|
92263
|
+
consenthubStatus: Scalars['Boolean']['output'];
|
|
92264
|
+
createdAt: Scalars['String']['output'];
|
|
92265
|
+
updatedAt: Scalars['String']['output'];
|
|
92266
|
+
uppConsentStatus: Scalars['Boolean']['output'];
|
|
92223
92267
|
};
|
|
92224
92268
|
export declare type UnifiedConsentObjInput = {
|
|
92225
|
-
|
|
92226
|
-
|
|
92227
|
-
|
|
92269
|
+
consentKey: Scalars['String']['input'];
|
|
92270
|
+
consentStatus: Scalars['String']['input'];
|
|
92271
|
+
displayedText?: InputMaybe<Scalars['String']['input']>;
|
|
92228
92272
|
};
|
|
92229
92273
|
export declare type UnifiedConsentPayload = UnifiedPayload & {
|
|
92230
92274
|
__typename?: 'UnifiedConsentPayload';
|
|
@@ -92242,11 +92286,11 @@ export declare type UnifiedConsentQueryGetConsentArgs = {
|
|
|
92242
92286
|
};
|
|
92243
92287
|
export declare type UnifiedConsentStatus = UnifiedINode & {
|
|
92244
92288
|
__typename?: 'UnifiedConsentStatus';
|
|
92245
|
-
|
|
92246
|
-
|
|
92289
|
+
consentObj: Array<UnifiedConsentObj>;
|
|
92290
|
+
createdAt: Scalars['String']['output'];
|
|
92247
92291
|
id: Scalars['ID']['output'];
|
|
92248
92292
|
type: Scalars['String']['output'];
|
|
92249
|
-
|
|
92293
|
+
updatedAt: Scalars['String']['output'];
|
|
92250
92294
|
value: Scalars['String']['output'];
|
|
92251
92295
|
};
|
|
92252
92296
|
export declare type UnifiedForums = UnifiedINode & {
|