@forge/cli-shared 6.6.1-next.2 → 6.6.1-next.4

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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.6.1-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 71dc617: update primaryProduct to requiredProducts
8
+
9
+ ## 6.6.1-next.3
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [de16df9]
14
+ - @forge/manifest@8.7.0-next.2
15
+
3
16
  ## 6.6.1-next.2
4
17
 
5
18
  ### Patch Changes
@@ -857,13 +857,10 @@ export declare enum AnalyticsEventName {
857
857
  WhiteboardViewed = "whiteboard_viewed"
858
858
  }
859
859
  export declare enum AnalyticsMeasuresEventName {
860
- CurrentBlogpostCountSitestateMeasured = "currentBlogpostCount_sitestate_measured",
861
860
  CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
862
- CurrentDatabaseCountSitestateMeasured = "currentDatabaseCount_sitestate_measured",
863
861
  CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
864
- CurrentPageCountSitestateMeasured = "currentPageCount_sitestate_measured",
862
+ CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
865
863
  CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
866
- CurrentWhiteboardCountSitestateMeasured = "currentWhiteboardCount_sitestate_measured",
867
864
  CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
868
865
  InactivePageCountSitestateMeasured = "inactivePageCount_sitestate_measured",
869
866
  InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
@@ -874,6 +871,7 @@ export declare enum AnalyticsMeasuresEventName {
874
871
  TotalActiveSpacesSitestateMeasured = "totalActiveSpaces_sitestate_measured",
875
872
  TotalCurrentBlogpostCountSitestateMeasured = "totalCurrentBlogpostCount_sitestate_measured",
876
873
  TotalCurrentDatabaseCountSitestateMeasured = "totalCurrentDatabaseCount_sitestate_measured",
874
+ TotalCurrentLivedocsCountSitestateMeasured = "totalCurrentLivedocsCount_sitestate_measured",
877
875
  TotalCurrentPageCountSitestateMeasured = "totalCurrentPageCount_sitestate_measured",
878
876
  TotalCurrentWhiteboardCountSitestateMeasured = "totalCurrentWhiteboardCount_sitestate_measured",
879
877
  TotalPagesDeactivatedOwnerSitestateMeasured = "totalPagesDeactivatedOwner_sitestate_measured",
@@ -882,6 +880,7 @@ export declare enum AnalyticsMeasuresEventName {
882
880
  export declare enum AnalyticsMeasuresSpaceEventName {
883
881
  CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
884
882
  CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
883
+ CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
885
884
  CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
886
885
  CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
887
886
  InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
@@ -16312,64 +16311,6 @@ export declare type ConfluenceWhiteboardLinks = {
16312
16311
  base?: Maybe<Scalars['String']['output']>;
16313
16312
  webUi?: Maybe<Scalars['String']['output']>;
16314
16313
  };
16315
- export declare type ConfluenceWorkflow = {
16316
- __typename?: 'ConfluenceWorkflow';
16317
- description?: Maybe<Scalars['String']['output']>;
16318
- id: Scalars['ID']['output'];
16319
- name: Scalars['String']['output'];
16320
- workflowId: Scalars['ID']['output'];
16321
- };
16322
- export declare type ConfluenceWorkflowApplication = {
16323
- __typename?: 'ConfluenceWorkflowApplication';
16324
- availableTransitions?: Maybe<Array<Maybe<ConfluenceWorkflowTransition>>>;
16325
- currentWorkflowStatus?: Maybe<ConfluenceWorkflowStatus>;
16326
- workflow: ConfluenceWorkflow;
16327
- };
16328
- export declare type ConfluenceWorkflowApplicationConnection = {
16329
- __typename?: 'ConfluenceWorkflowApplicationConnection';
16330
- edges?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationEdge>>>;
16331
- nodes?: Maybe<Array<Maybe<ConfluenceWorkflowApplication>>>;
16332
- pageInfo: ConfluencePageInfo;
16333
- };
16334
- export declare type ConfluenceWorkflowApplicationEdge = {
16335
- __typename?: 'ConfluenceWorkflowApplicationEdge';
16336
- cursor: Scalars['String']['output'];
16337
- node?: Maybe<ConfluenceWorkflowApplication>;
16338
- };
16339
- export declare type ConfluenceWorkflowConnection = {
16340
- __typename?: 'ConfluenceWorkflowConnection';
16341
- edges?: Maybe<Array<Maybe<ConfluenceWorkflowEdge>>>;
16342
- nodes?: Maybe<Array<Maybe<ConfluenceWorkflow>>>;
16343
- pageInfo: ConfluencePageInfo;
16344
- };
16345
- export declare type ConfluenceWorkflowEdge = {
16346
- __typename?: 'ConfluenceWorkflowEdge';
16347
- cursor: Scalars['String']['output'];
16348
- node?: Maybe<ConfluenceWorkflow>;
16349
- };
16350
- export declare type ConfluenceWorkflowStatus = {
16351
- __typename?: 'ConfluenceWorkflowStatus';
16352
- displayProperties?: Maybe<ConfluenceWorkflowStatusDisplayProperties>;
16353
- id?: Maybe<Scalars['ID']['output']>;
16354
- };
16355
- export declare type ConfluenceWorkflowStatusDisplayProperties = {
16356
- __typename?: 'ConfluenceWorkflowStatusDisplayProperties';
16357
- color?: Maybe<Scalars['String']['output']>;
16358
- description?: Maybe<Scalars['String']['output']>;
16359
- name?: Maybe<Scalars['String']['output']>;
16360
- };
16361
- export declare type ConfluenceWorkflowTransition = {
16362
- __typename?: 'ConfluenceWorkflowTransition';
16363
- destinationStatus: ConfluenceWorkflowStatus;
16364
- displayProperties?: Maybe<ConfluenceWorkflowTransitionDisplayProperties>;
16365
- id: Scalars['ID']['output'];
16366
- startStatus?: Maybe<ConfluenceWorkflowStatus>;
16367
- };
16368
- export declare type ConfluenceWorkflowTransitionDisplayProperties = {
16369
- __typename?: 'ConfluenceWorkflowTransitionDisplayProperties';
16370
- description?: Maybe<Scalars['String']['output']>;
16371
- name?: Maybe<Scalars['String']['output']>;
16372
- };
16373
16314
  export declare type Confluence_CqlMetaData = {
16374
16315
  __typename?: 'Confluence_cqlMetaData';
16375
16316
  cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
@@ -29829,6 +29770,7 @@ export declare type GraphStore = {
29829
29770
  mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
29830
29771
  mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
29831
29772
  mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
29773
+ meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
29832
29774
  meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
29833
29775
  meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
29834
29776
  onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
@@ -31613,6 +31555,13 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
31613
31555
  ids: Array<Scalars['ID']['input']>;
31614
31556
  sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
31615
31557
  };
31558
+ export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
31559
+ after?: InputMaybe<Scalars['String']['input']>;
31560
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
31561
+ first?: InputMaybe<Scalars['Int']['input']>;
31562
+ id: Scalars['ID']['input'];
31563
+ sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
31564
+ };
31616
31565
  export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
31617
31566
  after?: InputMaybe<Scalars['String']['input']>;
31618
31567
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -39363,6 +39312,9 @@ export declare type GraphStoreLongFilterInput = {
39363
39312
  export declare type GraphStoreMediaAttachedToContentSortInput = {
39364
39313
  lastModified?: InputMaybe<GraphStoreSortInput>;
39365
39314
  };
39315
+ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
39316
+ lastModified?: InputMaybe<GraphStoreSortInput>;
39317
+ };
39366
39318
  export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
39367
39319
  createdAt?: InputMaybe<GraphStoreSortInput>;
39368
39320
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -41933,6 +41885,20 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
41933
41885
  node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
41934
41886
  };
41935
41887
  export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
41888
+ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
41889
+ __typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
41890
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
41891
+ pageInfo: PageInfo;
41892
+ };
41893
+ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge = {
41894
+ __typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge';
41895
+ createdAt: Scalars['DateTime']['output'];
41896
+ cursor?: Maybe<Scalars['String']['output']>;
41897
+ id: Scalars['ID']['output'];
41898
+ lastUpdated: Scalars['DateTime']['output'];
41899
+ node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion>;
41900
+ };
41901
+ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
41936
41902
  export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
41937
41903
  __typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
41938
41904
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
@@ -68085,6 +68051,15 @@ export declare type LoomMeeting = Node & {
68085
68051
  title: Scalars['String']['output'];
68086
68052
  video?: Maybe<LoomVideo>;
68087
68053
  };
68054
+ export declare type LoomMeetingRecurrence = Node & {
68055
+ __typename?: 'LoomMeetingRecurrence';
68056
+ id: Scalars['ID']['output'];
68057
+ meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
68058
+ };
68059
+ export declare type LoomMeetingRecurrenceMeetingsArgs = {
68060
+ first?: InputMaybe<Scalars['Int']['input']>;
68061
+ meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
68062
+ };
68088
68063
  export declare enum LoomMeetingSource {
68089
68064
  GoogleCalendar = "GOOGLE_CALENDAR",
68090
68065
  MicrosoftOutlook = "MICROSOFT_OUTLOOK",
@@ -70749,6 +70724,7 @@ export declare type MercuryFocusAreaActivityEdge = {
70749
70724
  };
70750
70725
  export declare type MercuryFocusAreaActivityHistory = Node & {
70751
70726
  __typename?: 'MercuryFocusAreaActivityHistory';
70727
+ associatedEntityAri?: Maybe<Scalars['String']['output']>;
70752
70728
  eventDate?: Maybe<Scalars['String']['output']>;
70753
70729
  eventType?: Maybe<MercuryEventType>;
70754
70730
  fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
@@ -76996,9 +76972,6 @@ export declare type Query = {
76996
76972
  confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
76997
76973
  confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
76998
76974
  confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
76999
- confluence_workflow?: Maybe<ConfluenceWorkflow>;
77000
- confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
77001
- confluence_workflowsAll?: Maybe<ConfluenceWorkflowConnection>;
77002
76975
  connectedData?: Maybe<ConnectedDataQuery>;
77003
76976
  connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
77004
76977
  contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
@@ -77182,6 +77155,8 @@ export declare type Query = {
77182
77155
  loomToken?: Maybe<LoomToken>;
77183
77156
  loomUserStatus?: Maybe<LoomUserStatus>;
77184
77157
  loom_meeting?: Maybe<LoomMeeting>;
77158
+ loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
77159
+ loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
77185
77160
  loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
77186
77161
  loom_space?: Maybe<LoomSpace>;
77187
77162
  loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
@@ -78627,19 +78602,6 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
78627
78602
  cloudId: Scalars['ID']['input'];
78628
78603
  jql: Scalars['String']['input'];
78629
78604
  };
78630
- export declare type QueryConfluence_WorkflowArgs = {
78631
- id: Scalars['ID']['input'];
78632
- };
78633
- export declare type QueryConfluence_WorkflowApplicationsByContentIdArgs = {
78634
- after?: InputMaybe<Scalars['String']['input']>;
78635
- contentId: Scalars['ID']['input'];
78636
- first?: InputMaybe<Scalars['Int']['input']>;
78637
- };
78638
- export declare type QueryConfluence_WorkflowsAllArgs = {
78639
- after?: InputMaybe<Scalars['String']['input']>;
78640
- cloudId: Scalars['ID']['input'];
78641
- first?: InputMaybe<Scalars['Int']['input']>;
78642
- };
78643
78605
  export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
78644
78606
  filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
78645
78607
  jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
@@ -79305,6 +79267,12 @@ export declare type QueryLookAndFeelArgs = {
79305
79267
  export declare type QueryLoom_MeetingArgs = {
79306
79268
  id: Scalars['ID']['input'];
79307
79269
  };
79270
+ export declare type QueryLoom_MeetingRecurrenceArgs = {
79271
+ id: Scalars['ID']['input'];
79272
+ };
79273
+ export declare type QueryLoom_MeetingRecurrencesArgs = {
79274
+ ids: Array<Scalars['ID']['input']>;
79275
+ };
79308
79276
  export declare type QueryLoom_MeetingsArgs = {
79309
79277
  ids: Array<Scalars['ID']['input']>;
79310
79278
  };
@@ -88721,15 +88689,9 @@ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
88721
88689
  export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
88722
88690
  __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
88723
88691
  errors?: Maybe<Array<MutationError>>;
88724
- plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
88725
88692
  plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
88726
- plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
88727
88693
  success: Scalars['Boolean']['output'];
88728
88694
  };
88729
- export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
88730
- after?: InputMaybe<Scalars['String']['input']>;
88731
- first?: InputMaybe<Scalars['Int']['input']>;
88732
- };
88733
88695
  export declare type TrelloCreatePlannerCalendarEventInput = {
88734
88696
  event: TrelloCreatePlannerCalendarEventOptions;
88735
88697
  plannerCalendarId: Scalars['ID']['input'];
@@ -89265,6 +89227,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
89265
89227
  };
89266
89228
  export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
89267
89229
  after?: InputMaybe<Scalars['String']['input']>;
89230
+ filter?: InputMaybe<TrelloPlannerCalendarEnabledCalendarsFilter>;
89268
89231
  first?: InputMaybe<Scalars['Int']['input']>;
89269
89232
  };
89270
89233
  export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
@@ -89339,6 +89302,9 @@ export declare type TrelloPlannerCalendarEdgeUpdated = {
89339
89302
  __typename?: 'TrelloPlannerCalendarEdgeUpdated';
89340
89303
  node: TrelloPlannerUpdatedCalendar;
89341
89304
  };
89305
+ export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
89306
+ updateCursor?: InputMaybe<Scalars['String']['input']>;
89307
+ };
89342
89308
  export declare type TrelloPlannerCalendarEvent = Node & {
89343
89309
  __typename?: 'TrelloPlannerCalendarEvent';
89344
89310
  allDay?: Maybe<Scalars['Boolean']['output']>;
@@ -89455,7 +89421,6 @@ export declare type TrelloPlannerCalendarEventsFilter = {
89455
89421
  start?: InputMaybe<Scalars['DateTime']['input']>;
89456
89422
  };
89457
89423
  export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
89458
- export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
89459
89424
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
89460
89425
  __typename?: 'TrelloPlannerProviderCalendar';
89461
89426
  color?: Maybe<TrelloPlannerCalendarColor>;