@forge/cli-shared 6.7.0-next.11 → 6.7.0-next.11-experimental-26b1489

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.7.0-next.11-experimental-26b1489
4
+
5
+ ### Minor Changes
6
+
7
+ - 9471e5d: Package Node runtime in a central location and remove 'bundled'
8
+
9
+ ### Patch Changes
10
+
11
+ - 70cd30c: Updated RoA web trigger module warning to be more generic
12
+ - 4879128: Revert Changes: Added config file utility method to only read appId and refactored commands to perform validation after command configuration
13
+ - cf5bc5c: Improve XPA error messages
14
+ - 272d770: Remove LaunchDarkly integration completely
15
+ - 78a006f: Fixed handling of product and site params without any value
16
+ - 30f197e: Refactoring to enable alternate bundler support
17
+ - Updated dependencies [2712852]
18
+ - Updated dependencies [009ab70]
19
+ - Updated dependencies [4c15b3a]
20
+ - Updated dependencies [359756b]
21
+ - Updated dependencies [34db0f6]
22
+ - Updated dependencies [01ca857]
23
+ - Updated dependencies [70badb7]
24
+ - @forge/manifest@8.8.0-next.5-experimental-26b1489
25
+
3
26
  ## 6.7.0-next.11
4
27
 
5
28
  ### Patch Changes
