@forge/cli-shared 5.5.0-next.13 → 5.5.0-next.14

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.5.0-next.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d51b7be]
8
+ - @forge/i18n@0.0.1-next.13
9
+ - @forge/manifest@7.7.0-next.14
10
+
3
11
  ## 5.5.0-next.13
4
12
 
5
13
  ### Minor Changes
@@ -2536,6 +2536,8 @@ export declare type CcpEntitlementTemplate = {
2536
2536
  export declare type CcpEntitlementUsage = {
2537
2537
  __typename?: 'CcpEntitlementUsage';
2538
2538
  offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
2539
+ usageAmount?: Maybe<Scalars['Float']['output']>;
2540
+ usageIdentifier?: Maybe<Scalars['String']['output']>;
2539
2541
  };
2540
2542
  export declare type CcpExperienceCapability = CommerceExperienceCapability & {
2541
2543
  __typename?: 'CcpExperienceCapability';
@@ -15924,6 +15926,7 @@ export declare type CustomerServiceAttributes = {
15924
15926
  };
15925
15927
  export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
15926
15928
  export declare type CustomerServiceContext = {
15929
+ issueId?: InputMaybe<Scalars['String']['input']>;
15927
15930
  type: CustomerServiceContextType;
15928
15931
  };
15929
15932
  export declare type CustomerServiceContextConfiguration = {
@@ -15989,6 +15992,10 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
15989
15992
  success: Scalars['Boolean']['output'];
15990
15993
  successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
15991
15994
  };
15995
+ export declare type CustomerServiceCustomDetailContextInput = {
15996
+ contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
15997
+ id: Scalars['ID']['input'];
15998
+ };
15992
15999
  export declare enum CustomerServiceCustomDetailCreateErrorCode {
15993
16000
  ColorNotSaved = "COLOR_NOT_SAVED"
15994
16001
  }
@@ -16256,6 +16263,7 @@ export declare type CustomerServiceMutationApi = {
16256
16263
  removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
16257
16264
  updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
16258
16265
  updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
16266
+ updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
16259
16267
  updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
16260
16268
  updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
16261
16269
  updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
@@ -16325,6 +16333,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
16325
16333
  export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
16326
16334
  input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
16327
16335
  };
16336
+ export declare type CustomerServiceMutationApiUpdateCustomDetailContextConfigsArgs = {
16337
+ input: Array<CustomerServiceCustomDetailContextInput>;
16338
+ };
16328
16339
  export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
16329
16340
  input: CustomerServiceCustomDetailPermissionsUpdateInput;
16330
16341
  };
@@ -16614,6 +16625,12 @@ export declare type CustomerServiceStatusPayload = Payload & {
16614
16625
  errors?: Maybe<Array<MutationError>>;
16615
16626
  success: Scalars['Boolean']['output'];
16616
16627
  };
16628
+ export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
16629
+ __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
16630
+ errors?: Maybe<Array<MutationError>>;
16631
+ success: Scalars['Boolean']['output'];
16632
+ successfullyUpdatedCustomDetails: Array<CustomerServiceCustomDetail>;
16633
+ };
16617
16634
  export declare type CustomerServiceUpdateCustomDetailValueInput = {
16618
16635
  id: CustomerServiceCustomDetailEntityTypeId;
16619
16636
  name: Scalars['String']['input'];
@@ -24993,6 +25010,7 @@ export declare type GraphStore = {
24993
25010
  testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
24994
25011
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
24995
25012
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25013
+ userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
24996
25014
  versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
24997
25015
  versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
24998
25016
  versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
@@ -26951,6 +26969,12 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
26951
26969
  first?: InputMaybe<Scalars['Int']['input']>;
26952
26970
  id: Scalars['ID']['input'];
26953
26971
  };
26972
+ export declare type GraphStoreUserOwnsComponentArgs = {
26973
+ after?: InputMaybe<Scalars['String']['input']>;
26974
+ first?: InputMaybe<Scalars['Int']['input']>;
26975
+ id: Scalars['ID']['input'];
26976
+ sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
26977
+ };
26954
26978
  export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
26955
26979
  after?: InputMaybe<Scalars['String']['input']>;
26956
26980
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -35166,6 +35190,22 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
35166
35190
  node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
35167
35191
  };
35168
35192
  export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
