@forge/cli-shared 9.4.1-next.2 → 9.4.1-next.3-experimental-e9e08bb
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 +23 -0
- package/out/graphql/graphql-types.d.ts +511 -119
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +117 -62
- package/out/tunnel/compose-project-lifecycle.d.ts +39 -0
- package/out/tunnel/compose-project-lifecycle.d.ts.map +1 -0
- package/out/tunnel/compose-project-lifecycle.js +105 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts +3 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +10 -8
- package/out/tunnel/index.d.ts +1 -0
- package/out/tunnel/index.d.ts.map +1 -1
- package/out/tunnel/index.js +1 -0
- package/out/tunnel/tunnel-options.d.ts +2 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -2643,9 +2643,13 @@ export declare enum AvpJqlSourceType {
|
|
|
2643
2643
|
export type AvpMergedDashboardDirectory = {
|
|
2644
2644
|
__typename?: 'AVPMergedDashboardDirectory';
|
|
2645
2645
|
dashboards: Array<AvpMergedDirectoryDashboard>;
|
|
2646
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
2647
|
+
selfCursor?: Maybe<Scalars['String']['output']>;
|
|
2646
2648
|
};
|
|
2647
2649
|
export type AvpMergedDashboardDirectoryInput = {
|
|
2648
2650
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
2651
|
+
afterCursor?: InputMaybe<Scalars['String']['input']>;
|
|
2652
|
+
beforeCursor?: InputMaybe<Scalars['String']['input']>;
|
|
2649
2653
|
dashboardName?: InputMaybe<Scalars['String']['input']>;
|
|
2650
2654
|
direction?: AvpMergedDirectorySortDirection;
|
|
2651
2655
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3114,6 +3118,12 @@ export type AvpStarDashboardPayload = Payload & {
|
|
|
3114
3118
|
errors?: Maybe<Array<MutationError>>;
|
|
3115
3119
|
success: Scalars['Boolean']['output'];
|
|
3116
3120
|
};
|
|
3121
|
+
export type AvpSubscriptionPresence = {
|
|
3122
|
+
__typename?: 'AVPSubscriptionPresence';
|
|
3123
|
+
hasOwnedSubscriptions: Scalars['Boolean']['output'];
|
|
3124
|
+
hasRecipientSubscriptions: Scalars['Boolean']['output'];
|
|
3125
|
+
hasSubscriptions: Scalars['Boolean']['output'];
|
|
3126
|
+
};
|
|
3117
3127
|
export type AvpTemplatePlaceholderReplacement = {
|
|
3118
3128
|
placeholderName: Scalars['String']['input'];
|
|
3119
3129
|
replacementValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9688,6 +9698,7 @@ export declare enum AgentWorkspaceSmartRoutingRoutingOutcomeLabel {
|
|
|
9688
9698
|
export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
|
|
9689
9699
|
AffectedServices = "AFFECTED_SERVICES",
|
|
9690
9700
|
Asset = "ASSET",
|
|
9701
|
+
RequestType = "REQUEST_TYPE",
|
|
9691
9702
|
Select = "SELECT",
|
|
9692
9703
|
ServicedeskCmdbField = "SERVICEDESK_CMDB_FIELD"
|
|
9693
9704
|
}
|
|
@@ -19382,6 +19393,7 @@ export type CcpOffering = CommerceOffering & Node & {
|
|
|
19382
19393
|
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
19383
19394
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
19384
19395
|
id: Scalars['ID']['output'];
|
|
19396
|
+
isPromocodeApplicable?: Maybe<CommerceExpOfferingIsPromocodeApplicable>;
|
|
19385
19397
|
key?: Maybe<Scalars['ID']['output']>;
|
|
19386
19398
|
level?: Maybe<Scalars['Int']['output']>;
|
|
19387
19399
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -19410,6 +19422,14 @@ export type CcpOfferingDefaultTransitionsArgs = {
|
|
|
19410
19422
|
export type CcpOfferingExtensionsArgs = {
|
|
19411
19423
|
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19412
19424
|
};
|
|
19425
|
+
export type CcpOfferingIsPromocodeApplicableArgs = {
|
|
19426
|
+
applicationType?: InputMaybe<CommerceExpPromotionApplicationType>;
|
|
19427
|
+
code: Scalars['String']['input'];
|
|
19428
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
19429
|
+
cycleInterval?: InputMaybe<CommerceExpCycleInterval>;
|
|
19430
|
+
offeringLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
19431
|
+
offeringLevelPrev?: InputMaybe<Scalars['Int']['input']>;
|
|
19432
|
+
};
|
|
19413
19433
|
export type CcpOfferingOfferingRelationshipsArgs = {
|
|
19414
19434
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
19415
19435
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -22927,6 +22947,7 @@ export type CommerceExpCcpQueryIsPromocodeApplicableArgs = {
|
|
|
22927
22947
|
code: Scalars['String']['input'];
|
|
22928
22948
|
currency?: InputMaybe<Scalars['String']['input']>;
|
|
22929
22949
|
cycleInterval?: InputMaybe<CommerceExpCycleInterval>;
|
|
22950
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
22930
22951
|
offeringLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
22931
22952
|
offeringLevelPrev?: InputMaybe<Scalars['Int']['input']>;
|
|
22932
22953
|
offeringStatus: CommerceExpCcpOfferingStatus;
|
|
@@ -31308,6 +31329,11 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
31308
31329
|
accessType: ConfluenceShareableLinkAccessType;
|
|
31309
31330
|
status: PublicLinkStatus;
|
|
31310
31331
|
};
|
|
31332
|
+
export declare enum ConfluenceAccessLinkPermissionMode {
|
|
31333
|
+
Edit = "EDIT",
|
|
31334
|
+
View = "VIEW",
|
|
31335
|
+
ViewAndComment = "VIEW_AND_COMMENT"
|
|
31336
|
+
}
|
|
31311
31337
|
export type ConfluenceAccessLinkSpacesActionInput = {
|
|
31312
31338
|
accessTypes: Array<ConfluenceShareableLinkAccessType>;
|
|
31313
31339
|
action: ConfluenceShareableLinkSpaceStatus;
|
|
@@ -36581,11 +36607,6 @@ export declare enum ConfluenceRecommendationType {
|
|
|
36581
36607
|
export declare enum ConfluenceRecommendedAction {
|
|
36582
36608
|
ConvertToRole = "CONVERT_TO_ROLE"
|
|
36583
36609
|
}
|
|
36584
|
-
export type ConfluenceRecordCompanionTipScrollSignalPayload = {
|
|
36585
|
-
__typename?: 'ConfluenceRecordCompanionTipScrollSignalPayload';
|
|
36586
|
-
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
36587
|
-
success?: Maybe<Scalars['Boolean']['output']>;
|
|
36588
|
-
};
|
|
36589
36610
|
export type ConfluenceRedactionMetadata = {
|
|
36590
36611
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
36591
36612
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -36953,6 +36974,17 @@ export type ConfluenceSendToDesktopRequestInput = {
|
|
|
36953
36974
|
sendToDesktopMetadata?: InputMaybe<ConfluenceSendToDesktopMetadata>;
|
|
36954
36975
|
sharerAaid?: InputMaybe<Scalars['String']['input']>;
|
|
36955
36976
|
};
|
|
36977
|
+
export type ConfluenceSetAccessLinkPermissionModeInput = {
|
|
36978
|
+
objectId: Scalars['ID']['input'];
|
|
36979
|
+
objectType: PublicLinkPermissionsObjectType;
|
|
36980
|
+
permissionMode: ConfluenceAccessLinkPermissionMode;
|
|
36981
|
+
};
|
|
36982
|
+
export type ConfluenceSetAccessLinkPermissionModePayload = Payload & {
|
|
36983
|
+
__typename?: 'ConfluenceSetAccessLinkPermissionModePayload';
|
|
36984
|
+
data?: Maybe<PublicLinkPermissions>;
|
|
36985
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36986
|
+
success: Scalars['Boolean']['output'];
|
|
36987
|
+
};
|
|
36956
36988
|
export type ConfluenceSetContentGeneralAccessModeInput = {
|
|
36957
36989
|
contentId: Scalars['ID']['input'];
|
|
36958
36990
|
mode: ConfluenceContentRestrictionStateInput;
|
|
@@ -38893,6 +38925,32 @@ export type ConfluenceUserInfo = {
|
|
|
38893
38925
|
type: ConfluenceUserType;
|
|
38894
38926
|
user?: Maybe<User>;
|
|
38895
38927
|
};
|
|
38928
|
+
export type ConfluenceUserSetupCohort = {
|
|
38929
|
+
__typename?: 'ConfluenceUserSetupCohort';
|
|
38930
|
+
category: ConfluenceUserSetupCohortCategory;
|
|
38931
|
+
eventCount: Scalars['Long']['output'];
|
|
38932
|
+
isLowConfidence: Scalars['Boolean']['output'];
|
|
38933
|
+
p75LoadTimeMs: Scalars['Long']['output'];
|
|
38934
|
+
value: Scalars['String']['output'];
|
|
38935
|
+
};
|
|
38936
|
+
export declare enum ConfluenceUserSetupCohortCategory {
|
|
38937
|
+
Adequate = "ADEQUATE",
|
|
38938
|
+
Basic = "BASIC",
|
|
38939
|
+
Optimal = "OPTIMAL"
|
|
38940
|
+
}
|
|
38941
|
+
export declare enum ConfluenceUserSetupMetric {
|
|
38942
|
+
CpuCoreCount = "CPU_CORE_COUNT"
|
|
38943
|
+
}
|
|
38944
|
+
export type ConfluenceUserSetupModule = {
|
|
38945
|
+
__typename?: 'ConfluenceUserSetupModule';
|
|
38946
|
+
cohorts: Array<ConfluenceUserSetupCohort>;
|
|
38947
|
+
metric: ConfluenceUserSetupMetric;
|
|
38948
|
+
performanceImpactMs?: Maybe<Scalars['Long']['output']>;
|
|
38949
|
+
};
|
|
38950
|
+
export type ConfluenceUserSetupResult = {
|
|
38951
|
+
__typename?: 'ConfluenceUserSetupResult';
|
|
38952
|
+
modules: Array<ConfluenceUserSetupModule>;
|
|
38953
|
+
};
|
|
38896
38954
|
export declare enum ConfluenceUserType {
|
|
38897
38955
|
Anonymous = "ANONYMOUS",
|
|
38898
38956
|
Known = "KNOWN"
|
|
@@ -44979,35 +45037,6 @@ export type CustomerUser = LocalizationContext & User & {
|
|
|
44979
45037
|
picture: Scalars['URL']['output'];
|
|
44980
45038
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
44981
45039
|
};
|
|
44982
|
-
export type DailyToplineTrendSeries = {
|
|
44983
|
-
__typename?: 'DailyToplineTrendSeries';
|
|
44984
|
-
cohortType: Scalars['String']['output'];
|
|
44985
|
-
cohortValue: Scalars['String']['output'];
|
|
44986
|
-
data: Array<DailyToplineTrendSeriesData>;
|
|
44987
|
-
env: GlanceEnvironment;
|
|
44988
|
-
goals: Array<ExperienceToplineGoal>;
|
|
44989
|
-
id: Scalars['ID']['output'];
|
|
44990
|
-
metric: Scalars['String']['output'];
|
|
44991
|
-
missingDays?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
44992
|
-
pageLoadType?: Maybe<PageLoadType>;
|
|
44993
|
-
percentile: Scalars['Int']['output'];
|
|
44994
|
-
};
|
|
44995
|
-
export type DailyToplineTrendSeriesData = {
|
|
44996
|
-
__typename?: 'DailyToplineTrendSeriesData';
|
|
44997
|
-
aggregatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44998
|
-
approxVolumePercentage?: Maybe<Scalars['Float']['output']>;
|
|
44999
|
-
count: Scalars['Int']['output'];
|
|
45000
|
-
day: Scalars['Date']['output'];
|
|
45001
|
-
id: Scalars['ID']['output'];
|
|
45002
|
-
isPartialDayAggregation?: Maybe<Scalars['Boolean']['output']>;
|
|
45003
|
-
overrideAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45004
|
-
overrideSourceName?: Maybe<Scalars['String']['output']>;
|
|
45005
|
-
overrideUserId?: Maybe<Scalars['String']['output']>;
|
|
45006
|
-
projectedValueEod?: Maybe<Scalars['Float']['output']>;
|
|
45007
|
-
projectedValueHigh?: Maybe<Scalars['Float']['output']>;
|
|
45008
|
-
projectedValueLow?: Maybe<Scalars['Float']['output']>;
|
|
45009
|
-
value: Scalars['Float']['output'];
|
|
45010
|
-
};
|
|
45011
45040
|
export type DataAccessAndStorage = {
|
|
45012
45041
|
__typename?: 'DataAccessAndStorage';
|
|
45013
45042
|
appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -46218,6 +46247,7 @@ export type DevAiAutodevNextTriggerWorkstreamScanPayload = Payload & {
|
|
|
46218
46247
|
};
|
|
46219
46248
|
export type DevAiAutodevNextUnassignWorkItemInput = {
|
|
46220
46249
|
cloudId: Scalars['ID']['input'];
|
|
46250
|
+
retainAssignee?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46221
46251
|
workItemId: Scalars['ID']['input'];
|
|
46222
46252
|
};
|
|
46223
46253
|
export type DevAiAutodevNextUnassignWorkItemPayload = Payload & {
|
|
@@ -50658,47 +50688,6 @@ export type ExecuteHypothesisMitigationStepPayload = Payload & {
|
|
|
50658
50688
|
success: Scalars['Boolean']['output'];
|
|
50659
50689
|
title?: Maybe<Scalars['String']['output']>;
|
|
50660
50690
|
};
|
|
50661
|
-
export type Experience = {
|
|
50662
|
-
__typename?: 'Experience';
|
|
50663
|
-
dailyToplineTrend: Array<DailyToplineTrendSeries>;
|
|
50664
|
-
experienceEventType: ExperienceEventType;
|
|
50665
|
-
experienceKey: Scalars['String']['output'];
|
|
50666
|
-
experienceLink: Scalars['String']['output'];
|
|
50667
|
-
id: Scalars['ID']['output'];
|
|
50668
|
-
name: Scalars['String']['output'];
|
|
50669
|
-
product: Product;
|
|
50670
|
-
};
|
|
50671
|
-
export type ExperienceDailyToplineTrendArgs = {
|
|
50672
|
-
cohortType?: InputMaybe<Scalars['String']['input']>;
|
|
50673
|
-
cohortTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50674
|
-
cohortValue?: InputMaybe<Scalars['String']['input']>;
|
|
50675
|
-
dateFrom: Scalars['Date']['input'];
|
|
50676
|
-
dateTo: Scalars['Date']['input'];
|
|
50677
|
-
env: GlanceEnvironment;
|
|
50678
|
-
metric: Scalars['String']['input'];
|
|
50679
|
-
pageLoadType?: InputMaybe<PageLoadType>;
|
|
50680
|
-
percentile: Scalars['Int']['input'];
|
|
50681
|
-
};
|
|
50682
|
-
export declare enum ExperienceEventType {
|
|
50683
|
-
Custom = "CUSTOM",
|
|
50684
|
-
Database = "DATABASE",
|
|
50685
|
-
InlineResult = "INLINE_RESULT",
|
|
50686
|
-
PageLoad = "PAGE_LOAD",
|
|
50687
|
-
PageSegmentLoad = "PAGE_SEGMENT_LOAD",
|
|
50688
|
-
WebVitals = "WEB_VITALS"
|
|
50689
|
-
}
|
|
50690
|
-
export type ExperienceToplineGoal = {
|
|
50691
|
-
__typename?: 'ExperienceToplineGoal';
|
|
50692
|
-
cohort?: Maybe<Scalars['String']['output']>;
|
|
50693
|
-
cohortType: Scalars['String']['output'];
|
|
50694
|
-
env: GlanceEnvironment;
|
|
50695
|
-
id: Scalars['ID']['output'];
|
|
50696
|
-
metric: Scalars['String']['output'];
|
|
50697
|
-
name: Scalars['String']['output'];
|
|
50698
|
-
pageLoadType?: Maybe<PageLoadType>;
|
|
50699
|
-
percentile: Scalars['Int']['output'];
|
|
50700
|
-
value: Scalars['Float']['output'];
|
|
50701
|
-
};
|
|
50702
50691
|
export type ExperimentApiCanAccessInput = {
|
|
50703
50692
|
cloudId: Scalars['ID']['input'];
|
|
50704
50693
|
};
|
|
@@ -50831,7 +50820,7 @@ export type ExternalAssociationEdge = {
|
|
|
50831
50820
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
50832
50821
|
node?: Maybe<ExternalAssociation>;
|
|
50833
50822
|
};
|
|
50834
|
-
export type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
50823
|
+
export type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalClaudeSession | ExternalCodexSession | ExternalComment | ExternalCommit | ExternalConversation | ExternalCursorSession | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
50835
50824
|
export type ExternalAttachment = {
|
|
50836
50825
|
__typename?: 'ExternalAttachment';
|
|
50837
50826
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -51117,6 +51106,66 @@ export type ExternalChapter = {
|
|
|
51117
51106
|
startTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
51118
51107
|
title?: Maybe<Scalars['String']['output']>;
|
|
51119
51108
|
};
|
|
51109
|
+
export type ExternalClaudeSession = Node & {
|
|
51110
|
+
__typename?: 'ExternalClaudeSession';
|
|
51111
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51112
|
+
container?: Maybe<ExternalEntity>;
|
|
51113
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51114
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
51115
|
+
createdBy?: Maybe<ExternalUser>;
|
|
51116
|
+
cwd?: Maybe<Scalars['String']['output']>;
|
|
51117
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
51118
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
51119
|
+
endedAt?: Maybe<Scalars['String']['output']>;
|
|
51120
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
51121
|
+
id: Scalars['ID']['output'];
|
|
51122
|
+
inputTokens?: Maybe<Scalars['Long']['output']>;
|
|
51123
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
51124
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
51125
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
51126
|
+
outputTokens?: Maybe<Scalars['Long']['output']>;
|
|
51127
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
51128
|
+
parent?: Maybe<ExternalEntity>;
|
|
51129
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
51130
|
+
provider?: Maybe<ExternalProvider>;
|
|
51131
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
51132
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
51133
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
51134
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
51135
|
+
transcript?: Maybe<ExternalLargeContent>;
|
|
51136
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
51137
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
51138
|
+
};
|
|
51139
|
+
export type ExternalCodexSession = Node & {
|
|
51140
|
+
__typename?: 'ExternalCodexSession';
|
|
51141
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51142
|
+
container?: Maybe<ExternalEntity>;
|
|
51143
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51144
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
51145
|
+
createdBy?: Maybe<ExternalUser>;
|
|
51146
|
+
cwd?: Maybe<Scalars['String']['output']>;
|
|
51147
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
51148
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
51149
|
+
endedAt?: Maybe<Scalars['String']['output']>;
|
|
51150
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
51151
|
+
id: Scalars['ID']['output'];
|
|
51152
|
+
inputTokens?: Maybe<Scalars['Long']['output']>;
|
|
51153
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
51154
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
51155
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
51156
|
+
outputTokens?: Maybe<Scalars['Long']['output']>;
|
|
51157
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
51158
|
+
parent?: Maybe<ExternalEntity>;
|
|
51159
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
51160
|
+
provider?: Maybe<ExternalProvider>;
|
|
51161
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
51162
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
51163
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
51164
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
51165
|
+
transcript?: Maybe<ExternalLargeContent>;
|
|
51166
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
51167
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
51168
|
+
};
|
|
51120
51169
|
export type ExternalCollaboratorDefaultSpace = {
|
|
51121
51170
|
__typename?: 'ExternalCollaboratorDefaultSpace';
|
|
51122
51171
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -51257,6 +51306,36 @@ export type ExternalCurrency = {
|
|
|
51257
51306
|
currencyCode?: Maybe<Scalars['String']['output']>;
|
|
51258
51307
|
value?: Maybe<Scalars['Float']['output']>;
|
|
51259
51308
|
};
|
|
51309
|
+
export type ExternalCursorSession = Node & {
|
|
51310
|
+
__typename?: 'ExternalCursorSession';
|
|
51311
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51312
|
+
container?: Maybe<ExternalEntity>;
|
|
51313
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51314
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
51315
|
+
createdBy?: Maybe<ExternalUser>;
|
|
51316
|
+
cwd?: Maybe<Scalars['String']['output']>;
|
|
51317
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
51318
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
51319
|
+
endedAt?: Maybe<Scalars['String']['output']>;
|
|
51320
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
51321
|
+
id: Scalars['ID']['output'];
|
|
51322
|
+
inputTokens?: Maybe<Scalars['Long']['output']>;
|
|
51323
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
51324
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
51325
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
51326
|
+
outputTokens?: Maybe<Scalars['Long']['output']>;
|
|
51327
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
51328
|
+
parent?: Maybe<ExternalEntity>;
|
|
51329
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
51330
|
+
provider?: Maybe<ExternalProvider>;
|
|
51331
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
51332
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
51333
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
51334
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
51335
|
+
transcript?: Maybe<ExternalLargeContent>;
|
|
51336
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
51337
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
51338
|
+
};
|
|
51260
51339
|
export type ExternalCustomerContact = Node & {
|
|
51261
51340
|
__typename?: 'ExternalCustomerContact';
|
|
51262
51341
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
@@ -51700,9 +51779,12 @@ export type ExternalEntities = {
|
|
|
51700
51779
|
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
51701
51780
|
campaign?: Maybe<Array<Maybe<ExternalCampaign>>>;
|
|
51702
51781
|
case?: Maybe<Array<Maybe<ExternalCase>>>;
|
|
51782
|
+
claudeSession?: Maybe<Array<Maybe<ExternalClaudeSession>>>;
|
|
51783
|
+
codexSession?: Maybe<Array<Maybe<ExternalCodexSession>>>;
|
|
51703
51784
|
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
51704
51785
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
51705
51786
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
51787
|
+
cursorSession?: Maybe<Array<Maybe<ExternalCursorSession>>>;
|
|
51706
51788
|
customerContact?: Maybe<Array<Maybe<ExternalCustomerContact>>>;
|
|
51707
51789
|
customerOrg?: Maybe<Array<Maybe<ExternalCustomerOrg>>>;
|
|
51708
51790
|
customerOrgCategory?: Maybe<Array<Maybe<ExternalCustomerOrgCategory>>>;
|
|
@@ -51737,7 +51819,7 @@ export type ExternalEntities = {
|
|
|
51737
51819
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
51738
51820
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
51739
51821
|
};
|
|
51740
|
-
export type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
51822
|
+
export type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalClaudeSession | ExternalCodexSession | ExternalComment | ExternalCommit | ExternalConversation | ExternalCursorSession | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
51741
51823
|
export type ExternalEntityExtendedValue = {
|
|
51742
51824
|
__typename?: 'ExternalEntityExtendedValue';
|
|
51743
51825
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -54471,24 +54553,6 @@ export type GetAllPlansFilterInput = {
|
|
|
54471
54553
|
publishedState?: InputMaybe<PlanPublishedStateFilter>;
|
|
54472
54554
|
status?: InputMaybe<PlanStatusFilter>;
|
|
54473
54555
|
};
|
|
54474
|
-
export declare enum GlanceEnvironment {
|
|
54475
|
-
Dev = "DEV",
|
|
54476
|
-
Prod = "PROD",
|
|
54477
|
-
Staging = "STAGING"
|
|
54478
|
-
}
|
|
54479
|
-
export type GlanceUserInsights = {
|
|
54480
|
-
__typename?: 'GlanceUserInsights';
|
|
54481
|
-
additional_data?: Maybe<Scalars['String']['output']>;
|
|
54482
|
-
created_at?: Maybe<Scalars['String']['output']>;
|
|
54483
|
-
data_freshness?: Maybe<Scalars['String']['output']>;
|
|
54484
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
54485
|
-
due_at?: Maybe<Scalars['String']['output']>;
|
|
54486
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
54487
|
-
link?: Maybe<Scalars['String']['output']>;
|
|
54488
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
54489
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
54490
|
-
updated_at?: Maybe<Scalars['String']['output']>;
|
|
54491
|
-
};
|
|
54492
54556
|
export type GlobalAppEgress = {
|
|
54493
54557
|
__typename?: 'GlobalAppEgress';
|
|
54494
54558
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -55698,6 +55762,16 @@ export declare enum GraphInferenceExecutionStatus {
|
|
|
55698
55762
|
Failed = "FAILED",
|
|
55699
55763
|
Succeeded = "SUCCEEDED"
|
|
55700
55764
|
}
|
|
55765
|
+
export type GraphInferenceExternallyManagedApp = {
|
|
55766
|
+
__typename?: 'GraphInferenceExternallyManagedApp';
|
|
55767
|
+
forTargets: Array<Scalars['String']['output']>;
|
|
55768
|
+
id: Scalars['String']['output'];
|
|
55769
|
+
infer: Scalars['String']['output'];
|
|
55770
|
+
matchers: Array<Scalars['String']['output']>;
|
|
55771
|
+
name: Scalars['String']['output'];
|
|
55772
|
+
owner: Scalars['String']['output'];
|
|
55773
|
+
source: Scalars['String']['output'];
|
|
55774
|
+
};
|
|
55701
55775
|
export declare enum GraphInferenceFailureReason {
|
|
55702
55776
|
Internal = "INTERNAL",
|
|
55703
55777
|
InvalidInput = "INVALID_INPUT",
|
|
@@ -55769,6 +55843,7 @@ export type GraphInferenceGraphclawInferOptionV3 = {
|
|
|
55769
55843
|
compatibleTargets: Array<Scalars['String']['output']>;
|
|
55770
55844
|
enabled: Scalars['Boolean']['output'];
|
|
55771
55845
|
graphAvailable: Scalars['Boolean']['output'];
|
|
55846
|
+
graphSources: Array<Scalars['String']['output']>;
|
|
55772
55847
|
id: Scalars['String']['output'];
|
|
55773
55848
|
name: Scalars['String']['output'];
|
|
55774
55849
|
resultKind: Scalars['String']['output'];
|
|
@@ -55973,6 +56048,22 @@ export type GraphInferenceInferenceEvalResponse = {
|
|
|
55973
56048
|
sourceAri: Scalars['String']['output'];
|
|
55974
56049
|
status: Scalars['String']['output'];
|
|
55975
56050
|
};
|
|
56051
|
+
export type GraphInferenceInferenceEvalRunResponse = {
|
|
56052
|
+
__typename?: 'GraphInferenceInferenceEvalRunResponse';
|
|
56053
|
+
attemptCount: Scalars['Int']['output'];
|
|
56054
|
+
expiresAtUnixSeconds: Scalars['String']['output'];
|
|
56055
|
+
failureCode?: Maybe<Scalars['String']['output']>;
|
|
56056
|
+
result?: Maybe<Scalars['JSON']['output']>;
|
|
56057
|
+
runId: Scalars['ID']['output'];
|
|
56058
|
+
status: Scalars['String']['output'];
|
|
56059
|
+
};
|
|
56060
|
+
export type GraphInferenceInferenceEvalStartResponse = {
|
|
56061
|
+
__typename?: 'GraphInferenceInferenceEvalStartResponse';
|
|
56062
|
+
createdAtUnixSeconds: Scalars['String']['output'];
|
|
56063
|
+
expiresAtUnixSeconds: Scalars['String']['output'];
|
|
56064
|
+
runId: Scalars['ID']['output'];
|
|
56065
|
+
status: Scalars['String']['output'];
|
|
56066
|
+
};
|
|
55976
56067
|
export type GraphInferenceInferenceModelChoice = {
|
|
55977
56068
|
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
55978
56069
|
id: Scalars['String']['output'];
|
|
@@ -126550,6 +126641,7 @@ export type JiraAttachmentResource = JiraConsolidatedResource & {
|
|
|
126550
126641
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
126551
126642
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
126552
126643
|
details?: Maybe<JiraAttachmentDetails>;
|
|
126644
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
126553
126645
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
126554
126646
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
126555
126647
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -127869,6 +127961,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
127869
127961
|
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
127870
127962
|
density?: Maybe<JiraBoardViewDensity>;
|
|
127871
127963
|
error?: Maybe<QueryError>;
|
|
127964
|
+
estimationField?: Maybe<JiraField>;
|
|
127872
127965
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
127873
127966
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
127874
127967
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
@@ -131976,6 +132069,7 @@ export type JiraDevOpsProvider = {
|
|
|
131976
132069
|
};
|
|
131977
132070
|
export type JiraDevOpsPullRequestDetails = {
|
|
131978
132071
|
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
132072
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
131979
132073
|
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
131980
132074
|
branchName?: Maybe<Scalars['String']['output']>;
|
|
131981
132075
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -133702,6 +133796,7 @@ export type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
133702
133796
|
selectedLabelsConnection?: Maybe<JiraLabelConnection>;
|
|
133703
133797
|
type: Scalars['String']['output'];
|
|
133704
133798
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
133799
|
+
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
133705
133800
|
};
|
|
133706
133801
|
export type JiraForgeStringsFieldLabelsArgs = {
|
|
133707
133802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133722,6 +133817,16 @@ export type JiraForgeStringsFieldInput = {
|
|
|
133722
133817
|
fieldId: Scalars['ID']['input'];
|
|
133723
133818
|
labels: Array<JiraLabelsInput>;
|
|
133724
133819
|
};
|
|
133820
|
+
export type JiraForgeStringsFieldOperationInput = {
|
|
133821
|
+
operation: JiraMultiValueFieldOperations;
|
|
133822
|
+
values: Array<Scalars['String']['input']>;
|
|
133823
|
+
};
|
|
133824
|
+
export type JiraForgeStringsFieldPayload = Payload & {
|
|
133825
|
+
__typename?: 'JiraForgeStringsFieldPayload';
|
|
133826
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133827
|
+
field?: Maybe<JiraForgeStringsField>;
|
|
133828
|
+
success: Scalars['Boolean']['output'];
|
|
133829
|
+
};
|
|
133725
133830
|
export type JiraForgeUpdatePanelAction = {
|
|
133726
133831
|
actionType: JiraForgeUpdatePanelActionType;
|
|
133727
133832
|
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -138868,6 +138973,14 @@ export type JiraJqlTeamFieldValue = JiraJqlFieldValue & {
|
|
|
138868
138973
|
jqlTerm: Scalars['String']['output'];
|
|
138869
138974
|
team: JiraAtlassianTeam;
|
|
138870
138975
|
};
|
|
138976
|
+
export type JiraJqlTeamViewFieldValue = JiraJqlFieldValue & {
|
|
138977
|
+
__typename?: 'JiraJqlTeamViewFieldValue';
|
|
138978
|
+
displayName: Scalars['String']['output'];
|
|
138979
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
138980
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
138981
|
+
jqlTerm: Scalars['String']['output'];
|
|
138982
|
+
team?: Maybe<JiraTeamView>;
|
|
138983
|
+
};
|
|
138871
138984
|
export type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
|
|
138872
138985
|
__typename?: 'JiraJqlTownsquareProjectFieldValue';
|
|
138873
138986
|
displayName: Scalars['String']['output'];
|
|
@@ -140150,6 +140263,7 @@ export type JiraMutation = {
|
|
|
140150
140263
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
140151
140264
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
140152
140265
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
140266
|
+
updateForgeStringsField?: Maybe<JiraForgeStringsFieldPayload>;
|
|
140153
140267
|
updateForgeUserField?: Maybe<JiraForgeUserFieldPayload>;
|
|
140154
140268
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
140155
140269
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -140818,6 +140932,9 @@ export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
|
140818
140932
|
export type JiraMutationUpdateForgeStringFieldArgs = {
|
|
140819
140933
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
140820
140934
|
};
|
|
140935
|
+
export type JiraMutationUpdateForgeStringsFieldArgs = {
|
|
140936
|
+
input: JiraUpdateForgeStringsFieldInput;
|
|
140937
|
+
};
|
|
140821
140938
|
export type JiraMutationUpdateForgeUserFieldArgs = {
|
|
140822
140939
|
cloudId: Scalars['ID']['input'];
|
|
140823
140940
|
input: JiraUpdateForgeSingleUserPickerFieldInput;
|
|
@@ -149686,7 +149803,9 @@ export type JiraSetDefaultPolicyInput = {
|
|
|
149686
149803
|
export type JiraSetDefaultPolicyPayload = Payload & {
|
|
149687
149804
|
__typename?: 'JiraSetDefaultPolicyPayload';
|
|
149688
149805
|
errors?: Maybe<Array<MutationError>>;
|
|
149806
|
+
previousDefaultPolicy?: Maybe<JiraProjectPolicy>;
|
|
149689
149807
|
success: Scalars['Boolean']['output'];
|
|
149808
|
+
updatedPolicy?: Maybe<JiraProjectPolicy>;
|
|
149690
149809
|
};
|
|
149691
149810
|
export type JiraSetFaviconInput = {
|
|
149692
149811
|
cloudId: Scalars['ID']['input'];
|
|
@@ -152379,6 +152498,10 @@ export type JiraUpdateForgeSingleUserPickerFieldInput = {
|
|
|
152379
152498
|
id: Scalars['ID']['input'];
|
|
152380
152499
|
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
152381
152500
|
};
|
|
152501
|
+
export type JiraUpdateForgeStringsFieldInput = {
|
|
152502
|
+
id: Scalars['ID']['input'];
|
|
152503
|
+
operation: JiraForgeStringsFieldOperationInput;
|
|
152504
|
+
};
|
|
152382
152505
|
export type JiraUpdateFormattingRuleInput = {
|
|
152383
152506
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
152384
152507
|
color?: InputMaybe<JiraFormattingColor>;
|
|
@@ -158451,7 +158574,7 @@ export type KitsuneCreateInsightInput = {
|
|
|
158451
158574
|
ideaAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
158452
158575
|
snippets?: InputMaybe<Array<InputMaybe<KitsuneCreateInsightSnippetInput>>>;
|
|
158453
158576
|
spaceAri: Scalars['ID']['input'];
|
|
158454
|
-
title
|
|
158577
|
+
title: Scalars['String']['input'];
|
|
158455
158578
|
};
|
|
158456
158579
|
export type KitsuneCreateInsightPayload = Payload & {
|
|
158457
158580
|
__typename?: 'KitsuneCreateInsightPayload';
|
|
@@ -158784,6 +158907,7 @@ export type KitsuneFilter = {
|
|
|
158784
158907
|
comparisonOperator: KitsuneComparisonOperator;
|
|
158785
158908
|
field: KitsuneField;
|
|
158786
158909
|
fieldId: Scalars['ID']['output'];
|
|
158910
|
+
fieldV2?: Maybe<KitsuneField>;
|
|
158787
158911
|
logicalOperator: KitsuneLogicalOperator;
|
|
158788
158912
|
values: Array<KitsuneFilterValue>;
|
|
158789
158913
|
};
|
|
@@ -161767,6 +161891,27 @@ export type LoomJoinableWorkspace = {
|
|
|
161767
161891
|
memberCount: Scalars['Int']['output'];
|
|
161768
161892
|
name: Scalars['String']['output'];
|
|
161769
161893
|
};
|
|
161894
|
+
export type LoomLink = {
|
|
161895
|
+
__typename?: 'LoomLink';
|
|
161896
|
+
endMs?: Maybe<Scalars['Int']['output']>;
|
|
161897
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
161898
|
+
isAtlassianLink?: Maybe<Scalars['Boolean']['output']>;
|
|
161899
|
+
isAuto?: Maybe<Scalars['Boolean']['output']>;
|
|
161900
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
161901
|
+
startMs?: Maybe<Scalars['Int']['output']>;
|
|
161902
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
161903
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
161904
|
+
};
|
|
161905
|
+
export type LoomLinkConnection = {
|
|
161906
|
+
__typename?: 'LoomLinkConnection';
|
|
161907
|
+
edges?: Maybe<Array<Maybe<LoomLinkEdge>>>;
|
|
161908
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
161909
|
+
};
|
|
161910
|
+
export type LoomLinkEdge = {
|
|
161911
|
+
__typename?: 'LoomLinkEdge';
|
|
161912
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
161913
|
+
node?: Maybe<LoomLink>;
|
|
161914
|
+
};
|
|
161770
161915
|
export type LoomMeeting = Node & {
|
|
161771
161916
|
__typename?: 'LoomMeeting';
|
|
161772
161917
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -162170,6 +162315,7 @@ export type LoomVideo = Node & {
|
|
|
162170
162315
|
isArchived: Scalars['Boolean']['output'];
|
|
162171
162316
|
isComplete: Scalars['Boolean']['output'];
|
|
162172
162317
|
isMeeting?: Maybe<Scalars['Boolean']['output']>;
|
|
162318
|
+
links?: Maybe<LoomLinkConnection>;
|
|
162173
162319
|
meetingAri?: Maybe<Scalars['String']['output']>;
|
|
162174
162320
|
name: Scalars['String']['output'];
|
|
162175
162321
|
owner?: Maybe<User>;
|
|
@@ -162189,6 +162335,10 @@ export type LoomVideoCommentsArgs = {
|
|
|
162189
162335
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162190
162336
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162191
162337
|
};
|
|
162338
|
+
export type LoomVideoLinksArgs = {
|
|
162339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
162340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162341
|
+
};
|
|
162192
162342
|
export type LoomVideoDefaultThumbnailsSources = {
|
|
162193
162343
|
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
162194
162344
|
default?: Maybe<Scalars['String']['output']>;
|
|
@@ -167364,6 +167514,15 @@ export type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
167364
167514
|
errors?: Maybe<Array<MutationError>>;
|
|
167365
167515
|
success: Scalars['Boolean']['output'];
|
|
167366
167516
|
};
|
|
167517
|
+
export type MercuryArchiveFunctionalRoleInput = {
|
|
167518
|
+
id: Scalars['ID']['input'];
|
|
167519
|
+
};
|
|
167520
|
+
export type MercuryArchiveFunctionalRolePayload = Payload & {
|
|
167521
|
+
__typename?: 'MercuryArchiveFunctionalRolePayload';
|
|
167522
|
+
archivedFunctionalRole?: Maybe<MercuryFunctionalRole>;
|
|
167523
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167524
|
+
success: Scalars['Boolean']['output'];
|
|
167525
|
+
};
|
|
167367
167526
|
export type MercuryArchiveOrganizationInput = {
|
|
167368
167527
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
167369
167528
|
id: Scalars['ID']['input'];
|
|
@@ -172980,6 +173139,7 @@ export type MercuryOrganizationsMutationApi = {
|
|
|
172980
173139
|
addOrganizationMemberships?: Maybe<MercuryAddOrganizationMembershipsPayload>;
|
|
172981
173140
|
addSponsoredFocusAreas?: Maybe<MercuryAddSponsoredFocusAreasPayload>;
|
|
172982
173141
|
addWatcherToOrganization?: Maybe<MercuryAddWatcherToOrganizationPayload>;
|
|
173142
|
+
archiveFunctionalRole?: Maybe<MercuryArchiveFunctionalRolePayload>;
|
|
172983
173143
|
archiveOrganization?: Maybe<MercuryArchiveOrganizationPayload>;
|
|
172984
173144
|
assignUserAccessToOrganization?: Maybe<MercuryAssignUserAccessToOrganizationPayload>;
|
|
172985
173145
|
bulkCreateOrganizationTypes?: Maybe<MercuryBulkCreateOrganizationTypesPayload>;
|
|
@@ -173024,7 +173184,10 @@ export type MercuryOrganizationsMutationApi = {
|
|
|
173024
173184
|
transitionOrganizationStatus?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
173025
173185
|
unStarOrganization?: Maybe<MercuryUnStarOrganizationPayload>;
|
|
173026
173186
|
unStarOrganizationView?: Maybe<MercuryUnStarOrganizationViewPayload>;
|
|
173187
|
+
unarchiveFunctionalRole?: Maybe<MercuryUnarchiveFunctionalRolePayload>;
|
|
173027
173188
|
unarchiveOrganization?: Maybe<MercuryUnarchiveOrganizationPayload>;
|
|
173189
|
+
updateFunctionalRoleDescription?: Maybe<MercuryUpdateFunctionalRolePayload>;
|
|
173190
|
+
updateFunctionalRoleName?: Maybe<MercuryUpdateFunctionalRolePayload>;
|
|
173028
173191
|
updateOrganizationAboutContent?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
173029
173192
|
updateOrganizationCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
173030
173193
|
updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
@@ -173053,6 +173216,9 @@ export type MercuryOrganizationsMutationApiAddSponsoredFocusAreasArgs = {
|
|
|
173053
173216
|
export type MercuryOrganizationsMutationApiAddWatcherToOrganizationArgs = {
|
|
173054
173217
|
input: MercuryAddWatcherToOrganizationInput;
|
|
173055
173218
|
};
|
|
173219
|
+
export type MercuryOrganizationsMutationApiArchiveFunctionalRoleArgs = {
|
|
173220
|
+
input: MercuryArchiveFunctionalRoleInput;
|
|
173221
|
+
};
|
|
173056
173222
|
export type MercuryOrganizationsMutationApiArchiveOrganizationArgs = {
|
|
173057
173223
|
input: MercuryArchiveOrganizationInput;
|
|
173058
173224
|
};
|
|
@@ -173185,9 +173351,18 @@ export type MercuryOrganizationsMutationApiUnStarOrganizationArgs = {
|
|
|
173185
173351
|
export type MercuryOrganizationsMutationApiUnStarOrganizationViewArgs = {
|
|
173186
173352
|
input: MercuryUnStarOrganizationViewInput;
|
|
173187
173353
|
};
|
|
173354
|
+
export type MercuryOrganizationsMutationApiUnarchiveFunctionalRoleArgs = {
|
|
173355
|
+
input: MercuryUnarchiveFunctionalRoleInput;
|
|
173356
|
+
};
|
|
173188
173357
|
export type MercuryOrganizationsMutationApiUnarchiveOrganizationArgs = {
|
|
173189
173358
|
input: MercuryUnarchiveOrganizationInput;
|
|
173190
173359
|
};
|
|
173360
|
+
export type MercuryOrganizationsMutationApiUpdateFunctionalRoleDescriptionArgs = {
|
|
173361
|
+
input: MercuryUpdateFunctionalRoleDescriptionInput;
|
|
173362
|
+
};
|
|
173363
|
+
export type MercuryOrganizationsMutationApiUpdateFunctionalRoleNameArgs = {
|
|
173364
|
+
input: MercuryUpdateFunctionalRoleNameInput;
|
|
173365
|
+
};
|
|
173191
173366
|
export type MercuryOrganizationsMutationApiUpdateOrganizationAboutContentArgs = {
|
|
173192
173367
|
input: MercuryUpdateOrganizationAboutContentInput;
|
|
173193
173368
|
};
|
|
@@ -175863,6 +176038,15 @@ export type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
175863
176038
|
errors?: Maybe<Array<MutationError>>;
|
|
175864
176039
|
success: Scalars['Boolean']['output'];
|
|
175865
176040
|
};
|
|
176041
|
+
export type MercuryUnarchiveFunctionalRoleInput = {
|
|
176042
|
+
id: Scalars['ID']['input'];
|
|
176043
|
+
};
|
|
176044
|
+
export type MercuryUnarchiveFunctionalRolePayload = Payload & {
|
|
176045
|
+
__typename?: 'MercuryUnarchiveFunctionalRolePayload';
|
|
176046
|
+
errors?: Maybe<Array<MutationError>>;
|
|
176047
|
+
success: Scalars['Boolean']['output'];
|
|
176048
|
+
unarchivedFunctionalRole?: Maybe<MercuryFunctionalRole>;
|
|
176049
|
+
};
|
|
175866
176050
|
export type MercuryUnarchiveOrganizationInput = {
|
|
175867
176051
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
175868
176052
|
id: Scalars['ID']['input'];
|
|
@@ -176401,6 +176585,20 @@ export type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
176401
176585
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
176402
176586
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
176403
176587
|
};
|
|
176588
|
+
export type MercuryUpdateFunctionalRoleDescriptionInput = {
|
|
176589
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
176590
|
+
id: Scalars['ID']['input'];
|
|
176591
|
+
};
|
|
176592
|
+
export type MercuryUpdateFunctionalRoleNameInput = {
|
|
176593
|
+
id: Scalars['ID']['input'];
|
|
176594
|
+
name: Scalars['String']['input'];
|
|
176595
|
+
};
|
|
176596
|
+
export type MercuryUpdateFunctionalRolePayload = Payload & {
|
|
176597
|
+
__typename?: 'MercuryUpdateFunctionalRolePayload';
|
|
176598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
176599
|
+
success: Scalars['Boolean']['output'];
|
|
176600
|
+
updatedFunctionalRole?: Maybe<MercuryFunctionalRole>;
|
|
176601
|
+
};
|
|
176404
176602
|
export type MercuryUpdateInsightWidgetInput = {
|
|
176405
176603
|
cloudId: Scalars['ID']['input'];
|
|
176406
176604
|
insightWidgetId: Scalars['ID']['input'];
|
|
@@ -177734,7 +177932,6 @@ export type Mutation = {
|
|
|
177734
177932
|
confluence_pauseSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
177735
177933
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
177736
177934
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
177737
|
-
confluence_recordCompanionTipScrollSignal?: Maybe<ConfluenceRecordCompanionTipScrollSignalPayload>;
|
|
177738
177935
|
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
177739
177936
|
confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
|
|
177740
177937
|
confluence_removeEnforcedReviewer?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
|
|
@@ -177751,6 +177948,7 @@ export type Mutation = {
|
|
|
177751
177948
|
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
177752
177949
|
confluence_resumeSmartFolderSync?: Maybe<ConfluenceSmartFolderSyncControlPayload>;
|
|
177753
177950
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
177951
|
+
confluence_setAccessLinkPermissionMode?: Maybe<ConfluenceSetAccessLinkPermissionModePayload>;
|
|
177754
177952
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
177755
177953
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
177756
177954
|
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
@@ -178148,6 +178346,7 @@ export type Mutation = {
|
|
|
178148
178346
|
graphInference_inferenceAppEditV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
178149
178347
|
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
178150
178348
|
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
178349
|
+
graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
|
|
178151
178350
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
178152
178351
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
178153
178352
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -178840,6 +179039,7 @@ export type Mutation = {
|
|
|
178840
179039
|
projects_updateSlackSubscription?: Maybe<TownsquareProjectsUpdateSlackSubscriptionPayload>;
|
|
178841
179040
|
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
178842
179041
|
psm_finishOnboardTenant?: Maybe<PsmFinishOnboardTenantPayload>;
|
|
179042
|
+
psm_ingestSensorEvent?: Maybe<PsmIngestSensorEventPayload>;
|
|
178843
179043
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
178844
179044
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
178845
179045
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
@@ -180833,10 +181033,6 @@ export type MutationConfluence_PublishDraftWithApprovalReviewTransferArgs = {
|
|
|
180833
181033
|
contentId: Scalars['ID']['input'];
|
|
180834
181034
|
contentStatus: GraphQlContentStatus;
|
|
180835
181035
|
};
|
|
180836
|
-
export type MutationConfluence_RecordCompanionTipScrollSignalArgs = {
|
|
180837
|
-
cloudId: Scalars['ID']['input'];
|
|
180838
|
-
pageId: Scalars['ID']['input'];
|
|
180839
|
-
};
|
|
180840
181036
|
export type MutationConfluence_RefreshSmartSpaceOverviewArgs = {
|
|
180841
181037
|
cloudId: Scalars['ID']['input'];
|
|
180842
181038
|
input: ConfluenceRefreshSmartSpaceOverviewInput;
|
|
@@ -180902,6 +181098,10 @@ export type MutationConfluence_SendToDesktopArgs = {
|
|
|
180902
181098
|
cloudId: Scalars['ID']['input'];
|
|
180903
181099
|
input: ConfluenceSendToDesktopRequestInput;
|
|
180904
181100
|
};
|
|
181101
|
+
export type MutationConfluence_SetAccessLinkPermissionModeArgs = {
|
|
181102
|
+
cloudId: Scalars['ID']['input'];
|
|
181103
|
+
input: ConfluenceSetAccessLinkPermissionModeInput;
|
|
181104
|
+
};
|
|
180905
181105
|
export type MutationConfluence_SetContentApprovalsSpaceSettingsArgs = {
|
|
180906
181106
|
cloudId: Scalars['ID']['input'];
|
|
180907
181107
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -182292,6 +182492,9 @@ export type MutationGraphInference_InferenceAppEditV3Args = {
|
|
|
182292
182492
|
export type MutationGraphInference_InferenceEvalArgs = {
|
|
182293
182493
|
input: GraphInferenceInferenceEvalInput;
|
|
182294
182494
|
};
|
|
182495
|
+
export type MutationGraphInference_InferenceEvalStartArgs = {
|
|
182496
|
+
input: GraphInferenceInferenceEvalInput;
|
|
182497
|
+
};
|
|
182295
182498
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
182296
182499
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
182297
182500
|
};
|
|
@@ -184528,6 +184731,10 @@ export type MutationPsm_FinishOnboardTenantArgs = {
|
|
|
184528
184731
|
cloudId: Scalars['ID']['input'];
|
|
184529
184732
|
input: PsmFinishOnboardTenantInput;
|
|
184530
184733
|
};
|
|
184734
|
+
export type MutationPsm_IngestSensorEventArgs = {
|
|
184735
|
+
cloudId: Scalars['ID']['input'];
|
|
184736
|
+
input: PsmIngestSensorEventInput;
|
|
184737
|
+
};
|
|
184531
184738
|
export type MutationPsm_LinkSensorKbArticlesArgs = {
|
|
184532
184739
|
cloudId: Scalars['ID']['input'];
|
|
184533
184740
|
input: PsmLinkSensorKbArticlesInput;
|
|
@@ -185304,10 +185511,8 @@ export type MutationTags_CreateTagArgs = {
|
|
|
185304
185511
|
kind: Scalars['String']['input'];
|
|
185305
185512
|
};
|
|
185306
185513
|
export type MutationTags_UnassignLabelArgs = {
|
|
185307
|
-
|
|
185514
|
+
input: TagsUnassignLabelInput;
|
|
185308
185515
|
kind?: Scalars['String']['input'];
|
|
185309
|
-
labelId: Scalars['String']['input'];
|
|
185310
|
-
orgId: Scalars['String']['input'];
|
|
185311
185516
|
};
|
|
185312
185517
|
export type MutationTags_UpdateTagArgs = {
|
|
185313
185518
|
input: TagsUpdateInput;
|
|
@@ -186664,11 +186869,6 @@ export type PageInput = {
|
|
|
186664
186869
|
status?: InputMaybe<PageStatusInput>;
|
|
186665
186870
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
186666
186871
|
};
|
|
186667
|
-
export declare enum PageLoadType {
|
|
186668
|
-
Combined = "COMBINED",
|
|
186669
|
-
Initial = "INITIAL",
|
|
186670
|
-
Transition = "TRANSITION"
|
|
186671
|
-
}
|
|
186672
186872
|
export type PageRestriction = {
|
|
186673
186873
|
__typename?: 'PageRestriction';
|
|
186674
186874
|
group?: Maybe<Array<PageGroupRestriction>>;
|
|
@@ -187879,6 +188079,7 @@ export type ProactiveAiRovoInsightsInsight = {
|
|
|
187879
188079
|
__typename?: 'ProactiveAiRovoInsightsInsight';
|
|
187880
188080
|
detailsAdf: Scalars['String']['output'];
|
|
187881
188081
|
followUps?: Maybe<Array<Scalars['String']['output']>>;
|
|
188082
|
+
id: Scalars['String']['output'];
|
|
187882
188083
|
overview: Scalars['String']['output'];
|
|
187883
188084
|
people?: Maybe<Array<ProactiveAiRovoInsightsPerson>>;
|
|
187884
188085
|
sources: Array<Scalars['String']['output']>;
|
|
@@ -188170,6 +188371,36 @@ export declare enum PsmAuditLogOrder {
|
|
|
188170
188371
|
TimestampAsc = "TIMESTAMP_ASC",
|
|
188171
188372
|
TimestampDesc = "TIMESTAMP_DESC"
|
|
188172
188373
|
}
|
|
188374
|
+
export declare enum PsmConsentResponse {
|
|
188375
|
+
Approve = "APPROVE",
|
|
188376
|
+
Deny = "DENY"
|
|
188377
|
+
}
|
|
188378
|
+
export type PsmConversationHistoryConnection = {
|
|
188379
|
+
__typename?: 'PsmConversationHistoryConnection';
|
|
188380
|
+
edges?: Maybe<Array<PsmConversationHistoryEdge>>;
|
|
188381
|
+
errors?: Maybe<Array<QueryError>>;
|
|
188382
|
+
nodes?: Maybe<Array<Maybe<PsmConversationHistoryItem>>>;
|
|
188383
|
+
pageInfo: PageInfo;
|
|
188384
|
+
};
|
|
188385
|
+
export type PsmConversationHistoryEdge = {
|
|
188386
|
+
__typename?: 'PsmConversationHistoryEdge';
|
|
188387
|
+
cursor: Scalars['String']['output'];
|
|
188388
|
+
node?: Maybe<PsmConversationHistoryItem>;
|
|
188389
|
+
};
|
|
188390
|
+
export type PsmConversationHistoryItem = {
|
|
188391
|
+
__typename?: 'PsmConversationHistoryItem';
|
|
188392
|
+
conversationId: Scalars['ID']['output'];
|
|
188393
|
+
lastActivityTime?: Maybe<Scalars['DateTime']['output']>;
|
|
188394
|
+
notificationType?: Maybe<PsmSensorEventType>;
|
|
188395
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
188396
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
188397
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
188398
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
188399
|
+
};
|
|
188400
|
+
export declare enum PsmConversationReadState {
|
|
188401
|
+
Read = "READ",
|
|
188402
|
+
Unread = "UNREAD"
|
|
188403
|
+
}
|
|
188173
188404
|
export type PsmCostSavings = {
|
|
188174
188405
|
__typename?: 'PsmCostSavings';
|
|
188175
188406
|
currency: Scalars['String']['output'];
|
|
@@ -188230,6 +188461,7 @@ export type PsmDeviceConnection = {
|
|
|
188230
188461
|
__typename?: 'PsmDeviceConnection';
|
|
188231
188462
|
edges?: Maybe<Array<PsmDeviceEdge>>;
|
|
188232
188463
|
errors?: Maybe<Array<QueryError>>;
|
|
188464
|
+
healthStatusCounts?: Maybe<Array<PsmDeviceHealthStatusCount>>;
|
|
188233
188465
|
nodes?: Maybe<Array<Maybe<PsmDevice>>>;
|
|
188234
188466
|
offlineDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
188235
188467
|
pageInfo: PageInfo;
|
|
@@ -188266,6 +188498,11 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
188266
188498
|
NotReporting = "NOT_REPORTING",
|
|
188267
188499
|
Poor = "POOR"
|
|
188268
188500
|
}
|
|
188501
|
+
export type PsmDeviceHealthStatusCount = {
|
|
188502
|
+
__typename?: 'PsmDeviceHealthStatusCount';
|
|
188503
|
+
count: Scalars['Int']['output'];
|
|
188504
|
+
healthStatus: PsmDeviceHealthStatus;
|
|
188505
|
+
};
|
|
188269
188506
|
export type PsmDeviceHealthTrend = {
|
|
188270
188507
|
__typename?: 'PsmDeviceHealthTrend';
|
|
188271
188508
|
dates?: Maybe<Array<PsmDeviceHealthTrendPoint>>;
|
|
@@ -188329,6 +188566,16 @@ export type PsmEligibleUsersListResult = {
|
|
|
188329
188566
|
errors?: Maybe<Array<QueryError>>;
|
|
188330
188567
|
users?: Maybe<Array<PsmEligibleUser>>;
|
|
188331
188568
|
};
|
|
188569
|
+
export declare enum PsmEventActor {
|
|
188570
|
+
System = "SYSTEM",
|
|
188571
|
+
User = "USER"
|
|
188572
|
+
}
|
|
188573
|
+
export declare enum PsmEventDirective {
|
|
188574
|
+
ArchiveConversation = "ARCHIVE_CONVERSATION",
|
|
188575
|
+
NoOp = "NO_OP",
|
|
188576
|
+
ShowConversation = "SHOW_CONVERSATION",
|
|
188577
|
+
UpdateConversation = "UPDATE_CONVERSATION"
|
|
188578
|
+
}
|
|
188332
188579
|
export declare enum PsmFaultStatus {
|
|
188333
188580
|
Closed = "CLOSED",
|
|
188334
188581
|
Offline = "OFFLINE",
|
|
@@ -188387,6 +188634,26 @@ export type PsmFleetHealth = {
|
|
|
188387
188634
|
trendPct?: Maybe<Scalars['Float']['output']>;
|
|
188388
188635
|
warningPct: Scalars['Float']['output'];
|
|
188389
188636
|
};
|
|
188637
|
+
export type PsmIngestSensorEventInput = {
|
|
188638
|
+
accountId: Scalars['ID']['input'];
|
|
188639
|
+
actor: PsmEventActor;
|
|
188640
|
+
consentResponse?: InputMaybe<PsmConsentResponse>;
|
|
188641
|
+
deviceId: Scalars['ID']['input'];
|
|
188642
|
+
event: PsmSensorEventType;
|
|
188643
|
+
eventId: Scalars['ID']['input'];
|
|
188644
|
+
notificationId: Scalars['ID']['input'];
|
|
188645
|
+
occurredAt: Scalars['DateTime']['input'];
|
|
188646
|
+
remediationId: Scalars['ID']['input'];
|
|
188647
|
+
sensorId: Scalars['ID']['input'];
|
|
188648
|
+
sequence: Scalars['Int']['input'];
|
|
188649
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
188650
|
+
};
|
|
188651
|
+
export type PsmIngestSensorEventPayload = Payload & {
|
|
188652
|
+
__typename?: 'PsmIngestSensorEventPayload';
|
|
188653
|
+
conversation?: Maybe<PsmSensorEventConversation>;
|
|
188654
|
+
errors?: Maybe<Array<MutationError>>;
|
|
188655
|
+
success: Scalars['Boolean']['output'];
|
|
188656
|
+
};
|
|
188390
188657
|
export type PsmLinkSensorKbArticlesInput = {
|
|
188391
188658
|
kbArticleAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
188392
188659
|
sensorId: Scalars['String']['input'];
|
|
@@ -188404,6 +188671,10 @@ export type PsmLinkedTicket = {
|
|
|
188404
188671
|
issueKey: Scalars['String']['output'];
|
|
188405
188672
|
url: Scalars['URL']['output'];
|
|
188406
188673
|
};
|
|
188674
|
+
export declare enum PsmMessageType {
|
|
188675
|
+
Markdown = "MARKDOWN",
|
|
188676
|
+
Ticket = "TICKET"
|
|
188677
|
+
}
|
|
188407
188678
|
export type PsmNotificationAction = {
|
|
188408
188679
|
__typename?: 'PsmNotificationAction';
|
|
188409
188680
|
actionId: PsmNotificationActionId;
|
|
@@ -188483,6 +188754,21 @@ export type PsmRemediatedBy = {
|
|
|
188483
188754
|
kind?: Maybe<PsmActorType>;
|
|
188484
188755
|
name?: Maybe<Scalars['String']['output']>;
|
|
188485
188756
|
};
|
|
188757
|
+
export type PsmRemediationBreakdownInput = {
|
|
188758
|
+
dateRange?: InputMaybe<PsmDateRangeInput>;
|
|
188759
|
+
spaceId: Scalars['ID']['input'];
|
|
188760
|
+
timeWindow?: PsmTimeWindow;
|
|
188761
|
+
};
|
|
188762
|
+
export type PsmRemediationBreakdownResult = {
|
|
188763
|
+
__typename?: 'PsmRemediationBreakdownResult';
|
|
188764
|
+
buckets: Array<PsmRemediationBucket>;
|
|
188765
|
+
};
|
|
188766
|
+
export type PsmRemediationBucket = {
|
|
188767
|
+
__typename?: 'PsmRemediationBucket';
|
|
188768
|
+
failed: Scalars['Int']['output'];
|
|
188769
|
+
resolutionType: PsmRemediationResolutionType;
|
|
188770
|
+
succeeded: Scalars['Int']['output'];
|
|
188771
|
+
};
|
|
188486
188772
|
export declare enum PsmRemediationCategory {
|
|
188487
188773
|
Automatic = "AUTOMATIC",
|
|
188488
188774
|
Manual = "MANUAL",
|
|
@@ -188504,11 +188790,25 @@ export type PsmRemediationOutcomes = {
|
|
|
188504
188790
|
success: Scalars['Int']['output'];
|
|
188505
188791
|
successRatePct: Scalars['Float']['output'];
|
|
188506
188792
|
};
|
|
188793
|
+
export declare enum PsmRemediationResolutionType {
|
|
188794
|
+
AgentResolved = "AGENT_RESOLVED",
|
|
188795
|
+
EmployeeApproved = "EMPLOYEE_APPROVED",
|
|
188796
|
+
SilentSave = "SILENT_SAVE"
|
|
188797
|
+
}
|
|
188507
188798
|
export declare enum PsmRemediationResult {
|
|
188508
188799
|
Failed = "FAILED",
|
|
188509
188800
|
Pending = "PENDING",
|
|
188510
188801
|
Success = "SUCCESS"
|
|
188511
188802
|
}
|
|
188803
|
+
export declare enum PsmRemediationState {
|
|
188804
|
+
AwaitingAction = "AWAITING_ACTION",
|
|
188805
|
+
Declined = "DECLINED",
|
|
188806
|
+
Escalated = "ESCALATED",
|
|
188807
|
+
Failed = "FAILED",
|
|
188808
|
+
InProgress = "IN_PROGRESS",
|
|
188809
|
+
Resolved = "RESOLVED",
|
|
188810
|
+
Withdrawn = "WITHDRAWN"
|
|
188811
|
+
}
|
|
188512
188812
|
export declare enum PsmRemediationStatus {
|
|
188513
188813
|
Failed = "FAILED",
|
|
188514
188814
|
NotAttempted = "NOT_ATTEMPTED",
|
|
@@ -188601,6 +188901,52 @@ export type PsmSensorEnablementFailure = {
|
|
|
188601
188901
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
188602
188902
|
sensorId: Scalars['String']['output'];
|
|
188603
188903
|
};
|
|
188904
|
+
export type PsmSensorEventAction = {
|
|
188905
|
+
__typename?: 'PsmSensorEventAction';
|
|
188906
|
+
actionId: Scalars['ID']['output'];
|
|
188907
|
+
label: Scalars['String']['output'];
|
|
188908
|
+
};
|
|
188909
|
+
export type PsmSensorEventConversation = {
|
|
188910
|
+
__typename?: 'PsmSensorEventConversation';
|
|
188911
|
+
actions: Array<PsmSensorEventAction>;
|
|
188912
|
+
conversationId: Scalars['ID']['output'];
|
|
188913
|
+
directive: PsmEventDirective;
|
|
188914
|
+
message?: Maybe<PsmSensorEventMessage>;
|
|
188915
|
+
providerInfo?: Maybe<PsmSensorEventProviderInfo>;
|
|
188916
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
188917
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
188918
|
+
};
|
|
188919
|
+
export type PsmSensorEventMessage = {
|
|
188920
|
+
__typename?: 'PsmSensorEventMessage';
|
|
188921
|
+
actor?: Maybe<PsmEventActor>;
|
|
188922
|
+
detail: Scalars['String']['output'];
|
|
188923
|
+
lastActivityTime?: Maybe<Scalars['DateTime']['output']>;
|
|
188924
|
+
messageType: PsmMessageType;
|
|
188925
|
+
summary: Scalars['String']['output'];
|
|
188926
|
+
title: Scalars['String']['output'];
|
|
188927
|
+
};
|
|
188928
|
+
export type PsmSensorEventProviderInfo = {
|
|
188929
|
+
__typename?: 'PsmSensorEventProviderInfo';
|
|
188930
|
+
eventId: Scalars['ID']['output'];
|
|
188931
|
+
notificationId: Scalars['ID']['output'];
|
|
188932
|
+
remediationId: Scalars['ID']['output'];
|
|
188933
|
+
sensorId: Scalars['ID']['output'];
|
|
188934
|
+
sequence: Scalars['Int']['output'];
|
|
188935
|
+
};
|
|
188936
|
+
export declare enum PsmSensorEventType {
|
|
188937
|
+
ConsentRequested = "CONSENT_REQUESTED",
|
|
188938
|
+
ConsentResponded = "CONSENT_RESPONDED",
|
|
188939
|
+
Executed = "EXECUTED",
|
|
188940
|
+
ExecutionAttempted = "EXECUTION_ATTEMPTED",
|
|
188941
|
+
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
188942
|
+
ExecutionStarted = "EXECUTION_STARTED",
|
|
188943
|
+
Lagged = "LAGGED",
|
|
188944
|
+
Shutdown = "SHUTDOWN",
|
|
188945
|
+
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
188946
|
+
WithdrawStale = "WITHDRAW_STALE",
|
|
188947
|
+
WithdrawSuperseded = "WITHDRAW_SUPERSEDED",
|
|
188948
|
+
WithdrawSystemShutdown = "WITHDRAW_SYSTEM_SHUTDOWN"
|
|
188949
|
+
}
|
|
188604
188950
|
export type PsmSensorListInput = {
|
|
188605
188951
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188606
188952
|
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -188821,7 +189167,8 @@ export declare enum PublicLinkPermissionsObjectType {
|
|
|
188821
189167
|
Content = "CONTENT"
|
|
188822
189168
|
}
|
|
188823
189169
|
export declare enum PublicLinkPermissionsType {
|
|
188824
|
-
Edit = "EDIT"
|
|
189170
|
+
Edit = "EDIT",
|
|
189171
|
+
ViewAndComment = "VIEW_AND_COMMENT"
|
|
188825
189172
|
}
|
|
188826
189173
|
export type PublicLinkPerson = {
|
|
188827
189174
|
__typename?: 'PublicLinkPerson';
|
|
@@ -189398,6 +189745,7 @@ export type Query = {
|
|
|
189398
189745
|
avp_getChartByConfigId?: Maybe<AvpChart>;
|
|
189399
189746
|
avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
|
|
189400
189747
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
189748
|
+
avp_getCurrentUserSubscriptionPresence?: Maybe<AvpSubscriptionPresence>;
|
|
189401
189749
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
189402
189750
|
avp_getDashboardChartUsedEnvVars?: Maybe<Array<AvpChartUsedEnvVars>>;
|
|
189403
189751
|
avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
|
|
@@ -189682,6 +190030,7 @@ export type Query = {
|
|
|
189682
190030
|
confluence_topics?: Maybe<ConfluenceTopicConnection>;
|
|
189683
190031
|
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
189684
190032
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
190033
|
+
confluence_userSetup?: Maybe<ConfluenceUserSetupResult>;
|
|
189685
190034
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
189686
190035
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
189687
190036
|
confluence_validateConvertPageToMarkdownMode?: Maybe<ConfluenceValidateConvertPageToMarkdownModeResult>;
|
|
@@ -189941,9 +190290,6 @@ export type Query = {
|
|
|
189941
190290
|
getSmartContentFeature?: Maybe<SmartPageFeatures>;
|
|
189942
190291
|
getSmartFeatures?: Maybe<SmartFeaturesResponse>;
|
|
189943
190292
|
getSummary?: Maybe<SmartFeaturesContentSummary>;
|
|
189944
|
-
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
189945
|
-
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
189946
|
-
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
189947
190293
|
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
189948
190294
|
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
189949
190295
|
globalApp_userAccess?: Maybe<GlobalAppUserAccessResponse>;
|
|
@@ -189976,6 +190322,7 @@ export type Query = {
|
|
|
189976
190322
|
goals_slackChannels?: Maybe<TownsquareSlackChannelConnection>;
|
|
189977
190323
|
goals_slackTeams?: Maybe<Array<Maybe<TownsquareSlackTeam>>>;
|
|
189978
190324
|
goals_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
190325
|
+
graphInference_externallyManagedAppList?: Maybe<Array<GraphInferenceExternallyManagedApp>>;
|
|
189979
190326
|
graphInference_getJiraEntityContext?: Maybe<GraphInferenceGetJiraEntityContextResponse>;
|
|
189980
190327
|
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
189981
190328
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
@@ -189992,6 +190339,7 @@ export type Query = {
|
|
|
189992
190339
|
graphInference_inferenceAppListV2?: Maybe<Array<GraphInferenceInferenceAppV2>>;
|
|
189993
190340
|
graphInference_inferenceAppListV3?: Maybe<Array<GraphInferenceInferenceAppV3>>;
|
|
189994
190341
|
graphInference_inferenceAppStoredResults?: Maybe<Array<GraphInferenceInferenceAppStoredResult>>;
|
|
190342
|
+
graphInference_inferenceEvalRun?: Maybe<GraphInferenceInferenceEvalRunResponse>;
|
|
189995
190343
|
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
189996
190344
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
189997
190345
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
@@ -192616,7 +192964,9 @@ export type Query = {
|
|
|
192616
192964
|
psm_faultStatuses?: Maybe<PsmFaultStatusResult>;
|
|
192617
192965
|
psm_fetchNotificationTemplates?: Maybe<PsmNotificationTemplatesResult>;
|
|
192618
192966
|
psm_filters?: Maybe<PsmScreenFilterResult>;
|
|
192967
|
+
psm_getConversationHistory?: Maybe<PsmConversationHistoryConnection>;
|
|
192619
192968
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
192969
|
+
psm_remediationBreakdown?: Maybe<PsmRemediationBreakdownResult>;
|
|
192620
192970
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
192621
192971
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
192622
192972
|
psm_sensors?: Maybe<PsmSensorConnection>;
|
|
@@ -194926,6 +195276,10 @@ export type QueryAvp_GetChartTemplatesArgs = {
|
|
|
194926
195276
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
194927
195277
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
194928
195278
|
};
|
|
195279
|
+
export type QueryAvp_GetCurrentUserSubscriptionPresenceArgs = {
|
|
195280
|
+
cloudId: Scalars['ID']['input'];
|
|
195281
|
+
workspaceAri: Scalars['ID']['input'];
|
|
195282
|
+
};
|
|
194929
195283
|
export type QueryAvp_GetDashboardArgs = {
|
|
194930
195284
|
dashboardAri: Scalars['ID']['input'];
|
|
194931
195285
|
};
|
|
@@ -196189,6 +196543,9 @@ export type QueryConfluence_UserContentAccessArgs = {
|
|
|
196189
196543
|
cloudId: Scalars['ID']['input'];
|
|
196190
196544
|
contentId: Scalars['ID']['input'];
|
|
196191
196545
|
};
|
|
196546
|
+
export type QueryConfluence_UserSetupArgs = {
|
|
196547
|
+
cloudId: Scalars['ID']['input'];
|
|
196548
|
+
};
|
|
196192
196549
|
export type QueryConfluence_UsersHavePermissionArgs = {
|
|
196193
196550
|
cloudId: Scalars['ID']['input'];
|
|
196194
196551
|
permission: Scalars['String']['input'];
|
|
@@ -197565,9 +197922,15 @@ export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
|
197565
197922
|
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
197566
197923
|
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
197567
197924
|
};
|
|
197925
|
+
export type QueryGraphInference_GraphclawInferV3Args = {
|
|
197926
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
197927
|
+
};
|
|
197568
197928
|
export type QueryGraphInference_InferenceAppStoredResultsArgs = {
|
|
197569
197929
|
input: GraphInferenceInferenceAppStoredResultsInput;
|
|
197570
197930
|
};
|
|
197931
|
+
export type QueryGraphInference_InferenceEvalRunArgs = {
|
|
197932
|
+
runId: Scalars['ID']['input'];
|
|
197933
|
+
};
|
|
197571
197934
|
export type QueryGraphInference_InferenceModelsArgs = {
|
|
197572
197935
|
input: GraphInferenceInferenceModelsInput;
|
|
197573
197936
|
};
|
|
@@ -197579,6 +197942,11 @@ export type QueryGraphInference_InferredProjectMeArgs = {
|
|
|
197579
197942
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197580
197943
|
forceRefresh?: Scalars['Boolean']['input'];
|
|
197581
197944
|
};
|
|
197945
|
+
export type QueryGraphInference_InferredProjectSummariesArgs = {
|
|
197946
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197947
|
+
firstEntities?: InputMaybe<Scalars['Int']['input']>;
|
|
197948
|
+
updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
197949
|
+
};
|
|
197582
197950
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
197583
197951
|
contextAri: Scalars['ID']['input'];
|
|
197584
197952
|
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
@@ -215451,10 +215819,21 @@ export type QueryPsm_FiltersArgs = {
|
|
|
215451
215819
|
screen: PsmFilterScreen;
|
|
215452
215820
|
spaceId: Scalars['ID']['input'];
|
|
215453
215821
|
};
|
|
215822
|
+
export type QueryPsm_GetConversationHistoryArgs = {
|
|
215823
|
+
accountId: Scalars['ID']['input'];
|
|
215824
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
215825
|
+
cloudId: Scalars['ID']['input'];
|
|
215826
|
+
deviceId: Scalars['ID']['input'];
|
|
215827
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
215828
|
+
};
|
|
215454
215829
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
215455
215830
|
cloudId: Scalars['ID']['input'];
|
|
215456
215831
|
input: PsmOnboardTenantStatusInput;
|
|
215457
215832
|
};
|
|
215833
|
+
export type QueryPsm_RemediationBreakdownArgs = {
|
|
215834
|
+
cloudId: Scalars['ID']['input'];
|
|
215835
|
+
input: PsmRemediationBreakdownInput;
|
|
215836
|
+
};
|
|
215458
215837
|
export type QueryPsm_SensorCategoriesArgs = {
|
|
215459
215838
|
cloudId: Scalars['ID']['input'];
|
|
215460
215839
|
input: PsmSensorCategoriesInput;
|
|
@@ -228698,6 +229077,12 @@ export type TagsResponse = {
|
|
|
228698
229077
|
status: Scalars['String']['output'];
|
|
228699
229078
|
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
228700
229079
|
};
|
|
229080
|
+
export type TagsUnassignLabelInput = {
|
|
229081
|
+
entityAri: Scalars['String']['input'];
|
|
229082
|
+
labelId: Scalars['String']['input'];
|
|
229083
|
+
orgId: Scalars['String']['input'];
|
|
229084
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
229085
|
+
};
|
|
228701
229086
|
export type TagsUpdateInput = {
|
|
228702
229087
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
228703
229088
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -232476,6 +232861,7 @@ export type TownsquareMetric = Node & {
|
|
|
232476
232861
|
externalEntityId?: Maybe<Scalars['String']['output']>;
|
|
232477
232862
|
id: Scalars['ID']['output'];
|
|
232478
232863
|
latestValue?: Maybe<TownsquareMetricValue>;
|
|
232864
|
+
metricTargets?: Maybe<TownsquareMetricHasMetricTargetConnection>;
|
|
232479
232865
|
name?: Maybe<Scalars['String']['output']>;
|
|
232480
232866
|
source?: Maybe<Scalars['String']['output']>;
|
|
232481
232867
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -232504,6 +232890,16 @@ export type TownsquareMetricEdge = {
|
|
|
232504
232890
|
cursor: Scalars['String']['output'];
|
|
232505
232891
|
node?: Maybe<TownsquareMetric>;
|
|
232506
232892
|
};
|
|
232893
|
+
export type TownsquareMetricHasMetricTargetConnection = {
|
|
232894
|
+
__typename?: 'TownsquareMetricHasMetricTargetConnection';
|
|
232895
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricHasMetricTargetEdge>>>;
|
|
232896
|
+
pageInfo: PageInfo;
|
|
232897
|
+
};
|
|
232898
|
+
export type TownsquareMetricHasMetricTargetEdge = {
|
|
232899
|
+
__typename?: 'TownsquareMetricHasMetricTargetEdge';
|
|
232900
|
+
cursor: Scalars['String']['output'];
|
|
232901
|
+
node?: Maybe<TownsquareMetricTarget>;
|
|
232902
|
+
};
|
|
232507
232903
|
export declare enum TownsquareMetricSortEnum {
|
|
232508
232904
|
IdAsc = "ID_ASC",
|
|
232509
232905
|
IdDesc = "ID_DESC",
|
|
@@ -232512,6 +232908,7 @@ export declare enum TownsquareMetricSortEnum {
|
|
|
232512
232908
|
}
|
|
232513
232909
|
export type TownsquareMetricTarget = Node & {
|
|
232514
232910
|
__typename?: 'TownsquareMetricTarget';
|
|
232911
|
+
goal?: Maybe<TownsquareGoal>;
|
|
232515
232912
|
id: Scalars['ID']['output'];
|
|
232516
232913
|
metric?: Maybe<TownsquareMetric>;
|
|
232517
232914
|
metricTargetPeriods?: Maybe<TownsquareMetricTargetPeriodConnection>;
|
|
@@ -232613,6 +233010,7 @@ export type TownsquareMetricValue = Node & {
|
|
|
232613
233010
|
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
232614
233011
|
creator?: Maybe<User>;
|
|
232615
233012
|
id: Scalars['ID']['output'];
|
|
233013
|
+
metric?: Maybe<TownsquareMetric>;
|
|
232616
233014
|
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
232617
233015
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
232618
233016
|
value?: Maybe<Scalars['Float']['output']>;
|
|
@@ -244972,12 +245370,6 @@ export type UserPreferencesInput = {
|
|
|
244972
245370
|
theme?: InputMaybe<Scalars['String']['input']>;
|
|
244973
245371
|
topNavigationOptedOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
244974
245372
|
};
|
|
244975
|
-
export type UserSettings = {
|
|
244976
|
-
__typename?: 'UserSettings';
|
|
244977
|
-
id: Scalars['ID']['output'];
|
|
244978
|
-
starredExperiences: Array<Experience>;
|
|
244979
|
-
username: Scalars['String']['output'];
|
|
244980
|
-
};
|
|
244981
245373
|
export type UserWithPermissionsInput = {
|
|
244982
245374
|
accountId: Scalars['ID']['input'];
|
|
244983
245375
|
operations: Array<InputMaybe<OperationCheckResultInput>>;
|