@forge/cli-shared 6.6.1-next.2 → 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
|
@@ -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>;
|
|
@@ -31613,6 +31614,13 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
31613
31614
|
ids: Array<Scalars['ID']['input']>;
|
|
31614
31615
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
31615
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
|
+
};
|
|
31616
31624
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
31617
31625
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31618
31626
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39363,6 +39371,9 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
39363
39371
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
39364
39372
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39365
39373
|
};
|
|
39374
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
39375
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39376
|
+
};
|
|
39366
39377
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
39367
39378
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39368
39379
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41933,6 +41944,20 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
41933
41944
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
41934
41945
|
};
|
|
41935
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;
|
|
41936
41961
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
|
|
41937
41962
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
41938
41963
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
@@ -68085,6 +68110,15 @@ export declare type LoomMeeting = Node & {
|
|
|
68085
68110
|
title: Scalars['String']['output'];
|
|
68086
68111
|
video?: Maybe<LoomVideo>;
|
|
68087
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
|
+
};
|
|
68088
68122
|
export declare enum LoomMeetingSource {
|
|
68089
68123
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
68090
68124
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -70749,6 +70783,7 @@ export declare type MercuryFocusAreaActivityEdge = {
|
|
|
70749
70783
|
};
|
|
70750
70784
|
export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
70751
70785
|
__typename?: 'MercuryFocusAreaActivityHistory';
|
|
70786
|
+
associatedEntityAri?: Maybe<Scalars['String']['output']>;
|
|
70752
70787
|
eventDate?: Maybe<Scalars['String']['output']>;
|
|
70753
70788
|
eventType?: Maybe<MercuryEventType>;
|
|
70754
70789
|
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
@@ -77182,6 +77217,8 @@ export declare type Query = {
|
|
|
77182
77217
|
loomToken?: Maybe<LoomToken>;
|
|
77183
77218
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
77184
77219
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
77220
|
+
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
77221
|
+
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
77185
77222
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
77186
77223
|
loom_space?: Maybe<LoomSpace>;
|
|
77187
77224
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -79305,6 +79342,12 @@ export declare type QueryLookAndFeelArgs = {
|
|
|
79305
79342
|
export declare type QueryLoom_MeetingArgs = {
|
|
79306
79343
|
id: Scalars['ID']['input'];
|
|
79307
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
|
+
};
|
|
79308
79351
|
export declare type QueryLoom_MeetingsArgs = {
|
|
79309
79352
|
ids: Array<Scalars['ID']['input']>;
|
|
79310
79353
|
};
|
|
@@ -88721,15 +88764,9 @@ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
|
88721
88764
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
88722
88765
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
88723
88766
|
errors?: Maybe<Array<MutationError>>;
|
|
88724
|
-
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
88725
88767
|
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
88726
|
-
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
88727
88768
|
success: Scalars['Boolean']['output'];
|
|
88728
88769
|
};
|
|
88729
|
-
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
88730
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88731
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88732
|
-
};
|
|
88733
88770
|
export declare type TrelloCreatePlannerCalendarEventInput = {
|
|
88734
88771
|
event: TrelloCreatePlannerCalendarEventOptions;
|
|
88735
88772
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -89265,6 +89302,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
89265
89302
|
};
|
|
89266
89303
|
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
89267
89304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89305
|
+
filter?: InputMaybe<TrelloPlannerCalendarEnabledCalendarsFilter>;
|
|
89268
89306
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89269
89307
|
};
|
|
89270
89308
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
@@ -89339,6 +89377,9 @@ export declare type TrelloPlannerCalendarEdgeUpdated = {
|
|
|
89339
89377
|
__typename?: 'TrelloPlannerCalendarEdgeUpdated';
|
|
89340
89378
|
node: TrelloPlannerUpdatedCalendar;
|
|
89341
89379
|
};
|
|
89380
|
+
export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
|
|
89381
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
89382
|
+
};
|
|
89342
89383
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
89343
89384
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
89344
89385
|
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89455,7 +89496,6 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
89455
89496
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89456
89497
|
};
|
|
89457
89498
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89458
|
-
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89459
89499
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
89460
89500
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
89461
89501
|
color?: Maybe<TrelloPlannerCalendarColor>;
|