@forge/cli-shared 6.3.0-next.12 → 6.3.0-next.13

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.3.0-next.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ffa1464]
8
+ - @forge/util@1.4.5-next.0
9
+
3
10
  ## 6.3.0-next.12
4
11
 
5
12
  ### Patch Changes
@@ -14912,7 +14912,7 @@ export declare type ContentPlatformIpmInlineDialog = {
14912
14912
  primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
14913
14913
  secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
14914
14914
  title: Scalars['String']['output'];
14915
- trigger: Array<ContentPlatformIpmTrigger>;
14915
+ trigger: ContentPlatformIpmTrigger;
14916
14916
  updatedAt?: Maybe<Scalars['String']['output']>;
14917
14917
  };
14918
14918
  export declare type ContentPlatformIpmInlineDialogResultEdge = {
@@ -17694,6 +17694,7 @@ export declare type DevAiCancelRunningAutofixScanInput = {
17694
17694
  export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
17695
17695
  __typename?: 'DevAiGenericAutodevLog';
17696
17696
  attributes?: Maybe<Scalars['JSON']['output']>;
17697
+ errorType?: Maybe<Scalars['String']['output']>;
17697
17698
  id: Scalars['ID']['output'];
17698
17699
  kind?: Maybe<Scalars['String']['output']>;
17699
17700
  phase?: Maybe<DevAiAutodevLogPhase>;
@@ -17744,6 +17745,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
17744
17745
  };
17745
17746
  export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
17746
17747
  __typename?: 'DevAiPlaintextAutodevLog';
17748
+ errorType?: Maybe<Scalars['String']['output']>;
17747
17749
  id: Scalars['ID']['output'];
17748
17750
  message?: Maybe<Scalars['String']['output']>;
17749
17751
  phase?: Maybe<DevAiAutodevLogPhase>;
@@ -25520,7 +25522,10 @@ export declare type GraphStore = {
25520
25522
  testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
25521
25523
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25522
25524
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25525
+ userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
25526
+ userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
25523
25527
  userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
25528
+ userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
25524
25529
  versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
25525
25530
  versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
25526
25531
  versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
@@ -27740,6 +27745,20 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
27740
27745
  first?: InputMaybe<Scalars['Int']['input']>;
27741
27746
  id: Scalars['ID']['input'];
27742
27747
  };
27748
+ export declare type GraphStoreUserAuthoredPrArgs = {
27749
+ after?: InputMaybe<Scalars['String']['input']>;
27750
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27751
+ first?: InputMaybe<Scalars['Int']['input']>;
27752
+ id: Scalars['ID']['input'];
27753
+ sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
27754
+ };
27755
+ export declare type GraphStoreUserHasTopProjectArgs = {
27756
+ after?: InputMaybe<Scalars['String']['input']>;
27757
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27758
+ first?: InputMaybe<Scalars['Int']['input']>;
27759
+ id: Scalars['ID']['input'];
27760
+ sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
27761
+ };
27743
27762
  export declare type GraphStoreUserOwnsComponentArgs = {
27744
27763
  after?: InputMaybe<Scalars['String']['input']>;
27745
27764
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27747,6 +27766,13 @@ export declare type GraphStoreUserOwnsComponentArgs = {
27747
27766
  id: Scalars['ID']['input'];
27748
27767
  sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
27749
27768
  };
27769
+ export declare type GraphStoreUserReviewsPrArgs = {
27770
+ after?: InputMaybe<Scalars['String']['input']>;
27771
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27772
+ first?: InputMaybe<Scalars['Int']['input']>;
27773
+ id: Scalars['ID']['input'];
27774
+ sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
27775
+ };
27750
27776
  export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
27751
27777
  after?: InputMaybe<Scalars['String']['input']>;
27752
27778
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28229,7 +28255,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = Node & {
28229
28255
  data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
28230
28256
  id: Scalars['ID']['output'];
28231
28257
  };
28232
- export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | TownsquareProject;
28258
+ export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
28233
28259
  export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
28234
28260
  __typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
28235
28261
  edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
@@ -34188,7 +34214,7 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
34188
34214
  node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
34189
34215
  };
34190
34216
  export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
34191
- export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | TownsquareProject;
34217
+ export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
34192
34218
  export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
34193
34219
  __typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
34194
34220
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
@@ -36237,6 +36263,34 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
36237
36263
  node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
36238
36264
  };
36239
36265
  export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