35193
+ export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
35194
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
35195
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
35196
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
35197
+ pageInfo: PageInfo;
35198
+ totalCount?: Maybe<Scalars['Int']['output']>;
35199
+ };
35200
+ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
35201
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentEdge';
35202
+ createdAt: Scalars['DateTime']['output'];
35203
+ cursor?: Maybe<Scalars['String']['output']>;
35204
+ id: Scalars['ID']['output'];
35205
+ lastUpdated: Scalars['DateTime']['output'];
35206
+ node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
35207
+ };
35208
+ export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
35169
35209
  export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
35170
35210
  __typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
35171
35211
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
@@ -35800,6 +35840,12 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
35800
35840
  export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
35801
35841
  lastModified?: InputMaybe<GraphStoreSortInput>;
35802
35842
  };
35843
+ export declare type GraphStoreUserOwnsComponentSortInput = {
35844
+ createdAt?: InputMaybe<GraphStoreSortInput>;
35845
+ fromAti?: InputMaybe<GraphStoreSortInput>;
35846
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35847
+ toAti?: InputMaybe<GraphStoreSortInput>;
35848
+ };
35803
35849
  export declare type GraphStoreVersionAssociatedBranchSortInput = {
35804
35850
  createdAt?: InputMaybe<GraphStoreSortInput>;
35805
35851
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -37993,17 +38039,12 @@ export declare type InlineColumnEditConfig = {
37993
38039
  export declare type Insights = {
37994
38040
  __typename?: 'Insights';
37995
38041
  githubOnboardingDetails: InsightsGithubOnboardingDetails;
37996
- nextBestTasksByContextAri: Array<InsightsNextBestTask>;
37997
38042
  nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
37998
38043
  };
37999
38044
  export declare type InsightsGithubOnboardingDetailsArgs = {
38000
38045
  cloudId: Scalars['ID']['input'];
38001
38046
  projectAri?: InputMaybe<Scalars['ID']['input']>;
38002
38047
  };
38003
- export declare type InsightsNextBestTasksByContextAriArgs = {
38004
- contextAri: InsightsContextAri;
38005
- statusId?: InputMaybe<Scalars['String']['input']>;
38006
- };
38007
38048
  export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
38008
38049
  after?: InputMaybe<Scalars['String']['input']>;
38009
38050
  contextAri: InsightsContextAri;
@@ -38029,13 +38070,6 @@ export declare type InsightsBlockedIssue = {
38029
38070
  issueKey: Scalars['String']['output'];
38030
38071
  title: Scalars['String']['output'];
38031
38072
  };
38032
- export declare type InsightsBlockingIssueDetails = {
38033
- __typename?: 'InsightsBlockingIssueDetails';
38034
- blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
38035
- issueIconUrl: Scalars['String']['output'];
38036
- issueId: Scalars['String']['output'];
38037
- issueKey: Scalars['String']['output'];
38038
- };
38039
38073
  export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
38040
38074
  __typename?: 'InsightsBlockingIssueTask';
38041
38075
  blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
@@ -38046,15 +38080,6 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
38046
38080
  title: Scalars['String']['output'];
38047
38081
  url: Scalars['String']['output'];
38048
38082
  };
38049
- export declare type InsightsBuildDetails = {
38050
- __typename?: 'InsightsBuildDetails';
38051
- buildNumber: Scalars['Int']['output'];
38052
- issueId: Scalars['String']['output'];
38053
- issueKey: Scalars['String']['output'];
38054
- issueName: Scalars['String']['output'];
38055
- lastUpdated: Scalars['String']['output'];
38056
- numberOfFailedBuilds: Scalars['Int']['output'];
38057
- };
38058
38083
  export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
38059
38084
  __typename?: 'InsightsBuildTask';
38060
38085
  buildNumber: Scalars['Int']['output'];
@@ -38082,17 +38107,6 @@ export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskComm
38082
38107
  title: Scalars['String']['output'];
38083
38108
  url: Scalars['String']['output'];
38084
38109
  };
38085
- export declare type InsightsDeploymentDetails = {
38086
- __typename?: 'InsightsDeploymentDetails';
38087
- environmentNames: Array<Scalars['String']['output']>;
38088
- environmentType: InsightsEnvironmentType;
38089
- issueId: Scalars['String']['output'];
38090
- issueKey: Scalars['String']['output'];
38091
- issueName: Scalars['String']['output'];
38092
- lastUpdated: Scalars['String']['output'];
38093
- numberOfFailedDeployments: Scalars['Int']['output'];
38094
- pipelineName: Scalars['String']['output'];
38095
- };
38096
38110
  export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
38097
38111
  __typename?: 'InsightsDeploymentTask';
