@forge/cli-shared 8.9.1-next.2 → 8.9.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
|
@@ -2995,6 +2995,34 @@ export declare type AgentStudioJiraKnowledgeFilter = {
|
|
|
2995
2995
|
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
2996
2996
|
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2997
2997
|
};
|
|
2998
|
+
export declare type AgentStudioJobExecutionHistory = {
|
|
2999
|
+
__typename?: 'AgentStudioJobExecutionHistory';
|
|
3000
|
+
edges: Array<AgentStudioJobExecutionHistoryEdge>;
|
|
3001
|
+
pageInfo: PageInfo;
|
|
3002
|
+
};
|
|
3003
|
+
export declare type AgentStudioJobExecutionHistoryEdge = {
|
|
3004
|
+
__typename?: 'AgentStudioJobExecutionHistoryEdge';
|
|
3005
|
+
cursor: Scalars['String']['output'];
|
|
3006
|
+
node: AgentStudioJobExecutionHistoryNode;
|
|
3007
|
+
};
|
|
3008
|
+
export declare type AgentStudioJobExecutionHistoryNode = {
|
|
3009
|
+
__typename?: 'AgentStudioJobExecutionHistoryNode';
|
|
3010
|
+
agentVersionId?: Maybe<Scalars['String']['output']>;
|
|
3011
|
+
agentVersionName?: Maybe<Scalars['String']['output']>;
|
|
3012
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
3013
|
+
completedItems?: Maybe<Scalars['Int']['output']>;
|
|
3014
|
+
datasetId?: Maybe<Scalars['ID']['output']>;
|
|
3015
|
+
datasetName?: Maybe<Scalars['String']['output']>;
|
|
3016
|
+
failureCount?: Maybe<Scalars['Int']['output']>;
|
|
3017
|
+
jobId: Scalars['ID']['output'];
|
|
3018
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
3019
|
+
runId: Scalars['ID']['output'];
|
|
3020
|
+
runNumber?: Maybe<Scalars['Int']['output']>;
|
|
3021
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
3022
|
+
status?: Maybe<AgentStudioJobRunStatus>;
|
|
3023
|
+
successCount?: Maybe<Scalars['Int']['output']>;
|
|
3024
|
+
totalItems?: Maybe<Scalars['Int']['output']>;
|
|
3025
|
+
};
|
|
2998
3026
|
export declare enum AgentStudioJobRunStatus {
|
|
2999
3027
|
Cancelled = "CANCELLED",
|
|
3000
3028
|
Completed = "COMPLETED",
|
|
@@ -69872,6 +69900,14 @@ export declare type JiraFormulaFieldExpressionConfig = {
|
|
|
69872
69900
|
export declare type JiraFormulaFieldExpressionConfigInput = {
|
|
69873
69901
|
expression?: InputMaybe<Scalars['String']['input']>;
|
|
69874
69902
|
};
|
|
69903
|
+
export declare type JiraFormulaFieldFunctionInfo = {
|
|
69904
|
+
__typename?: 'JiraFormulaFieldFunctionInfo';
|
|
69905
|
+
arity: Scalars['Int']['output'];
|
|
69906
|
+
description: Scalars['String']['output'];
|
|
69907
|
+
name: Scalars['String']['output'];
|
|
69908
|
+
returnType: JiraFormulaFieldType;
|
|
69909
|
+
signature: Scalars['String']['output'];
|
|
69910
|
+
};
|
|
69875
69911
|
export declare type JiraFormulaFieldIssuePreview = {
|
|
69876
69912
|
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
69877
69913
|
missingFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -69912,6 +69948,10 @@ export declare type JiraFormulaFieldSuggestionContext = {
|
|
|
69912
69948
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69913
69949
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
69914
69950
|
};
|
|
69951
|
+
export declare type JiraFormulaFieldSupportedFunctions = {
|
|
69952
|
+
__typename?: 'JiraFormulaFieldSupportedFunctions';
|
|
69953
|
+
number?: Maybe<Array<JiraFormulaFieldFunctionInfo>>;
|
|
69954
|
+
};
|
|
69915
69955
|
export declare type JiraFormulaFieldTextValue = {
|
|
69916
69956
|
__typename?: 'JiraFormulaFieldTextValue';
|
|
69917
69957
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -71256,6 +71296,7 @@ export declare type JiraIssueExportInput = {
|
|
|
71256
71296
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71257
71297
|
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
71258
71298
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
71299
|
+
timelineAggregationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71259
71300
|
};
|
|
71260
71301
|
export declare type JiraIssueExportTask = {
|
|
71261
71302
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -73478,6 +73519,9 @@ export declare type JiraJqlProjectFieldValueEdge = {
|
|
|
73478
73519
|
cursor: Scalars['String']['output'];
|
|
73479
73520
|
node?: Maybe<JiraJqlProjectFieldValue>;
|
|
73480
73521
|
};
|
|
73522
|
+
export declare type JiraJqlProjectInput = {
|
|
73523
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73524
|
+
};
|
|
73481
73525
|
export declare type JiraJqlQueryHydratedError = {
|
|
73482
73526
|
__typename?: 'JiraJqlQueryHydratedError';
|
|
73483
73527
|
error?: Maybe<QueryError>;
|
|
@@ -73511,6 +73555,7 @@ export declare type JiraJqlScopeInput = {
|
|
|
73511
73555
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
73512
73556
|
list?: InputMaybe<JiraIssueSearchScope>;
|
|
73513
73557
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
73558
|
+
project?: InputMaybe<JiraJqlProjectInput>;
|
|
73514
73559
|
};
|
|
73515
73560
|
export declare type JiraJqlSearchTemplate = {
|
|
73516
73561
|
__typename?: 'JiraJqlSearchTemplate';
|
|
@@ -77891,6 +77936,7 @@ export declare type JiraQuery = {
|
|
|
77891
77936
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
77892
77937
|
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
77893
77938
|
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
77939
|
+
formulaFieldSupportedFunctions?: Maybe<JiraFormulaFieldSupportedFunctions>;
|
|
77894
77940
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
77895
77941
|
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
77896
77942
|
getArchivedIssuesForProject?: Maybe<JiraIssueConnection>;
|
|
@@ -78313,6 +78359,10 @@ export declare type JiraQueryFormulaFieldPreviewArgs = {
|
|
|
78313
78359
|
cloudId: Scalars['ID']['input'];
|
|
78314
78360
|
expression: Scalars['String']['input'];
|
|
78315
78361
|
};
|
|
78362
|
+
export declare type JiraQueryFormulaFieldSupportedFunctionsArgs = {
|
|
78363
|
+
cloudId: Scalars['ID']['input'];
|
|
78364
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
78365
|
+
};
|
|
78316
78366
|
export declare type JiraQueryGetArchivedIssuesArgs = {
|
|
78317
78367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78318
78368
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -95279,14 +95329,19 @@ export declare type Mutation = {
|
|
|
95279
95329
|
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
95280
95330
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
95281
95331
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
95332
|
+
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
95282
95333
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
95334
|
+
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
95335
|
+
goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
|
|
95283
95336
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
95284
95337
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
95338
|
+
goals_editRisk?: Maybe<TownsquareGoalsEditRiskPayload>;
|
|
95285
95339
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
95286
95340
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
95287
95341
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
95288
95342
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
95289
95343
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
95344
|
+
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
95290
95345
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
95291
95346
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
95292
95347
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
@@ -97089,15 +97144,27 @@ export declare type MutationGoals_CreateUpdateArgs = {
|
|
|
97089
97144
|
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
97090
97145
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
97091
97146
|
};
|
|
97147
|
+
export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
97148
|
+
input: TownsquareGoalsDeleteProjectLinkInput;
|
|
97149
|
+
};
|
|
97092
97150
|
export declare type MutationGoals_EditCommentArgs = {
|
|
97093
97151
|
input: TownsquareGoalsEditCommentInput;
|
|
97094
97152
|
};
|
|
97153
|
+
export declare type MutationGoals_EditDecisionArgs = {
|
|
97154
|
+
input: TownsquareGoalsEditDecisionInput;
|
|
97155
|
+
};
|
|
97156
|
+
export declare type MutationGoals_EditLearningArgs = {
|
|
97157
|
+
input: TownsquareGoalsEditLearningInput;
|
|
97158
|
+
};
|
|
97095
97159
|
export declare type MutationGoals_EditMetricArgs = {
|
|
97096
97160
|
input: TownsquareGoalsEditMetricInput;
|
|
97097
97161
|
};
|
|
97098
97162
|
export declare type MutationGoals_EditMetricTargetArgs = {
|
|
97099
97163
|
input: TownsquareGoalsEditMetricTargetInput;
|
|
97100
97164
|
};
|
|
97165
|
+
export declare type MutationGoals_EditRiskArgs = {
|
|
97166
|
+
input: TownsquareGoalsEditRiskInput;
|
|
97167
|
+
};
|
|
97101
97168
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
97102
97169
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
97103
97170
|
};
|
|
@@ -97113,6 +97180,9 @@ export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
|
97113
97180
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
97114
97181
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
97115
97182
|
};
|
|
97183
|
+
export declare type MutationGoals_SetWatchingTeamArgs = {
|
|
97184
|
+
input: TownsquareGoalsSetWatchingTeamInput;
|
|
97185
|
+
};
|
|
97116
97186
|
export declare type MutationGoals_ShareGoalArgs = {
|
|
97117
97187
|
input: TownsquareGoalsShareGoalInput;
|
|
97118
97188
|
};
|
|
@@ -101310,6 +101380,7 @@ export declare type Query = {
|
|
|
101310
101380
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
101311
101381
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
101312
101382
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
101383
|
+
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
101313
101384
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
101314
101385
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
101315
101386
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -102424,6 +102495,13 @@ export declare type QueryAgentStudio_InsightsConfigurationArgs = {
|
|
|
102424
102495
|
cloudId: Scalars['String']['input'];
|
|
102425
102496
|
id: Scalars['ID']['input'];
|
|
102426
102497
|
};
|
|
102498
|
+
export declare type QueryAgentStudio_JobExecutionHistoryArgs = {
|
|
102499
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102500
|
+
cloudId: Scalars['String']['input'];
|
|
102501
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102502
|
+
productType: AgentStudioProductType;
|
|
102503
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
102504
|
+
};
|
|
102427
102505
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
102428
102506
|
containerId: Scalars['ID']['input'];
|
|
102429
102507
|
id: Scalars['ID']['input'];
|
|
@@ -131748,6 +131826,20 @@ export declare type TeamChildrenEdge = {
|
|
|
131748
131826
|
cursor: Scalars['String']['output'];
|
|
131749
131827
|
node?: Maybe<TeamV2>;
|
|
131750
131828
|
};
|
|
131829
|
+
export declare type TeamCreateTeamInput = {
|
|
131830
|
+
description: Scalars['String']['input'];
|
|
131831
|
+
directoryId: Scalars['ID']['input'];
|
|
131832
|
+
displayName: Scalars['String']['input'];
|
|
131833
|
+
members?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131834
|
+
membershipSettings: TeamMembershipSettings;
|
|
131835
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
131836
|
+
};
|
|
131837
|
+
export declare type TeamCreateTeamPayload = Payload & {
|
|
131838
|
+
__typename?: 'TeamCreateTeamPayload';
|
|
131839
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131840
|
+
success: Scalars['Boolean']['output'];
|
|
131841
|
+
team?: Maybe<TeamV2>;
|
|
131842
|
+
};
|
|
131751
131843
|
export declare type TeamHierarchy = {
|
|
131752
131844
|
__typename?: 'TeamHierarchy';
|
|
131753
131845
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -131826,6 +131918,7 @@ export declare type TeamMutation = {
|
|
|
131826
131918
|
addChild?: Maybe<TeamV2>;
|
|
131827
131919
|
addParent?: Maybe<TeamV2>;
|
|
131828
131920
|
assignTeamToType?: Maybe<TeamV2>;
|
|
131921
|
+
createTeam?: Maybe<TeamCreateTeamPayload>;
|
|
131829
131922
|
createTeamType?: Maybe<TeamType>;
|
|
131830
131923
|
removeChild?: Maybe<TeamV2>;
|
|
131831
131924
|
removeParent?: Maybe<TeamV2>;
|
|
@@ -131846,6 +131939,9 @@ export declare type TeamMutationAssignTeamToTypeArgs = {
|
|
|
131846
131939
|
teamId: Scalars['ID']['input'];
|
|
131847
131940
|
typeId: Scalars['ID']['input'];
|
|
131848
131941
|
};
|
|
131942
|
+
export declare type TeamMutationCreateTeamArgs = {
|
|
131943
|
+
input: TeamCreateTeamInput;
|
|
131944
|
+
};
|
|
131849
131945
|
export declare type TeamMutationCreateTeamTypeArgs = {
|
|
131850
131946
|
scopeId: Scalars['ID']['input'];
|
|
131851
131947
|
typeData: TeamTypeCreationPayload;
|
|
@@ -133322,6 +133418,16 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
|
133322
133418
|
success: Scalars['Boolean']['output'];
|
|
133323
133419
|
updateId?: Maybe<Scalars['ID']['output']>;
|
|
133324
133420
|
};
|
|
133421
|
+
export declare type TownsquareGoalsDeleteProjectLinkInput = {
|
|
133422
|
+
goalId: Scalars['ID']['input'];
|
|
133423
|
+
projectId: Scalars['ID']['input'];
|
|
133424
|
+
};
|
|
133425
|
+
export declare type TownsquareGoalsDeleteProjectLinkPayload = {
|
|
133426
|
+
__typename?: 'TownsquareGoalsDeleteProjectLinkPayload';
|
|
133427
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133428
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
133429
|
+
success: Scalars['Boolean']['output'];
|
|
133430
|
+
};
|
|
133325
133431
|
export declare type TownsquareGoalsEditCommentInput = {
|
|
133326
133432
|
commentId: Scalars['ID']['input'];
|
|
133327
133433
|
commentText: Scalars['String']['input'];
|
|
@@ -133332,6 +133438,28 @@ export declare type TownsquareGoalsEditCommentPayload = {
|
|
|
133332
133438
|
errors?: Maybe<Array<MutationError>>;
|
|
133333
133439
|
success: Scalars['Boolean']['output'];
|
|
133334
133440
|
};
|
|
133441
|
+
export declare type TownsquareGoalsEditDecisionInput = {
|
|
133442
|
+
decisionId: Scalars['ID']['input'];
|
|
133443
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133444
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
133445
|
+
};
|
|
133446
|
+
export declare type TownsquareGoalsEditDecisionPayload = {
|
|
133447
|
+
__typename?: 'TownsquareGoalsEditDecisionPayload';
|
|
133448
|
+
decision?: Maybe<TownsquareDecision>;
|
|
133449
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133450
|
+
success: Scalars['Boolean']['output'];
|
|
133451
|
+
};
|
|
133452
|
+
export declare type TownsquareGoalsEditLearningInput = {
|
|
133453
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133454
|
+
learningId: Scalars['ID']['input'];
|
|
133455
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
133456
|
+
};
|
|
133457
|
+
export declare type TownsquareGoalsEditLearningPayload = {
|
|
133458
|
+
__typename?: 'TownsquareGoalsEditLearningPayload';
|
|
133459
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133460
|
+
learning?: Maybe<TownsquareLearning>;
|
|
133461
|
+
success: Scalars['Boolean']['output'];
|
|
133462
|
+
};
|
|
133335
133463
|
export declare type TownsquareGoalsEditMetricInput = {
|
|
133336
133464
|
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
133337
133465
|
metricId: Scalars['ID']['input'];
|
|
@@ -133358,6 +133486,17 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
|
133358
133486
|
goal?: Maybe<TownsquareGoal>;
|
|
133359
133487
|
success: Scalars['Boolean']['output'];
|
|
133360
133488
|
};
|
|
133489
|
+
export declare type TownsquareGoalsEditRiskInput = {
|
|
133490
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133491
|
+
riskId: Scalars['ID']['input'];
|
|
133492
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
133493
|
+
};
|
|
133494
|
+
export declare type TownsquareGoalsEditRiskPayload = {
|
|
133495
|
+
__typename?: 'TownsquareGoalsEditRiskPayload';
|
|
133496
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133497
|
+
risk?: Maybe<TownsquareRisk>;
|
|
133498
|
+
success: Scalars['Boolean']['output'];
|
|
133499
|
+
};
|
|
133361
133500
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
133362
133501
|
goalUpdateId: Scalars['ID']['input'];
|
|
133363
133502
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
|
|
@@ -133417,6 +133556,18 @@ export declare type TownsquareGoalsSetWatchingGoalPayload = {
|
|
|
133417
133556
|
success: Scalars['Boolean']['output'];
|
|
133418
133557
|
user?: Maybe<User>;
|
|
133419
133558
|
};
|
|
133559
|
+
export declare type TownsquareGoalsSetWatchingTeamInput = {
|
|
133560
|
+
goalId: Scalars['ID']['input'];
|
|
133561
|
+
isWatching: Scalars['Boolean']['input'];
|
|
133562
|
+
teamId: Scalars['ID']['input'];
|
|
133563
|
+
};
|
|
133564
|
+
export declare type TownsquareGoalsSetWatchingTeamPayload = {
|
|
133565
|
+
__typename?: 'TownsquareGoalsSetWatchingTeamPayload';
|
|
133566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133567
|
+
goal?: Maybe<TownsquareGoal>;
|
|
133568
|
+
success: Scalars['Boolean']['output'];
|
|
133569
|
+
team?: Maybe<TeamV2>;
|
|
133570
|
+
};
|
|
133420
133571
|
export declare type TownsquareGoalsShareGoalInput = {
|
|
133421
133572
|
goalId: Scalars['ID']['input'];
|
|
133422
133573
|
users: Array<InputMaybe<TownsquareShareGoalUserInput>>;
|
|
@@ -133556,6 +133707,7 @@ export declare type TownsquareMetric = Node & {
|
|
|
133556
133707
|
archived?: Maybe<Scalars['Boolean']['output']>;
|
|
133557
133708
|
externalEntityId?: Maybe<Scalars['String']['output']>;
|
|
133558
133709
|
id: Scalars['ID']['output'];
|
|
133710
|
+
latestValue?: Maybe<TownsquareMetricValue>;
|
|
133559
133711
|
name?: Maybe<Scalars['String']['output']>;
|
|
133560
133712
|
source?: Maybe<Scalars['String']['output']>;
|
|
133561
133713
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -133619,6 +133771,7 @@ export declare type TownsquareMetricUpdateInput = {
|
|
|
133619
133771
|
export declare type TownsquareMetricValue = Node & {
|
|
133620
133772
|
__typename?: 'TownsquareMetricValue';
|
|
133621
133773
|
id: Scalars['ID']['output'];
|
|
133774
|
+
time?: Maybe<Scalars['DateTime']['output']>;
|
|
133622
133775
|
value?: Maybe<Scalars['Float']['output']>;
|
|
133623
133776
|
};
|
|
133624
133777
|
export declare type TownsquareMetricValueConnection = {
|