@forge/cli-shared 6.6.1-next.1 → 6.6.1-next.3
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,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [de16df9]
|
|
8
|
+
- @forge/manifest@8.7.0-next.2
|
|
9
|
+
|
|
10
|
+
## 6.6.1-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [48d2f56]
|
|
15
|
+
- @forge/manifest@8.7.0-next.1
|
|
16
|
+
|
|
3
17
|
## 6.6.1-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -29829,6 +29829,7 @@ export declare type GraphStore = {
|
|
|
29829
29829
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
29830
29830
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29831
29831
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29832
|
+
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
29832
29833
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
29833
29834
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
29834
29835
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
@@ -30141,6 +30142,7 @@ export declare type GraphStore = {
|
|
|
30141
30142
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30142
30143
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30143
30144
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
30145
|
+
userUpdatedIssueStatusInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection>;
|
|
30144
30146
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
30145
30147
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
30146
30148
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -31612,6 +31614,13 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
31612
31614
|
ids: Array<Scalars['ID']['input']>;
|
|
31613
31615
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
31614
31616
|
};
|
|
31617
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
31618
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31619
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31620
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31621
|
+
id: Scalars['ID']['input'];
|
|
31622
|
+
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
31623
|
+
};
|
|
31615
31624
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
31616
31625
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31617
31626
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33699,6 +33708,13 @@ export declare type GraphStoreUserUpdatedIssueInverseArgs = {
|
|
|
33699
33708
|
id: Scalars['ID']['input'];
|
|
33700
33709
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33701
33710
|
};
|
|
33711
|
+
export declare type GraphStoreUserUpdatedIssueStatusInverseArgs = {
|
|
33712
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33713
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33714
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33715
|
+
id: Scalars['ID']['input'];
|
|
33716
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueStatusSortInput>;
|
|
33717
|
+
};
|
|
33702
33718
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33703
33719
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33704
33720
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39355,6 +39371,9 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
39355
39371
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
39356
39372
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39357
39373
|
};
|
|
39374
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
39375
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39376
|
+
};
|
|
39358
39377
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
39359
39378
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39360
39379
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41925,6 +41944,20 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
41925
41944
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
41926
41945
|
};
|
|
41927
41946
|
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
41947
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
|
|
41948
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
|
|
41949
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
|
|
41950
|
+
pageInfo: PageInfo;
|
|
41951
|
+
};
|
|
41952
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge = {
|
|
41953
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge';
|
|
41954
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41955
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41956
|
+
id: Scalars['ID']['output'];
|
|
41957
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41958
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion>;
|
|
41959
|
+
};
|
|
41960
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
41928
41961
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
|
|
41929
41962
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
41930
41963
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
@@ -45242,6 +45275,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
45242
45275
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
|
|
45243
45276
|
};
|
|
45244
45277
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45278
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection = HasPageInfo & {
|
|
45279
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection';
|
|
45280
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge>>>;
|
|
45281
|
+
pageInfo: PageInfo;
|
|
45282
|
+
};
|
|
45283
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge = {
|
|
45284
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge';
|
|
45285
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45286
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45287
|
+
id: Scalars['ID']['output'];
|
|
45288
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45289
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion>;
|
|
45290
|
+
};
|
|
45291
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45245
45292
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
45246
45293
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
45247
45294
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
@@ -46409,6 +46456,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
46409
46456
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46410
46457
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46411
46458
|
};
|
|
46459
|
+
export declare type GraphStoreUserUpdatedIssueStatusSortInput = {
|
|
46460
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46461
|
+
};
|
|
46412
46462
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
46413
46463
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46414
46464
|
};
|
|
@@ -68060,6 +68110,15 @@ export declare type LoomMeeting = Node & {
|
|
|
68060
68110
|
title: Scalars['String']['output'];
|
|
68061
68111
|
video?: Maybe<LoomVideo>;
|
|
68062
68112
|
};
|
|
68113
|
+
export declare type LoomMeetingRecurrence = Node & {
|
|
68114
|
+
__typename?: 'LoomMeetingRecurrence';
|
|
68115
|
+
id: Scalars['ID']['output'];
|
|
68116
|
+
meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
68117
|
+
};
|
|
68118
|
+
export declare type LoomMeetingRecurrenceMeetingsArgs = {
|
|
68119
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68120
|
+
meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68121
|
+
};
|
|
68063
68122
|
export declare enum LoomMeetingSource {
|
|
68064
68123
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
68065
68124
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -70724,6 +70783,7 @@ export declare type MercuryFocusAreaActivityEdge = {
|
|
|
70724
70783
|
};
|
|
70725
70784
|
export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
70726
70785
|
__typename?: 'MercuryFocusAreaActivityHistory';
|
|
70786
|
+
associatedEntityAri?: Maybe<Scalars['String']['output']>;
|
|
70727
70787
|
eventDate?: Maybe<Scalars['String']['output']>;
|
|
70728
70788
|
eventType?: Maybe<MercuryEventType>;
|
|
70729
70789
|
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
@@ -77157,6 +77217,8 @@ export declare type Query = {
|
|
|
77157
77217
|
loomToken?: Maybe<LoomToken>;
|
|
77158
77218
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
77159
77219
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
77220
|
+
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
77221
|
+
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
77160
77222
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
77161
77223
|
loom_space?: Maybe<LoomSpace>;
|
|
77162
77224
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -79280,6 +79342,12 @@ export declare type QueryLookAndFeelArgs = {
|
|
|
79280
79342
|
export declare type QueryLoom_MeetingArgs = {
|
|
79281
79343
|
id: Scalars['ID']['input'];
|
|
79282
79344
|
};
|
|
79345
|
+
export declare type QueryLoom_MeetingRecurrenceArgs = {
|
|
79346
|
+
id: Scalars['ID']['input'];
|
|
79347
|
+
};
|
|
79348
|
+
export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
79349
|
+
ids: Array<Scalars['ID']['input']>;
|
|
79350
|
+
};
|
|
79283
79351
|
export declare type QueryLoom_MeetingsArgs = {
|
|
79284
79352
|
ids: Array<Scalars['ID']['input']>;
|
|
79285
79353
|
};
|
|
@@ -88696,15 +88764,9 @@ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
|
88696
88764
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
88697
88765
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
88698
88766
|
errors?: Maybe<Array<MutationError>>;
|
|
88699
|
-
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
88700
88767
|
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
88701
|
-
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
88702
88768
|
success: Scalars['Boolean']['output'];
|
|
88703
88769
|
};
|
|
88704
|
-
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
88705
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88706
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88707
|
-
};
|
|
88708
88770
|
export declare type TrelloCreatePlannerCalendarEventInput = {
|
|
88709
88771
|
event: TrelloCreatePlannerCalendarEventOptions;
|
|
88710
88772
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -89240,6 +89302,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
89240
89302
|
};
|
|
89241
89303
|
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
89242
89304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89305
|
+
filter?: InputMaybe<TrelloPlannerCalendarEnabledCalendarsFilter>;
|
|
89243
89306
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89244
89307
|
};
|
|
89245
89308
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
@@ -89314,6 +89377,9 @@ export declare type TrelloPlannerCalendarEdgeUpdated = {
|
|
|
89314
89377
|
__typename?: 'TrelloPlannerCalendarEdgeUpdated';
|
|
89315
89378
|
node: TrelloPlannerUpdatedCalendar;
|
|
89316
89379
|
};
|
|
89380
|
+
export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
|
|
89381
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
89382
|
+
};
|
|
89317
89383
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
89318
89384
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
89319
89385
|
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89430,7 +89496,6 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
89430
89496
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89431
89497
|
};
|
|
89432
89498
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89433
|
-
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89434
89499
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
89435
89500
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
89436
89501
|
color?: Maybe<TrelloPlannerCalendarColor>;
|