@forge/cli-shared 8.8.1-next.7 → 8.8.1

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,32 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f751b9b:
8
+ - 9cb69da: Enable force forge container deletion
9
+ - 4a9136d: Add Halloween spinner during October deployments
10
+ - 94243f1: Split development and contribution guidelines
11
+ - 8183db5: added cli command to hit decoupled state endpoint
12
+ - Updated dependencies [b3792e4]
13
+ - Updated dependencies [fae0e71]
14
+ - Updated dependencies [0ea6722]
15
+ - Updated dependencies [4718346]
16
+ - Updated dependencies [94243f1]
17
+ - Updated dependencies [0ef937d]
18
+ - Updated dependencies [dcd46a4]
19
+ - Updated dependencies [8ec0d92]
20
+ - @forge/manifest@10.8.0
21
+ - @forge/util@2.0.1
22
+
23
+ ## 8.8.1-next.8
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [8ec0d92]
28
+ - @forge/manifest@10.8.0-next.6
29
+
3
30
  ## 8.8.1-next.7
4
31
 
5
32
  ### 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']>;
@@ -9880,6 +9881,7 @@ export declare type CompassAutoPopulationMetadata = {
9880
9881
  __typename?: 'CompassAutoPopulationMetadata';
9881
9882
  fieldId: Scalars['String']['output'];
9882
9883
  source?: Maybe<CompassAutoPopulationSource>;
9884
+ value: Scalars['String']['output'];
9883
9885
  verified?: Maybe<Scalars['Boolean']['output']>;
9884
9886
  };