38098
38112
  environmentNames: Array<Scalars['String']['output']>;
@@ -38166,14 +38180,6 @@ export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
38166
38180
  errorType?: Maybe<Scalars['String']['output']>;
38167
38181
  statusCode?: Maybe<Scalars['Int']['output']>;
38168
38182
  };
38169
- export declare type InsightsNextBestTask = {
38170
- __typename?: 'InsightsNextBestTask';
38171
- details: InsightsNextBestTaskDetails;
38172
- id: Scalars['String']['output'];
38173
- task: InsightsTaskType;
38174
- title: Scalars['String']['output'];
38175
- url: Scalars['String']['output'];
38176
- };
38177
38183
  export declare enum InsightsNextBestTaskAction {
38178
38184
  Remove = "REMOVE",
38179
38185
  Snooze = "SNOOZE"
@@ -38190,24 +38196,11 @@ export declare type InsightsNextBestTaskConnection = {
38190
38196
  pageInfo: PageInfo;
38191
38197
  totalCount?: Maybe<Scalars['Int']['output']>;
38192
38198
  };
38193
- export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
38194
38199
  export declare type InsightsNextBestTaskEdge = {
38195
38200
  __typename?: 'InsightsNextBestTaskEdge';
38196
38201
  cursor: Scalars['String']['output'];
38197
38202
  node?: Maybe<InsightsNextBestTaskCommon>;
38198
38203
  };
38199
- export declare type InsightsPullRequestNeedsWorkDetails = {
38200
- __typename?: 'InsightsPullRequestNeedsWorkDetails';
38201
- commentCount: Scalars['Int']['output'];
38202
- destinationBranchName?: Maybe<Scalars['String']['output']>;
38203
- lastUpdated: Scalars['String']['output'];
38204
- needsWorkCount: Scalars['Int']['output'];
38205
- providerIconUrl?: Maybe<Scalars['String']['output']>;
38206
- providerName?: Maybe<Scalars['String']['output']>;
38207
- repositoryName?: Maybe<Scalars['String']['output']>;
38208
- reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
38209
- sourceBranchName?: Maybe<Scalars['String']['output']>;
38210
- };
38211
38204
  export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
38212
38205
  __typename?: 'InsightsPullRequestNeedsWorkTask';
38213
38206
  commentCount: Scalars['Int']['output'];
@@ -38223,18 +38216,6 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
38223
38216
  title: Scalars['String']['output'];
38224
38217
  url: Scalars['String']['output'];
38225
38218
  };
38226
- export declare type InsightsPullRequestReviewDetails = {
38227
- __typename?: 'InsightsPullRequestReviewDetails';
38228
- approvalsCount: Scalars['Int']['output'];
38229
- author?: Maybe<InsightsUserDetail>;
38230
- commentCount: Scalars['Int']['output'];
38231
- destinationBranchName?: Maybe<Scalars['String']['output']>;
38232
- lastUpdated: Scalars['String']['output'];
38233
- providerIconUrl?: Maybe<Scalars['String']['output']>;
38234
- providerName?: Maybe<Scalars['String']['output']>;
38235
- repositoryName?: Maybe<Scalars['String']['output']>;
38236
- sourceBranchName?: Maybe<Scalars['String']['output']>;
38237
- };
38238
38219
  export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
38239
38220
  __typename?: 'InsightsPullRequestReviewTask';
38240
38221
  approvalsCount: Scalars['Int']['output'];
@@ -38280,15 +38261,6 @@ export declare type InsightsUserDetail = {
38280
38261
  id: Scalars['ID']['output'];
38281
38262
  name: Scalars['String']['output'];
38282
38263
  };
