@forge/cli-shared 2.1.5-next.6 → 2.1.5

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,53 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4de9850]
8
+ - Updated dependencies [70e9c8c]
9
+ - Updated dependencies [fde4ba7]
10
+ - Updated dependencies [601527b]
11
+ - Updated dependencies [755e35e]
12
+ - Updated dependencies [a5656f6]
13
+ - Updated dependencies [cc8799c]
14
+ - Updated dependencies [f5eb8e0]
15
+ - Updated dependencies [f013199]
16
+ - Updated dependencies [78d682f]
17
+ - Updated dependencies [70e9c8c]
18
+ - Updated dependencies [dec8066]
19
+ - Updated dependencies [0e82242]
20
+ - @forge/manifest@2.5.0
21
+
22
+ ## 2.1.5-next.10
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [fde4ba7]
27
+ - @forge/manifest@2.5.0-next.10
28
+
29
+ ## 2.1.5-next.9
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies [601527b]
34
+ - @forge/manifest@2.5.0-next.9
35
+
36
+ ## 2.1.5-next.8
37
+
38
+ ### Patch Changes
39
+
40
+ - Updated dependencies [a5656f6]
41
+ - Updated dependencies [78d682f]
42
+ - @forge/manifest@2.5.0-next.8
43
+
44
+ ## 2.1.5-next.7
45
+
46
+ ### Patch Changes
47
+
48
+ - Updated dependencies [cc8799c]
49
+ - @forge/manifest@2.5.0-next.7
50
+
3
51
  ## 2.1.5-next.6
4
52
 
5
53
  ### 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
  };
@@ -2023,7 +2011,6 @@ export declare type CompassMetricDefinitionsQuery = {
2023
2011
  cloudId: Scalars['ID'];
2024
2012
  first?: Maybe<Scalars['Int']>;
2025
2013
  after?: Maybe<Scalars['String']>;
2026
- names?: Maybe<Array<Scalars['String']>>;
2027
2014
  };
2028
2015
  export declare type CompassMetricDefinitionsQueryResult = CompassMetricDefinitionsConnection | QueryError;
2029
2016
  export declare type CompassMetricSource = {
@@ -2687,7 +2674,8 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
2687
2674
  };
2688
2675
  export declare type CreateCompassHasMetricValueCriteriaInput = {
2689
2676
  weight: Scalars['Int'];
2690
- metricDefinitionName: Scalars['String'];
2677
+ metricDefinitionId: Scalars['ID'];
2678
+ metricDefinitionName?: Maybe<Scalars['String']>;
2691
2679
  comparatorValue: Scalars['Float'];
2692
2680
  comparator: CompassCriteriaNumberComparatorOptions;
2693
2681
  };
@@ -3925,6 +3913,23 @@ export declare type DevOpsToolConnection = {
3925
3913
  nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
3926
3914
  pageInfo: PageInfo;
3927
3915
  };
