@forge/cli-shared 3.4.0-next.4 → 3.4.1-next.0

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,26 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.4.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4ac7253]
8
+ - @forge/manifest@4.5.3-next.0
9
+
10
+ ## 3.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - cfded19: Added "forge contributors remove" command
15
+ - e37918e: Implement support for client-side UI Kit tunneling
16
+ - ac570166: Added "forge contributors add" command line
17
+
18
+ ### Patch Changes
19
+
20
+ - 814c1f1: Add 'contributors list' command to forge-cli for MUAO EAP Participants
21
+ - Updated dependencies [269a493]
22
+ - @forge/manifest@4.5.2
23
+
3
24
  ## 3.4.0-next.4
4
25
 
5
26
  ### Minor Changes
@@ -29,6 +29,7 @@ export declare type Scalars = {
29
29
  SoftwareBoardFeatureKey: any;
30
30
  SoftwareBoardPermission: any;
31
31
  SprintScopeChangeEventType: any;
32
+ TrelloShortLink: any;
32
33
  URL: any;
33
34
  };
34
35
  export declare enum AccountStatus {
@@ -226,10 +227,7 @@ export declare type ActivityFilterArgs = {
226
227
  products?: Maybe<Array<Scalars['String']>>;
227
228
  eventTypes?: Maybe<Array<Scalars['String']>>;
228
229
  objectTypes?: Maybe<Array<Scalars['String']>>;
229
- transitions?: Maybe<Array<TransitionFilter>>;
230
230
  containerIds?: Maybe<Array<Scalars['ID']>>;
231
- earliestStart?: Maybe<Scalars['DateTime']>;
232
- latestStart?: Maybe<Scalars['DateTime']>;
233
231
  };
234
232
  export declare type ActivityItemEdge = {
235
233
  __typename?: 'ActivityItemEdge';
@@ -1854,8 +1852,6 @@ export declare type CompassCatalogMutationApi = {
1854
1852
  createCompassEvent?: Maybe<CompassCreateEventsPayload>;
1855
1853
  attachEventSource?: Maybe<AttachEventSourcePayload>;
1856
1854
  detachEventSource?: Maybe<DetachEventSourcePayload>;
1857
- createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
1858
- deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
1859
1855
  createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
1860
1856
  updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
1861
1857
  deleteTeamCheckin?: Maybe<CompassDeleteTeamCheckinPayload>;
@@ -1989,14 +1985,6 @@ export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
1989
1985
  export declare type CompassCatalogMutationApiDetachEventSourceArgs = {
1990
1986
  input: DetachEventSourceInput;
1991
1987
  };
1992
- export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
1993
- cloudId: Scalars['ID'];
1994
- input: CreateCompassStarredComponentInput;
1995
- };
1996
- export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
1997
- cloudId: Scalars['ID'];
1998
- input: DeleteCompassStarredComponentInput;
1999
- };
2000
1988
  export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
2001
1989
  input: CompassCreateTeamCheckinInput;
2002
1990
  };
@@ -2056,7 +2044,6 @@ export declare type CompassCatalogQueryApi = {
2056
2044
  searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
2057
2045
  scorecard?: Maybe<CompassScorecardResult>;
2058
2046
  scorecards?: Maybe<CompassScorecardsQueryResult>;
2059
- starredComponents?: Maybe<CompassStarredComponentQueryResult>;
2060
2047
  teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
2061
2048
  teamData?: Maybe<CompassTeamDataResult>;
2062
2049
  searchTeams?: Maybe<CompassSearchTeamsConnectionResult>;
@@ -2102,10 +2089,6 @@ export declare type CompassCatalogQueryApiScorecardsArgs = {
2102
2089
  cloudId: Scalars['ID'];
2103
2090
  query?: Maybe<CompassScorecardsQuery>;
2104
2091
  };
2105
- export declare type CompassCatalogQueryApiStarredComponentsArgs = {
2106
- cloudId: Scalars['ID'];
2107
- query?: Maybe<CompassStarredComponentQuery>;
2108
- };
2109
2092
  export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
2110
2093
  input: CompassTeamCheckinsInput;
2111
2094
  };