38283
- export declare type InsightsVulnDetails = {
38284
- __typename?: 'InsightsVulnDetails';
38285
- id: Scalars['ID']['output'];
38286
- introducedDate: Scalars['String']['output'];
38287
- issueId: Scalars['String']['output'];
38288
- issueKey: Scalars['String']['output'];
38289
- securityContainerName: Scalars['String']['output'];
38290
- status: InsightsVulnerabilityStatus;
38291
- };
38292
38264
  export declare enum InsightsVulnerabilityStatus {
38293
38265
  Closed = "CLOSED",
38294
38266
  Ignored = "IGNORED",
@@ -39748,6 +39720,7 @@ export declare enum JiraBoardLocationType {
39748
39720
  Project = "PROJECT",
39749
39721
  User = "USER"
39750
39722
  }
39723
+ export declare type JiraBoardResult = JiraBoard | QueryError;
39751
39724
  export declare enum JiraBoardType {
39752
39725
  Kanban = "KANBAN",
39753
39726
  Scrum = "SCRUM"
@@ -43883,6 +43856,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
43883
43856
  fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
43884
43857
  searchString?: InputMaybe<Scalars['String']['input']>;
43885
43858
  };
43859
+ export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
43860
+ __typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
43861
+ errors?: Maybe<Array<MutationError>>;
43862
+ success: Scalars['Boolean']['output'];
43863
+ };
43886
43864
  export declare type JiraIssueSearchInput = {
43887
43865
  customInput?: InputMaybe<JiraIssueSearchCustomInput>;
43888
43866
  filterId?: InputMaybe<Scalars['String']['input']>;
@@ -43921,6 +43899,7 @@ export declare type JiraIssueSearchView = Node & {
43921
43899
  filterId?: Maybe<Scalars['String']['output']>;
43922
43900
  hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
43923
43901
  id: Scalars['ID']['output'];
43902
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
43924
43903
  namespace?: Maybe<Scalars['String']['output']>;
43925
43904
  viewId?: Maybe<Scalars['String']['output']>;
43926
43905
  };
@@ -45245,6 +45224,7 @@ export declare type JiraMutation = {
45245
45224
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
45246
45225
  setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
45247
45226
  setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
45227
+ setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
45248
45228
  setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
45249
45229
  sprintUpdate?: Maybe<JiraSprintMutationPayload>;
45250
45230
  submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
@@ -45266,6 +45246,7 @@ export declare type JiraMutation = {
45266
45246
  updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
45267
45247
  updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
45268
45248
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
45249
+ updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
45269
45250
  updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
45270
45251
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45271
45252
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
@@ -45574,6 +45555,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
45574
45555
  export declare type JiraMutationSetEntityIsFavouriteArgs = {
45575
45556
  input: JiraSetIsFavouriteInput;
45576
45557
  };
45558
+ export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
45559
+ id: Scalars['ID']['input'];
45560
+ };
45577
45561
  export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
45578
45562
  cloudId: Scalars['ID']['input'];
45579
45563
  id: Scalars['ID']['input'];
@@ -45642,6 +45626,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
45642
45626
  cloudId: Scalars['ID']['input'];
45643
45627
  input: JiraIssueHierarchyConfigurationMutationInput;
45644
45628
  };
45629
+ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
45630
+ isHierarchyEnabled: Scalars['Boolean']['input'];
45631
+ viewId: Scalars['ID']['input'];
45632
+ };
45645
45633
  export declare type JiraMutationUpdateIssueTypeFieldArgs = {
45646
45634
  input: JiraUpdateIssueTypeFieldInput;
45647
45635
  };
@@ -47561,6 +47549,7 @@ export declare type JiraQuery = {
47561
47549
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
47562
47550
  issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
47563
47551
  issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
47552
+ jiraBoard?: Maybe<JiraBoardResult>;
47564
47553
  jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
47565
47554
  jiraCalendar?: Maybe<JiraCalendar>;
47566
47555
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
@@ -48049,6 +48038,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
48049
48038
  cloudId: Scalars['ID']['input'];
48050
48039
  keys: Array<Scalars['String']['input']>;
48051
48040
  };
48041
+ export declare type JiraQueryJiraBoardArgs = {
48042
+ id: Scalars['ID']['input'];
48043
+ };
48052
48044
  export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
48053
48045
  issueIds: Array<Scalars['ID']['input']>;
48054
48046
  transitionId: Scalars['Int']['input'];
@@ -50232,6 +50224,12 @@ export declare type JiraSetIsFavouritePayload = Payload & {
50232
50224
  favouriteValue?: Maybe<JiraFavouriteValue>;
50233
50225
  success: Scalars['Boolean']['output'];
50234
50226
  };
50227
+ export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
50228
+ __typename?: 'JiraSetMostRecentlyViewedBoardPayload';
50229
+ board?: Maybe<JiraBoard>;
50230
+ errors?: Maybe<Array<MutationError>>;
50231
+ success: Scalars['Boolean']['output'];
50232
+ };
50235
50233
  export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
50236
50234
  deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
50237
50235
  projectId: Scalars['ID']['input'];
@@ -51836,7 +51834,6 @@ export declare type JiraUserPreferences = {
51836
51834
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
51837
51835
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
51838
51836
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
51839
- issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
51840
51837
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
51841
51838
  issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
51842
51839
  jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
@@ -51848,9 +51845,6 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
51848
51845
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
51849
51846
  projectKey: Scalars['String']['input'];
51850
51847
  };
