@forge/cli-shared 3.5.1-next.4 → 3.5.1-next.6

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.5.1-next.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [e975f19]
8
+ - @forge/manifest@4.6.0-next.4
9
+
10
+ ## 3.5.1-next.5
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [30a32d0]
15
+ - @forge/manifest@4.6.0-next.3
16
+
3
17
  ## 3.5.1-next.4
4
18
 
5
19
  ### Patch Changes
@@ -335,7 +335,8 @@ export declare enum ApiGroup {
335
335
  CollaborationGraph = "COLLABORATION_GRAPH",
336
336
  DevopsThirdParty = "DEVOPS_THIRD_PARTY",
337
337
  CloudAdmin = "CLOUD_ADMIN",
338
- CustomerService = "CUSTOMER_SERVICE"
338
+ CustomerService = "CUSTOMER_SERVICE",
339
+ SurfacePlatform = "SURFACE_PLATFORM"
339
340
  }
340
341
  export declare type App = {
341
342
  __typename?: 'App';
@@ -3048,6 +3049,7 @@ export declare type CompassMetricSource = {
3048
3049
  metricDefinition?: Maybe<CompassMetricDefinition>;
3049
3050
  externalMetricSourceId?: Maybe<Scalars['ID']>;
3050
3051
  url?: Maybe<Scalars['String']>;
3052
+ title?: Maybe<Scalars['String']>;
3051
3053
  forgeAppId?: Maybe<Scalars['ID']>;
3052
3054
  values?: Maybe<CompassMetricSourceValuesQueryResult>;
3053
3055
  component?: Maybe<CompassComponent>;
@@ -7887,6 +7889,9 @@ export declare type InstallationSummaryApp = {
7887
7889
  name?: Maybe<Scalars['String']>;
7888
7890
  description?: Maybe<Scalars['String']>;
7889
7891
  environment: InstallationSummaryAppEnvironment;
7892
+ definitionId?: Maybe<Scalars['ID']>;
7893
+ installationId?: Maybe<Scalars['ID']>;
7894
+ isSystemApp?: Maybe<Scalars['Boolean']>;
7890
7895
  };
7891
7896
  export declare type InstallationSummaryAppEnvironment = {
7892
7897
  __typename?: 'InstallationSummaryAppEnvironment';
@@ -8558,6 +8563,74 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
8558
8563
  last?: Maybe<Scalars['Int']>;
8559
8564
  before?: Maybe<Scalars['String']>;
8560
8565
  };
8566
+ export declare type JiraCannedResponse = Node & {
8567
+ __typename?: 'JiraCannedResponse';
8568
+ id: Scalars['ID'];
8569
+ projectAri: Scalars['ID'];
8570
+ title: Scalars['String'];
8571
+ content: Scalars['String'];
8572
+ scope: JiraCannedResponseScope;
8573
+ lastUpdatedAt?: Maybe<Scalars['Long']>;
8574
+ createdBy?: Maybe<Scalars['ID']>;
8575
+ usageCount?: Maybe<Scalars['Int']>;
8576
+ };
8577
+ export declare type JiraCannedResponseCreateInput = {
8578
+ projectAri: Scalars['ID'];
8579
+ title: Scalars['String'];
8580
+ content: Scalars['String'];
8581
+ scope: JiraCannedResponseScope;
8582
+ };
8583
+ export declare type JiraCannedResponseCreatePayload = Payload & {
8584
+ __typename?: 'JiraCannedResponseCreatePayload';
8585
+ success: Scalars['Boolean'];
8586
+ errors?: Maybe<Array<MutationError>>;
8587
+ jiraCannedResponse?: Maybe<JiraCannedResponse>;
8588
+ };
8589
+ export declare type JiraCannedResponseDeletePayload = Payload & {
8590
+ __typename?: 'JiraCannedResponseDeletePayload';
8591
+ id: Scalars['ID'];
8592
+ success: Scalars['Boolean'];
8593
+ errors?: Maybe<Array<MutationError>>;
8594
+ };
8595
+ export declare type JiraCannedResponseMutationApi = {
8596
+ __typename?: 'JiraCannedResponseMutationApi';
8597
+ createCannedResponse?: Maybe<JiraCannedResponseCreatePayload>;
8598
+ updateCannedResponse?: Maybe<JiraCannedResponseUpdatePayload>;
8599
+ deleteCannedResponse?: Maybe<JiraCannedResponseDeletePayload>;
8600
+ };
8601
+ export declare type JiraCannedResponseMutationApiCreateCannedResponseArgs = {
8602
+ input: JiraCannedResponseCreateInput;
8603
+ };
8604
+ export declare type JiraCannedResponseMutationApiUpdateCannedResponseArgs = {
8605
+ input: JiraCannedResponseUpdateInput;
8606
+ };
8607
+ export declare type JiraCannedResponseMutationApiDeleteCannedResponseArgs = {
8608
+ id: Scalars['ID'];
8609
+ };
8610
+ export declare type JiraCannedResponseQueryApi = {
8611
+ __typename?: 'JiraCannedResponseQueryApi';
8612
+ cannedResponseById?: Maybe<JiraCannedResponseQueryResult>;
8613
+ };
8614
+ export declare type JiraCannedResponseQueryApiCannedResponseByIdArgs = {
8615
+ id: Scalars['ID'];
8616
+ };
8617
+ export declare type JiraCannedResponseQueryResult = JiraCannedResponse | QueryError;
8618
+ export declare enum JiraCannedResponseScope {
8619
+ Project = "PROJECT",
8620
+ Personal = "PERSONAL"
8621
+ }
8622
+ export declare type JiraCannedResponseUpdateInput = {
8623
+ id: Scalars['ID'];
8624
+ title: Scalars['String'];
8625
+ content: Scalars['String'];
8626
+ scope: JiraCannedResponseScope;
8627
+ };
8628
+ export declare type JiraCannedResponseUpdatePayload = Payload & {
8629
+ __typename?: 'JiraCannedResponseUpdatePayload';
8630
+ success: Scalars['Boolean'];
8631
+ errors?: Maybe<Array<MutationError>>;
8632
+ jiraCannedResponse?: Maybe<JiraCannedResponse>;
8633
+ };
8561
8634
  export declare type JiraCascadingOption = {
8562
8635
  __typename?: 'JiraCascadingOption';
8563
8636
  parentOptionValue?: Maybe<JiraOption>;
@@ -8875,6 +8948,16 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
8875
8948
  fieldConfig?: Maybe<JiraFieldConfig>;
8876
8949
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
8877
8950
  };
8951
+ export declare type JiraColorFieldOperationInput = {
8952
+ operation: JiraSingleValueFieldOperations;
8953
+ color: Scalars['String'];
8954
+ };
8955
+ export declare type JiraColorFieldPayload = Payload & {
8956
+ __typename?: 'JiraColorFieldPayload';
8957
+ success: Scalars['Boolean'];
8958
+ errors?: Maybe<Array<MutationError>>;
8959
+ field?: Maybe<JiraColorField>;
8960
+ };
8878
8961
  export declare type JiraComment = {
8879
8962
  commentId: Scalars['ID'];
8880
8963
  issue?: Maybe<JiraIssue>;
@@ -9356,6 +9439,11 @@ export declare type JiraFavouriteFilter = {
9356
9439
  export declare enum JiraFavouriteType {
9357
9440
  Project = "PROJECT"
9358
9441
  }
9442
+ export declare type JiraFavouriteValue = Node & {
9443
+ __typename?: 'JiraFavouriteValue';
9444
+ id: Scalars['ID'];
9445
+ isFavourite?: Maybe<Scalars['Boolean']>;
9446
+ };
9359
9447
  export declare type JiraFieldConfig = {
9360
9448
  __typename?: 'JiraFieldConfig';
9361
9449
  isRequired?: Maybe<Scalars['Boolean']>;
@@ -11183,6 +11271,7 @@ export declare type JiraMutation = {
11183
11271
  linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
11184
11272
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
11185
11273
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
11274
+ setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
11186
11275
  grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
11187
11276
  deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
11188
11277
  updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
@@ -11192,6 +11281,11 @@ export declare type JiraMutation = {
11192
11281
  updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
11193
11282
  updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
11194
11283
  updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
11284
+ updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
11285
+ updateVotesField?: Maybe<JiraVotesFieldPayload>;
11286
+ updateColorField?: Maybe<JiraColorFieldPayload>;
11287
+ updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
11288
+ updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
11195
11289
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
11196
11290
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
11197
11291
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
@@ -11235,6 +11329,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
11235
11329
  cloudId: Scalars['ID'];
11236
11330
  input: Array<JiraSetApplicationPropertyInput>;
11237
11331
  };
11332
+ export declare type JiraMutationSetEntityIsFavouriteArgs = {
11333
+ input: JiraSetIsFavouriteInput;
11334
+ };
11238
11335
  export declare type JiraMutationGrantGlobalPermissionArgs = {
11239
11336
  input: JiraGlobalPermissionAddGroupGrantInput;
11240
11337
  };
@@ -11262,6 +11359,21 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
11262
11359
  export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
11263
11360
  input: JiraUpdateSingleLineTextFieldInput;
11264
11361
  };
11362
+ export declare type JiraMutationUpdatePriorityFieldArgs = {
11363
+ input?: Maybe<JiraUpdatePriorityFieldInput>;
11364
+ };
11365
+ export declare type JiraMutationUpdateVotesFieldArgs = {
11366
+ input?: Maybe<JiraUpdateVotesFieldInput>;
11367
+ };
11368
+ export declare type JiraMutationUpdateColorFieldArgs = {
11369
+ input: JiraUpdateColorFieldInput;
11370
+ };
11371
+ export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
11372
+ input?: Maybe<JiraUpdateSingleSelectUserPickerFieldInput>;
11373
+ };
11374
+ export declare type JiraMutationUpdateWatchesFieldArgs = {
11375
+ input?: Maybe<JiraUpdateWatchesFieldInput>;
11376
+ };
11265
11377
  export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
11266
11378
  input: JiraPermissionSchemeAddGrantInput;
11267
11379
  };
@@ -11802,6 +11914,16 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
11802
11914
  before?: Maybe<Scalars['String']>;
11803
11915
  suggested?: Maybe<Scalars['Boolean']>;
11804
11916
  };
11917
+ export declare type JiraPriorityFieldOperationInput = {
11918
+ operation: JiraSingleValueFieldOperations;
11919
+ priority: Scalars['String'];
11920
+ };
11921
+ export declare type JiraPriorityFieldPayload = Payload & {
11922
+ __typename?: 'JiraPriorityFieldPayload';
11923
+ success: Scalars['Boolean'];
11924
+ errors?: Maybe<Array<MutationError>>;
11925
+ field?: Maybe<JiraPriorityField>;
11926
+ };
11805
11927
  export declare type JiraProformaForms = {
11806
11928
  __typename?: 'JiraProformaForms';
11807
11929
  hasProjectForms?: Maybe<Scalars['Boolean']>;
@@ -12271,6 +12393,7 @@ export declare type JiraQuery = {
12271
12393
  jiraProjectByKey?: Maybe<JiraProject>;
12272
12394
  version?: Maybe<JiraVersionResult>;
12273
12395
  versionsForProject?: Maybe<JiraVersionConnection>;
12396
+ versionsForProjects?: Maybe<JiraVersionConnection>;
12274
12397
  versionDetailPage?: Maybe<JiraVersionDetailPage>;
12275
12398
  isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
12276
12399
  labelsFieldOptions?: Maybe<JiraLabelConnection>;
@@ -12472,6 +12595,15 @@ export declare type JiraQueryVersionsForProjectArgs = {
12472
12595
  releaseDateBefore?: Maybe<Scalars['Date']>;
12473
12596
  searchString?: Maybe<Scalars['String']>;
12474
12597
  };
12598
+ export declare type JiraQueryVersionsForProjectsArgs = {
12599
+ jiraProjectIds: Array<Scalars['ID']>;
12600
+ first?: Maybe<Scalars['Int']>;
12601
+ after?: Maybe<Scalars['String']>;
12602
+ last?: Maybe<Scalars['Int']>;
12603
+ before?: Maybe<Scalars['String']>;
12604
+ filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
12605
+ searchString?: Maybe<Scalars['String']>;
12606
+ };
12475
12607
  export declare type JiraQueryVersionDetailPageArgs = {
12476
12608
  versionId: Scalars['ID'];
12477
12609
  };
@@ -13410,6 +13542,17 @@ export declare type JiraSetApplicationPropertyInput = {
13410
13542
  key: Scalars['String'];
13411
13543
  value: Scalars['String'];
13412
13544
  };
13545
+ export declare type JiraSetIsFavouriteInput = {
13546
+ entityId: Scalars['ID'];
13547
+ beforeEntityId?: Maybe<Scalars['ID']>;
13548
+ isFavourite: Scalars['Boolean'];
13549
+ };
13550
+ export declare type JiraSetIsFavouritePayload = Payload & {
13551
+ __typename?: 'JiraSetIsFavouritePayload';
13552
+ success: Scalars['Boolean'];
13553
+ errors?: Maybe<Array<MutationError>>;
13554
+ favouriteValue?: Maybe<JiraFavouriteValue>;
13555
+ };
13413
13556
  export declare type JiraShareableEntityAnonymousAccessGrant = {
13414
13557
  __typename?: 'JiraShareableEntityAnonymousAccessGrant';
13415
13558
  type?: Maybe<JiraShareableEntityGrant>;
@@ -13613,6 +13756,17 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
13613
13756
  last?: Maybe<Scalars['Int']>;
13614
13757
  before?: Maybe<Scalars['String']>;
13615
13758
  suggested?: Maybe<Scalars['Boolean']>;
13759
+ sessionId?: Maybe<Scalars['ID']>;
13760
+ };
13761
+ export declare type JiraSingleSelectUserPickerFieldOperationInput = {
13762
+ operation: JiraSingleValueFieldOperations;
13763
+ accountId?: Maybe<Scalars['ID']>;
13764
+ };
13765
+ export declare type JiraSingleSelectUserPickerFieldPayload = Payload & {
13766
+ __typename?: 'JiraSingleSelectUserPickerFieldPayload';
13767
+ success: Scalars['Boolean'];
13768
+ errors?: Maybe<Array<MutationError>>;
13769
+ field?: Maybe<JiraSingleSelectUserPickerField>;
13616
13770
  };
13617
13771
  export declare enum JiraSingleValueFieldOperations {
13618
13772
  Set = "SET"
@@ -13894,6 +14048,10 @@ export declare enum JiraTimeUnit {
13894
14048
  Day = "DAY",
13895
14049
  Week = "WEEK"
13896
14050
  }
14051
+ export declare type JiraUpdateColorFieldInput = {
14052
+ id: Scalars['ID'];
14053
+ operation: JiraColorFieldOperationInput;
14054
+ };
13897
14055
  export declare type JiraUpdateCustomFilterDetailsInput = {
13898
14056
  id: Scalars['ID'];
13899
14057
  name: Scalars['String'];
@@ -13933,6 +14091,10 @@ export declare type JiraUpdateNumberFieldInput = {
13933
14091
  id: Scalars['ID'];
13934
14092
  operation: JiraNumberFieldOperationInput;
13935
14093
  };
14094
+ export declare type JiraUpdatePriorityFieldInput = {
14095
+ id: Scalars['ID'];
14096
+ operation: JiraPriorityFieldOperationInput;
14097
+ };
13936
14098
  export declare type JiraUpdateReleaseNotesConfigurationInput = {
13937
14099
  id: Scalars['ID'];
13938
14100
  issueFieldIds: Array<Scalars['ID']>;
@@ -13959,6 +14121,10 @@ export declare type JiraUpdateSingleSelectFieldInput = {
13959
14121
  id: Scalars['ID'];
13960
14122
  operation: JiraSingleSelectOperationInput;
13961
14123
  };
14124
+ export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
14125
+ id: Scalars['ID'];
14126
+ operation: JiraSingleSelectUserPickerFieldOperationInput;
14127
+ };
13962
14128
  export declare type JiraUpdateStoryPointEstimateFieldInput = {
13963
14129
  id: Scalars['ID'];
13964
14130
  operation: JiraStoryPointEstimateFieldOperationInput;
@@ -14007,6 +14173,14 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
14007
14173
  success: Scalars['Boolean'];
14008
14174
  errors?: Maybe<Array<MutationError>>;
14009
14175
  };
14176
+ export declare type JiraUpdateVotesFieldInput = {
14177
+ id: Scalars['ID'];
14178
+ operation: JiraVotesFieldOperationInput;
14179
+ };
14180
+ export declare type JiraUpdateWatchesFieldInput = {
14181
+ id: Scalars['ID'];
14182
+ operation: JiraWatchesFieldOperationInput;
14183
+ };
14010
14184
  export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
14011
14185
  __typename?: 'JiraUrlField';
14012
14186
  id: Scalars['ID'];
@@ -14071,6 +14245,7 @@ export declare type JiraVersion = Node & {
14071
14245
  issues?: Maybe<JiraIssueConnection>;
14072
14246
  project?: Maybe<JiraProject>;
14073
14247
  canEdit?: Maybe<Scalars['Boolean']>;
14248
+ canEditRelatedWork?: Maybe<Scalars['Boolean']>;
14074
14249
  canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
14075
14250
  canViewDevTools?: Maybe<Scalars['Boolean']>;
14076
14251
  releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
@@ -14337,9 +14512,29 @@ export declare type JiraVotesField = Node & JiraIssueField & JiraIssueFieldConfi
14337
14512
  name: Scalars['String'];
14338
14513
  description?: Maybe<Scalars['String']>;
14339
14514
  vote?: Maybe<JiraVote>;
14515
+ selectedUsersConnection?: Maybe<JiraUserConnection>;
14340
14516
  fieldConfig?: Maybe<JiraFieldConfig>;
14341
14517
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
14342
14518
  };
14519
+ export declare type JiraVotesFieldSelectedUsersConnectionArgs = {
14520
+ first?: Maybe<Scalars['Int']>;
14521
+ after?: Maybe<Scalars['String']>;
14522
+ last?: Maybe<Scalars['Int']>;
14523
+ before?: Maybe<Scalars['String']>;
14524
+ };
14525
+ export declare type JiraVotesFieldOperationInput = {
14526
+ operation: JiraVotesOperations;
14527
+ };
14528
+ export declare type JiraVotesFieldPayload = Payload & {
14529
+ __typename?: 'JiraVotesFieldPayload';
14530
+ success: Scalars['Boolean'];
14531
+ errors?: Maybe<Array<MutationError>>;
14532
+ field?: Maybe<JiraVotesField>;
14533
+ };
14534
+ export declare enum JiraVotesOperations {
14535
+ Add = "ADD",
14536
+ Remove = "REMOVE"
14537
+ }
14343
14538
  export declare type JiraWatch = {
14344
14539
  __typename?: 'JiraWatch';
14345
14540
  isWatching?: Maybe<Scalars['Boolean']>;
@@ -14354,9 +14549,38 @@ export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldCon
14354
14549
  name: Scalars['String'];
14355
14550
  description?: Maybe<Scalars['String']>;
14356
14551
  watch?: Maybe<JiraWatch>;
14552
+ selectedUsersConnection?: Maybe<JiraUserConnection>;
14553
+ suggestedWatchers?: Maybe<JiraUserConnection>;
14357
14554
  fieldConfig?: Maybe<JiraFieldConfig>;
14358
14555
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
14359
14556
  };
14557
+ export declare type JiraWatchesFieldSelectedUsersConnectionArgs = {
14558
+ first?: Maybe<Scalars['Int']>;
14559
+ after?: Maybe<Scalars['String']>;
14560
+ last?: Maybe<Scalars['Int']>;
14561
+ before?: Maybe<Scalars['String']>;
14562
+ };
14563
+ export declare type JiraWatchesFieldSuggestedWatchersArgs = {
14564
+ searchBy?: Maybe<Scalars['String']>;
14565
+ first?: Maybe<Scalars['Int']>;
14566
+ after?: Maybe<Scalars['String']>;
14567
+ last?: Maybe<Scalars['Int']>;
14568
+ before?: Maybe<Scalars['String']>;
14569
+ };
14570
+ export declare type JiraWatchesFieldOperationInput = {
14571
+ operation: JiraWatchesOperations;
14572
+ accountId?: Maybe<Scalars['ID']>;
14573
+ };
14574
+ export declare type JiraWatchesFieldPayload = Payload & {
14575
+ __typename?: 'JiraWatchesFieldPayload';
14576
+ success: Scalars['Boolean'];
14577
+ errors?: Maybe<Array<MutationError>>;
14578
+ field?: Maybe<JiraWatchesField>;
14579
+ };
14580
+ export declare enum JiraWatchesOperations {
14581
+ Add = "ADD",
14582
+ Remove = "REMOVE"
14583
+ }
14360
14584
  export declare type JiraWorkCategory = {
14361
14585
  __typename?: 'JiraWorkCategory';
14362
14586
  value?: Maybe<Scalars['String']>;
@@ -15578,6 +15802,7 @@ export declare type Mutation = {
15578
15802
  createReleaseNote: ContentPlatformReleaseNote;
15579
15803
  publishReleaseNote: ContentPlatformReleaseNote;
15580
15804
  updateReleaseNote: ContentPlatformReleaseNote;
15805
+ jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
15581
15806
  devOps?: Maybe<DevOpsMutation>;
15582
15807
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
15583
15808
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -17825,6 +18050,7 @@ export declare type PolarisView = {
17825
18050
  hideEmptyGroups?: Maybe<Scalars['Boolean']>;
17826
18051
  enabledAutoSave?: Maybe<Scalars['Boolean']>;
17827
18052
  layoutType?: Maybe<PolarisViewLayoutType>;
18053
+ hideEmptyColumns?: Maybe<Scalars['Boolean']>;
17828
18054
  };
17829
18055
  export declare type PolarisViewJqlArgs = {
17830
18056
  filter?: Maybe<PolarisFilterInput>;
@@ -17960,6 +18186,7 @@ export declare type Query = {
17960
18186
  releaseNotes: ContentPlatformReleaseNotesConnection;
17961
18187
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
17962
18188
  smarts?: Maybe<SmartsQueryApi>;
18189
+ jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
17963
18190
  townsquare?: Maybe<TownsquareQueryApi>;
17964
18191
  devOps?: Maybe<DevOps>;
17965
18192
  jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -18453,6 +18680,7 @@ export declare enum RateLimitingCurrency {
18453
18680
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
18454
18681
  TeamsCurrency = "TEAMS_CURRENCY",
18455
18682
  TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
18683
+ TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
18456
18684
  CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
18457
18685
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
18458
18686
  DirectoryCurrency = "DIRECTORY_CURRENCY",
@@ -20654,6 +20882,10 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
20654
20882
  projectType?: JiraProjectType;
20655
20883
  filter?: JiraProjectFilterInput;
20656
20884
  };
20885
+ export declare enum SubscriptionEventSources {
20886
+ Streamhub = "STREAMHUB",
20887
+ Producer = "PRODUCER"
20888
+ }
20657
20889
  export declare type SupportRequest = {
20658
20890
  __typename?: 'SupportRequest';
20659
20891
  id: Scalars['ID'];
@@ -21089,13 +21321,58 @@ export declare type TeamMemberEdge = {
21089
21321
  node?: Maybe<TeamMember>;
21090
21322
  cursor: Scalars['String'];
21091
21323
  };
21324
+ export declare type TeamMembershipFilter = {
21325
+ memberIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
21326
+ };
21092
21327
  export declare type TeamQuery = {
21093
21328
  __typename?: 'TeamQuery';
21094
21329
  team?: Maybe<Team>;
21330
+ teamSearch?: Maybe<TeamSearchResultConnection>;
21095
21331
  };
21096
21332
  export declare type TeamQueryTeamArgs = {
21097
21333
  id: Scalars['ID'];
21098
21334
  };
21335
+ export declare type TeamQueryTeamSearchArgs = {
21336
+ organizationId: Scalars['ID'];
21337
+ filter?: Maybe<TeamSearchFilter>;
21338
+ first?: Maybe<Scalars['Int']>;
21339
+ after?: Maybe<Scalars['String']>;
21340
+ sortBy?: Maybe<Array<Maybe<TeamSort>>>;
21341
+ };
21342
+ export declare type TeamSearchFilter = {
21343
+ query?: Maybe<Scalars['String']>;
21344
+ membership?: Maybe<TeamMembershipFilter>;
21345
+ };
21346
+ export declare type TeamSearchResult = {
21347
+ __typename?: 'TeamSearchResult';
21348
+ team?: Maybe<Team>;
21349
+ memberCount?: Maybe<Scalars['Int']>;
21350
+ includesYou?: Maybe<Scalars['Boolean']>;
21351
+ };
21352
+ export declare type TeamSearchResultConnection = {
21353
+ __typename?: 'TeamSearchResultConnection';
21354
+ edges?: Maybe<Array<Maybe<TeamSearchResultEdge>>>;
21355
+ nodes?: Maybe<Array<Maybe<TeamSearchResult>>>;
21356
+ pageInfo?: Maybe<PageInfo>;
21357
+ };
21358
+ export declare type TeamSearchResultEdge = {
21359
+ __typename?: 'TeamSearchResultEdge';
21360
+ node?: Maybe<TeamSearchResult>;
21361
+ cursor: Scalars['String'];
21362
+ };
21363
+ export declare type TeamSort = {
21364
+ field: TeamSortField;
21365
+ order?: Maybe<TeamSortOrder>;
21366
+ };
21367
+ export declare enum TeamSortField {
21368
+ Id = "ID",
21369
+ DisplayName = "DISPLAY_NAME",
21370
+ State = "STATE"
21371
+ }
21372
+ export declare enum TeamSortOrder {
21373
+ Asc = "ASC",
21374
+ Desc = "DESC"
21375
+ }
21099
21376
  export declare enum TeamState {
21100
21377
  Active = "ACTIVE",
21101
21378
  Disbanded = "DISBANDED",
@@ -22136,6 +22413,7 @@ export declare type UpdatePolarisViewInput = {
22136
22413
  matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
22137
22414
  sortMode?: Maybe<PolarisViewSortMode>;
22138
22415
  hideEmptyGroups?: Maybe<Scalars['Boolean']>;
22416
+ hideEmptyColumns?: Maybe<Scalars['Boolean']>;
22139
22417
  enabledAutoSave?: Maybe<Scalars['Boolean']>;
22140
22418
  layoutType?: Maybe<PolarisViewLayoutType>;
22141
22419
  };
@@ -22290,6 +22568,14 @@ export declare type VirtualAgentDeleteIntentRuleProjectionPayload = Payload & {
22290
22568
  success: Scalars['Boolean'];
22291
22569
  errors?: Maybe<Array<MutationError>>;
22292
22570
  };
22571
+ export declare type VirtualAgentFlowEditor = Node & {
22572
+ __typename?: 'VirtualAgentFlowEditor';
22573
+ id: Scalars['ID'];
22574
+ name?: Maybe<Scalars['String']>;
22575
+ group?: Maybe<Scalars['String']>;
22576
+ jsonRepresentation?: Maybe<Scalars['String']>;
22577
+ };
22578
+ export declare type VirtualAgentFlowEditorResult = VirtualAgentFlowEditor | VirtualAgentQueryError;
22293
22579
  export declare type VirtualAgentIntentProjection = Node & {
22294
22580
  __typename?: 'VirtualAgentIntentProjection';
22295
22581
  id: Scalars['ID'];