@@ -3384,22 +3367,6 @@ export declare type CompassSloMetricSourceConfigurationInput = {
3384
3367
  goodQuery: Scalars['String'];
3385
3368
  badQuery: Scalars['String'];
3386
3369
  };
3387
- export declare type CompassStarredComponentConnection = {
3388
- __typename?: 'CompassStarredComponentConnection';
3389
- nodes?: Maybe<Array<CompassComponent>>;
3390
- edges?: Maybe<Array<CompassStarredComponentEdge>>;
3391
- pageInfo: PageInfo;
3392
- };
3393
- export declare type CompassStarredComponentEdge = {
3394
- __typename?: 'CompassStarredComponentEdge';
3395
- cursor: Scalars['String'];
3396
- node?: Maybe<CompassComponent>;
3397
- };
3398
- export declare type CompassStarredComponentQuery = {
3399
- first?: Maybe<Scalars['Int']>;
3400
- after?: Maybe<Scalars['String']>;
3401
- };
3402
- export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
3403
3370
  export declare type CompassSynchronizeLinkAssociationsInput = {
3404
3371
  cloudId: Scalars['ID'];
3405
3372
  forgeAppId: Scalars['ID'];
@@ -5009,15 +4976,6 @@ export declare type CreateCompassScorecardPayload = Payload & {
5009
4976
  errors?: Maybe<Array<MutationError>>;
5010
4977
  scorecardDetails?: Maybe<CompassScorecard>;
5011
4978
  };
5012
- export declare type CreateCompassStarredComponentInput = {
5013
- id: Scalars['ID'];
5014
- };
5015
- export declare type CreateCompassStarredComponentPayload = Payload & {
5016
- __typename?: 'CreateCompassStarredComponentPayload';
5017
- components?: Maybe<CompassStarredComponentConnection>;
5018
- success: Scalars['Boolean'];
5019
- errors?: Maybe<Array<MutationError>>;
5020
- };
5021
4979
  export declare type CreateCustomFilterInput = {
5022
4980
  boardId: Scalars['ID'];
5023
4981
  name: Scalars['String'];
@@ -5490,15 +5448,6 @@ export declare type DeleteCompassScorecardPayload = Payload & {
5490
5448
  errors?: Maybe<Array<MutationError>>;
5491
5449
  scorecardId: Scalars['ID'];
5492
5450
  };
5493
- export declare type DeleteCompassStarredComponentInput = {
5494
- id: Scalars['ID'];
5495
- };
5496
- export declare type DeleteCompassStarredComponentPayload = Payload & {
5497
- __typename?: 'DeleteCompassStarredComponentPayload';
5498
- components?: Maybe<CompassStarredComponentConnection>;
5499
- success: Scalars['Boolean'];
5500
- errors?: Maybe<Array<MutationError>>;
5501
- };
5502
5451
  export declare type DeleteCustomFilterInput = {
5503
5452
  boardId: Scalars['ID'];
5504
5453
  customFilterId: Scalars['String'];
@@ -6149,7 +6098,7 @@ export declare type DevOpsSecurityVulnerabilityDetailsLinkedJiraIssuesArgs = {
6149
6098
  };
6150
6099
  export declare type DevOpsSecurityVulnerabilityIdentifier = {
6151
6100
  __typename?: 'DevOpsSecurityVulnerabilityIdentifier';
6152
- id: Scalars['String'];
6101
+ displayName: Scalars['String'];
6153
6102
  url?: Maybe<Scalars['String']>;
6154
6103
  };
6155
6104
  export declare enum DevOpsSecurityVulnerabilitySeverity {
@@ -8135,7 +8084,7 @@ export declare type JiraAddIssuesToFixVersionPayload = Payload & {
8135
8084
  export declare type JiraAddRelatedWorkToVersionInput = {
8136
8085
  versionId: Scalars['ID'];
8137
8086
  relatedWorkId: Scalars['ID'];
8138
- url: Scalars['URL'];
8087
+ url?: Maybe<Scalars['URL']>;
8139
8088
  title?: Maybe<Scalars['String']>;
8140
8089
  category: Scalars['String'];
8141
8090
  };
@@ -8483,6 +8432,7 @@ export declare type JiraChildIssuesWithinLimitIssuesArgs = {
8483
8432
  after?: Maybe<Scalars['String']>;
8484
8433
  last?: Maybe<Scalars['Int']>;
8485
8434
  before?: Maybe<Scalars['String']>;
8435
+ activeProjectsOnly?: Maybe<Scalars['Boolean']>;
8486
8436
  };
8487
8437
  export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
8488
8438
  __typename?: 'JiraClassicConnectDevOpsProvider';
@@ -10971,6 +10921,7 @@ export declare type JiraMutation = {
10971
10921
  createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
10972
10922
  addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
10973
10923
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
10924
+ updateVersionRelatedWorkGenericLink?: Maybe<JiraUpdateVersionRelatedWorkGenericLinkPayload>;
10974
10925
  assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
10975
10926
  linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
10976
10927
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
@@ -11011,6 +10962,9 @@ export declare type JiraMutationAddRelatedWorkToVersionArgs = {
11011
10962
  export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
11012
10963
  input: JiraRemoveRelatedWorkFromVersionInput;
11013
10964
  };
10965
+ export declare type JiraMutationUpdateVersionRelatedWorkGenericLinkArgs = {
10966
+ input: JiraUpdateVersionRelatedWorkGenericLinkInput;
10967
+ };
11014
10968
  export declare type JiraMutationAssignRelatedWorkToUserArgs = {
11015
10969
  input: JiraAssignRelatedWorkInput;
11016
10970
  };
@@ -13704,6 +13658,19 @@ export declare type JiraUpdateVersionPayload = Payload & {
13704
13658
  errors?: Maybe<Array<MutationError>>;
13705
13659
  version?: Maybe<JiraVersion>;
13706
13660
  };
13661
+ export declare type JiraUpdateVersionRelatedWorkGenericLinkInput = {
13662
+ versionId: Scalars['ID'];
13663
+ relatedWorkId: Scalars['ID'];
13664
+ url?: Maybe<Scalars['URL']>;
13665
+ title?: Maybe<Scalars['String']>;
13666
+ category: Scalars['String'];
13667
+ };
13668
+ export declare type JiraUpdateVersionRelatedWorkGenericLinkPayload = Payload & {
13669
+ __typename?: 'JiraUpdateVersionRelatedWorkGenericLinkPayload';
13670
+ success: Scalars['Boolean'];
13671
+ errors?: Maybe<Array<MutationError>>;
13672
+ relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
13673
+ };
13707
13674
  export declare type JiraUpdateVersionReleaseDateInput = {
13708
13675
  id: Scalars['ID'];
13709
13676
  releaseDate?: Maybe<Scalars['DateTime']>;
@@ -13792,6 +13759,7 @@ export declare type JiraVersion = Node & {
13792
13759
  nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13793
13760
  releaseNotes?: Maybe<JiraAdf>;
13794
13761
  devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
13762
+ canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
13795
13763
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13796
13764
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
13797
13765
  relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
@@ -14093,6 +14061,7 @@ export declare type JiraWorkManagementNavigation = {
14093
14061
  __typename?: 'JiraWorkManagementNavigation';
14094
14062
  recentProjects?: Maybe<JiraProjectConnection>;
14095
14063
  favoriteProjects?: Maybe<JiraProjectConnection>;
14064
+ overviews?: Maybe<JiraWorkManagementOverviewConnection>;
14096
14065
  };
14097
14066
  export declare type JiraWorkManagementNavigationRecentProjectsArgs = {
14098
14067
  first?: Maybe<Scalars['Int']>;
@@ -14106,6 +14075,13 @@ export declare type JiraWorkManagementNavigationFavoriteProjectsArgs = {
14106
14075
  last?: Maybe<Scalars['Int']>;
14107
14076
  before?: Maybe<Scalars['String']>;
14108
14077
  };
14078
+ export declare type JiraWorkManagementNavigationOverviewsArgs = {
14079
+ cloudId: Scalars['ID'];
14080
+ first?: Maybe<Scalars['Int']>;
14081
+ after?: Maybe<Scalars['String']>;
14082
+ last?: Maybe<Scalars['Int']>;
14083
+ before?: Maybe<Scalars['String']>;
14084
+ };
14109
14085
  export declare type JiraWorkManagementOverview = Node & {
14110
14086
  __typename?: 'JiraWorkManagementOverview';
14111
14087
  id: Scalars['ID'];
@@ -14926,6 +14902,9 @@ export declare type MercuryQueryApi = {
14926
14902
  initiative?: Maybe<MercuryInitiative>;
14927
14903
  initiatives?: Maybe<MercuryInitiativeConnection>;
14928
14904
  teamAllocation?: Maybe<MercuryTeamAllocation>;
14905
+ teamAllocationForActiveInterval?: Maybe<MercuryTeamAllocation>;
14906
+ teamAllocationsByOrgLevel?: Maybe<MercuryTeamAllocationConnection>;
14907
+ teamAllocationsByOrgLevelForActiveInterval?: Maybe<MercuryTeamAllocationConnection>;
14929
14908
  intervals?: Maybe<MercuryIntervalConnection>;
14930
14909
  interval?: Maybe<MercuryInterval>;
14931
14910
  orgLevel?: Maybe<MercuryOrgLevel>;
@@ -14966,7 +14945,21 @@ export declare type MercuryQueryApiInitiativesArgs = {
14966
14945
  };
14967
14946
  export declare type MercuryQueryApiTeamAllocationArgs = {
14968
14947
  teamId: Scalars['ID'];
14969
- intervalId?: Maybe<Scalars['ID']>;
14948
+ intervalId: Scalars['ID'];
14949
+ };
14950
+ export declare type MercuryQueryApiTeamAllocationForActiveIntervalArgs = {
14951
+ teamId: Scalars['ID'];
14952
+ };
14953
+ export declare type MercuryQueryApiTeamAllocationsByOrgLevelArgs = {
14954
+ orgLevelId: Scalars['ID'];
14955
+ intervalId: Scalars['ID'];
14956
+ first?: Maybe<Scalars['Int']>;
14957
+ after?: Maybe<Scalars['String']>;
14958
+ };
14959
+ export declare type MercuryQueryApiTeamAllocationsByOrgLevelForActiveIntervalArgs = {
14960
+ orgLevelId: Scalars['ID'];
14961
+ first?: Maybe<Scalars['Int']>;
14962
+ after?: Maybe<Scalars['String']>;
14970
14963
  };
14971
14964
  export declare type MercuryQueryApiIntervalsArgs = {
14972
14965
  first?: Maybe<Scalars['Int']>;
@@ -15033,12 +15026,18 @@ export declare type MercuryTeam = Node & {
15033
15026
  export declare type MercuryTeamAllocation = {
15034
15027
  __typename?: 'MercuryTeamAllocation';
15035
15028
  id: Scalars['ID'];
15036
- intervalId?: Maybe<Scalars['ID']>;
15029
+ intervalId: Scalars['ID'];
15037
15030
  teamId: Scalars['ID'];
15038
15031
  teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
15039
15032
  status: MercuryTeamAllocationStatus;
15040
15033
  nextPossibleStatuses: Array<MercuryTeamAllocationStatus>;
15041
15034
  };
15035
+ export declare type MercuryTeamAllocationConnection = {
15036
+ __typename?: 'MercuryTeamAllocationConnection';
15037
+ edges?: Maybe<Array<Maybe<MercuryTeamAllocationEdge>>>;
15038
+ nodes?: Maybe<Array<Maybe<MercuryTeamAllocation>>>;
15039
+ pageInfo: PageInfo;
15040
+ };
15042
15041
  export declare type MercuryTeamAllocationDeletePayload = Payload & {
15043
15042
  __typename?: 'MercuryTeamAllocationDeletePayload';
15044
15043
  deletedTeamAllocationId?: Maybe<Scalars['ID']>;
@@ -15047,6 +15046,11 @@ export declare type MercuryTeamAllocationDeletePayload = Payload & {
15047
15046
  statusCode: Scalars['Int'];
15048
15047
  message: Scalars['String'];
15049
15048
  };
15049
+ export declare type MercuryTeamAllocationEdge = {
15050
+ __typename?: 'MercuryTeamAllocationEdge';
15051
+ cursor: Scalars['String'];
15052
+ node?: Maybe<MercuryTeamAllocation>;
15053
+ };
15050
15054
  export declare type MercuryTeamAllocationEntry = {
15051
15055
  __typename?: 'MercuryTeamAllocationEntry';
15052
15056
  initiativeId: Scalars['String'];
@@ -16798,6 +16802,7 @@ export declare type PolarisMatrixAxis = {
16798
16802
  dimension: Scalars['String'];
16799
16803
  field: PolarisIdeaField;
16800
16804
  fieldOptions?: Maybe<Array<PolarisGroupValue>>;
16805
+ reversed?: Maybe<Scalars['Boolean']>;
16801
16806
  };
16802
16807
  export declare type PolarisMatrixConfig = {
16803
16808
  __typename?: 'PolarisMatrixConfig';
@@ -17082,6 +17087,7 @@ export declare type PolarisView = {
17082
17087
  __typename?: 'PolarisView';
17083
17088
  id: Scalars['ID'];
17084
17089
  xid?: Maybe<Scalars['Int']>;
17090
+ uuid: Scalars['ID'];
17085
17091
  name: Scalars['String'];
17086
17092
  emoji?: Maybe<Scalars['String']>;
17087
17093
  description?: Maybe<Scalars['JSON']>;
@@ -17973,6 +17979,7 @@ export declare type RoadmapItem = {
17973
17979
  componentIds?: Maybe<Array<Scalars['ID']>>;
17974
17980
  inferredDueDate?: Maybe<Scalars['Date']>;
17975
17981
  inferredStartDate?: Maybe<Scalars['Date']>;
17982
+ resolved?: Maybe<Scalars['Boolean']>;
17976
17983
  };
17977
17984
  export declare type RoadmapItemConnection = {
17978
17985
  __typename?: 'RoadmapItemConnection';
@@ -19263,6 +19270,7 @@ export declare type ShepherdQuery = {
19263
19270
  shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
19264
19271
  shepherdUser?: Maybe<ShepherdUser>;
19265
19272
  subscriptions?: Maybe<ShepherdSubscriptionsResult>;
19273
+ workspace?: Maybe<ShepherdWorkspaceResult>;
19266
19274
  };
19267
19275
  export declare type ShepherdQueryShepherdActivityArgs = {
19268
19276
  actions?: Maybe<Array<Maybe<ShepherdActionType>>>;
@@ -19292,6 +19300,12 @@ export declare type ShepherdQueryShepherdUserArgs = {
19292
19300
  export declare type ShepherdQuerySubscriptionsArgs = {
19293
19301
  workspace: Scalars['ID'];
19294
19302
  };
19303
+ export declare type ShepherdQueryWorkspaceArgs = {
19304
+ cloudId?: Maybe<Scalars['ID']>;
19305
+ hostname?: Maybe<Scalars['String']>;
19306
+ id?: Maybe<Scalars['ID']>;
19307
+ orgId?: Maybe<Scalars['ID']>;
19308
+ };
19295
19309
  export declare enum ShepherdQueryErrorType {
19296
19310
  NoProductAccess = "NO_PRODUCT_ACCESS",
19297
19311
  Unauthorized = "UNAUTHORIZED"
@@ -19302,6 +19316,7 @@ export declare type ShepherdResourceActivity = {
19302
19316
  actor: ShepherdUser;
19303
19317
  id?: Maybe<Scalars['String']>;
19304
19318
  resourceAri: Scalars['String'];
19319
+ resourceUrl?: Maybe<Scalars['String']>;
19305
19320
  time: Scalars['DateTime'];
19306
19321
  };
19307
19322
  export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
@@ -19495,6 +19510,21 @@ export declare enum ShepherdWebhookType {
19495
19510
  MicrosoftTeams = "MICROSOFT_TEAMS",
19496
19511
  Slack = "SLACK"
19497
19512
  }
19513
+ export declare type ShepherdWorkspace = {
19514
+ __typename?: 'ShepherdWorkspace';
19515
+ ari: Scalars['ID'];
19516
+ cloudId: Scalars['ID'];
19517
+ orgId: Scalars['ID'];
19518
+ };
19519
+ export declare type ShepherdWorkspaceConnection = {
19520
+ __typename?: 'ShepherdWorkspaceConnection';
19521
+ edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
19522
+ };
19523
+ export declare type ShepherdWorkspaceEdge = {
19524
+ __typename?: 'ShepherdWorkspaceEdge';
19525
+ node?: Maybe<ShepherdWorkspace>;
19526
+ };
19527
+ export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
19498
19528
  export declare type SmartsContext = {
19499
19529
  userId: Scalars['String'];
19500
19530
  tenantId: Scalars['String'];
@@ -20681,12 +20711,50 @@ export declare type TransitionFilter = {
20681
20711
  from: Scalars['String'];
20682
20712
  to: Scalars['String'];
20683
20713
  };
20714
+ export declare type TrelloBoard = {
20715
+ __typename?: 'TrelloBoard';
20716
+ closed: Scalars['Boolean'];
20717
+ id: Scalars['ID'];
20718
+ lastActivityAt?: Maybe<Scalars['DateTime']>;
20719
+ name: Scalars['String'];
20720
+ prefs: TrelloBoardPrefs;
20721
+ shortLink: Scalars['TrelloShortLink'];
20722
+ viewer?: Maybe<TrelloBoardViewer>;
20723
+ workspace?: Maybe<TrelloWorkspaceInfo>;
20724
+ };
20725
+ export declare type TrelloBoardBackground = {
20726
+ __typename?: 'TrelloBoardBackground';
20727
+ color?: Maybe<Scalars['String']>;
20728
+ image?: Maybe<Scalars['String']>;
20729
+ imageScaled?: Maybe<Array<TrelloScaleProps>>;
20730
+ tile: Scalars['Boolean'];
20731
+ };
20732
+ export declare type TrelloBoardPrefs = {
20733
+ __typename?: 'TrelloBoardPrefs';
20734
+ background: TrelloBoardBackground;
20735
+ isTemplate: Scalars['Boolean'];
20736
+ };
20737
+ export declare type TrelloBoardViewer = {
20738
+ __typename?: 'TrelloBoardViewer';
20739
+ lastSeenAt?: Maybe<Scalars['DateTime']>;
20740
+ starred: Scalars['Boolean'];
20741
+ };
20684
20742
  export declare type TrelloQueryApi = {
20685
20743
  __typename?: 'TrelloQueryApi';
20744
+ board?: Maybe<TrelloBoard>;
20686
20745
  echo: Scalars['String'];
20687
20746
  templateCategories: Array<TrelloTemplateGalleryCategory>;
20688
20747
  templateLanguages: Array<TrelloTemplateGalleryLanguage>;
20689
20748
  };
20749
+ export declare type TrelloQueryApiBoardArgs = {
20750
+ id: Scalars['ID'];
20751
+ };
20752
+ export declare type TrelloScaleProps = {
20753
+ __typename?: 'TrelloScaleProps';
20754
+ height: Scalars['Int'];
20755
+ url: Scalars['String'];
20756
+ width: Scalars['Int'];
20757
+ };
20690
20758
  export declare type TrelloTemplateGalleryCategory = {
20691
20759
  __typename?: 'TrelloTemplateGalleryCategory';
20692
20760
  key: Scalars['String'];
@@ -20699,6 +20767,11 @@ export declare type TrelloTemplateGalleryLanguage = {
20699
20767
  locale: Scalars['String'];
20700
20768
  localizedDescription: Scalars['String'];
20701
20769
  };
20770
+ export declare type TrelloWorkspaceInfo = {
20771
+ __typename?: 'TrelloWorkspaceInfo';
20772
+ displayName: Scalars['String'];
20773
+ id: Scalars['ID'];
20774
+ };
20702
20775
  export declare type TunnelDefinitionsInput = {
20703
20776
  faasTunnelUrl?: Maybe<Scalars['URL']>;
20704
20777
  customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
@@ -21119,6 +21192,7 @@ export declare type UpdatePolarisMatrixAxis = {
21119
21192
  dimension: Scalars['String'];
21120
21193
  field: Scalars['ID'];
21121
21194
  fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
21195
+ reversed?: Maybe<Scalars['Boolean']>;
21122
21196
  };
21123
21197
  export declare type UpdatePolarisMatrixConfig = {
21124
21198
  axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;