51851
- export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
51852
- projectKey: Scalars['String']['input'];
51853
- };
51854
51848
  export declare type JiraUserPreferencesMutation = {
51855
51849
  __typename?: 'JiraUserPreferencesMutation';
51856
51850
  setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
@@ -53795,10 +53789,12 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
53795
53789
  __typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
53796
53790
  cloudId: Scalars['String']['output'];
53797
53791
  createdTimestamp: Scalars['String']['output'];
53792
+ creator?: Maybe<User>;
53798
53793
  creatorAccountId: Scalars['String']['output'];
53799
53794
  description?: Maybe<Scalars['String']['output']>;
53800
53795
  keyPhrases?: Maybe<Array<Scalars['String']['output']>>;
53801
53796
  lastModifiedTimestamp: Scalars['String']['output'];
53797
+ lastModifier?: Maybe<User>;
53802
53798
  lastModifierAccountId: Scalars['String']['output'];
53803
53799
  orgId: Scalars['String']['output'];
53804
53800
  title: Scalars['String']['output'];
@@ -54686,6 +54682,7 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
54686
54682
  };
54687
54683
  export declare type MarketplaceConsoleConnectFrameworkAttributes = {
54688
54684
  __typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
54685
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54689
54686
  descriptorId: Scalars['ID']['output'];
54690
54687
  descriptorUrl: Scalars['String']['output'];
54691
54688
  scopes: Array<Scalars['String']['output']>;
@@ -54858,7 +54855,14 @@ export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
54858
54855
  envId: Scalars['String']['input'];
54859
54856
  versionId: Scalars['String']['input'];
54860
54857
  };
