@forge/cli-shared 8.19.0-next.7 → 8.19.0-next.8
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 +7 -0
- package/out/graphql/graphql-types.d.ts +582 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +85 -42
- package/package.json +2 -2
|
@@ -1174,6 +1174,7 @@ export declare type AvpCreateStandaloneChartInput = {
|
|
|
1174
1174
|
cloudId: Scalars['ID']['input'];
|
|
1175
1175
|
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1176
1176
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
1177
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1177
1178
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1178
1179
|
};
|
|
1179
1180
|
export declare type AvpCreateStandaloneChartPayload = Payload & {
|
|
@@ -1580,6 +1581,7 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
|
|
|
1580
1581
|
export declare type AvpPermissionsGetCapabilitiesInput = {
|
|
1581
1582
|
capabilityRequests?: InputMaybe<Array<AvpPermissionsCapabilityEntry>>;
|
|
1582
1583
|
cloudId: Scalars['ID']['input'];
|
|
1584
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1583
1585
|
};
|
|
1584
1586
|
export declare type AvpPermissionsGetCapabilitiesResponse = {
|
|
1585
1587
|
__typename?: 'AVPPermissionsGetCapabilitiesResponse';
|
|
@@ -1604,6 +1606,7 @@ export declare type AvpPermissionsHasCapabilityInput = {
|
|
|
1604
1606
|
capabilityId: Scalars['String']['input'];
|
|
1605
1607
|
cloudId: Scalars['ID']['input'];
|
|
1606
1608
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
1609
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1607
1610
|
};
|
|
1608
1611
|
export declare type AvpPermissionsHasCapabilityResponse = {
|
|
1609
1612
|
__typename?: 'AVPPermissionsHasCapabilityResponse';
|
|
@@ -2713,6 +2716,65 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
|
|
|
2713
2716
|
errors?: Maybe<Array<MutationError>>;
|
|
2714
2717
|
success: Scalars['Boolean']['output'];
|
|
2715
2718
|
};
|
|
2719
|
+
export declare type AdminAuditLogBackgroundQueryConnection = {
|
|
2720
|
+
__typename?: 'AdminAuditLogBackgroundQueryConnection';
|
|
2721
|
+
edges?: Maybe<Array<AdminAuditLogBackgroundQueryListEdge>>;
|
|
2722
|
+
pageInfo: PageInfo;
|
|
2723
|
+
};
|
|
2724
|
+
export declare type AdminAuditLogBackgroundQueryFilterInput = {
|
|
2725
|
+
actions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2726
|
+
actors?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2727
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
2728
|
+
ips?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2729
|
+
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2730
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
2731
|
+
};
|
|
2732
|
+
export declare type AdminAuditLogBackgroundQueryFiltersType = {
|
|
2733
|
+
__typename?: 'AdminAuditLogBackgroundQueryFiltersType';
|
|
2734
|
+
actions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2735
|
+
actors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2736
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
2737
|
+
ips?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2738
|
+
locations?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2739
|
+
to?: Maybe<Scalars['String']['output']>;
|
|
2740
|
+
};
|
|
2741
|
+
export declare type AdminAuditLogBackgroundQueryListEdge = {
|
|
2742
|
+
__typename?: 'AdminAuditLogBackgroundQueryListEdge';
|
|
2743
|
+
cursor: Scalars['String']['output'];
|
|
2744
|
+
node?: Maybe<Array<AdminAuditLogBackgroundQueryResponse>>;
|
|
2745
|
+
};
|
|
2746
|
+
export declare type AdminAuditLogBackgroundQueryPlanConnection = {
|
|
2747
|
+
__typename?: 'AdminAuditLogBackgroundQueryPlanConnection';
|
|
2748
|
+
edges?: Maybe<Array<AdminAuditLogBackgroundQueryPlanEdge>>;
|
|
2749
|
+
pageInfo: PageInfo;
|
|
2750
|
+
};
|
|
2751
|
+
export declare type AdminAuditLogBackgroundQueryPlanEdge = {
|
|
2752
|
+
__typename?: 'AdminAuditLogBackgroundQueryPlanEdge';
|
|
2753
|
+
cursor: Scalars['String']['output'];
|
|
2754
|
+
node: AdminAuditLogBackgroundQueryType;
|
|
2755
|
+
};
|
|
2756
|
+
export declare type AdminAuditLogBackgroundQueryResponse = {
|
|
2757
|
+
__typename?: 'AdminAuditLogBackgroundQueryResponse';
|
|
2758
|
+
createdAt: Scalars['String']['output'];
|
|
2759
|
+
createdBy: Scalars['String']['output'];
|
|
2760
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2761
|
+
filters: AdminAuditLogBackgroundQueryFiltersType;
|
|
2762
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2763
|
+
queryId: Scalars['String']['output'];
|
|
2764
|
+
status: AdminAuditLogBackgroundQueryStatusType;
|
|
2765
|
+
updatedAt: Scalars['String']['output'];
|
|
2766
|
+
};
|
|
2767
|
+
export declare enum AdminAuditLogBackgroundQueryStatusType {
|
|
2768
|
+
Cancelled = "CANCELLED",
|
|
2769
|
+
Completed = "COMPLETED",
|
|
2770
|
+
Failed = "FAILED",
|
|
2771
|
+
InProgress = "IN_PROGRESS",
|
|
2772
|
+
Queued = "QUEUED"
|
|
2773
|
+
}
|
|
2774
|
+
export declare enum AdminAuditLogBackgroundQueryType {
|
|
2775
|
+
Background = "BACKGROUND",
|
|
2776
|
+
Sync = "SYNC"
|
|
2777
|
+
}
|
|
2716
2778
|
export declare type AdminAuditLogContainer = {
|
|
2717
2779
|
id: Scalars['ID']['input'];
|
|
2718
2780
|
type: AdminAuditLogContainerType;
|
|
@@ -3081,6 +3143,7 @@ export declare type AdminEntitlement = {
|
|
|
3081
3143
|
};
|
|
3082
3144
|
export declare type AdminEntitlementDetails = AdminCcpEntitlement | AdminHamsEntitlement;
|
|
3083
3145
|
export declare type AdminErrorExtension = {
|
|
3146
|
+
downstreamService?: Maybe<Scalars['String']['output']>;
|
|
3084
3147
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
3085
3148
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
3086
3149
|
};
|
|
@@ -3378,6 +3441,11 @@ export declare type AdminMfaConfig = {
|
|
|
3378
3441
|
__typename?: 'AdminMfaConfig';
|
|
3379
3442
|
isEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
3380
3443
|
};
|
|
3444
|
+
export declare type AdminMutationError = {
|
|
3445
|
+
__typename?: 'AdminMutationError';
|
|
3446
|
+
extensions?: Maybe<AdminApplicationErrorExtension>;
|
|
3447
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3448
|
+
};
|
|
3381
3449
|
export declare enum AdminOperation {
|
|
3382
3450
|
And = "AND",
|
|
3383
3451
|
Nor = "NOR"
|
|
@@ -3846,7 +3914,7 @@ export declare type AdminUnitCreateInput = {
|
|
|
3846
3914
|
};
|
|
3847
3915
|
export declare type AdminUnitCreatePayload = {
|
|
3848
3916
|
__typename?: 'AdminUnitCreatePayload';
|
|
3849
|
-
errors?: Maybe<Array<
|
|
3917
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3850
3918
|
requestId?: Maybe<Scalars['ID']['output']>;
|
|
3851
3919
|
success: Scalars['Boolean']['output'];
|
|
3852
3920
|
};
|
|
@@ -4441,6 +4509,11 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
4441
4509
|
edges: Array<AgentStudioAgentEdge>;
|
|
4442
4510
|
pageInfo: PageInfo;
|
|
4443
4511
|
};
|
|
4512
|
+
export declare type AgentStudioApp = {
|
|
4513
|
+
displayName: Scalars['String']['output'];
|
|
4514
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
4515
|
+
integrationKey: Scalars['String']['output'];
|
|
4516
|
+
};
|
|
4444
4517
|
export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfiguration & Node & {
|
|
4445
4518
|
__typename?: 'AgentStudioAssistant';
|
|
4446
4519
|
accessIdentityMode?: Maybe<AgentStudioAccessIdentityMode>;
|
|
@@ -4545,6 +4618,10 @@ export declare type AgentStudioAssistantScenario = AgentStudioBaseConfiguration
|
|
|
4545
4618
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
4546
4619
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4547
4620
|
};
|
|
4621
|
+
export declare type AgentStudioAuthReadinessResult = {
|
|
4622
|
+
__typename?: 'AgentStudioAuthReadinessResult';
|
|
4623
|
+
firstPartyApps: Array<AgentStudioFirstPartyApp>;
|
|
4624
|
+
};
|
|
4548
4625
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
4549
4626
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
4550
4627
|
};
|
|
@@ -4912,6 +4989,18 @@ export declare type AgentStudioEvaluationSummary = {
|
|
|
4912
4989
|
totalItems: Scalars['Int']['output'];
|
|
4913
4990
|
totalRunTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
4914
4991
|
};
|
|
4992
|
+
export declare enum AgentStudioFirstPartyAccessStatus {
|
|
4993
|
+
HasAccess = "HAS_ACCESS",
|
|
4994
|
+
NoAccess = "NO_ACCESS",
|
|
4995
|
+
Unknown = "UNKNOWN"
|
|
4996
|
+
}
|
|
4997
|
+
export declare type AgentStudioFirstPartyApp = AgentStudioApp & {
|
|
4998
|
+
__typename?: 'AgentStudioFirstPartyApp';
|
|
4999
|
+
accessStatus: AgentStudioFirstPartyAccessStatus;
|
|
5000
|
+
displayName: Scalars['String']['output'];
|
|
5001
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
5002
|
+
integrationKey: Scalars['String']['output'];
|
|
5003
|
+
};
|
|
4915
5004
|
export declare type AgentStudioHasVersionCapability = {
|
|
4916
5005
|
__typename?: 'AgentStudioHasVersionCapability';
|
|
4917
5006
|
hasVersionCapability?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5690,6 +5779,12 @@ export declare type AgentStudioUpdateUseAgentPermissionModePayload = Payload & {
|
|
|
5690
5779
|
etag?: Maybe<Scalars['String']['output']>;
|
|
5691
5780
|
success: Scalars['Boolean']['output'];
|
|
5692
5781
|
};
|
|
5782
|
+
export declare type AgentStudioUpgradeSchemaPayload = Payload & {
|
|
5783
|
+
__typename?: 'AgentStudioUpgradeSchemaPayload';
|
|
5784
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
5785
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5786
|
+
success: Scalars['Boolean']['output'];
|
|
5787
|
+
};
|
|
5693
5788
|
export declare type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
5694
5789
|
datasetName: Scalars['String']['input'];
|
|
5695
5790
|
file: Scalars['Upload']['input'];
|
|
@@ -5898,6 +5993,7 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
5898
5993
|
activeAgents: Scalars['Int']['output'];
|
|
5899
5994
|
onBreak: Scalars['Int']['output'];
|
|
5900
5995
|
onDuty: Scalars['Int']['output'];
|
|
5996
|
+
totalAgents: Scalars['Int']['output'];
|
|
5901
5997
|
};
|
|
5902
5998
|
export declare type AgentWorkspaceCapacityConnection = {
|
|
5903
5999
|
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
@@ -5946,6 +6042,7 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
5946
6042
|
overloadedCount: Scalars['Int']['output'];
|
|
5947
6043
|
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
5948
6044
|
totalCapacity: Scalars['Int']['output'];
|
|
6045
|
+
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
5949
6046
|
};
|
|
5950
6047
|
export declare type AgentWorkspaceCatalog = {
|
|
5951
6048
|
__typename?: 'AgentWorkspaceCatalog';
|
|
@@ -6496,6 +6593,11 @@ export declare type AgentWorkspaceRecurrenceRuleInput = {
|
|
|
6496
6593
|
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
6497
6594
|
weekOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
|
6498
6595
|
};
|
|
6596
|
+
export declare type AgentWorkspaceResolvedDateRange = {
|
|
6597
|
+
__typename?: 'AgentWorkspaceResolvedDateRange';
|
|
6598
|
+
endTime: Scalars['DateTime']['output'];
|
|
6599
|
+
startTime: Scalars['DateTime']['output'];
|
|
6600
|
+
};
|
|
6499
6601
|
export declare type AgentWorkspaceRestoreSkillInput = {
|
|
6500
6602
|
cloudId: Scalars['ID']['input'];
|
|
6501
6603
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -6644,6 +6746,8 @@ export declare type AgentWorkspaceShiftsQueryInput = {
|
|
|
6644
6746
|
};
|
|
6645
6747
|
export declare type AgentWorkspaceShiftsSummary = {
|
|
6646
6748
|
__typename?: 'AgentWorkspaceShiftsSummary';
|
|
6749
|
+
activeAgents: Scalars['Int']['output'];
|
|
6750
|
+
activeShifts: Scalars['Int']['output'];
|
|
6647
6751
|
avgAgentsPerHour: Scalars['Float']['output'];
|
|
6648
6752
|
completedShiftsPercentage: Scalars['Float']['output'];
|
|
6649
6753
|
scheduledAgents: Scalars['Int']['output'];
|
|
@@ -6794,6 +6898,7 @@ export declare type AgentWorkspaceTeamSchedulesConnection = {
|
|
|
6794
6898
|
hasAnyProjectSchedules: Scalars['Boolean']['output'];
|
|
6795
6899
|
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
6796
6900
|
pageInfo: AgentWorkspaceTeamsPageInfo;
|
|
6901
|
+
resolvedDateRange?: Maybe<AgentWorkspaceResolvedDateRange>;
|
|
6797
6902
|
summary: AgentWorkspaceTeamSchedulesSummary;
|
|
6798
6903
|
};
|
|
6799
6904
|
export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
@@ -6803,11 +6908,11 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
|
6803
6908
|
};
|
|
6804
6909
|
export declare type AgentWorkspaceTeamSchedulesQueryInput = {
|
|
6805
6910
|
cloudId: Scalars['ID']['input'];
|
|
6806
|
-
endTime
|
|
6911
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6807
6912
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6808
6913
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6809
6914
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6810
|
-
startTime
|
|
6915
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6811
6916
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6812
6917
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6813
6918
|
};
|
|
@@ -7551,6 +7656,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
7551
7656
|
extensionByKey?: Maybe<AppVersionExtension>;
|
|
7552
7657
|
extensions?: Maybe<AppVersionExtensions>;
|
|
7553
7658
|
id: Scalars['ID']['output'];
|
|
7659
|
+
installationTarget?: Maybe<InstallationTarget>;
|
|
7554
7660
|
installations?: Maybe<AppInstallationByIndexConnection>;
|
|
7555
7661
|
isLatest: Scalars['Boolean']['output'];
|
|
7556
7662
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
@@ -26271,7 +26377,7 @@ export declare type ConfluenceCommentConnection = {
|
|
|
26271
26377
|
nodes?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
26272
26378
|
pageInfo: ConfluencePageInfo;
|
|
26273
26379
|
};
|
|
26274
|
-
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
26380
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard;
|
|
26275
26381
|
export declare type ConfluenceCommentCountSummary = {
|
|
26276
26382
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
26277
26383
|
total?: Maybe<Scalars['Int']['output']>;
|
|
@@ -46038,6 +46144,18 @@ export declare enum GraphIntegrationSkillColor {
|
|
|
46038
46144
|
Teal = "TEAL",
|
|
46039
46145
|
Yellow = "YELLOW"
|
|
46040
46146
|
}
|
|
46147
|
+
export declare enum GraphIntegrationSkillDimension {
|
|
46148
|
+
Products = "PRODUCTS"
|
|
46149
|
+
}
|
|
46150
|
+
export declare type GraphIntegrationSkillDimensionItem = {
|
|
46151
|
+
displayName: Scalars['String']['output'];
|
|
46152
|
+
id: Scalars['String']['output'];
|
|
46153
|
+
};
|
|
46154
|
+
export declare type GraphIntegrationSkillDimensionMetadata = {
|
|
46155
|
+
__typename?: 'GraphIntegrationSkillDimensionMetadata';
|
|
46156
|
+
items: Array<GraphIntegrationSkillDimensionItem>;
|
|
46157
|
+
totalCount: Scalars['Int']['output'];
|
|
46158
|
+
};
|
|
46041
46159
|
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
46042
46160
|
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
46043
46161
|
color?: Maybe<GraphIntegrationSkillColor>;
|
|
@@ -46064,6 +46182,12 @@ export declare type GraphIntegrationSkillMetadata = {
|
|
|
46064
46182
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46065
46183
|
version: Scalars['String']['output'];
|
|
46066
46184
|
};
|
|
46185
|
+
export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDimensionItem & {
|
|
46186
|
+
__typename?: 'GraphIntegrationSkillProductItem';
|
|
46187
|
+
displayName: Scalars['String']['output'];
|
|
46188
|
+
iconUrl: Scalars['String']['output'];
|
|
46189
|
+
id: Scalars['String']['output'];
|
|
46190
|
+
};
|
|
46067
46191
|
export declare type GraphIntegrationSkillTool = {
|
|
46068
46192
|
__typename?: 'GraphIntegrationSkillTool';
|
|
46069
46193
|
id: Scalars['String']['output'];
|
|
@@ -49693,6 +49817,8 @@ export declare type GraphStore = {
|
|
|
49693
49817
|
userCreatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection>;
|
|
49694
49818
|
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
49695
49819
|
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
49820
|
+
userCreatedExternalVideo?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoConnection>;
|
|
49821
|
+
userCreatedExternalVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection>;
|
|
49696
49822
|
userCreatedFocusArea?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaConnection>;
|
|
49697
49823
|
userCreatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection>;
|
|
49698
49824
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
@@ -49860,6 +49986,7 @@ export declare type GraphStore = {
|
|
|
49860
49986
|
userUpdatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogConnection>;
|
|
49861
49987
|
userUpdatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogInverseConnection>;
|
|
49862
49988
|
userUpdatedThirdPartyPullRequestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseConnection>;
|
|
49989
|
+
userUpdatedThirdPartyVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection>;
|
|
49863
49990
|
userUpdatedVideo?: Maybe<GraphStoreSimplifiedUserUpdatedVideoConnection>;
|
|
49864
49991
|
userUpdatedVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedVideoInverseConnection>;
|
|
49865
49992
|
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
@@ -49882,6 +50009,7 @@ export declare type GraphStore = {
|
|
|
49882
50009
|
userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
49883
50010
|
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
49884
50011
|
userViewedProjectUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
50012
|
+
userViewedThirdPartyVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection>;
|
|
49885
50013
|
userViewedVideo?: Maybe<GraphStoreSimplifiedUserViewedVideoConnection>;
|
|
49886
50014
|
userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
|
|
49887
50015
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
@@ -56551,6 +56679,22 @@ export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
|
|
|
56551
56679
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56552
56680
|
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
56553
56681
|
};
|
|
56682
|
+
export declare type GraphStoreUserCreatedExternalVideoArgs = {
|
|
56683
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56684
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56686
|
+
id: Scalars['ID']['input'];
|
|
56687
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56688
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalVideoSortInput>;
|
|
56689
|
+
};
|
|
56690
|
+
export declare type GraphStoreUserCreatedExternalVideoInverseArgs = {
|
|
56691
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56692
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56693
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56694
|
+
id: Scalars['ID']['input'];
|
|
56695
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56696
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalVideoSortInput>;
|
|
56697
|
+
};
|
|
56554
56698
|
export declare type GraphStoreUserCreatedFocusAreaArgs = {
|
|
56555
56699
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56556
56700
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57887,6 +58031,14 @@ export declare type GraphStoreUserUpdatedThirdPartyPullRequestInverseArgs = {
|
|
|
57887
58031
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57888
58032
|
sort?: InputMaybe<GraphStoreUserUpdatedThirdPartyPullRequestSortInput>;
|
|
57889
58033
|
};
|
|
58034
|
+
export declare type GraphStoreUserUpdatedThirdPartyVideoInverseArgs = {
|
|
58035
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58036
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58037
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58038
|
+
id: Scalars['ID']['input'];
|
|
58039
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58040
|
+
sort?: InputMaybe<GraphStoreUserUpdatedThirdPartyVideoSortInput>;
|
|
58041
|
+
};
|
|
57890
58042
|
export declare type GraphStoreUserUpdatedVideoArgs = {
|
|
57891
58043
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57892
58044
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58059,6 +58211,14 @@ export declare type GraphStoreUserViewedProjectUpdateInverseBatchArgs = {
|
|
|
58059
58211
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58060
58212
|
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
58061
58213
|
};
|
|
58214
|
+
export declare type GraphStoreUserViewedThirdPartyVideoInverseArgs = {
|
|
58215
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58216
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58217
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58218
|
+
id: Scalars['ID']['input'];
|
|
58219
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58220
|
+
sort?: InputMaybe<GraphStoreUserViewedThirdPartyVideoSortInput>;
|
|
58221
|
+
};
|
|
58062
58222
|
export declare type GraphStoreUserViewedVideoArgs = {
|
|
58063
58223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58064
58224
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76011,6 +76171,34 @@ export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
|
|
|
76011
76171
|
};
|
|
76012
76172
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76013
76173
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestUnion = ExternalTest;
|
|
76174
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoConnection = HasPageInfo & {
|
|
76175
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoConnection';
|
|
76176
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalVideoEdge>>>;
|
|
76177
|
+
pageInfo: PageInfo;
|
|
76178
|
+
};
|
|
76179
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoEdge = {
|
|
76180
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoEdge';
|
|
76181
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76182
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76183
|
+
id: Scalars['ID']['output'];
|
|
76184
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76185
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoUnion>;
|
|
76186
|
+
};
|
|
76187
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection = HasPageInfo & {
|
|
76188
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection';
|
|
76189
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseEdge>>>;
|
|
76190
|
+
pageInfo: PageInfo;
|
|
76191
|
+
};
|
|
76192
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoInverseEdge = {
|
|
76193
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoInverseEdge';
|
|
76194
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76195
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76196
|
+
id: Scalars['ID']['output'];
|
|
76197
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76198
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseUnion>;
|
|
76199
|
+
};
|
|
76200
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76201
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoUnion = ExternalVideo;
|
|
76014
76202
|
export declare type GraphStoreSimplifiedUserCreatedFocusAreaConnection = HasPageInfo & {
|
|
76015
76203
|
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaConnection';
|
|
76016
76204
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaEdge>>>;
|
|
@@ -78321,6 +78509,20 @@ export declare type GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseE
|
|
|
78321
78509
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseUnion>;
|
|
78322
78510
|
};
|
|
78323
78511
|
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseUnion = ThirdPartyUser;
|
|
78512
|
+
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
78513
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection';
|
|
78514
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseEdge>>>;
|
|
78515
|
+
pageInfo: PageInfo;
|
|
78516
|
+
};
|
|
78517
|
+
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseEdge = {
|
|
78518
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseEdge';
|
|
78519
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78520
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78521
|
+
id: Scalars['ID']['output'];
|
|
78522
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78523
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseUnion>;
|
|
78524
|
+
};
|
|
78525
|
+
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
78324
78526
|
export declare type GraphStoreSimplifiedUserUpdatedVideoConnection = HasPageInfo & {
|
|
78325
78527
|
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoConnection';
|
|
78326
78528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedVideoEdge>>>;
|
|
@@ -78573,6 +78775,20 @@ export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
|
78573
78775
|
};
|
|
78574
78776
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
78575
78777
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateUnion = TownsquareProjectUpdate;
|
|
78778
|
+
export declare type GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
78779
|
+
__typename?: 'GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection';
|
|
78780
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseEdge>>>;
|
|
78781
|
+
pageInfo: PageInfo;
|
|
78782
|
+
};
|
|
78783
|
+
export declare type GraphStoreSimplifiedUserViewedThirdPartyVideoInverseEdge = {
|
|
78784
|
+
__typename?: 'GraphStoreSimplifiedUserViewedThirdPartyVideoInverseEdge';
|
|
78785
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78786
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78787
|
+
id: Scalars['ID']['output'];
|
|
78788
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78789
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseUnion>;
|
|
78790
|
+
};
|
|
78791
|
+
export declare type GraphStoreSimplifiedUserViewedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
78576
78792
|
export declare type GraphStoreSimplifiedUserViewedVideoConnection = HasPageInfo & {
|
|
78577
78793
|
__typename?: 'GraphStoreSimplifiedUserViewedVideoConnection';
|
|
78578
78794
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoEdge>>>;
|
|
@@ -79691,6 +79907,9 @@ export declare type GraphStoreUserCreatedExternalSpaceSortInput = {
|
|
|
79691
79907
|
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
79692
79908
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79693
79909
|
};
|
|
79910
|
+
export declare type GraphStoreUserCreatedExternalVideoSortInput = {
|
|
79911
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79912
|
+
};
|
|
79694
79913
|
export declare type GraphStoreUserCreatedFocusAreaSortInput = {
|
|
79695
79914
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79696
79915
|
};
|
|
@@ -79989,6 +80208,9 @@ export declare type GraphStoreUserUpdatedIssueWorklogSortInput = {
|
|
|
79989
80208
|
export declare type GraphStoreUserUpdatedThirdPartyPullRequestSortInput = {
|
|
79990
80209
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79991
80210
|
};
|
|
80211
|
+
export declare type GraphStoreUserUpdatedThirdPartyVideoSortInput = {
|
|
80212
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80213
|
+
};
|
|
79992
80214
|
export declare type GraphStoreUserUpdatedVideoSortInput = {
|
|
79993
80215
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79994
80216
|
};
|
|
@@ -80019,6 +80241,9 @@ export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
|
80019
80241
|
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
80020
80242
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80021
80243
|
};
|
|
80244
|
+
export declare type GraphStoreUserViewedThirdPartyVideoSortInput = {
|
|
80245
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80246
|
+
};
|
|
80022
80247
|
export declare type GraphStoreUserViewedVideoSortInput = {
|
|
80023
80248
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80024
80249
|
};
|
|
@@ -80147,6 +80372,8 @@ export declare type GraphStoreV2 = {
|
|
|
80147
80372
|
atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
|
|
80148
80373
|
atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
|
|
80149
80374
|
atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
|
|
80375
|
+
atlassianUserCreatedExternalVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection>;
|
|
80376
|
+
atlassianUserCreatedExternalVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection>;
|
|
80150
80377
|
atlassianUserCreatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection>;
|
|
80151
80378
|
atlassianUserCreatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection>;
|
|
80152
80379
|
atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
|
|
@@ -80618,6 +80845,8 @@ export declare type GraphStoreV2 = {
|
|
|
80618
80845
|
externalUserUpdatedExternalTestStatus?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusConnection>;
|
|
80619
80846
|
externalUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseConnection>;
|
|
80620
80847
|
externalUserUpdatedThirdPartyPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseConnection>;
|
|
80848
|
+
externalUserUpdatedThirdPartyVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection>;
|
|
80849
|
+
externalUserViewedThirdPartyVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection>;
|
|
80621
80850
|
externalVideoHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection>;
|
|
80622
80851
|
externalVideoHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceInverseConnection>;
|
|
80623
80852
|
externalWorkerFillsExternalPosition?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection>;
|
|
@@ -81589,6 +81818,20 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
|
|
|
81589
81818
|
id: Scalars['ID']['input'];
|
|
81590
81819
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
|
|
81591
81820
|
};
|
|
81821
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoArgs = {
|
|
81822
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81823
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81824
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81825
|
+
id: Scalars['ID']['input'];
|
|
81826
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalVideoSortInput>;
|
|
81827
|
+
};
|
|
81828
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoInverseArgs = {
|
|
81829
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81830
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81831
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81832
|
+
id: Scalars['ID']['input'];
|
|
81833
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalVideoSortInput>;
|
|
81834
|
+
};
|
|
81592
81835
|
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaArgs = {
|
|
81593
81836
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81594
81837
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -84899,6 +85142,20 @@ export declare type GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestInverseA
|
|
|
84899
85142
|
id: Scalars['ID']['input'];
|
|
84900
85143
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestSortInput>;
|
|
84901
85144
|
};
|
|
85145
|
+
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyVideoInverseArgs = {
|
|
85146
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85147
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85148
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85149
|
+
id: Scalars['ID']['input'];
|
|
85150
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedThirdPartyVideoSortInput>;
|
|
85151
|
+
};
|
|
85152
|
+
export declare type GraphStoreV2ExternalUserViewedThirdPartyVideoInverseArgs = {
|
|
85153
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85154
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85155
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85156
|
+
id: Scalars['ID']['input'];
|
|
85157
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserViewedThirdPartyVideoSortInput>;
|
|
85158
|
+
};
|
|
84902
85159
|
export declare type GraphStoreV2ExternalVideoHasExternalSpaceArgs = {
|
|
84903
85160
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84904
85161
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86619,6 +86876,9 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput
|
|
|
86619
86876
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
|
|
86620
86877
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86621
86878
|
};
|
|
86879
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoSortInput = {
|
|
86880
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86881
|
+
};
|
|
86622
86882
|
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput = {
|
|
86623
86883
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86624
86884
|
};
|
|
@@ -88444,6 +88704,12 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput =
|
|
|
88444
88704
|
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestSortInput = {
|
|
88445
88705
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88446
88706
|
};
|
|
88707
|
+
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyVideoSortInput = {
|
|
88708
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88709
|
+
};
|
|
88710
|
+
export declare type GraphStoreV2ExternalUserViewedThirdPartyVideoSortInput = {
|
|
88711
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88712
|
+
};
|
|
88447
88713
|
export declare type GraphStoreV2ExternalVideoHasExternalSpaceSortInput = {
|
|
88448
88714
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88449
88715
|
};
|
|
@@ -91529,6 +91795,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
|
|
|
91529
91795
|
};
|
|
91530
91796
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91531
91797
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
91798
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection = HasPageInfo & {
|
|
91799
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection';
|
|
91800
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoEdge>>>;
|
|
91801
|
+
pageInfo: PageInfo;
|
|
91802
|
+
};
|
|
91803
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoEdge = {
|
|
91804
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoEdge';
|
|
91805
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91806
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91807
|
+
id: Scalars['ID']['output'];
|
|
91808
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91809
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoUnion>;
|
|
91810
|
+
};
|
|
91811
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection = HasPageInfo & {
|
|
91812
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection';
|
|
91813
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseEdge>>>;
|
|
91814
|
+
pageInfo: PageInfo;
|
|
91815
|
+
};
|
|
91816
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseEdge = {
|
|
91817
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseEdge';
|
|
91818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91820
|
+
id: Scalars['ID']['output'];
|
|
91821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91822
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseUnion>;
|
|
91823
|
+
};
|
|
91824
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91825
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoUnion = ExternalVideo;
|
|
91532
91826
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection = HasPageInfo & {
|
|
91533
91827
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection';
|
|
91534
91828
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge>>>;
|
|
@@ -98173,6 +98467,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullReque
|
|
|
98173
98467
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseUnion>;
|
|
98174
98468
|
};
|
|
98175
98469
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseUnion = ThirdPartyUser;
|
|
98470
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
98471
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection';
|
|
98472
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseEdge>>>;
|
|
98473
|
+
pageInfo: PageInfo;
|
|
98474
|
+
};
|
|
98475
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseEdge = {
|
|
98476
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseEdge';
|
|
98477
|
+
createdAt: Scalars['DateTime']['output'];
|
|
98478
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98479
|
+
id: Scalars['ID']['output'];
|
|
98480
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
98481
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseUnion>;
|
|
98482
|
+
};
|
|
98483
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
98484
|
+
export declare type GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
98485
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection';
|
|
98486
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseEdge>>>;
|
|
98487
|
+
pageInfo: PageInfo;
|
|
98488
|
+
};
|
|
98489
|
+
export declare type GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseEdge = {
|
|
98490
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseEdge';
|
|
98491
|
+
createdAt: Scalars['DateTime']['output'];
|
|
98492
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98493
|
+
id: Scalars['ID']['output'];
|
|
98494
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
98495
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseUnion>;
|
|
98496
|
+
};
|
|
98497
|
+
export declare type GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
98176
98498
|
export declare type GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection = HasPageInfo & {
|
|
98177
98499
|
__typename?: 'GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection';
|
|
98178
98500
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceEdge>>>;
|
|
@@ -101524,6 +101846,7 @@ export declare type GravityField = {
|
|
|
101524
101846
|
key: Scalars['String']['output'];
|
|
101525
101847
|
name: Scalars['String']['output'];
|
|
101526
101848
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
101849
|
+
stableId?: Maybe<Scalars['String']['output']>;
|
|
101527
101850
|
type: Scalars['String']['output'];
|
|
101528
101851
|
};
|
|
101529
101852
|
export declare type GravityFieldDefinition = {
|
|
@@ -105576,6 +105899,10 @@ export declare type InstallationSummaryAppEnvironmentVersion = {
|
|
|
105576
105899
|
id?: Maybe<Scalars['ID']['output']>;
|
|
105577
105900
|
version?: Maybe<Scalars['String']['output']>;
|
|
105578
105901
|
};
|
|
105902
|
+
export declare enum InstallationTarget {
|
|
105903
|
+
Site = "SITE",
|
|
105904
|
+
Unit = "UNIT"
|
|
105905
|
+
}
|
|
105579
105906
|
export declare type InstallationsListFilterByAppEnvironments = {
|
|
105580
105907
|
types: Array<AppEnvironmentType>;
|
|
105581
105908
|
};
|
|
@@ -107971,6 +108298,25 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
|
107971
108298
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107972
108299
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107973
108300
|
};
|
|
108301
|
+
export declare type JiraBacklogViewAssigneeWorkBreakdown = {
|
|
108302
|
+
__typename?: 'JiraBacklogViewAssigneeWorkBreakdown';
|
|
108303
|
+
remainingEstimate?: Maybe<Scalars['String']['output']>;
|
|
108304
|
+
subtaskCount?: Maybe<Scalars['Long']['output']>;
|
|
108305
|
+
totalEstimate?: Maybe<Scalars['String']['output']>;
|
|
108306
|
+
totalIssues?: Maybe<Scalars['Long']['output']>;
|
|
108307
|
+
user?: Maybe<User>;
|
|
108308
|
+
};
|
|
108309
|
+
export declare type JiraBacklogViewAssigneeWorkBreakdownConnection = {
|
|
108310
|
+
__typename?: 'JiraBacklogViewAssigneeWorkBreakdownConnection';
|
|
108311
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewAssigneeWorkBreakdownEdge>>>;
|
|
108312
|
+
pageInfo?: Maybe<PageInfo>;
|
|
108313
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
108314
|
+
};
|
|
108315
|
+
export declare type JiraBacklogViewAssigneeWorkBreakdownEdge = {
|
|
108316
|
+
__typename?: 'JiraBacklogViewAssigneeWorkBreakdownEdge';
|
|
108317
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108318
|
+
node?: Maybe<JiraBacklogViewAssigneeWorkBreakdown>;
|
|
108319
|
+
};
|
|
107974
108320
|
export declare type JiraBacklogViewBoardConfig = {
|
|
107975
108321
|
__typename?: 'JiraBacklogViewBoardConfig';
|
|
107976
108322
|
estimationField?: Maybe<JiraField>;
|
|
@@ -108074,6 +108420,7 @@ export declare type JiraBacklogViewQueryInput = {
|
|
|
108074
108420
|
};
|
|
108075
108421
|
export declare type JiraBacklogViewSettings = {
|
|
108076
108422
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
108423
|
+
includeSubtaskInEstimate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108077
108424
|
quickFilterIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
108078
108425
|
skipCollapsedIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108079
108426
|
};
|
|
@@ -108083,6 +108430,7 @@ export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & No
|
|
|
108083
108430
|
id: Scalars['ID']['output'];
|
|
108084
108431
|
issues?: Maybe<JiraIssueConnection>;
|
|
108085
108432
|
sprint?: Maybe<JiraSprint>;
|
|
108433
|
+
workByAssignee?: Maybe<JiraBacklogViewAssigneeWorkBreakdownConnection>;
|
|
108086
108434
|
};
|
|
108087
108435
|
export declare type JiraBacklogViewSprintCardListEstimationDetailsArgs = {
|
|
108088
108436
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
@@ -108094,6 +108442,13 @@ export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
|
108094
108442
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108095
108443
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
108096
108444
|
};
|
|
108445
|
+
export declare type JiraBacklogViewSprintCardListWorkByAssigneeArgs = {
|
|
108446
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108447
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
108448
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108449
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108450
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
108451
|
+
};
|
|
108097
108452
|
export declare enum JiraBacklogViewStrategy {
|
|
108098
108453
|
IssueList = "ISSUE_LIST",
|
|
108099
108454
|
KanbanBacklog = "KANBAN_BACKLOG",
|
|
@@ -109996,7 +110351,7 @@ export declare enum JiraCommentSortField {
|
|
|
109996
110351
|
LatestActivity = "LATEST_ACTIVITY"
|
|
109997
110352
|
}
|
|
109998
110353
|
export declare type JiraCommentSortInput = {
|
|
109999
|
-
field
|
|
110354
|
+
field?: InputMaybe<JiraCommentSortField>;
|
|
110000
110355
|
order?: InputMaybe<SortDirection>;
|
|
110001
110356
|
};
|
|
110002
110357
|
export declare type JiraCommentSummary = {
|
|
@@ -114354,6 +114709,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114354
114709
|
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
114355
114710
|
assignee?: Maybe<User>;
|
|
114356
114711
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
114712
|
+
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
114357
114713
|
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
114358
114714
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
114359
114715
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
@@ -114449,6 +114805,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114449
114805
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
114450
114806
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
114451
114807
|
key: Scalars['String']['output'];
|
|
114808
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
114452
114809
|
labelsField?: Maybe<JiraLabelsField>;
|
|
114453
114810
|
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
114454
114811
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -114761,6 +115118,12 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
114761
115118
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
114762
115119
|
key: Scalars['String']['input'];
|
|
114763
115120
|
};
|
|
115121
|
+
export declare type JiraIssueLabelsArgs = {
|
|
115122
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115123
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
115124
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115125
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
115126
|
+
};
|
|
114764
115127
|
export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
114765
115128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114766
115129
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133147,6 +133510,10 @@ export declare type JsmConversationEdge = {
|
|
|
133147
133510
|
cursor: Scalars['String']['output'];
|
|
133148
133511
|
node?: Maybe<JsmConversation>;
|
|
133149
133512
|
};
|
|
133513
|
+
export declare enum JsmConversationLiveChatAvailabilityCriteria {
|
|
133514
|
+
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
133515
|
+
Status = "STATUS"
|
|
133516
|
+
}
|
|
133150
133517
|
export declare type JsmConversationMediaConfiguration = {
|
|
133151
133518
|
__typename?: 'JsmConversationMediaConfiguration';
|
|
133152
133519
|
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -133186,6 +133553,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
133186
133553
|
export declare type JsmConversationSettings = {
|
|
133187
133554
|
__typename?: 'JsmConversationSettings';
|
|
133188
133555
|
assignedTeam?: Maybe<TeamV2>;
|
|
133556
|
+
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
133189
133557
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
133190
133558
|
issueLabel?: Maybe<Scalars['String']['output']>;
|
|
133191
133559
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
@@ -133194,6 +133562,7 @@ export declare type JsmConversationSettings = {
|
|
|
133194
133562
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
133195
133563
|
};
|
|
133196
133564
|
export declare type JsmConversationSettingsInput = {
|
|
133565
|
+
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
133197
133566
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
133198
133567
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
133199
133568
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133206,6 +133575,7 @@ export declare type JsmConversationSettingsPayload = Payload & {
|
|
|
133206
133575
|
errors?: Maybe<Array<MutationError>>;
|
|
133207
133576
|
success: Scalars['Boolean']['output'];
|
|
133208
133577
|
};
|
|
133578
|
+
export declare type JsmConversationSettingsResult = JsmConversationSettings | QueryError;
|
|
133209
133579
|
export declare type JsmConversationSla = {
|
|
133210
133580
|
__typename?: 'JsmConversationSla';
|
|
133211
133581
|
slaDuration?: Maybe<Scalars['String']['output']>;
|
|
@@ -133734,6 +134104,7 @@ export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
|
133734
134104
|
__typename?: 'KitsuneFeedbackConnection';
|
|
133735
134105
|
edges: Array<KitsuneFeedbackEdge>;
|
|
133736
134106
|
pageInfo: PageInfo;
|
|
134107
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133737
134108
|
};
|
|
133738
134109
|
export declare type KitsuneFeedbackEdge = KitsuneEdge & {
|
|
133739
134110
|
__typename?: 'KitsuneFeedbackEdge';
|
|
@@ -134037,6 +134408,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
134037
134408
|
Intercom = "INTERCOM",
|
|
134038
134409
|
Jira = "JIRA",
|
|
134039
134410
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
134411
|
+
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
134040
134412
|
Jotform = "JOTFORM",
|
|
134041
134413
|
Kustomer = "KUSTOMER",
|
|
134042
134414
|
Linear = "LINEAR",
|
|
@@ -134057,6 +134429,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
134057
134429
|
NotionTables = "NOTION_TABLES",
|
|
134058
134430
|
Otter = "OTTER",
|
|
134059
134431
|
PdfFiles = "PDF_FILES",
|
|
134432
|
+
Pendo = "PENDO",
|
|
134060
134433
|
Pipedrive = "PIPEDRIVE",
|
|
134061
134434
|
Planhat = "PLANHAT",
|
|
134062
134435
|
Powerpoint = "POWERPOINT",
|
|
@@ -139226,8 +139599,8 @@ export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
|
139226
139599
|
};
|
|
139227
139600
|
export declare type MarketplaceStoreGridBreakpointConfig = {
|
|
139228
139601
|
__typename?: 'MarketplaceStoreGridBreakpointConfig';
|
|
139229
|
-
cells: Array<Array<MarketplaceStoreGridCell>>;
|
|
139230
139602
|
columns?: Maybe<Scalars['Int']['output']>;
|
|
139603
|
+
rows: Array<MarketplaceStoreGridRow>;
|
|
139231
139604
|
};
|
|
139232
139605
|
export declare type MarketplaceStoreGridCell = {
|
|
139233
139606
|
__typename?: 'MarketplaceStoreGridCell';
|
|
@@ -139242,6 +139615,10 @@ export declare type MarketplaceStoreGridCellSlot = {
|
|
|
139242
139615
|
variant?: Maybe<MarketplaceStoreLayoutSlotVariant>;
|
|
139243
139616
|
widgetKind: MarketplaceStoreLayoutSlotWidgetKind;
|
|
139244
139617
|
};
|
|
139618
|
+
export declare type MarketplaceStoreGridRow = {
|
|
139619
|
+
__typename?: 'MarketplaceStoreGridRow';
|
|
139620
|
+
cells: Array<MarketplaceStoreGridCell>;
|
|
139621
|
+
};
|
|
139245
139622
|
export declare type MarketplaceStoreGridWidget = {
|
|
139246
139623
|
__typename?: 'MarketplaceStoreGridWidget';
|
|
139247
139624
|
lg: MarketplaceStoreGridBreakpointConfig;
|
|
@@ -139408,6 +139785,7 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
139408
139785
|
title: Scalars['String']['output'];
|
|
139409
139786
|
};
|
|
139410
139787
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
139788
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
139411
139789
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
139412
139790
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
139413
139791
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
@@ -143227,6 +143605,7 @@ export declare type MercuryMutationApi = {
|
|
|
143227
143605
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
143228
143606
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
143229
143607
|
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
143608
|
+
updateFocusAreaCustomFieldDefinitionVisibility?: Maybe<MercuryUpdateCustomFieldDefinitionVisibilityPayload>;
|
|
143230
143609
|
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
143231
143610
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
143232
143611
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -143365,6 +143744,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameAr
|
|
|
143365
143744
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
143366
143745
|
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
143367
143746
|
};
|
|
143747
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionVisibilityArgs = {
|
|
143748
|
+
input: MercuryUpdateCustomFieldDefinitionVisibilityInput;
|
|
143749
|
+
};
|
|
143368
143750
|
export declare type MercuryMutationApiUpdateFocusAreaHierarchyNameArgs = {
|
|
143369
143751
|
input: MercuryUpdateFocusAreaHierarchyNameInput;
|
|
143370
143752
|
};
|
|
@@ -145422,6 +145804,16 @@ export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload &
|
|
|
145422
145804
|
errors?: Maybe<Array<MutationError>>;
|
|
145423
145805
|
success: Scalars['Boolean']['output'];
|
|
145424
145806
|
};
|
|
145807
|
+
export declare type MercuryUpdateCustomFieldDefinitionVisibilityInput = {
|
|
145808
|
+
id: Scalars['ID']['input'];
|
|
145809
|
+
visibility: MercuryCustomFieldVisibility;
|
|
145810
|
+
};
|
|
145811
|
+
export declare type MercuryUpdateCustomFieldDefinitionVisibilityPayload = Payload & {
|
|
145812
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionVisibilityPayload';
|
|
145813
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
145814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145815
|
+
success: Scalars['Boolean']['output'];
|
|
145816
|
+
};
|
|
145425
145817
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
145426
145818
|
aboutContent: Scalars['String']['input'];
|
|
145427
145819
|
cloudId: Scalars['ID']['input'];
|
|
@@ -146001,6 +146393,7 @@ export declare type Mutation = {
|
|
|
146001
146393
|
agentStudio_updateKnowledgeGapSuggestionArticleStatus?: Maybe<AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload>;
|
|
146002
146394
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
146003
146395
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
146396
|
+
agentStudio_upgradeSchema?: Maybe<AgentStudioUpgradeSchemaPayload>;
|
|
146004
146397
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
146005
146398
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
146006
146399
|
agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
|
|
@@ -146835,6 +147228,7 @@ export declare type Mutation = {
|
|
|
146835
147228
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
146836
147229
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
146837
147230
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
147231
|
+
projects_addView?: Maybe<TownsquareProjectsAddViewPayload>;
|
|
146838
147232
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
146839
147233
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
146840
147234
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
@@ -147410,6 +147804,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
147410
147804
|
containerId: Scalars['String']['input'];
|
|
147411
147805
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
147412
147806
|
};
|
|
147807
|
+
export declare type MutationAgentStudio_UpgradeSchemaArgs = {
|
|
147808
|
+
id: Scalars['ID']['input'];
|
|
147809
|
+
};
|
|
147413
147810
|
export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
147414
147811
|
cloudId: Scalars['String']['input'];
|
|
147415
147812
|
input?: InputMaybe<AgentStudioUploadBatchEvaluationDatasetInput>;
|
|
@@ -150288,6 +150685,9 @@ export declare type MutationProjects_AddMembersArgs = {
|
|
|
150288
150685
|
export declare type MutationProjects_AddTeamContributorsArgs = {
|
|
150289
150686
|
input?: InputMaybe<TownsquareProjectsAddTeamContributorsInput>;
|
|
150290
150687
|
};
|
|
150688
|
+
export declare type MutationProjects_AddViewArgs = {
|
|
150689
|
+
input: TownsquareProjectsAddViewInput;
|
|
150690
|
+
};
|
|
150291
150691
|
export declare type MutationProjects_CloneArgs = {
|
|
150292
150692
|
input: TownsquareProjectsCloneInput;
|
|
150293
150693
|
};
|
|
@@ -153846,27 +154246,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
153846
154246
|
Explicit = "explicit",
|
|
153847
154247
|
Implicit = "implicit"
|
|
153848
154248
|
}
|
|
153849
|
-
export declare type PostOfficeMessageData =
|
|
153850
|
-
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
153851
|
-
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
153852
|
-
description: Scalars['String']['output'];
|
|
153853
|
-
title: Scalars['String']['output'];
|
|
153854
|
-
};
|
|
153855
|
-
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
153856
|
-
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
153857
|
-
description: Scalars['String']['output'];
|
|
153858
|
-
title: Scalars['String']['output'];
|
|
153859
|
-
};
|
|
154249
|
+
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
153860
154250
|
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
153861
154251
|
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
153862
154252
|
description: Scalars['String']['output'];
|
|
153863
154253
|
title: Scalars['String']['output'];
|
|
153864
154254
|
};
|
|
153865
|
-
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
153866
|
-
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
153867
|
-
description: Scalars['String']['output'];
|
|
153868
|
-
title: Scalars['String']['output'];
|
|
153869
|
-
};
|
|
153870
154255
|
export declare type PostOfficeMessagePayload = {
|
|
153871
154256
|
__typename?: 'PostOfficeMessagePayload';
|
|
153872
154257
|
messages: Array<PostOfficeMessage>;
|
|
@@ -154294,6 +154679,8 @@ export declare type Query = {
|
|
|
154294
154679
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
154295
154680
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
154296
154681
|
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
154682
|
+
admin_auditLogBackgroundQueries?: Maybe<AdminAuditLogBackgroundQueryConnection>;
|
|
154683
|
+
admin_auditLogBackgroundQueryById?: Maybe<AdminAuditLogBackgroundQueryResponse>;
|
|
154297
154684
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
154298
154685
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
154299
154686
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -154303,6 +154690,7 @@ export declare type Query = {
|
|
|
154303
154690
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
154304
154691
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
154305
154692
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
154693
|
+
admin_generateAuditLogQueryPlan?: Maybe<AdminAuditLogBackgroundQueryPlanConnection>;
|
|
154306
154694
|
admin_group?: Maybe<AdminGroup>;
|
|
154307
154695
|
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
154308
154696
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
@@ -154335,8 +154723,10 @@ export declare type Query = {
|
|
|
154335
154723
|
agentAI_panel?: Maybe<AgentAiPanelResult>;
|
|
154336
154724
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
154337
154725
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
154726
|
+
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
154338
154727
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
154339
154728
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
154729
|
+
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
154340
154730
|
agentStudio_batchEvalConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
154341
154731
|
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
154342
154732
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
@@ -154993,6 +155383,7 @@ export declare type Query = {
|
|
|
154993
155383
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
154994
155384
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
154995
155385
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
155386
|
+
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
154996
155387
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
154997
155388
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
154998
155389
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
@@ -155121,6 +155512,7 @@ export declare type Query = {
|
|
|
155121
155512
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
155122
155513
|
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
155123
155514
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
155515
|
+
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
155124
155516
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
155125
155517
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
155126
155518
|
jsw?: Maybe<JswQuery>;
|
|
@@ -155402,6 +155794,7 @@ export declare type Query = {
|
|
|
155402
155794
|
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
155403
155795
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
155404
155796
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
155797
|
+
spf_starredItems?: Maybe<SpfStarredItemConnection>;
|
|
155405
155798
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
155406
155799
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
155407
155800
|
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
@@ -155572,6 +155965,21 @@ export declare type QueryAdmin_AppModulesForAppsArgs = {
|
|
|
155572
155965
|
appIdentifiers: Array<AdminAppModulesKey>;
|
|
155573
155966
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
155574
155967
|
};
|
|
155968
|
+
export declare type QueryAdmin_AuditLogBackgroundQueriesArgs = {
|
|
155969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155970
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
155971
|
+
container: AdminAuditLogContainer;
|
|
155972
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155973
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155974
|
+
};
|
|
155975
|
+
export declare type QueryAdmin_AuditLogBackgroundQueryByIdArgs = {
|
|
155976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155977
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
155978
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
155979
|
+
container: AdminAuditLogContainer;
|
|
155980
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155981
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155982
|
+
};
|
|
155575
155983
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
155576
155984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155577
155985
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155634,6 +156042,14 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
155634
156042
|
orgId: Scalars['ID']['input'];
|
|
155635
156043
|
principal: Scalars['ID']['input'];
|
|
155636
156044
|
};
|
|
156045
|
+
export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
|
|
156046
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156047
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
156048
|
+
container: AdminAuditLogContainer;
|
|
156049
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156050
|
+
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
156051
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
156052
|
+
};
|
|
155637
156053
|
export declare type QueryAdmin_GroupArgs = {
|
|
155638
156054
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
155639
156055
|
};
|
|
@@ -155815,6 +156231,12 @@ export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
|
155815
156231
|
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
155816
156232
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
155817
156233
|
};
|
|
156234
|
+
export declare type QueryAgentStudio_AgentByIdForDuplicateArgs = {
|
|
156235
|
+
id: Scalars['ID']['input'];
|
|
156236
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
156237
|
+
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
156238
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
156239
|
+
};
|
|
155818
156240
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
155819
156241
|
cloudId: Scalars['String']['input'];
|
|
155820
156242
|
id: Scalars['ID']['input'];
|
|
@@ -155822,6 +156244,11 @@ export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
155822
156244
|
export declare type QueryAgentStudio_AgentsByIdsArgs = {
|
|
155823
156245
|
ids: Array<Scalars['ID']['input']>;
|
|
155824
156246
|
};
|
|
156247
|
+
export declare type QueryAgentStudio_AuthReadinessForAgentArgs = {
|
|
156248
|
+
agentId: Scalars['ID']['input'];
|
|
156249
|
+
cloudId: Scalars['String']['input'];
|
|
156250
|
+
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
156251
|
+
};
|
|
155825
156252
|
export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
|
|
155826
156253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155827
156254
|
cloudId: Scalars['String']['input'];
|
|
@@ -158842,6 +159269,10 @@ export declare type QueryGraphIntegration_SkillArgs = {
|
|
|
158842
159269
|
contextAri: Scalars['ID']['input'];
|
|
158843
159270
|
skillAri: Scalars['ID']['input'];
|
|
158844
159271
|
};
|
|
159272
|
+
export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
159273
|
+
contextAri: Scalars['ID']['input'];
|
|
159274
|
+
dimension: GraphIntegrationSkillDimension;
|
|
159275
|
+
};
|
|
158845
159276
|
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
158846
159277
|
contextAri: Scalars['ID']['input'];
|
|
158847
159278
|
skillAris: Array<Scalars['ID']['input']>;
|
|
@@ -159318,6 +159749,9 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
159318
159749
|
conversationAri: Scalars['ID']['input'];
|
|
159319
159750
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159320
159751
|
};
|
|
159752
|
+
export declare type QueryJsmConversation_SettingArgs = {
|
|
159753
|
+
projectAri: Scalars['String']['input'];
|
|
159754
|
+
};
|
|
159321
159755
|
export declare type QueryJsmConversation_SettingsArgs = {
|
|
159322
159756
|
projectAri: Scalars['String']['input'];
|
|
159323
159757
|
};
|
|
@@ -159372,6 +159806,7 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
159372
159806
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159373
159807
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
159374
159808
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159809
|
+
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
159375
159810
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
159376
159811
|
workspaceAri: Scalars['ID']['input'];
|
|
159377
159812
|
};
|
|
@@ -160330,6 +160765,12 @@ export declare type QuerySpf_PlansArgs = {
|
|
|
160330
160765
|
export declare type QuerySpf_PlansByIdsArgs = {
|
|
160331
160766
|
ids: Array<Scalars['ID']['input']>;
|
|
160332
160767
|
};
|
|
160768
|
+
export declare type QuerySpf_StarredItemsArgs = {
|
|
160769
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
160770
|
+
cloudId: Scalars['ID']['input'];
|
|
160771
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160772
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
160773
|
+
};
|
|
160333
160774
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
160334
160775
|
appId: Scalars['ID']['input'];
|
|
160335
160776
|
installationId: Scalars['ID']['input'];
|
|
@@ -163264,6 +163705,7 @@ export declare enum Scope {
|
|
|
163264
163705
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
163265
163706
|
ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
|
|
163266
163707
|
ReadContainer = "READ_CONTAINER",
|
|
163708
|
+
ReadCsmTwgCli = "READ_CSM_TWG_CLI",
|
|
163267
163709
|
ReadCustomer = "READ_CUSTOMER",
|
|
163268
163710
|
ReadDesign = "READ_DESIGN",
|
|
163269
163711
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
@@ -185788,6 +186230,33 @@ export declare type SpfRevokeEntityPermissionPayload = Payload & {
|
|
|
185788
186230
|
permission?: Maybe<SpfEntityPermissionEntry>;
|
|
185789
186231
|
success: Scalars['Boolean']['output'];
|
|
185790
186232
|
};
|
|
186233
|
+
export declare type SpfStarredItem = {
|
|
186234
|
+
__typename?: 'SpfStarredItem';
|
|
186235
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
186236
|
+
createdBy?: Maybe<User>;
|
|
186237
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
186238
|
+
entityType: Scalars['String']['output'];
|
|
186239
|
+
id: Scalars['ID']['output'];
|
|
186240
|
+
starredItem?: Maybe<SpfStarredWork>;
|
|
186241
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
186242
|
+
updatedBy?: Maybe<User>;
|
|
186243
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
186244
|
+
user?: Maybe<User>;
|
|
186245
|
+
userId: Scalars['String']['output'];
|
|
186246
|
+
};
|
|
186247
|
+
export declare type SpfStarredItemConnection = {
|
|
186248
|
+
__typename?: 'SpfStarredItemConnection';
|
|
186249
|
+
edges?: Maybe<Array<Maybe<SpfStarredItemEdge>>>;
|
|
186250
|
+
pageInfo: PageInfo;
|
|
186251
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
186252
|
+
};
|
|
186253
|
+
export declare type SpfStarredItemEdge = {
|
|
186254
|
+
__typename?: 'SpfStarredItemEdge';
|
|
186255
|
+
cursor: Scalars['String']['output'];
|
|
186256
|
+
node?: Maybe<SpfStarredItemResult>;
|
|
186257
|
+
};
|
|
186258
|
+
export declare type SpfStarredItemResult = QueryError | SpfStarredItem;
|
|
186259
|
+
export declare type SpfStarredWork = SpfAsk | SpfPlan;
|
|
185791
186260
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
185792
186261
|
data: Scalars['String']['input'];
|
|
185793
186262
|
id: Scalars['ID']['input'];
|
|
@@ -192130,6 +192599,11 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
192130
192599
|
cursor: Scalars['String']['output'];
|
|
192131
192600
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
192132
192601
|
};
|
|
192602
|
+
export declare type TownsquareProjectUserViews = TownsquareUserViews & {
|
|
192603
|
+
__typename?: 'TownsquareProjectUserViews';
|
|
192604
|
+
containerId: Scalars['ID']['output'];
|
|
192605
|
+
projectUpdateId: Scalars['ID']['output'];
|
|
192606
|
+
};
|
|
192133
192607
|
export declare type TownsquareProjectsAddGoalLink = {
|
|
192134
192608
|
goalId: Scalars['ID']['input'];
|
|
192135
192609
|
projectId: Scalars['ID']['input'];
|
|
@@ -192164,6 +192638,7 @@ export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
|
|
|
192164
192638
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
192165
192639
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192166
192640
|
projectId: Scalars['ID']['input'];
|
|
192641
|
+
role?: InputMaybe<TownsquareProjectAccessRoleInput>;
|
|
192167
192642
|
users: Array<Scalars['ID']['input']>;
|
|
192168
192643
|
};
|
|
192169
192644
|
export declare type TownsquareProjectsAddMembersPayload = {
|
|
@@ -192176,6 +192651,7 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
192176
192651
|
};
|
|
192177
192652
|
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
192178
192653
|
projectId: Scalars['ID']['input'];
|
|
192654
|
+
role?: InputMaybe<TownsquareProjectAccessRoleInput>;
|
|
192179
192655
|
teamId: Scalars['ID']['input'];
|
|
192180
192656
|
userIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
192181
192657
|
};
|
|
@@ -192186,6 +192662,16 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
192186
192662
|
project?: Maybe<TownsquareProject>;
|
|
192187
192663
|
success: Scalars['Boolean']['output'];
|
|
192188
192664
|
};
|
|
192665
|
+
export declare type TownsquareProjectsAddViewInput = {
|
|
192666
|
+
containerId: Scalars['ID']['input'];
|
|
192667
|
+
projectUpdateId: Scalars['ID']['input'];
|
|
192668
|
+
};
|
|
192669
|
+
export declare type TownsquareProjectsAddViewPayload = {
|
|
192670
|
+
__typename?: 'TownsquareProjectsAddViewPayload';
|
|
192671
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192672
|
+
success: Scalars['Boolean']['output'];
|
|
192673
|
+
views?: Maybe<TownsquareProjectUserViews>;
|
|
192674
|
+
};
|
|
192189
192675
|
export declare type TownsquareProjectsAppSettings = {
|
|
192190
192676
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
192191
192677
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -193494,6 +193980,21 @@ export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
|
193494
193980
|
errors?: Maybe<Array<MutationError>>;
|
|
193495
193981
|
success: Scalars['Boolean']['output'];
|
|
193496
193982
|
};
|
|
193983
|
+
export declare type TrelloAddOnboardingInboxCardsCardInput = {
|
|
193984
|
+
description: Scalars['String']['input'];
|
|
193985
|
+
externalSource: TrelloCardExternalSource;
|
|
193986
|
+
name: Scalars['String']['input'];
|
|
193987
|
+
position: Scalars['Float']['input'];
|
|
193988
|
+
};
|
|
193989
|
+
export declare type TrelloAddOnboardingInboxCardsInput = {
|
|
193990
|
+
cards: Array<TrelloAddOnboardingInboxCardsCardInput>;
|
|
193991
|
+
};
|
|
193992
|
+
export declare type TrelloAddOnboardingInboxCardsPayload = Payload & {
|
|
193993
|
+
__typename?: 'TrelloAddOnboardingInboxCardsPayload';
|
|
193994
|
+
errors?: Maybe<Array<MutationError>>;
|
|
193995
|
+
inboxCards?: Maybe<Array<TrelloInboxCard>>;
|
|
193996
|
+
success: Scalars['Boolean']['output'];
|
|
193997
|
+
};
|
|
193497
193998
|
export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
193498
193999
|
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
193499
194000
|
card?: Maybe<TrelloActionCardEntity>;
|
|
@@ -194868,6 +195369,29 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
194868
195369
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
194869
195370
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
194870
195371
|
};
|
|
195372
|
+
export declare type TrelloCompleteOnboardingBoardInput = {
|
|
195373
|
+
addStarterGuide: Scalars['Boolean']['input'];
|
|
195374
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
195375
|
+
description: Scalars['String']['input'];
|
|
195376
|
+
firstListCards?: InputMaybe<Array<InputMaybe<TrelloCompleteOnboardingCardInput>>>;
|
|
195377
|
+
name: Scalars['String']['input'];
|
|
195378
|
+
};
|
|
195379
|
+
export declare type TrelloCompleteOnboardingCardInput = {
|
|
195380
|
+
description: Scalars['String']['input'];
|
|
195381
|
+
name: Scalars['String']['input'];
|
|
195382
|
+
position: Scalars['Float']['input'];
|
|
195383
|
+
};
|
|
195384
|
+
export declare type TrelloCompleteOnboardingInput = {
|
|
195385
|
+
board: TrelloCompleteOnboardingBoardInput;
|
|
195386
|
+
organizationName: Scalars['String']['input'];
|
|
195387
|
+
};
|
|
195388
|
+
export declare type TrelloCompleteOnboardingPayload = Payload & {
|
|
195389
|
+
__typename?: 'TrelloCompleteOnboardingPayload';
|
|
195390
|
+
board: TrelloBoard;
|
|
195391
|
+
errors?: Maybe<Array<MutationError>>;
|
|
195392
|
+
success: Scalars['Boolean']['output'];
|
|
195393
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
195394
|
+
};
|
|
194871
195395
|
export declare type TrelloConvertBoardToTemplateInput = {
|
|
194872
195396
|
boardId: Scalars['ID']['input'];
|
|
194873
195397
|
};
|
|
@@ -196245,12 +196769,14 @@ export declare type TrelloMutationApi = {
|
|
|
196245
196769
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
196246
196770
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
196247
196771
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
196772
|
+
addOnboardingInboxCards?: Maybe<TrelloAddOnboardingInboxCardsPayload>;
|
|
196248
196773
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
196249
196774
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
196250
196775
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
196251
196776
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
196252
196777
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
196253
196778
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
196779
|
+
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
196254
196780
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
196255
196781
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
196256
196782
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -196359,6 +196885,9 @@ export declare type TrelloMutationApiAddLabelsToCardArgs = {
|
|
|
196359
196885
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
196360
196886
|
input: TrelloAddMemberInput;
|
|
196361
196887
|
};
|
|
196888
|
+
export declare type TrelloMutationApiAddOnboardingInboxCardsArgs = {
|
|
196889
|
+
input: TrelloAddOnboardingInboxCardsInput;
|
|
196890
|
+
};
|
|
196362
196891
|
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
196363
196892
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
196364
196893
|
};
|
|
@@ -196377,6 +196906,9 @@ export declare type TrelloMutationApiCloseBoardArgs = {
|
|
|
196377
196906
|
export declare type TrelloMutationApiCloseCardArgs = {
|
|
196378
196907
|
input: TrelloCloseCardInput;
|
|
196379
196908
|
};
|
|
196909
|
+
export declare type TrelloMutationApiCompleteOnboardingArgs = {
|
|
196910
|
+
input: TrelloCompleteOnboardingInput;
|
|
196911
|
+
};
|
|
196380
196912
|
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
196381
196913
|
input: TrelloConvertBoardToTemplateInput;
|
|
196382
196914
|
};
|
|
@@ -196753,6 +197285,29 @@ export declare type TrelloPlannerBaseCardUpdated = {
|
|
|
196753
197285
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
196754
197286
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
196755
197287
|
};
|
|
197288
|
+
export declare enum TrelloPlannerBoardFilterMode {
|
|
197289
|
+
All = "ALL",
|
|
197290
|
+
AssignedToMe = "ASSIGNED_TO_ME",
|
|
197291
|
+
Exclude = "EXCLUDE"
|
|
197292
|
+
}
|
|
197293
|
+
export declare type TrelloPlannerBoardOverride = {
|
|
197294
|
+
__typename?: 'TrelloPlannerBoardOverride';
|
|
197295
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
197296
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
197297
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
197298
|
+
id: Scalars['ID']['output'];
|
|
197299
|
+
mode?: Maybe<TrelloPlannerBoardFilterMode>;
|
|
197300
|
+
};
|
|
197301
|
+
export declare type TrelloPlannerBoardOverrideConnection = {
|
|
197302
|
+
__typename?: 'TrelloPlannerBoardOverrideConnection';
|
|
197303
|
+
edges: Array<TrelloPlannerBoardOverrideEdge>;
|
|
197304
|
+
pageInfo: PageInfo;
|
|
197305
|
+
};
|
|
197306
|
+
export declare type TrelloPlannerBoardOverrideEdge = {
|
|
197307
|
+
__typename?: 'TrelloPlannerBoardOverrideEdge';
|
|
197308
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
197309
|
+
node?: Maybe<TrelloPlannerBoardOverride>;
|
|
197310
|
+
};
|
|
196756
197311
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
196757
197312
|
__typename?: 'TrelloPlannerCalendar';
|
|
196758
197313
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -197156,8 +197711,13 @@ export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
|
197156
197711
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
197157
197712
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
197158
197713
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
197714
|
+
boardOverrides?: Maybe<TrelloPlannerBoardOverrideConnection>;
|
|
197159
197715
|
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
197160
197716
|
};
|
|
197717
|
+
export declare type TrelloPlannerDueDateCardsSettingsBoardOverridesArgs = {
|
|
197718
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197720
|
+
};
|
|
197161
197721
|
export declare type TrelloPlannerEventCardConnection = {
|
|
197162
197722
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
197163
197723
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|