@forge/cli-shared 3.14.1-next.1 → 3.15.0-next.3

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.
@@ -730,6 +730,7 @@ export declare type AppLog = FunctionInvocationMetadata & Node & {
730
730
  trigger?: Maybe<FunctionTrigger>;
731
731
  moduleType?: Maybe<Scalars['String']>;
732
732
  startTime?: Maybe<Scalars['String']>;
733
+ traceId?: Maybe<Scalars['ID']>;
733
734
  appLogLines?: Maybe<AppLogLines>;
734
735
  };
735
736
  export declare type AppLogAppLogLinesArgs = {
@@ -814,11 +815,13 @@ export declare type AppPrincipal = {
814
815
  id?: Maybe<Scalars['ID']>;
815
816
  };
816
817
  export declare type AppRecContext = {
817
- containers?: Maybe<Scalars['JSON']>;
818
+ userId?: Maybe<Scalars['ID']>;
819
+ tenantId?: Maybe<Scalars['ID']>;
818
820
  product?: Maybe<Scalars['String']>;
819
821
  subproduct?: Maybe<Scalars['String']>;
820
- tenantId?: Maybe<Scalars['ID']>;
821
- userId?: Maybe<Scalars['ID']>;
822
+ containers?: Maybe<Scalars['JSON']>;
823
+ locale?: Maybe<Scalars['String']>;
824
+ sessionId?: Maybe<Scalars['ID']>;
822
825
  };
823
826
  export declare type AppRecDismissRecommendationInput = {
824
827
  productId: Scalars['ID'];
@@ -2019,7 +2022,7 @@ export declare type CcpSubscriptionSchedule = {
2019
2022
  subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
2020
2023
  offeringId?: Maybe<Scalars['ID']>;
2021
2024
  pricingPlanId?: Maybe<Scalars['ID']>;
2022
- chargeQuantities?: Maybe<Array<CcpChargeQuantity>>;
2025
+ chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
2023
2026
  promotionIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
2024
2027
  promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
2025
2028
  trial?: Maybe<CcpTrial>;
@@ -2194,6 +2197,23 @@ export declare type CompassAnnouncementAcknowledgement = {
2194
2197
  component?: Maybe<CompassComponent>;
2195
2198
  hasAcknowledged?: Maybe<Scalars['Boolean']>;
2196
2199
  };
2200
+ export declare type CompassApplicationManagedComponentsConnection = {
2201
+ __typename?: 'CompassApplicationManagedComponentsConnection';
2202
+ nodes?: Maybe<Array<CompassComponent>>;
2203
+ edges?: Maybe<Array<CompassApplicationManagedComponentsEdge>>;
2204
+ pageInfo: PageInfo;
2205
+ };
2206
+ export declare type CompassApplicationManagedComponentsEdge = {
2207
+ __typename?: 'CompassApplicationManagedComponentsEdge';
2208
+ cursor: Scalars['String'];
2209
+ node?: Maybe<CompassComponent>;
2210
+ };
2211
+ export declare type CompassApplicationManagedComponentsQuery = {
2212
+ cloudId: Scalars['ID'];
2213
+ first?: Maybe<Scalars['Int']>;
2214
+ after?: Maybe<Scalars['String']>;
2215
+ };
2216
+ export declare type CompassApplicationManagedComponentsResult = CompassApplicationManagedComponentsConnection | QueryError;
2197
2217
  export declare type CompassBuildEvent = CompassEvent & {
2198
2218
  __typename?: 'CompassBuildEvent';
2199
2219
  eventType: CompassEventType;
@@ -2493,6 +2513,7 @@ export declare type CompassCatalogQueryApi = {
2493
2513
  customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
2494
2514
  metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
2495
2515
  starredComponents?: Maybe<CompassStarredComponentsResult>;
2516
+ applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
2496
2517
  };
2497
2518
  export declare type CompassCatalogQueryApiComponentArgs = {
2498
2519
  id: Scalars['ID'];
@@ -2563,6 +2584,9 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
2563
2584
  export declare type CompassCatalogQueryApiStarredComponentsArgs = {
2564
2585
  cloudId: Scalars['ID'];
2565
2586
  };
2587
+ export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
2588
+ query: CompassApplicationManagedComponentsQuery;
2589
+ };
2566
2590
  export declare type CompassChangeMetadata = {
2567
2591
  __typename?: 'CompassChangeMetadata';
2568
2592
  createdAt?: Maybe<Scalars['DateTime']>;
@@ -3008,6 +3032,15 @@ export declare type CompassCustomFieldScorecardCriteria = {
3008
3032
  export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
3009
3033
  query?: Maybe<CompassScorecardCriteriaScoreQuery>;
3010
3034
  };
3035
+ export declare type CompassCustomMultiSelectFieldDefinition = CompassCustomFieldDefinition & Node & {
3036
+ __typename?: 'CompassCustomMultiSelectFieldDefinition';
3037
+ id: Scalars['ID'];
3038
+ name?: Maybe<Scalars['String']>;
3039
+ description?: Maybe<Scalars['String']>;
3040
+ componentTypes?: Maybe<Array<CompassComponentType>>;
3041
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
3042
+ options?: Maybe<Array<CompassCustomSelectFieldOption>>;
3043
+ };
3011
3044
  export declare type CompassCustomNumberField = CompassCustomField & {
3012
3045
  __typename?: 'CompassCustomNumberField';
3013
3046
  definition?: Maybe<CompassCustomNumberFieldDefinition>;
@@ -3025,6 +3058,20 @@ export declare type CompassCustomNumberFieldInput = {
3025
3058
  definitionId: Scalars['ID'];
3026
3059
  numberValue?: Maybe<Scalars['Float']>;
3027
3060
  };
3061
+ export declare type CompassCustomSelectFieldOption = Node & {
3062
+ __typename?: 'CompassCustomSelectFieldOption';
3063
+ id: Scalars['ID'];
3064
+ value: Scalars['String'];
3065
+ };
3066
+ export declare type CompassCustomSingleSelectFieldDefinition = CompassCustomFieldDefinition & Node & {
3067
+ __typename?: 'CompassCustomSingleSelectFieldDefinition';
3068
+ id: Scalars['ID'];
3069
+ name?: Maybe<Scalars['String']>;
3070
+ description?: Maybe<Scalars['String']>;
3071
+ componentTypes?: Maybe<Array<CompassComponentType>>;
3072
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
3073
+ options?: Maybe<Array<CompassCustomSelectFieldOption>>;
3074
+ };
3028
3075
  export declare type CompassCustomTextField = CompassCustomField & {
3029
3076
  __typename?: 'CompassCustomTextField';
3030
3077
  definition?: Maybe<CompassCustomTextFieldDefinition>;
@@ -5272,6 +5319,46 @@ export declare enum ContentPlatformBooleanOperators {
5272
5319
  And = "AND",
5273
5320
  Or = "OR"
5274
5321
  }
5322
+ export declare type ContentPlatformContentEdge = {
5323
+ __typename?: 'ContentPlatformContentEdge';
5324
+ node: ContentPlatformContentFacet;
5325
+ cursor: Scalars['String'];
5326
+ };
5327
+ export declare type ContentPlatformContentFacet = {
5328
+ __typename?: 'ContentPlatformContentFacet';
5329
+ contentType: Scalars['String'];
5330
+ field: Scalars['String'];
5331
+ totalCount: Scalars['Float'];
5332
+ context: Scalars['JSON'];
5333
+ };
5334
+ export declare type ContentPlatformContentFacetClause = {
5335
+ and?: Maybe<Array<ContentPlatformContentFacetClause>>;
5336
+ or?: Maybe<Array<ContentPlatformContentFacetClause>>;
5337
+ not?: Maybe<Array<ContentPlatformContentFacetClause>>;
5338
+ isNull?: Maybe<Scalars['String']>;
5339
+ isNotNull?: Maybe<Scalars['String']>;
5340
+ withLocales?: Maybe<Array<Scalars['String']>>;
5341
+ returnDefaultLocaleIfNoResult?: Maybe<Scalars['Boolean']>;
5342
+ fieldNamed?: Maybe<Scalars['String']>;
5343
+ havingValues?: Maybe<Array<Scalars['String']>>;
5344
+ };
5345
+ export declare type ContentPlatformContentFacetClauseType = {
5346
+ __typename?: 'ContentPlatformContentFacetClauseType';
5347
+ and?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
5348
+ or?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
5349
+ not?: Maybe<Array<ContentPlatformContentFacetClauseType>>;
5350
+ isNull?: Maybe<Scalars['String']>;
5351
+ isNotNull?: Maybe<Scalars['String']>;
5352
+ withLocales?: Maybe<Array<Scalars['String']>>;
5353
+ returnDefaultLocaleIfNoResult?: Maybe<Scalars['Boolean']>;
5354
+ fieldNamed?: Maybe<Scalars['String']>;
5355
+ havingValues?: Maybe<Array<Scalars['String']>>;
5356
+ };
5357
+ export declare type ContentPlatformContentFacetConnection = {
5358
+ __typename?: 'ContentPlatformContentFacetConnection';
5359
+ pageInfo: PageInfo;
5360
+ edges: Array<ContentPlatformContentEdge>;
5361
+ };
5275
5362
  export declare type ContentPlatformContextApp = {
5276
5363
  __typename?: 'ContentPlatformContextApp';
5277
5364
  contextId: Scalars['String'];
@@ -6354,6 +6441,17 @@ export declare type DataAccessAndStorage = {
6354
6441
  appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
6355
6442
  appStoresEUDOutsideAtlassian?: Maybe<Scalars['Boolean']>;
6356
6443
  };
6444
+ export declare type DataClassificationPolicyDecision = {
6445
+ __typename?: 'DataClassificationPolicyDecision';
6446
+ status: DataClassificationPolicyDecisionStatus;
6447
+ };
6448
+ export declare type DataClassificationPolicyDecisionInput = {
6449
+ dataClassificationTags: Array<Scalars['ID']>;
6450
+ };
6451
+ export declare enum DataClassificationPolicyDecisionStatus {
6452
+ Allowed = "ALLOWED",
6453
+ Blocked = "BLOCKED"
6454
+ }
6357
6455
  export declare type DataController = {
6358
6456
  __typename?: 'DataController';
6359
6457
  isAppDataController: AcceptableResponse;
@@ -6847,6 +6945,7 @@ export declare type DevOpsDocument = {
6847
6945
  byteSize?: Maybe<Scalars['Long']>;
6848
6946
  exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
6849
6947
  hasChildren?: Maybe<Scalars['Boolean']>;
6948
+ externalId?: Maybe<Scalars['String']>;
6850
6949
  };
6851
6950
  export declare enum DevOpsDocumentCategory {
6852
6951
  Folder = "FOLDER",
@@ -7248,6 +7347,14 @@ export declare type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
7248
7347
  documentationUrl?: Maybe<Scalars['URL']>;
7249
7348
  appInstallationId?: Maybe<Scalars['ID']>;
7250
7349
  };
7350
+ export declare type DevOpsRepository = {
7351
+ __typename?: 'DevOpsRepository';
7352
+ id: Scalars['ID'];
7353
+ providerId?: Maybe<Scalars['String']>;
7354
+ name?: Maybe<Scalars['String']>;
7355
+ url?: Maybe<Scalars['URL']>;
7356
+ avatarUrl?: Maybe<Scalars['URL']>;
7357
+ };
7251
7358
  export declare enum DevOpsRepositoryHostingProviderFilter {
7252
7359
  BitbucketCloud = "BITBUCKET_CLOUD",
7253
7360
  ThirdParty = "THIRD_PARTY",
@@ -8172,6 +8279,10 @@ export declare type Extension = {
8172
8279
  currentUserConsent?: Maybe<UserConsentExtension>;
8173
8280
  requiresUserConsent?: Maybe<Scalars['Boolean']>;
8174
8281
  requiresAutoConsent?: Maybe<Scalars['Boolean']>;
8282
+ dataClassificationPolicyDecision: DataClassificationPolicyDecision;
8283
+ };
8284
+ export declare type ExtensionDataClassificationPolicyDecisionArgs = {
8285
+ input: DataClassificationPolicyDecisionInput;
8175
8286
  };
8176
8287
  export declare type ExtensionContext = {
8177
8288
  __typename?: 'ExtensionContext';
@@ -9270,7 +9381,7 @@ export declare enum HelpLayoutAtomicElementKey {
9270
9381
  Paragraph = "PARAGRAPH",
9271
9382
  Search = "SEARCH"
9272
9383
  }
9273
- export declare type HelpLayoutAtomicElementType = {
9384
+ export declare type HelpLayoutAtomicElementType = HelpLayoutElementType & {
9274
9385
  __typename?: 'HelpLayoutAtomicElementType';
9275
9386
  key?: Maybe<HelpLayoutAtomicElementKey>;
9276
9387
  displayName?: Maybe<Scalars['String']>;
@@ -9278,6 +9389,9 @@ export declare type HelpLayoutAtomicElementType = {
9278
9389
  category?: Maybe<HelpLayoutElementCategory>;
9279
9390
  mediaConfig?: Maybe<HelpLayoutMediaConfig>;
9280
9391
  };
9392
+ export declare type HelpLayoutAtomicElementTypeMediaConfigArgs = {
9393
+ parentAri: Scalars['ID'];
9394
+ };
9281
9395
  export declare type HelpLayoutCompositeElement = {
9282
9396
  id: Scalars['ID'];
9283
9397
  visualConfig?: Maybe<Scalars['String']>;
@@ -9287,7 +9401,7 @@ export declare type HelpLayoutCompositeElement = {
9287
9401
  export declare enum HelpLayoutCompositeElementKey {
9288
9402
  LinkCard = "LINK_CARD"
9289
9403
  }
9290
- export declare type HelpLayoutCompositeElementType = {
9404
+ export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
9291
9405
  __typename?: 'HelpLayoutCompositeElementType';
9292
9406
  key?: Maybe<HelpLayoutCompositeElementKey>;
9293
9407
  displayName?: Maybe<Scalars['String']>;
@@ -9302,7 +9416,7 @@ export declare type HelpLayoutCreatePayload = Payload & {
9302
9416
  layoutId?: Maybe<Scalars['ID']>;
9303
9417
  };
9304
9418
  export declare type HelpLayoutCreationInput = {
9305
- parentId: Scalars['ID'];
9419
+ parentAri: Scalars['ID'];
9306
9420
  sections: Array<HelpLayoutSectionInput>;
9307
9421
  };
9308
9422
  export declare type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
@@ -9325,12 +9439,17 @@ export declare enum HelpLayoutElementKey {
9325
9439
  Search = "SEARCH",
9326
9440
  LinkCard = "LINK_CARD"
9327
9441
  }
9328
- export declare type HelpLayoutElementTypes = HelpLayoutAtomicElementType | HelpLayoutCompositeElementType;
9442
+ export declare type HelpLayoutElementType = {
9443
+ displayName?: Maybe<Scalars['String']>;
9444
+ iconUrl?: Maybe<Scalars['String']>;
9445
+ category?: Maybe<HelpLayoutElementCategory>;
9446
+ };
9329
9447
  export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
9330
9448
  __typename?: 'HelpLayoutHeadingAtomicElement';
9331
9449
  id: Scalars['ID'];
9332
9450
  visualConfig?: Maybe<Scalars['String']>;
9333
9451
  config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
9452
+ elementType?: Maybe<HelpLayoutAtomicElementType>;
9334
9453
  };
9335
9454
  export declare type HelpLayoutHeadingAtomicElementConfig = {
9336
9455
  __typename?: 'HelpLayoutHeadingAtomicElementConfig';
@@ -9396,7 +9515,7 @@ export declare type HelpLayoutMutationApi = {
9396
9515
  __typename?: 'HelpLayoutMutationApi';
9397
9516
  createLayout: HelpLayoutCreatePayload;
9398
9517
  deleteLayout?: Maybe<Payload>;
9399
- updateLayout?: Maybe<Payload>;
9518
+ updateLayout?: Maybe<HelpLayoutUpdatePayload>;
9400
9519
  };
9401
9520
  export declare type HelpLayoutMutationApiCreateLayoutArgs = {
9402
9521
  input: HelpLayoutCreationInput;
@@ -9412,6 +9531,7 @@ export declare type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity &
9412
9531
  id: Scalars['ID'];
9413
9532
  visualConfig?: Maybe<Scalars['String']>;
9414
9533
  config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
9534
+ elementType?: Maybe<HelpLayoutAtomicElementType>;
9415
9535
  };
9416
9536
  export declare type HelpLayoutParagraphAtomicElementConfig = {
9417
9537
  __typename?: 'HelpLayoutParagraphAtomicElementConfig';
@@ -9424,7 +9544,7 @@ export declare type HelpLayoutParagraphConfigInput = {
9424
9544
  export declare type HelpLayoutQueryApi = {
9425
9545
  __typename?: 'HelpLayoutQueryApi';
9426
9546
  layout?: Maybe<HelpLayoutResult>;
9427
- elementTypes?: Maybe<Array<HelpLayoutElementTypes>>;
9547
+ elementTypes?: Maybe<Array<HelpLayoutElementType>>;
9428
9548
  };
9429
9549
  export declare type HelpLayoutQueryApiLayoutArgs = {
9430
9550
  id: Scalars['ID'];
@@ -9435,6 +9555,7 @@ export declare type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Nod
9435
9555
  id: Scalars['ID'];
9436
9556
  visualConfig?: Maybe<Scalars['String']>;
9437
9557
  config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
9558
+ elementType?: Maybe<HelpLayoutAtomicElementType>;
9438
9559
  };
9439
9560
  export declare type HelpLayoutSearchAtomicElementConfig = {
9440
9561
  __typename?: 'HelpLayoutSearchAtomicElementConfig';
@@ -9481,7 +9602,13 @@ export declare type HelpLayoutSubsectionInput = {
9481
9602
  };
9482
9603
  export declare type HelpLayoutUpdateInput = {
9483
9604
  layoutId: Scalars['ID'];
9484
- layout: HelpLayoutCreationInput;
9605
+ sections: Array<HelpLayoutSectionInput>;
9606
+ };
9607
+ export declare type HelpLayoutUpdatePayload = Payload & {
9608
+ __typename?: 'HelpLayoutUpdatePayload';
9609
+ success: Scalars['Boolean'];
9610
+ errors?: Maybe<Array<MutationError>>;
9611
+ layoutId?: Maybe<Scalars['ID']>;
9485
9612
  };
9486
9613
  export declare type HelpLayoutVisualEntity = {
9487
9614
  visualConfig?: Maybe<Scalars['String']>;
@@ -10281,6 +10408,7 @@ export declare type JiraAttachmentsField = Node & JiraIssueField & JiraIssueFiel
10281
10408
  description?: Maybe<Scalars['String']>;
10282
10409
  permissions?: Maybe<Array<Maybe<JiraAttachmentsPermissions>>>;
10283
10410
  attachments?: Maybe<JiraAttachmentConnection>;
10411
+ temporaryAttachments?: Maybe<JiraTemporaryAttachmentConnection>;
10284
10412
  maxAllowedTotalAttachmentsSize?: Maybe<Scalars['Long']>;
10285
10413
  mediaContext?: Maybe<JiraMediaContext>;
10286
10414
  fieldConfig?: Maybe<JiraFieldConfig>;
@@ -10292,6 +10420,13 @@ export declare type JiraAttachmentsFieldAttachmentsArgs = {
10292
10420
  orderField?: Maybe<JiraAttachmentsOrderField>;
10293
10421
  orderDirection?: Maybe<JiraOrderDirection>;
10294
10422
  };
10423
+ export declare type JiraAttachmentsFieldTemporaryAttachmentsArgs = {
10424
+ searchBy?: Maybe<Scalars['String']>;
10425
+ first?: Maybe<Scalars['Int']>;
10426
+ after?: Maybe<Scalars['String']>;
10427
+ last?: Maybe<Scalars['Int']>;
10428
+ before?: Maybe<Scalars['String']>;
10429
+ };
10295
10430
  export declare type JiraAttachmentsOrderField = {
10296
10431
  id?: Maybe<Scalars['ID']>;
10297
10432
  };
@@ -11904,6 +12039,49 @@ export declare type JiraIssueBuildDevSummaryContainer = {
11904
12039
  overall?: Maybe<JiraIssueBuildDevSummary>;
11905
12040
  summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
11906
12041
  };
12042
+ export declare type JiraIssueBulkOperationFailure = {
12043
+ __typename?: 'JiraIssueBulkOperationFailure';
12044
+ issue?: Maybe<JiraIssue>;
12045
+ failureReasons?: Maybe<Array<Maybe<Scalars['String']>>>;
12046
+ };
12047
+ export declare type JiraIssueBulkOperationFailureConnection = {
12048
+ __typename?: 'JiraIssueBulkOperationFailureConnection';
12049
+ edges?: Maybe<Array<Maybe<JiraIssueBulkOperationFailureEdge>>>;
12050
+ pageInfo: PageInfo;
12051
+ totalCount?: Maybe<Scalars['Int']>;
12052
+ };
12053
+ export declare type JiraIssueBulkOperationFailureEdge = {
12054
+ __typename?: 'JiraIssueBulkOperationFailureEdge';
12055
+ node?: Maybe<JiraIssueBulkOperationFailure>;
12056
+ cursor: Scalars['String'];
12057
+ };
12058
+ export declare type JiraIssueBulkOperationProgress = {
12059
+ __typename?: 'JiraIssueBulkOperationProgress';
12060
+ taskId?: Maybe<Scalars['ID']>;
12061
+ status?: Maybe<JiraLongRunningTaskStatus>;
12062
+ progress?: Maybe<Scalars['Long']>;
12063
+ totalIssueCount?: Maybe<Scalars['Int']>;
12064
+ unauthorisedSuccessfulIssueCount?: Maybe<Scalars['Int']>;
12065
+ successfulIssues?: Maybe<JiraIssueConnection>;
12066
+ bulkOperationFailures?: Maybe<JiraIssueBulkOperationFailureConnection>;
12067
+ startTime?: Maybe<Scalars['DateTime']>;
12068
+ };
12069
+ export declare type JiraIssueBulkOperationProgressSuccessfulIssuesArgs = {
12070
+ first?: Maybe<Scalars['Int']>;
12071
+ last?: Maybe<Scalars['Int']>;
12072
+ before?: Maybe<Scalars['String']>;
12073
+ after?: Maybe<Scalars['String']>;
12074
+ };
12075
+ export declare type JiraIssueBulkOperationProgressBulkOperationFailuresArgs = {
12076
+ first?: Maybe<Scalars['Int']>;
12077
+ last?: Maybe<Scalars['Int']>;
12078
+ before?: Maybe<Scalars['String']>;
12079
+ after?: Maybe<Scalars['String']>;
12080
+ };
12081
+ export declare type JiraIssueBulkOperationsMetadata = {
12082
+ __typename?: 'JiraIssueBulkOperationsMetadata';
12083
+ maxNumberOfIssues?: Maybe<Scalars['Long']>;
12084
+ };
11907
12085
  export declare type JiraIssueCommitDevSummary = {
11908
12086
  __typename?: 'JiraIssueCommitDevSummary';
11909
12087
  count?: Maybe<Scalars['Int']>;
@@ -12513,6 +12691,26 @@ export declare type JiraIssueSearchViewPayload = Payload & {
12513
12691
  errors?: Maybe<Array<MutationError>>;
12514
12692
  view?: Maybe<JiraIssueSearchView>;
12515
12693
  };
12694
+ export declare enum JiraIssueTransitionLayoutMessageType {
12695
+ Error = "ERROR",
12696
+ Warn = "WARN",
12697
+ Info = "INFO",
12698
+ Success = "SUCCESS"
12699
+ }
12700
+ export declare type JiraIssueTransitionMessage = {
12701
+ __typename?: 'JiraIssueTransitionMessage';
12702
+ type?: Maybe<JiraIssueTransitionLayoutMessageType>;
12703
+ title?: Maybe<Scalars['String']>;
12704
+ iconUrl?: Maybe<Scalars['URL']>;
12705
+ content?: Maybe<JiraRichText>;
12706
+ };
12707
+ export declare type JiraIssueTransitionModal = {
12708
+ __typename?: 'JiraIssueTransitionModal';
12709
+ contentSections?: Maybe<JiraScreenTabLayout>;
12710
+ title?: Maybe<Scalars['String']>;
12711
+ description?: Maybe<Scalars['String']>;
12712
+ messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
12713
+ };
12516
12714
  export declare type JiraIssueType = Node & {
12517
12715
  __typename?: 'JiraIssueType';
12518
12716
  id: Scalars['ID'];
@@ -12590,7 +12788,7 @@ export declare type JiraJqlFromNaturalLanguage = {
12590
12788
  generatedJQL?: Maybe<Scalars['String']>;
12591
12789
  generatedJQLError?: Maybe<JiraJqlGenerationError>;
12592
12790
  };
12593
- export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
12791
+ export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError;
12594
12792
  export declare enum JiraJqlAutocompleteType {
12595
12793
  None = "NONE",
12596
12794
  Component = "COMPONENT",
@@ -13237,6 +13435,16 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
13237
13435
  last?: Maybe<Scalars['Int']>;
13238
13436
  before?: Maybe<Scalars['String']>;
13239
13437
  };
13438
+ export declare type JiraMultipleSelectFieldOperationInput = {
13439
+ operation: JiraMultiValueFieldOperations;
13440
+ ids: Array<Scalars['ID']>;
13441
+ };
13442
+ export declare type JiraMultipleSelectFieldPayload = Payload & {
13443
+ __typename?: 'JiraMultipleSelectFieldPayload';
13444
+ success: Scalars['Boolean'];
13445
+ errors?: Maybe<Array<MutationError>>;
13446
+ field?: Maybe<JiraMultipleSelectField>;
13447
+ };
13240
13448
  export declare type JiraMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
13241
13449
  __typename?: 'JiraMultipleSelectUserPickerField';
13242
13450
  id: Scalars['ID'];
@@ -13347,12 +13555,17 @@ export declare type JiraMutation = {
13347
13555
  updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
13348
13556
  updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
13349
13557
  updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
13558
+ updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
13559
+ updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
13560
+ updateProjectField?: Maybe<JiraProjectFieldPayload>;
13561
+ updateTeamField?: Maybe<JiraTeamFieldPayload>;
13350
13562
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
13351
13563
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
13352
13564
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
13353
13565
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
13354
13566
  addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
13355
13567
  deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
13568
+ updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
13356
13569
  devOps?: Maybe<JiraDevOpsMutation>;
13357
13570
  createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
13358
13571
  updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
@@ -13514,6 +13727,18 @@ export declare type JiraMutationUpdateRadioSelectFieldArgs = {
13514
13727
  export declare type JiraMutationUpdateComponentsFieldArgs = {
13515
13728
  input: JiraUpdateComponentsFieldInput;
13516
13729
  };
13730
+ export declare type JiraMutationUpdateStatusByQuickTransitionArgs = {
13731
+ input: JiraUpdateStatusFieldInput;
13732
+ };
13733
+ export declare type JiraMutationUpdateMultipleSelectFieldArgs = {
13734
+ input: JiraUpdateMultipleSelectFieldInput;
13735
+ };
13736
+ export declare type JiraMutationUpdateProjectFieldArgs = {
13737
+ input: JiraUpdateProjectFieldInput;
13738
+ };
13739
+ export declare type JiraMutationUpdateTeamFieldArgs = {
13740
+ input: JiraUpdateTeamFieldInput;
13741
+ };
13517
13742
  export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
13518
13743
  input: JiraPermissionSchemeAddGrantInput;
13519
13744
  };
@@ -13533,6 +13758,9 @@ export declare type JiraMutationAddJiraVersionApproverArgs = {
13533
13758
  export declare type JiraMutationDeleteJiraVersionApproverArgs = {
13534
13759
  id: Scalars['ID'];
13535
13760
  };
13761
+ export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
13762
+ input: JiraVersionUpdateApproverDescriptionInput;
13763
+ };
13536
13764
  export declare type JiraMutationCreateProjectShortcutArgs = {
13537
13765
  input: JiraCreateShortcutInput;
13538
13766
  };
@@ -14456,6 +14684,16 @@ export declare type JiraProjectFieldProjectsArgs = {
14456
14684
  before?: Maybe<Scalars['String']>;
14457
14685
  recent?: Maybe<Scalars['Boolean']>;
14458
14686
  };
14687
+ export declare type JiraProjectFieldOperationInput = {
14688
+ operation: JiraSingleValueFieldOperations;
14689
+ id?: Maybe<Scalars['ID']>;
14690
+ };
14691
+ export declare type JiraProjectFieldPayload = Payload & {
14692
+ __typename?: 'JiraProjectFieldPayload';
14693
+ success: Scalars['Boolean'];
14694
+ errors?: Maybe<Array<MutationError>>;
14695
+ field?: Maybe<JiraProjectField>;
14696
+ };
14459
14697
  export declare type JiraProjectFilterInput = {
14460
14698
  types?: Maybe<Array<JiraProjectType>>;
14461
14699
  projectCategoryId?: Maybe<Scalars['ID']>;
@@ -14597,6 +14835,7 @@ export declare type JiraQuery = {
14597
14835
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
14598
14836
  userSegmentation?: Maybe<JiraUserSegmentation>;
14599
14837
  first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
14838
+ bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
14600
14839
  jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
14601
14840
  allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
14602
14841
  jiraProject?: Maybe<JiraProject>;
@@ -14634,6 +14873,7 @@ export declare type JiraQuery = {
14634
14873
  systemFilters?: Maybe<JiraSystemFilterConnection>;
14635
14874
  allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
14636
14875
  devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
14876
+ getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
14637
14877
  issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
14638
14878
  issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
14639
14879
  favourites?: Maybe<JiraFavouriteConnection>;
@@ -14665,7 +14905,9 @@ export declare type JiraQuery = {
14665
14905
  canPerform?: Maybe<Scalars['Boolean']>;
14666
14906
  labelsFieldOptions?: Maybe<JiraLabelConnection>;
14667
14907
  jqlBuilder?: Maybe<JiraJqlBuilder>;
14908
+ fields?: Maybe<JiraJqlFieldConnectionResult>;
14668
14909
  devOps?: Maybe<JiraDevOpsQuery>;
14910
+ bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
14669
14911
  deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
14670
14912
  deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
14671
14913
  installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
@@ -14693,6 +14935,9 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
14693
14935
  keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
14694
14936
  tags?: Maybe<Array<Maybe<Scalars['String']>>>;
14695
14937
  };
14938
+ export declare type JiraQueryBulkOperationsMetadataArgs = {
14939
+ cloudId: Scalars['ID'];
14940
+ };
14696
14941
  export declare type JiraQueryJiraBulkEditFieldsArgs = {
14697
14942
  issueIds: Array<Scalars['ID']>;
14698
14943
  };
@@ -14867,6 +15112,10 @@ export declare type JiraQueryDevOpsProvidersArgs = {
14867
15112
  cloudId: Scalars['ID'];
14868
15113
  filter?: Maybe<Array<JiraDevOpsCapability>>;
14869
15114
  };
15115
+ export declare type JiraQueryGetIssueTransitionByIssueIdArgs = {
15116
+ transitionId: Scalars['String'];
15117
+ issueId: Scalars['ID'];
15118
+ };
14870
15119
  export declare type JiraQueryIssueContainersByTypeArgs = {
14871
15120
  input: JiraIssueItemSystemContainerTypeWithIdInput;
14872
15121
  };
@@ -15007,6 +15256,20 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
15007
15256
  export declare type JiraQueryJqlBuilderArgs = {
15008
15257
  cloudId: Scalars['ID'];
15009
15258
  };
15259
+ export declare type JiraQueryFieldsArgs = {
15260
+ cloudId: Scalars['ID'];
15261
+ jqlContext?: Maybe<Scalars['String']>;
15262
+ searchString?: Maybe<Scalars['String']>;
15263
+ excludeFields?: Maybe<Array<Scalars['String']>>;
15264
+ forClause?: Maybe<JiraJqlClauseType>;
15265
+ first?: Maybe<Scalars['Int']>;
15266
+ after?: Maybe<Scalars['String']>;
15267
+ viewContext?: Maybe<JiraJqlViewContext>;
15268
+ };
15269
+ export declare type JiraQueryBulkOperationProgressArgs = {
15270
+ cloudId: Scalars['ID'];
15271
+ taskId: Scalars['ID'];
15272
+ };
15010
15273
  export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
15011
15274
  projectId: Scalars['ID'];
15012
15275
  };
@@ -15361,6 +15624,52 @@ export declare type JiraScmRepository = {
15361
15624
  name?: Maybe<Scalars['String']>;
15362
15625
  entityUrl?: Maybe<Scalars['URL']>;
15363
15626
  };
15627
+ export declare type JiraScreenTabLayout = {
15628
+ __typename?: 'JiraScreenTabLayout';
15629
+ items?: Maybe<JiraScreenTabLayoutItemConnection>;
15630
+ };
15631
+ export declare type JiraScreenTabLayoutItemsArgs = {
15632
+ first?: Maybe<Scalars['Int']>;
15633
+ after?: Maybe<Scalars['String']>;
15634
+ last?: Maybe<Scalars['Int']>;
15635
+ before?: Maybe<Scalars['String']>;
15636
+ };
15637
+ export declare type JiraScreenTabLayoutField = {
15638
+ __typename?: 'JiraScreenTabLayoutField';
15639
+ error?: Maybe<QueryError>;
15640
+ field?: Maybe<JiraIssueField>;
15641
+ };
15642
+ export declare type JiraScreenTabLayoutFieldsConnection = {
15643
+ __typename?: 'JiraScreenTabLayoutFieldsConnection';
15644
+ edges?: Maybe<Array<Maybe<JiraScreenTabLayoutFieldsEdge>>>;
15645
+ pageInfo: PageInfo;
15646
+ };
15647
+ export declare type JiraScreenTabLayoutFieldsEdge = {
15648
+ __typename?: 'JiraScreenTabLayoutFieldsEdge';
15649
+ node?: Maybe<JiraScreenTabLayoutField>;
15650
+ cursor: Scalars['String'];
15651
+ };
15652
+ export declare type JiraScreenTabLayoutItem = {
15653
+ __typename?: 'JiraScreenTabLayoutItem';
15654
+ title: Scalars['String'];
15655
+ fields?: Maybe<JiraScreenTabLayoutFieldsConnection>;
15656
+ };
15657
+ export declare type JiraScreenTabLayoutItemFieldsArgs = {
15658
+ first?: Maybe<Scalars['Int']>;
15659
+ after?: Maybe<Scalars['String']>;
15660
+ last?: Maybe<Scalars['Int']>;
15661
+ before?: Maybe<Scalars['String']>;
15662
+ };
15663
+ export declare type JiraScreenTabLayoutItemConnection = {
15664
+ __typename?: 'JiraScreenTabLayoutItemConnection';
15665
+ edges?: Maybe<Array<Maybe<JiraScreenTabLayoutItemEdge>>>;
15666
+ pageInfo: PageInfo;
15667
+ };
15668
+ export declare type JiraScreenTabLayoutItemEdge = {
15669
+ __typename?: 'JiraScreenTabLayoutItemEdge';
15670
+ node?: Maybe<JiraScreenTabLayoutItem>;
15671
+ cursor: Scalars['String'];
15672
+ };
15364
15673
  export declare type JiraSecurityLevel = Node & {
15365
15674
  __typename?: 'JiraSecurityLevel';
15366
15675
  id: Scalars['ID'];
@@ -16416,6 +16725,23 @@ export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConf
16416
16725
  status: JiraStatus;
16417
16726
  fieldConfig?: Maybe<JiraFieldConfig>;
16418
16727
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
16728
+ transitions?: Maybe<JiraTransitionConnection>;
16729
+ };
16730
+ export declare type JiraStatusFieldTransitionsArgs = {
16731
+ transitionId?: Maybe<Scalars['Int']>;
16732
+ includeRemoteOnlyTransitions?: Maybe<Scalars['Boolean']>;
16733
+ includeUnavailableTransitions?: Maybe<Scalars['Boolean']>;
16734
+ sortingOption?: Maybe<JiraTransitionSortOption>;
16735
+ first?: Maybe<Scalars['Int']>;
16736
+ after?: Maybe<Scalars['String']>;
16737
+ last?: Maybe<Scalars['Int']>;
16738
+ before?: Maybe<Scalars['String']>;
16739
+ };
16740
+ export declare type JiraStatusFieldPayload = Payload & {
16741
+ __typename?: 'JiraStatusFieldPayload';
16742
+ success: Scalars['Boolean'];
16743
+ errors?: Maybe<Array<MutationError>>;
16744
+ field?: Maybe<JiraStatusField>;
16419
16745
  };
16420
16746
  export declare type JiraStoryPointEstimateFieldOperationInput = {
16421
16747
  operation: JiraSingleValueFieldOperations;
@@ -16505,6 +16831,16 @@ export declare type JiraTeamFieldTeamsArgs = {
16505
16831
  last?: Maybe<Scalars['Int']>;
16506
16832
  before?: Maybe<Scalars['String']>;
16507
16833
  };
16834
+ export declare type JiraTeamFieldOperationInput = {
16835
+ operation: JiraSingleValueFieldOperations;
16836
+ id?: Maybe<Scalars['ID']>;
16837
+ };
16838
+ export declare type JiraTeamFieldPayload = Payload & {
16839
+ __typename?: 'JiraTeamFieldPayload';
16840
+ success: Scalars['Boolean'];
16841
+ errors?: Maybe<Array<MutationError>>;
16842
+ field?: Maybe<JiraTeamViewField>;
16843
+ };
16508
16844
  export declare type JiraTeamView = {
16509
16845
  __typename?: 'JiraTeamView';
16510
16846
  jiraSuppliedId: Scalars['ID'];
@@ -16512,7 +16848,22 @@ export declare type JiraTeamView = {
16512
16848
  jiraSuppliedVisibility?: Maybe<Scalars['Boolean']>;
16513
16849
  jiraSuppliedName?: Maybe<Scalars['String']>;
16514
16850
  jiraSuppliedAvatar?: Maybe<JiraAvatar>;
16515
- fullTeam?: Maybe<Team>;
16851
+ fullTeam?: Maybe<TeamV2>;
16852
+ };
16853
+ export declare type JiraTeamViewFullTeamArgs = {
16854
+ siteId?: Scalars['String'];
16855
+ };
16856
+ export declare type JiraTeamViewConnection = {
16857
+ __typename?: 'JiraTeamViewConnection';
16858
+ totalCount?: Maybe<Scalars['Int']>;
16859
+ pageInfo: PageInfo;
16860
+ edges?: Maybe<Array<Maybe<JiraTeamViewEdge>>>;
16861
+ errors?: Maybe<Array<QueryError>>;
16862
+ };
16863
+ export declare type JiraTeamViewEdge = {
16864
+ __typename?: 'JiraTeamViewEdge';
16865
+ node?: Maybe<JiraTeamView>;
16866
+ cursor: Scalars['String'];
16516
16867
  };
16517
16868
  export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
16518
16869
  __typename?: 'JiraTeamViewField';
@@ -16523,10 +16874,35 @@ export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldCo
16523
16874
  name: Scalars['String'];
16524
16875
  description?: Maybe<Scalars['String']>;
16525
16876
  selectedTeam?: Maybe<JiraTeamView>;
16877
+ teams?: Maybe<JiraTeamViewConnection>;
16526
16878
  searchUrl?: Maybe<Scalars['String']>;
16527
16879
  fieldConfig?: Maybe<JiraFieldConfig>;
16528
16880
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
16529
16881
  };
16882
+ export declare type JiraTeamViewFieldTeamsArgs = {
16883
+ searchBy?: Maybe<Scalars['String']>;
16884
+ first?: Maybe<Scalars['Int']>;
16885
+ after?: Maybe<Scalars['String']>;
16886
+ last?: Maybe<Scalars['Int']>;
16887
+ before?: Maybe<Scalars['String']>;
16888
+ sessionId: Scalars['ID'];
16889
+ organisationId: Scalars['ID'];
16890
+ };
16891
+ export declare type JiraTemporaryAttachment = {
16892
+ __typename?: 'JiraTemporaryAttachment';
16893
+ mediaApiFileId?: Maybe<Scalars['String']>;
16894
+ };
16895
+ export declare type JiraTemporaryAttachmentConnection = {
16896
+ __typename?: 'JiraTemporaryAttachmentConnection';
16897
+ indicativeCount?: Maybe<Scalars['Int']>;
16898
+ pageInfo: PageInfo;
16899
+ edges?: Maybe<Array<Maybe<JiraTemporaryAttachmentEdge>>>;
16900
+ };
16901
+ export declare type JiraTemporaryAttachmentEdge = {
16902
+ __typename?: 'JiraTemporaryAttachmentEdge';
16903
+ node?: Maybe<JiraTemporaryAttachment>;
16904
+ cursor: Scalars['String'];
16905
+ };
16530
16906
  export declare enum JiraTimeFormat {
16531
16907
  Pretty = "PRETTY",
16532
16908
  Days = "DAYS",
@@ -16567,6 +16943,38 @@ export declare enum JiraTimeUnit {
16567
16943
  Day = "DAY",
16568
16944
  Week = "WEEK"
16569
16945
  }
16946
+ export declare type JiraTransition = {
16947
+ __typename?: 'JiraTransition';
16948
+ transitionId?: Maybe<Scalars['Int']>;
16949
+ name?: Maybe<Scalars['String']>;
16950
+ hasScreen?: Maybe<Scalars['Boolean']>;
16951
+ isGlobal?: Maybe<Scalars['Boolean']>;
16952
+ isInitial?: Maybe<Scalars['Boolean']>;
16953
+ hasPreConditions?: Maybe<Scalars['Boolean']>;
16954
+ isLooped?: Maybe<Scalars['Boolean']>;
16955
+ isAvailable?: Maybe<Scalars['Boolean']>;
16956
+ to?: Maybe<JiraStatus>;
16957
+ };
16958
+ export declare type JiraTransitionConnection = {
16959
+ __typename?: 'JiraTransitionConnection';
16960
+ totalCount?: Maybe<Scalars['Int']>;
16961
+ pageInfo: PageInfo;
16962
+ edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
16963
+ errors?: Maybe<Array<QueryError>>;
16964
+ };
16965
+ export declare type JiraTransitionEdge = {
16966
+ __typename?: 'JiraTransitionEdge';
16967
+ node?: Maybe<JiraTransition>;
16968
+ cursor: Scalars['String'];
16969
+ };
16970
+ export declare enum JiraTransitionSortOption {
16971
+ OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY",
16972
+ OpsBar = "OPS_BAR"
16973
+ }
16974
+ export declare type JiraUiExposedError = {
16975
+ __typename?: 'JiraUIExposedError';
16976
+ message?: Maybe<Scalars['String']>;
16977
+ };
16570
16978
  export declare type JiraUpdateCascadingSelectFieldInput = {
16571
16979
  id: Scalars['ID'];
16572
16980
  operation: JiraCascadingSelectFieldOperationInput;
@@ -16614,6 +17022,10 @@ export declare type JiraUpdateLabelsFieldInput = {
16614
17022
  id: Scalars['ID'];
16615
17023
  operations: Array<JiraLabelsFieldOperationInput>;
16616
17024
  };
17025
+ export declare type JiraUpdateMultipleSelectFieldInput = {
17026
+ id: Scalars['ID'];
17027
+ operations: Array<JiraMultipleSelectFieldOperationInput>;
17028
+ };
16617
17029
  export declare type JiraUpdateNumberFieldInput = {
16618
17030
  id: Scalars['ID'];
16619
17031
  operation: JiraNumberFieldOperationInput;
@@ -16622,6 +17034,10 @@ export declare type JiraUpdatePriorityFieldInput = {
16622
17034
  id: Scalars['ID'];
16623
17035
  operation: JiraPriorityFieldOperationInput;
16624
17036
  };
17037
+ export declare type JiraUpdateProjectFieldInput = {
17038
+ id: Scalars['ID'];
17039
+ operation: JiraProjectFieldOperationInput;
17040
+ };
16625
17041
  export declare type JiraUpdateRadioSelectFieldInput = {
16626
17042
  id: Scalars['ID'];
16627
17043
  operation: JiraRadioSelectFieldOperationInput;
@@ -16660,10 +17076,18 @@ export declare type JiraUpdateSprintFieldInput = {
16660
17076
  id: Scalars['ID'];
16661
17077
  operation: JiraSprintFieldOperationInput;
16662
17078
  };
17079
+ export declare type JiraUpdateStatusFieldInput = {
17080
+ id: Scalars['ID'];
17081
+ statusTransitionId: Scalars['Int'];
17082
+ };
16663
17083
  export declare type JiraUpdateStoryPointEstimateFieldInput = {
16664
17084
  id: Scalars['ID'];
16665
17085
  operation: JiraStoryPointEstimateFieldOperationInput;
16666
17086
  };
17087
+ export declare type JiraUpdateTeamFieldInput = {
17088
+ id: Scalars['ID'];
17089
+ operation: JiraTeamFieldOperationInput;
17090
+ };
16667
17091
  export declare type JiraUpdateTimeTrackingFieldInput = {
16668
17092
  id: Scalars['ID'];
16669
17093
  originalEstimate?: Maybe<JiraEstimateInput>;
@@ -17271,6 +17695,16 @@ export declare type JiraVersionUpdateApproverDeclineReasonPayload = Payload & {
17271
17695
  errors?: Maybe<Array<MutationError>>;
17272
17696
  approver?: Maybe<JiraVersionApprover>;
17273
17697
  };
17698
+ export declare type JiraVersionUpdateApproverDescriptionInput = {
17699
+ approverId: Scalars['ID'];
17700
+ description?: Maybe<Scalars['String']>;
17701
+ };
17702
+ export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
17703
+ __typename?: 'JiraVersionUpdateApproverDescriptionPayload';
17704
+ approver?: Maybe<JiraVersionApprover>;
17705
+ success: Scalars['Boolean'];
17706
+ errors?: Maybe<Array<MutationError>>;
17707
+ };
17274
17708
  export declare type JiraVersionUpdateMutationInput = {
17275
17709
  id: Scalars['ID'];
17276
17710
  name: Scalars['String'];
@@ -17465,6 +17899,7 @@ export declare type JiraWorkManagementOverview = Node & {
17465
17899
  author?: Maybe<User>;
17466
17900
  theme?: Maybe<Scalars['String']>;
17467
17901
  projects?: Maybe<JiraWorkManagementProjectConnection>;
17902
+ fields?: Maybe<JiraJqlFieldConnectionResult>;
17468
17903
  };
17469
17904
  export declare type JiraWorkManagementOverviewProjectsArgs = {
17470
17905
  first?: Maybe<Scalars['Int']>;
@@ -17472,6 +17907,15 @@ export declare type JiraWorkManagementOverviewProjectsArgs = {
17472
17907
  last?: Maybe<Scalars['Int']>;
17473
17908
  before?: Maybe<Scalars['String']>;
17474
17909
  };
17910
+ export declare type JiraWorkManagementOverviewFieldsArgs = {
17911
+ cloudId: Scalars['ID'];
17912
+ searchString?: Maybe<Scalars['String']>;
17913
+ excludeFields?: Maybe<Array<Scalars['String']>>;
17914
+ forClause?: Maybe<JiraJqlClauseType>;
17915
+ first?: Maybe<Scalars['Int']>;
17916
+ after?: Maybe<Scalars['String']>;
17917
+ viewContext?: Maybe<JiraJqlViewContext>;
17918
+ };
17475
17919
  export declare type JiraWorkManagementOverviewConnection = {
17476
17920
  __typename?: 'JiraWorkManagementOverviewConnection';
17477
17921
  totalCount?: Maybe<Scalars['Int']>;
@@ -18812,6 +19256,10 @@ export declare enum NlpErrorState {
18812
19256
  SubjectiveQuery = "SUBJECTIVE_QUERY",
18813
19257
  AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
18814
19258
  }
19259
+ export declare type NlpFollowUpResponse = {
19260
+ __typename?: 'NlpFollowUpResponse';
19261
+ followUps?: Maybe<Array<Scalars['String']>>;
19262
+ };
18815
19263
  export declare type NlpSearchResponse = {
18816
19264
  __typename?: 'NlpSearchResponse';
18817
19265
  nlpResults?: Maybe<Array<NlpSearchResult>>;
@@ -20528,6 +20976,7 @@ export declare type Query = {
20528
20976
  opsgenie?: Maybe<OpsgenieQuery>;
20529
20977
  releaseNotes: ContentPlatformReleaseNotesConnection;
20530
20978
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
20979
+ contentFacet: ContentPlatformContentFacetConnection;
20531
20980
  smarts?: Maybe<SmartsQueryApi>;
20532
20981
  jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
20533
20982
  appRecommendations?: Maybe<AppRecQuery>;
@@ -20553,7 +21002,6 @@ export declare type Query = {
20553
21002
  codeInJira?: Maybe<CodeInJira>;
20554
21003
  partnerCatalogApi?: Maybe<PartnerCatalogApi>;
20555
21004
  jira?: Maybe<JiraQuery>;
20556
- team?: Maybe<TeamQuery>;
20557
21005
  testing?: Maybe<Testing>;
20558
21006
  appStoredEntity?: Maybe<AppStoredEntity>;
20559
21007
  appStoredEntities?: Maybe<AppStoredEntityConnection>;
@@ -20633,6 +21081,7 @@ export declare type Query = {
20633
21081
  appLogLines?: Maybe<AppLogLineConnection>;
20634
21082
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
20635
21083
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
21084
+ team?: Maybe<TeamQuery>;
20636
21085
  roadmaps?: Maybe<RoadmapsQuery>;
20637
21086
  jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
20638
21087
  jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
@@ -20646,7 +21095,9 @@ export declare type Query = {
20646
21095
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
20647
21096
  oauthClients?: Maybe<OAuthClientsQuery>;
20648
21097
  helpCenter?: Maybe<HelpCenterQueryApi>;
21098
+ isSainSearchEnabled?: Maybe<Scalars['Boolean']>;
20649
21099
  nlpSearch?: Maybe<NlpSearchResponse>;
21100
+ nlpFollowUp?: Maybe<NlpFollowUpResponse>;
20650
21101
  };
20651
21102
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
20652
21103
  id: Scalars['ID'];
@@ -20680,6 +21131,13 @@ export declare type QueryReleaseNoteArgs = {
20680
21131
  id: Scalars['String'];
20681
21132
  publishedOnly?: Maybe<Scalars['Boolean']>;
20682
21133
  };
21134
+ export declare type QueryContentFacetArgs = {
21135
+ after?: Maybe<Scalars['String']>;
21136
+ first?: Scalars['Int'];
21137
+ forContentType: Scalars['String'];
21138
+ forFields: Array<Scalars['String']>;
21139
+ where?: Maybe<ContentPlatformContentFacetClause>;
21140
+ };
20683
21141
  export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
20684
21142
  id: Scalars['ID'];
20685
21143
  cloudId: Scalars['ID'];
@@ -21016,10 +21474,17 @@ export declare type QueryAppDeploymentArgs = {
21016
21474
  export declare type QueryHelpCenterArgs = {
21017
21475
  cloudId: Scalars['ID'];
21018
21476
  };
21477
+ export declare type QueryIsSainSearchEnabledArgs = {
21478
+ cloudId: Scalars['String'];
21479
+ };
21019
21480
  export declare type QueryNlpSearchArgs = {
21020
21481
  query?: Maybe<Scalars['String']>;
21021
21482
  locations: Array<Scalars['String']>;
21022
21483
  };
21484
+ export declare type QueryNlpFollowUpArgs = {
21485
+ query?: Maybe<Scalars['String']>;
21486
+ locations: Array<Scalars['String']>;
21487
+ };
21023
21488
  export declare type QueryError = {
21024
21489
  __typename?: 'QueryError';
21025
21490
  identifier?: Maybe<Scalars['ID']>;
@@ -21066,15 +21531,44 @@ export declare enum RateLimitingCurrency {
21066
21531
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
21067
21532
  NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
21068
21533
  TeamsCurrency = "TEAMS_CURRENCY",
21069
- TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
21070
21534
  TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
21071
- TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
21535
+ TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
21072
21536
  PolarisCurrency = "POLARIS_CURRENCY",
21537
+ PolarisReactionCurrency = "POLARIS_REACTION_CURRENCY",
21538
+ PolarisViewCurrency = "POLARIS_VIEW_CURRENCY",
21539
+ PolarisRankingCurrency = "POLARIS_RANKING_CURRENCY",
21540
+ PolarisPlayCurrency = "POLARIS_PLAY_CURRENCY",
21541
+ PolarisInsightCurrency = "POLARIS_INSIGHT_CURRENCY",
21542
+ PolarisSnippetCurrency = "POLARIS_SNIPPET_CURRENCY",
21543
+ PolarisProjectConfigCurrency = "POLARIS_PROJECT_CONFIG_CURRENCY",
21544
+ PolarisFieldCurrency = "POLARIS_FIELD_CURRENCY",
21545
+ PolarisViewsetCurrency = "POLARIS_VIEWSET_CURRENCY",
21546
+ PolarisCommentCurrency = "POLARIS_COMMENT_CURRENCY",
21547
+ PolarisUnfurlCurrency = "POLARIS_UNFURL_CURRENCY",
21548
+ PolarisIdeaTemplateCurrency = "POLARIS_IDEA_TEMPLATE_CURRENCY",
21549
+ PolarisIdeaCurrency = "POLARIS_IDEA_CURRENCY",
21550
+ PolarisOnboardingCurrency = "POLARIS_ONBOARDING_CURRENCY",
21551
+ PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
21552
+ PolarisProjectQueryCurrency = "POLARIS_PROJECT_QUERY_CURRENCY",
21553
+ PolarisViewArrangementInfoQueryCurrency = "POLARIS_VIEW_ARRANGEMENT_INFO_QUERY_CURRENCY",
21554
+ PolarisViewQueryCurrency = "POLARIS_VIEW_QUERY_CURRENCY",
21555
+ PolarisInsightQueryCurrency = "POLARIS_INSIGHT_QUERY_CURRENCY",
21556
+ PolarisInsightsQueryCurrency = "POLARIS_INSIGHTS_QUERY_CURRENCY",
21557
+ PolarisInsightsWithErrorsQueryCurrency = "POLARIS_INSIGHTS_WITH_ERRORS_QUERY_CURRENCY",
21558
+ PolarisLabelsQueryCurrency = "POLARIS_LABELS_QUERY_CURRENCY",
21559
+ PolarisTermsConsentQueryCurrency = "POLARIS_TERMS_CONSENT_QUERY_CURRENCY",
21560
+ PolarisSnippetPropertiesConfigQueryCurrency = "POLARIS_SNIPPET_PROPERTIES_CONFIG_QUERY_CURRENCY",
21561
+ PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
21562
+ PolarisIdeaTemplatesQueryCurrency = "POLARIS_IDEA_TEMPLATES_QUERY_CURRENCY",
21073
21563
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
21074
21564
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
21075
21565
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
21566
+ ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
21076
21567
  DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
21077
21568
  DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
21569
+ TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
21570
+ TeamV2Currency = "TEAM_V2_CURRENCY",
21571
+ TeamMembersV2Currency = "TEAM_MEMBERS_V2_CURRENCY",
21078
21572
  HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
21079
21573
  ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
21080
21574
  ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
@@ -21281,6 +21775,7 @@ export declare type RoadmapComponent = {
21281
21775
  export declare type RoadmapConfiguration = {
21282
21776
  __typename?: 'RoadmapConfiguration';
21283
21777
  isCrossProject: Scalars['Boolean'];
21778
+ isCrossProjectInconsistent: Scalars['Boolean'];
21284
21779
  roadmapFeatureEnabled: Scalars['Boolean'];
21285
21780
  rankIssuesSupported: Scalars['Boolean'];
21286
21781
  dependencies?: Maybe<RoadmapDependencyConfiguration>;
@@ -22162,7 +22657,8 @@ export declare enum Scope {
22162
22657
  MigrateConfluence = "MIGRATE_CONFLUENCE",
22163
22658
  ReadTeam = "READ_TEAM",
22164
22659
  ReadTeamMembers = "READ_TEAM_MEMBERS",
22165
- TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL"
22660
+ TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
22661
+ CatalogRead = "CATALOG_READ"
22166
22662
  }
22167
22663
  export declare type ScopeSprintIssue = {
22168
22664
  __typename?: 'ScopeSprintIssue';
@@ -22674,6 +23170,7 @@ export declare enum ShepherdAlertTemplateType {
22674
23170
  AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
22675
23171
  AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
22676
23172
  AddedOrgadmin = "ADDED_ORGADMIN",
23173
+ ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
22677
23174
  ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
22678
23175
  ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
22679
23176
  ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
@@ -23956,33 +24453,68 @@ export declare type TeamMemberConnection = {
23956
24453
  nodes?: Maybe<Array<Maybe<TeamMember>>>;
23957
24454
  pageInfo: PageInfo;
23958
24455
  };
24456
+ export declare type TeamMemberConnectionV2 = {
24457
+ __typename?: 'TeamMemberConnectionV2';
24458
+ edges?: Maybe<Array<Maybe<TeamMemberEdgeV2>>>;
24459
+ nodes?: Maybe<Array<Maybe<TeamMemberV2>>>;
24460
+ pageInfo: PageInfo;
24461
+ };
23959
24462
  export declare type TeamMemberEdge = {
23960
24463
  __typename?: 'TeamMemberEdge';
23961
24464
  node?: Maybe<TeamMember>;
23962
24465
  cursor: Scalars['String'];
23963
24466
  };
24467
+ export declare type TeamMemberEdgeV2 = {
24468
+ __typename?: 'TeamMemberEdgeV2';
24469
+ node?: Maybe<TeamMemberV2>;
24470
+ cursor: Scalars['String'];
24471
+ };
24472
+ export declare type TeamMemberV2 = {
24473
+ __typename?: 'TeamMemberV2';
24474
+ member?: Maybe<User>;
24475
+ state?: Maybe<TeamMembershipState>;
24476
+ role?: Maybe<TeamMembershipRole>;
24477
+ };
23964
24478
  export declare type TeamMembershipFilter = {
23965
24479
  memberIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
23966
24480
  };
24481
+ export declare enum TeamMembershipRole {
24482
+ Regular = "REGULAR",
24483
+ Admin = "ADMIN"
24484
+ }
24485
+ export declare enum TeamMembershipSetting {
24486
+ Open = "OPEN",
24487
+ MemberInvite = "MEMBER_INVITE"
24488
+ }
24489
+ export declare enum TeamMembershipState {
24490
+ FullMember = "FULL_MEMBER",
24491
+ Alumni = "ALUMNI",
24492
+ RequestingToJoin = "REQUESTING_TO_JOIN"
24493
+ }
23967
24494
  export declare type TeamQuery = {
23968
24495
  __typename?: 'TeamQuery';
24496
+ teamV2?: Maybe<TeamV2>;
24497
+ teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
23969
24498
  team?: Maybe<Team>;
23970
24499
  teamSearch?: Maybe<TeamSearchResultConnection>;
23971
- teamSearchV2?: Maybe<TeamSearchResultConnection>;
23972
24500
  };
23973
- export declare type TeamQueryTeamArgs = {
24501
+ export declare type TeamQueryTeamV2Args = {
23974
24502
  id: Scalars['ID'];
24503
+ siteId: Scalars['String'];
23975
24504
  };
23976
- export declare type TeamQueryTeamSearchArgs = {
24505
+ export declare type TeamQueryTeamSearchV2Args = {
23977
24506
  organizationId: Scalars['ID'];
24507
+ siteId: Scalars['String'];
23978
24508
  filter?: Maybe<TeamSearchFilter>;
23979
24509
  first?: Maybe<Scalars['Int']>;
23980
24510
  after?: Maybe<Scalars['String']>;
23981
24511
  sortBy?: Maybe<Array<Maybe<TeamSort>>>;
23982
24512
  };
23983
- export declare type TeamQueryTeamSearchV2Args = {
24513
+ export declare type TeamQueryTeamArgs = {
24514
+ id: Scalars['ID'];
24515
+ };
24516
+ export declare type TeamQueryTeamSearchArgs = {
23984
24517
  organizationId: Scalars['ID'];
23985
- siteId: Scalars['String'];
23986
24518
  filter?: Maybe<TeamSearchFilter>;
23987
24519
  first?: Maybe<Scalars['Int']>;
23988
24520
  after?: Maybe<Scalars['String']>;
@@ -24004,11 +24536,28 @@ export declare type TeamSearchResultConnection = {
24004
24536
  nodes?: Maybe<Array<Maybe<TeamSearchResult>>>;
24005
24537
  pageInfo?: Maybe<PageInfo>;
24006
24538
  };
24539
+ export declare type TeamSearchResultConnectionV2 = {
24540
+ __typename?: 'TeamSearchResultConnectionV2';
24541
+ edges?: Maybe<Array<Maybe<TeamSearchResultEdgeV2>>>;
24542
+ nodes?: Maybe<Array<Maybe<TeamSearchResultV2>>>;
24543
+ pageInfo?: Maybe<PageInfo>;
24544
+ };
24007
24545
  export declare type TeamSearchResultEdge = {
24008
24546
  __typename?: 'TeamSearchResultEdge';
24009
24547
  node?: Maybe<TeamSearchResult>;
24010
24548
  cursor: Scalars['String'];
24011
24549
  };
24550
+ export declare type TeamSearchResultEdgeV2 = {
24551
+ __typename?: 'TeamSearchResultEdgeV2';
24552
+ node?: Maybe<TeamSearchResultV2>;
24553
+ cursor: Scalars['String'];
24554
+ };
24555
+ export declare type TeamSearchResultV2 = {
24556
+ __typename?: 'TeamSearchResultV2';
24557
+ team?: Maybe<TeamV2>;
24558
+ memberCount?: Maybe<Scalars['Int']>;
24559
+ includesYou?: Maybe<Scalars['Boolean']>;
24560
+ };
24012
24561
  export declare type TeamSort = {
24013
24562
  field: TeamSortField;
24014
24563
  order?: Maybe<TeamSortOrder>;
@@ -24027,6 +24576,30 @@ export declare enum TeamState {
24027
24576
  Disbanded = "DISBANDED",
24028
24577
  Purged = "PURGED"
24029
24578
  }
24579
+ export declare enum TeamStateV2 {
24580
+ Active = "ACTIVE",
24581
+ Purged = "PURGED"
24582
+ }
24583
+ export declare type TeamV2 = Node & {
24584
+ __typename?: 'TeamV2';
24585
+ id: Scalars['ID'];
24586
+ organizationId?: Maybe<Scalars['ID']>;
24587
+ creator?: Maybe<User>;
24588
+ state?: Maybe<TeamStateV2>;
24589
+ displayName?: Maybe<Scalars['String']>;
24590
+ description?: Maybe<Scalars['String']>;
24591
+ membershipSetting?: Maybe<TeamMembershipSetting>;
24592
+ smallHeaderImageUrl?: Maybe<Scalars['String']>;
24593
+ largeHeaderImageUrl?: Maybe<Scalars['String']>;
24594
+ smallAvatarImageUrl?: Maybe<Scalars['String']>;
24595
+ largeAvatarImageUrl?: Maybe<Scalars['String']>;
24596
+ members?: Maybe<TeamMemberConnectionV2>;
24597
+ };
24598
+ export declare type TeamV2MembersArgs = {
24599
+ after?: Maybe<Scalars['String']>;
24600
+ first?: Scalars['Int'];
24601
+ state?: Array<TeamMembershipState>;
24602
+ };
24030
24603
  export declare type TenantContext = {
24031
24604
  __typename?: 'TenantContext';
24032
24605
  cloudId?: Maybe<Scalars['ID']>;
@@ -24169,7 +24742,7 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
24169
24742
  errors?: Maybe<Array<MutationError>>;
24170
24743
  containers?: Maybe<Array<ToolchainAssociatedContainer>>;
24171
24744
  };
24172
- export declare type ToolchainAssociatedContainer = DevOpsDocument;
24745
+ export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
24173
24746
  export declare type ToolchainCheck3Lo = {
24174
24747
  __typename?: 'ToolchainCheck3LO';
24175
24748
  authorized: Scalars['Boolean'];
@@ -24178,6 +24751,7 @@ export declare type ToolchainContainer = Node & {
24178
24751
  __typename?: 'ToolchainContainer';
24179
24752
  id: Scalars['ID'];
24180
24753
  name: Scalars['String'];
24754
+ workspace?: Maybe<ToolchainContainerWorkspaceDetails>;
24181
24755
  };
24182
24756
  export declare type ToolchainContainerConnection = {
24183
24757
  __typename?: 'ToolchainContainerConnection';
@@ -24190,6 +24764,11 @@ export declare type ToolchainContainerEdge = {
24190
24764
  cursor: Scalars['String'];
24191
24765
  node?: Maybe<ToolchainContainer>;
24192
24766
  };
24767
+ export declare type ToolchainContainerWorkspaceDetails = {
24768
+ __typename?: 'ToolchainContainerWorkspaceDetails';
24769
+ id: Scalars['ID'];
24770
+ name: Scalars['String'];
24771
+ };
24193
24772
  export declare type ToolchainCreateContainerInput = {
24194
24773
  cloudId: Scalars['ID'];
24195
24774
  providerId?: Maybe<Scalars['ID']>;
@@ -24234,11 +24813,13 @@ export declare type ToolchainMutationCreateContainerArgs = {
24234
24813
  };
24235
24814
  export declare enum ToolchainSyncState {
24236
24815
  InProgress = "IN_PROGRESS",
24237
- Complete = "COMPLETE"
24816
+ Complete = "COMPLETE",
24817
+ Error = "ERROR"
24238
24818
  }
24239
24819
  export declare type ToolchainSyncStatus = {
24240
24820
  __typename?: 'ToolchainSyncStatus';
24241
24821
  state: ToolchainSyncState;
24822
+ errorKey?: Maybe<Scalars['String']>;
24242
24823
  };
24243
24824
  export declare type ToolchainWorkspace = Node & {
24244
24825
  __typename?: 'ToolchainWorkspace';
@@ -24492,6 +25073,12 @@ export declare type TransitionFilter = {
24492
25073
  from: Scalars['String'];
24493
25074
  to: Scalars['String'];
24494
25075
  };
25076
+ export declare type TrelloAddHelloMutationResponse = Payload & {
25077
+ __typename?: 'TrelloAddHelloMutationResponse';
25078
+ errors?: Maybe<Array<MutationError>>;
25079
+ hello: Scalars['String'];
25080
+ success: Scalars['Boolean'];
25081
+ };
24495
25082
  export declare type TrelloAttachment = {
24496
25083
  __typename?: 'TrelloAttachment';
24497
25084
  bytes?: Maybe<Scalars['Float']>;
@@ -24522,6 +25109,7 @@ export declare type TrelloBoard = Node & {
24522
25109
  galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
24523
25110
  id: Scalars['ID'];
24524
25111
  lastActivityAt?: Maybe<Scalars['DateTime']>;
25112
+ limits?: Maybe<TrelloBoardLimits>;
24525
25113
  lists?: Maybe<TrelloListConnection>;
24526
25114
  name: Scalars['String'];
24527
25115
  objectId: Scalars['ID'];
@@ -24535,6 +25123,11 @@ export declare type TrelloBoardListsArgs = {
24535
25123
  filter?: Maybe<TrelloListFilterInput>;
24536
25124
  first?: Maybe<Scalars['Int']>;
24537
25125
  };
25126
+ export declare type TrelloBoardAttachmentsLimits = {
25127
+ __typename?: 'TrelloBoardAttachmentsLimits';
25128
+ perBoard?: Maybe<TrelloLimitProps>;
25129
+ perCard?: Maybe<TrelloLimitProps>;
25130
+ };
24538
25131
  export declare type TrelloBoardBackground = {
24539
25132
  __typename?: 'TrelloBoardBackground';
24540
25133
  bottomColor?: Maybe<Scalars['String']>;
@@ -24542,7 +25135,7 @@ export declare type TrelloBoardBackground = {
24542
25135
  color?: Maybe<Scalars['String']>;
24543
25136
  image?: Maybe<Scalars['String']>;
24544
25137
  imageScaled?: Maybe<Array<TrelloScaleProps>>;
24545
- tile: Scalars['Boolean'];
25138
+ tile?: Maybe<Scalars['Boolean']>;
24546
25139
  topColor?: Maybe<Scalars['String']>;
24547
25140
  };
24548
25141
  export declare type TrelloBoardBackgroundUpdatedDeltas = {
@@ -24555,17 +25148,69 @@ export declare type TrelloBoardBackgroundUpdatedDeltas = {
24555
25148
  title?: Maybe<Scalars['Boolean']>;
24556
25149
  topColor?: Maybe<Scalars['Boolean']>;
24557
25150
  };
25151
+ export declare type TrelloBoardBoardsLimits = {
25152
+ __typename?: 'TrelloBoardBoardsLimits';
25153
+ totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
25154
+ totalMembersPerBoard?: Maybe<TrelloLimitProps>;
25155
+ };
25156
+ export declare type TrelloBoardCardsLimits = {
25157
+ __typename?: 'TrelloBoardCardsLimits';
25158
+ openPerBoard?: Maybe<TrelloLimitProps>;
25159
+ openPerList?: Maybe<TrelloLimitProps>;
25160
+ totalPerBoard?: Maybe<TrelloLimitProps>;
25161
+ totalPerList?: Maybe<TrelloLimitProps>;
25162
+ };
25163
+ export declare type TrelloBoardCheckItemsLimits = {
25164
+ __typename?: 'TrelloBoardCheckItemsLimits';
25165
+ perChecklist?: Maybe<TrelloLimitProps>;
25166
+ };
25167
+ export declare type TrelloBoardChecklistsLimits = {
25168
+ __typename?: 'TrelloBoardChecklistsLimits';
25169
+ perBoard?: Maybe<TrelloLimitProps>;
25170
+ perCard?: Maybe<TrelloLimitProps>;
25171
+ };
25172
+ export declare type TrelloBoardCustomFieldOptionsLimits = {
25173
+ __typename?: 'TrelloBoardCustomFieldOptionsLimits';
25174
+ perField?: Maybe<TrelloLimitProps>;
25175
+ };
25176
+ export declare type TrelloBoardCustomFieldsLimits = {
25177
+ __typename?: 'TrelloBoardCustomFieldsLimits';
25178
+ perBoard?: Maybe<TrelloLimitProps>;
25179
+ };
24558
25180
  export declare type TrelloBoardEdge = {
24559
25181
  __typename?: 'TrelloBoardEdge';
24560
25182
  cursor: Scalars['String'];
24561
25183
  node: TrelloBoard;
24562
25184
  };
25185
+ export declare type TrelloBoardLabelsLimits = {
25186
+ __typename?: 'TrelloBoardLabelsLimits';
25187
+ perBoard?: Maybe<TrelloLimitProps>;
25188
+ };
25189
+ export declare type TrelloBoardLimits = {
25190
+ __typename?: 'TrelloBoardLimits';
25191
+ attachments?: Maybe<TrelloBoardAttachmentsLimits>;
25192
+ boards?: Maybe<TrelloBoardBoardsLimits>;
25193
+ cards?: Maybe<TrelloBoardCardsLimits>;
25194
+ checkItems?: Maybe<TrelloBoardCheckItemsLimits>;
25195
+ checklists?: Maybe<TrelloBoardChecklistsLimits>;
25196
+ customFieldOptions?: Maybe<TrelloBoardCustomFieldOptionsLimits>;
25197
+ customFields?: Maybe<TrelloBoardCustomFieldsLimits>;
25198
+ labels?: Maybe<TrelloBoardLabelsLimits>;
25199
+ lists?: Maybe<TrelloBoardListsLimits>;
25200
+ reactions?: Maybe<TrelloBoardReactionsLimits>;
25201
+ stickers?: Maybe<TrelloBoardStickersLimits>;
25202
+ };
25203
+ export declare type TrelloBoardListsLimits = {
25204
+ __typename?: 'TrelloBoardListsLimits';
25205
+ openPerBoard?: Maybe<TrelloLimitProps>;
25206
+ totalPerBoard?: Maybe<TrelloLimitProps>;
25207
+ };
24563
25208
  export declare type TrelloBoardPrefs = {
24564
25209
  __typename?: 'TrelloBoardPrefs';
24565
- background: TrelloBoardBackground;
25210
+ background?: Maybe<TrelloBoardBackground>;
24566
25211
  canInvite?: Maybe<Scalars['Boolean']>;
24567
25212
  hideVotes?: Maybe<Scalars['Boolean']>;
24568
- isTemplate: Scalars['Boolean'];
25213
+ isTemplate?: Maybe<Scalars['Boolean']>;
24569
25214
  };
24570
25215
  export declare type TrelloBoardPrefsUpdatedDeltas = {
24571
25216
  __typename?: 'TrelloBoardPrefsUpdatedDeltas';
@@ -24574,6 +25219,14 @@ export declare type TrelloBoardPrefsUpdatedDeltas = {
24574
25219
  hideVotes?: Maybe<Scalars['Boolean']>;
24575
25220
  isTemplate?: Maybe<Scalars['Boolean']>;
24576
25221
  };
25222
+ export declare type TrelloBoardReactionsLimits = {
25223
+ __typename?: 'TrelloBoardReactionsLimits';
25224
+ perAction?: Maybe<TrelloLimitProps>;
25225
+ };
25226
+ export declare type TrelloBoardStickersLimits = {
25227
+ __typename?: 'TrelloBoardStickersLimits';
25228
+ perCard?: Maybe<TrelloLimitProps>;
25229
+ };
24577
25230
  export declare type TrelloBoardUpdated = {
24578
25231
  __typename?: 'TrelloBoardUpdated';
24579
25232
  _deltas?: Maybe<TrelloBoardUpdatedDeltas>;
@@ -24598,10 +25251,11 @@ export declare type TrelloCard = Node & {
24598
25251
  __typename?: 'TrelloCard';
24599
25252
  attachments?: Maybe<TrelloAttachmentConnection>;
24600
25253
  badges?: Maybe<TrelloCardBadges>;
25254
+ checklists?: Maybe<TrelloChecklistConnection>;
24601
25255
  closed?: Maybe<Scalars['Boolean']>;
24602
25256
  cover?: Maybe<TrelloCardCover>;
24603
25257
  customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
24604
- description?: Maybe<Scalars['String']>;
25258
+ description?: Maybe<TrelloDescription>;
24605
25259
  due?: Maybe<TrelloCardDueInfo>;
24606
25260
  id: Scalars['ID'];
24607
25261
  isTemplate?: Maybe<Scalars['Boolean']>;
@@ -24626,6 +25280,10 @@ export declare type TrelloCardAttachmentsArgs = {
24626
25280
  after?: Maybe<Scalars['String']>;
24627
25281
  first?: Maybe<Scalars['Int']>;
24628
25282
  };
25283
+ export declare type TrelloCardChecklistsArgs = {
25284
+ after?: Maybe<Scalars['String']>;
25285
+ first?: Maybe<Scalars['Int']>;
25286
+ };
24629
25287
  export declare type TrelloCardCustomFieldItemsArgs = {
24630
25288
  after?: Maybe<Scalars['String']>;
24631
25289
  first?: Maybe<Scalars['Int']>;
@@ -24779,9 +25437,30 @@ export declare type TrelloCardViewer = {
24779
25437
  subscribed?: Maybe<Scalars['Boolean']>;
24780
25438
  voted?: Maybe<Scalars['Boolean']>;
24781
25439
  };
25440
+ export declare type TrelloChecklist = {
25441
+ __typename?: 'TrelloChecklist';
25442
+ board?: Maybe<TrelloBoard>;
25443
+ card?: Maybe<TrelloCard>;
25444
+ name?: Maybe<Scalars['String']>;
25445
+ objectId: Scalars['ID'];
25446
+ position?: Maybe<Scalars['Float']>;
25447
+ };
25448
+ export declare type TrelloChecklistConnection = {
25449
+ __typename?: 'TrelloChecklistConnection';
25450
+ edges?: Maybe<Array<TrelloChecklistEdge>>;
25451
+ nodes?: Maybe<Array<TrelloChecklist>>;
25452
+ pageInfo: PageInfo;
25453
+ };
25454
+ export declare type TrelloChecklistEdge = {
25455
+ __typename?: 'TrelloChecklistEdge';
25456
+ cursor: Scalars['String'];
25457
+ node: TrelloChecklist;
25458
+ };
24782
25459
  export declare type TrelloCustomFieldItem = {
24783
25460
  __typename?: 'TrelloCustomFieldItem';
25461
+ model?: Maybe<TrelloCard>;
24784
25462
  objectId: Scalars['ID'];
25463
+ value?: Maybe<TrelloCustomFieldItemValueInfo>;
24785
25464
  };
24786
25465
  export declare type TrelloCustomFieldItemConnection = {
24787
25466
  __typename?: 'TrelloCustomFieldItemConnection';
@@ -24794,6 +25473,43 @@ export declare type TrelloCustomFieldItemEdge = {
24794
25473
  cursor: Scalars['String'];
24795
25474
  node: TrelloCustomFieldItem;
24796
25475
  };
25476
+ export declare type TrelloCustomFieldItemValueInfo = {
25477
+ __typename?: 'TrelloCustomFieldItemValueInfo';
25478
+ checked?: Maybe<Scalars['Boolean']>;
25479
+ date?: Maybe<Scalars['String']>;
25480
+ id?: Maybe<Scalars['ID']>;
25481
+ number?: Maybe<Scalars['Float']>;
25482
+ text?: Maybe<Scalars['String']>;
25483
+ };
25484
+ export declare type TrelloDescription = {
25485
+ __typename?: 'TrelloDescription';
25486
+ customData?: Maybe<TrelloDescriptionData>;
25487
+ text?: Maybe<Scalars['String']>;
25488
+ };
25489
+ export declare type TrelloDescriptionCustomEmoji = {
25490
+ __typename?: 'TrelloDescriptionCustomEmoji';
25491
+ name?: Maybe<Scalars['String']>;
25492
+ url?: Maybe<Scalars['URL']>;
25493
+ };
25494
+ export declare type TrelloDescriptionCustomEmojiConnection = {
25495
+ __typename?: 'TrelloDescriptionCustomEmojiConnection';
25496
+ edges?: Maybe<Array<TrelloDescriptionCustomEmojiEdge>>;
25497
+ nodes?: Maybe<Array<TrelloDescriptionCustomEmoji>>;
25498
+ pageInfo: PageInfo;
25499
+ };
25500
+ export declare type TrelloDescriptionCustomEmojiEdge = {
25501
+ __typename?: 'TrelloDescriptionCustomEmojiEdge';
25502
+ cursor?: Maybe<Scalars['String']>;
25503
+ node?: Maybe<TrelloDescriptionCustomEmoji>;
25504
+ };
25505
+ export declare type TrelloDescriptionData = {
25506
+ __typename?: 'TrelloDescriptionData';
25507
+ emojis?: Maybe<TrelloDescriptionCustomEmojiConnection>;
25508
+ };
25509
+ export declare type TrelloDescriptionDataEmojisArgs = {
25510
+ after?: Maybe<Scalars['String']>;
25511
+ first?: Maybe<Scalars['Int']>;
25512
+ };
24797
25513
  export declare type TrelloHelloInput = {
24798
25514
  hello: Scalars['String'];
24799
25515
  };
@@ -24901,7 +25617,7 @@ export declare type TrelloListUpdatedConnection = {
24901
25617
  };
24902
25618
  export declare type TrelloListUpdatedConnectionDeltas = {
24903
25619
  __typename?: 'TrelloListUpdatedConnectionDeltas';
24904
- nodes: Array<TrelloListUpdatedDeltas>;
25620
+ nodes?: Maybe<Array<TrelloListUpdatedDeltas>>;
24905
25621
  };
24906
25622
  export declare type TrelloListUpdatedDeltas = {
24907
25623
  __typename?: 'TrelloListUpdatedDeltas';
@@ -24918,7 +25634,7 @@ export declare type TrelloListViewer = {
24918
25634
  };
24919
25635
  export declare type TrelloMutationApi = {
24920
25636
  __typename?: 'TrelloMutationApi';
24921
- addHello?: Maybe<GenericMutationResponse>;
25637
+ addHello?: Maybe<TrelloAddHelloMutationResponse>;
24922
25638
  };
24923
25639
  export declare type TrelloMutationApiAddHelloArgs = {
24924
25640
  input: TrelloHelloInput;
@@ -25023,9 +25739,9 @@ export declare type TrelloRecentCardEdge = {
25023
25739
  };
25024
25740
  export declare type TrelloScaleProps = {
25025
25741
  __typename?: 'TrelloScaleProps';
25026
- height: Scalars['Int'];
25027
- url: Scalars['String'];
25028
- width: Scalars['Int'];
25742
+ height?: Maybe<Scalars['Int']>;
25743
+ url?: Maybe<Scalars['String']>;
25744
+ width?: Maybe<Scalars['Int']>;
25029
25745
  };
25030
25746
  export declare type TrelloSticker = {
25031
25747
  __typename?: 'TrelloSticker';
@@ -25811,6 +26527,8 @@ export declare type VirtualAgentCreateIntentRuleProjectionInput = {
25811
26527
  questions?: Maybe<Array<Scalars['String']>>;
25812
26528
  confirmationMessage?: Maybe<Scalars['String']>;
25813
26529
  suggestionButtonText?: Maybe<Scalars['String']>;
26530
+ templateId?: Maybe<Scalars['String']>;
26531
+ templateType?: Maybe<VirtualAgentIntentTemplateType>;
25814
26532
  };
25815
26533
  export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
25816
26534
  __typename?: 'VirtualAgentCreateIntentRuleProjectionPayload';
@@ -25960,6 +26678,7 @@ export declare type VirtualAgentIntentTemplateEdge = {
25960
26678
  node?: Maybe<VirtualAgentIntentTemplate>;
25961
26679
  };
25962
26680
  export declare enum VirtualAgentIntentTemplateType {
26681
+ Standard = "STANDARD",
25963
26682
  Discovered = "DISCOVERED",
25964
26683
  Shared = "SHARED"
25965
26684
  }