54861
- export declare type MarketplaceConsoleFrameworkAttributes = MarketplaceConsoleConnectFrameworkAttributes | MarketplaceConsoleExternalFrameworkAttributes | MarketplaceConsoleForgeFrameworkAttributes | MarketplaceConsolePluginsFrameworkAttributes | MarketplaceConsoleWorkflowFrameworkAttributes;
54858
+ export declare type MarketplaceConsoleFrameworkAttributes = {
54859
+ __typename?: 'MarketplaceConsoleFrameworkAttributes';
54860
+ connect?: Maybe<MarketplaceConsoleConnectFrameworkAttributes>;
54861
+ external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
54862
+ forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
54863
+ plugins?: Maybe<MarketplaceConsolePluginsFrameworkAttributes>;
54864
+ workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
54865
+ };
54862
54866
  export declare type MarketplaceConsoleFrameworkAttributesInput = {
54863
54867
  connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
54864
54868
  external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
@@ -54953,7 +54957,7 @@ export declare type MarketplaceConsoleMutationApi = {
54953
54957
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54954
54958
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54955
54959
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
54956
- validateArtifactUrl?: Maybe<MarketplaceConsoleRemoteFetchedSoftwareArtifact>;
54960
+ validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54957
54961
  };
54958
54962
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
54959
54963
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -55045,6 +55049,7 @@ export declare enum MarketplaceConsolePluginFrameworkType {
55045
55049
  }
55046
55050
  export declare type MarketplaceConsolePluginsFrameworkAttributes = {
55047
55051
  __typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
55052
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
55048
55053
  artifactId: Scalars['ID']['output'];
55049
55054
  descriptorId?: Maybe<Scalars['String']['output']>;
55050
55055
  pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
@@ -55224,8 +55229,8 @@ export declare type MarketplaceConsoleRemoteArtifactLinks = {
55224
55229
  remote?: Maybe<MarketplaceConsoleLink>;
55225
55230
  self: MarketplaceConsoleLink;
55226
55231
  };
55227
- export declare type MarketplaceConsoleRemoteFetchedSoftwareArtifact = {
55228
- __typename?: 'MarketplaceConsoleRemoteFetchedSoftwareArtifact';
55232
+ export declare type MarketplaceConsoleSoftwareArtifact = {
55233
+ __typename?: 'MarketplaceConsoleSoftwareArtifact';
55229
55234
  fileInfo: MarketplaceConsoleArtifactFileInfo;
55230
55235
  links: MarketplaceConsoleRemoteArtifactLinks;
55231
55236
  };
@@ -55267,6 +55272,7 @@ export declare type MarketplaceConsoleVendorLinks = {
55267
55272
  };
55268
55273
  export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
55269
55274
  __typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
55275
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
55270
55276
  artifactId: Scalars['ID']['output'];
55271
55277
  };
55272
55278
  export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
@@ -64621,6 +64627,17 @@ export declare type ShepherdAlert = Node & {
64621
64627
  updatedOn?: Maybe<Scalars['DateTime']['output']>;
64622
64628
  workspaceId?: Maybe<Scalars['ID']['output']>;
64623
64629
  };
64630
+ export declare enum ShepherdAlertAction {
64631
+ AddLabel = "ADD_LABEL",
64632
+ Redact = "REDACT",
64633
+ Restrict = "RESTRICT",
64634
+ UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
64635
+ }
64636
+ export declare type ShepherdAlertAuthorizedActions = {
64637
+ __typename?: 'ShepherdAlertAuthorizedActions';
64638
+ actions?: Maybe<Array<ShepherdAlertAction>>;
64639
+ };
64640
+ export declare type ShepherdAlertAuthorizedActionsResult = QueryError | ShepherdAlertAuthorizedActions;
64624
64641
  export declare enum ShepherdAlertDetectionCategory {
64625
64642
  Data = "DATA",
64626
64643
  Threat = "THREAT"
@@ -64637,9 +64654,14 @@ export declare type ShepherdAlertMetaData = {
64637
64654
  };
64638
64655
  export declare type ShepherdAlertQueries = {
64639
64656
  __typename?: 'ShepherdAlertQueries';
64657
+ authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
64640
64658
  byAri?: Maybe<ShepherdAlertResult>;
64641
64659
  byWorkspace?: Maybe<ShepherdAlertsResult>;
64642
64660
  };
64661
+ export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
64662
+ id: Scalars['ID']['input'];
64663
+ resource: Scalars['ID']['input'];
64664
+ };
64643
64665
  export declare type ShepherdAlertQueriesByAriArgs = {
64644
64666
  id: Scalars['ID']['input'];
64645
64667
  };
@@ -67703,7 +67725,6 @@ export declare type TrelloBoard = Node & {
67703
67725
  members?: Maybe<TrelloBoardMembershipsConnection>;
67704
67726
  name: Scalars['String']['output'];
67705
67727
  objectId: Scalars['ID']['output'];
67706
- popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
67707
67728
  powerUpData?: Maybe<TrelloPowerUpDataConnection>;
67708
67729
  powerUps?: Maybe<TrelloBoardPowerUpConnection>;
67709
67730
  powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
@@ -67907,11 +67928,14 @@ export declare type TrelloBoardUpdated = {
67907
67928
  closed?: Maybe<Scalars['Boolean']['output']>;
67908
67929
  description?: Maybe<TrelloDescription>;
67909
67930
  id?: Maybe<Scalars['ID']['output']>;
67931
+ labels?: Maybe<Array<TrelloLabel>>;
67910
67932
  lists?: Maybe<TrelloListUpdatedConnection>;
67933
+ members?: Maybe<Array<TrelloMember>>;
67911
67934
  name?: Maybe<Scalars['String']['output']>;
67912
67935
  objectId?: Maybe<Scalars['ID']['output']>;
67913
67936
  prefs?: Maybe<TrelloBoardPrefs>;
67914
67937
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
67938
+ url?: Maybe<Scalars['URL']['output']>;
67915
67939
  };
67916
67940
  export declare type TrelloBoardViewer = {
67917
67941
  __typename?: 'TrelloBoardViewer';
@@ -68530,6 +68554,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
68530
68554
  __typename?: 'TrelloPlannerCalendarAccount';
68531
68555
  accountType: TrelloSupportedPlannerProviders;
68532
68556
  allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68557
+ displayName: Scalars['String']['output'];
68533
68558
  enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68534
68559
  id: Scalars['ID']['output'];
68535
68560
  };
@@ -68564,11 +68589,6 @@ export declare type TrelloPlannerCalendarEdge = {
68564
68589
  cursor?: Maybe<Scalars['String']['output']>;
68565
68590
  node?: Maybe<TrelloPlannerCalendar>;
68566
68591
  };
68567
- export declare type TrelloPopularLabelForColor = {
68568
- __typename?: 'TrelloPopularLabelForColor';
68569
- color?: Maybe<Scalars['String']['output']>;
68570
- labelName?: Maybe<Scalars['String']['output']>;
68571
- };
68572
68592
  export declare type TrelloPowerUp = {
68573
68593
  __typename?: 'TrelloPowerUp';
68574
68594
  author?: Maybe<Scalars['String']['output']>;