@forge/cli-shared 2.1.5-next.7 → 2.1.5-next.8

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.1.5-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a5656f6]
8
+ - Updated dependencies [78d682f]
9
+ - @forge/manifest@2.5.0-next.8
10
+
3
11
  ## 2.1.5-next.7
4
12
 
5
13
  ### Patch Changes
@@ -1192,19 +1192,6 @@ export declare type CfdIssueColumnChangeEntry = {
1192
1192
  statusTo?: Maybe<Scalars['ID']>;
1193
1193
  point?: Maybe<TimeSeriesPoint>;
1194
1194
  };
1195
- export declare type CardCoverImageVisibilityToggleInput = {
1196
- boardAri: Scalars['ID'];
1197
- isVisible: Scalars['Boolean'];
1198
- };
1199
- export declare type CardCoverImageVisibilityToggleOutput = {
1200
- __typename?: 'CardCoverImageVisibilityToggleOutput';
1201
- boardAri: Scalars['ID'];
1202
- isVisible: Scalars['Boolean'];
1203
- statusCode: Scalars['Int'];
1204
- success: Scalars['Boolean'];
1205
- message: Scalars['String'];
1206
- clientMutationId?: Maybe<Scalars['ID']>;
1207
- };
1208
1195
  export declare type CardCoverMedia = {
1209
1196
  __typename?: 'CardCoverMedia';
1210
1197
  attachmentMediaApiId?: Maybe<Scalars['ID']>;
@@ -1960,7 +1947,8 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
1960
1947
  id: Scalars['ID'];
1961
1948
  weight: Scalars['Int'];
1962
1949
  comparatorValue: Scalars['Float'];
1963
- metricDefinitionName: Scalars['String'];
1950
+ metricDefinitionId: Scalars['ID'];
1951
+ metricDefinitionName?: Maybe<Scalars['String']>;
1964
1952
  comparator: CompassCriteriaNumberComparatorOptions;
1965
1953
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
1966
1954
  };
@@ -2687,7 +2675,8 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
2687
2675
  };
2688
2676
  export declare type CreateCompassHasMetricValueCriteriaInput = {
2689
2677
  weight: Scalars['Int'];
2690
- metricDefinitionName: Scalars['String'];
2678
+ metricDefinitionId: Scalars['ID'];
2679
+ metricDefinitionName?: Maybe<Scalars['String']>;
2691
2680
  comparatorValue: Scalars['Float'];
2692
2681
  comparator: CompassCriteriaNumberComparatorOptions;
2693
2682
  };
@@ -8041,7 +8030,8 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
8041
8030
  };
8042
8031
  export declare type JiraServiceManagementTeamResponder = {
8043
8032
  __typename?: 'JiraServiceManagementTeamResponder';
8044
- team?: Maybe<OpsgenieTeam>;
8033
+ teamId?: Maybe<Scalars['String']>;
8034
+ teamName?: Maybe<Scalars['String']>;
8045
8035
  };
