@forge/cli-shared 8.4.0-next.8 → 8.5.0-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,30 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.5.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - be30715: Add integration tests for developer space flow, comment T&C flow
8
+
9
+ ## 8.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - b40750e: Update forge create to include Dashboards EAP option publicly
14
+ - b003963: Added deploy list command
15
+
16
+ ### Patch Changes
17
+
18
+ - d77aea3: Cache credentials in credential store
19
+ - d273489: Add support for CI mode with devSpace in register and create command
20
+ - 268551f: Simplify tunnel classes and analytics
21
+ - 84dcafe: Cache user credentials in UserRepository
22
+ - Updated dependencies [8ba142a]
23
+ - Updated dependencies [0db59f9]
24
+ - Updated dependencies [86dbde7]
25
+ - Updated dependencies [a614f0b]
26
+ - @forge/manifest@10.3.0
27
+
3
28
  ## 8.4.0-next.8
4
29
 
5
30
  ### Minor Changes
@@ -1409,6 +1409,7 @@ export declare type AgentStudioAgent = {
1409
1409
  id: Scalars['ID']['output'];
1410
1410
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
1411
1411
  name?: Maybe<Scalars['String']['output']>;
1412
+ scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
1412
1413
  };
1413
1414
  export declare type AgentStudioAgentCreatePermission = {
1414
1415
  __typename?: 'AgentStudioAgentCreatePermission';
@@ -1464,6 +1465,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
1464
1465
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
1465
1466
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
1466
1467
  name?: Maybe<Scalars['String']['output']>;
1468
+ scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
1467
1469
  };
1468
1470
  export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
1469
1471
  __typename?: 'AgentStudioAssistantScenario';
@@ -1514,6 +1516,7 @@ export declare type AgentStudioCreateAgentInput = {
1514
1516
  jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
1515
1517
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
1516
1518
  name?: InputMaybe<Scalars['String']['input']>;
1519
+ scenarios?: InputMaybe<Array<InputMaybe<AgentStudioScenarioInput>>>;
1517
1520
  };
