@forge/cli-shared 8.8.1-next.6 → 8.8.1-next.8

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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.1-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8ec0d92]
8
+ - @forge/manifest@10.8.0-next.6
9
+
10
+ ## 8.8.1-next.7
11
+
12
+ ### Patch Changes
13
+
14
+ - 4a9136d: Add Halloween spinner during October deployments
15
+
3
16
  ## 8.8.1-next.6
4
17
 
5
18
  ### Patch Changes
@@ -2422,6 +2422,7 @@ export declare type AgentAiSuggestedActionContent = {
2422
2422
  };
2423
2423
  export declare type AgentAiSuggestedActionContext = {
2424
2424
  __typename?: 'AgentAISuggestedActionContext';
2425
+ currentValue?: Maybe<Scalars['JSON']['output']>;
2425
2426
  fieldId?: Maybe<Scalars['String']['output']>;
2426
2427
  fieldName?: Maybe<Scalars['String']['output']>;
2427
2428
  fieldType?: Maybe<Scalars['String']['output']>;
@@ -7320,6 +7321,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
7320
7321
  defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
7321
7322
  developerLicense?: Maybe<CcpDeveloperLicense>;
7322
7323
  developerLicenseV2?: Maybe<CcpDeveloperLicenseResult>;
7324
+ displayInfo?: Maybe<CcpEntitlementDisplayInfo>;
7323
7325
  enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
7324
7326
  entitlementId?: Maybe<Scalars['ID']['output']>;
7325
7327
  entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
@@ -7374,6 +7376,10 @@ export declare type CcpEntitlementMeteredChargeElementUsageAggregatedArgs = {
7374
7376
  export declare type CcpEntitlementMeteredChargeElementUsageLatestArgs = {
7375
7377
  input: CcpMeteredChargeElementLatestUsageInput;
7376
7378
  };
7379
+ export declare type CcpEntitlementDisplayInfo = {
7380
+ __typename?: 'CcpEntitlementDisplayInfo';
7381
+ provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
7382
+ };
7377
7383
  export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
7378
7384
  __typename?: 'CcpEntitlementExperienceCapabilities';
7379
7385
  applyEntitlementPromotion?: Maybe<CcpApplyEntitlementPromotionExperienceCapability>;
@@ -7419,6 +7425,11 @@ export declare enum CcpEntitlementPreDunningStatus {
7419
7425
  InPreDunning = "IN_PRE_DUNNING",
7420
7426
  NotInPreDunning = "NOT_IN_PRE_DUNNING"
7421
7427
  }
7428
+ export declare type CcpEntitlementProvisionedResource = {
7429
+ __typename?: 'CcpEntitlementProvisionedResource';
7430
+ ari?: Maybe<Scalars['String']['output']>;
7431
+ name?: Maybe<Scalars['String']['output']>;
7432
+ };
7422
7433
  export declare type CcpEntitlementRelationship = CommerceEntitlementRelationship & {
7423
7434
  __typename?: 'CcpEntitlementRelationship';
7424
7435
  entitlementId?: Maybe<Scalars['ID']['output']>;
@@ -9870,6 +9881,7 @@ export declare type CompassAutoPopulationMetadata = {
9870
9881
  __typename?: 'CompassAutoPopulationMetadata';
9871
9882
  fieldId: Scalars['String']['output'];
9872
9883
  source?: Maybe<CompassAutoPopulationSource>;
9884
+ value: Scalars['String']['output'];
9873
9885
  verified?: Maybe<Scalars['Boolean']['output']>;
9874
9886
  };
9875
9887
  export declare type CompassAutoPopulationSource = {
@@ -12171,6 +12183,7 @@ export declare enum CompassDeploymentEventState {
12171
12183
  }
12172
12184
  export declare type CompassDocument = Node & {
12173
12185
  __typename?: 'CompassDocument';
12186
+ autoPopulationMetadata?: Maybe<CompassAutoPopulationMetadata>;
12174
12187
  autoPopulationSource?: Maybe<CompassAutoPopulationSource>;
12175
12188
  changeMetadata: CompassChangeMetadata;
12176
12189
  componentId: Scalars['ID']['output'];
@@ -26656,6 +26669,17 @@ export declare type DevConsoleDeveloperSpacePayload = Payload & {
26656
26669
  errors?: Maybe<Array<MutationError>>;
26657
26670
  success: Scalars['Boolean']['output'];
26658
26671
  };
26672
+ export declare type DevConsoleDeveloperSpacePermissions = {
26673
+ __typename?: 'DevConsoleDeveloperSpacePermissions';
26674
+ canArchiveUnlistedDevSpace?: Maybe<Scalars['Boolean']['output']>;
26675
+ canAssignApps?: Maybe<Scalars['Boolean']['output']>;
26676
+ canCreateApps?: Maybe<Scalars['Boolean']['output']>;
26677
+ canManageConsoleMember?: Maybe<Scalars['Boolean']['output']>;
26678
+ canManageUnlistedDevSpaceMetadata?: Maybe<Scalars['Boolean']['output']>;
26679
+ canTransferApps?: Maybe<Scalars['Boolean']['output']>;
26680
+ canViewDevSpaceDetails?: Maybe<Scalars['Boolean']['output']>;
26681
+ canViewDevSpaceMembers?: Maybe<Scalars['Boolean']['output']>;
26682
+ };
26659
26683
  export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
26660
26684
  __typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
26661
26685
  devSpace?: Maybe<DevConsoleDeveloperSpace>;
@@ -26666,6 +26690,15 @@ export declare enum DevConsoleDeveloperSpaceType {
26666
26690
  AtlassianExternal = "ATLASSIAN_EXTERNAL",
26667
26691
  AtlassianInternal = "ATLASSIAN_INTERNAL"
26668
26692
  }
26693
+ export declare type DevConsoleDeveloperSpaceUserPermissionsResponse = {
26694
+ __typename?: 'DevConsoleDeveloperSpaceUserPermissionsResponse';
26695
+ permissions: DevConsoleDeveloperSpacePermissions;
26696
+ };
26697
+ export declare type DevConsoleDeveloperSpaceWithRole = {
26698
+ __typename?: 'DevConsoleDeveloperSpaceWithRole';
26699
+ devSpaceId: Scalars['ID']['output'];
26700
+ roles: Array<Scalars['String']['output']>;
26701
+ };
26669
26702
  export declare enum DevConsoleGroupBy {
26670
26703
  ContextAri = "CONTEXT_ARI",
26671
26704
  EnvironmentId = "ENVIRONMENT_ID"
@@ -26720,7 +26753,9 @@ export declare type DevConsoleQuery = {
26720
26753
  getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
26721
26754
  getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
26722
26755
  getDeveloperSpaceTransactionAccount: DevConsoleTransactionAccountResponse;
26756
+ getDeveloperSpaceUserPermissions: DevConsoleDeveloperSpaceUserPermissionsResponse;
26723
26757
  getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26758
+ getDeveloperSpaceWithRoles: Array<DevConsoleDeveloperSpaceWithRole>;
26724
26759
  tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
26725
26760
  };
26726
26761
  export declare type DevConsoleQueryAppResourceUsageArgs = {
@@ -26748,6 +26783,9 @@ export declare type DevConsoleQueryGetDeveloperSpaceMembersArgs = {
26748
26783
  export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
26749
26784
  developerSpaceId: Scalars['String']['input'];
26750
26785
  };
26786
+ export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
26787
+ developerSpaceId: Scalars['String']['input'];
26788
+ };
26751
26789
  export declare type DevConsoleQueryTenantContextsArgs = {
26752
26790
  ids: Array<Scalars['ID']['input']>;
26753
26791
  };
@@ -71932,6 +71970,7 @@ export declare type JiraJourneyAssociations = {
71932
71970
  __typename?: 'JiraJourneyAssociations';
71933
71971
  migrationStatus?: Maybe<JiraJourneyRulesMigrationStatus>;
71934
71972
  ruleId?: Maybe<Scalars['String']['output']>;
71973
+ template?: Maybe<Scalars['String']['output']>;
71935
71974
  };
71936
71975
  export declare type JiraJourneyBuilderAssociatedAutomationRule = {
71937
71976
  __typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
@@ -84606,6 +84645,7 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
84606
84645
  export declare type JsmChannelsServiceAgentResolutionPlanStep = {
84607
84646
  __typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
84608
84647
  description?: Maybe<Scalars['String']['output']>;
84648
+ status?: Maybe<Scalars['String']['output']>;
84609
84649
  title: Scalars['String']['output'];
84610
84650
  };
84611
84651
  export declare type JsmChannelsServiceAgentResolutionRunbook = {
@@ -93606,6 +93646,7 @@ export declare type Mutation = {
93606
93646
  generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
93607
93647
  generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
93608
93648
  goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
93649
+ goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
93609
93650
  goals_clone?: Maybe<TownsquareGoalsClonePayload>;
93610
93651
  goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
93611
93652
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
@@ -95348,6 +95389,9 @@ export declare type MutationGeneratePermsReportArgs = {
95348
95389
  export declare type MutationGoals_AddGoalTeamLinkArgs = {
95349
95390
  input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
95350
95391
  };
95392
+ export declare type MutationGoals_AddProjectLinkArgs = {
95393
+ input: TownsquareAddProjectLinkInput;
95394
+ };
95351
95395
  export declare type MutationGoals_CloneArgs = {
95352
95396
  input: TownsquareGoalsCloneInput;
95353
95397
  };
@@ -100224,6 +100268,7 @@ export declare type Query = {
100224
100268
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
100225
100269
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
100226
100270
  stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
100271
+ stakeholderComms_getPageSummaryDetails?: Maybe<StakeholderCommsPageSummaryDetailsResponse>;
100227
100272
  stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
100228
100273
  stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
100229
100274
  stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
@@ -103514,6 +103559,9 @@ export declare type QueryStakeholderComms_GetPageByIdArgs = {
103514
103559
  export declare type QueryStakeholderComms_GetPageByNameArgs = {
103515
103560
  name: Scalars['String']['input'];
103516
103561
  };
103562
+ export declare type QueryStakeholderComms_GetPageSummaryDetailsArgs = {
103563
+ pageId: Scalars['String']['input'];
103564
+ };
103517
103565
  export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
103518
103566
  pageId?: InputMaybe<Scalars['String']['input']>;
103519
103567
  };
@@ -128032,6 +128080,7 @@ export declare type StakeholderCommsCreatePageInputType = {
128032
128080
  name: Scalars['String']['input'];
128033
128081
  pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
128034
128082
  pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
128083
+ pageType?: InputMaybe<StakeholderCommsPageType>;
128035
128084
  privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
128036
128085
  seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
128037
128086
  statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -128406,6 +128455,7 @@ export declare type StakeholderCommsPage = {
128406
128455
  name: Scalars['String']['output'];
128407
128456
  pageTheme?: Maybe<StakeholderCommsPageTheme>;
128408
128457
  pageThemeMode?: Maybe<StakeholderCommsPageThemeMode>;
128458
+ pageType?: Maybe<StakeholderCommsPageType>;
128409
128459
  privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
128410
128460
  seoConfig?: Maybe<StakeholderCommsSeoConfigType>;
128411
128461
  statusEmbedEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -128446,8 +128496,20 @@ export declare type StakeholderCommsPageSummary = {
128446
128496
  id?: Maybe<Scalars['String']['output']>;
128447
128497
  isDraft?: Maybe<Scalars['Boolean']['output']>;
128448
128498
  name?: Maybe<Scalars['String']['output']>;
128499
+ pageType?: Maybe<StakeholderCommsPageType>;
128449
128500
  stakeholderCount?: Maybe<Scalars['Int']['output']>;
128450
128501
  };
128502
+ export declare type StakeholderCommsPageSummaryDetails = {
128503
+ __typename?: 'StakeholderCommsPageSummaryDetails';
128504
+ componentCount?: Maybe<Scalars['Int']['output']>;
128505
+ health?: Maybe<Scalars['String']['output']>;
128506
+ subscribersCount?: Maybe<Scalars['Int']['output']>;
128507
+ };
128508
+ export declare type StakeholderCommsPageSummaryDetailsResponse = {
128509
+ __typename?: 'StakeholderCommsPageSummaryDetailsResponse';
128510
+ error?: Maybe<Scalars['String']['output']>;
128511
+ pageSummaryDetails?: Maybe<StakeholderCommsPageSummaryDetails>;
128512
+ };
128451
128513
  export declare enum StakeholderCommsPageTheme {
128452
128514
  AllSystemsGlow = "ALL_SYSTEMS_GLOW",
128453
128515
  Blank = "BLANK",
@@ -128458,6 +128520,10 @@ export declare enum StakeholderCommsPageThemeMode {
128458
128520
  Dark = "DARK",
128459
128521
  Light = "LIGHT"
128460
128522
  }
128523
+ export declare enum StakeholderCommsPageType {
128524
+ Private = "PRIVATE",
128525
+ Public = "PUBLIC"
128526
+ }
128461
128527
  export declare type StakeholderCommsPageUptime = {
128462
128528
  __typename?: 'StakeholderCommsPageUptime';
128463
128529
  pageUptimeDailyAggregates?: Maybe<Array<Maybe<StakeholderCommsPageUptimeDailyAggregate>>>;
@@ -128775,6 +128841,7 @@ export declare type StakeholderCommsUpdatePageInputType = {
128775
128841
  name?: InputMaybe<Scalars['String']['input']>;
128776
128842
  pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
128777
128843
  pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
128844
+ pageType?: InputMaybe<StakeholderCommsPageType>;
128778
128845
  privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
128779
128846
  seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
128780
128847
  statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -128957,6 +129024,7 @@ export declare type Subscription = {
128957
129024
  ecosystem?: Maybe<EcosystemSubscription>;
128958
129025
  jira?: Maybe<JiraSubscription>;
128959
129026
  jiraProductDiscovery?: Maybe<JpdSubscriptions>;
129027
+ jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
128960
129028
  jsmChat?: Maybe<JsmChatSubscription>;
128961
129029
  mercury?: Maybe<MercurySubscriptionApi>;
128962
129030
  migration: MigrationSubscription;
@@ -129012,6 +129080,10 @@ export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
129012
129080
  cloudId: Scalars['ID']['input'];
129013
129081
  jobId: Scalars['ID']['input'];
129014
129082
  };
129083
+ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
129084
+ jiraProjectAri: Scalars['ID']['input'];
129085
+ workItemId: Scalars['ID']['input'];
129086
+ };
129015
129087
  export declare enum SummaryType {
129016
129088
  Blogpost = "BLOGPOST",
129017
129089
  Page = "PAGE"
@@ -130485,6 +130557,16 @@ export declare enum TownsquareAccessControlCapability {
130485
130557
  Administer = "ADMINISTER",
130486
130558
  Create = "CREATE"
130487
130559
  }
130560
+ export declare type TownsquareAddProjectLinkInput = {
130561
+ goalId: Scalars['ID']['input'];
130562
+ projectId: Scalars['ID']['input'];
130563
+ };
130564
+ export declare type TownsquareAddProjectLinkPayload = {
130565
+ __typename?: 'TownsquareAddProjectLinkPayload';
130566
+ errors?: Maybe<Array<MutationError>>;
130567
+ goal?: Maybe<TownsquareGoal>;
130568
+ success: Scalars['Boolean']['output'];
130569
+ };
130488
130570
  export declare type TownsquareAddTagToEntityByIdInput = {
130489
130571
  nounId: Scalars['ID']['input'];
130490
130572
  tagIds: Array<Scalars['ID']['input']>;
@@ -133214,6 +133296,7 @@ export declare type TrelloBoardWorkspaceUpdated = {
133214
133296
  export declare type TrelloCard = Node & TrelloBaseCard & {
133215
133297
  __typename?: 'TrelloCard';
133216
133298
  actions?: Maybe<TrelloCardActionConnection>;
133299
+ agent?: Maybe<TrelloCardAgent>;
133217
133300
  attachments?: Maybe<TrelloAttachmentConnection>;
133218
133301
  badges?: Maybe<TrelloCardBadges>;
133219
133302
  checklists?: Maybe<TrelloChecklistConnection>;
@@ -133344,6 +133427,16 @@ export declare enum TrelloCardActionType {
133344
133427
  UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
133345
133428
  }
133346
133429
  export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCardAction | TrelloCopyCommentCardAction | TrelloCopyInboxCardAction | TrelloCreateCardAction | TrelloCreateCardFromCheckItemAction | TrelloCreateCardFromEmailAction | TrelloCreateInboxCardAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction | TrelloUpdateCardRecurrenceRuleAction | TrelloUpdateCheckItemStateOnCardAction | TrelloUpdateCustomFieldItemAction;
133430
+ export declare type TrelloCardAgent = {
133431
+ __typename?: 'TrelloCardAgent';
133432
+ conversationId?: Maybe<Scalars['ID']['output']>;
133433
+ name?: Maybe<Scalars['String']['output']>;
133434
+ };
133435
+ export declare type TrelloCardAgentUpdated = {
133436
+ __typename?: 'TrelloCardAgentUpdated';
133437
+ conversationId?: Maybe<Scalars['ID']['output']>;
133438
+ name?: Maybe<Scalars['String']['output']>;
133439
+ };
133347
133440
  export declare type TrelloCardAttachmentsByType = {
133348
133441
  __typename?: 'TrelloCardAttachmentsByType';
133349
133442
  trello?: Maybe<TrelloCardAttachmentsCount>;
@@ -133564,6 +133657,7 @@ export declare enum TrelloCardRole {
133564
133657
  export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
133565
133658
  __typename?: 'TrelloCardUpdated';
133566
133659
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
133660
+ agent?: Maybe<TrelloCardAgentUpdated>;
133567
133661
  attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
133568
133662
  badges?: Maybe<TrelloCardBadges>;
133569
133663
  checklists?: Maybe<TrelloChecklistConnectionUpdated>;
@@ -133881,6 +133975,7 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
133881
133975
  memberCreator?: Maybe<TrelloActionMemberEntity>;
133882
133976
  };
133883
133977
  export declare type TrelloCreateCardInput = {
133978
+ agentName?: InputMaybe<Scalars['String']['input']>;
133884
133979
  externalSource?: InputMaybe<TrelloCardExternalSource>;
133885
133980
  faviconUrl?: InputMaybe<Scalars['String']['input']>;
133886
133981
  listId: Scalars['ID']['input'];
@@ -134408,6 +134503,13 @@ export declare type TrelloListCardLimits = {
134408
134503
  openPerList?: Maybe<TrelloLimitProps>;
134409
134504
  totalPerList?: Maybe<TrelloLimitProps>;
134410
134505
  };
134506
+ export declare enum TrelloListCardSortBy {
134507
+ CardName = "CARD_NAME",
134508
+ DueDate = "DUE_DATE",
134509
+ NewestFirst = "NEWEST_FIRST",
134510
+ OldestFirst = "OLDEST_FIRST",
134511
+ Votes = "VOTES"
134512
+ }
134411
134513
  export declare type TrelloListConnection = {
134412
134514
  __typename?: 'TrelloListConnection';
134413
134515
  edges?: Maybe<Array<TrelloListEdge>>;
@@ -134488,6 +134590,7 @@ export declare type TrelloMember = Node & {
134488
134590
  initials?: Maybe<Scalars['String']['output']>;
134489
134591
  jobFunction?: Maybe<Scalars['String']['output']>;
134490
134592
  nonPublicData?: Maybe<TrelloMemberNonPublicData>;
134593
+ notifications?: Maybe<TrelloNotificationConnection>;
134491
134594
  objectId: Scalars['ID']['output'];
134492
134595
  planner?: Maybe<TrelloPlanner>;
134493
134596
  prefs?: Maybe<TrelloMemberPrefs>;
@@ -134505,6 +134608,11 @@ export declare type TrelloMemberBoardStarsArgs = {
134505
134608
  after?: InputMaybe<Scalars['String']['input']>;
134506
134609
  first?: InputMaybe<Scalars['Int']['input']>;
134507
134610
  };
134611
+ export declare type TrelloMemberNotificationsArgs = {
134612
+ after?: InputMaybe<Scalars['String']['input']>;
134613
+ filter?: InputMaybe<TrelloNotificationFilter>;
134614
+ first?: InputMaybe<Scalars['Int']['input']>;
134615
+ };
134508
134616
  export declare type TrelloMemberWorkspacesArgs = {
134509
134617
  after?: InputMaybe<Scalars['String']['input']>;
134510
134618
  filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
@@ -134733,6 +134841,8 @@ export declare type TrelloMutationApi = {
134733
134841
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
134734
134842
  removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
134735
134843
  smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
134844
+ sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
134845
+ sortListCards?: Maybe<TrelloSortListCardsPayload>;
134736
134846
  submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
134737
134847
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
134738
134848
  unwatchCard?: Maybe<TrelloWatchCardPayload>;
@@ -134834,6 +134944,12 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
134834
134944
  export declare type TrelloMutationApiSmartScheduleCardsArgs = {
134835
134945
  input: TrelloSmartScheduleCardsInput;
134836
134946
  };
134947
+ export declare type TrelloMutationApiSortInboxCardsArgs = {
134948
+ input: TrelloSortInboxCardsInput;
134949
+ };
134950
+ export declare type TrelloMutationApiSortListCardsArgs = {
134951
+ input: TrelloSortListCardsInput;
134952
+ };
134837
134953
  export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
134838
134954
  input: TrelloCardBatchSpecificationInput;
134839
134955
  };
@@ -134900,6 +135016,22 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
134900
135016
  export declare type TrelloMutationApiWatchCardArgs = {
134901
135017
  input: TrelloWatchCardInput;
134902
135018
  };
135019
+ export declare type TrelloNotification = TrelloQuickCaptureNotification;
135020
+ export declare type TrelloNotificationConnection = {
135021
+ __typename?: 'TrelloNotificationConnection';
135022
+ edges?: Maybe<Array<TrelloNotificationEdge>>;
135023
+ nodes?: Maybe<Array<TrelloNotification>>;
135024
+ pageInfo: PageInfo;
135025
+ };
135026
+ export declare type TrelloNotificationEdge = {
135027
+ __typename?: 'TrelloNotificationEdge';
135028
+ cursor: Scalars['String']['output'];
135029
+ node?: Maybe<TrelloNotification>;
135030
+ };
135031
+ export declare type TrelloNotificationFilter = {
135032
+ status?: InputMaybe<Scalars['String']['input']>;
135033
+ types?: InputMaybe<Array<Scalars['String']['input']>>;
135034
+ };
134903
135035
  export declare type TrelloOAuth2Client = {
134904
135036
  __typename?: 'TrelloOAuth2Client';
134905
135037
  callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
@@ -134942,7 +135074,6 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
134942
135074
  events?: Maybe<TrelloPlannerCalendarEventConnection>;
134943
135075
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
134944
135076
  id: Scalars['ID']['output'];
134945
- idProviderAccount?: Maybe<Scalars['ID']['output']>;
134946
135077
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
134947
135078
  objectId?: Maybe<Scalars['ID']['output']>;
134948
135079
  providerCalendarId?: Maybe<Scalars['ID']['output']>;
@@ -135210,7 +135341,6 @@ export declare type TrelloPlannerCalendarUpdated = {
135210
135341
  events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
135211
135342
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
135212
135343
  id: Scalars['ID']['output'];
135213
- idProviderAccount?: Maybe<Scalars['ID']['output']>;
135214
135344
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
135215
135345
  objectId?: Maybe<Scalars['ID']['output']>;
135216
135346
  onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;
@@ -135524,7 +135654,7 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
135524
135654
  first?: InputMaybe<Scalars['Int']['input']>;
135525
135655
  };
135526
135656
  export declare type TrelloQueryApiUserWorkspaceAccessSummaryArgs = {
135527
- workspaceId: Scalars['String']['input'];
135657
+ workspaceId: Scalars['ID']['input'];
135528
135658
  };
135529
135659
  export declare type TrelloQueryApiUsersByIdArgs = {
135530
135660
  ids: Array<Scalars['ID']['input']>;
@@ -135532,6 +135662,27 @@ export declare type TrelloQueryApiUsersByIdArgs = {
135532
135662
  export declare type TrelloQueryApiWorkspaceArgs = {
135533
135663
  id: Scalars['ID']['input'];
135534
135664
  };
135665
+ export declare type TrelloQuickCaptureBoard = {
135666
+ __typename?: 'TrelloQuickCaptureBoard';
135667
+ id: Scalars['ID']['output'];
135668
+ objectId: Scalars['ID']['output'];
135669
+ };
135670
+ export declare type TrelloQuickCaptureCard = {
135671
+ __typename?: 'TrelloQuickCaptureCard';
135672
+ id: Scalars['ID']['output'];
135673
+ objectId: Scalars['ID']['output'];
135674
+ };
135675
+ export declare type TrelloQuickCaptureNotification = {
135676
+ __typename?: 'TrelloQuickCaptureNotification';
135677
+ board?: Maybe<TrelloQuickCaptureBoard>;
135678
+ card?: Maybe<TrelloQuickCaptureCard>;
135679
+ dateCreated?: Maybe<Scalars['DateTime']['output']>;
135680
+ id: Scalars['ID']['output'];
135681
+ objectId: Scalars['ID']['output'];
135682
+ source?: Maybe<TrelloCardExternalSource>;
135683
+ status?: Maybe<Scalars['String']['output']>;
135684
+ type: Scalars['String']['output'];
135685
+ };
135535
135686
  export declare type TrelloQuickCaptureNotificationCleared = {
135536
135687
  __typename?: 'TrelloQuickCaptureNotificationCleared';
135537
135688
  id?: Maybe<Scalars['ID']['output']>;
@@ -135650,6 +135801,25 @@ export declare type TrelloSmartScheduleCardsInput = {
135650
135801
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
135651
135802
  timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
135652
135803
  };
135804
+ export declare type TrelloSortInboxCardsInput = {
135805
+ sortBy: TrelloListCardSortBy;
135806
+ };
135807
+ export declare type TrelloSortInboxCardsPayload = Payload & {
135808
+ __typename?: 'TrelloSortInboxCardsPayload';
135809
+ errors?: Maybe<Array<MutationError>>;
135810
+ listId: Scalars['ID']['output'];
135811
+ success: Scalars['Boolean']['output'];
135812
+ };
135813
+ export declare type TrelloSortListCardsInput = {
135814
+ listId: Scalars['ID']['input'];
135815
+ sortBy: TrelloListCardSortBy;
135816
+ };
135817
+ export declare type TrelloSortListCardsPayload = Payload & {
135818
+ __typename?: 'TrelloSortListCardsPayload';
135819
+ errors?: Maybe<Array<MutationError>>;
135820
+ listId: Scalars['ID']['output'];
135821
+ success: Scalars['Boolean']['output'];
135822
+ };
135653
135823
  export declare type TrelloSticker = {
135654
135824
  __typename?: 'TrelloSticker';
135655
135825
  image?: Maybe<Scalars['String']['output']>;