8046
8036
  export declare type JiraServiceManagementUserApproverPrincipal = {
8047
8037
  __typename?: 'JiraServiceManagementUserApproverPrincipal';
@@ -8948,6 +8938,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
8948
8938
  export declare type Mutation = {
8949
8939
  __typename?: 'Mutation';
8950
8940
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
8941
+ shepherd?: Maybe<ShepherdMutation>;
8951
8942
  createApp?: Maybe<CreateAppResponse>;
8952
8943
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
8953
8944
  deleteApp?: Maybe<DeleteAppResponse>;
@@ -8977,7 +8968,7 @@ export declare type Mutation = {
8977
8968
  unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
8978
8969
  createCardParent?: Maybe<CardParentCreateOutput>;
8979
8970
  rankCardParent?: Maybe<GenericMutationResponse>;
8980
- setCardCoverImageVisibility?: Maybe<CardCoverImageVisibilityToggleOutput>;
8971
+ setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
8981
8972
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
8982
8973
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
8983
8974
  deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -9152,8 +9143,8 @@ export declare type MutationCreateCardParentArgs = {
9152
9143
  export declare type MutationRankCardParentArgs = {
9153
9144
  input: CardParentRankInput;
9154
9145
  };
9155
- export declare type MutationSetCardCoverImageVisibilityArgs = {
9156
- input?: Maybe<CardCoverImageVisibilityToggleInput>;
9146
+ export declare type MutationSetIssueMediaVisibilityArgs = {
9147
+ input?: Maybe<SetIssueMediaVisibilityInput>;
9157
9148
  };
9158
9149
  export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
9159
9150
  input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
@@ -10198,6 +10189,15 @@ export declare type PolarisIssueLinkType = {
10198
10189
  merge: Scalars['Int'];
10199
10190
  datapoint: Scalars['Int'];
10200
10191
  };
10192
+ export declare type PolarisMatrixAxis = {
10193
+ __typename?: 'PolarisMatrixAxis';
10194
+ dimension?: Maybe<Scalars['String']>;
10195
+ field?: Maybe<PolarisIdeaField>;
10196
+ };
10197
+ export declare type PolarisMatrixConfig = {
10198
+ __typename?: 'PolarisMatrixConfig';
10199
+ axes?: Maybe<Array<PolarisMatrixAxis>>;
10200
+ };
10201
10201
  export declare type PolarisPlay = {
10202
10202
  __typename?: 'PolarisPlay';
10203
10203
  id: Scalars['ID'];
@@ -10380,6 +10380,17 @@ export declare type PolarisTermsConsent = {
10380
10380
  requiresMarketingConsent: Scalars['Boolean'];
10381
10381
  locale: Scalars['String'];
10382
10382
  };
10383
+ export declare type PolarisTimelineConfig = {
10384
+ __typename?: 'PolarisTimelineConfig';
10385
+ startDateField?: Maybe<PolarisIdeaField>;
10386
+ dueDateField?: Maybe<PolarisIdeaField>;
10387
+ mode?: Maybe<PolarisTimelineMode>;
10388
+ };
10389
+ export declare enum PolarisTimelineMode {
10390
+ Months = "MONTHS",
10391
+ Quarters = "QUARTERS",
10392
+ Years = "YEARS"
10393
+ }
10383
10394
  export declare type PolarisValueDecoration = {
10384
10395
  __typename?: 'PolarisValueDecoration';
10385
10396
  emoji?: Maybe<Scalars['String']>;
@@ -10411,6 +10422,7 @@ export declare type PolarisView = {
10411
10422
  __typename?: 'PolarisView';
10412
10423
  id: Scalars['ID'];
10413
10424
  name: Scalars['String'];
10425
+ emoji?: Maybe<Scalars['String']>;
10414
10426
  description?: Maybe<Scalars['JSON']>;
10415
10427
  projectId: Scalars['Int'];
10416
10428
  viewSetId: Scalars['ID'];
@@ -10421,12 +10433,12 @@ export declare type PolarisView = {
10421
10433
  visualizationType: PolarisVisualizationType;
10422
10434
  groupBy?: Maybe<PolarisIdeaField>;
10423
10435
  verticalGroupBy?: Maybe<PolarisIdeaField>;
10424
- x?: Maybe<PolarisIdeaField>;
10425
- y?: Maybe<PolarisIdeaField>;
10426
10436
  groupValues?: Maybe<Array<PolarisGroupValue>>;
10427
10437
  verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
10428
10438
  sort?: Maybe<Array<PolarisSortField>>;
10429
10439
  hidden?: Maybe<Array<PolarisIdeaField>>;
10440
+ timelineConfig?: Maybe<PolarisTimelineConfig>;
10441
+ matrixConfig?: Maybe<PolarisMatrixConfig>;
10430
10442
  userJql?: Maybe<Scalars['String']>;
10431
10443
  filter?: Maybe<Array<PolarisViewFilter>>;
10432
10444
  rank: Scalars['Int'];
@@ -10513,7 +10525,9 @@ export declare type PolarisViewTableColumnSizeInput = {
10513
10525
  export declare enum PolarisVisualizationType {
10514
10526
  Table = "TABLE",
10515
10527
  Board = "BOARD",
10516
- Twoxtwo = "TWOXTWO"
10528
+ Twoxtwo = "TWOXTWO",
10529
+ Matrix = "MATRIX",
10530
+ Timeline = "TIMELINE"
10517
10531
  }
10518
10532
  export declare type ProjectAvatars = {
10519
10533
  __typename?: 'ProjectAvatars';
@@ -10527,6 +10541,7 @@ export declare type Query = {
10527
10541
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
10528
10542
  echo?: Maybe<Scalars['String']>;
10529
10543
  diagnostics?: Maybe<Scalars['JSON']>;
10544
+ node?: Maybe<Node>;
10530
10545
  confluence?: Maybe<ConfluenceQueryApi>;
10531
10546
  activities?: Maybe<Activities>;
10532
10547
  devOpsMetrics?: Maybe<DevOpsMetrics>;
@@ -10534,6 +10549,7 @@ export declare type Query = {
10534
10549
  repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
10535
10550
  jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
10536
10551
  bitbucket?: Maybe<BitbucketQuery>;
10552
+ shepherd?: Maybe<ShepherdQuery>;
10537
10553
  opsgenie?: Maybe<OpsgenieQuery>;
10538
10554
  apps?: Maybe<AppConnection>;
10539
10555
  app?: Maybe<App>;
@@ -10568,7 +10584,6 @@ export declare type Query = {
10568
10584
  jira?: Maybe<JiraQuery>;
10569
10585
  appLogs?: Maybe<AppLogConnection>;
10570
10586
  appLogLines?: Maybe<AppLogLineConnection>;
10571
- node?: Maybe<Node>;
10572
10587
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
10573
10588
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
10574
10589
  roadmaps?: Maybe<RoadmapsQuery>;
@@ -10613,6 +10628,9 @@ export declare type Query = {
10613
10628
  extensionContexts?: Maybe<Array<ExtensionContext>>;
10614
10629
  extensionByKey?: Maybe<Extension>;
10615
10630
  };
10631
+ export declare type QueryNodeArgs = {
10632
+ id: Scalars['ID'];
10633
+ };
10616
10634
  export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
10617
10635
  id: Scalars['ID'];
10618
10636
  cloudId: Scalars['ID'];
@@ -10753,9 +10771,6 @@ export declare type QueryAppLogLinesArgs = {
10753
10771
  after?: Maybe<Scalars['String']>;
10754
10772
  invocation: Scalars['ID'];
10755
10773
  };
10756
- export declare type QueryNodeArgs = {
10757
- id: Scalars['ID'];
10758
- };
10759
10774
  export declare type QueryDeveloperLogAccessArgs = {
10760
10775
  contextIds: Array<Scalars['ID']>;
10761
10776
  appId: Scalars['ID'];
@@ -11438,6 +11453,18 @@ export declare type SetExternalAuthCredentialsPayload = Payload & {
11438
11453
  success: Scalars['Boolean'];
11439
11454
  errors?: Maybe<Array<MutationError>>;
11440
11455
  };
11456
+ export declare type SetIssueMediaVisibilityInput = {
11457
+ boardId: Scalars['ID'];
11458
+ isVisible?: Maybe<Scalars['Boolean']>;
11459
+ };
11460
+ export declare type SetIssueMediaVisibilityOutput = MutationResponse & {
11461
+ __typename?: 'SetIssueMediaVisibilityOutput';
11462
+ boardScope?: Maybe<BoardScope>;
11463
+ statusCode: Scalars['Int'];
11464
+ success: Scalars['Boolean'];
11465
+ message: Scalars['String'];
11466
+ clientMutationId?: Maybe<Scalars['ID']>;
11467
+ };
11441
11468
  export declare type SetPolarisProjectOnboardedInput = {
11442
11469
  projectId: Scalars['ID'];
11443
11470
  value: Scalars['Boolean'];
@@ -11478,6 +11505,81 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
11478
11505
  success: Scalars['Boolean'];
11479
11506
  message: Scalars['String'];
11480
11507
  };
11508
+ export declare type ShepherdAlert = {
11509
+ __typename?: 'ShepherdAlert';
11510
+ cloudId?: Maybe<Scalars['ID']>;
11511
+ createdOn: Scalars['DateTime'];
11512
+ id: Scalars['ID'];
11513
+ orgId: Scalars['ID'];
11514
+ status: ShepherdAlertStatus;
11515
+ title: Scalars['String'];
11516
+ updatedOn?: Maybe<Scalars['DateTime']>;
11517
+ };
11518
+ export declare enum ShepherdAlertSeverity {
11519
+ Critical = "CRITICAL",
11520
+ High = "HIGH",
11521
+ Low = "LOW",
11522
+ Medium = "MEDIUM"
11523
+ }
11524
+ export declare enum ShepherdAlertStatus {
11525
+ InProgress = "IN_PROGRESS",
11526
+ Triaged = "TRIAGED",
11527
+ Untriaged = "UNTRIAGED"
11528
+ }
11529
+ export declare type ShepherdAppInfo = {
11530
+ __typename?: 'ShepherdAppInfo';
11531
+ apiVersion: Scalars['Int'];
11532
+ };
11533
+ export declare type ShepherdCreateAlertInput = {
11534
+ cloudId?: Maybe<Scalars['ID']>;
11535
+ orgId: Scalars['ID'];
11536
+ status?: Maybe<ShepherdAlertStatus>;
11537
+ title: Scalars['String'];
11538
+ };
11539
+ export declare type ShepherdCreateAlertPayload = Payload & {
11540
+ __typename?: 'ShepherdCreateAlertPayload';
11541
+ errors?: Maybe<Array<MutationError>>;
11542
+ node?: Maybe<ShepherdAlert>;
11543
+ success: Scalars['Boolean'];
11544
+ };
11545
+ export declare type ShepherdMutation = {
11546
+ __typename?: 'ShepherdMutation';
11547
+ createAlert?: Maybe<ShepherdCreateAlertPayload>;
11548
+ updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
11549
+ };
11550
+ export declare type ShepherdMutationCreateAlertArgs = {
11551
+ input: ShepherdCreateAlertInput;
11552
+ };
11553
+ export declare type ShepherdMutationUpdateAlertArgs = {
11554
+ id: Scalars['ID'];
11555
+ input: ShepherdUpdateAlertInput;
11556
+ };
11557
+ export declare type ShepherdQuery = {
11558
+ __typename?: 'ShepherdQuery';
11559
+ shepherdAlert?: Maybe<ShepherdAlert>;
11560
+ shepherdAlerts?: Maybe<Array<ShepherdAlert>>;
11561
+ shepherdAppInfo: ShepherdAppInfo;
11562
+ shepherdUser?: Maybe<ShepherdUser>;
11563
+ };
11564
+ export declare type ShepherdQueryShepherdAlertArgs = {
11565
+ id: Scalars['ID'];
11566
+ };
11567
+ export declare type ShepherdQueryShepherdAlertsArgs = {
11568
+ orgId: Scalars['ID'];
11569
+ };
11570
+ export declare type ShepherdUpdateAlertInput = {
11571
+ status?: Maybe<ShepherdAlertStatus>;
11572
+ };
11573
+ export declare type ShepherdUpdateAlertPayload = Payload & {
11574
+ __typename?: 'ShepherdUpdateAlertPayload';
11575
+ errors?: Maybe<Array<MutationError>>;
11576
+ node?: Maybe<ShepherdAlert>;
11577
+ success: Scalars['Boolean'];
11578
+ };
11579
+ export declare type ShepherdUser = {
11580
+ __typename?: 'ShepherdUser';
11581
+ aid: Scalars['ID'];
11582
+ };
11481
11583
  export declare type SoftwareBoard = {
11482
11584
  __typename?: 'SoftwareBoard';
11483
11585
  id?: Maybe<Scalars['ID']>;
@@ -11727,6 +11829,7 @@ export declare type SupportRequestCatalogMutationApi = {
11727
11829
  __typename?: 'SupportRequestCatalogMutationApi';
11728
11830
  addComment?: Maybe<SupportRequestComment>;
11729
11831
  statusTransition?: Maybe<Scalars['Boolean']>;
11832
+ createNamedContactOperationRequest?: Maybe<SupportRequest>;
11730
11833
  };
11731
11834
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
11732
11835
  input?: Maybe<SupportRequestAddCommentInput>;
@@ -11734,6 +11837,12 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
11734
11837
  export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
11735
11838
  input?: Maybe<SupportRequestTransitionInput>;
11736
11839
  };
11840
+ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
11841
+ emails: Array<Scalars['String']>;
11842
+ organizationId?: Maybe<Scalars['String']>;
11843
+ sen?: Maybe<Scalars['String']>;
11844
+ operation: SupportRequestNamedContactOperation;
11845
+ };
11737
11846
  export declare type SupportRequestCatalogQueryApi = {
11738
11847
  __typename?: 'SupportRequestCatalogQueryApi';
11739
11848
  me?: Maybe<SupportRequestPage>;
@@ -11811,6 +11920,10 @@ export declare type SupportRequestLastComment = {
11811
11920
  offset: Scalars['Int'];
11812
11921
  values: Array<SupportRequestComment>;
11813
11922
  };
11923
+ export declare enum SupportRequestNamedContactOperation {
11924
+ Add = "ADD",
11925
+ Remove = "REMOVE"
11926
+ }
11814
11927
  export declare type SupportRequestNamedContactRelation = {
11815
11928
  __typename?: 'SupportRequestNamedContactRelation';
11816
11929
  orgId?: Maybe<Scalars['String']>;
@@ -12191,6 +12304,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
12191
12304
  export declare type UpdateCompassHasMetricValueCriteriaInput = {
12192
12305
  id: Scalars['ID'];
12193
12306
  weight?: Maybe<Scalars['Int']>;
12307
+ metricDefinitionId?: Maybe<Scalars['ID']>;
12194
12308
  metricDefinitionName?: Maybe<Scalars['String']>;
12195
12309
  comparatorValue?: Maybe<Scalars['Float']>;
12196
12310
  comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
@@ -12436,6 +12550,13 @@ export declare type UpdatePolarisInsightPayload = Payload & {
12436
12550
  errors?: Maybe<Array<MutationError>>;
12437
12551
  node?: Maybe<PolarisInsight>;
12438
12552
  };
12553
+ export declare type UpdatePolarisMatrixAxis = {
12554
+ dimension: Scalars['String'];
12555
+ field: Scalars['ID'];
12556
+ };
12557
+ export declare type UpdatePolarisMatrixConfig = {
12558
+ axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
12559
+ };
12439
12560
  export declare type UpdatePolarisPlayContribution = {
12440
12561
  amount?: Maybe<Scalars['Int']>;
12441
12562
  comment?: Maybe<Scalars['ID']>;
@@ -12467,9 +12588,15 @@ export declare type UpdatePolarisTermsConsentPayload = Payload & {
12467
12588
  success: Scalars['Boolean'];
12468
12589
  errors?: Maybe<Array<MutationError>>;
12469
12590
  };
12591
+ export declare type UpdatePolarisTimelineConfig = {
12592
+ startDateField?: Maybe<Scalars['ID']>;
12593
+ dueDateField?: Maybe<Scalars['ID']>;
12594
+ mode?: Maybe<PolarisTimelineMode>;
12595
+ };
12470
12596
  export declare type UpdatePolarisViewInput = {
12471
12597
  view?: Maybe<Scalars['ID']>;
12472
12598
  name?: Maybe<Scalars['String']>;
12599
+ emoji?: Maybe<Scalars['String']>;
12473
12600
  description?: Maybe<Scalars['JSON']>;
12474
12601
  jql?: Maybe<Scalars['String']>;
12475
12602
  userJql?: Maybe<Scalars['String']>;
@@ -12479,13 +12606,13 @@ export declare type UpdatePolarisViewInput = {
12479
12606
  groupValues?: Maybe<Array<PolarisGroupValueInput>>;
12480
12607
  verticalGroupBy?: Maybe<Scalars['ID']>;
12481
12608
  verticalGroupValues?: Maybe<Array<PolarisGroupValueInput>>;
12482
- x?: Maybe<Scalars['ID']>;
12483
- y?: Maybe<Scalars['ID']>;
12484
12609
  sort?: Maybe<Array<PolarisSortFieldInput>>;
12485
12610
  filter?: Maybe<Array<PolarisViewFilterInput>>;
12486
12611
  hidden?: Maybe<Array<Scalars['ID']>>;
12487
12612
  lastViewedTimestamp?: Maybe<Scalars['String']>;
12488
12613
  lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
12614
+ timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
12615
+ matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
12489
12616
  };
12490
12617
  export declare type UpdatePolarisViewPayload = Payload & {
12491
12618
  __typename?: 'UpdatePolarisViewPayload';