36266
+ export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
36267
+ __typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
36268
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
36269
+ pageInfo: PageInfo;
36270
+ };
36271
+ export declare type GraphStoreSimplifiedUserAuthoredPrEdge = {
36272
+ __typename?: 'GraphStoreSimplifiedUserAuthoredPrEdge';
36273
+ createdAt: Scalars['DateTime']['output'];
36274
+ cursor?: Maybe<Scalars['String']['output']>;
36275
+ id: Scalars['ID']['output'];
36276
+ lastUpdated: Scalars['DateTime']['output'];
36277
+ node?: Maybe<GraphStoreSimplifiedUserAuthoredPrUnion>;
36278
+ };
36279
+ export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
36280
+ export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
36281
+ __typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
36282
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
36283
+ pageInfo: PageInfo;
36284
+ };
36285
+ export declare type GraphStoreSimplifiedUserHasTopProjectEdge = {
36286
+ __typename?: 'GraphStoreSimplifiedUserHasTopProjectEdge';
36287
+ createdAt: Scalars['DateTime']['output'];
36288
+ cursor?: Maybe<Scalars['String']['output']>;
36289
+ id: Scalars['ID']['output'];
36290
+ lastUpdated: Scalars['DateTime']['output'];
36291
+ node?: Maybe<GraphStoreSimplifiedUserHasTopProjectUnion>;
36292
+ };
36293
+ export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
36240
36294
  export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
36241
36295
  __typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
36242
36296
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
@@ -36253,6 +36307,20 @@ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
36253
36307
  node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
36254
36308
  };
36255
36309
  export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
36310
+ export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
36311
+ __typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
36312
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
36313
+ pageInfo: PageInfo;
36314
+ };
36315
+ export declare type GraphStoreSimplifiedUserReviewsPrEdge = {
36316
+ __typename?: 'GraphStoreSimplifiedUserReviewsPrEdge';
36317
+ createdAt: Scalars['DateTime']['output'];
36318
+ cursor?: Maybe<Scalars['String']['output']>;
36319
+ id: Scalars['ID']['output'];
36320
+ lastUpdated: Scalars['DateTime']['output'];
36321
+ node?: Maybe<GraphStoreSimplifiedUserReviewsPrUnion>;
36322
+ };
36323
+ export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
36256
36324
  export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
36257
36325
  __typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
36258
36326
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
@@ -36909,12 +36977,21 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
36909
36977
  export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
36910
36978
  lastModified?: InputMaybe<GraphStoreSortInput>;
36911
36979
  };
36980
+ export declare type GraphStoreUserAuthoredPrSortInput = {
36981
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36982
+ };
36983
+ export declare type GraphStoreUserHasTopProjectSortInput = {
36984
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36985
+ };
36912
36986
  export declare type GraphStoreUserOwnsComponentSortInput = {
36913
36987
  createdAt?: InputMaybe<GraphStoreSortInput>;
36914
36988
  fromAti?: InputMaybe<GraphStoreSortInput>;
36915
36989
  lastModified?: InputMaybe<GraphStoreSortInput>;
36916
36990
  toAti?: InputMaybe<GraphStoreSortInput>;
36917
36991
  };
36992
+ export declare type GraphStoreUserReviewsPrSortInput = {
36993
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36994
+ };
36918
36995
  export declare type GraphStoreVersionAssociatedBranchSortInput = {
36919
36996
  createdAt?: InputMaybe<GraphStoreSortInput>;
36920
36997
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -44319,6 +44396,9 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
44319
44396
  idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
44320
44397
  ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
44321
44398
  };
44399
+ export declare type JiraIssueHasChildrenArgs = {
44400
+ filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
44401
+ };
44322
44402
  export declare type JiraIssueHasProjectPermissionArgs = {
44323
44403
  permission: JiraProjectPermissionType;
44324
44404
  };