9885
9887
  export declare type CompassAutoPopulationSource = {
@@ -12181,6 +12183,7 @@ export declare enum CompassDeploymentEventState {
12181
12183
  }
12182
12184
  export declare type CompassDocument = Node & {
12183
12185
  __typename?: 'CompassDocument';
12186
+ autoPopulationMetadata?: Maybe<CompassAutoPopulationMetadata>;
12184
12187
  autoPopulationSource?: Maybe<CompassAutoPopulationSource>;
12185
12188
  changeMetadata: CompassChangeMetadata;
12186
12189
  componentId: Scalars['ID']['output'];
@@ -26666,6 +26669,17 @@ export declare type DevConsoleDeveloperSpacePayload = Payload & {
26666
26669
  errors?: Maybe<Array<MutationError>>;
26667
26670
  success: Scalars['Boolean']['output'];
26668
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
+ };
26669
26683
  export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
26670
26684
  __typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
26671
26685
  devSpace?: Maybe<DevConsoleDeveloperSpace>;
@@ -26676,6 +26690,15 @@ export declare enum DevConsoleDeveloperSpaceType {
26676
26690
  AtlassianExternal = "ATLASSIAN_EXTERNAL",
26677
26691
  AtlassianInternal = "ATLASSIAN_INTERNAL"
26678
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
+ };
26679
26702
  export declare enum DevConsoleGroupBy {
26680
26703
  ContextAri = "CONTEXT_ARI",
26681
26704
  EnvironmentId = "ENVIRONMENT_ID"
@@ -26730,7 +26753,9 @@ export declare type DevConsoleQuery = {
26730
26753
  getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
26731
26754
  getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
26732
26755
  getDeveloperSpaceTransactionAccount: DevConsoleTransactionAccountResponse;
26756
+ getDeveloperSpaceUserPermissions: DevConsoleDeveloperSpaceUserPermissionsResponse;
26733
26757
  getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26758
+ getDeveloperSpaceWithRoles: Array<DevConsoleDeveloperSpaceWithRole>;
26734
26759
  tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
26735
26760
  };
26736
26761
  export declare type DevConsoleQueryAppResourceUsageArgs = {
@@ -26758,6 +26783,9 @@ export declare type DevConsoleQueryGetDeveloperSpaceMembersArgs = {
26758
26783
  export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
26759
26784
  developerSpaceId: Scalars['String']['input'];
26760
26785
  };
26786
+ export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
26787
+ developerSpaceId: Scalars['String']['input'];
26788
+ };
26761
26789
  export declare type DevConsoleQueryTenantContextsArgs = {
26762
26790
  ids: Array<Scalars['ID']['input']>;
26763
26791
  };
@@ -71942,6 +71970,7 @@ export declare type JiraJourneyAssociations = {
71942
71970
  __typename?: 'JiraJourneyAssociations';
71943
71971
  migrationStatus?: Maybe<JiraJourneyRulesMigrationStatus>;
71944
71972
  ruleId?: Maybe<Scalars['String']['output']>;
71973
+ template?: Maybe<Scalars['String']['output']>;
71945
71974
  };
71946
71975
  export declare type JiraJourneyBuilderAssociatedAutomationRule = {
71947
71976
  __typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
@@ -84616,6 +84645,7 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
84616
84645
  export declare type JsmChannelsServiceAgentResolutionPlanStep = {
84617
84646
  __typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
84618
84647
  description?: Maybe<Scalars['String']['output']>;
84648
+ status?: Maybe<Scalars['String']['output']>;
84619
84649
  title: Scalars['String']['output'];
84620
84650
  };
84621
84651
  export declare type JsmChannelsServiceAgentResolutionRunbook = {
@@ -93616,6 +93646,7 @@ export declare type Mutation = {
93616
93646
  generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
93617
93647
  generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
93618
93648
  goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
93649
+ goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
93619
93650
  goals_clone?: Maybe<TownsquareGoalsClonePayload>;
93620
93651
  goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
93621
93652
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
@@ -95358,6 +95389,9 @@ export declare type MutationGeneratePermsReportArgs = {
95358
95389
  export declare type MutationGoals_AddGoalTeamLinkArgs = {
95359
95390
  input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
95360
95391
  };
95392
+ export declare type MutationGoals_AddProjectLinkArgs = {
95393
+ input: TownsquareAddProjectLinkInput;
95394
+ };
95361
95395
  export declare type MutationGoals_CloneArgs = {
95362
95396
  input: TownsquareGoalsCloneInput;
95363
95397
  };
@@ -100234,6 +100268,7 @@ export declare type Query = {
100234
100268
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
100235
100269
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
100236
100270
  stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
100271
+ stakeholderComms_getPageSummaryDetails?: Maybe<StakeholderCommsPageSummaryDetailsResponse>;
100237
100272
  stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
100238
100273
  stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
100239
100274
  stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
@@ -103524,6 +103559,9 @@ export declare type QueryStakeholderComms_GetPageByIdArgs = {
103524
103559
  export declare type QueryStakeholderComms_GetPageByNameArgs = {
103525
103560
  name: Scalars['String']['input'];
103526
103561
  };
103562
+ export declare type QueryStakeholderComms_GetPageSummaryDetailsArgs = {
103563
+ pageId: Scalars['String']['input'];
103564
+ };
103527
103565
  export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
103528
103566
  pageId?: InputMaybe<Scalars['String']['input']>;
103529
103567
  };
@@ -128042,6 +128080,7 @@ export declare type StakeholderCommsCreatePageInputType = {
128042
128080
  name: Scalars['String']['input'];
128043
128081
  pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
128044
128082
  pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
128083
+ pageType?: InputMaybe<StakeholderCommsPageType>;
128045
128084
  privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
128046
128085
  seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
128047
128086
  statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -128416,6 +128455,7 @@ export declare type StakeholderCommsPage = {
128416
128455
  name: Scalars['String']['output'];
128417
128456
  pageTheme?: Maybe<StakeholderCommsPageTheme>;
128418
128457
  pageThemeMode?: Maybe<StakeholderCommsPageThemeMode>;
128458
+ pageType?: Maybe<StakeholderCommsPageType>;
128419
128459
  privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
128420
128460
  seoConfig?: Maybe<StakeholderCommsSeoConfigType>;
128421
128461
  statusEmbedEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -128456,8 +128496,20 @@ export declare type StakeholderCommsPageSummary = {
128456
128496
  id?: Maybe<Scalars['String']['output']>;
128457
128497
  isDraft?: Maybe<Scalars['Boolean']['output']>;
128458
128498
  name?: Maybe<Scalars['String']['output']>;
128499
+ pageType?: Maybe<StakeholderCommsPageType>;
128459
128500
  stakeholderCount?: Maybe<Scalars['Int']['output']>;
128460
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
+ };
128461
128513
  export declare enum StakeholderCommsPageTheme {
128462
128514
  AllSystemsGlow = "ALL_SYSTEMS_GLOW",
128463
128515
  Blank = "BLANK",
@@ -128468,6 +128520,10 @@ export declare enum StakeholderCommsPageThemeMode {
128468
128520
  Dark = "DARK",
128469
128521
  Light = "LIGHT"
128470
128522
  }
128523
+ export declare enum StakeholderCommsPageType {
128524
+ Private = "PRIVATE",
128525
+ Public = "PUBLIC"
128526
+ }
128471
128527
  export declare type StakeholderCommsPageUptime = {
128472
128528
  __typename?: 'StakeholderCommsPageUptime';
128473
128529
  pageUptimeDailyAggregates?: Maybe<Array<Maybe<StakeholderCommsPageUptimeDailyAggregate>>>;
@@ -128785,6 +128841,7 @@ export declare type StakeholderCommsUpdatePageInputType = {
128785
128841
  name?: InputMaybe<Scalars['String']['input']>;
128786
128842
  pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
128787
128843
  pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
128844
+ pageType?: InputMaybe<StakeholderCommsPageType>;
128788
128845
  privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
128789
128846
  seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
128790
128847
  statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -128967,6 +129024,7 @@ export declare type Subscription = {
128967
129024
  ecosystem?: Maybe<EcosystemSubscription>;
128968
129025
  jira?: Maybe<JiraSubscription>;
128969
129026
  jiraProductDiscovery?: Maybe<JpdSubscriptions>;
129027
+ jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
128970
129028
  jsmChat?: Maybe<JsmChatSubscription>;
128971
129029
  mercury?: Maybe<MercurySubscriptionApi>;
128972
129030
  migration: MigrationSubscription;
@@ -129022,6 +129080,10 @@ export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
129022
129080
  cloudId: Scalars['ID']['input'];
129023
129081
  jobId: Scalars['ID']['input'];
129024
129082
  };
129083
+ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
129084
+ jiraProjectAri: Scalars['ID']['input'];
129085
+ workItemId: Scalars['ID']['input'];
129086
+ };
129025
129087
  export declare enum SummaryType {
129026
129088
  Blogpost = "BLOGPOST",
129027
129089
  Page = "PAGE"
@@ -130495,6 +130557,16 @@ export declare enum TownsquareAccessControlCapability {
130495
130557
  Administer = "ADMINISTER",
130496
130558
  Create = "CREATE"
130497
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
+ };
130498
130570
  export declare type TownsquareAddTagToEntityByIdInput = {
130499
130571
  nounId: Scalars['ID']['input'];
130500
130572
  tagIds: Array<Scalars['ID']['input']>;
@@ -133224,6 +133296,7 @@ export declare type TrelloBoardWorkspaceUpdated = {
133224
133296
  export declare type TrelloCard = Node & TrelloBaseCard & {
133225
133297
  __typename?: 'TrelloCard';
133226
133298
  actions?: Maybe<TrelloCardActionConnection>;
133299
+ agent?: Maybe<TrelloCardAgent>;
133227
133300
  attachments?: Maybe<TrelloAttachmentConnection>;
133228
133301
  badges?: Maybe<TrelloCardBadges>;
133229
133302
  checklists?: Maybe<TrelloChecklistConnection>;
@@ -133354,6 +133427,16 @@ export declare enum TrelloCardActionType {
133354
133427
  UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
133355
133428
  }
133356
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
+ };
133357
133440
  export declare type TrelloCardAttachmentsByType = {
133358
133441
  __typename?: 'TrelloCardAttachmentsByType';
133359
133442
  trello?: Maybe<TrelloCardAttachmentsCount>;
@@ -133574,6 +133657,7 @@ export declare enum TrelloCardRole {
133574
133657
  export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
133575
133658
  __typename?: 'TrelloCardUpdated';
133576
133659
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
133660
+ agent?: Maybe<TrelloCardAgentUpdated>;
133577
133661
  attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
133578
133662
  badges?: Maybe<TrelloCardBadges>;
133579
133663
  checklists?: Maybe<TrelloChecklistConnectionUpdated>;
@@ -133891,6 +133975,7 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
133891
133975
  memberCreator?: Maybe<TrelloActionMemberEntity>;
133892
133976
  };
133893
133977
  export declare type TrelloCreateCardInput = {
133978
+ agentName?: InputMaybe<Scalars['String']['input']>;
133894
133979
  externalSource?: InputMaybe<TrelloCardExternalSource>;
133895
133980
  faviconUrl?: InputMaybe<Scalars['String']['input']>;
133896
133981
  listId: Scalars['ID']['input'];
@@ -134418,6 +134503,13 @@ export declare type TrelloListCardLimits = {
134418
134503
  openPerList?: Maybe<TrelloLimitProps>;
134419
134504
  totalPerList?: Maybe<TrelloLimitProps>;
134420
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
+ }
134421
134513
  export declare type TrelloListConnection = {
134422
134514
  __typename?: 'TrelloListConnection';
134423
134515
  edges?: Maybe<Array<TrelloListEdge>>;
@@ -134498,6 +134590,7 @@ export declare type TrelloMember = Node & {
134498
134590
  initials?: Maybe<Scalars['String']['output']>;
134499
134591
  jobFunction?: Maybe<Scalars['String']['output']>;
134500
134592
  nonPublicData?: Maybe<TrelloMemberNonPublicData>;
134593
+ notifications?: Maybe<TrelloNotificationConnection>;
134501
134594
  objectId: Scalars['ID']['output'];
134502
134595
  planner?: Maybe<TrelloPlanner>;
134503
134596
  prefs?: Maybe<TrelloMemberPrefs>;
@@ -134515,6 +134608,11 @@ export declare type TrelloMemberBoardStarsArgs = {
134515
134608
  after?: InputMaybe<Scalars['String']['input']>;
134516
134609
  first?: InputMaybe<Scalars['Int']['input']>;
134517
134610
  };
134611
+ export declare type TrelloMemberNotificationsArgs = {
134612
+ after?: InputMaybe<Scalars['String']['input']>;
134613
+ filter?: InputMaybe<TrelloNotificationFilter>;
134614
+ first?: InputMaybe<Scalars['Int']['input']>;
134615
+ };
134518
134616
  export declare type TrelloMemberWorkspacesArgs = {
134519
134617
  after?: InputMaybe<Scalars['String']['input']>;
134520
134618
  filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
@@ -134743,6 +134841,8 @@ export declare type TrelloMutationApi = {
134743
134841
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
134744
134842
  removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
134745
134843
  smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
134844
+ sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
134845
+ sortListCards?: Maybe<TrelloSortListCardsPayload>;
134746
134846
  submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
134747
134847
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
134748
134848
  unwatchCard?: Maybe<TrelloWatchCardPayload>;
@@ -134844,6 +134944,12 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
134844
134944
  export declare type TrelloMutationApiSmartScheduleCardsArgs = {
134845
134945
  input: TrelloSmartScheduleCardsInput;
134846
134946
  };
134947
+ export declare type TrelloMutationApiSortInboxCardsArgs = {
134948
+ input: TrelloSortInboxCardsInput;
134949
+ };
134950
+ export declare type TrelloMutationApiSortListCardsArgs = {
134951
+ input: TrelloSortListCardsInput;
134952
+ };
134847
134953
  export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
134848
134954
  input: TrelloCardBatchSpecificationInput;
134849
134955
  };
@@ -134910,6 +135016,22 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
134910
135016
  export declare type TrelloMutationApiWatchCardArgs = {
134911
135017
  input: TrelloWatchCardInput;
134912
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
+ };
134913
135035
  export declare type TrelloOAuth2Client = {
134914
135036
  __typename?: 'TrelloOAuth2Client';
134915
135037
  callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
@@ -134952,7 +135074,6 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
134952
135074
  events?: Maybe<TrelloPlannerCalendarEventConnection>;
134953
135075
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
134954
135076
  id: Scalars['ID']['output'];
134955
- idProviderAccount?: Maybe<Scalars['ID']['output']>;
134956
135077
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
134957
135078
  objectId?: Maybe<Scalars['ID']['output']>;
134958
135079
  providerCalendarId?: Maybe<Scalars['ID']['output']>;
@@ -135220,7 +135341,6 @@ export declare type TrelloPlannerCalendarUpdated = {
135220
135341
  events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
135221
135342
  forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
135222
135343
  id: Scalars['ID']['output'];
135223
- idProviderAccount?: Maybe<Scalars['ID']['output']>;
135224
135344
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
135225
135345
  objectId?: Maybe<Scalars['ID']['output']>;
135226
135346
  onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;
@@ -135534,7 +135654,7 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
135534
135654
  first?: InputMaybe<Scalars['Int']['input']>;
135535
135655
  };
135536
135656
  export declare type TrelloQueryApiUserWorkspaceAccessSummaryArgs = {
135537
- workspaceId: Scalars['String']['input'];
135657
+ workspaceId: Scalars['ID']['input'];
135538
135658
  };
135539
135659
  export declare type TrelloQueryApiUsersByIdArgs = {
135540
135660
  ids: Array<Scalars['ID']['input']>;
@@ -135542,6 +135662,27 @@ export declare type TrelloQueryApiUsersByIdArgs = {
135542
135662
  export declare type TrelloQueryApiWorkspaceArgs = {
135543
135663
  id: Scalars['ID']['input'];
135544
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
+ };
135545
135686
  export declare type TrelloQuickCaptureNotificationCleared = {
135546
135687
  __typename?: 'TrelloQuickCaptureNotificationCleared';
135547
135688
  id?: Maybe<Scalars['ID']['output']>;
@@ -135660,6 +135801,25 @@ export declare type TrelloSmartScheduleCardsInput = {
135660
135801
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
135661
135802
  timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
135662
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
+ };
135663
135823
  export declare type TrelloSticker = {
135664
135824
  __typename?: 'TrelloSticker';
135665
135825
  image?: Maybe<Scalars['String']['output']>;