@forge/cli-shared 8.11.1-next.2-experimental-e14a289 → 8.11.1-next.3

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,17 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.11.1-next.2-experimental-e14a289
4
-
5
- ### Minor Changes
6
-
7
- - 475e2ec: Added global proxy setting for running CLI commands behind a proxy
3
+ ## 8.11.1-next.3
8
4
 
9
5
  ### Patch Changes
10
6
 
11
- - 8b24052: fix bug in forge containers tunnel docker compose logic
12
- - Updated dependencies [c7544d8]
13
- - Updated dependencies [7c2186c]
14
- - @forge/manifest@11.3.0-next.1-experimental-e14a289
7
+ - Updated dependencies [0c3a0df]
8
+ - @forge/manifest@11.3.0-next.2
15
9
 
16
10
  ## 8.11.1-next.2
17
11
 
@@ -1538,9 +1538,9 @@ export declare type AdminAccessUrlCreationResponsePayload = Payload & {
1538
1538
  errors?: Maybe<Array<MutationError>>;
1539
1539
  success: Scalars['Boolean']['output'];
1540
1540
  };
1541
- export declare type AdminAccessUrlDeletionResponsePayload = Payload & {
1541
+ export declare type AdminAccessUrlDeletionResponsePayload = {
1542
1542
  __typename?: 'AdminAccessUrlDeletionResponsePayload';
1543
- errors?: Maybe<Array<MutationError>>;
1543
+ errors?: Maybe<Array<AdminTempMutationError>>;
1544
1544
  success: Scalars['Boolean']['output'];
1545
1545
  };
1546
1546
  export declare type AdminAccessUrlEdge = {
@@ -1642,16 +1642,27 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
1642
1642
  errors?: Maybe<Array<MutationError>>;
1643
1643
  success: Scalars['Boolean']['output'];
1644
1644
  };
1645
+ export declare type AdminAuditLogDetailedEventLocation = {
1646
+ __typename?: 'AdminAuditLogDetailedEventLocation';
1647
+ cityName?: Maybe<Scalars['String']['output']>;
1648
+ countryName?: Maybe<Scalars['String']['output']>;
1649
+ ip: Scalars['String']['output'];
1650
+ regionName?: Maybe<Scalars['String']['output']>;
1651
+ };
1645
1652
  export declare type AdminAuditLogEvent = {
1646
1653
  __typename?: 'AdminAuditLogEvent';
1647
1654
  action: Scalars['String']['output'];
1648
1655
  containers?: Maybe<Array<Maybe<AdminAuditLogEventContainer>>>;
1649
1656
  context?: Maybe<Array<Maybe<AdminAuditLogEventContext>>>;
1650
1657
  correlationId?: Maybe<Scalars['String']['output']>;
1651
- location?: Maybe<AdminAuditLogEventLocation>;
1658
+ location?: Maybe<AdminAuditLogDetailedEventLocation>;
1652
1659
  message?: Maybe<AdminAuditLogEventMessage>;
1653
1660
  time: Scalars['String']['output'];
1654
1661
  };
1662
+ export declare type AdminAuditLogEventAction = {
1663
+ __typename?: 'AdminAuditLogEventAction';
1664
+ name: Scalars['String']['output'];
1665
+ };
1655
1666
  export declare type AdminAuditLogEventConnection = {
1656
1667
  __typename?: 'AdminAuditLogEventConnection';
1657
1668
  edges?: Maybe<Array<AdminAuditLogEventEdge>>;
@@ -1674,13 +1685,37 @@ export declare type AdminAuditLogEventEdge = {
1674
1685
  cursor: Scalars['String']['output'];
1675
1686
  node: AdminAuditLogEvent;
1676
1687
  };
1688
+ export declare type AdminAuditLogEventExport = Payload & {
1689
+ __typename?: 'AdminAuditLogEventExport';
1690
+ errors?: Maybe<Array<MutationError>>;
1691
+ success: Scalars['Boolean']['output'];
1692
+ };
1693
+ export declare type AdminAuditLogEventExportInput = {
1694
+ action?: InputMaybe<Scalars['String']['input']>;
1695
+ actor?: InputMaybe<Scalars['String']['input']>;
1696
+ endDate?: InputMaybe<Scalars['String']['input']>;
1697
+ ip?: InputMaybe<Scalars['String']['input']>;
1698
+ location?: InputMaybe<Scalars['String']['input']>;
1699
+ product?: InputMaybe<Scalars['String']['input']>;
1700
+ searchQuery?: InputMaybe<Scalars['String']['input']>;
1701
+ startDate?: InputMaybe<Scalars['String']['input']>;
1702
+ };
1677
1703
  export declare type AdminAuditLogEventLocation = {
1678
1704
  __typename?: 'AdminAuditLogEventLocation';
1679
- cityName?: Maybe<Scalars['String']['output']>;
1680
- countryName?: Maybe<Scalars['String']['output']>;
1681
- ip: Scalars['String']['output'];
1705
+ cityName: Scalars['String']['output'];
1706
+ countryName: Scalars['String']['output'];
1682
1707
  regionName?: Maybe<Scalars['String']['output']>;
1683
1708
  };
1709
+ export declare type AdminAuditLogEventLocationConnection = {
1710
+ __typename?: 'AdminAuditLogEventLocationConnection';
1711
+ edges?: Maybe<Array<AdminAuditLogEventLocationEdge>>;
1712
+ pageInfo: PageInfo;
1713
+ };
1714
+ export declare type AdminAuditLogEventLocationEdge = {
1715
+ __typename?: 'AdminAuditLogEventLocationEdge';
1716
+ cursor: Scalars['String']['output'];
1717
+ node: AdminAuditLogEventLocation;
1718
+ };
1684
1719
  export declare type AdminAuditLogEventMessage = {
1685
1720
  __typename?: 'AdminAuditLogEventMessage';
1686
1721
  content: Scalars['String']['output'];
@@ -1695,6 +1730,21 @@ export declare type AdminAuditLogFeature = {
1695
1730
  allInclusive?: Maybe<Scalars['Boolean']['output']>;
1696
1731
  events?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1697
1732
  };
1733
+ export declare type AdminAuditLogGroupEventAction = {
1734
+ __typename?: 'AdminAuditLogGroupEventAction';
1735
+ eventActions: Array<AdminAuditLogEventAction>;
1736
+ name: Scalars['String']['output'];
1737
+ };
1738
+ export declare type AdminAuditLogGroupEventActionConnection = {
1739
+ __typename?: 'AdminAuditLogGroupEventActionConnection';
1740
+ edges?: Maybe<Array<AdminAuditLogGroupEventActionEdge>>;
1741
+ pageInfo: PageInfo;
1742
+ };
1743
+ export declare type AdminAuditLogGroupEventActionEdge = {
1744
+ __typename?: 'AdminAuditLogGroupEventActionEdge';
1745
+ cursor: Scalars['String']['output'];
1746
+ node: AdminAuditLogGroupEventAction;
1747
+ };
1698
1748
  export declare type AdminByok = {
1699
1749
  __typename?: 'AdminByok';
1700
1750
  config: Scalars['String']['output'];
@@ -1825,26 +1875,6 @@ export declare type AdminErrorExtension = {
1825
1875
  errorType?: Maybe<Scalars['String']['output']>;
1826
1876
  statusCode?: Maybe<Scalars['Int']['output']>;
1827
1877
  };
1828
- export declare type AdminEventAction = {
1829
- __typename?: 'AdminEventAction';
1830
- name: Scalars['String']['output'];
1831
- };
1832
- export declare type AdminEventLocation = {
1833
- __typename?: 'AdminEventLocation';
1834
- cityName: Scalars['String']['output'];
1835
- countryName: Scalars['String']['output'];
1836
- regionName?: Maybe<Scalars['String']['output']>;
1837
- };
1838
- export declare type AdminEventLocationConnection = {
1839
- __typename?: 'AdminEventLocationConnection';
1840
- edges?: Maybe<Array<AdminEventLocationEdge>>;
1841
- pageInfo: PageInfo;
1842
- };
1843
- export declare type AdminEventLocationEdge = {
1844
- __typename?: 'AdminEventLocationEdge';
1845
- cursor: Scalars['String']['output'];
1846
- node: AdminEventLocation;
1847
- };
1848
1878
  export declare type AdminExternalCollaboratorFeature = {
1849
1879
  __typename?: 'AdminExternalCollaboratorFeature';
1850
1880
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -1916,21 +1946,6 @@ export declare type AdminGroupEdge = {
1916
1946
  cursor: Scalars['String']['output'];
1917
1947
  node?: Maybe<AdminGroup>;
1918
1948
  };
1919
- export declare type AdminGroupEventAction = {
1920
- __typename?: 'AdminGroupEventAction';
1921
- eventActions: Array<AdminEventAction>;
1922
- name: Scalars['String']['output'];
1923
- };
1924
- export declare type AdminGroupEventActionConnection = {
1925
- __typename?: 'AdminGroupEventActionConnection';
1926
- edges?: Maybe<Array<AdminGroupEventActionEdge>>;
1927
- pageInfo: PageInfo;
1928
- };
1929
- export declare type AdminGroupEventActionEdge = {
1930
- __typename?: 'AdminGroupEventActionEdge';
1931
- cursor: Scalars['String']['output'];
1932
- node: AdminGroupEventAction;
1933
- };
1934
1949
  export declare type AdminGroupStatsQueryInput = {
1935
1950
  includeResources?: InputMaybe<Scalars['Boolean']['input']>;
1936
1951
  includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2343,6 +2358,17 @@ export declare type AdminStringKeyValuePair = {
2343
2358
  key: Scalars['String']['output'];
2344
2359
  value: Scalars['String']['output'];
2345
2360
  };
2361
+ export declare type AdminTempMutationError = {
2362
+ __typename?: 'AdminTempMutationError';
2363
+ extensions?: Maybe<AdminTempMutationErrorExtension>;
2364
+ message?: Maybe<Scalars['String']['output']>;
2365
+ };
2366
+ export declare type AdminTempMutationErrorExtension = {
2367
+ __typename?: 'AdminTempMutationErrorExtension';
2368
+ downstreamService?: Maybe<Scalars['String']['output']>;
2369
+ errorType?: Maybe<Scalars['String']['output']>;
2370
+ statusCode?: Maybe<Scalars['Int']['output']>;
2371
+ };
2346
2372
  export declare enum AdminTimeSearchType {
2347
2373
  BetweenAbsolute = "BETWEEN_ABSOLUTE",
2348
2374
  BetweenRelative = "BETWEEN_RELATIVE",
@@ -10215,6 +10241,7 @@ export declare type ClassificationLevelDetails = {
10215
10241
  classificationLevel?: Maybe<ContentDataClassificationLevel>;
10216
10242
  classificationLevelId?: Maybe<Scalars['ID']['output']>;
10217
10243
  featureEnabled: Scalars['Boolean']['output'];
10244
+ isReclassificationPermitted: Scalars['Boolean']['output'];
10218
10245
  source?: Maybe<ClassificationLevelSource>;
10219
10246
  };
10220
10247
  export declare enum ClassificationLevelSource {
@@ -90588,6 +90615,7 @@ export declare enum JsmConversationStatus {
90588
90615
  InProgress = "IN_PROGRESS",
90589
90616
  Missed = "MISSED",
90590
90617
  Requested = "REQUESTED",
90618
+ Timeout = "TIMEOUT",
90591
90619
  Unassigned = "UNASSIGNED"
90592
90620
  }
90593
90621
  export declare type JsonContentProperty = {
@@ -92341,6 +92369,7 @@ export declare type LinksSelf = {
92341
92369
  export declare type LiveChatClosed = {
92342
92370
  __typename?: 'LiveChatClosed';
92343
92371
  content?: Maybe<Scalars['String']['output']>;
92372
+ id: Scalars['ID']['output'];
92344
92373
  timestamp?: Maybe<Scalars['DateTime']['output']>;
92345
92374
  };
92346
92375
  export declare type LiveChatParticipantJoined = {
@@ -92367,6 +92396,7 @@ export declare type LiveChatStarted = {
92367
92396
  export declare type LiveChatSystemMessage = {
92368
92397
  __typename?: 'LiveChatSystemMessage';
92369
92398
  content?: Maybe<Scalars['String']['output']>;
92399
+ id?: Maybe<Scalars['ID']['output']>;
92370
92400
  timestamp?: Maybe<Scalars['DateTime']['output']>;
92371
92401
  };
92372
92402
  export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatUserMessage | QueryError;
@@ -92484,6 +92514,16 @@ export declare type LoomComment = Node & {
92484
92514
  video?: Maybe<LoomVideo>;
92485
92515
  videoId: Scalars['ID']['output'];
92486
92516
  };
92517
+ export declare type LoomDeleteVideo = {
92518
+ __typename?: 'LoomDeleteVideo';
92519
+ failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
92520
+ success: Array<Scalars['ID']['output']>;
92521
+ };
92522
+ export declare type LoomDeleteVideoFailure = {
92523
+ __typename?: 'LoomDeleteVideoFailure';
92524
+ ari: Scalars['ID']['output'];
92525
+ error: Scalars['String']['output'];
92526
+ };
92487
92527
  export declare type LoomFolder = {
92488
92528
  __typename?: 'LoomFolder';
92489
92529
  id: Scalars['ID']['output'];
@@ -99901,6 +99941,7 @@ export declare type Mutation = {
99901
99941
  addReaction?: Maybe<SaveReactionResponse>;
99902
99942
  admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
99903
99943
  admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
99944
+ admin_auditLogEventExport?: Maybe<AdminAuditLogEventExport>;
99904
99945
  admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
99905
99946
  admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
99906
99947
  admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
@@ -100306,12 +100347,16 @@ export declare type Mutation = {
100306
100347
  goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
100307
100348
  goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
100308
100349
  goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
100350
+ goals_editDropdownCustomField?: Maybe<TownsquareGoalsEditDropdownCustomFieldPayload>;
100309
100351
  goals_editGoalTypePair?: Maybe<TownsquareEditGoalTypePairPayload>;
100310
100352
  goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
100311
100353
  goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
100312
100354
  goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
100355
+ goals_editNumberCustomField?: Maybe<TownsquareGoalsEditNumberCustomFieldPayload>;
100313
100356
  goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
100357
+ goals_editTextCustomField?: Maybe<TownsquareGoalsEditTextCustomFieldPayload>;
100314
100358
  goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
100359
+ goals_editUserCustomField?: Maybe<TownsquareGoalsEditUserCustomFieldPayload>;
100315
100360
  goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
100316
100361
  goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
100317
100362
  goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
@@ -100473,6 +100518,7 @@ export declare type Mutation = {
100473
100518
  likeContent?: Maybe<LikeContentPayload>;
100474
100519
  liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
100475
100520
  loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
100521
+ loom_deleteVideos?: Maybe<LoomDeleteVideo>;
100476
100522
  loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
100477
100523
  loom_spaceCreate?: Maybe<LoomSpace>;
100478
100524
  markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
@@ -100808,6 +100854,10 @@ export declare type MutationAdmin_AssignRoleArgs = {
100808
100854
  directoryId?: InputMaybe<Scalars['ID']['input']>;
100809
100855
  orgId: Scalars['ID']['input'];
100810
100856
  };
100857
+ export declare type MutationAdmin_AuditLogEventExportArgs = {
100858
+ input?: InputMaybe<AdminAuditLogEventExportInput>;
100859
+ orgId: Scalars['ID']['input'];
100860
+ };
100811
100861
  export declare type MutationAdmin_CreateAccessUrlArgs = {
100812
100862
  resourceAri: Scalars['ID']['input'];
100813
100863
  };
@@ -102316,6 +102366,9 @@ export declare type MutationGoals_EditCommentArgs = {
102316
102366
  export declare type MutationGoals_EditDecisionArgs = {
102317
102367
  input: TownsquareGoalsEditDecisionInput;
102318
102368
  };
102369
+ export declare type MutationGoals_EditDropdownCustomFieldArgs = {
102370
+ input: TownsquareGoalsEditDropdownCustomFieldInput;
102371
+ };
102319
102372
  export declare type MutationGoals_EditGoalTypePairArgs = {
102320
102373
  input: TownsquareGoalsEditGoalTypePairInput;
102321
102374
  };
@@ -102328,12 +102381,21 @@ export declare type MutationGoals_EditMetricArgs = {
102328
102381
  export declare type MutationGoals_EditMetricTargetArgs = {
102329
102382
  input: TownsquareGoalsEditMetricTargetInput;
102330
102383
  };
102384
+ export declare type MutationGoals_EditNumberCustomFieldArgs = {
102385
+ input: TownsquareGoalsEditNumberCustomFieldInput;
102386
+ };
102331
102387
  export declare type MutationGoals_EditRiskArgs = {
102332
102388
  input: TownsquareGoalsEditRiskInput;
102333
102389
  };
102390
+ export declare type MutationGoals_EditTextCustomFieldArgs = {
102391
+ input: TownsquareGoalsEditTextCustomFieldInput;
102392
+ };
102334
102393
  export declare type MutationGoals_EditUpdateArgs = {
102335
102394
  input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
102336
102395
  };
102396
+ export declare type MutationGoals_EditUserCustomFieldArgs = {
102397
+ input: TownsquareGoalsEditUserCustomFieldInput;
102398
+ };
102337
102399
  export declare type MutationGoals_GrantAccessArgs = {
102338
102400
  input: TownsquareGoalGrantAccessInput;
102339
102401
  };
@@ -102838,6 +102900,9 @@ export declare type MutationLoom_AcceptOrganizationInviteArgs = {
102838
102900
  inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
102839
102901
  orgToken?: InputMaybe<Scalars['String']['input']>;
102840
102902
  };
102903
+ export declare type MutationLoom_DeleteVideosArgs = {
102904
+ ids: Array<Scalars['ID']['input']>;
102905
+ };
102841
102906
  export declare type MutationLoom_JoinWorkspaceArgs = {
102842
102907
  workspaceId: Scalars['String']['input'];
102843
102908
  };
@@ -106617,11 +106682,11 @@ export declare type Query = {
106617
106682
  admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
106618
106683
  admin_appModules?: Maybe<AdminAppModuleConnection>;
106619
106684
  admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
106685
+ admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
106686
+ admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
106620
106687
  admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
106621
106688
  admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
106622
106689
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
106623
- admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
106624
- admin_eventLocations?: Maybe<AdminEventLocationConnection>;
106625
106690
  admin_group?: Maybe<AdminGroup>;
106626
106691
  admin_groups?: Maybe<AdminGroupConnection>;
106627
106692
  admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
@@ -107616,40 +107681,40 @@ export declare type QueryAdmin_AuditAuditLogEventsArgs = {
107616
107681
  last?: InputMaybe<Scalars['Int']['input']>;
107617
107682
  orgId: Scalars['ID']['input'];
107618
107683
  };
107619
- export declare type QueryAdmin_CheckLicensesCapacityArgs = {
107620
- input: AdminLicenseInput;
107621
- orgId: Scalars['ID']['input'];
107622
- };
107623
- export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
107684
+ export declare type QueryAdmin_AuditLogEventActionsArgs = {
107624
107685
  after?: InputMaybe<Scalars['String']['input']>;
107625
- appInstallationId: Scalars['ID']['input'];
107626
107686
  before?: InputMaybe<Scalars['String']['input']>;
107627
107687
  first?: InputMaybe<Scalars['Int']['input']>;
107628
107688
  last?: InputMaybe<Scalars['Int']['input']>;
107689
+ orgId: Scalars['ID']['input'];
107629
107690
  };
107630
- export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
107691
+ export declare type QueryAdmin_AuditLogEventLocationsArgs = {
107631
107692
  after?: InputMaybe<Scalars['String']['input']>;
107632
107693
  before?: InputMaybe<Scalars['String']['input']>;
107633
- directoryId?: InputMaybe<Scalars['ID']['input']>;
107694
+ filter?: InputMaybe<Scalars['String']['input']>;
107634
107695
  first?: InputMaybe<Scalars['Int']['input']>;
107635
107696
  last?: InputMaybe<Scalars['Int']['input']>;
107636
107697
  orgId: Scalars['ID']['input'];
107637
- principal: Scalars['ID']['input'];
107638
107698
  };
107639
- export declare type QueryAdmin_EventActionsArgs = {
107699
+ export declare type QueryAdmin_CheckLicensesCapacityArgs = {
107700
+ input: AdminLicenseInput;
107701
+ orgId: Scalars['ID']['input'];
107702
+ };
107703
+ export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
107640
107704
  after?: InputMaybe<Scalars['String']['input']>;
107705
+ appInstallationId: Scalars['ID']['input'];
107641
107706
  before?: InputMaybe<Scalars['String']['input']>;
107642
107707
  first?: InputMaybe<Scalars['Int']['input']>;
107643
107708
  last?: InputMaybe<Scalars['Int']['input']>;
107644
- orgId: Scalars['ID']['input'];
107645
107709
  };
107646
- export declare type QueryAdmin_EventLocationsArgs = {
107710
+ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
107647
107711
  after?: InputMaybe<Scalars['String']['input']>;
107648
107712
  before?: InputMaybe<Scalars['String']['input']>;
107649
- filter?: InputMaybe<Scalars['String']['input']>;
107713
+ directoryId?: InputMaybe<Scalars['ID']['input']>;
107650
107714
  first?: InputMaybe<Scalars['Int']['input']>;
107651
107715
  last?: InputMaybe<Scalars['Int']['input']>;
107652
107716
  orgId: Scalars['ID']['input'];
107717
+ principal: Scalars['ID']['input'];
107653
107718
  };
107654
107719
  export declare type QueryAdmin_GroupArgs = {
107655
107720
  input?: InputMaybe<AdminFetchGroupInput>;
@@ -111843,11 +111908,12 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
111843
111908
  positionAri: Scalars['ID']['input'];
111844
111909
  };
111845
111910
  export declare type RadarDeleteLaborCostEstimateDataInput = {
111846
- defaultAmount: Scalars['Boolean']['input'];
111847
- importedData: Scalars['Boolean']['input'];
111911
+ deleteDefaultAmount: Scalars['Boolean']['input'];
111848
111912
  };
111849
111913
  export declare type RadarDeleteLaborCostEstimateDataResponse = {
111850
111914
  __typename?: 'RadarDeleteLaborCostEstimateDataResponse';
111915
+ laborCostEstimatesDeletedCount?: Maybe<Scalars['Int']['output']>;
111916
+ positionCostsResetCount?: Maybe<Scalars['Int']['output']>;
111851
111917
  radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
111852
111918
  success: Scalars['Boolean']['output'];
111853
111919
  };
@@ -112474,6 +112540,7 @@ export declare enum RateLimitingCurrency {
112474
112540
  TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
112475
112541
  TeamV2Currency = "TEAM_V2_CURRENCY",
112476
112542
  TestingService = "TESTING_SERVICE",
112543
+ TrelloAiCurrency = "TRELLO_AI_CURRENCY",
112477
112544
  TrelloCurrency = "TRELLO_CURRENCY",
112478
112545
  TrelloMutationCurrency = "TRELLO_MUTATION_CURRENCY"
112479
112546
  }
@@ -139874,6 +139941,17 @@ export declare type TownsquareGoalsEditDecisionPayload = {
139874
139941
  errors?: Maybe<Array<MutationError>>;
139875
139942
  success: Scalars['Boolean']['output'];
139876
139943
  };
139944
+ export declare type TownsquareGoalsEditDropdownCustomFieldInput = {
139945
+ customFieldDefinitionId: Scalars['ID']['input'];
139946
+ goalId: Scalars['ID']['input'];
139947
+ valueId: Scalars['ID']['input'];
139948
+ };
139949
+ export declare type TownsquareGoalsEditDropdownCustomFieldPayload = {
139950
+ __typename?: 'TownsquareGoalsEditDropdownCustomFieldPayload';
139951
+ errors?: Maybe<Array<MutationError>>;
139952
+ success: Scalars['Boolean']['output'];
139953
+ valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
139954
+ };
139877
139955
  export declare type TownsquareGoalsEditGoalTypePairInput = {
139878
139956
  goalType: TownsquareEditGoalTypeInputV2;
139879
139957
  successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
@@ -139915,6 +139993,17 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
139915
139993
  goal?: Maybe<TownsquareGoal>;
139916
139994
  success: Scalars['Boolean']['output'];
139917
139995
  };
139996
+ export declare type TownsquareGoalsEditNumberCustomFieldInput = {
139997
+ customFieldDefinitionId: Scalars['ID']['input'];
139998
+ goalId: Scalars['ID']['input'];
139999
+ value: Scalars['Float']['input'];
140000
+ };
140001
+ export declare type TownsquareGoalsEditNumberCustomFieldPayload = {
140002
+ __typename?: 'TownsquareGoalsEditNumberCustomFieldPayload';
140003
+ errors?: Maybe<Array<MutationError>>;
140004
+ success: Scalars['Boolean']['output'];
140005
+ valueNode?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
140006
+ };
139918
140007
  export declare type TownsquareGoalsEditRiskInput = {
139919
140008
  description?: InputMaybe<Scalars['String']['input']>;
139920
140009
  riskId: Scalars['ID']['input'];
@@ -139926,6 +140015,17 @@ export declare type TownsquareGoalsEditRiskPayload = {
139926
140015
  risk?: Maybe<TownsquareRisk>;
139927
140016
  success: Scalars['Boolean']['output'];
139928
140017
  };
140018
+ export declare type TownsquareGoalsEditTextCustomFieldInput = {
140019
+ customFieldDefinitionId: Scalars['ID']['input'];
140020
+ goalId: Scalars['ID']['input'];
140021
+ value: Scalars['String']['input'];
140022
+ };
140023
+ export declare type TownsquareGoalsEditTextCustomFieldPayload = {
140024
+ __typename?: 'TownsquareGoalsEditTextCustomFieldPayload';
140025
+ errors?: Maybe<Array<MutationError>>;
140026
+ success: Scalars['Boolean']['output'];
140027
+ valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
140028
+ };
139929
140029
  export declare type TownsquareGoalsEditUpdateInput = {
139930
140030
  goalUpdateId: Scalars['ID']['input'];
139931
140031
  highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
@@ -139942,6 +140042,17 @@ export declare type TownsquareGoalsEditUpdatePayload = {
139942
140042
  success: Scalars['Boolean']['output'];
139943
140043
  update?: Maybe<TownsquareGoalUpdate>;
139944
140044
  };
140045
+ export declare type TownsquareGoalsEditUserCustomFieldInput = {
140046
+ customFieldDefinitionId: Scalars['ID']['input'];
140047
+ goalId: Scalars['ID']['input'];
140048
+ userId: Scalars['ID']['input'];
140049
+ };
140050
+ export declare type TownsquareGoalsEditUserCustomFieldPayload = {
140051
+ __typename?: 'TownsquareGoalsEditUserCustomFieldPayload';
140052
+ errors?: Maybe<Array<MutationError>>;
140053
+ success: Scalars['Boolean']['output'];
140054
+ user?: Maybe<User>;
140055
+ };
139945
140056
  export declare type TownsquareGoalsLinkWorkItemInput = {
139946
140057
  goalId: Scalars['ID']['input'];
139947
140058
  workItemId: Scalars['ID']['input'];
@@ -142473,6 +142584,8 @@ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
142473
142584
  onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
142474
142585
  onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
142475
142586
  onMembersDeleted?: Maybe<Array<TrelloBoardMembershipDeleted>>;
142587
+ onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
142588
+ plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
142476
142589
  powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
142477
142590
  powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
142478
142591
  prefs?: Maybe<TrelloBoardPrefs>;
@@ -142895,6 +143008,12 @@ export declare type TrelloCardMemberEdgeUpdated = {
142895
143008
  __typename?: 'TrelloCardMemberEdgeUpdated';
142896
143009
  node?: Maybe<TrelloMember>;
142897
143010
  };
143011
+ export declare type TrelloCardPlannerEvent = {
143012
+ __typename?: 'TrelloCardPlannerEvent';
143013
+ event?: Maybe<TrelloPlannerCalendarEvent>;
143014
+ id: Scalars['ID']['output'];
143015
+ objectId: Scalars['ID']['output'];
143016
+ };
142898
143017
  export declare enum TrelloCardRole {
142899
143018
  Board = "BOARD",
142900
143019
  Link = "LINK",
@@ -143305,6 +143424,7 @@ export declare type TrelloCreatePlannerCalendarEventOptions = {
143305
143424
  end: Scalars['DateTime']['input'];
143306
143425
  start: Scalars['DateTime']['input'];
143307
143426
  title: Scalars['String']['input'];
143427
+ visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
143308
143428
  };
143309
143429
  export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
143310
143430
  __typename?: 'TrelloCreatePlannerCalendarEventPayload';
@@ -143488,6 +143608,7 @@ export declare type TrelloEditPlannerCalendarEventOptions = {
143488
143608
  start?: InputMaybe<Scalars['DateTime']['input']>;
143489
143609
  targetPlannerCalendar?: InputMaybe<TrelloMovePlannerCalendarEventTargetOptions>;
143490
143610
  title?: InputMaybe<Scalars['String']['input']>;
143611
+ visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
143491
143612
  };
143492
143613
  export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
143493
143614
  __typename?: 'TrelloEditPlannerCalendarEventPayload';
@@ -143878,6 +143999,7 @@ export declare type TrelloMarkInboxNotificationsReadPayload = {
143878
143999
  export declare type TrelloMember = Node & {
143879
144000
  __typename?: 'TrelloMember';
143880
144001
  activityBlocked?: Maybe<Scalars['Boolean']['output']>;
144002
+ aiPreferences?: Maybe<TrelloMemberAiPreference>;
143881
144003
  aiRules?: Maybe<TrelloMemberAiRuleConnection>;
143882
144004
  avatarSource?: Maybe<Scalars['String']['output']>;
143883
144005
  avatarUrl?: Maybe<Scalars['URL']['output']>;
@@ -143921,6 +144043,10 @@ export declare type TrelloMemberWorkspacesArgs = {
143921
144043
  filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
143922
144044
  first?: InputMaybe<Scalars['Int']['input']>;
143923
144045
  };
144046
+ export declare type TrelloMemberAiPreference = {
144047
+ __typename?: 'TrelloMemberAiPreference';
144048
+ smartSchedule?: Maybe<TrelloSmartSchedulePreference>;
144049
+ };
143924
144050
  export declare type TrelloMemberAiRuleConnection = {
143925
144051
  __typename?: 'TrelloMemberAiRuleConnection';
143926
144052
  edges?: Maybe<Array<TrelloMemberAiRuleEdge>>;
@@ -144170,6 +144296,7 @@ export declare type TrelloMutationApi = {
144170
144296
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
144171
144297
  removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
144172
144298
  resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
144299
+ retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
144173
144300
  sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
144174
144301
  sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
144175
144302
  smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
@@ -144308,6 +144435,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
144308
144435
  export declare type TrelloMutationApiResetCardCoverArgs = {
144309
144436
  input: TrelloResetCardCoverInput;
144310
144437
  };
144438
+ export declare type TrelloMutationApiRetryAiOnBoardArgs = {
144439
+ input: TrelloRetryAiOnBoardInput;
144440
+ };
144311
144441
  export declare type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
144312
144442
  input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
144313
144443
  };
@@ -144523,6 +144653,10 @@ export declare type TrelloPlannerCalendarAccountConnectionUpdated = {
144523
144653
  __typename?: 'TrelloPlannerCalendarAccountConnectionUpdated';
144524
144654
  edges?: Maybe<Array<TrelloPlannerCalendarAccountEdgeUpdated>>;
144525
144655
  };
144656
+ export declare type TrelloPlannerCalendarAccountDeleted = {
144657
+ __typename?: 'TrelloPlannerCalendarAccountDeleted';
144658
+ id: Scalars['ID']['output'];
144659
+ };
144526
144660
  export declare type TrelloPlannerCalendarAccountEdge = {
144527
144661
  __typename?: 'TrelloPlannerCalendarAccountEdge';
144528
144662
  cursor?: Maybe<Scalars['String']['output']>;
@@ -144785,6 +144919,11 @@ export declare type TrelloPlannerEventCardConnection = {
144785
144919
  edges: Array<TrelloPlannerEventCardEdge>;
144786
144920
  pageInfo: PageInfo;
144787
144921
  };
144922
+ export declare type TrelloPlannerEventCardDeleted = {
144923
+ __typename?: 'TrelloPlannerEventCardDeleted';
144924
+ id: Scalars['ID']['output'];
144925
+ objectId?: Maybe<Scalars['ID']['output']>;
144926
+ };
144788
144927
  export declare type TrelloPlannerEventCardEdge = {
144789
144928
  __typename?: 'TrelloPlannerEventCardEdge';
144790
144929
  cursor: Scalars['String']['output'];
@@ -144798,7 +144937,7 @@ export declare type TrelloPlannerEventConnection = {
144798
144937
  export declare type TrelloPlannerEventEdge = {
144799
144938
  __typename?: 'TrelloPlannerEventEdge';
144800
144939
  cursor: Scalars['String']['output'];
144801
- node: TrelloPlannerCalendarEvent;
144940
+ node: TrelloCardPlannerEvent;
144802
144941
  };
144803
144942
  export declare enum TrelloPlannerEventTimeFilter {
144804
144943
  All = "ALL",
@@ -144809,11 +144948,19 @@ export declare type TrelloPlannerProposedEventConnection = {
144809
144948
  edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
144810
144949
  pageInfo: PageInfo;
144811
144950
  };
144951
+ export declare type TrelloPlannerProposedEventConnectionUpdated = {
144952
+ __typename?: 'TrelloPlannerProposedEventConnectionUpdated';
144953
+ edges?: Maybe<Array<TrelloPlannerProposedEventEdgeUpdated>>;
144954
+ };
144812
144955
  export declare type TrelloPlannerProposedEventEdge = {
144813
144956
  __typename?: 'TrelloPlannerProposedEventEdge';
144814
144957
  cursor: Scalars['String']['output'];
144815
144958
  node?: Maybe<TrelloProposedEvent>;
144816
144959
  };
144960
+ export declare type TrelloPlannerProposedEventEdgeUpdated = {
144961
+ __typename?: 'TrelloPlannerProposedEventEdgeUpdated';
144962
+ node?: Maybe<TrelloProposedEvent>;
144963
+ };
144817
144964
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
144818
144965
  __typename?: 'TrelloPlannerProviderCalendar';
144819
144966
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -144861,7 +145008,10 @@ export declare type TrelloPlannerUpdated = {
144861
145008
  __typename?: 'TrelloPlannerUpdated';
144862
145009
  accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
144863
145010
  id: Scalars['ID']['output'];
145011
+ onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
145012
+ onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
144864
145013
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
145014
+ proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
144865
145015
  };
144866
145016
  export declare type TrelloPowerUp = {
144867
145017
  __typename?: 'TrelloPowerUp';
@@ -145301,6 +145451,15 @@ export declare type TrelloResetCardCoverPayload = Payload & {
145301
145451
  errors?: Maybe<Array<MutationError>>;
145302
145452
  success: Scalars['Boolean']['output'];
145303
145453
  };
145454
+ export declare type TrelloRetryAiOnBoardInput = {
145455
+ boardId: Scalars['ID']['input'];
145456
+ userInput: TrelloAiBoardUserInput;
145457
+ };
145458
+ export declare type TrelloRetryAiOnBoardPayload = Payload & {
145459
+ __typename?: 'TrelloRetryAiOnBoardPayload';
145460
+ errors?: Maybe<Array<MutationError>>;
145461
+ success: Scalars['Boolean']['output'];
145462
+ };
145304
145463
  export declare type TrelloScaleProps = {
145305
145464
  __typename?: 'TrelloScaleProps';
145306
145465
  height?: Maybe<Scalars['Int']['output']>;
@@ -145327,6 +145486,13 @@ export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
145327
145486
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
145328
145487
  timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
145329
145488
  };
145489
+ export declare type TrelloSmartSchedulePreference = {
145490
+ __typename?: 'TrelloSmartSchedulePreference';
145491
+ lastActivity?: Maybe<Scalars['DateTime']['output']>;
145492
+ lastRun?: Maybe<Scalars['DateTime']['output']>;
145493
+ preferredRunTime?: Maybe<Scalars['Int']['output']>;
145494
+ status: TrelloSmartScheduleStatus;
145495
+ };
145330
145496
  export declare enum TrelloSmartScheduleStatus {
145331
145497
  Active = "ACTIVE",
145332
145498
  Dormant = "DORMANT",
@@ -145384,6 +145550,7 @@ export declare type TrelloSubscriptionApi = {
145384
145550
  onBoardUpdated?: Maybe<TrelloBoardUpdated>;
145385
145551
  onCardBatchUpdated?: Maybe<TrelloCardBatch>;
145386
145552
  onInboxUpdated?: Maybe<TrelloInboxUpdated>;
145553
+ onMemberPlannerBadgesUpdated?: Maybe<TrelloBoardUpdated>;
145387
145554
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
145388
145555
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
145389
145556
  };