@@ -49162,6 +49242,7 @@ export declare type JiraQuery = {
49162
49242
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
49163
49243
  issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
49164
49244
  issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
49245
+ jiraActivityConfiguration?: Maybe<JiraActivityConfiguration>;
49165
49246
  jiraBoard?: Maybe<JiraBoardResult>;
49166
49247
  jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
49167
49248
  jiraCalendar?: Maybe<JiraCalendar>;
@@ -49665,6 +49746,11 @@ export declare type JiraQueryIssuesByKeyArgs = {
49665
49746
  cloudId: Scalars['ID']['input'];
49666
49747
  keys: Array<Scalars['String']['input']>;
49667
49748
  };
49749
+ export declare type JiraQueryJiraActivityConfigurationArgs = {
49750
+ cloudId: Scalars['ID']['input'];
49751
+ id: Scalars['ID']['input'];
49752
+ journeyId: Scalars['ID']['input'];
49753
+ };
49668
49754
  export declare type JiraQueryJiraBoardArgs = {
49669
49755
  id: Scalars['ID']['input'];
49670
49756
  };
@@ -59118,6 +59204,7 @@ export declare type MercuryQueryApi = {
59118
59204
  mediaUploadToken?: Maybe<MercuryMediaToken>;
59119
59205
  myPreference?: Maybe<MercuryPreference>;
59120
59206
  myPreferences?: Maybe<Array<MercuryPreference>>;
59207
+ portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
59121
59208
  providerWork?: Maybe<MercuryProviderWork>;
59122
59209
  providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
59123
59210
  team?: Maybe<MercuryTeam>;
@@ -59200,6 +59287,9 @@ export declare type MercuryQueryApiMyPreferenceArgs = {
59200
59287
  export declare type MercuryQueryApiMyPreferencesArgs = {
59201
59288
  cloudId: Scalars['ID']['input'];
59202
59289
  };
59290
+ export declare type MercuryQueryApiPortfoliosByArisArgs = {
59291
+ aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
59292
+ };
59203
59293
  export declare type MercuryQueryApiProviderWorkArgs = {
59204
59294
  cloudId: Scalars['ID']['input'];
59205
59295
  id: Scalars['ID']['input'];
@@ -62813,6 +62903,7 @@ export declare type Query = {
62813
62903
  topicOverview?: Maybe<ContentPlatformTopicOverview>;
62814
62904
  topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
62815
62905
  townsquare?: Maybe<TownsquareQueryApi>;
62906
+ townsquareUnsharded_allWorkspaceSummariesForOrg?: Maybe<TownsquareUnshardedWorkspaceSummaryConnection>;
62816
62907
  trello: TrelloQueryApi;
62817
62908
  unified?: Maybe<UnifiedQuery>;
62818
62909
  user?: Maybe<User>;
@@ -64247,6 +64338,11 @@ export declare type QueryTopicOverviewArgs = {
64247
64338
  export declare type QueryTopicOverviewsArgs = {
64248
64339
  search: ContentPlatformSearchApIv2Query;
64249
64340
  };
64341
+ export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
64342
+ after?: InputMaybe<Scalars['String']['input']>;
64343
+ cloudId: Scalars['String']['input'];
64344
+ first?: InputMaybe<Scalars['Int']['input']>;
64345
+ };
64250
64346
  export declare type QueryUserArgs = {
64251
64347
  accountId: Scalars['ID']['input'];
64252
64348
  };
@@ -64337,6 +64433,7 @@ export declare type RadarEntity = {
64337
64433
  };
64338
64434
  export declare enum RadarEntityType {
64339
64435
  FocusArea = "focusArea",
64436
+ Person = "person",
64340
64437
  Position = "position"
64341
64438
  }
64342
64439
  export declare type RadarError = {
@@ -64365,6 +64462,7 @@ export declare type RadarFieldDefinition = Node & {
64365
64462
  type: RadarFieldType;
64366
64463
  };
64367
64464
  export declare enum RadarFieldType {
64465
+ Ari = "ARI",
64368
64466
  Boolean = "BOOLEAN",
64369
64467
  Datetime = "DATETIME",
64370
64468
  Number = "NUMBER",
@@ -66756,6 +66854,7 @@ export declare type ShepherdActorSessionInfoInput = {
66756
66854
  export declare type ShepherdAlert = Node & {
66757
66855
  __typename?: 'ShepherdAlert';
66758
66856
  actor: ShepherdAlertActor;
66857
+ applicableSites?: Maybe<Array<Scalars['ID']['output']>>;
66759
66858
  assignee?: Maybe<ShepherdUser>;
66760
66859
  cloudId?: Maybe<Scalars['ID']['output']>;
66761
66860
  createdOn: Scalars['DateTime']['output'];
@@ -67533,15 +67632,14 @@ export declare type ShepherdQuery = {
67533
67632
  workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
67534
67633
  };
67535
67634
  export declare type ShepherdQueryShepherdActivityArgs = {
67536
- actions?: InputMaybe<Array<InputMaybe<ShepherdActionType>>>;
67537
67635
  actor?: InputMaybe<Scalars['ID']['input']>;
67538
67636
  after?: InputMaybe<Scalars['String']['input']>;
67637
+ alertType?: InputMaybe<Scalars['String']['input']>;
67539
67638
  endTime?: InputMaybe<Scalars['DateTime']['input']>;
67540
67639
  eventId?: InputMaybe<Scalars['ID']['input']>;
67541
67640
  first: Scalars['Int']['input'];
67542
67641
  orgId?: InputMaybe<Scalars['String']['input']>;
67543
67642
  startTime?: InputMaybe<Scalars['DateTime']['input']>;
67544
- subject?: InputMaybe<ShepherdSubjectInput>;
67545
67643
  workspaceId?: InputMaybe<Scalars['String']['input']>;
67546
67644
  };
67547
67645
  export declare type ShepherdQueryShepherdActorArgs = {
@@ -69680,6 +69778,7 @@ export declare type TownsquareGoalType = Node & {
69680
69778
  icon?: Maybe<TownsquareGoalTypeIcon>;
69681
69779
  id: Scalars['ID']['output'];
69682
69780
  name?: Maybe<TownsquareGoalTypeName>;
69781
+ requiresParentGoal?: Maybe<Scalars['Boolean']['output']>;
69683
69782
  state?: Maybe<TownsquareGoalTypeState>;
69684
69783
  };
69685
69784
  export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
@@ -69851,6 +69950,7 @@ export declare type TownsquareQueryApi = {
69851
69950
  goalTql?: Maybe<TownsquareGoalConnection>;
69852
69951
  goalTqlFullHierarchy?: Maybe<TownsquareGoalConnection>;
69853
69952
  goalTypes?: Maybe<TownsquareGoalTypeConnection>;
69953
+ goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
69854
69954
  goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
69855
69955
  project?: Maybe<TownsquareProject>;
69856
69956
  projectSearch?: Maybe<TownsquareProjectConnection>;
@@ -69903,6 +70003,9 @@ export declare type TownsquareQueryApiGoalTypesArgs = {
69903
70003
  first?: InputMaybe<Scalars['Int']['input']>;
69904
70004
  includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
69905
70005
  };
70006
+ export declare type TownsquareQueryApiGoalTypesByAriArgs = {
70007
+ aris: Array<Scalars['String']['input']>;
70008
+ };
69906
70009
  export declare type TownsquareQueryApiGoalsByAriArgs = {
69907
70010
  aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
69908
70011
  };
@@ -69997,6 +70100,42 @@ export declare type TownsquareTeam = Node & {
69997
70100
  id: Scalars['ID']['output'];
69998
70101
  name?: Maybe<Scalars['String']['output']>;
69999
70102
  };
70103
+ export declare enum TownsquareUnshardedAccessControlCapability {
70104
+ Access = "ACCESS",
70105
+ Administer = "ADMINISTER",
70106
+ Create = "CREATE"
70107
+ }
70108
+ export declare type TownsquareUnshardedCapability = {
70109
+ __typename?: 'TownsquareUnshardedCapability';
70110
+ capability?: Maybe<TownsquareUnshardedAccessControlCapability>;
70111
+ capabilityContainer?: Maybe<TownsquareUnshardedCapabilityContainer>;
70112
+ };
70113
+ export declare enum TownsquareUnshardedCapabilityContainer {
70114
+ GoalsApp = "GOALS_APP",
70115
+ ProjectsApp = "PROJECTS_APP"
70116
+ }
70117
+ export declare type TownsquareUnshardedUserCapabilities = {
70118
+ __typename?: 'TownsquareUnshardedUserCapabilities';
70119
+ capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
70120
+ };
70121
+ export declare type TownsquareUnshardedWorkspaceSummary = {
70122
+ __typename?: 'TownsquareUnshardedWorkspaceSummary';
70123
+ cloudId: Scalars['String']['output'];
70124
+ id: Scalars['ID']['output'];
70125
+ name: Scalars['String']['output'];
70126
+ userCapabilities?: Maybe<TownsquareUnshardedUserCapabilities>;
70127
+ uuid: Scalars['String']['output'];
70128
+ };
70129
+ export declare type TownsquareUnshardedWorkspaceSummaryConnection = {
70130
+ __typename?: 'TownsquareUnshardedWorkspaceSummaryConnection';
70131
+ edges?: Maybe<Array<Maybe<TownsquareUnshardedWorkspaceSummaryEdge>>>;
70132
+ pageInfo: PageInfo;
70133
+ };
70134
+ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
70135
+ __typename?: 'TownsquareUnshardedWorkspaceSummaryEdge';
70136
+ cursor: Scalars['String']['output'];
70137
+ node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
70138
+ };
70000
70139
  export declare type TownsquareUserCapabilities = {
70001
70140
  __typename?: 'TownsquareUserCapabilities';
70002
70141
  capabilities?: Maybe<Array<Maybe<TownsquareCapability>>>;