@forge/cli-shared 5.3.2-next.2 → 5.3.2
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 +10 -0
- package/out/graphql/graphql-types.d.ts +136 -24
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +39 -18
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c9077a2: Rename function getEnvironment to getEnvironmentConfig
|
|
8
|
+
- 07355ac: Use staging runtime wrapper for dev & staging environments
|
|
9
|
+
- Updated dependencies [9985768]
|
|
10
|
+
- Updated dependencies [f32f860]
|
|
11
|
+
- @forge/manifest@7.5.3
|
|
12
|
+
|
|
3
13
|
## 5.3.2-next.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -616,6 +616,7 @@ export declare type App = {
|
|
|
616
616
|
avatarFileId?: Maybe<Scalars['String']['output']>;
|
|
617
617
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
618
618
|
contactLink?: Maybe<Scalars['String']['output']>;
|
|
619
|
+
createdAt: Scalars['String']['output'];
|
|
619
620
|
createdBy?: Maybe<User>;
|
|
620
621
|
deployments?: Maybe<AppDeploymentConnection>;
|
|
621
622
|
description: Scalars['String']['output'];
|
|
@@ -16843,6 +16844,7 @@ export declare type DevOpsDesign = Node & {
|
|
|
16843
16844
|
provider?: Maybe<DevOpsDataProvider>;
|
|
16844
16845
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
16845
16846
|
status?: Maybe<DevOpsDesignStatus>;
|
|
16847
|
+
thumbnail?: Maybe<DevOpsThumbnail>;
|
|
16846
16848
|
type?: Maybe<DevOpsDesignType>;
|
|
16847
16849
|
url?: Maybe<Scalars['URL']['output']>;
|
|
16848
16850
|
};
|
|
@@ -17921,6 +17923,10 @@ export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
|
17921
17923
|
name: Scalars['String']['output'];
|
|
17922
17924
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
17923
17925
|
};
|
|
17926
|
+
export declare type DevOpsThumbnail = {
|
|
17927
|
+
__typename?: 'DevOpsThumbnail';
|
|
17928
|
+
externalUrl?: Maybe<Scalars['URL']['output']>;
|
|
17929
|
+
};
|
|
17924
17930
|
export declare type DevOpsTool = Node & {
|
|
17925
17931
|
__typename?: 'DevOpsTool';
|
|
17926
17932
|
auth?: Maybe<DevOpsToolAuth>;
|
|
@@ -18712,22 +18718,6 @@ export declare type FilterQuery = {
|
|
|
18712
18718
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
18713
18719
|
sanitisedJql: Scalars['String']['output'];
|
|
18714
18720
|
};
|
|
18715
|
-
export declare type ForgeAiDemo = {
|
|
18716
|
-
__typename?: 'ForgeAiDemo';
|
|
18717
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
18718
|
-
endTimestamp?: Maybe<Scalars['String']['output']>;
|
|
18719
|
-
presenter?: Maybe<Scalars['String']['output']>;
|
|
18720
|
-
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
18721
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
18722
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
18723
|
-
};
|
|
18724
|
-
export declare type ForgeAiMutation = {
|
|
18725
|
-
__typename?: 'ForgeAiMutation';
|
|
18726
|
-
ForgeAiDemoAppAiGenerateSummaries?: Maybe<Array<Maybe<ForgeAiDemo>>>;
|
|
18727
|
-
};
|
|
18728
|
-
export declare type ForgeAiMutationForgeAiDemoAppAiGenerateSummariesArgs = {
|
|
18729
|
-
transcript?: InputMaybe<Scalars['String']['input']>;
|
|
18730
|
-
};
|
|
18731
18721
|
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
18732
18722
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18733
18723
|
endTime: Scalars['String']['input'];
|
|
@@ -20809,6 +20799,13 @@ export declare enum GraphDataDepotApprovalStatus {
|
|
|
20809
20799
|
Needswork = "NEEDSWORK",
|
|
20810
20800
|
Unapproved = "UNAPPROVED"
|
|
20811
20801
|
}
|
|
20802
|
+
export declare type GraphDataDepotAttachment = {
|
|
20803
|
+
__typename?: 'GraphDataDepotAttachment';
|
|
20804
|
+
byteSize: Scalars['Long']['output'];
|
|
20805
|
+
mimeType: Scalars['String']['output'];
|
|
20806
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
20807
|
+
url: Scalars['String']['output'];
|
|
20808
|
+
};
|
|
20812
20809
|
export declare type GraphDataDepotBranch = {
|
|
20813
20810
|
__typename?: 'GraphDataDepotBranch';
|
|
20814
20811
|
branchId: Scalars['String']['output'];
|
|
@@ -20889,6 +20886,29 @@ export declare type GraphDataDepotCommit = {
|
|
|
20889
20886
|
export declare enum GraphDataDepotCommitFlags {
|
|
20890
20887
|
MergeCommit = "MERGE_COMMIT"
|
|
20891
20888
|
}
|
|
20889
|
+
export declare type GraphDataDepotConversation = {
|
|
20890
|
+
__typename?: 'GraphDataDepotConversation';
|
|
20891
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20892
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20893
|
+
displayName: Scalars['String']['output'];
|
|
20894
|
+
externalId: Scalars['String']['output'];
|
|
20895
|
+
id: Scalars['ID']['output'];
|
|
20896
|
+
isArchived: Scalars['Boolean']['output'];
|
|
20897
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20898
|
+
memberCount?: Maybe<Scalars['Long']['output']>;
|
|
20899
|
+
members?: Maybe<Array<GraphDataDepotUser>>;
|
|
20900
|
+
membershipType: GraphDataDepotMembershipType;
|
|
20901
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20902
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
20903
|
+
type: GraphDataDepotConversationType;
|
|
20904
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20905
|
+
workspace: Scalars['String']['output'];
|
|
20906
|
+
};
|
|
20907
|
+
export declare enum GraphDataDepotConversationType {
|
|
20908
|
+
Channel = "CHANNEL",
|
|
20909
|
+
DirectMessage = "DIRECT_MESSAGE",
|
|
20910
|
+
GroupDirectMessage = "GROUP_DIRECT_MESSAGE"
|
|
20911
|
+
}
|
|
20892
20912
|
export declare type GraphDataDepotCue = {
|
|
20893
20913
|
__typename?: 'GraphDataDepotCue';
|
|
20894
20914
|
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20949,14 +20969,58 @@ export declare enum GraphDataDepotDesignType {
|
|
|
20949
20969
|
Other = "OTHER",
|
|
20950
20970
|
Prototype = "PROTOTYPE"
|
|
20951
20971
|
}
|
|
20972
|
+
export declare type GraphDataDepotDocument = {
|
|
20973
|
+
__typename?: 'GraphDataDepotDocument';
|
|
20974
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20975
|
+
collaborators?: Maybe<Array<GraphDataDepotUser>>;
|
|
20976
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20977
|
+
displayName: Scalars['String']['output'];
|
|
20978
|
+
exportLinks?: Maybe<Array<GraphDataDepotExportLink>>;
|
|
20979
|
+
externalId: Scalars['String']['output'];
|
|
20980
|
+
hasChildren: Scalars['Boolean']['output'];
|
|
20981
|
+
id: Scalars['ID']['output'];
|
|
20982
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20983
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20984
|
+
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
20985
|
+
truncatedDisplayName: Scalars['Boolean']['output'];
|
|
20986
|
+
type: GraphDataDepotDocumentType;
|
|
20987
|
+
updateSequenceNumber: Scalars['Long']['output'];
|
|
20988
|
+
url: Scalars['String']['output'];
|
|
20989
|
+
};
|
|
20990
|
+
export declare enum GraphDataDepotDocumentCategory {
|
|
20991
|
+
Archive = "ARCHIVE",
|
|
20992
|
+
Audio = "AUDIO",
|
|
20993
|
+
Code = "CODE",
|
|
20994
|
+
Document = "DOCUMENT",
|
|
20995
|
+
Folder = "FOLDER",
|
|
20996
|
+
Form = "FORM",
|
|
20997
|
+
Image = "IMAGE",
|
|
20998
|
+
Other = "OTHER",
|
|
20999
|
+
Pdf = "PDF",
|
|
21000
|
+
Presentation = "PRESENTATION",
|
|
21001
|
+
Shortcut = "SHORTCUT",
|
|
21002
|
+
Spreadsheet = "SPREADSHEET",
|
|
21003
|
+
Video = "VIDEO",
|
|
21004
|
+
WebPage = "WEB_PAGE"
|
|
21005
|
+
}
|
|
21006
|
+
export declare type GraphDataDepotDocumentType = {
|
|
21007
|
+
__typename?: 'GraphDataDepotDocumentType';
|
|
21008
|
+
category: GraphDataDepotDocumentCategory;
|
|
21009
|
+
fileExtension?: Maybe<Scalars['String']['output']>;
|
|
21010
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
21011
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
21012
|
+
};
|
|
20952
21013
|
export declare type GraphDataDepotEntities = {
|
|
20953
21014
|
__typename?: 'GraphDataDepotEntities';
|
|
20954
21015
|
branch: Array<GraphDataDepotBranch>;
|
|
20955
21016
|
buildInfo: Array<GraphDataDepotBuildInfo>;
|
|
20956
21017
|
commit: Array<GraphDataDepotCommit>;
|
|
21018
|
+
conversation: Array<GraphDataDepotConversation>;
|
|
20957
21019
|
deployment: Array<GraphDataDepotDeployment>;
|
|
20958
21020
|
design: Array<GraphDataDepotDesign>;
|
|
21021
|
+
document: Array<GraphDataDepotDocument>;
|
|
20959
21022
|
featureFlag: Array<GraphDataDepotFeatureFlag>;
|
|
21023
|
+
message: Array<GraphDataDepotMessage>;
|
|
20960
21024
|
pullRequest: Array<GraphDataDepotPullRequest>;
|
|
20961
21025
|
remoteLink: Array<GraphDataDepotRemoteLink>;
|
|
20962
21026
|
video: Array<GraphDataDepotVideo>;
|
|
@@ -20975,6 +21039,11 @@ export declare enum GraphDataDepotEnvironmentType {
|
|
|
20975
21039
|
Testing = "TESTING",
|
|
20976
21040
|
Unmapped = "UNMAPPED"
|
|
20977
21041
|
}
|
|
21042
|
+
export declare type GraphDataDepotExportLink = {
|
|
21043
|
+
__typename?: 'GraphDataDepotExportLink';
|
|
21044
|
+
mimeType: Scalars['String']['output'];
|
|
21045
|
+
url: Scalars['String']['output'];
|
|
21046
|
+
};
|
|
20978
21047
|
export declare type GraphDataDepotFeatureFlag = {
|
|
20979
21048
|
__typename?: 'GraphDataDepotFeatureFlag';
|
|
20980
21049
|
details: Array<GraphDataDepotFeatureFlagDetail>;
|
|
@@ -21025,12 +21094,24 @@ export declare type GraphDataDepotFileInfo = {
|
|
|
21025
21094
|
fileCount: Scalars['Int']['output'];
|
|
21026
21095
|
files: Array<GraphDataDepotFile>;
|
|
21027
21096
|
};
|
|
21028
|
-
export declare enum
|
|
21029
|
-
|
|
21030
|
-
|
|
21031
|
-
Production = "PRODUCTION",
|
|
21032
|
-
Staging = "STAGING"
|
|
21097
|
+
export declare enum GraphDataDepotMembershipType {
|
|
21098
|
+
Private = "PRIVATE",
|
|
21099
|
+
Public = "PUBLIC"
|
|
21033
21100
|
}
|
|
21101
|
+
export declare type GraphDataDepotMessage = {
|
|
21102
|
+
__typename?: 'GraphDataDepotMessage';
|
|
21103
|
+
attachments?: Maybe<Array<GraphDataDepotAttachment>>;
|
|
21104
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
21105
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
21106
|
+
externalId: Scalars['String']['output'];
|
|
21107
|
+
hidden: Scalars['Boolean']['output'];
|
|
21108
|
+
id: Scalars['ID']['output'];
|
|
21109
|
+
isPinned: Scalars['Boolean']['output'];
|
|
21110
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
21111
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
21112
|
+
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
21113
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
21114
|
+
};
|
|
21034
21115
|
export declare type GraphDataDepotPipeline = {
|
|
21035
21116
|
__typename?: 'GraphDataDepotPipeline';
|
|
21036
21117
|
displayName: Scalars['String']['output'];
|
|
@@ -24223,25 +24304,31 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs
|
|
|
24223
24304
|
};
|
|
24224
24305
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicArgs = {
|
|
24225
24306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24307
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24226
24308
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24227
24309
|
id: Scalars['ID']['input'];
|
|
24228
24310
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24229
24311
|
};
|
|
24230
24312
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseArgs = {
|
|
24231
24313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24314
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24232
24315
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24233
24316
|
id: Scalars['ID']['input'];
|
|
24234
24317
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24235
24318
|
};
|
|
24236
24319
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseRelationshipArgs = {
|
|
24237
24320
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24321
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24238
24322
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24239
24323
|
id: Scalars['ID']['input'];
|
|
24324
|
+
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24240
24325
|
};
|
|
24241
24326
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs = {
|
|
24242
24327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24328
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24243
24329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24244
24330
|
id: Scalars['ID']['input'];
|
|
24331
|
+
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24245
24332
|
};
|
|
24246
24333
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
24247
24334
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26227,8 +26314,25 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
26227
26314
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
26228
26315
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26229
26316
|
};
|
|
26317
|
+
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput = {
|
|
26318
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26319
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26320
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26321
|
+
relationship_syncLabels?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26322
|
+
relationship_synced?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26323
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26324
|
+
};
|
|
26325
|
+
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput = {
|
|
26326
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26327
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26328
|
+
};
|
|
26230
26329
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
26330
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
26331
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
26231
26332
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26333
|
+
relationship_syncLabels?: InputMaybe<GraphStoreSortInput>;
|
|
26334
|
+
relationship_synced?: InputMaybe<GraphStoreSortInput>;
|
|
26335
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
26232
26336
|
};
|
|
26233
26337
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
26234
26338
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
@@ -31753,10 +31857,12 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
31753
31857
|
};
|
|
31754
31858
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion = TownsquareProject;
|
|
31755
31859
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion = TownsquareGoal;
|
|
31756
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & {
|
|
31860
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & HasTotal & {
|
|
31757
31861
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection';
|
|
31758
31862
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge>>>;
|
|
31863
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
31759
31864
|
pageInfo: PageInfo;
|
|
31865
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31760
31866
|
};
|
|
31761
31867
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
31762
31868
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
@@ -31766,10 +31872,12 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
31766
31872
|
lastUpdated: Scalars['DateTime']['output'];
|
|
31767
31873
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
31768
31874
|
};
|
|
31769
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo & {
|
|
31875
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo & HasTotal & {
|
|
31770
31876
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection';
|
|
31771
31877
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge>>>;
|
|
31878
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
31772
31879
|
pageInfo: PageInfo;
|
|
31880
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31773
31881
|
};
|
|
31774
31882
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge = {
|
|
31775
31883
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
@@ -54604,7 +54712,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
54604
54712
|
};
|
|
54605
54713
|
export declare type Mutation = {
|
|
54606
54714
|
__typename?: 'Mutation';
|
|
54607
|
-
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
54608
54715
|
actions?: Maybe<ActionsMutation>;
|
|
54609
54716
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
54610
54717
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -64744,6 +64851,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
64744
64851
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
64745
64852
|
url?: Maybe<Scalars['String']['output']>;
|
|
64746
64853
|
uuid: Scalars['String']['output'];
|
|
64854
|
+
watchers?: Maybe<TownsquareUserConnection>;
|
|
64747
64855
|
};
|
|
64748
64856
|
export declare type TownsquareGoalSubGoalsArgs = {
|
|
64749
64857
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65027,6 +65135,10 @@ export declare type TownsquareTeam = Node & {
|
|
|
65027
65135
|
id: Scalars['ID']['output'];
|
|
65028
65136
|
name?: Maybe<Scalars['String']['output']>;
|
|
65029
65137
|
};
|
|
65138
|
+
export declare type TownsquareUserConnection = {
|
|
65139
|
+
__typename?: 'TownsquareUserConnection';
|
|
65140
|
+
count: Scalars['Int']['output'];
|
|
65141
|
+
};
|
|
65030
65142
|
export declare type TownsquareWorkspace = Node & {
|
|
65031
65143
|
__typename?: 'TownsquareWorkspace';
|
|
65032
65144
|
cloudId: Scalars['String']['output'];
|