@forge/cli-shared 8.15.1-next.1 → 8.15.1-next.2

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.15.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [fa9b5aa]
8
+ - @forge/manifest@12.1.0-next.1
9
+
3
10
  ## 8.15.1-next.1
4
11
 
5
12
  ### Patch Changes
@@ -3039,6 +3039,19 @@ export declare type AdminWorkspacePlanEdge = {
3039
3039
  cursor: Scalars['String']['output'];
3040
3040
  node?: Maybe<AdminWorkspacePlan>;
3041
3041
  };
3042
+ export declare type AdminWorkspaceRef = {
3043
+ __typename?: 'AdminWorkspaceRef';
3044
+ id: Scalars['ID']['output'];
3045
+ };
3046
+ export declare type AdminWorkspaceRefConnection = {
3047
+ __typename?: 'AdminWorkspaceRefConnection';
3048
+ edges?: Maybe<Array<Maybe<AdminWorkspaceRefEdge>>>;
3049
+ pageInfo: PageInfo;
3050
+ };
3051
+ export declare type AdminWorkspaceRefEdge = {
3052
+ __typename?: 'AdminWorkspaceRefEdge';
3053
+ node: AdminWorkspaceRef;
3054
+ };
3042
3055
  export declare type AdminWorkspaceType = {
3043
3056
  __typename?: 'AdminWorkspaceType';
3044
3057
  id: Scalars['String']['output'];
@@ -3056,6 +3069,7 @@ export declare type AdminWorkspaceTypeEdge = {
3056
3069
  };
3057
3070
  export declare type AgentAiContextPanelResponse = {
3058
3071
  __typename?: 'AgentAIContextPanelResponse';
3072
+ agentSteps?: Maybe<Scalars['String']['output']>;
3059
3073
  nextSteps?: Maybe<Scalars['String']['output']>;
3060
3074
  reporterDetails?: Maybe<Scalars['String']['output']>;
3061
3075
  suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
@@ -7900,6 +7914,12 @@ export declare type AssetsDmObjectsReportDsByDs = {
7900
7914
  rows: Array<Scalars['JSON']['output']>;
7901
7915
  rowsCount: Scalars['Int']['output'];
7902
7916
  };
7917
+ export declare type AssetsDmObjectsReportDsOverlap = {
7918
+ __typename?: 'AssetsDMObjectsReportDsOverlap';
7919
+ columns: Array<Scalars['String']['output']>;
7920
+ rows: Array<Scalars['JSON']['output']>;
7921
+ rowsCount: Scalars['Float']['output'];
7922
+ };
7903
7923
  export declare type AssetsDmPaginationInfo = {
7904
7924
  __typename?: 'AssetsDMPaginationInfo';
7905
7925
  currentPageCursor?: Maybe<Scalars['Int']['output']>;
@@ -30861,6 +30881,7 @@ export declare type DevConsoleDownloadAppInstallationsResponse = {
30861
30881
  __typename?: 'DevConsoleDownloadAppInstallationsResponse';
30862
30882
  downloadUrl?: Maybe<Scalars['String']['output']>;
30863
30883
  errors?: Maybe<Array<QueryError>>;
30884
+ lastDownloadedAt?: Maybe<Scalars['String']['output']>;
30864
30885
  status: DevConsoleDownloadAppInstallationsStatus;
30865
30886
  };
30866
30887
  export declare enum DevConsoleDownloadAppInstallationsStatus {
@@ -30872,6 +30893,7 @@ export declare enum DevConsoleDownloadAppInstallationsStatus {
30872
30893
  export declare type DevConsoleFetchDownloadAppInstallationsStatusResponse = {
30873
30894
  __typename?: 'DevConsoleFetchDownloadAppInstallationsStatusResponse';
30874
30895
  errors?: Maybe<Array<QueryError>>;
30896
+ lastDownloadedAt?: Maybe<Scalars['String']['output']>;
30875
30897
  status: DevConsoleDownloadAppInstallationsStatus;
30876
30898
  };
30877
30899
  export declare enum DevConsoleGroupBy {
@@ -35524,6 +35546,11 @@ export declare type ForgeAuditLogFeatureFlag = {
35524
35546
  details: Array<Scalars['String']['output']>;
35525
35547
  timestamp: Scalars['String']['output'];
35526
35548
  };
35549
+ export declare type ForgeAuditLogFeatureFlagEdge = {
35550
+ __typename?: 'ForgeAuditLogFeatureFlagEdge';
35551
+ cursor: Scalars['String']['output'];
35552
+ node?: Maybe<ForgeAuditLogFeatureFlag>;
35553
+ };
35527
35554
  export declare enum ForgeAuditLogsActionType {
35528
35555
  ContributorAdded = "CONTRIBUTOR_ADDED",
35529
35556
  ContributorRemoved = "CONTRIBUTOR_REMOVED",
@@ -35641,6 +35668,12 @@ export declare enum ForgeAuditLogsFeatureFlagsActionType {
35641
35668
  FeatureFlagToggled = "FEATURE_FLAG_TOGGLED",
35642
35669
  FeatureFlagUpdated = "FEATURE_FLAG_UPDATED"
35643
35670
  }
35671
+ export declare type ForgeAuditLogsFeatureFlagsConnection = {
35672
+ __typename?: 'ForgeAuditLogsFeatureFlagsConnection';
35673
+ edges: Array<ForgeAuditLogFeatureFlagEdge>;
35674
+ nodes: Array<ForgeAuditLogFeatureFlag>;
35675
+ pageInfo: PageInfo;
35676
+ };
35644
35677
  export declare type ForgeAuditLogsFeatureFlagsQueryInput = {
35645
35678
  action?: InputMaybe<ForgeAuditLogsFeatureFlagsActionType>;
35646
35679
  after?: InputMaybe<Scalars['String']['input']>;
@@ -35649,12 +35682,7 @@ export declare type ForgeAuditLogsFeatureFlagsQueryInput = {
35649
35682
  flagId: Scalars['ID']['input'];
35650
35683
  startTime?: InputMaybe<Scalars['String']['input']>;
35651
35684
  };
35652
- export declare type ForgeAuditLogsFeatureFlagsResponse = {
35653
- __typename?: 'ForgeAuditLogsFeatureFlagsResponse';
35654
- data: Array<ForgeAuditLogFeatureFlag>;
35655
- pageInfo: PageInfo;
35656
- };
35657
- export declare type ForgeAuditLogsFeatureFlagsResult = ForgeAuditLogsFeatureFlagsResponse | QueryError;
35685
+ export declare type ForgeAuditLogsFeatureFlagsResult = ForgeAuditLogsFeatureFlagsConnection | QueryError;
35658
35686
  export declare type ForgeAuditLogsQuery = {
35659
35687
  __typename?: 'ForgeAuditLogsQuery';
35660
35688
  appId: Scalars['ID']['output'];
@@ -106327,6 +106355,7 @@ export declare type JiraRestoreCustomFieldsPayload = Payload & {
106327
106355
  __typename?: 'JiraRestoreCustomFieldsPayload';
106328
106356
  errors?: Maybe<Array<MutationError>>;
106329
106357
  failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
106358
+ restoredFields?: Maybe<Array<JiraIssueFieldConfig>>;
106330
106359
  succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
106331
106360
  success: Scalars['Boolean']['output'];
106332
106361
  };
@@ -113577,6 +113606,14 @@ export declare type KitsunePaginationInput = {
113577
113606
  first?: InputMaybe<Scalars['Int']['input']>;
113578
113607
  last?: InputMaybe<Scalars['Int']['input']>;
113579
113608
  };
113609
+ export declare type KitsuneSection = Node & {
113610
+ __typename?: 'KitsuneSection';
113611
+ createdAt: Scalars['DateTime']['output'];
113612
+ description?: Maybe<Scalars['String']['output']>;
113613
+ id: Scalars['ID']['output'];
113614
+ name: Scalars['String']['output'];
113615
+ updatedAt: Scalars['DateTime']['output'];
113616
+ };
113580
113617
  export declare type KitsuneSourceInput = {
113581
113618
  sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
113582
113619
  };
@@ -123813,6 +123850,7 @@ export declare type Mutation = {
123813
123850
  jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
123814
123851
  jsw?: Maybe<JswMutation>;
123815
123852
  kitsune_createFeedback?: Maybe<KitsuneFeedback>;
123853
+ kitsune_createSection?: Maybe<KitsuneSection>;
123816
123854
  kitsune_createSpace?: Maybe<KitsuneSpace>;
123817
123855
  kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
123818
123856
  kitsune_importFeedbackFromCsv?: Maybe<Scalars['Boolean']['output']>;
@@ -126501,6 +126539,11 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
126501
126539
  spaceAri: Scalars['ID']['input'];
126502
126540
  title?: InputMaybe<Scalars['String']['input']>;
126503
126541
  };
126542
+ export declare type MutationKitsune_CreateSectionArgs = {
126543
+ description?: InputMaybe<Scalars['String']['input']>;
126544
+ name: Scalars['String']['input'];
126545
+ spaceAri: Scalars['ID']['input'];
126546
+ };
126504
126547
  export declare type MutationKitsune_CreateSpaceArgs = {
126505
126548
  name: Scalars['String']['input'];
126506
126549
  workspaceAri: Scalars['ID']['input'];
@@ -130471,6 +130514,7 @@ export declare type Query = {
130471
130514
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
130472
130515
  admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
130473
130516
  admin_appModules?: Maybe<AdminAppModuleConnection>;
130517
+ admin_appRefsForSite?: Maybe<AdminWorkspaceRefConnection>;
130474
130518
  admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
130475
130519
  admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
130476
130520
  admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
@@ -130627,6 +130671,7 @@ export declare type Query = {
130627
130671
  assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
130628
130672
  assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
130629
130673
  assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
130674
+ assetsDM_objectsReportDsOverlap?: Maybe<AssetsDmObjectsReportDsOverlap>;
130630
130675
  assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
130631
130676
  assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
130632
130677
  assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
@@ -131152,6 +131197,7 @@ export declare type Query = {
131152
131197
  kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
131153
131198
  kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
131154
131199
  kitsune_node?: Maybe<KitsuneNode>;
131200
+ kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
131155
131201
  kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
131156
131202
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
131157
131203
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
@@ -131542,6 +131588,13 @@ export declare type QueryAdmin_AppModulesArgs = {
131542
131588
  last?: InputMaybe<Scalars['Int']['input']>;
131543
131589
  moduleKeys: Array<Scalars['String']['input']>;
131544
131590
  };
131591
+ export declare type QueryAdmin_AppRefsForSiteArgs = {
131592
+ after?: InputMaybe<Scalars['String']['input']>;
131593
+ first?: InputMaybe<Scalars['Int']['input']>;
131594
+ orgId: Scalars['ID']['input'];
131595
+ siteId?: InputMaybe<Scalars['ID']['input']>;
131596
+ unitId?: InputMaybe<Scalars['ID']['input']>;
131597
+ };
131545
131598
  export declare type QueryAdmin_AuditLogEventActionsArgs = {
131546
131599
  after?: InputMaybe<Scalars['String']['input']>;
131547
131600
  before?: InputMaybe<Scalars['String']['input']>;
@@ -132414,6 +132467,14 @@ export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
132414
132467
  objectId: Scalars['ID']['input'];
132415
132468
  workspaceId: Scalars['ID']['input'];
132416
132469
  };
132470
+ export declare type QueryAssetsDm_ObjectsReportDsOverlapArgs = {
132471
+ cloudId: Scalars['ID']['input'];
132472
+ dataSources: Array<Scalars['String']['input']>;
132473
+ objectId: Scalars['ID']['input'];
132474
+ savedSearchParams?: Array<Array<AssetsDmObjectsListSearchGroup>>;
132475
+ searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
132476
+ workspaceId: Scalars['ID']['input'];
132477
+ };
132417
132478
  export declare type QueryAssetsDm_RawDataArgs = {
132418
132479
  cloudId: Scalars['ID']['input'];
132419
132480
  dataSourceId: Scalars['ID']['input'];
@@ -134638,6 +134699,9 @@ export declare type QueryKitsune_FeedbacksArgs = {
134638
134699
  export declare type QueryKitsune_NodeArgs = {
134639
134700
  id: Scalars['ID']['input'];
134640
134701
  };
134702
+ export declare type QueryKitsune_SectionsArgs = {
134703
+ ids: Array<Scalars['ID']['input']>;
134704
+ };
134641
134705
  export declare type QueryKitsune_SpacesArgs = {
134642
134706
  ids: Array<Scalars['ID']['input']>;
134643
134707
  };
@@ -169052,6 +169116,8 @@ export declare type TrelloInboxQuickCaptureCard = {
169052
169116
  member?: Maybe<TrelloMember>;
169053
169117
  notificationId?: Maybe<Scalars['ID']['output']>;
169054
169118
  source?: Maybe<TrelloCardExternalSource>;
169119
+ status?: Maybe<Scalars['String']['output']>;
169120
+ type?: Maybe<Scalars['String']['output']>;
169055
169121
  };
169056
169122
  export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
169057
169123
  __typename?: 'TrelloInboxUpdated';
@@ -169819,7 +169885,7 @@ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
169819
169885
  export declare type TrelloNewYearsResolutionAiBoardInput = {
169820
169886
  resolution: Scalars['String']['input'];
169821
169887
  };
169822
- export declare type TrelloNotification = TrelloQuickCaptureNotification;
169888
+ export declare type TrelloNotification = TrelloInboxQuickCaptureCard | TrelloQuickCaptureNotification | TrelloQuickCaptureNotificationCleared;
169823
169889
  export declare type TrelloNotificationConnection = {
169824
169890
  __typename?: 'TrelloNotificationConnection';
169825
169891
  edges?: Maybe<Array<TrelloNotificationEdge>>;
@@ -169973,6 +170039,8 @@ export declare enum TrelloPlannerCalendarColor {
169973
170039
  PurpleSubtlest = "PURPLE_SUBTLEST",
169974
170040
  RedSubtler = "RED_SUBTLER",
169975
170041
  RedSubtlest = "RED_SUBTLEST",
170042
+ TealSubtler = "TEAL_SUBTLER",
170043
+ TealSubtlest = "TEAL_SUBTLEST",
169976
170044
  YellowBolder = "YELLOW_BOLDER",
169977
170045
  YellowSubtler = "YELLOW_SUBTLER",
169978
170046
  YellowSubtlest = "YELLOW_SUBTLEST"