@@ -23662,6 +23662,7 @@ export declare type EcosystemMarketplaceAppVersion = {
23662
23662
  buildNumber: Scalars['Float']['output'];
23663
23663
  deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
23664
23664
  editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
23665
+ endUserLicenseAgreementUrl?: Maybe<Scalars['String']['output']>;
23665
23666
  isSupported?: Maybe<Scalars['Boolean']['output']>;
23666
23667
  paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
23667
23668
  version: Scalars['String']['output'];
@@ -32149,6 +32150,7 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
32149
32150
  export declare type GraphStoreIssueHasAutodevJobArgs = {
32150
32151
  after?: InputMaybe<Scalars['String']['input']>;
32151
32152
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32153
+ filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
32152
32154
  first?: InputMaybe<Scalars['Int']['input']>;
32153
32155
  id: Scalars['ID']['input'];
32154
32156
  sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
@@ -32156,6 +32158,7 @@ export declare type GraphStoreIssueHasAutodevJobArgs = {
32156
32158
  export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
32157
32159
  after?: InputMaybe<Scalars['String']['input']>;
32158
32160
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32161
+ filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
32159
32162
  first?: InputMaybe<Scalars['Int']['input']>;
32160
32163
  id: Scalars['ID']['input'];
32161
32164
  sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
@@ -32744,6 +32747,7 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
32744
32747
  export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
32745
32748
  after?: InputMaybe<Scalars['String']['input']>;
32746
32749
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32750
+ filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
32747
32751
  first?: InputMaybe<Scalars['Int']['input']>;
32748
32752
  id: Scalars['ID']['input'];
32749
32753
  sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
@@ -32751,6 +32755,7 @@ export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
32751
32755
  export declare type GraphStoreProjectAssociatedAutodevJobInverseArgs = {
32752
32756
  after?: InputMaybe<Scalars['String']['input']>;
32753
32757
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32758
+ filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
32754
32759
  first?: InputMaybe<Scalars['Int']['input']>;
32755
32760
  id: Scalars['ID']['input'];
32756
32761
  sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
@@ -40712,8 +40717,43 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
40712
40717
  export declare type GraphStoreIssueHasAssigneeSortInput = {
40713
40718
  lastModified?: InputMaybe<GraphStoreSortInput>;
40714
40719
  };
40720
+ export declare enum GraphStoreIssueHasAutodevJobAutodevJobStatus {
40721
+ Cancelled = "CANCELLED",
40722
+ Completed = "COMPLETED",
40723
+ Failed = "FAILED",
40724
+ InProgress = "IN_PROGRESS",
40725
+ Pending = "PENDING",
40726
+ Unknown = "UNKNOWN"
40727
+ }
40728
+ export declare type GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput = {
40729
+ is?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
40730
+ isNot?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
40731
+ };
40732
+ export declare type GraphStoreIssueHasAutodevJobConditionalFilterInput = {
40733
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
40734
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
40735
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
40736
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
40737
+ to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
40738
+ to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
40739
+ to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
40740
+ to_status?: InputMaybe<GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput>;
40741
+ to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
40742
+ };
40743
+ export declare type GraphStoreIssueHasAutodevJobFilterInput = {
40744
+ and?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
40745
+ or?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
40746
+ };
40715
40747
  export declare type GraphStoreIssueHasAutodevJobSortInput = {
40748
+ createdAt?: InputMaybe<GraphStoreSortInput>;
40749
+ fromAti?: InputMaybe<GraphStoreSortInput>;
40716
40750
  lastModified?: InputMaybe<GraphStoreSortInput>;
40751
+ toAti?: InputMaybe<GraphStoreSortInput>;
40752
+ to_agentAri?: InputMaybe<GraphStoreSortInput>;
40753
+ to_createdAt?: InputMaybe<GraphStoreSortInput>;
40754
+ to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
40755
+ to_status?: InputMaybe<GraphStoreSortInput>;
40756
+ to_updatedAt?: InputMaybe<GraphStoreSortInput>;
40717
40757
  };
40718
40758
  export declare type GraphStoreIssueMentionedInConversationSortInput = {
40719
40759
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -41142,8 +41182,43 @@ export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
41142
41182
  export declare type GraphStorePrInRepoSortInput = {
41143
41183
  lastModified?: InputMaybe<GraphStoreSortInput>;
41144
41184
  };
41185
+ export declare enum GraphStoreProjectAssociatedAutodevJobAutodevJobStatus {
41186
+ Cancelled = "CANCELLED",
41187
+ Completed = "COMPLETED",
41188
+ Failed = "FAILED",
41189
+ InProgress = "IN_PROGRESS",
41190
+ Pending = "PENDING",
41191
+ Unknown = "UNKNOWN"
41192
+ }
41193
+ export declare type GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput = {
41194
+ is?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
41195
+ isNot?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
41196
+ };
41197
+ export declare type GraphStoreProjectAssociatedAutodevJobConditionalFilterInput = {
41198
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
41199
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
41200
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
41201
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
41202
+ to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
41203
+ to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
41204
+ to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
41205
+ to_status?: InputMaybe<GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput>;
41206
+ to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
41207
+ };
41208
+ export declare type GraphStoreProjectAssociatedAutodevJobFilterInput = {
41209
+ and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
41210
+ or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
41211
+ };
41145
41212
  export declare type GraphStoreProjectAssociatedAutodevJobSortInput = {
41213
+ createdAt?: InputMaybe<GraphStoreSortInput>;
41214
+ fromAti?: InputMaybe<GraphStoreSortInput>;
41146
41215
  lastModified?: InputMaybe<GraphStoreSortInput>;
41216
+ toAti?: InputMaybe<GraphStoreSortInput>;
41217
+ to_agentAri?: InputMaybe<GraphStoreSortInput>;
41218
+ to_createdAt?: InputMaybe<GraphStoreSortInput>;
41219
+ to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
41220
+ to_status?: InputMaybe<GraphStoreSortInput>;
41221
+ to_updatedAt?: InputMaybe<GraphStoreSortInput>;
41147
41222
  };
41148
41223
  export declare type GraphStoreProjectAssociatedBranchSortInput = {
41149
41224
  createdAt?: InputMaybe<GraphStoreSortInput>;
@@ -43391,10 +43466,12 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
43391
43466
  };
43392
43467
  export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
43393
43468
  export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
43394
- export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & {
43469
+ export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & HasTotal & {
43395
43470
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobConnection';
43396
43471
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobEdge>>>;
43472
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
43397
43473
  pageInfo: PageInfo;
43474
+ totalCount?: Maybe<Scalars['Int']['output']>;
43398
43475
  };
43399
43476
  export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
43400
43477
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobEdge';
@@ -43404,10 +43481,12 @@ export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
43404
43481
  lastUpdated: Scalars['DateTime']['output'];
43405
43482
  node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobUnion>;
43406
43483
  };
43407
- export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
43484
+ export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & HasTotal & {
43408
43485
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
43409
43486
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
43487
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
43410
43488
  pageInfo: PageInfo;
43489
+ totalCount?: Maybe<Scalars['Int']['output']>;
43411
43490
  };
43412
43491
  export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
43413
43492
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseEdge';
@@ -44237,10 +44316,12 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
44237
44316
  };
44238
44317
  export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
44239
44318
  export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
44240
- export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & {
44319
+ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & HasTotal & {
44241
44320
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobConnection';
44242
44321
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobEdge>>>;
44322
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
44243
44323
  pageInfo: PageInfo;
44324
+ totalCount?: Maybe<Scalars['Int']['output']>;
44244
44325
  };
44245
44326
  export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
44246
44327
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobEdge';
@@ -44250,10 +44331,12 @@ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
44250
44331
  lastUpdated: Scalars['DateTime']['output'];
44251
44332
  node?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobUnion>;
44252
44333
  };
44253
- export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & {
44334
+ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & HasTotal & {
44254
44335
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection';
44255
44336
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge>>>;
44337
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
44256
44338
  pageInfo: PageInfo;
44339
+ totalCount?: Maybe<Scalars['Int']['output']>;
44257
44340
  };
44258
44341
  export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge = {
44259
44342
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge';
@@ -51145,6 +51228,7 @@ export declare enum HelpObjectStoreArticleSearchStrategy {
51145
51228
  }
51146
51229
  export declare enum HelpObjectStoreArticleSourceSystem {
51147
51230
  Confluence = "CONFLUENCE",
51231
+ CrossSiteConfluence = "CROSS_SITE_CONFLUENCE",
51148
51232
  External = "EXTERNAL",
51149
51233
  GoogleDrive = "GOOGLE_DRIVE",
51150
51234
  Sharepoint = "SHAREPOINT"
@@ -54947,6 +55031,23 @@ export declare type JiraContainerNavigationQueryInput = {
54947
55031
  scopeId?: InputMaybe<Scalars['ID']['input']>;
54948
55032
  };
54949
55033
  export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
55034
+ export declare type JiraContext = Node & {
55035
+ __typename?: 'JiraContext';
55036
+ contextId?: Maybe<Scalars['String']['output']>;
55037
+ description?: Maybe<Scalars['String']['output']>;
55038
+ id: Scalars['ID']['output'];
55039
+ name: Scalars['String']['output'];
55040
+ };
55041
+ export declare type JiraContextConnection = {
55042
+ __typename?: 'JiraContextConnection';
55043
+ edges?: Maybe<Array<JiraContextEdge>>;
55044
+ pageInfo?: Maybe<PageInfo>;
55045
+ };
55046
+ export declare type JiraContextEdge = {
55047
+ __typename?: 'JiraContextEdge';
55048
+ cursor?: Maybe<Scalars['String']['output']>;
55049
+ node?: Maybe<JiraContext>;
55050
+ };
54950
55051
  export declare type JiraCreateActivityConfigurationInput = {
54951
55052
  fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
54952
55053
  id: Scalars['ID']['input'];
@@ -56228,6 +56329,10 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
56228
56329
  filterContains?: InputMaybe<Scalars['String']['input']>;
56229
56330
  issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
56230
56331
  };
56332
+ export declare enum JiraFieldCategoryType {
56333
+ Custom = "CUSTOM",
56334
+ System = "SYSTEM"
56335
+ }
56231
56336
  export declare type JiraFieldConfig = {
56232
56337
  __typename?: 'JiraFieldConfig';
56233
56338
  isEditable?: Maybe<Scalars['Boolean']['output']>;
@@ -56250,6 +56355,8 @@ export declare type JiraFieldConfigFilterInput = {
56250
56355
  aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
56251
56356
  cloudId: Scalars['ID']['input'];
56252
56357
  fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
56358
+ includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
56359
+ includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
56253
56360
  includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
56254
56361
  projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
56255
56362
  searchString?: InputMaybe<Scalars['String']['input']>;
@@ -56352,6 +56459,10 @@ export declare type JiraFieldSetsViewPayload = Payload & {
56352
56459
  success: Scalars['Boolean']['output'];
56353
56460
  view?: Maybe<JiraFieldSetsViewMetadata>;
56354
56461
  };
56462
+ export declare enum JiraFieldStatusType {
56463
+ Active = "ACTIVE",
56464
+ Trashed = "TRASHED"
56465
+ }
56355
56466
  export declare type JiraFieldType = {
56356
56467
  __typename?: 'JiraFieldType';
56357
56468
  displayName?: Maybe<Scalars['String']['output']>;
@@ -57858,15 +57969,44 @@ export declare type JiraIssueField = {
57858
57969
  };
57859
57970
  export declare type JiraIssueFieldConfig = Node & {
57860
57971
  __typename?: 'JiraIssueFieldConfig';
57972
+ associatedContexts?: Maybe<JiraContextConnection>;
57973
+ associatedContextsCount?: Maybe<Scalars['Int']['output']>;
57974
+ associatedProjects?: Maybe<JiraProjectConnection>;
57975
+ associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
57976
+ associatedScreens?: Maybe<JiraScreenConnection>;
57977
+ associatedScreensCount?: Maybe<Scalars['Int']['output']>;
57861
57978
  customId?: Maybe<Scalars['Int']['output']>;
57979
+ dateCreated?: Maybe<Scalars['DateTime']['output']>;
57862
57980
  defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
57981
+ description?: Maybe<Scalars['String']['output']>;
57863
57982
  fieldId: Scalars['String']['output'];
57864
57983
  id: Scalars['ID']['output'];
57865
57984
  isCustom: Scalars['Boolean']['output'];
57985
+ isGlobal?: Maybe<Scalars['Boolean']['output']>;
57986
+ isLocked?: Maybe<Scalars['Boolean']['output']>;
57866
57987
  jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
57988
+ lastUsed?: Maybe<Scalars['DateTime']['output']>;
57867
57989
  name: Scalars['String']['output'];
57868
57990
  type: JiraConfigFieldType;
57869
57991
  };
57992
+ export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
57993
+ after?: InputMaybe<Scalars['Int']['input']>;
57994
+ before?: InputMaybe<Scalars['Int']['input']>;
57995
+ first?: InputMaybe<Scalars['Int']['input']>;
57996
+ last?: InputMaybe<Scalars['Int']['input']>;
57997
+ };
57998
+ export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
57999
+ after?: InputMaybe<Scalars['Int']['input']>;
58000
+ before?: InputMaybe<Scalars['Int']['input']>;
58001
+ first?: InputMaybe<Scalars['Int']['input']>;
58002
+ last?: InputMaybe<Scalars['Int']['input']>;
58003
+ };
58004
+ export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
58005
+ after?: InputMaybe<Scalars['Int']['input']>;
58006
+ before?: InputMaybe<Scalars['Int']['input']>;
58007
+ first?: InputMaybe<Scalars['Int']['input']>;
58008
+ last?: InputMaybe<Scalars['Int']['input']>;
58009
+ };
57870
58010
  export declare type JiraIssueFieldConfiguration = {
57871
58011
  fieldConfig?: Maybe<JiraFieldConfig>;
57872
58012
  };
@@ -62941,6 +63081,7 @@ export declare type JiraQuery = {
62941
63081
  canPerform?: Maybe<Scalars['Boolean']['output']>;
62942
63082
  childIssuesLimit?: Maybe<Scalars['Long']['output']>;
62943
63083
  containerNavigation?: Maybe<JiraContainerNavigationResult>;
63084
+ contextById?: Maybe<Array<Maybe<JiraContext>>>;
62944
63085
  customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
62945
63086
  defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
62946
63087
  deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
@@ -62951,6 +63092,7 @@ export declare type JiraQuery = {
62951
63092
  exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
62952
63093
  favouriteFilters?: Maybe<JiraFilterConnection>;
62953
63094
  favourites?: Maybe<JiraFavouriteConnection>;
63095
+ fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
62954
63096
  fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
62955
63097
  fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
62956
63098
  fields?: Maybe<JiraJqlFieldConnectionResult>;
@@ -63084,6 +63226,7 @@ export declare type JiraQuery = {
63084
63226
  resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
63085
63227
  resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
63086
63228
  savedFilters?: Maybe<JiraFilterConnection>;
63229
+ screenById?: Maybe<Array<Maybe<JiraScreen>>>;
63087
63230
  screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
63088
63231
  screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
63089
63232
  searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
@@ -63224,6 +63367,9 @@ export declare type JiraQueryChildIssuesLimitArgs = {
63224
63367
  export declare type JiraQueryContainerNavigationArgs = {
63225
63368
  input: JiraContainerNavigationQueryInput;
63226
63369
  };
63370
+ export declare type JiraQueryContextByIdArgs = {
63371
+ ids: Array<Scalars['ID']['input']>;
63372
+ };
63227
63373
  export declare type JiraQueryCustomBackgroundsArgs = {
63228
63374
  after?: InputMaybe<Scalars['String']['input']>;
63229
63375
  before?: InputMaybe<Scalars['String']['input']>;
@@ -63266,6 +63412,9 @@ export declare type JiraQueryFavouritesArgs = {
63266
63412
  first?: InputMaybe<Scalars['Int']['input']>;
63267
63413
  last?: InputMaybe<Scalars['Int']['input']>;
63268
63414
  };
63415
+ export declare type JiraQueryFieldConfigByIdArgs = {
63416
+ ids: Array<Scalars['ID']['input']>;
63417
+ };
63269
63418
  export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
63270
63419
  cloudId: Scalars['ID']['input'];
63271
63420
  issueKey?: InputMaybe<Scalars['String']['input']>;
@@ -63923,6 +64072,9 @@ export declare type JiraQuerySavedFiltersArgs = {
63923
64072
  keyword?: InputMaybe<Scalars['String']['input']>;
63924
64073
  last?: InputMaybe<Scalars['Int']['input']>;
63925
64074
  };
64075
+ export declare type JiraQueryScreenByIdArgs = {
64076
+ ids: Array<Scalars['ID']['input']>;
64077
+ };
63926
64078
  export declare type JiraQueryScreenIdByIssueIdArgs = {
63927
64079
  issueId: Scalars['ID']['input'];
63928
64080
  };
@@ -64872,6 +65024,23 @@ export declare type JiraScmRepository = {
64872
65024
  entityUrl?: Maybe<Scalars['URL']['output']>;
64873
65025
  name?: Maybe<Scalars['String']['output']>;
64874
65026
  };
65027
+ export declare type JiraScreen = Node & {
65028
+ __typename?: 'JiraScreen';
65029
+ description?: Maybe<Scalars['String']['output']>;
65030
+ id: Scalars['ID']['output'];
65031
+ name: Scalars['String']['output'];
65032
+ screenId?: Maybe<Scalars['String']['output']>;
65033
+ };
65034
+ export declare type JiraScreenConnection = {
65035
+ __typename?: 'JiraScreenConnection';
65036
+ edges?: Maybe<Array<JiraScreenEdge>>;
65037
+ pageInfo?: Maybe<PageInfo>;
65038
+ };
65039
+ export declare type JiraScreenEdge = {
65040
+ __typename?: 'JiraScreenEdge';
65041
+ cursor?: Maybe<Scalars['String']['output']>;
65042
+ node?: Maybe<JiraScreen>;
65043
+ };
64875
65044
  export declare type JiraScreenTabLayout = {
64876
65045
  __typename?: 'JiraScreenTabLayout';
64877
65046
  items?: Maybe<JiraScreenTabLayoutItemConnection>;
@@ -70753,8 +70922,10 @@ export declare type KnowledgeDiscoverySearchUser = {
70753
70922
  __typename?: 'KnowledgeDiscoverySearchUser';
70754
70923
  avatarUrl?: Maybe<Scalars['String']['output']>;
70755
70924
  id: Scalars['String']['output'];
70925
+ locale?: Maybe<Scalars['String']['output']>;
70756
70926
  name: Scalars['String']['output'];
70757
70927
  title?: Maybe<Scalars['String']['output']>;
70928
+ zoneInfo?: Maybe<Scalars['String']['output']>;
70758
70929
  };
70759
70930
  export declare type KnowledgeDiscoverySmartAnswersRoute = {
70760
70931
  __typename?: 'KnowledgeDiscoverySmartAnswersRoute';
@@ -87699,6 +87870,7 @@ export declare enum ShepherdRemediationActionType {
87699
87870
  DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
87700
87871
  DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
87701
87872
  EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
87873
+ EmailWithAutomationRemediation = "EMAIL_WITH_AUTOMATION_REMEDIATION",
87702
87874
  ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
87703
87875
  ExcludeUserRemediation = "EXCLUDE_USER_REMEDIATION",
87704
87876
  ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
@@ -91761,6 +91933,7 @@ export declare type TrelloAttachment = Node & {
91761
91933
  edgeColor?: Maybe<Scalars['String']['output']>;
91762
91934
  fileName?: Maybe<Scalars['String']['output']>;
91763
91935
  id: Scalars['ID']['output'];
91936
+ isMalicious?: Maybe<Scalars['Boolean']['output']>;
91764
91937
  isUpload?: Maybe<Scalars['Boolean']['output']>;
91765
91938
  mimeType?: Maybe<Scalars['String']['output']>;
91766
91939
  name?: Maybe<Scalars['String']['output']>;
@@ -92312,6 +92485,7 @@ export declare type TrelloCardUpdated = {
92312
92485
  isTemplate?: Maybe<Scalars['Boolean']['output']>;
92313
92486
  labels?: Maybe<TrelloLabelUpdatedConnection>;
92314
92487
  lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
92488
+ limits?: Maybe<TrelloCardLimits>;
92315
92489
  location?: Maybe<TrelloCardLocation>;
92316
92490
  members?: Maybe<TrelloMemberUpdatedConnection>;
92317
92491
  mirrorSource?: Maybe<TrelloCard>;