3916
+ export declare type DevOpsToolContainer = {
3917
+ __typename?: 'DevOpsToolContainer';
3918
+ id: Scalars['ID'];
3919
+ displayName: Scalars['String'];
3920
+ url: Scalars['String'];
3921
+ };
3922
+ export declare type DevOpsToolContainerConnection = {
3923
+ __typename?: 'DevOpsToolContainerConnection';
3924
+ edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
3925
+ nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
3926
+ pageInfo: PageInfo;
3927
+ };
3928
+ export declare type DevOpsToolContainerEdge = {
3929
+ __typename?: 'DevOpsToolContainerEdge';
3930
+ cursor: Scalars['String'];
3931
+ node?: Maybe<DevOpsToolContainer>;
3932
+ };
3928
3933
  export declare enum DevOpsToolContainerType {
3929
3934
  Repository = "REPOSITORY",
3930
3935
  DocumentsSpace = "DOCUMENTS_SPACE",
@@ -3974,6 +3979,7 @@ export declare type DevOpsTools = {
3974
3979
  __typename?: 'DevOpsTools';
3975
3980
  tools?: Maybe<DevOpsToolConnection>;
3976
3981
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
3982
+ containers?: Maybe<DevOpsToolContainerConnection>;
3977
3983
  };
3978
3984
  export declare type DevOpsToolsToolsArgs = {
3979
3985
  cloudId: Scalars['ID'];
@@ -3986,6 +3992,14 @@ export declare type DevOpsToolsNamespacesArgs = {
3986
3992
  first?: Maybe<Scalars['Int']>;
3987
3993
  after?: Maybe<Scalars['String']>;
3988
3994
  };
3995
+ export declare type DevOpsToolsContainersArgs = {
3996
+ cloudId: Scalars['ID'];
3997
+ toolId: Scalars['String'];
3998
+ namespaceId: Scalars['String'];
3999
+ query?: Maybe<Scalars['String']>;
4000
+ first?: Maybe<Scalars['Int']>;
4001
+ after?: Maybe<Scalars['String']>;
4002
+ };
3989
4003
  export declare type DevStatus = {
3990
4004
  __typename?: 'DevStatus';
3991
4005
  activity: DevStatusActivity;
@@ -4093,6 +4107,7 @@ export declare type EventSource = {
4093
4107
  id: Scalars['ID'];
4094
4108
  externalEventSourceId: Scalars['ID'];
4095
4109
  eventType: CompassEventType;
4110
+ forgeAppId?: Maybe<Scalars['ID']>;
4096
4111
  };
4097
4112
  export declare type Extension = {
4098
4113
  __typename?: 'Extension';
@@ -6847,6 +6862,17 @@ export declare type JiraPeopleFieldUsersArgs = {
6847
6862
  before?: Maybe<Scalars['String']>;
6848
6863
  suggested?: Maybe<Scalars['Boolean']>;
6849
6864
  };
6865
+ export declare type JiraPermissionConfiguration = {
6866
+ __typename?: 'JiraPermissionConfiguration';
6867
+ tag: JiraPermissionTagEnum;
6868
+ message?: Maybe<JiraPermissionMessageExtension>;
6869
+ documentation?: Maybe<JiraPermissionDocumentationExtension>;
6870
+ };
6871
+ export declare type JiraPermissionDocumentationExtension = {
6872
+ __typename?: 'JiraPermissionDocumentationExtension';
6873
+ text: Scalars['String'];
6874
+ url: Scalars['String'];
6875
+ };
6850
6876
  export declare type JiraPermissionGrant = {
6851
6877
  __typename?: 'JiraPermissionGrant';
6852
6878
  grantType: JiraGrantTypeKey;
@@ -6866,12 +6892,13 @@ export declare type JiraPermissionGrantEdge = {
6866
6892
  export declare type JiraPermissionGrantHolder = {
6867
6893
  __typename?: 'JiraPermissionGrantHolder';
6868
6894
  permission: JiraProjectPermission;
6895
+ configuration?: Maybe<JiraPermissionConfiguration>;
6869
6896
  grants?: Maybe<Array<JiraPermissionGrants>>;
6870
6897
  };
6871
6898
  export declare type JiraPermissionGrantValue = {
6872
6899
  __typename?: 'JiraPermissionGrantValue';
6873
6900
  id: Scalars['ID'];
6874
- value: JiraGrantTypeValue;
6901
+ value?: Maybe<JiraGrantTypeValue>;
6875
6902
  };
6876
6903
  export declare type JiraPermissionGrantValueConnection = {
6877
6904
  __typename?: 'JiraPermissionGrantValueConnection';
@@ -6895,6 +6922,15 @@ export declare type JiraPermissionLevel = {
6895
6922
  group?: Maybe<JiraGroup>;
6896
6923
  role?: Maybe<JiraRole>;
6897
6924
  };
6925
+ export declare type JiraPermissionMessageExtension = {
6926
+ __typename?: 'JiraPermissionMessageExtension';
6927
+ type: JiraPermissionMessageTypeEnum;
6928
+ text: Scalars['String'];
6929
+ };
6930
+ export declare enum JiraPermissionMessageTypeEnum {
6931
+ Information = "INFORMATION",
6932
+ Warning = "WARNING"
6933
+ }
6898
6934
  export declare type JiraPermissionScheme = Node & {
6899
6935
  __typename?: 'JiraPermissionScheme';
6900
6936
  id: Scalars['ID'];
@@ -6910,6 +6946,10 @@ export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
6910
6946
  success: Scalars['Boolean'];
6911
6947
  errors?: Maybe<Array<MutationError>>;
6912
6948
  };
6949
+ export declare type JiraPermissionSchemeConfiguration = {
6950
+ __typename?: 'JiraPermissionSchemeConfiguration';
6951
+ isEditable: Scalars['Boolean'];
6952
+ };
6913
6953
  export declare type JiraPermissionSchemeGrantGroup = {
6914
6954
  __typename?: 'JiraPermissionSchemeGrantGroup';
6915
6955
  category: JiraProjectPermissionCategory;
@@ -6918,11 +6958,11 @@ export declare type JiraPermissionSchemeGrantGroup = {
6918
6958
  export declare type JiraPermissionSchemeGrantInput = {
6919
6959
  permissionKey: Scalars['String'];
6920
6960
  grantType: JiraGrantTypeKeyEnum;
6921
- grantValue: Scalars['ID'];
6961
+ grantValue?: Maybe<Scalars['ID']>;
6922
6962
  };
6923
6963
  export declare type JiraPermissionSchemeRemoveGrantInput = {
6924
6964
  schemeId: Scalars['ID'];
6925
- grants: Array<JiraPermissionSchemeGrantInput>;
6965
+ grantIds: Array<Scalars['Long']>;
6926
6966
  };
6927
6967
  export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
6928
6968
  __typename?: 'JiraPermissionSchemeRemoveGrantPayload';
@@ -6932,9 +6972,14 @@ export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
6932
6972
  export declare type JiraPermissionSchemeView = {
6933
6973
  __typename?: 'JiraPermissionSchemeView';
6934
6974
  scheme: JiraPermissionScheme;
6975
+ configuration: JiraPermissionSchemeConfiguration;
6935
6976
  grantGroups?: Maybe<Array<JiraPermissionSchemeGrantGroup>>;
6936
6977
  };
6937
6978
  export declare type JiraPermissionSchemeViewResult = JiraPermissionSchemeView | QueryError;
6979
+ export declare enum JiraPermissionTagEnum {
6980
+ Deprecated = "DEPRECATED",
6981
+ New = "NEW"
6982
+ }
6938
6983
  export declare type JiraPlatformAttachment = JiraAttachment & Node & {
6939
6984
  __typename?: 'JiraPlatformAttachment';
6940
6985
  id: Scalars['ID'];
@@ -7229,6 +7274,7 @@ export declare type JiraQuery = {
7229
7274
  getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
7230
7275
  permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
7231
7276
  getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
7277
+ getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
7232
7278
  version?: Maybe<JiraVersionResult>;
7233
7279
  versionDetailPage?: Maybe<JiraVersionDetailPage>;
7234
7280
  };
@@ -7304,6 +7350,11 @@ export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
7304
7350
  before?: Maybe<Scalars['String']>;
7305
7351
  schemeId: Scalars['ID'];
7306
7352
  permissionKey: Scalars['String'];
7353
+ grantTypeKey?: Maybe<JiraGrantTypeKeyEnum>;
7354
+ };
7355
+ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
7356
+ schemeId: Scalars['ID'];
7357
+ permissionKey: Scalars['String'];
7307
7358
  };
7308
7359
  export declare type JiraQueryVersionArgs = {
7309
7360
  id: Scalars['ID'];
@@ -7979,7 +8030,8 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
7979
8030
  };
7980
8031
  export declare type JiraServiceManagementTeamResponder = {
7981
8032
  __typename?: 'JiraServiceManagementTeamResponder';
7982
- team?: Maybe<OpsgenieTeam>;
8033
+ teamId?: Maybe<Scalars['String']>;
8034
+ teamName?: Maybe<Scalars['String']>;
7983
8035
  };
7984
8036
  export declare type JiraServiceManagementUserApproverPrincipal = {
7985
8037
  __typename?: 'JiraServiceManagementUserApproverPrincipal';
@@ -8886,6 +8938,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
8886
8938
  export declare type Mutation = {
8887
8939
  __typename?: 'Mutation';
8888
8940
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
8941
+ shepherd?: Maybe<ShepherdMutation>;
8889
8942
  createApp?: Maybe<CreateAppResponse>;
8890
8943
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
8891
8944
  deleteApp?: Maybe<DeleteAppResponse>;
@@ -8915,7 +8968,7 @@ export declare type Mutation = {
8915
8968
  unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
8916
8969
  createCardParent?: Maybe<CardParentCreateOutput>;
8917
8970
  rankCardParent?: Maybe<GenericMutationResponse>;
8918
- setCardCoverImageVisibility?: Maybe<CardCoverImageVisibilityToggleOutput>;
8971
+ setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
8919
8972
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
8920
8973
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
8921
8974
  deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -9090,8 +9143,8 @@ export declare type MutationCreateCardParentArgs = {
9090
9143
  export declare type MutationRankCardParentArgs = {
9091
9144
  input: CardParentRankInput;
9092
9145
  };
9093
- export declare type MutationSetCardCoverImageVisibilityArgs = {
9094
- input?: Maybe<CardCoverImageVisibilityToggleInput>;
9146
+ export declare type MutationSetIssueMediaVisibilityArgs = {
9147
+ input?: Maybe<SetIssueMediaVisibilityInput>;
9095
9148
  };
9096
9149
  export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
9097
9150
  input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
@@ -10136,6 +10189,15 @@ export declare type PolarisIssueLinkType = {
10136
10189
  merge: Scalars['Int'];
10137
10190
  datapoint: Scalars['Int'];
10138
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
+ };
10139
10201
  export declare type PolarisPlay = {
10140
10202
  __typename?: 'PolarisPlay';
10141
10203
  id: Scalars['ID'];
@@ -10318,6 +10380,17 @@ export declare type PolarisTermsConsent = {
10318
10380
  requiresMarketingConsent: Scalars['Boolean'];
10319
10381
  locale: Scalars['String'];
10320
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
+ }
10321
10394
  export declare type PolarisValueDecoration = {
10322
10395
  __typename?: 'PolarisValueDecoration';
10323
10396
  emoji?: Maybe<Scalars['String']>;
@@ -10349,6 +10422,7 @@ export declare type PolarisView = {
10349
10422
  __typename?: 'PolarisView';
10350
10423
  id: Scalars['ID'];
10351
10424
  name: Scalars['String'];
10425
+ emoji?: Maybe<Scalars['String']>;
10352
10426
  description?: Maybe<Scalars['JSON']>;
10353
10427
  projectId: Scalars['Int'];
10354
10428
  viewSetId: Scalars['ID'];
@@ -10359,12 +10433,12 @@ export declare type PolarisView = {
10359
10433
  visualizationType: PolarisVisualizationType;
10360
10434
  groupBy?: Maybe<PolarisIdeaField>;
10361
10435
  verticalGroupBy?: Maybe<PolarisIdeaField>;
10362
- x?: Maybe<PolarisIdeaField>;
10363
- y?: Maybe<PolarisIdeaField>;
10364
10436
  groupValues?: Maybe<Array<PolarisGroupValue>>;
10365
10437
  verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
10366
10438
  sort?: Maybe<Array<PolarisSortField>>;
10367
10439
  hidden?: Maybe<Array<PolarisIdeaField>>;
10440
+ timelineConfig?: Maybe<PolarisTimelineConfig>;
10441
+ matrixConfig?: Maybe<PolarisMatrixConfig>;
10368
10442
  userJql?: Maybe<Scalars['String']>;
10369
10443
  filter?: Maybe<Array<PolarisViewFilter>>;
10370
10444
  rank: Scalars['Int'];
@@ -10451,7 +10525,9 @@ export declare type PolarisViewTableColumnSizeInput = {
10451
10525
  export declare enum PolarisVisualizationType {
10452
10526
  Table = "TABLE",
10453
10527
  Board = "BOARD",
10454
- Twoxtwo = "TWOXTWO"
10528
+ Twoxtwo = "TWOXTWO",
10529
+ Matrix = "MATRIX",
10530
+ Timeline = "TIMELINE"
10455
10531
  }
10456
10532
  export declare type ProjectAvatars = {
10457
10533
  __typename?: 'ProjectAvatars';
@@ -10465,6 +10541,7 @@ export declare type Query = {
10465
10541
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
10466
10542
  echo?: Maybe<Scalars['String']>;
10467
10543
  diagnostics?: Maybe<Scalars['JSON']>;
10544
+ node?: Maybe<Node>;
10468
10545
  confluence?: Maybe<ConfluenceQueryApi>;
10469
10546
  activities?: Maybe<Activities>;
10470
10547
  devOpsMetrics?: Maybe<DevOpsMetrics>;
@@ -10472,6 +10549,7 @@ export declare type Query = {
10472
10549
  repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
10473
10550
  jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
10474
10551
  bitbucket?: Maybe<BitbucketQuery>;
10552
+ shepherd?: Maybe<ShepherdQuery>;
10475
10553
  opsgenie?: Maybe<OpsgenieQuery>;
10476
10554
  apps?: Maybe<AppConnection>;
10477
10555
  app?: Maybe<App>;
@@ -10506,7 +10584,6 @@ export declare type Query = {
10506
10584
  jira?: Maybe<JiraQuery>;
10507
10585
  appLogs?: Maybe<AppLogConnection>;
10508
10586
  appLogLines?: Maybe<AppLogLineConnection>;
10509
- node?: Maybe<Node>;
10510
10587
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
10511
10588
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
10512
10589
  roadmaps?: Maybe<RoadmapsQuery>;
@@ -10551,6 +10628,9 @@ export declare type Query = {
10551
10628
  extensionContexts?: Maybe<Array<ExtensionContext>>;
10552
10629
  extensionByKey?: Maybe<Extension>;
10553
10630
  };
10631
+ export declare type QueryNodeArgs = {
10632
+ id: Scalars['ID'];
10633
+ };
10554
10634
  export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
10555
10635
  id: Scalars['ID'];
10556
10636
  cloudId: Scalars['ID'];
@@ -10691,9 +10771,6 @@ export declare type QueryAppLogLinesArgs = {
10691
10771
  after?: Maybe<Scalars['String']>;
10692
10772
  invocation: Scalars['ID'];
10693
10773
  };
10694
- export declare type QueryNodeArgs = {
10695
- id: Scalars['ID'];
10696
- };
10697
10774
  export declare type QueryDeveloperLogAccessArgs = {
10698
10775
  contextIds: Array<Scalars['ID']>;
10699
10776
  appId: Scalars['ID'];
@@ -11376,6 +11453,18 @@ export declare type SetExternalAuthCredentialsPayload = Payload & {
11376
11453
  success: Scalars['Boolean'];
11377
11454
  errors?: Maybe<Array<MutationError>>;
11378
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
+ };
11379
11468
  export declare type SetPolarisProjectOnboardedInput = {
11380
11469
  projectId: Scalars['ID'];
11381
11470
  value: Scalars['Boolean'];
@@ -11416,6 +11505,81 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
11416
11505
  success: Scalars['Boolean'];
11417
11506
  message: Scalars['String'];
11418
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
+ };
11419
11583
  export declare type SoftwareBoard = {
11420
11584
  __typename?: 'SoftwareBoard';
11421
11585
  id?: Maybe<Scalars['ID']>;
@@ -11665,6 +11829,7 @@ export declare type SupportRequestCatalogMutationApi = {
11665
11829
  __typename?: 'SupportRequestCatalogMutationApi';
11666
11830
  addComment?: Maybe<SupportRequestComment>;
11667
11831
  statusTransition?: Maybe<Scalars['Boolean']>;
11832
+ createNamedContactOperationRequest?: Maybe<SupportRequest>;
11668
11833
  };
11669
11834
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
11670
11835
  input?: Maybe<SupportRequestAddCommentInput>;
@@ -11672,6 +11837,12 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
11672
11837
  export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
11673
11838
  input?: Maybe<SupportRequestTransitionInput>;
11674
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
+ };
11675
11846
  export declare type SupportRequestCatalogQueryApi = {
11676
11847
  __typename?: 'SupportRequestCatalogQueryApi';
11677
11848
  me?: Maybe<SupportRequestPage>;
@@ -11749,6 +11920,10 @@ export declare type SupportRequestLastComment = {
11749
11920
  offset: Scalars['Int'];
11750
11921
  values: Array<SupportRequestComment>;
11751
11922
  };
11923
+ export declare enum SupportRequestNamedContactOperation {
11924
+ Add = "ADD",
11925
+ Remove = "REMOVE"
11926
+ }
11752
11927
  export declare type SupportRequestNamedContactRelation = {
11753
11928
  __typename?: 'SupportRequestNamedContactRelation';
11754
11929
  orgId?: Maybe<Scalars['String']>;
@@ -12129,6 +12304,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
12129
12304
  export declare type UpdateCompassHasMetricValueCriteriaInput = {
12130
12305
  id: Scalars['ID'];
12131
12306
  weight?: Maybe<Scalars['Int']>;
12307
+ metricDefinitionId?: Maybe<Scalars['ID']>;
12132
12308
  metricDefinitionName?: Maybe<Scalars['String']>;
12133
12309
  comparatorValue?: Maybe<Scalars['Float']>;
12134
12310
  comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
@@ -12374,6 +12550,13 @@ export declare type UpdatePolarisInsightPayload = Payload & {
12374
12550
  errors?: Maybe<Array<MutationError>>;
12375
12551
  node?: Maybe<PolarisInsight>;
12376
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
+ };
12377
12560
  export declare type UpdatePolarisPlayContribution = {
12378
12561
  amount?: Maybe<Scalars['Int']>;
12379
12562
  comment?: Maybe<Scalars['ID']>;
@@ -12405,9 +12588,15 @@ export declare type UpdatePolarisTermsConsentPayload = Payload & {
12405
12588
  success: Scalars['Boolean'];
12406
12589
  errors?: Maybe<Array<MutationError>>;
12407
12590
  };
12591
+ export declare type UpdatePolarisTimelineConfig = {
12592
+ startDateField?: Maybe<Scalars['ID']>;
12593
+ dueDateField?: Maybe<Scalars['ID']>;
12594
+ mode?: Maybe<PolarisTimelineMode>;
12595
+ };
12408
12596
  export declare type UpdatePolarisViewInput = {
12409
12597
  view?: Maybe<Scalars['ID']>;
12410
12598
  name?: Maybe<Scalars['String']>;
12599
+ emoji?: Maybe<Scalars['String']>;
12411
12600
  description?: Maybe<Scalars['JSON']>;
12412
12601
  jql?: Maybe<Scalars['String']>;
12413
12602
  userJql?: Maybe<Scalars['String']>;
@@ -12417,13 +12606,13 @@ export declare type UpdatePolarisViewInput = {
12417
12606
  groupValues?: Maybe<Array<PolarisGroupValueInput>>;
12418
12607
  verticalGroupBy?: Maybe<Scalars['ID']>;
12419
12608
  verticalGroupValues?: Maybe<Array<PolarisGroupValueInput>>;
12420
- x?: Maybe<Scalars['ID']>;
12421
- y?: Maybe<Scalars['ID']>;
12422
12609
  sort?: Maybe<Array<PolarisSortFieldInput>>;
12423
12610
  filter?: Maybe<Array<PolarisViewFilterInput>>;
12424
12611
  hidden?: Maybe<Array<Scalars['ID']>>;
12425
12612
  lastViewedTimestamp?: Maybe<Scalars['String']>;
12426
12613
  lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
12614
+ timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
12615
+ matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
12427
12616
  };
12428
12617
  export declare type UpdatePolarisViewPayload = Payload & {
12429
12618
  __typename?: 'UpdatePolarisViewPayload';