@forge/cli-shared 3.14.1-next.2 → 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
  };
@@ -12556,6 +12691,26 @@ export declare type JiraIssueSearchViewPayload = Payload & {
12556
12691
  errors?: Maybe<Array<MutationError>>;
12557
12692
  view?: Maybe<JiraIssueSearchView>;
12558
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
+ };
12559
12714
  export declare type JiraIssueType = Node & {
12560
12715
  __typename?: 'JiraIssueType';
12561
12716
  id: Scalars['ID'];
@@ -12633,7 +12788,7 @@ export declare type JiraJqlFromNaturalLanguage = {
12633
12788
  generatedJQL?: Maybe<Scalars['String']>;
12634
12789
  generatedJQLError?: Maybe<JiraJqlGenerationError>;
12635
12790
  };
12636
- export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
12791
+ export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError;
12637
12792
  export declare enum JiraJqlAutocompleteType {
12638
12793
  None = "NONE",
12639
12794
  Component = "COMPONENT",
@@ -13280,6 +13435,16 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
13280
13435
  last?: Maybe<Scalars['Int']>;
13281
13436
  before?: Maybe<Scalars['String']>;
13282
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
+ };
13283
13448
  export declare type JiraMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
13284
13449
  __typename?: 'JiraMultipleSelectUserPickerField';
13285
13450
  id: Scalars['ID'];
@@ -13390,12 +13555,17 @@ export declare type JiraMutation = {
13390
13555
  updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
13391
13556
  updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
13392
13557
  updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
13558
+ updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
13559
+ updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
13560
+ updateProjectField?: Maybe<JiraProjectFieldPayload>;
13561
+ updateTeamField?: Maybe<JiraTeamFieldPayload>;
13393
13562
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
13394
13563
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
13395
13564
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
13396
13565
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
13397
13566
  addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
13398
13567
  deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
13568
+ updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
13399
13569
  devOps?: Maybe<JiraDevOpsMutation>;
13400
13570
  createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
13401
13571
  updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
@@ -13557,6 +13727,18 @@ export declare type JiraMutationUpdateRadioSelectFieldArgs = {
13557
13727
  export declare type JiraMutationUpdateComponentsFieldArgs = {
13558
13728
  input: JiraUpdateComponentsFieldInput;
13559
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
+ };
13560
13742
  export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
13561
13743
  input: JiraPermissionSchemeAddGrantInput;
13562
13744
  };
@@ -13576,6 +13758,9 @@ export declare type JiraMutationAddJiraVersionApproverArgs = {
13576
13758
  export declare type JiraMutationDeleteJiraVersionApproverArgs = {
13577
13759
  id: Scalars['ID'];
13578
13760
  };
13761
+ export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
13762
+ input: JiraVersionUpdateApproverDescriptionInput;
13763
+ };
13579
13764
  export declare type JiraMutationCreateProjectShortcutArgs = {
13580
13765
  input: JiraCreateShortcutInput;
13581
13766
  };
@@ -14499,6 +14684,16 @@ export declare type JiraProjectFieldProjectsArgs = {
14499
14684
  before?: Maybe<Scalars['String']>;
14500
14685
  recent?: Maybe<Scalars['Boolean']>;
14501
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
+ };
14502
14697
  export declare type JiraProjectFilterInput = {
14503
14698
  types?: Maybe<Array<JiraProjectType>>;
14504
14699
  projectCategoryId?: Maybe<Scalars['ID']>;
@@ -14678,6 +14873,7 @@ export declare type JiraQuery = {
14678
14873
  systemFilters?: Maybe<JiraSystemFilterConnection>;
14679
14874
  allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
14680
14875
  devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
14876
+ getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
14681
14877
  issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
14682
14878
  issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
14683
14879
  favourites?: Maybe<JiraFavouriteConnection>;
@@ -14916,6 +15112,10 @@ export declare type JiraQueryDevOpsProvidersArgs = {
14916
15112
  cloudId: Scalars['ID'];
14917
15113
  filter?: Maybe<Array<JiraDevOpsCapability>>;
14918
15114
  };
15115
+ export declare type JiraQueryGetIssueTransitionByIssueIdArgs = {
15116
+ transitionId: Scalars['String'];
15117
+ issueId: Scalars['ID'];
15118
+ };
14919
15119
  export declare type JiraQueryIssueContainersByTypeArgs = {
14920
15120
  input: JiraIssueItemSystemContainerTypeWithIdInput;
14921
15121
  };
@@ -15424,6 +15624,52 @@ export declare type JiraScmRepository = {
15424
15624
  name?: Maybe<Scalars['String']>;
15425
15625
  entityUrl?: Maybe<Scalars['URL']>;
15426
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
+ };
15427
15673
  export declare type JiraSecurityLevel = Node & {
15428
15674
  __typename?: 'JiraSecurityLevel';
15429
15675
  id: Scalars['ID'];
@@ -16479,6 +16725,23 @@ export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConf
16479
16725
  status: JiraStatus;
16480
16726
  fieldConfig?: Maybe<JiraFieldConfig>;
16481
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>;
16482
16745
  };
16483
16746
  export declare type JiraStoryPointEstimateFieldOperationInput = {
16484
16747
  operation: JiraSingleValueFieldOperations;
@@ -16568,6 +16831,16 @@ export declare type JiraTeamFieldTeamsArgs = {
16568
16831
  last?: Maybe<Scalars['Int']>;
16569
16832
  before?: Maybe<Scalars['String']>;
16570
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
+ };
16571
16844
  export declare type JiraTeamView = {
16572
16845
  __typename?: 'JiraTeamView';
16573
16846
  jiraSuppliedId: Scalars['ID'];
@@ -16575,7 +16848,22 @@ export declare type JiraTeamView = {
16575
16848
  jiraSuppliedVisibility?: Maybe<Scalars['Boolean']>;
16576
16849
  jiraSuppliedName?: Maybe<Scalars['String']>;
16577
16850
  jiraSuppliedAvatar?: Maybe<JiraAvatar>;
16578
- 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'];
16579
16867
  };
16580
16868
  export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
16581
16869
  __typename?: 'JiraTeamViewField';
@@ -16586,10 +16874,35 @@ export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldCo
16586
16874
  name: Scalars['String'];
16587
16875
  description?: Maybe<Scalars['String']>;
16588
16876
  selectedTeam?: Maybe<JiraTeamView>;
16877
+ teams?: Maybe<JiraTeamViewConnection>;
16589
16878
  searchUrl?: Maybe<Scalars['String']>;
16590
16879
  fieldConfig?: Maybe<JiraFieldConfig>;
16591
16880
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
16592
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
+ };
16593
16906
  export declare enum JiraTimeFormat {
16594
16907
  Pretty = "PRETTY",
16595
16908
  Days = "DAYS",
@@ -16630,6 +16943,38 @@ export declare enum JiraTimeUnit {
16630
16943
  Day = "DAY",
16631
16944
  Week = "WEEK"
16632
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
+ };
16633
16978
  export declare type JiraUpdateCascadingSelectFieldInput = {
16634
16979
  id: Scalars['ID'];
16635
16980
  operation: JiraCascadingSelectFieldOperationInput;
@@ -16677,6 +17022,10 @@ export declare type JiraUpdateLabelsFieldInput = {
16677
17022
  id: Scalars['ID'];
16678
17023
  operations: Array<JiraLabelsFieldOperationInput>;
16679
17024
  };
17025
+ export declare type JiraUpdateMultipleSelectFieldInput = {
17026
+ id: Scalars['ID'];
17027
+ operations: Array<JiraMultipleSelectFieldOperationInput>;
17028
+ };
16680
17029
  export declare type JiraUpdateNumberFieldInput = {
16681
17030
  id: Scalars['ID'];
16682
17031
  operation: JiraNumberFieldOperationInput;
@@ -16685,6 +17034,10 @@ export declare type JiraUpdatePriorityFieldInput = {
16685
17034
  id: Scalars['ID'];
16686
17035
  operation: JiraPriorityFieldOperationInput;
16687
17036
  };
17037
+ export declare type JiraUpdateProjectFieldInput = {
17038
+ id: Scalars['ID'];
17039
+ operation: JiraProjectFieldOperationInput;
17040
+ };
16688
17041
  export declare type JiraUpdateRadioSelectFieldInput = {
16689
17042
  id: Scalars['ID'];
16690
17043
  operation: JiraRadioSelectFieldOperationInput;
@@ -16723,10 +17076,18 @@ export declare type JiraUpdateSprintFieldInput = {
16723
17076
  id: Scalars['ID'];
16724
17077
  operation: JiraSprintFieldOperationInput;
16725
17078
  };
17079
+ export declare type JiraUpdateStatusFieldInput = {
17080
+ id: Scalars['ID'];
17081
+ statusTransitionId: Scalars['Int'];
17082
+ };
16726
17083
  export declare type JiraUpdateStoryPointEstimateFieldInput = {
16727
17084
  id: Scalars['ID'];
16728
17085
  operation: JiraStoryPointEstimateFieldOperationInput;
16729
17086
  };
17087
+ export declare type JiraUpdateTeamFieldInput = {
17088
+ id: Scalars['ID'];
17089
+ operation: JiraTeamFieldOperationInput;
17090
+ };
16730
17091
  export declare type JiraUpdateTimeTrackingFieldInput = {
16731
17092
  id: Scalars['ID'];
16732
17093
  originalEstimate?: Maybe<JiraEstimateInput>;
@@ -17334,6 +17695,16 @@ export declare type JiraVersionUpdateApproverDeclineReasonPayload = Payload & {
17334
17695
  errors?: Maybe<Array<MutationError>>;
17335
17696
  approver?: Maybe<JiraVersionApprover>;
17336
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
+ };
17337
17708
  export declare type JiraVersionUpdateMutationInput = {
17338
17709
  id: Scalars['ID'];
17339
17710
  name: Scalars['String'];
@@ -18885,6 +19256,10 @@ export declare enum NlpErrorState {
18885
19256
  SubjectiveQuery = "SUBJECTIVE_QUERY",
18886
19257
  AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
18887
19258
  }
19259
+ export declare type NlpFollowUpResponse = {
19260
+ __typename?: 'NlpFollowUpResponse';
19261
+ followUps?: Maybe<Array<Scalars['String']>>;
19262
+ };
18888
19263
  export declare type NlpSearchResponse = {
18889
19264
  __typename?: 'NlpSearchResponse';
18890
19265
  nlpResults?: Maybe<Array<NlpSearchResult>>;
@@ -20601,6 +20976,7 @@ export declare type Query = {
20601
20976
  opsgenie?: Maybe<OpsgenieQuery>;
20602
20977
  releaseNotes: ContentPlatformReleaseNotesConnection;
20603
20978
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
20979
+ contentFacet: ContentPlatformContentFacetConnection;
20604
20980
  smarts?: Maybe<SmartsQueryApi>;
20605
20981
  jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
20606
20982
  appRecommendations?: Maybe<AppRecQuery>;
@@ -20626,7 +21002,6 @@ export declare type Query = {
20626
21002
  codeInJira?: Maybe<CodeInJira>;
20627
21003
  partnerCatalogApi?: Maybe<PartnerCatalogApi>;
20628
21004
  jira?: Maybe<JiraQuery>;
20629
- team?: Maybe<TeamQuery>;
20630
21005
  testing?: Maybe<Testing>;
20631
21006
  appStoredEntity?: Maybe<AppStoredEntity>;
20632
21007
  appStoredEntities?: Maybe<AppStoredEntityConnection>;
@@ -20706,6 +21081,7 @@ export declare type Query = {
20706
21081
  appLogLines?: Maybe<AppLogLineConnection>;
20707
21082
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
20708
21083
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
21084
+ team?: Maybe<TeamQuery>;
20709
21085
  roadmaps?: Maybe<RoadmapsQuery>;
20710
21086
  jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
20711
21087
  jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
@@ -20719,7 +21095,9 @@ export declare type Query = {
20719
21095
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
20720
21096
  oauthClients?: Maybe<OAuthClientsQuery>;
20721
21097
  helpCenter?: Maybe<HelpCenterQueryApi>;
21098
+ isSainSearchEnabled?: Maybe<Scalars['Boolean']>;
20722
21099
  nlpSearch?: Maybe<NlpSearchResponse>;
21100
+ nlpFollowUp?: Maybe<NlpFollowUpResponse>;
20723
21101
  };
20724
21102
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
20725
21103
  id: Scalars['ID'];
@@ -20753,6 +21131,13 @@ export declare type QueryReleaseNoteArgs = {
20753
21131
  id: Scalars['String'];
20754
21132
  publishedOnly?: Maybe<Scalars['Boolean']>;
20755
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
+ };
20756
21141
  export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
20757
21142
  id: Scalars['ID'];
20758
21143
  cloudId: Scalars['ID'];
@@ -21089,10 +21474,17 @@ export declare type QueryAppDeploymentArgs = {
21089
21474
  export declare type QueryHelpCenterArgs = {
21090
21475
  cloudId: Scalars['ID'];
21091
21476
  };
21477
+ export declare type QueryIsSainSearchEnabledArgs = {
21478
+ cloudId: Scalars['String'];
21479
+ };
21092
21480
  export declare type QueryNlpSearchArgs = {
21093
21481
  query?: Maybe<Scalars['String']>;
21094
21482
  locations: Array<Scalars['String']>;
21095
21483
  };
21484
+ export declare type QueryNlpFollowUpArgs = {
21485
+ query?: Maybe<Scalars['String']>;
21486
+ locations: Array<Scalars['String']>;
21487
+ };
21096
21488
  export declare type QueryError = {
21097
21489
  __typename?: 'QueryError';
21098
21490
  identifier?: Maybe<Scalars['ID']>;
@@ -21139,15 +21531,44 @@ export declare enum RateLimitingCurrency {
21139
21531
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
21140
21532
  NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
21141
21533
  TeamsCurrency = "TEAMS_CURRENCY",
21142
- TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
21143
21534
  TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
21144
- TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
21535
+ TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
21145
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",
21146
21563
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
21147
21564
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
21148
21565
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
21566
+ ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
21149
21567
  DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
21150
21568
  DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
21569
+ TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
21570
+ TeamV2Currency = "TEAM_V2_CURRENCY",
21571
+ TeamMembersV2Currency = "TEAM_MEMBERS_V2_CURRENCY",
21151
21572
  HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
21152
21573
  ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
21153
21574
  ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
@@ -21354,6 +21775,7 @@ export declare type RoadmapComponent = {
21354
21775
  export declare type RoadmapConfiguration = {
21355
21776
  __typename?: 'RoadmapConfiguration';
21356
21777
  isCrossProject: Scalars['Boolean'];
21778
+ isCrossProjectInconsistent: Scalars['Boolean'];
21357
21779
  roadmapFeatureEnabled: Scalars['Boolean'];
21358
21780
  rankIssuesSupported: Scalars['Boolean'];
21359
21781
  dependencies?: Maybe<RoadmapDependencyConfiguration>;
@@ -22235,7 +22657,8 @@ export declare enum Scope {
22235
22657
  MigrateConfluence = "MIGRATE_CONFLUENCE",
22236
22658
  ReadTeam = "READ_TEAM",
22237
22659
  ReadTeamMembers = "READ_TEAM_MEMBERS",
22238
- TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL"
22660
+ TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
22661
+ CatalogRead = "CATALOG_READ"
22239
22662
  }
22240
22663
  export declare type ScopeSprintIssue = {
22241
22664
  __typename?: 'ScopeSprintIssue';
@@ -22747,6 +23170,7 @@ export declare enum ShepherdAlertTemplateType {
22747
23170
  AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
22748
23171
  AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
22749
23172
  AddedOrgadmin = "ADDED_ORGADMIN",
23173
+ ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
22750
23174
  ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
22751
23175
  ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
22752
23176
  ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
@@ -24029,33 +24453,68 @@ export declare type TeamMemberConnection = {
24029
24453
  nodes?: Maybe<Array<Maybe<TeamMember>>>;
24030
24454
  pageInfo: PageInfo;
24031
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
+ };
24032
24462
  export declare type TeamMemberEdge = {
24033
24463
  __typename?: 'TeamMemberEdge';
24034
24464
  node?: Maybe<TeamMember>;
24035
24465
  cursor: Scalars['String'];
24036
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
+ };
24037
24478
  export declare type TeamMembershipFilter = {
24038
24479
  memberIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
24039
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
+ }
24040
24494
  export declare type TeamQuery = {
24041
24495
  __typename?: 'TeamQuery';
24496
+ teamV2?: Maybe<TeamV2>;
24497
+ teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
24042
24498
  team?: Maybe<Team>;
24043
24499
  teamSearch?: Maybe<TeamSearchResultConnection>;
24044
- teamSearchV2?: Maybe<TeamSearchResultConnection>;
24045
24500
  };
24046
- export declare type TeamQueryTeamArgs = {
24501
+ export declare type TeamQueryTeamV2Args = {
24047
24502
  id: Scalars['ID'];
24503
+ siteId: Scalars['String'];
24048
24504
  };
24049
- export declare type TeamQueryTeamSearchArgs = {
24505
+ export declare type TeamQueryTeamSearchV2Args = {
24050
24506
  organizationId: Scalars['ID'];
24507
+ siteId: Scalars['String'];
24051
24508
  filter?: Maybe<TeamSearchFilter>;
24052
24509
  first?: Maybe<Scalars['Int']>;
24053
24510
  after?: Maybe<Scalars['String']>;
24054
24511
  sortBy?: Maybe<Array<Maybe<TeamSort>>>;
24055
24512
  };
24056
- export declare type TeamQueryTeamSearchV2Args = {
24513
+ export declare type TeamQueryTeamArgs = {
24514
+ id: Scalars['ID'];
24515
+ };
24516
+ export declare type TeamQueryTeamSearchArgs = {
24057
24517
  organizationId: Scalars['ID'];
24058
- siteId: Scalars['String'];
24059
24518
  filter?: Maybe<TeamSearchFilter>;
24060
24519
  first?: Maybe<Scalars['Int']>;
24061
24520
  after?: Maybe<Scalars['String']>;
@@ -24077,11 +24536,28 @@ export declare type TeamSearchResultConnection = {
24077
24536
  nodes?: Maybe<Array<Maybe<TeamSearchResult>>>;
24078
24537
  pageInfo?: Maybe<PageInfo>;
24079
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
+ };
24080
24545
  export declare type TeamSearchResultEdge = {
24081
24546
  __typename?: 'TeamSearchResultEdge';
24082
24547
  node?: Maybe<TeamSearchResult>;
24083
24548
  cursor: Scalars['String'];
24084
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
+ };
24085
24561
  export declare type TeamSort = {
24086
24562
  field: TeamSortField;
24087
24563
  order?: Maybe<TeamSortOrder>;
@@ -24100,6 +24576,30 @@ export declare enum TeamState {
24100
24576
  Disbanded = "DISBANDED",
24101
24577
  Purged = "PURGED"
24102
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
+ };
24103
24603
  export declare type TenantContext = {
24104
24604
  __typename?: 'TenantContext';
24105
24605
  cloudId?: Maybe<Scalars['ID']>;
@@ -24242,7 +24742,7 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
24242
24742
  errors?: Maybe<Array<MutationError>>;
24243
24743
  containers?: Maybe<Array<ToolchainAssociatedContainer>>;
24244
24744
  };
24245
- export declare type ToolchainAssociatedContainer = DevOpsDocument;
24745
+ export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
24246
24746
  export declare type ToolchainCheck3Lo = {
24247
24747
  __typename?: 'ToolchainCheck3LO';
24248
24748
  authorized: Scalars['Boolean'];
@@ -24251,6 +24751,7 @@ export declare type ToolchainContainer = Node & {
24251
24751
  __typename?: 'ToolchainContainer';
24252
24752
  id: Scalars['ID'];
24253
24753
  name: Scalars['String'];
24754
+ workspace?: Maybe<ToolchainContainerWorkspaceDetails>;
24254
24755
  };
24255
24756
  export declare type ToolchainContainerConnection = {
24256
24757
  __typename?: 'ToolchainContainerConnection';
@@ -24263,6 +24764,11 @@ export declare type ToolchainContainerEdge = {
24263
24764
  cursor: Scalars['String'];
24264
24765
  node?: Maybe<ToolchainContainer>;
24265
24766
  };
24767
+ export declare type ToolchainContainerWorkspaceDetails = {
24768
+ __typename?: 'ToolchainContainerWorkspaceDetails';
24769
+ id: Scalars['ID'];
24770
+ name: Scalars['String'];
24771
+ };
24266
24772
  export declare type ToolchainCreateContainerInput = {
24267
24773
  cloudId: Scalars['ID'];
24268
24774
  providerId?: Maybe<Scalars['ID']>;
@@ -24307,11 +24813,13 @@ export declare type ToolchainMutationCreateContainerArgs = {
24307
24813
  };
24308
24814
  export declare enum ToolchainSyncState {
24309
24815
  InProgress = "IN_PROGRESS",
24310
- Complete = "COMPLETE"
24816
+ Complete = "COMPLETE",
24817
+ Error = "ERROR"
24311
24818
  }
24312
24819
  export declare type ToolchainSyncStatus = {
24313
24820
  __typename?: 'ToolchainSyncStatus';
24314
24821
  state: ToolchainSyncState;
24822
+ errorKey?: Maybe<Scalars['String']>;
24315
24823
  };
24316
24824
  export declare type ToolchainWorkspace = Node & {
24317
24825
  __typename?: 'ToolchainWorkspace';
@@ -24565,6 +25073,12 @@ export declare type TransitionFilter = {
24565
25073
  from: Scalars['String'];
24566
25074
  to: Scalars['String'];
24567
25075
  };
25076
+ export declare type TrelloAddHelloMutationResponse = Payload & {
25077
+ __typename?: 'TrelloAddHelloMutationResponse';
25078
+ errors?: Maybe<Array<MutationError>>;
25079
+ hello: Scalars['String'];
25080
+ success: Scalars['Boolean'];
25081
+ };
24568
25082
  export declare type TrelloAttachment = {
24569
25083
  __typename?: 'TrelloAttachment';
24570
25084
  bytes?: Maybe<Scalars['Float']>;
@@ -24595,6 +25109,7 @@ export declare type TrelloBoard = Node & {
24595
25109
  galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
24596
25110
  id: Scalars['ID'];
24597
25111
  lastActivityAt?: Maybe<Scalars['DateTime']>;
25112
+ limits?: Maybe<TrelloBoardLimits>;
24598
25113
  lists?: Maybe<TrelloListConnection>;
24599
25114
  name: Scalars['String'];
24600
25115
  objectId: Scalars['ID'];
@@ -24608,6 +25123,11 @@ export declare type TrelloBoardListsArgs = {
24608
25123
  filter?: Maybe<TrelloListFilterInput>;
24609
25124
  first?: Maybe<Scalars['Int']>;
24610
25125
  };
25126
+ export declare type TrelloBoardAttachmentsLimits = {
25127
+ __typename?: 'TrelloBoardAttachmentsLimits';
25128
+ perBoard?: Maybe<TrelloLimitProps>;
25129
+ perCard?: Maybe<TrelloLimitProps>;
25130
+ };
24611
25131
  export declare type TrelloBoardBackground = {
24612
25132
  __typename?: 'TrelloBoardBackground';
24613
25133
  bottomColor?: Maybe<Scalars['String']>;
@@ -24615,7 +25135,7 @@ export declare type TrelloBoardBackground = {
24615
25135
  color?: Maybe<Scalars['String']>;
24616
25136
  image?: Maybe<Scalars['String']>;
24617
25137
  imageScaled?: Maybe<Array<TrelloScaleProps>>;
24618
- tile: Scalars['Boolean'];
25138
+ tile?: Maybe<Scalars['Boolean']>;
24619
25139
  topColor?: Maybe<Scalars['String']>;
24620
25140
  };
24621
25141
  export declare type TrelloBoardBackgroundUpdatedDeltas = {
@@ -24628,17 +25148,69 @@ export declare type TrelloBoardBackgroundUpdatedDeltas = {
24628
25148
  title?: Maybe<Scalars['Boolean']>;
24629
25149
  topColor?: Maybe<Scalars['Boolean']>;
24630
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
+ };
24631
25180
  export declare type TrelloBoardEdge = {
24632
25181
  __typename?: 'TrelloBoardEdge';
24633
25182
  cursor: Scalars['String'];
24634
25183
  node: TrelloBoard;
24635
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
+ };
24636
25208
  export declare type TrelloBoardPrefs = {
24637
25209
  __typename?: 'TrelloBoardPrefs';
24638
- background: TrelloBoardBackground;
25210
+ background?: Maybe<TrelloBoardBackground>;
24639
25211
  canInvite?: Maybe<Scalars['Boolean']>;
24640
25212
  hideVotes?: Maybe<Scalars['Boolean']>;
24641
- isTemplate: Scalars['Boolean'];
25213
+ isTemplate?: Maybe<Scalars['Boolean']>;
24642
25214
  };
24643
25215
  export declare type TrelloBoardPrefsUpdatedDeltas = {
24644
25216
  __typename?: 'TrelloBoardPrefsUpdatedDeltas';
@@ -24647,6 +25219,14 @@ export declare type TrelloBoardPrefsUpdatedDeltas = {
24647
25219
  hideVotes?: Maybe<Scalars['Boolean']>;
24648
25220
  isTemplate?: Maybe<Scalars['Boolean']>;
24649
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
+ };
24650
25230
  export declare type TrelloBoardUpdated = {
24651
25231
  __typename?: 'TrelloBoardUpdated';
24652
25232
  _deltas?: Maybe<TrelloBoardUpdatedDeltas>;
@@ -24671,10 +25251,11 @@ export declare type TrelloCard = Node & {
24671
25251
  __typename?: 'TrelloCard';
24672
25252
  attachments?: Maybe<TrelloAttachmentConnection>;
24673
25253
  badges?: Maybe<TrelloCardBadges>;
25254
+ checklists?: Maybe<TrelloChecklistConnection>;
24674
25255
  closed?: Maybe<Scalars['Boolean']>;
24675
25256
  cover?: Maybe<TrelloCardCover>;
24676
25257
  customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
24677
- description?: Maybe<Scalars['String']>;
25258
+ description?: Maybe<TrelloDescription>;
24678
25259
  due?: Maybe<TrelloCardDueInfo>;
24679
25260
  id: Scalars['ID'];
24680
25261
  isTemplate?: Maybe<Scalars['Boolean']>;
@@ -24699,6 +25280,10 @@ export declare type TrelloCardAttachmentsArgs = {
24699
25280
  after?: Maybe<Scalars['String']>;
24700
25281
  first?: Maybe<Scalars['Int']>;
24701
25282
  };
25283
+ export declare type TrelloCardChecklistsArgs = {
25284
+ after?: Maybe<Scalars['String']>;
25285
+ first?: Maybe<Scalars['Int']>;
25286
+ };
24702
25287
  export declare type TrelloCardCustomFieldItemsArgs = {
24703
25288
  after?: Maybe<Scalars['String']>;
24704
25289
  first?: Maybe<Scalars['Int']>;
@@ -24852,9 +25437,30 @@ export declare type TrelloCardViewer = {
24852
25437
  subscribed?: Maybe<Scalars['Boolean']>;
24853
25438
  voted?: Maybe<Scalars['Boolean']>;
24854
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
+ };
24855
25459
  export declare type TrelloCustomFieldItem = {
24856
25460
  __typename?: 'TrelloCustomFieldItem';
25461
+ model?: Maybe<TrelloCard>;
24857
25462
  objectId: Scalars['ID'];
25463
+ value?: Maybe<TrelloCustomFieldItemValueInfo>;
24858
25464
  };
24859
25465
  export declare type TrelloCustomFieldItemConnection = {
24860
25466
  __typename?: 'TrelloCustomFieldItemConnection';
@@ -24867,6 +25473,43 @@ export declare type TrelloCustomFieldItemEdge = {
24867
25473
  cursor: Scalars['String'];
24868
25474
  node: TrelloCustomFieldItem;
24869
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
+ };
24870
25513
  export declare type TrelloHelloInput = {
24871
25514
  hello: Scalars['String'];
24872
25515
  };
@@ -24974,7 +25617,7 @@ export declare type TrelloListUpdatedConnection = {
24974
25617
  };
24975
25618
  export declare type TrelloListUpdatedConnectionDeltas = {
24976
25619
  __typename?: 'TrelloListUpdatedConnectionDeltas';
24977
- nodes: Array<TrelloListUpdatedDeltas>;
25620
+ nodes?: Maybe<Array<TrelloListUpdatedDeltas>>;
24978
25621
  };
24979
25622
  export declare type TrelloListUpdatedDeltas = {
24980
25623
  __typename?: 'TrelloListUpdatedDeltas';
@@ -24991,7 +25634,7 @@ export declare type TrelloListViewer = {
24991
25634
  };
24992
25635
  export declare type TrelloMutationApi = {
24993
25636
  __typename?: 'TrelloMutationApi';
24994
- addHello?: Maybe<GenericMutationResponse>;
25637
+ addHello?: Maybe<TrelloAddHelloMutationResponse>;
24995
25638
  };
24996
25639
  export declare type TrelloMutationApiAddHelloArgs = {
24997
25640
  input: TrelloHelloInput;
@@ -25096,9 +25739,9 @@ export declare type TrelloRecentCardEdge = {
25096
25739
  };
25097
25740
  export declare type TrelloScaleProps = {
25098
25741
  __typename?: 'TrelloScaleProps';
25099
- height: Scalars['Int'];
25100
- url: Scalars['String'];
25101
- width: Scalars['Int'];
25742
+ height?: Maybe<Scalars['Int']>;
25743
+ url?: Maybe<Scalars['String']>;
25744
+ width?: Maybe<Scalars['Int']>;
25102
25745
  };
25103
25746
  export declare type TrelloSticker = {
25104
25747
  __typename?: 'TrelloSticker';
@@ -25884,6 +26527,8 @@ export declare type VirtualAgentCreateIntentRuleProjectionInput = {
25884
26527
  questions?: Maybe<Array<Scalars['String']>>;
25885
26528
  confirmationMessage?: Maybe<Scalars['String']>;
25886
26529
  suggestionButtonText?: Maybe<Scalars['String']>;
26530
+ templateId?: Maybe<Scalars['String']>;
26531
+ templateType?: Maybe<VirtualAgentIntentTemplateType>;
25887
26532
  };
25888
26533
  export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
25889
26534
  __typename?: 'VirtualAgentCreateIntentRuleProjectionPayload';
@@ -26033,6 +26678,7 @@ export declare type VirtualAgentIntentTemplateEdge = {
26033
26678
  node?: Maybe<VirtualAgentIntentTemplate>;
26034
26679
  };
26035
26680
  export declare enum VirtualAgentIntentTemplateType {
26681
+ Standard = "STANDARD",
26036
26682
  Discovered = "DISCOVERED",
26037
26683
  Shared = "SHARED"
26038
26684
  }