@forge/cli-shared 5.6.0-next.13 → 5.6.0-next.15

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,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.6.0-next.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 9c5836c: cleanup ff
8
+ - Updated dependencies [d9e0900]
9
+ - @forge/manifest@7.9.0-next.13
10
+
11
+ ## 5.6.0-next.14
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [5cd256c]
16
+ - @forge/manifest@7.9.0-next.12
17
+
3
18
  ## 5.6.0-next.13
4
19
 
5
20
  ### Patch Changes
@@ -832,9 +832,13 @@ export declare type AppEnvironmentVersion = {
832
832
  permissions: Array<AppPermission>;
833
833
  requiresLicense: Scalars['Boolean']['output'];
834
834
  storage: Storage;
835
+ trustSignal: TrustSignal;
835
836
  updatedAt: Scalars['String']['output'];
836
837
  version: Scalars['String']['output'];
837
838
  };
839
+ export declare type AppEnvironmentVersionTrustSignalArgs = {
840
+ key: Scalars['ID']['input'];
841
+ };
838
842
  export declare type AppEnvironmentVersionConnection = {
839
843
  __typename?: 'AppEnvironmentVersionConnection';
840
844
  edges?: Maybe<Array<Maybe<AppEnvironmentVersionEdge>>>;
@@ -3842,6 +3846,7 @@ export declare type CompassComponent = Node & {
3842
3846
  type: CompassComponentType;
3843
3847
  typeId: Scalars['ID']['output'];
3844
3848
  typeMetadata?: Maybe<CompassComponentTypeObject>;
3849
+ viewerApplicableScorecards?: Maybe<CompassComponentViewerApplicableScorecardsConnection>;
3845
3850
  viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
3846
3851
  viewerSubscription?: Maybe<CompassViewerSubscription>;
3847
3852
  };
@@ -3865,6 +3870,10 @@ export declare type CompassComponentRelationshipsArgs = {
3865
3870
  export declare type CompassComponentScorecardScoreArgs = {
3866
3871
  query?: InputMaybe<CompassComponentScorecardScoreQuery>;
3867
3872
  };
3873
+ export declare type CompassComponentViewerApplicableScorecardsArgs = {
3874
+ after?: InputMaybe<Scalars['String']['input']>;
3875
+ first?: InputMaybe<Scalars['Int']['input']>;
3876
+ };
3868
3877
  export declare type CompassComponentApi = {
3869
3878
  __typename?: 'CompassComponentApi';
3870
3879
  changelog: CompassComponentApiChangelogConnection;
@@ -4219,6 +4228,17 @@ export declare type CompassComponentTypeQueryInput = {
4219
4228
  };
4220
4229
  export declare type CompassComponentTypeResult = CompassComponentTypeObject | QueryError;
4221
4230
  export declare type CompassComponentTypesQueryResult = CompassComponentTypeConnection | QueryError;
4231
+ export declare type CompassComponentViewerApplicableScorecardEdge = {
4232
+ __typename?: 'CompassComponentViewerApplicableScorecardEdge';
4233
+ cursor: Scalars['String']['output'];
4234
+ node?: Maybe<CompassScorecard>;
4235
+ };
4236
+ export declare type CompassComponentViewerApplicableScorecardsConnection = {
4237
+ __typename?: 'CompassComponentViewerApplicableScorecardsConnection';
4238
+ edges?: Maybe<Array<CompassComponentViewerApplicableScorecardEdge>>;
4239
+ nodes?: Maybe<Array<CompassScorecard>>;
4240
+ pageInfo: PageInfo;
4241
+ };
4222
4242
  export declare type CompassCreateAlertEventInput = {
4223
4243
  alertProperties: CompassAlertEventPropertiesInput;
4224
4244
  description: Scalars['String']['input'];
@@ -5156,9 +5176,12 @@ export declare type CompassFilteredComponentsCount = {
5156
5176
  count: Scalars['Int']['output'];
5157
5177
  };
5158
5178
  export declare type CompassFilteredComponentsCountQuery = {
5179
+ componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
5159
5180
  fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
5160
5181
  labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
5182
+ lifecycleFilter?: InputMaybe<CompassLifecycleFilterInput>;
5161
5183
  ownerIds?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
5184
+ repositoryLinkFilter?: InputMaybe<CompassRepositoryValueInput>;
5162
5185
  types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
5163
5186
  };
5164
5187
  export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
@@ -5458,7 +5481,7 @@ export declare enum CompassLifecycleEventStage {
5458
5481
  export declare type CompassLifecycleFilter = {
5459
5482
  __typename?: 'CompassLifecycleFilter';
5460
5483
  operator: Scalars['String']['output'];
5461
- values?: Maybe<Array<CompassLifecycleEventStage>>;
5484
+ values?: Maybe<Array<Scalars['String']['output']>>;
5462
5485
  };
5463
5486
  export declare type CompassLifecycleFilterInput = {
5464
5487
  operator: CompassLifecycleFilterOperator;
@@ -39482,6 +39505,10 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
39482
39505
  errors?: Maybe<Array<MutationError>>;
39483
39506
  success: Scalars['Boolean']['output'];
39484
39507
  };
39508
+ export declare type JiraArchiveJourneyConfigurationInput = {
39509
+ id: Scalars['ID']['input'];
39510
+ version: Scalars['Long']['input'];
39511
+ };
39485
39512
  export declare type JiraArchivedIssue = {
39486
39513
  __typename?: 'JiraArchivedIssue';
39487
39514
  archivedBy?: Maybe<User>;
@@ -42210,6 +42237,10 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
42210
42237
  name: Scalars['String']['output'];
42211
42238
  type: Scalars['String']['output'];
42212
42239
  };
42240
+ export declare type JiraDisableJourneyConfigurationInput = {
42241
+ id: Scalars['ID']['input'];
42242
+ version: Scalars['Long']['input'];
42243
+ };
42213
42244
  export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
42214
42245
  isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
42215
42246
  };
@@ -43368,6 +43399,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
43368
43399
  fields?: Maybe<JiraIssueFieldConnection>;
43369
43400
  fieldsById?: Maybe<JiraIssueFieldConnection>;
43370
43401
  fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
43402
+ hasChildren?: Maybe<Scalars['Boolean']['output']>;
43371
43403
  hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
43372
43404
  hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
43373
43405
  hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
@@ -44489,6 +44521,7 @@ export declare type JiraIssueSearchView = Node & {
44489
44521
  id: Scalars['ID']['output'];
44490
44522
  isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
44491
44523
  namespace?: Maybe<Scalars['String']['output']>;
44524
+ viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
44492
44525
  viewId?: Maybe<Scalars['String']['output']>;
44493
44526
  };
44494
44527
  export declare type JiraIssueSearchViewFieldSetsArgs = {
@@ -44498,10 +44531,18 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
44498
44531
  first?: InputMaybe<Scalars['Int']['input']>;
44499
44532
  last?: InputMaybe<Scalars['Int']['input']>;
44500
44533
  };
44534
+ export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
44535
+ staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
44536
+ };
44501
44537
  export declare type JiraIssueSearchViewConfigInput = {
44502
44538
  staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
44503
44539
  viewInput?: InputMaybe<JiraIssueSearchViewInput>;
44504
44540
  };
44541
+ export declare type JiraIssueSearchViewConfigSettings = {
44542
+ __typename?: 'JiraIssueSearchViewConfigSettings';
44543
+ canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
44544
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
44545
+ };
44505
44546
  export declare type JiraIssueSearchViewFieldSetsContext = {
44506
44547
  projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
44507
44548
  };
@@ -44556,7 +44597,13 @@ export declare type JiraIssueTransitionFieldLevelInput = {
44556
44597
  JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
44557
44598
  JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
44558
44599
  JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
44600
+ JiraForgeDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
44601
+ JiraForgeDatetimeField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
44602
+ JiraForgeNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
44603
+ JiraForgeObjectField?: InputMaybe<Array<JiraUpdateForgeObjectFieldInput>>;
44559
44604
  JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
44605
+ JiraForgeStringsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
44606
+ JiraForgeUserField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
44560
44607
  JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
44561
44608
  JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
44562
44609
  JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
@@ -45855,6 +45902,7 @@ export declare type JiraMutation = {
45855
45902
  addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
45856
45903
  addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
45857
45904
  answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
45905
+ archiveJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45858
45906
  assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
45859
45907
  attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
45860
45908
  bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
@@ -45889,6 +45937,7 @@ export declare type JiraMutation = {
45889
45937
  deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
45890
45938
  deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
45891
45939
  devOps?: Maybe<JiraDevOpsMutation>;
45940
+ disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45892
45941
  grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
45893
45942
  initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
45894
45943
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
@@ -46036,6 +46085,10 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
46036
46085
  cloudId: Scalars['ID']['input'];
46037
46086
  input: JiraAnswerApprovalDecisionInput;
46038
46087
  };
46088
+ export declare type JiraMutationArchiveJiraJourneyConfigurationArgs = {
46089
+ cloudId: Scalars['ID']['input'];
46090
+ input: JiraArchiveJourneyConfigurationInput;
46091
+ };
46039
46092
  export declare type JiraMutationAssignRelatedWorkToUserArgs = {
46040
46093
  input: JiraAssignRelatedWorkInput;
46041
46094
  };
@@ -46148,6 +46201,10 @@ export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
46148
46201
  export declare type JiraMutationDeleteProjectShortcutArgs = {
46149
46202
  input: JiraDeleteShortcutInput;
46150
46203
  };
46204
+ export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
46205
+ cloudId: Scalars['ID']['input'];
46206
+ input: JiraDisableJourneyConfigurationInput;
46207
+ };
46151
46208
  export declare type JiraMutationGrantGlobalPermissionArgs = {
46152
46209
  cloudId: Scalars['ID']['input'];
46153
46210
  input: JiraGlobalPermissionAddGroupGrantInput;
@@ -48834,6 +48891,7 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
48834
48891
  export declare type JiraQueryIssueSearchViewResultArgs = {
48835
48892
  cloudId: Scalars['ID']['input'];
48836
48893
  filterId?: InputMaybe<Scalars['String']['input']>;
48894
+ issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
48837
48895
  namespace?: InputMaybe<Scalars['String']['input']>;
48838
48896
  viewId?: InputMaybe<Scalars['String']['input']>;
48839
48897
  };
@@ -55108,6 +55166,11 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
55108
55166
  export declare type KnowledgeDiscoveryEntity = {
55109
55167
  id: Scalars['ID']['output'];
55110
55168
  };
55169
+ export declare type KnowledgeDiscoveryEntityGroup = {
55170
+ __typename?: 'KnowledgeDiscoveryEntityGroup';
55171
+ entities?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
55172
+ entityType: KnowledgeDiscoveryEntityType;
55173
+ };
55111
55174
  export declare enum KnowledgeDiscoveryEntityType {
55112
55175
  ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
55113
55176
  ConfluenceDocument = "CONFLUENCE_DOCUMENT",
@@ -55188,6 +55251,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
55188
55251
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
55189
55252
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
55190
55253
  relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
55254
+ searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
55191
55255
  searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
55192
55256
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
55193
55257
  topic?: Maybe<KnowledgeDiscoveryTopicResult>;
@@ -55246,6 +55310,12 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
55246
55310
  relatedEntityType: KnowledgeDiscoveryEntityType;
55247
55311
  workspaceId?: InputMaybe<Scalars['String']['input']>;
55248
55312
  };
55313
+ export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
55314
+ cloudId?: InputMaybe<Scalars['String']['input']>;
55315
+ query: Scalars['String']['input'];
55316
+ relatedEntityRequests?: InputMaybe<KnowledgeDiscoveryRelatedEntityRequests>;
55317
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
55318
+ };
55249
55319
  export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
55250
55320
  orgId: Scalars['String']['input'];
55251
55321
  teamName: Scalars['String']['input'];
@@ -55275,6 +55345,13 @@ export declare type KnowledgeDiscoveryRelatedEntityConnection = {
55275
55345
  nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
55276
55346
  pageInfo: KnowledgeDiscoveryPageInfo;
55277
55347
  };
55348
+ export declare type KnowledgeDiscoveryRelatedEntityRequest = {
55349
+ count: Scalars['Int']['input'];
55350
+ entityType: KnowledgeDiscoveryEntityType;
55351
+ };
55352
+ export declare type KnowledgeDiscoveryRelatedEntityRequests = {
55353
+ requests?: InputMaybe<Array<KnowledgeDiscoveryRelatedEntityRequest>>;
55354
+ };
55278
55355
  export declare enum KnowledgeDiscoverySearchQueryClassification {
55279
55356
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
55280
55357
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
@@ -55282,6 +55359,11 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
55282
55359
  Person = "PERSON",
55283
55360
  Team = "TEAM"
55284
55361
  }
55362
+ export declare type KnowledgeDiscoverySearchRelatedEntities = {
55363
+ __typename?: 'KnowledgeDiscoverySearchRelatedEntities';
55364
+ entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
55365
+ };
55366
+ export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDiscoverySearchRelatedEntities | QueryError;
55285
55367
  export declare type KnowledgeDiscoverySmartAnswersRoute = {
55286
55368
  __typename?: 'KnowledgeDiscoverySmartAnswersRoute';
55287
55369
  route: KnowledgeDiscoverySearchQueryClassification;
@@ -65754,9 +65836,11 @@ export declare type ShepherdActorSessionInfoInput = {
65754
65836
  };
65755
65837
  export declare type ShepherdAlert = Node & {
65756
65838
  __typename?: 'ShepherdAlert';
65839
+ actor: ShepherdAlertActor;
65757
65840
  assignee?: Maybe<ShepherdUser>;
65758
65841
  cloudId?: Maybe<Scalars['ID']['output']>;
65759
65842
  createdOn: Scalars['DateTime']['output'];
65843
+ customFields?: Maybe<Scalars['JSON']['output']>;
65760
65844
  description?: Maybe<ShepherdDescriptionTemplate>;
65761
65845
  id: Scalars['ID']['output'];
65762
65846
  linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
@@ -65766,7 +65850,9 @@ export declare type ShepherdAlert = Node & {
65766
65850
  statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
65767
65851
  supportingData?: Maybe<ShepherdAlertSupportingData>;
65768
65852
  template?: Maybe<ShepherdAlertTemplateType>;
65853
+ time: ShepherdTime;
65769
65854
  title: Scalars['String']['output'];
65855
+ type: Scalars['String']['output'];
65770
65856
  updatedBy?: Maybe<ShepherdUser>;
65771
65857
  updatedOn?: Maybe<Scalars['DateTime']['output']>;
65772
65858
  workspaceId?: Maybe<Scalars['ID']['output']>;
@@ -65777,6 +65863,7 @@ export declare enum ShepherdAlertAction {
65777
65863
  Restrict = "RESTRICT",
65778
65864
  UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
65779
65865
  }
65866
+ export declare type ShepherdAlertActor = ShepherdActor | ShepherdAnonymousActor | ShepherdAtlassianSystemActor;
65780
65867
  export declare type ShepherdAlertAuthorizedActions = {
65781
65868
  __typename?: 'ShepherdAlertAuthorizedActions';
65782
65869
  actions?: Maybe<Array<ShepherdAlertAction>>;
@@ -65945,6 +66032,10 @@ export declare type ShepherdAlertsConnection = {
65945
66032
  pageInfo: PageInfo;
65946
66033
  };
65947
66034
  export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
66035
+ export declare type ShepherdAnonymousActor = {
66036
+ __typename?: 'ShepherdAnonymousActor';
66037
+ ipAddress?: Maybe<Scalars['String']['output']>;
66038
+ };
65948
66039
  export declare type ShepherdAppInfo = {
65949
66040
  __typename?: 'ShepherdAppInfo';
65950
66041
  apiVersion: Scalars['Int']['output'];
@@ -65960,6 +66051,10 @@ export declare enum ShepherdAtlassianProduct {
65960
66051
  JiraSoftware = "JIRA_SOFTWARE",
65961
66052
  Marketplace = "MARKETPLACE"
65962
66053
  }
66054
+ export declare type ShepherdAtlassianSystemActor = {
66055
+ __typename?: 'ShepherdAtlassianSystemActor';
66056
+ name: Scalars['String']['output'];
66057
+ };
65963
66058
  export declare type ShepherdAuditLogAttribute = {
65964
66059
  __typename?: 'ShepherdAuditLogAttribute';
65965
66060
  name: Scalars['String']['output'];
@@ -69441,6 +69536,22 @@ export declare type TrelloCreateCardPayload = Payload & {
69441
69536
  errors?: Maybe<Array<MutationError>>;
69442
69537
  success: Scalars['Boolean']['output'];
69443
69538
  };
69539
+ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
69540
+ enabled: Scalars['Boolean']['input'];
69541
+ providerCalendarId: Scalars['ID']['input'];
69542
+ type: TrelloSupportedPlannerProviders;
69543
+ workspaceId: Scalars['ID']['input'];
69544
+ };
69545
+ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
69546
+ __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
69547
+ errors?: Maybe<Array<MutationError>>;
69548
+ plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
69549
+ success: Scalars['Boolean']['output'];
69550
+ };
69551
+ export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
69552
+ after?: InputMaybe<Scalars['String']['input']>;
69553
+ first?: InputMaybe<Scalars['Int']['input']>;
69554
+ };
69444
69555
  export declare type TrelloCustomField = {
69445
69556
  __typename?: 'TrelloCustomField';
69446
69557
  display?: Maybe<TrelloCustomFieldDisplay>;
@@ -69761,6 +69872,7 @@ export declare type TrelloMutationApi = {
69761
69872
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
69762
69873
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
69763
69874
  createCard?: Maybe<TrelloCreateCardPayload>;
69875
+ createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
69764
69876
  pinCard?: Maybe<TrelloPinCardPayload>;
69765
69877
  removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
69766
69878
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
@@ -69782,6 +69894,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
69782
69894
  export declare type TrelloMutationApiCreateCardArgs = {
69783
69895
  input: TrelloCreateCardInput;
69784
69896
  };
69897
+ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
69898
+ input: TrelloCreateOrUpdatePlannerCalendarInput;
69899
+ };
69785
69900
  export declare type TrelloMutationApiPinCardArgs = {
69786
69901
  input: TrelloPinCardInput;
69787
69902
  };
@@ -69834,6 +69949,7 @@ export declare type TrelloPlannerAccountsArgs = {
69834
69949
  };
69835
69950
  export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
69836
69951
  __typename?: 'TrelloPlannerCalendar';
69952
+ adsColor?: Maybe<TrelloPlannerCalendarColor>;
69837
69953
  color?: Maybe<Scalars['String']['output']>;
69838
69954
  enabled?: Maybe<Scalars['Boolean']['output']>;
69839
69955
  events?: Maybe<TrelloPlannerCalendarEventConnection>;
@@ -69877,6 +69993,25 @@ export declare type TrelloPlannerCalendarAccountEdge = {
69877
69993
  cursor?: Maybe<Scalars['String']['output']>;
69878
69994
  node?: Maybe<TrelloPlannerCalendarAccount>;
69879
69995
  };
69996
+ export declare enum TrelloPlannerCalendarColor {
69997
+ BlueSubtler = "BLUE_SUBTLER",
69998
+ BlueSubtlest = "BLUE_SUBTLEST",
69999
+ GraySubtler = "GRAY_SUBTLER",
70000
+ GreenSubtler = "GREEN_SUBTLER",
70001
+ GreenSubtlest = "GREEN_SUBTLEST",
70002
+ LimeSubtler = "LIME_SUBTLER",
70003
+ LimeSubtlest = "LIME_SUBTLEST",
70004
+ MagentaSubtler = "MAGENTA_SUBTLER",
70005
+ MagentaSubtlest = "MAGENTA_SUBTLEST",
70006
+ OrangeSubtler = "ORANGE_SUBTLER",
70007
+ OrangeSubtlest = "ORANGE_SUBTLEST",
70008
+ PurpleSubtlest = "PURPLE_SUBTLEST",
70009
+ RedSubtler = "RED_SUBTLER",
70010
+ RedSubtlest = "RED_SUBTLEST",
70011
+ YellowBolder = "YELLOW_BOLDER",
70012
+ YellowSubtler = "YELLOW_SUBTLER",
70013
+ YellowSubtlest = "YELLOW_SUBTLEST"
70014
+ }
69880
70015
  export declare type TrelloPlannerCalendarConnection = {
69881
70016
  __typename?: 'TrelloPlannerCalendarConnection';
69882
70017
  edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
@@ -69893,6 +70028,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
69893
70028
  __typename?: 'TrelloPlannerCalendarEvent';
69894
70029
  allDay?: Maybe<Scalars['Boolean']['output']>;
69895
70030
  busy?: Maybe<Scalars['Boolean']['output']>;
70031
+ cards?: Maybe<TrelloPlannerCalendarEventCardConnection>;
69896
70032
  conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
69897
70033
  createdByTrello?: Maybe<Scalars['Boolean']['output']>;
69898
70034
  description?: Maybe<Scalars['String']['output']>;
@@ -69906,6 +70042,27 @@ export declare type TrelloPlannerCalendarEvent = Node & {
69906
70042
  type?: Maybe<TrelloSupportedPlannerProviders>;
69907
70043
  visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
69908
70044
  };
70045
+ export declare type TrelloPlannerCalendarEventCardsArgs = {
70046
+ after?: InputMaybe<Scalars['String']['input']>;
70047
+ first?: InputMaybe<Scalars['Int']['input']>;
70048
+ };
70049
+ export declare type TrelloPlannerCalendarEventCard = Node & {
70050
+ __typename?: 'TrelloPlannerCalendarEventCard';
70051
+ cardId?: Maybe<Scalars['ID']['output']>;
70052
+ id: Scalars['ID']['output'];
70053
+ position?: Maybe<Scalars['Float']['output']>;
70054
+ };
70055
+ export declare type TrelloPlannerCalendarEventCardConnection = {
70056
+ __typename?: 'TrelloPlannerCalendarEventCardConnection';
70057
+ edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
70058
+ nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
70059
+ pageInfo: PageInfo;
70060
+ };
70061
+ export declare type TrelloPlannerCalendarEventCardEdge = {
70062
+ __typename?: 'TrelloPlannerCalendarEventCardEdge';
70063
+ cursor?: Maybe<Scalars['String']['output']>;
70064
+ node?: Maybe<TrelloPlannerCalendarEventCard>;
70065
+ };
69909
70066
  export declare type TrelloPlannerCalendarEventConferencing = {
69910
70067
  __typename?: 'TrelloPlannerCalendarEventConferencing';
69911
70068
  url?: Maybe<Scalars['String']['output']>;
@@ -69923,8 +70080,11 @@ export declare type TrelloPlannerCalendarEventEdge = {
69923
70080
  node?: Maybe<TrelloPlannerCalendarEvent>;
69924
70081
  };
69925
70082
  export declare enum TrelloPlannerCalendarEventStatus {
70083
+ Accepted = "ACCEPTED",
69926
70084
  Cancelled = "CANCELLED",
69927
70085
  Confirmed = "CONFIRMED",
70086
+ Declined = "DECLINED",
70087
+ NeedsAction = "NEEDS_ACTION",
69928
70088
  Tentative = "TENTATIVE"
69929
70089
  }
69930
70090
  export declare enum TrelloPlannerCalendarEventVisibility {
@@ -69938,6 +70098,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
69938
70098
  };
69939
70099
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
69940
70100
  __typename?: 'TrelloPlannerProviderCalendar';
70101
+ adsColor?: Maybe<TrelloPlannerCalendarColor>;
69941
70102
  color?: Maybe<Scalars['String']['output']>;
69942
70103
  events?: Maybe<TrelloPlannerCalendarEventConnection>;
69943
70104
  id: Scalars['ID']['output'];
@@ -70013,6 +70174,7 @@ export declare type TrelloPowerUpUpdated = {
70013
70174
  objectId?: Maybe<Scalars['ID']['output']>;
70014
70175
  };
70015
70176
  export declare type TrelloProviderCalendarInterface = {
70177
+ adsColor?: Maybe<TrelloPlannerCalendarColor>;
70016
70178
  color?: Maybe<Scalars['String']['output']>;
70017
70179
  id: Scalars['ID']['output'];
70018
70180
  readOnly?: Maybe<Scalars['Boolean']['output']>;
@@ -70354,6 +70516,17 @@ export declare type TrelloWorkspacePrefs = {
70354
70516
  export declare enum TrelloWorkspaceTier {
70355
70517
  Paid = "PAID"
70356
70518
  }
70519
+ export declare type TrustSignal = {
70520
+ __typename?: 'TrustSignal';
70521
+ key: Scalars['ID']['output'];
70522
+ result: Scalars['Boolean']['output'];
70523
+ rules?: Maybe<Array<TrustSignalRule>>;
70524
+ };
70525
+ export declare type TrustSignalRule = {
70526
+ __typename?: 'TrustSignalRule';
70527
+ name: Scalars['String']['output'];
70528
+ value: Scalars['Boolean']['output'];
70529
+ };
70357
70530
  export declare type TunnelDefinitionsInput = {
70358
70531
  customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
70359
70532
  faasTunnelUrl?: InputMaybe<Scalars['URL']['input']>;
@@ -70399,6 +70572,7 @@ export declare type UnifiedAllowList = UnifiedINode & {
70399
70572
  export declare type UnifiedAtlassianProduct = UnifiedINode & {
70400
70573
  __typename?: 'UnifiedAtlassianProduct';
70401
70574
  id: Scalars['ID']['output'];
70575
+ productId: Scalars['String']['output'];
70402
70576
  title?: Maybe<Scalars['String']['output']>;
70403
70577
  type?: Maybe<Scalars['String']['output']>;
70404
70578
  viewHref?: Maybe<Scalars['String']['output']>;
@@ -71611,6 +71785,7 @@ export declare enum VirtualAgentConversationActionType {
71611
71785
  export declare enum VirtualAgentConversationChannel {
71612
71786
  HelpCenter = "HELP_CENTER",
71613
71787
  JsmPortal = "JSM_PORTAL",
71788
+ JsmWidget = "JSM_WIDGET",
71614
71789
  MsTeams = "MS_TEAMS",
71615
71790
  Slack = "SLACK"
71616
71791
  }