@forge/cli-shared 2.1.5-next.5 → 2.1.5-next.9

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,34 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.1.5-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [601527b]
8
+ - @forge/manifest@2.5.0-next.9
9
+
10
+ ## 2.1.5-next.8
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [a5656f6]
15
+ - Updated dependencies [78d682f]
16
+ - @forge/manifest@2.5.0-next.8
17
+
18
+ ## 2.1.5-next.7
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [cc8799c]
23
+ - @forge/manifest@2.5.0-next.7
24
+
25
+ ## 2.1.5-next.6
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [0e82242]
30
+ - @forge/manifest@2.5.0-next.6
31
+
3
32
  ## 2.1.5-next.5
4
33
 
5
34
  ### 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
  };
@@ -3925,6 +3914,23 @@ export declare type DevOpsToolConnection = {
3925
3914
  nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
3926
3915
  pageInfo: PageInfo;
3927
3916
  };
3917
+ export declare type DevOpsToolContainer = {
3918
+ __typename?: 'DevOpsToolContainer';
3919
+ id: Scalars['ID'];
3920
+ displayName: Scalars['String'];
3921
+ url: Scalars['String'];
3922
+ };
3923
+ export declare type DevOpsToolContainerConnection = {
3924
+ __typename?: 'DevOpsToolContainerConnection';
3925
+ edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
3926
+ nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
3927
+ pageInfo: PageInfo;
3928
+ };
3929
+ export declare type DevOpsToolContainerEdge = {
3930
+ __typename?: 'DevOpsToolContainerEdge';
3931
+ cursor: Scalars['String'];
3932
+ node?: Maybe<DevOpsToolContainer>;
3933
+ };
3928
3934
  export declare enum DevOpsToolContainerType {
3929
3935
  Repository = "REPOSITORY",
3930
3936
  DocumentsSpace = "DOCUMENTS_SPACE",
@@ -3974,6 +3980,7 @@ export declare type DevOpsTools = {
3974
3980
  __typename?: 'DevOpsTools';
3975
3981
  tools?: Maybe<DevOpsToolConnection>;
3976
3982
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
3983
+ containers?: Maybe<DevOpsToolContainerConnection>;
3977
3984
  };
3978
3985
  export declare type DevOpsToolsToolsArgs = {
3979
3986
  cloudId: Scalars['ID'];
@@ -3986,6 +3993,14 @@ export declare type DevOpsToolsNamespacesArgs = {
3986
3993
  first?: Maybe<Scalars['Int']>;
3987
3994
  after?: Maybe<Scalars['String']>;
3988
3995
  };
3996
+ export declare type DevOpsToolsContainersArgs = {
3997
+ cloudId: Scalars['ID'];
3998
+ toolId: Scalars['String'];
3999
+ namespaceId: Scalars['String'];
4000
+ query?: Maybe<Scalars['String']>;
4001
+ first?: Maybe<Scalars['Int']>;
4002
+ after?: Maybe<Scalars['String']>;
4003
+ };
3989
4004
  export declare type DevStatus = {
3990
4005
  __typename?: 'DevStatus';
3991
4006
  activity: DevStatusActivity;
@@ -4037,6 +4052,7 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
4037
4052
  export declare type EcosystemQuery = {
4038
4053
  __typename?: 'EcosystemQuery';
4039
4054
  userGrants?: Maybe<UserGrantConnection>;
4055
+ hasPermissionToConsentInContext?: Maybe<PermissionToConsentInContext>;
4040
4056
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
4041
4057
  };
4042
4058
  export declare type EcosystemQueryUserGrantsArgs = {
@@ -4045,6 +4061,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
4045
4061
  before?: Maybe<Scalars['String']>;
4046
4062
  after?: Maybe<Scalars['String']>;
4047
4063
  };
4064
+ export declare type EcosystemQueryHasPermissionToConsentInContextArgs = {
4065
+ installationContext: Scalars['ID'];
4066
+ environmentKey: Scalars['String'];
4067
+ appId: Scalars['ID'];
4068
+ };
4048
4069
  export declare type EcosystemQueryForgeMetricsArgs = {
4049
4070
  appId: Scalars['ID'];
4050
4071
  };
@@ -4087,6 +4108,7 @@ export declare type EventSource = {
4087
4108
  id: Scalars['ID'];
4088
4109
  externalEventSourceId: Scalars['ID'];
4089
4110
  eventType: CompassEventType;
4111
+ forgeAppId?: Maybe<Scalars['ID']>;
4090
4112
  };
4091
4113
  export declare type Extension = {
4092
4114
  __typename?: 'Extension';
@@ -5562,11 +5584,11 @@ export declare type JiraGrantTypeValueEdge = {
5562
5584
  node: JiraGrantTypeValue;
5563
5585
  cursor: Scalars['String'];
5564
5586
  };
5565
- export declare type JiraGroup = {
5587
+ export declare type JiraGroup = Node & {
5566
5588
  __typename?: 'JiraGroup';
5567
- id?: Maybe<Scalars['ID']>;
5568
- groupId?: Maybe<Scalars['String']>;
5569
- name?: Maybe<Scalars['String']>;
5589
+ id: Scalars['ID'];
5590
+ groupId: Scalars['String'];
5591
+ name: Scalars['String'];
5570
5592
  };
5571
5593
  export declare type JiraGroupConnection = {
5572
5594
  __typename?: 'JiraGroupConnection';
@@ -6841,6 +6863,17 @@ export declare type JiraPeopleFieldUsersArgs = {
6841
6863
  before?: Maybe<Scalars['String']>;
6842
6864
  suggested?: Maybe<Scalars['Boolean']>;
6843
6865
  };
6866
+ export declare type JiraPermissionConfiguration = {
6867
+ __typename?: 'JiraPermissionConfiguration';
6868
+ tag: JiraPermissionTagEnum;
6869
+ message?: Maybe<JiraPermissionMessageExtension>;
6870
+ documentation?: Maybe<JiraPermissionDocumentationExtension>;
6871
+ };
6872
+ export declare type JiraPermissionDocumentationExtension = {
6873
+ __typename?: 'JiraPermissionDocumentationExtension';
6874
+ text: Scalars['String'];
6875
+ url: Scalars['String'];
6876
+ };
6844
6877
  export declare type JiraPermissionGrant = {
6845
6878
  __typename?: 'JiraPermissionGrant';
6846
6879
  grantType: JiraGrantTypeKey;
@@ -6860,12 +6893,13 @@ export declare type JiraPermissionGrantEdge = {
6860
6893
  export declare type JiraPermissionGrantHolder = {
6861
6894
  __typename?: 'JiraPermissionGrantHolder';
6862
6895
  permission: JiraProjectPermission;
6896
+ configuration?: Maybe<JiraPermissionConfiguration>;
6863
6897
  grants?: Maybe<Array<JiraPermissionGrants>>;
6864
6898
  };
6865
6899
  export declare type JiraPermissionGrantValue = {
6866
6900
  __typename?: 'JiraPermissionGrantValue';
6867
6901
  id: Scalars['ID'];
6868
- value: JiraGrantTypeValue;
6902
+ value?: Maybe<JiraGrantTypeValue>;
6869
6903
  };
6870
6904
  export declare type JiraPermissionGrantValueConnection = {
6871
6905
  __typename?: 'JiraPermissionGrantValueConnection';
@@ -6889,6 +6923,15 @@ export declare type JiraPermissionLevel = {
6889
6923
  group?: Maybe<JiraGroup>;
6890
6924
  role?: Maybe<JiraRole>;
6891
6925
  };
6926
+ export declare type JiraPermissionMessageExtension = {
6927
+ __typename?: 'JiraPermissionMessageExtension';
6928
+ type: JiraPermissionMessageTypeEnum;
6929
+ text: Scalars['String'];
6930
+ };
6931
+ export declare enum JiraPermissionMessageTypeEnum {
6932
+ Information = "INFORMATION",
6933
+ Warning = "WARNING"
6934
+ }
6892
6935
  export declare type JiraPermissionScheme = Node & {
6893
6936
  __typename?: 'JiraPermissionScheme';
6894
6937
  id: Scalars['ID'];
@@ -6904,6 +6947,10 @@ export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
6904
6947
  success: Scalars['Boolean'];
6905
6948
  errors?: Maybe<Array<MutationError>>;
6906
6949
  };
6950
+ export declare type JiraPermissionSchemeConfiguration = {
6951
+ __typename?: 'JiraPermissionSchemeConfiguration';
6952
+ isEditable: Scalars['Boolean'];
6953
+ };
6907
6954
  export declare type JiraPermissionSchemeGrantGroup = {
6908
6955
  __typename?: 'JiraPermissionSchemeGrantGroup';
6909
6956
  category: JiraProjectPermissionCategory;
@@ -6912,11 +6959,11 @@ export declare type JiraPermissionSchemeGrantGroup = {
6912
6959
  export declare type JiraPermissionSchemeGrantInput = {
6913
6960
  permissionKey: Scalars['String'];
6914
6961
  grantType: JiraGrantTypeKeyEnum;
6915
- grantValue: Scalars['ID'];
6962
+ grantValue?: Maybe<Scalars['ID']>;
6916
6963
  };
6917
6964
  export declare type JiraPermissionSchemeRemoveGrantInput = {
6918
6965
  schemeId: Scalars['ID'];
6919
- grants: Array<JiraPermissionSchemeGrantInput>;
6966
+ grantIds: Array<Scalars['Long']>;
6920
6967
  };
6921
6968
  export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
6922
6969
  __typename?: 'JiraPermissionSchemeRemoveGrantPayload';
@@ -6926,9 +6973,14 @@ export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
6926
6973
  export declare type JiraPermissionSchemeView = {
6927
6974
  __typename?: 'JiraPermissionSchemeView';
6928
6975
  scheme: JiraPermissionScheme;
6976
+ configuration: JiraPermissionSchemeConfiguration;
6929
6977
  grantGroups?: Maybe<Array<JiraPermissionSchemeGrantGroup>>;
6930
6978
  };
6931
6979
  export declare type JiraPermissionSchemeViewResult = JiraPermissionSchemeView | QueryError;
6980
+ export declare enum JiraPermissionTagEnum {
6981
+ Deprecated = "DEPRECATED",
6982
+ New = "NEW"
6983
+ }
6932
6984
  export declare type JiraPlatformAttachment = JiraAttachment & Node & {
6933
6985
  __typename?: 'JiraPlatformAttachment';
6934
6986
  id: Scalars['ID'];
@@ -7223,6 +7275,7 @@ export declare type JiraQuery = {
7223
7275
  getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
7224
7276
  permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
7225
7277
  getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
7278
+ getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
7226
7279
  version?: Maybe<JiraVersionResult>;
7227
7280
  versionDetailPage?: Maybe<JiraVersionDetailPage>;
7228
7281
  };
@@ -7298,6 +7351,11 @@ export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
7298
7351
  before?: Maybe<Scalars['String']>;
7299
7352
  schemeId: Scalars['ID'];
7300
7353
  permissionKey: Scalars['String'];
7354
+ grantTypeKey?: Maybe<JiraGrantTypeKeyEnum>;
7355
+ };
7356
+ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
7357
+ schemeId: Scalars['ID'];
7358
+ permissionKey: Scalars['String'];
7301
7359
  };
7302
7360
  export declare type JiraQueryVersionArgs = {
7303
7361
  id: Scalars['ID'];
@@ -7973,7 +8031,8 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
7973
8031
  };
7974
8032
  export declare type JiraServiceManagementTeamResponder = {
7975
8033
  __typename?: 'JiraServiceManagementTeamResponder';
7976
- team?: Maybe<OpsgenieTeam>;
8034
+ teamId?: Maybe<Scalars['String']>;
8035
+ teamName?: Maybe<Scalars['String']>;
7977
8036
  };
7978
8037
  export declare type JiraServiceManagementUserApproverPrincipal = {
7979
8038
  __typename?: 'JiraServiceManagementUserApproverPrincipal';
@@ -8880,6 +8939,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
8880
8939
  export declare type Mutation = {
8881
8940
  __typename?: 'Mutation';
8882
8941
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
8942
+ shepherd?: Maybe<ShepherdMutation>;
8883
8943
  createApp?: Maybe<CreateAppResponse>;
8884
8944
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
8885
8945
  deleteApp?: Maybe<DeleteAppResponse>;
@@ -8909,7 +8969,7 @@ export declare type Mutation = {
8909
8969
  unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
8910
8970
  createCardParent?: Maybe<CardParentCreateOutput>;
8911
8971
  rankCardParent?: Maybe<GenericMutationResponse>;
8912
- setCardCoverImageVisibility?: Maybe<CardCoverImageVisibilityToggleOutput>;
8972
+ setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
8913
8973
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
8914
8974
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
8915
8975
  deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -9084,8 +9144,8 @@ export declare type MutationCreateCardParentArgs = {
9084
9144
  export declare type MutationRankCardParentArgs = {
9085
9145
  input: CardParentRankInput;
9086
9146
  };
9087
- export declare type MutationSetCardCoverImageVisibilityArgs = {
9088
- input?: Maybe<CardCoverImageVisibilityToggleInput>;
9147
+ export declare type MutationSetIssueMediaVisibilityArgs = {
9148
+ input?: Maybe<SetIssueMediaVisibilityInput>;
9089
9149
  };
9090
9150
  export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
9091
9151
  input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
@@ -9570,6 +9630,11 @@ export declare type Payload = {
9570
9630
  success: Scalars['Boolean'];
9571
9631
  errors?: Maybe<Array<MutationError>>;
9572
9632
  };
9633
+ export declare type PermissionToConsentInContext = {
9634
+ __typename?: 'PermissionToConsentInContext';
9635
+ isAllowed: Scalars['Boolean'];
9636
+ userType?: Maybe<Scalars['String']>;
9637
+ };
9573
9638
  export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
9574
9639
  export declare type PolarisAnonymousVisitorViewHash = {
9575
9640
  __typename?: 'PolarisAnonymousVisitorViewHash';
@@ -10125,6 +10190,15 @@ export declare type PolarisIssueLinkType = {
10125
10190
  merge: Scalars['Int'];
10126
10191
  datapoint: Scalars['Int'];
10127
10192
  };
10193
+ export declare type PolarisMatrixAxis = {
10194
+ __typename?: 'PolarisMatrixAxis';
10195
+ dimension?: Maybe<Scalars['String']>;
10196
+ field?: Maybe<PolarisIdeaField>;
10197
+ };
10198
+ export declare type PolarisMatrixConfig = {
10199
+ __typename?: 'PolarisMatrixConfig';
10200
+ axes?: Maybe<Array<PolarisMatrixAxis>>;
10201
+ };
10128
10202
  export declare type PolarisPlay = {
10129
10203
  __typename?: 'PolarisPlay';
10130
10204
  id: Scalars['ID'];
@@ -10307,6 +10381,17 @@ export declare type PolarisTermsConsent = {
10307
10381
  requiresMarketingConsent: Scalars['Boolean'];
10308
10382
  locale: Scalars['String'];
10309
10383
  };
10384
+ export declare type PolarisTimelineConfig = {
10385
+ __typename?: 'PolarisTimelineConfig';
10386
+ startDateField?: Maybe<PolarisIdeaField>;
10387
+ dueDateField?: Maybe<PolarisIdeaField>;
10388
+ mode?: Maybe<PolarisTimelineMode>;
10389
+ };
10390
+ export declare enum PolarisTimelineMode {
10391
+ Months = "MONTHS",
10392
+ Quarters = "QUARTERS",
10393
+ Years = "YEARS"
10394
+ }
10310
10395
  export declare type PolarisValueDecoration = {
10311
10396
  __typename?: 'PolarisValueDecoration';
10312
10397
  emoji?: Maybe<Scalars['String']>;
@@ -10338,6 +10423,7 @@ export declare type PolarisView = {
10338
10423
  __typename?: 'PolarisView';
10339
10424
  id: Scalars['ID'];
10340
10425
  name: Scalars['String'];
10426
+ emoji?: Maybe<Scalars['String']>;
10341
10427
  description?: Maybe<Scalars['JSON']>;
10342
10428
  projectId: Scalars['Int'];
10343
10429
  viewSetId: Scalars['ID'];
@@ -10348,12 +10434,12 @@ export declare type PolarisView = {
10348
10434
  visualizationType: PolarisVisualizationType;
10349
10435
  groupBy?: Maybe<PolarisIdeaField>;
10350
10436
  verticalGroupBy?: Maybe<PolarisIdeaField>;
10351
- x?: Maybe<PolarisIdeaField>;
10352
- y?: Maybe<PolarisIdeaField>;
10353
10437
  groupValues?: Maybe<Array<PolarisGroupValue>>;
10354
10438
  verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
10355
10439
  sort?: Maybe<Array<PolarisSortField>>;
10356
10440
  hidden?: Maybe<Array<PolarisIdeaField>>;
10441
+ timelineConfig?: Maybe<PolarisTimelineConfig>;
10442
+ matrixConfig?: Maybe<PolarisMatrixConfig>;
10357
10443
  userJql?: Maybe<Scalars['String']>;
10358
10444
  filter?: Maybe<Array<PolarisViewFilter>>;
10359
10445
  rank: Scalars['Int'];
@@ -10440,7 +10526,9 @@ export declare type PolarisViewTableColumnSizeInput = {
10440
10526
  export declare enum PolarisVisualizationType {
10441
10527
  Table = "TABLE",
10442
10528
  Board = "BOARD",
10443
- Twoxtwo = "TWOXTWO"
10529
+ Twoxtwo = "TWOXTWO",
10530
+ Matrix = "MATRIX",
10531
+ Timeline = "TIMELINE"
10444
10532
  }
10445
10533
  export declare type ProjectAvatars = {
10446
10534
  __typename?: 'ProjectAvatars';
@@ -10454,6 +10542,7 @@ export declare type Query = {
10454
10542
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
10455
10543
  echo?: Maybe<Scalars['String']>;
10456
10544
  diagnostics?: Maybe<Scalars['JSON']>;
10545
+ node?: Maybe<Node>;
10457
10546
  confluence?: Maybe<ConfluenceQueryApi>;
10458
10547
  activities?: Maybe<Activities>;
10459
10548
  devOpsMetrics?: Maybe<DevOpsMetrics>;
@@ -10461,6 +10550,7 @@ export declare type Query = {
10461
10550
  repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
10462
10551
  jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
10463
10552
  bitbucket?: Maybe<BitbucketQuery>;
10553
+ shepherd?: Maybe<ShepherdQuery>;
10464
10554
  opsgenie?: Maybe<OpsgenieQuery>;
10465
10555
  apps?: Maybe<AppConnection>;
10466
10556
  app?: Maybe<App>;
@@ -10495,7 +10585,6 @@ export declare type Query = {
10495
10585
  jira?: Maybe<JiraQuery>;
10496
10586
  appLogs?: Maybe<AppLogConnection>;
10497
10587
  appLogLines?: Maybe<AppLogLineConnection>;
10498
- node?: Maybe<Node>;
10499
10588
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
10500
10589
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
10501
10590
  roadmaps?: Maybe<RoadmapsQuery>;
@@ -10540,6 +10629,9 @@ export declare type Query = {
10540
10629
  extensionContexts?: Maybe<Array<ExtensionContext>>;
10541
10630
  extensionByKey?: Maybe<Extension>;
10542
10631
  };
10632
+ export declare type QueryNodeArgs = {
10633
+ id: Scalars['ID'];
10634
+ };
10543
10635
  export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
10544
10636
  id: Scalars['ID'];
10545
10637
  cloudId: Scalars['ID'];
@@ -10680,9 +10772,6 @@ export declare type QueryAppLogLinesArgs = {
10680
10772
  after?: Maybe<Scalars['String']>;
10681
10773
  invocation: Scalars['ID'];
10682
10774
  };
10683
- export declare type QueryNodeArgs = {
10684
- id: Scalars['ID'];
10685
- };
10686
10775
  export declare type QueryDeveloperLogAccessArgs = {
10687
10776
  contextIds: Array<Scalars['ID']>;
10688
10777
  appId: Scalars['ID'];
@@ -11365,6 +11454,18 @@ export declare type SetExternalAuthCredentialsPayload = Payload & {
11365
11454
  success: Scalars['Boolean'];
11366
11455
  errors?: Maybe<Array<MutationError>>;
11367
11456
  };
11457
+ export declare type SetIssueMediaVisibilityInput = {
11458
+ boardId: Scalars['ID'];
11459
+ isVisible?: Maybe<Scalars['Boolean']>;
11460
+ };
11461
+ export declare type SetIssueMediaVisibilityOutput = MutationResponse & {
11462
+ __typename?: 'SetIssueMediaVisibilityOutput';
11463
+ boardScope?: Maybe<BoardScope>;
11464
+ statusCode: Scalars['Int'];
11465
+ success: Scalars['Boolean'];
11466
+ message: Scalars['String'];
11467
+ clientMutationId?: Maybe<Scalars['ID']>;
11468
+ };
11368
11469
  export declare type SetPolarisProjectOnboardedInput = {
11369
11470
  projectId: Scalars['ID'];
11370
11471
  value: Scalars['Boolean'];
@@ -11405,6 +11506,81 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
11405
11506
  success: Scalars['Boolean'];
11406
11507
  message: Scalars['String'];
11407
11508
  };
11509
+ export declare type ShepherdAlert = {
11510
+ __typename?: 'ShepherdAlert';
11511
+ cloudId?: Maybe<Scalars['ID']>;
11512
+ createdOn: Scalars['DateTime'];
11513
+ id: Scalars['ID'];
11514
+ orgId: Scalars['ID'];
11515
+ status: ShepherdAlertStatus;
11516
+ title: Scalars['String'];
11517
+ updatedOn?: Maybe<Scalars['DateTime']>;
11518
+ };
11519
+ export declare enum ShepherdAlertSeverity {
11520
+ Critical = "CRITICAL",
11521
+ High = "HIGH",
11522
+ Low = "LOW",
11523
+ Medium = "MEDIUM"
11524
+ }
11525
+ export declare enum ShepherdAlertStatus {
11526
+ InProgress = "IN_PROGRESS",
11527
+ Triaged = "TRIAGED",
11528
+ Untriaged = "UNTRIAGED"
11529
+ }
11530
+ export declare type ShepherdAppInfo = {
11531
+ __typename?: 'ShepherdAppInfo';
11532
+ apiVersion: Scalars['Int'];
11533
+ };
11534
+ export declare type ShepherdCreateAlertInput = {
11535
+ cloudId?: Maybe<Scalars['ID']>;
11536
+ orgId: Scalars['ID'];
11537
+ status?: Maybe<ShepherdAlertStatus>;
11538
+ title: Scalars['String'];
11539
+ };
11540
+ export declare type ShepherdCreateAlertPayload = Payload & {
11541
+ __typename?: 'ShepherdCreateAlertPayload';
11542
+ errors?: Maybe<Array<MutationError>>;
11543
+ node?: Maybe<ShepherdAlert>;
11544
+ success: Scalars['Boolean'];
11545
+ };
11546
+ export declare type ShepherdMutation = {
11547
+ __typename?: 'ShepherdMutation';
11548
+ createAlert?: Maybe<ShepherdCreateAlertPayload>;
11549
+ updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
11550
+ };
11551
+ export declare type ShepherdMutationCreateAlertArgs = {
11552
+ input: ShepherdCreateAlertInput;
11553
+ };
11554
+ export declare type ShepherdMutationUpdateAlertArgs = {
11555
+ id: Scalars['ID'];
11556
+ input: ShepherdUpdateAlertInput;
11557
+ };
11558
+ export declare type ShepherdQuery = {
11559
+ __typename?: 'ShepherdQuery';
11560
+ shepherdAlert?: Maybe<ShepherdAlert>;
11561
+ shepherdAlerts?: Maybe<Array<ShepherdAlert>>;
11562
+ shepherdAppInfo: ShepherdAppInfo;
11563
+ shepherdUser?: Maybe<ShepherdUser>;
11564
+ };
11565
+ export declare type ShepherdQueryShepherdAlertArgs = {
11566
+ id: Scalars['ID'];
11567
+ };
11568
+ export declare type ShepherdQueryShepherdAlertsArgs = {
11569
+ orgId: Scalars['ID'];
11570
+ };
11571
+ export declare type ShepherdUpdateAlertInput = {
11572
+ status?: Maybe<ShepherdAlertStatus>;
11573
+ };
11574
+ export declare type ShepherdUpdateAlertPayload = Payload & {
11575
+ __typename?: 'ShepherdUpdateAlertPayload';
11576
+ errors?: Maybe<Array<MutationError>>;
11577
+ node?: Maybe<ShepherdAlert>;
11578
+ success: Scalars['Boolean'];
11579
+ };
11580
+ export declare type ShepherdUser = {
11581
+ __typename?: 'ShepherdUser';
11582
+ aid: Scalars['ID'];
11583
+ };
11408
11584
  export declare type SoftwareBoard = {
11409
11585
  __typename?: 'SoftwareBoard';
11410
11586
  id?: Maybe<Scalars['ID']>;
@@ -11654,6 +11830,7 @@ export declare type SupportRequestCatalogMutationApi = {
11654
11830
  __typename?: 'SupportRequestCatalogMutationApi';
11655
11831
  addComment?: Maybe<SupportRequestComment>;
11656
11832
  statusTransition?: Maybe<Scalars['Boolean']>;
11833
+ createNamedContactOperationRequest?: Maybe<SupportRequest>;
11657
11834
  };
11658
11835
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
11659
11836
  input?: Maybe<SupportRequestAddCommentInput>;
@@ -11661,6 +11838,12 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
11661
11838
  export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
11662
11839
  input?: Maybe<SupportRequestTransitionInput>;
11663
11840
  };
11841
+ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
11842
+ emails: Array<Scalars['String']>;
11843
+ organizationId?: Maybe<Scalars['String']>;
11844
+ sen?: Maybe<Scalars['String']>;
11845
+ operation: SupportRequestNamedContactOperation;
11846
+ };
11664
11847
  export declare type SupportRequestCatalogQueryApi = {
11665
11848
  __typename?: 'SupportRequestCatalogQueryApi';
11666
11849
  me?: Maybe<SupportRequestPage>;
@@ -11738,6 +11921,10 @@ export declare type SupportRequestLastComment = {
11738
11921
  offset: Scalars['Int'];
11739
11922
  values: Array<SupportRequestComment>;
11740
11923
  };
11924
+ export declare enum SupportRequestNamedContactOperation {
11925
+ Add = "ADD",
11926
+ Remove = "REMOVE"
11927
+ }
11741
11928
  export declare type SupportRequestNamedContactRelation = {
11742
11929
  __typename?: 'SupportRequestNamedContactRelation';
11743
11930
  orgId?: Maybe<Scalars['String']>;
@@ -12118,6 +12305,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
12118
12305
  export declare type UpdateCompassHasMetricValueCriteriaInput = {
12119
12306
  id: Scalars['ID'];
12120
12307
  weight?: Maybe<Scalars['Int']>;
12308
+ metricDefinitionId?: Maybe<Scalars['ID']>;
12121
12309
  metricDefinitionName?: Maybe<Scalars['String']>;
12122
12310
  comparatorValue?: Maybe<Scalars['Float']>;
12123
12311
  comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
@@ -12363,6 +12551,13 @@ export declare type UpdatePolarisInsightPayload = Payload & {
12363
12551
  errors?: Maybe<Array<MutationError>>;
12364
12552
  node?: Maybe<PolarisInsight>;
12365
12553
  };
12554
+ export declare type UpdatePolarisMatrixAxis = {
12555
+ dimension: Scalars['String'];
12556
+ field: Scalars['ID'];
12557
+ };
12558
+ export declare type UpdatePolarisMatrixConfig = {
12559
+ axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
12560
+ };
12366
12561
  export declare type UpdatePolarisPlayContribution = {
12367
12562
  amount?: Maybe<Scalars['Int']>;
12368
12563
  comment?: Maybe<Scalars['ID']>;
@@ -12394,9 +12589,15 @@ export declare type UpdatePolarisTermsConsentPayload = Payload & {
12394
12589
  success: Scalars['Boolean'];
12395
12590
  errors?: Maybe<Array<MutationError>>;
12396
12591
  };
12592
+ export declare type UpdatePolarisTimelineConfig = {
12593
+ startDateField?: Maybe<Scalars['ID']>;
12594
+ dueDateField?: Maybe<Scalars['ID']>;
12595
+ mode?: Maybe<PolarisTimelineMode>;
12596
+ };
12397
12597
  export declare type UpdatePolarisViewInput = {
12398
12598
  view?: Maybe<Scalars['ID']>;
12399
12599
  name?: Maybe<Scalars['String']>;
12600
+ emoji?: Maybe<Scalars['String']>;
12400
12601
  description?: Maybe<Scalars['JSON']>;
12401
12602
  jql?: Maybe<Scalars['String']>;
12402
12603
  userJql?: Maybe<Scalars['String']>;
@@ -12406,13 +12607,13 @@ export declare type UpdatePolarisViewInput = {
12406
12607
  groupValues?: Maybe<Array<PolarisGroupValueInput>>;
12407
12608
  verticalGroupBy?: Maybe<Scalars['ID']>;
12408
12609
  verticalGroupValues?: Maybe<Array<PolarisGroupValueInput>>;
12409
- x?: Maybe<Scalars['ID']>;
12410
- y?: Maybe<Scalars['ID']>;
12411
12610
  sort?: Maybe<Array<PolarisSortFieldInput>>;
12412
12611
  filter?: Maybe<Array<PolarisViewFilterInput>>;
12413
12612
  hidden?: Maybe<Array<Scalars['ID']>>;
12414
12613
  lastViewedTimestamp?: Maybe<Scalars['String']>;
12415
12614
  lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
12615
+ timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
12616
+ matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
12416
12617
  };
12417
12618
  export declare type UpdatePolarisViewPayload = Payload & {
12418
12619
  __typename?: 'UpdatePolarisViewPayload';