1518
1521
  export declare type AgentStudioCreateAgentPayload = Payload & {
1519
1522
  __typename?: 'AgentStudioCreateAgentPayload';
@@ -1642,6 +1645,15 @@ export declare type AgentStudioScenario = {
1642
1645
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
1643
1646
  name: Scalars['String']['output'];
1644
1647
  };
1648
+ export declare type AgentStudioScenarioInput = {
1649
+ actions?: InputMaybe<Array<InputMaybe<AgentStudioActionInput>>>;
1650
+ instructions?: InputMaybe<Scalars['String']['input']>;
1651
+ invocationDescription?: InputMaybe<Scalars['String']['input']>;
1652
+ isActive?: InputMaybe<Scalars['Boolean']['input']>;
1653
+ isDefault?: InputMaybe<Scalars['Boolean']['input']>;
1654
+ knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
1655
+ name?: InputMaybe<Scalars['String']['input']>;
1656
+ };
1645
1657
  export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
1646
1658
  export declare type AgentStudioScenarioValidateInput = {
1647
1659
  invocationDescription: Scalars['String']['input'];
@@ -1700,6 +1712,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
1700
1712
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
1701
1713
  linkedJiraProject?: Maybe<JiraProject>;
1702
1714
  name?: Maybe<Scalars['String']['output']>;
1715
+ scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
1703
1716
  };
1704
1717
  export declare type AgentStudioSlackChannel = AgentStudioChannel & {
1705
1718
  __typename?: 'AgentStudioSlackChannel';
@@ -13071,6 +13084,21 @@ export declare type ConfluenceCalendarTimezones = {
13071
13084
  __typename?: 'ConfluenceCalendarTimezones';
13072
13085
  timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
13073
13086
  };
13087
+ export declare type ConfluenceCategorizeNbmCategory = {
13088
+ __typename?: 'ConfluenceCategorizeNbmCategory';
13089
+ nbmChains?: Maybe<Array<Maybe<Array<Maybe<Scalars['String']['output']>>>>>;
13090
+ type: ConfluenceCategorizeNbmCategoryTypes;
13091
+ };
13092
+ export declare enum ConfluenceCategorizeNbmCategoryTypes {
13093
+ NotSupported = "NOT_SUPPORTED",
13094
+ Supported = "SUPPORTED",
13095
+ SupportedWithMitigation = "SUPPORTED_WITH_MITIGATION",
13096
+ Unverified = "UNVERIFIED"
13097
+ }
13098
+ export declare type ConfluenceCategorizeNbmChainsResult = {
13099
+ __typename?: 'ConfluenceCategorizeNbmChainsResult';
13100
+ categories?: Maybe<Array<Maybe<ConfluenceCategorizeNbmCategory>>>;
13101
+ };
13074
13102
  export declare type ConfluenceChangeOrderOfCustomApplicationLinkInput = {
13075
13103
  id: Scalars['ID']['input'];
13076
13104
  idAfter?: InputMaybe<Scalars['ID']['input']>;
@@ -19900,6 +19928,76 @@ export declare type CustomerServiceAttributes = {
19900
19928
  maxAllowedAttributes?: Maybe<Scalars['Int']['output']>;
19901
19929
  };
19902
19930
  export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
19931
+ export declare type CustomerServiceBranding = {
19932
+ __typename?: 'CustomerServiceBranding';
19933
+ colors?: Maybe<CustomerServiceBrandingColors>;
19934
+ entityType: CustomerServiceBrandingEntityType;
19935
+ helpCenterId: Scalars['ID']['output'];
19936
+ icon?: Maybe<CustomerServiceBrandingIcon>;
19937
+ id: Scalars['ID']['output'];
19938
+ logo?: Maybe<CustomerServiceBrandingLogo>;
19939
+ tile?: Maybe<CustomerServiceBrandingTile>;
19940
+ };
19941
+ export declare type CustomerServiceBrandingColors = {
19942
+ __typename?: 'CustomerServiceBrandingColors';
19943
+ primary?: Maybe<Scalars['String']['output']>;
19944
+ textColor?: Maybe<Scalars['String']['output']>;
19945
+ };
19946
+ export declare type CustomerServiceBrandingColorsInput = {
19947
+ primary?: InputMaybe<Scalars['String']['input']>;
19948
+ textColor?: InputMaybe<Scalars['String']['input']>;
19949
+ };
19950
+ export declare enum CustomerServiceBrandingEntityType {
19951
+ CustomerHub = "CUSTOMER_HUB",
19952
+ SupportSite = "SUPPORT_SITE"
19953
+ }
19954
+ export declare type CustomerServiceBrandingIcon = {
19955
+ __typename?: 'CustomerServiceBrandingIcon';
19956
+ mediaFileId?: Maybe<Scalars['String']['output']>;
19957
+ url?: Maybe<Scalars['URL']['output']>;
19958
+ };
19959
+ export declare type CustomerServiceBrandingIconInput = {
19960
+ mediaFileId?: InputMaybe<Scalars['String']['input']>;
19961
+ };
19962
+ export declare type CustomerServiceBrandingLogo = {
19963
+ __typename?: 'CustomerServiceBrandingLogo';
19964
+ mediaFileId?: Maybe<Scalars['String']['output']>;
19965
+ url?: Maybe<Scalars['URL']['output']>;
19966
+ };
19967
+ export declare type CustomerServiceBrandingLogoInput = {
19968
+ mediaFileId?: InputMaybe<Scalars['String']['input']>;
19969
+ };
19970
+ export declare type CustomerServiceBrandingMediaConfig = {
19971
+ __typename?: 'CustomerServiceBrandingMediaConfig';
19972
+ asapIssuer?: Maybe<Scalars['String']['output']>;
19973
+ mediaCollectionName?: Maybe<Scalars['String']['output']>;
19974
+ mediaToken?: Maybe<Scalars['String']['output']>;
19975
+ mediaUrl?: Maybe<Scalars['String']['output']>;
19976
+ };
19977
+ export declare type CustomerServiceBrandingMediaConfigQueryResult = CustomerServiceBrandingMediaConfig | QueryError;
19978
+ export declare type CustomerServiceBrandingQueryResult = CustomerServiceBranding | QueryError;
19979
+ export declare type CustomerServiceBrandingTile = {
19980
+ __typename?: 'CustomerServiceBrandingTile';
19981
+ mediaFileId?: Maybe<Scalars['String']['output']>;
19982
+ url?: Maybe<Scalars['URL']['output']>;
19983
+ };
19984
+ export declare type CustomerServiceBrandingTileInput = {
19985
+ mediaFileId?: InputMaybe<Scalars['String']['input']>;
19986
+ };
19987
+ export declare type CustomerServiceBrandingUpsertInput = {
19988
+ colors?: InputMaybe<CustomerServiceBrandingColorsInput>;
19989
+ entityType: CustomerServiceBrandingEntityType;
19990
+ helpCenterId: Scalars['ID']['input'];
19991
+ icon?: InputMaybe<CustomerServiceBrandingIconInput>;
19992
+ logo?: InputMaybe<CustomerServiceBrandingLogoInput>;
19993
+ tile?: InputMaybe<CustomerServiceBrandingTileInput>;
19994
+ };
19995
+ export declare type CustomerServiceBrandingUpsertPayload = {
19996
+ __typename?: 'CustomerServiceBrandingUpsertPayload';
19997
+ branding?: Maybe<CustomerServiceBranding>;
19998
+ errors?: Maybe<Array<MutationError>>;
19999
+ success: Scalars['Boolean']['output'];
20000
+ };
19903
20001
  export declare type CustomerServiceContext = {
19904
20002
  issueId?: InputMaybe<Scalars['String']['input']>;
19905
20003
  type: CustomerServiceContextType;
@@ -20256,6 +20354,7 @@ export declare type CustomerServiceMutationApi = {
20256
20354
  updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
20257
20355
  updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
20258
20356
  updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
20357
+ upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
20259
20358
  };
20260
20359
  export declare type CustomerServiceMutationApiAddEntitlementArgs = {
20261
20360
  input: CustomerServiceEntitlementAddInput;
@@ -20371,6 +20470,9 @@ export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
20371
20470
  input: CustomerServiceTemplateFormUpdateInput;
20372
20471
  templateFormId: Scalars['ID']['input'];
20373
20472
  };
20473
+ export declare type CustomerServiceMutationApiUpsertBrandingArgs = {
20474
+ input: CustomerServiceBrandingUpsertInput;
20475
+ };
20374
20476
  export declare type CustomerServiceNote = {
20375
20477
  __typename?: 'CustomerServiceNote';
20376
20478
  author: CustomerServiceNoteAuthor;
@@ -20574,6 +20676,8 @@ export declare type CustomerServiceProductUpdatePayload = Payload & {
20574
20676
  };
20575
20677
  export declare type CustomerServiceQueryApi = {
20576
20678
  __typename?: 'CustomerServiceQueryApi';
20679
+ brandingByEntityType?: Maybe<CustomerServiceBrandingQueryResult>;
20680
+ brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
20577
20681
  customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
20578
20682
  entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
20579
20683
  escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
@@ -20587,6 +20691,14 @@ export declare type CustomerServiceQueryApi = {
20587
20691
  templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
20588
20692
  templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
20589
20693
  };
20694
+ export declare type CustomerServiceQueryApiBrandingByEntityTypeArgs = {
20695
+ entityType: CustomerServiceBrandingEntityType;
20696
+ helpCenterId: Scalars['ID']['input'];
20697
+ };
20698
+ export declare type CustomerServiceQueryApiBrandingMediaConfigByEntityTypeArgs = {
20699
+ entityType: CustomerServiceBrandingEntityType;
20700
+ helpCenterId: Scalars['ID']['input'];
20701
+ };
20590
20702
  export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
20591
20703
  customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
20592
20704
  };
@@ -22068,6 +22180,7 @@ export declare enum DevAiRovoDevSessionStatus {
22068
22180
  Cloning = "CLONING",
22069
22181
  Failed = "FAILED",
22070
22182
  Initialising = "INITIALISING",
22183
+ InProgress = "IN_PROGRESS",
22071
22184
  Pending = "PENDING",
22072
22185
  ReadyForReview = "READY_FOR_REVIEW",
22073
22186
  WaitingForUser = "WAITING_FOR_USER"
@@ -57201,6 +57314,7 @@ export declare type JiraAddFieldsToFieldSchemeInput = {
57201
57314
  };
57202
57315
  export declare type JiraAddFieldsToFieldSchemePayload = Payload & {
57203
57316
  __typename?: 'JiraAddFieldsToFieldSchemePayload';
57317
+ addedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
57204
57318
  errors?: Maybe<Array<MutationError>>;
57205
57319
  success: Scalars['Boolean']['output'];
57206
57320
  };
@@ -58709,7 +58823,7 @@ export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
58709
58823
  collapsed?: Maybe<Scalars['Boolean']['output']>;
58710
58824
  id: Scalars['ID']['output'];
58711
58825
  };
58712
- export declare type JiraBoardViewCell = {
58826
+ export declare type JiraBoardViewCell = Node & {
58713
58827
  __typename?: 'JiraBoardViewCell';
58714
58828
  column?: Maybe<JiraBoardViewColumn>;
58715
58829
  id: Scalars['ID']['output'];
@@ -62567,6 +62681,11 @@ export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
62567
62681
  first?: InputMaybe<Scalars['Int']['input']>;
62568
62682
  last?: InputMaybe<Scalars['Int']['input']>;
62569
62683
  };
62684
+ export declare type JiraForgeStringsFieldInput = {
62685
+ bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
62686
+ fieldId: Scalars['ID']['input'];
62687
+ labels: Array<JiraLabelsInput>;
62688
+ };
62570
62689
  export declare type JiraForgeUpdatePanelAction = {
62571
62690
  actionType: JiraForgeUpdatePanelActionType;
62572
62691
  projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
@@ -62651,6 +62770,11 @@ export declare type JiraForgeUsersFieldUsersArgs = {
62651
62770
  searchBy?: InputMaybe<Scalars['String']['input']>;
62652
62771
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
62653
62772
  };
62773
+ export declare type JiraForgeUsersFieldInput = {
62774
+ bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
62775
+ fieldId: Scalars['ID']['input'];
62776
+ users: Array<JiraUserInput>;
62777
+ };
62654
62778
  export declare type JiraForgeWorkItemPanel = {
62655
62779
  __typename?: 'JiraForgeWorkItemPanel';
62656
62780
  id: Scalars['ID']['output'];
@@ -64017,6 +64141,8 @@ export declare type JiraIssueFieldsInput = {
64017
64141
  entitlementField?: InputMaybe<JiraEntitlementFieldInput>;
64018
64142
  epicLinkField?: InputMaybe<JiraEpicLinkFieldInput>;
64019
64143
  issueType?: InputMaybe<JiraIssueTypeInput>;
64144
+ jiraForgeStringsFields?: InputMaybe<Array<JiraForgeStringsFieldInput>>;
64145
+ jiraForgeUsersFields?: InputMaybe<Array<JiraForgeUsersFieldInput>>;
64020
64146
  labelsFields?: InputMaybe<Array<JiraLabelsFieldInput>>;
64021
64147
  multipleGroupPickerFields?: InputMaybe<Array<JiraMultipleGroupPickerFieldInput>>;
64022
64148
  multipleSelectClearableUserPickerFields?: InputMaybe<Array<JiraMultipleSelectClearableUserPickerFieldInput>>;
@@ -74860,6 +74986,7 @@ export declare type JiraUpdateBackgroundInput = {
74860
74986
  entityId: Scalars['ID']['input'];
74861
74987
  };
74862
74988
  export declare type JiraUpdateCalendarViewConfigInput = {
74989
+ overrides?: InputMaybe<JiraCalendarViewSettings>;
74863
74990
  settings?: InputMaybe<JiraCalendarViewSettings>;
74864
74991
  viewId: Scalars['ID']['input'];
74865
74992
  };
@@ -90217,6 +90344,7 @@ export declare type Query = {
90217
90344
  confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
90218
90345
  confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
90219
90346
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
90347
+ confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
90220
90348
  confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
90221
90349
  confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
90222
90350
  confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
@@ -90380,6 +90508,7 @@ export declare type Query = {
90380
90508
  devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
90381
90509
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
90382
90510
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
90511
+ devopsmetrics_echo?: Maybe<Scalars['String']['output']>;
90383
90512
  diagnostics?: Maybe<Scalars['JSON']['output']>;
90384
90513
  dvcs?: Maybe<DvcsQuery>;
90385
90514
  echo?: Maybe<Scalars['String']['output']>;
@@ -90489,6 +90618,7 @@ export declare type Query = {
90489
90618
  jiraServers?: Maybe<JiraServersResult>;
90490
90619
  jira_backlog?: Maybe<JiraBacklog>;
90491
90620
  jira_boardView?: Maybe<JiraBoardView>;
90621
+ jira_boardViewCellsByIds?: Maybe<Array<Maybe<JiraBoardViewCell>>>;
90492
90622
  jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
90493
90623
  jira_categoryField?: Maybe<JiraJqlField>;
90494
90624
  jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
@@ -91290,6 +91420,10 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
91290
91420
  export declare type QueryConfluence_CalendarTimezonesArgs = {
91291
91421
  cloudId: Scalars['ID']['input'];
91292
91422
  };
91423
+ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
91424
+ cloudId: Scalars['ID']['input'];
91425
+ nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
91426
+ };
91293
91427
  export declare type QueryConfluence_ContentAiSummariesArgs = {
91294
91428
  contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
91295
91429
  objectType: KnowledgeGraphObjectType;
@@ -92100,6 +92234,9 @@ export declare type QueryDeveloperLogAccessArgs = {
92100
92234
  export declare type QueryDevelopmentInformationArgs = {
92101
92235
  issueId: Scalars['ID']['input'];
92102
92236
  };
92237
+ export declare type QueryDevopsmetrics_EchoArgs = {
92238
+ message: Scalars['String']['input'];
92239
+ };
92103
92240
  export declare type QueryEditorConversionSettingsArgs = {
92104
92241
  spaceKey: Scalars['String']['input'];
92105
92242
  };
@@ -92459,6 +92596,9 @@ export declare type QueryJira_BacklogArgs = {
92459
92596
  export declare type QueryJira_BoardViewArgs = {
92460
92597
  input: JiraBoardViewInput;
92461
92598
  };
92599
+ export declare type QueryJira_BoardViewCellsByIdsArgs = {
92600
+ ids: Array<Scalars['ID']['input']>;
92601
+ };
92462
92602
  export declare type QueryJira_BoardsByIdsArgs = {
92463
92603
  ids: Array<Scalars['ID']['input']>;
92464
92604
  };
@@ -95730,6 +95870,7 @@ export declare enum Scope {
95730
95870
  WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
95731
95871
  WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
95732
95872
  WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
95873
+ WriteTeam = "WRITE_TEAM",
95733
95874
  WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
95734
95875
  WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
95735
95876
  WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
@@ -103632,19 +103773,14 @@ export declare type TrelloAddRemoveMemberActionDisplayEntities = {
103632
103773
  };
103633
103774
  export declare type TrelloAiRule = {
103634
103775
  __typename?: 'TrelloAiRule';
103776
+ id: Scalars['ID']['output'];
103635
103777
  objectId: Scalars['ID']['output'];
103636
103778
  position?: Maybe<Scalars['Float']['output']>;
103637
103779
  rule?: Maybe<Scalars['String']['output']>;
103638
103780
  };
103639
- export declare type TrelloAiRuleInput = {
103640
- position: Scalars['Float']['input'];
103641
- rule: Scalars['String']['input'];
103642
- };
103643
- export declare type TrelloAiRulePayload = Payload & {
103644
- __typename?: 'TrelloAiRulePayload';
103645
- errors?: Maybe<Array<MutationError>>;
103646
- rules?: Maybe<Array<TrelloAiRule>>;
103647
- success: Scalars['Boolean']['output'];
103781
+ export declare type TrelloAiRuleDeleted = {
103782
+ __typename?: 'TrelloAiRuleDeleted';
103783
+ id: Scalars['ID']['output'];
103648
103784
  };
103649
103785
  export declare type TrelloAppCreator = {
103650
103786
  __typename?: 'TrelloAppCreator';
@@ -104127,6 +104263,7 @@ export declare type TrelloCard = Node & {
104127
104263
  description?: Maybe<TrelloUserGeneratedText>;
104128
104264
  due?: Maybe<TrelloCardDueInfo>;
104129
104265
  email?: Maybe<Scalars['String']['output']>;
104266
+ faviconUrl?: Maybe<Scalars['URL']['output']>;
104130
104267
  id: Scalars['ID']['output'];
104131
104268
  isTemplate?: Maybe<Scalars['Boolean']['output']>;
104132
104269
  labels?: Maybe<TrelloLabelConnection>;
@@ -104154,6 +104291,8 @@ export declare type TrelloCard = Node & {
104154
104291
  startedAt?: Maybe<Scalars['DateTime']['output']>;
104155
104292
  stickers?: Maybe<TrelloStickerConnection>;
104156
104293
  url?: Maybe<Scalars['URL']['output']>;
104294
+ urlSource?: Maybe<Scalars['String']['output']>;
104295
+ urlSourceText?: Maybe<Scalars['String']['output']>;
104157
104296
  };
104158
104297
  export declare type TrelloCardActionsArgs = {
104159
104298
  after?: InputMaybe<Scalars['String']['input']>;
@@ -104770,10 +104909,12 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
104770
104909
  };
104771
104910
  export declare type TrelloCreateCardInput = {
104772
104911
  externalSource?: InputMaybe<TrelloCardExternalSource>;
104912
+ faviconUrl?: InputMaybe<Scalars['String']['input']>;
104773
104913
  listId: Scalars['ID']['input'];
104774
104914
  name: Scalars['String']['input'];
104775
104915
  position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
104776
104916
  urlSource?: InputMaybe<Scalars['String']['input']>;
104917
+ urlSourceText?: InputMaybe<Scalars['String']['input']>;
104777
104918
  };
104778
104919
  export declare type TrelloCreateCardPayload = Payload & {
104779
104920
  __typename?: 'TrelloCreateCardPayload';
@@ -104800,6 +104941,16 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
104800
104941
  card?: Maybe<TrelloActionCardEntity>;
104801
104942
  memberCreator?: Maybe<TrelloActionMemberEntity>;
104802
104943
  };
104944
+ export declare type TrelloCreateMemberAiRuleInput = {
104945
+ position: Scalars['Float']['input'];
104946
+ rule: Scalars['String']['input'];
104947
+ };
104948
+ export declare type TrelloCreateMemberAiRulePayload = Payload & {
104949
+ __typename?: 'TrelloCreateMemberAiRulePayload';
104950
+ errors?: Maybe<Array<MutationError>>;
104951
+ member?: Maybe<TrelloMember>;
104952
+ success: Scalars['Boolean']['output'];
104953
+ };
104803
104954
  export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
104804
104955
  enabled: Scalars['Boolean']['input'];
104805
104956
  primaryCalendar?: InputMaybe<Scalars['Boolean']['input']>;
@@ -104936,6 +105087,15 @@ export declare type TrelloCustomFieldOptionValue = {
104936
105087
  export declare enum TrelloDataSourceHandler {
104937
105088
  LinkingPlatform = "LINKING_PLATFORM"
104938
105089
  }
105090
+ export declare type TrelloDeleteAiRuleInput = {
105091
+ aiRuleId: Scalars['ID']['input'];
105092
+ };
105093
+ export declare type TrelloDeleteAiRulePayload = Payload & {
105094
+ __typename?: 'TrelloDeleteAiRulePayload';
105095
+ aiRule?: Maybe<TrelloAiRuleDeleted>;
105096
+ errors?: Maybe<Array<MutationError>>;
105097
+ success: Scalars['Boolean']['output'];
105098
+ };
104939
105099
  export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & TrelloCardActionData & {
104940
105100
  __typename?: 'TrelloDeleteAttachmentFromCardAction';
104941
105101
  appCreator?: Maybe<TrelloAppCreator>;
@@ -105189,7 +105349,7 @@ export declare type TrelloListViewer = {
105189
105349
  export declare type TrelloMember = Node & {
105190
105350
  __typename?: 'TrelloMember';
105191
105351
  activityBlocked?: Maybe<Scalars['Boolean']['output']>;
105192
- aiRules?: Maybe<Array<TrelloAiRule>>;
105352
+ aiRules?: Maybe<TrelloMemberAiRuleConnection>;
105193
105353
  avatarSource?: Maybe<Scalars['String']['output']>;
105194
105354
  avatarUrl?: Maybe<Scalars['URL']['output']>;
105195
105355
  bio?: Maybe<Scalars['String']['output']>;
@@ -105212,6 +105372,10 @@ export declare type TrelloMember = Node & {
105212
105372
  username?: Maybe<Scalars['String']['output']>;
105213
105373
  workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
105214
105374
  };
105375
+ export declare type TrelloMemberAiRulesArgs = {
105376
+ after?: InputMaybe<Scalars['String']['input']>;
105377
+ first?: InputMaybe<Scalars['Int']['input']>;
105378
+ };
105215
105379
  export declare type TrelloMemberBoardStarsArgs = {
105216
105380
  after?: InputMaybe<Scalars['String']['input']>;
105217
105381
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -105221,6 +105385,16 @@ export declare type TrelloMemberWorkspacesArgs = {
105221
105385
  filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
105222
105386
  first?: InputMaybe<Scalars['Int']['input']>;
105223
105387
  };
105388
+ export declare type TrelloMemberAiRuleConnection = {
105389
+ __typename?: 'TrelloMemberAiRuleConnection';
105390
+ edges?: Maybe<Array<TrelloMemberAiRuleEdge>>;
105391
+ pageInfo: PageInfo;
105392
+ };
105393
+ export declare type TrelloMemberAiRuleEdge = {
105394
+ __typename?: 'TrelloMemberAiRuleEdge';
105395
+ cursor: Scalars['String']['output'];
105396
+ node?: Maybe<TrelloAiRule>;
105397
+ };
105224
105398
  export declare type TrelloMemberBoardStarConnection = {
105225
105399
  __typename?: 'TrelloMemberBoardStarConnection';
105226
105400
  edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
@@ -105372,12 +105546,13 @@ export declare type TrelloMutationApi = {
105372
105546
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
105373
105547
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
105374
105548
  assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
105375
- createAiRule?: Maybe<TrelloAiRulePayload>;
105376
105549
  createApplication?: Maybe<TrelloCreateApplicationPayload>;
105377
105550
  createCard?: Maybe<TrelloCreateCardPayload>;
105551
+ createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
105378
105552
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
105379
105553
  createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
105380
105554
  createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
105555
+ deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
105381
105556
  deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
105382
105557
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
105383
105558
  pinCard?: Maybe<TrelloPinCardPayload>;
@@ -105414,15 +105589,15 @@ export declare type TrelloMutationApiArchiveCardArgs = {
105414
105589
  export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
105415
105590
  input: TrelloAssignCardToPlannerCalendarEventInput;
105416
105591
  };
105417
- export declare type TrelloMutationApiCreateAiRuleArgs = {
105418
- input: TrelloAiRuleInput;
105419
- };
105420
105592
  export declare type TrelloMutationApiCreateApplicationArgs = {
105421
105593
  input: TrelloCreateApplicationInput;
105422
105594
  };
105423
105595
  export declare type TrelloMutationApiCreateCardArgs = {
105424
105596
  input: TrelloCreateCardInput;
105425
105597
  };
105598
+ export declare type TrelloMutationApiCreateMemberAiRuleArgs = {
105599
+ input: TrelloCreateMemberAiRuleInput;
105600
+ };
105426
105601
  export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
105427
105602
  input: TrelloCreateOrUpdatePlannerCalendarInput;
105428
105603
  };
@@ -105432,6 +105607,9 @@ export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
105432
105607
  export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
105433
105608
  input: TrelloCreateWorkspaceTagInput;
105434
105609
  };
105610
+ export declare type TrelloMutationApiDeleteAiRuleArgs = {
105611
+ input: TrelloDeleteAiRuleInput;
105612
+ };
105435
105613
  export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
105436
105614
  input: TrelloDeletePlannerCalendarEventInput;
105437
105615
  };
@@ -106605,6 +106783,7 @@ export declare type TrelloWorkspace = Node & {
106605
106783
  offering?: Maybe<Scalars['String']['output']>;
106606
106784
  prefs?: Maybe<TrelloWorkspacePrefs>;
106607
106785
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
106786
+ products?: Maybe<Array<Scalars['Float']['output']>>;
106608
106787
  tags?: Maybe<TrelloTagConnection>;
106609
106788
  url?: Maybe<Scalars['URL']['output']>;
106610
106789
  website?: Maybe<Scalars['String']['output']>;
@@ -109871,6 +110050,7 @@ export declare type WorkSuggestions = {
109871
110050
  __typename?: 'WorkSuggestions';
109872
110051
  suggestionsByIssues?: Maybe<WorkSuggestionsByIssuesResponse>;
109873
110052
  suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
110053
+ suggestionsByVersion?: Maybe<WorkSuggestionsByVersionResponse>;
109874
110054
  userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
109875
110055
  workSuggestionsByContextAri: WorkSuggestionsConnection;
109876
110056
  };
@@ -109885,6 +110065,10 @@ export declare type WorkSuggestionsSuggestionsByProjectsArgs = {
109885
110065
  projectAris: Array<Scalars['ID']['input']>;
109886
110066
  sprintAutoDiscoveryLimit?: InputMaybe<Scalars['Int']['input']>;
109887
110067
  };
110068
+ export declare type WorkSuggestionsSuggestionsByVersionArgs = {
110069
+ cloudId: Scalars['ID']['input'];
110070
+ versionId: Scalars['ID']['input'];
110071
+ };
109888
110072
  export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
109889
110073
  cloudId: Scalars['ID']['input'];
109890
110074
  };
@@ -110027,6 +110211,10 @@ export declare type WorkSuggestionsByProjectsResponseIssueMissingDetailsSuggesti
110027
110211
  export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs = {
110028
110212
  input?: InputMaybe<WorkSuggestionsInput>;
110029
110213
  };
110214
+ export declare type WorkSuggestionsByVersionResponse = {
110215
+ __typename?: 'WorkSuggestionsByVersionResponse';
110216
+ blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
110217
+ };
110030
110218
  export declare type WorkSuggestionsCommon = {
110031
110219
  id: Scalars['String']['output'];
110032
110220
  orderScore?: Maybe<WorkSuggestionsOrderScore>;