@forge/cli-shared 8.19.0-next.6 → 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 +14 -0
- package/out/graphql/graphql-types.d.ts +587 -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'];
|
|
@@ -6791,8 +6895,10 @@ export declare type AgentWorkspaceTeamSchedules = {
|
|
|
6791
6895
|
export declare type AgentWorkspaceTeamSchedulesConnection = {
|
|
6792
6896
|
__typename?: 'AgentWorkspaceTeamSchedulesConnection';
|
|
6793
6897
|
edges: Array<AgentWorkspaceTeamSchedulesEdge>;
|
|
6898
|
+
hasAnyProjectSchedules: Scalars['Boolean']['output'];
|
|
6794
6899
|
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
6795
6900
|
pageInfo: AgentWorkspaceTeamsPageInfo;
|
|
6901
|
+
resolvedDateRange?: Maybe<AgentWorkspaceResolvedDateRange>;
|
|
6796
6902
|
summary: AgentWorkspaceTeamSchedulesSummary;
|
|
6797
6903
|
};
|
|
6798
6904
|
export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
@@ -6802,11 +6908,11 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
|
6802
6908
|
};
|
|
6803
6909
|
export declare type AgentWorkspaceTeamSchedulesQueryInput = {
|
|
6804
6910
|
cloudId: Scalars['ID']['input'];
|
|
6805
|
-
endTime
|
|
6911
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6806
6912
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6807
6913
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6808
6914
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6809
|
-
startTime
|
|
6915
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6810
6916
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6811
6917
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6812
6918
|
};
|
|
@@ -7550,6 +7656,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
7550
7656
|
extensionByKey?: Maybe<AppVersionExtension>;
|
|
7551
7657
|
extensions?: Maybe<AppVersionExtensions>;
|
|
7552
7658
|
id: Scalars['ID']['output'];
|
|
7659
|
+
installationTarget?: Maybe<InstallationTarget>;
|
|
7553
7660
|
installations?: Maybe<AppInstallationByIndexConnection>;
|
|
7554
7661
|
isLatest: Scalars['Boolean']['output'];
|
|
7555
7662
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
@@ -26270,7 +26377,7 @@ export declare type ConfluenceCommentConnection = {
|
|
|
26270
26377
|
nodes?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
26271
26378
|
pageInfo: ConfluencePageInfo;
|
|
26272
26379
|
};
|
|
26273
|
-
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
26380
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard;
|
|
26274
26381
|
export declare type ConfluenceCommentCountSummary = {
|
|
26275
26382
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
26276
26383
|
total?: Maybe<Scalars['Int']['output']>;
|
|
@@ -41974,6 +42081,8 @@ export declare type ExternalDataTable = Node & {
|
|
|
41974
42081
|
__typename?: 'ExternalDataTable';
|
|
41975
42082
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
41976
42083
|
columns?: Maybe<Array<Maybe<ExternalDataTableColumn>>>;
|
|
42084
|
+
container?: Maybe<ExternalEntity>;
|
|
42085
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41977
42086
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41978
42087
|
createdBy?: Maybe<ExternalUser>;
|
|
41979
42088
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41983,6 +42092,8 @@ export declare type ExternalDataTable = Node & {
|
|
|
41983
42092
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
41984
42093
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41985
42094
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
42095
|
+
parent?: Maybe<ExternalEntity>;
|
|
42096
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41986
42097
|
provider?: Maybe<ExternalProvider>;
|
|
41987
42098
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
41988
42099
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -46033,6 +46144,18 @@ export declare enum GraphIntegrationSkillColor {
|
|
|
46033
46144
|
Teal = "TEAL",
|
|
46034
46145
|
Yellow = "YELLOW"
|
|
46035
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
|
+
};
|
|
46036
46159
|
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
46037
46160
|
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
46038
46161
|
color?: Maybe<GraphIntegrationSkillColor>;
|
|
@@ -46059,6 +46182,12 @@ export declare type GraphIntegrationSkillMetadata = {
|
|
|
46059
46182
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46060
46183
|
version: Scalars['String']['output'];
|
|
46061
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
|
+
};
|
|
46062
46191
|
export declare type GraphIntegrationSkillTool = {
|
|
46063
46192
|
__typename?: 'GraphIntegrationSkillTool';
|
|
46064
46193
|
id: Scalars['String']['output'];
|
|
@@ -49688,6 +49817,8 @@ export declare type GraphStore = {
|
|
|
49688
49817
|
userCreatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection>;
|
|
49689
49818
|
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
49690
49819
|
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
49820
|
+
userCreatedExternalVideo?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoConnection>;
|
|
49821
|
+
userCreatedExternalVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection>;
|
|
49691
49822
|
userCreatedFocusArea?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaConnection>;
|
|
49692
49823
|
userCreatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection>;
|
|
49693
49824
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
@@ -49855,6 +49986,7 @@ export declare type GraphStore = {
|
|
|
49855
49986
|
userUpdatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogConnection>;
|
|
49856
49987
|
userUpdatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogInverseConnection>;
|
|
49857
49988
|
userUpdatedThirdPartyPullRequestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseConnection>;
|
|
49989
|
+
userUpdatedThirdPartyVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection>;
|
|
49858
49990
|
userUpdatedVideo?: Maybe<GraphStoreSimplifiedUserUpdatedVideoConnection>;
|
|
49859
49991
|
userUpdatedVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedVideoInverseConnection>;
|
|
49860
49992
|
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
@@ -49877,6 +50009,7 @@ export declare type GraphStore = {
|
|
|
49877
50009
|
userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
49878
50010
|
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
49879
50011
|
userViewedProjectUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
50012
|
+
userViewedThirdPartyVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection>;
|
|
49880
50013
|
userViewedVideo?: Maybe<GraphStoreSimplifiedUserViewedVideoConnection>;
|
|
49881
50014
|
userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
|
|
49882
50015
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
@@ -56546,6 +56679,22 @@ export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
|
|
|
56546
56679
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56547
56680
|
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
56548
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
|
+
};
|
|
56549
56698
|
export declare type GraphStoreUserCreatedFocusAreaArgs = {
|
|
56550
56699
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56551
56700
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57882,6 +58031,14 @@ export declare type GraphStoreUserUpdatedThirdPartyPullRequestInverseArgs = {
|
|
|
57882
58031
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57883
58032
|
sort?: InputMaybe<GraphStoreUserUpdatedThirdPartyPullRequestSortInput>;
|
|
57884
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
|
+
};
|
|
57885
58042
|
export declare type GraphStoreUserUpdatedVideoArgs = {
|
|
57886
58043
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57887
58044
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58054,6 +58211,14 @@ export declare type GraphStoreUserViewedProjectUpdateInverseBatchArgs = {
|
|
|
58054
58211
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58055
58212
|
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
58056
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
|
+
};
|
|
58057
58222
|
export declare type GraphStoreUserViewedVideoArgs = {
|
|
58058
58223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58059
58224
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76006,6 +76171,34 @@ export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
|
|
|
76006
76171
|
};
|
|
76007
76172
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76008
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;
|
|
76009
76202
|
export declare type GraphStoreSimplifiedUserCreatedFocusAreaConnection = HasPageInfo & {
|
|
76010
76203
|
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaConnection';
|
|
76011
76204
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaEdge>>>;
|
|
@@ -78316,6 +78509,20 @@ export declare type GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseE
|
|
|
78316
78509
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseUnion>;
|
|
78317
78510
|
};
|
|
78318
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;
|
|
78319
78526
|
export declare type GraphStoreSimplifiedUserUpdatedVideoConnection = HasPageInfo & {
|
|
78320
78527
|
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoConnection';
|
|
78321
78528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedVideoEdge>>>;
|
|
@@ -78568,6 +78775,20 @@ export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
|
78568
78775
|
};
|
|
78569
78776
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
78570
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;
|
|
78571
78792
|
export declare type GraphStoreSimplifiedUserViewedVideoConnection = HasPageInfo & {
|
|
78572
78793
|
__typename?: 'GraphStoreSimplifiedUserViewedVideoConnection';
|
|
78573
78794
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoEdge>>>;
|
|
@@ -79686,6 +79907,9 @@ export declare type GraphStoreUserCreatedExternalSpaceSortInput = {
|
|
|
79686
79907
|
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
79687
79908
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79688
79909
|
};
|
|
79910
|
+
export declare type GraphStoreUserCreatedExternalVideoSortInput = {
|
|
79911
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79912
|
+
};
|
|
79689
79913
|
export declare type GraphStoreUserCreatedFocusAreaSortInput = {
|
|
79690
79914
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79691
79915
|
};
|
|
@@ -79984,6 +80208,9 @@ export declare type GraphStoreUserUpdatedIssueWorklogSortInput = {
|
|
|
79984
80208
|
export declare type GraphStoreUserUpdatedThirdPartyPullRequestSortInput = {
|
|
79985
80209
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79986
80210
|
};
|
|
80211
|
+
export declare type GraphStoreUserUpdatedThirdPartyVideoSortInput = {
|
|
80212
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80213
|
+
};
|
|
79987
80214
|
export declare type GraphStoreUserUpdatedVideoSortInput = {
|
|
79988
80215
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79989
80216
|
};
|
|
@@ -80014,6 +80241,9 @@ export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
|
80014
80241
|
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
80015
80242
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80016
80243
|
};
|
|
80244
|
+
export declare type GraphStoreUserViewedThirdPartyVideoSortInput = {
|
|
80245
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80246
|
+
};
|
|
80017
80247
|
export declare type GraphStoreUserViewedVideoSortInput = {
|
|
80018
80248
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80019
80249
|
};
|
|
@@ -80142,6 +80372,8 @@ export declare type GraphStoreV2 = {
|
|
|
80142
80372
|
atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
|
|
80143
80373
|
atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
|
|
80144
80374
|
atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
|
|
80375
|
+
atlassianUserCreatedExternalVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection>;
|
|
80376
|
+
atlassianUserCreatedExternalVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection>;
|
|
80145
80377
|
atlassianUserCreatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection>;
|
|
80146
80378
|
atlassianUserCreatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection>;
|
|
80147
80379
|
atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
|
|
@@ -80613,6 +80845,8 @@ export declare type GraphStoreV2 = {
|
|
|
80613
80845
|
externalUserUpdatedExternalTestStatus?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusConnection>;
|
|
80614
80846
|
externalUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseConnection>;
|
|
80615
80847
|
externalUserUpdatedThirdPartyPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseConnection>;
|
|
80848
|
+
externalUserUpdatedThirdPartyVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection>;
|
|
80849
|
+
externalUserViewedThirdPartyVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection>;
|
|
80616
80850
|
externalVideoHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection>;
|
|
80617
80851
|
externalVideoHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceInverseConnection>;
|
|
80618
80852
|
externalWorkerFillsExternalPosition?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection>;
|
|
@@ -81584,6 +81818,20 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
|
|
|
81584
81818
|
id: Scalars['ID']['input'];
|
|
81585
81819
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
|
|
81586
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
|
+
};
|
|
81587
81835
|
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaArgs = {
|
|
81588
81836
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81589
81837
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -84894,6 +85142,20 @@ export declare type GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestInverseA
|
|
|
84894
85142
|
id: Scalars['ID']['input'];
|
|
84895
85143
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestSortInput>;
|
|
84896
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
|
+
};
|
|
84897
85159
|
export declare type GraphStoreV2ExternalVideoHasExternalSpaceArgs = {
|
|
84898
85160
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84899
85161
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86614,6 +86876,9 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput
|
|
|
86614
86876
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
|
|
86615
86877
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86616
86878
|
};
|
|
86879
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoSortInput = {
|
|
86880
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86881
|
+
};
|
|
86617
86882
|
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput = {
|
|
86618
86883
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86619
86884
|
};
|
|
@@ -88439,6 +88704,12 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput =
|
|
|
88439
88704
|
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestSortInput = {
|
|
88440
88705
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88441
88706
|
};
|
|
88707
|
+
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyVideoSortInput = {
|
|
88708
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88709
|
+
};
|
|
88710
|
+
export declare type GraphStoreV2ExternalUserViewedThirdPartyVideoSortInput = {
|
|
88711
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88712
|
+
};
|
|
88442
88713
|
export declare type GraphStoreV2ExternalVideoHasExternalSpaceSortInput = {
|
|
88443
88714
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88444
88715
|
};
|
|
@@ -91524,6 +91795,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
|
|
|
91524
91795
|
};
|
|
91525
91796
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91526
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;
|
|
91527
91826
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection = HasPageInfo & {
|
|
91528
91827
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection';
|
|
91529
91828
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge>>>;
|
|
@@ -98168,6 +98467,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullReque
|
|
|
98168
98467
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseUnion>;
|
|
98169
98468
|
};
|
|
98170
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;
|
|
98171
98498
|
export declare type GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection = HasPageInfo & {
|
|
98172
98499
|
__typename?: 'GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection';
|
|
98173
98500
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceEdge>>>;
|
|
@@ -101519,6 +101846,7 @@ export declare type GravityField = {
|
|
|
101519
101846
|
key: Scalars['String']['output'];
|
|
101520
101847
|
name: Scalars['String']['output'];
|
|
101521
101848
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
101849
|
+
stableId?: Maybe<Scalars['String']['output']>;
|
|
101522
101850
|
type: Scalars['String']['output'];
|
|
101523
101851
|
};
|
|
101524
101852
|
export declare type GravityFieldDefinition = {
|
|
@@ -105571,6 +105899,10 @@ export declare type InstallationSummaryAppEnvironmentVersion = {
|
|
|
105571
105899
|
id?: Maybe<Scalars['ID']['output']>;
|
|
105572
105900
|
version?: Maybe<Scalars['String']['output']>;
|
|
105573
105901
|
};
|
|
105902
|
+
export declare enum InstallationTarget {
|
|
105903
|
+
Site = "SITE",
|
|
105904
|
+
Unit = "UNIT"
|
|
105905
|
+
}
|
|
105574
105906
|
export declare type InstallationsListFilterByAppEnvironments = {
|
|
105575
105907
|
types: Array<AppEnvironmentType>;
|
|
105576
105908
|
};
|
|
@@ -107966,6 +108298,25 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
|
107966
108298
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107967
108299
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107968
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
|
+
};
|
|
107969
108320
|
export declare type JiraBacklogViewBoardConfig = {
|
|
107970
108321
|
__typename?: 'JiraBacklogViewBoardConfig';
|
|
107971
108322
|
estimationField?: Maybe<JiraField>;
|
|
@@ -108069,6 +108420,7 @@ export declare type JiraBacklogViewQueryInput = {
|
|
|
108069
108420
|
};
|
|
108070
108421
|
export declare type JiraBacklogViewSettings = {
|
|
108071
108422
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
108423
|
+
includeSubtaskInEstimate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108072
108424
|
quickFilterIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
108073
108425
|
skipCollapsedIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108074
108426
|
};
|
|
@@ -108078,6 +108430,7 @@ export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & No
|
|
|
108078
108430
|
id: Scalars['ID']['output'];
|
|
108079
108431
|
issues?: Maybe<JiraIssueConnection>;
|
|
108080
108432
|
sprint?: Maybe<JiraSprint>;
|
|
108433
|
+
workByAssignee?: Maybe<JiraBacklogViewAssigneeWorkBreakdownConnection>;
|
|
108081
108434
|
};
|
|
108082
108435
|
export declare type JiraBacklogViewSprintCardListEstimationDetailsArgs = {
|
|
108083
108436
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
@@ -108089,6 +108442,13 @@ export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
|
108089
108442
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108090
108443
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
108091
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
|
+
};
|
|
108092
108452
|
export declare enum JiraBacklogViewStrategy {
|
|
108093
108453
|
IssueList = "ISSUE_LIST",
|
|
108094
108454
|
KanbanBacklog = "KANBAN_BACKLOG",
|
|
@@ -109991,7 +110351,7 @@ export declare enum JiraCommentSortField {
|
|
|
109991
110351
|
LatestActivity = "LATEST_ACTIVITY"
|
|
109992
110352
|
}
|
|
109993
110353
|
export declare type JiraCommentSortInput = {
|
|
109994
|
-
field
|
|
110354
|
+
field?: InputMaybe<JiraCommentSortField>;
|
|
109995
110355
|
order?: InputMaybe<SortDirection>;
|
|
109996
110356
|
};
|
|
109997
110357
|
export declare type JiraCommentSummary = {
|
|
@@ -114349,6 +114709,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114349
114709
|
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
114350
114710
|
assignee?: Maybe<User>;
|
|
114351
114711
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
114712
|
+
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
114352
114713
|
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
114353
114714
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
114354
114715
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
@@ -114444,6 +114805,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114444
114805
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
114445
114806
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
114446
114807
|
key: Scalars['String']['output'];
|
|
114808
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
114447
114809
|
labelsField?: Maybe<JiraLabelsField>;
|
|
114448
114810
|
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
114449
114811
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -114756,6 +115118,12 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
114756
115118
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
114757
115119
|
key: Scalars['String']['input'];
|
|
114758
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
|
+
};
|
|
114759
115127
|
export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
114760
115128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114761
115129
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133142,6 +133510,10 @@ export declare type JsmConversationEdge = {
|
|
|
133142
133510
|
cursor: Scalars['String']['output'];
|
|
133143
133511
|
node?: Maybe<JsmConversation>;
|
|
133144
133512
|
};
|
|
133513
|
+
export declare enum JsmConversationLiveChatAvailabilityCriteria {
|
|
133514
|
+
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
133515
|
+
Status = "STATUS"
|
|
133516
|
+
}
|
|
133145
133517
|
export declare type JsmConversationMediaConfiguration = {
|
|
133146
133518
|
__typename?: 'JsmConversationMediaConfiguration';
|
|
133147
133519
|
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -133181,6 +133553,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
133181
133553
|
export declare type JsmConversationSettings = {
|
|
133182
133554
|
__typename?: 'JsmConversationSettings';
|
|
133183
133555
|
assignedTeam?: Maybe<TeamV2>;
|
|
133556
|
+
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
133184
133557
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
133185
133558
|
issueLabel?: Maybe<Scalars['String']['output']>;
|
|
133186
133559
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
@@ -133189,6 +133562,7 @@ export declare type JsmConversationSettings = {
|
|
|
133189
133562
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
133190
133563
|
};
|
|
133191
133564
|
export declare type JsmConversationSettingsInput = {
|
|
133565
|
+
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
133192
133566
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
133193
133567
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
133194
133568
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133201,6 +133575,7 @@ export declare type JsmConversationSettingsPayload = Payload & {
|
|
|
133201
133575
|
errors?: Maybe<Array<MutationError>>;
|
|
133202
133576
|
success: Scalars['Boolean']['output'];
|
|
133203
133577
|
};
|
|
133578
|
+
export declare type JsmConversationSettingsResult = JsmConversationSettings | QueryError;
|
|
133204
133579
|
export declare type JsmConversationSla = {
|
|
133205
133580
|
__typename?: 'JsmConversationSla';
|
|
133206
133581
|
slaDuration?: Maybe<Scalars['String']['output']>;
|
|
@@ -133729,6 +134104,7 @@ export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
|
133729
134104
|
__typename?: 'KitsuneFeedbackConnection';
|
|
133730
134105
|
edges: Array<KitsuneFeedbackEdge>;
|
|
133731
134106
|
pageInfo: PageInfo;
|
|
134107
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133732
134108
|
};
|
|
133733
134109
|
export declare type KitsuneFeedbackEdge = KitsuneEdge & {
|
|
133734
134110
|
__typename?: 'KitsuneFeedbackEdge';
|
|
@@ -134032,6 +134408,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
134032
134408
|
Intercom = "INTERCOM",
|
|
134033
134409
|
Jira = "JIRA",
|
|
134034
134410
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
134411
|
+
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
134035
134412
|
Jotform = "JOTFORM",
|
|
134036
134413
|
Kustomer = "KUSTOMER",
|
|
134037
134414
|
Linear = "LINEAR",
|
|
@@ -134052,6 +134429,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
134052
134429
|
NotionTables = "NOTION_TABLES",
|
|
134053
134430
|
Otter = "OTTER",
|
|
134054
134431
|
PdfFiles = "PDF_FILES",
|
|
134432
|
+
Pendo = "PENDO",
|
|
134055
134433
|
Pipedrive = "PIPEDRIVE",
|
|
134056
134434
|
Planhat = "PLANHAT",
|
|
134057
134435
|
Powerpoint = "POWERPOINT",
|
|
@@ -139221,8 +139599,8 @@ export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
|
139221
139599
|
};
|
|
139222
139600
|
export declare type MarketplaceStoreGridBreakpointConfig = {
|
|
139223
139601
|
__typename?: 'MarketplaceStoreGridBreakpointConfig';
|
|
139224
|
-
cells: Array<Array<MarketplaceStoreGridCell>>;
|
|
139225
139602
|
columns?: Maybe<Scalars['Int']['output']>;
|
|
139603
|
+
rows: Array<MarketplaceStoreGridRow>;
|
|
139226
139604
|
};
|
|
139227
139605
|
export declare type MarketplaceStoreGridCell = {
|
|
139228
139606
|
__typename?: 'MarketplaceStoreGridCell';
|
|
@@ -139237,6 +139615,10 @@ export declare type MarketplaceStoreGridCellSlot = {
|
|
|
139237
139615
|
variant?: Maybe<MarketplaceStoreLayoutSlotVariant>;
|
|
139238
139616
|
widgetKind: MarketplaceStoreLayoutSlotWidgetKind;
|
|
139239
139617
|
};
|
|
139618
|
+
export declare type MarketplaceStoreGridRow = {
|
|
139619
|
+
__typename?: 'MarketplaceStoreGridRow';
|
|
139620
|
+
cells: Array<MarketplaceStoreGridCell>;
|
|
139621
|
+
};
|
|
139240
139622
|
export declare type MarketplaceStoreGridWidget = {
|
|
139241
139623
|
__typename?: 'MarketplaceStoreGridWidget';
|
|
139242
139624
|
lg: MarketplaceStoreGridBreakpointConfig;
|
|
@@ -139403,6 +139785,7 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
139403
139785
|
title: Scalars['String']['output'];
|
|
139404
139786
|
};
|
|
139405
139787
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
139788
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
139406
139789
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
139407
139790
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
139408
139791
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
@@ -143222,6 +143605,7 @@ export declare type MercuryMutationApi = {
|
|
|
143222
143605
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
143223
143606
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
143224
143607
|
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
143608
|
+
updateFocusAreaCustomFieldDefinitionVisibility?: Maybe<MercuryUpdateCustomFieldDefinitionVisibilityPayload>;
|
|
143225
143609
|
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
143226
143610
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
143227
143611
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -143360,6 +143744,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameAr
|
|
|
143360
143744
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
143361
143745
|
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
143362
143746
|
};
|
|
143747
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionVisibilityArgs = {
|
|
143748
|
+
input: MercuryUpdateCustomFieldDefinitionVisibilityInput;
|
|
143749
|
+
};
|
|
143363
143750
|
export declare type MercuryMutationApiUpdateFocusAreaHierarchyNameArgs = {
|
|
143364
143751
|
input: MercuryUpdateFocusAreaHierarchyNameInput;
|
|
143365
143752
|
};
|
|
@@ -145417,6 +145804,16 @@ export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload &
|
|
|
145417
145804
|
errors?: Maybe<Array<MutationError>>;
|
|
145418
145805
|
success: Scalars['Boolean']['output'];
|
|
145419
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
|
+
};
|
|
145420
145817
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
145421
145818
|
aboutContent: Scalars['String']['input'];
|
|
145422
145819
|
cloudId: Scalars['ID']['input'];
|
|
@@ -145996,6 +146393,7 @@ export declare type Mutation = {
|
|
|
145996
146393
|
agentStudio_updateKnowledgeGapSuggestionArticleStatus?: Maybe<AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload>;
|
|
145997
146394
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
145998
146395
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
146396
|
+
agentStudio_upgradeSchema?: Maybe<AgentStudioUpgradeSchemaPayload>;
|
|
145999
146397
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
146000
146398
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
146001
146399
|
agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
|
|
@@ -146830,6 +147228,7 @@ export declare type Mutation = {
|
|
|
146830
147228
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
146831
147229
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
146832
147230
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
147231
|
+
projects_addView?: Maybe<TownsquareProjectsAddViewPayload>;
|
|
146833
147232
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
146834
147233
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
146835
147234
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
@@ -147405,6 +147804,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
147405
147804
|
containerId: Scalars['String']['input'];
|
|
147406
147805
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
147407
147806
|
};
|
|
147807
|
+
export declare type MutationAgentStudio_UpgradeSchemaArgs = {
|
|
147808
|
+
id: Scalars['ID']['input'];
|
|
147809
|
+
};
|
|
147408
147810
|
export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
147409
147811
|
cloudId: Scalars['String']['input'];
|
|
147410
147812
|
input?: InputMaybe<AgentStudioUploadBatchEvaluationDatasetInput>;
|
|
@@ -150283,6 +150685,9 @@ export declare type MutationProjects_AddMembersArgs = {
|
|
|
150283
150685
|
export declare type MutationProjects_AddTeamContributorsArgs = {
|
|
150284
150686
|
input?: InputMaybe<TownsquareProjectsAddTeamContributorsInput>;
|
|
150285
150687
|
};
|
|
150688
|
+
export declare type MutationProjects_AddViewArgs = {
|
|
150689
|
+
input: TownsquareProjectsAddViewInput;
|
|
150690
|
+
};
|
|
150286
150691
|
export declare type MutationProjects_CloneArgs = {
|
|
150287
150692
|
input: TownsquareProjectsCloneInput;
|
|
150288
150693
|
};
|
|
@@ -153841,27 +154246,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
153841
154246
|
Explicit = "explicit",
|
|
153842
154247
|
Implicit = "implicit"
|
|
153843
154248
|
}
|
|
153844
|
-
export declare type PostOfficeMessageData =
|
|
153845
|
-
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
153846
|
-
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
153847
|
-
description: Scalars['String']['output'];
|
|
153848
|
-
title: Scalars['String']['output'];
|
|
153849
|
-
};
|
|
153850
|
-
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
153851
|
-
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
153852
|
-
description: Scalars['String']['output'];
|
|
153853
|
-
title: Scalars['String']['output'];
|
|
153854
|
-
};
|
|
154249
|
+
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
153855
154250
|
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
153856
154251
|
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
153857
154252
|
description: Scalars['String']['output'];
|
|
153858
154253
|
title: Scalars['String']['output'];
|
|
153859
154254
|
};
|
|
153860
|
-
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
153861
|
-
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
153862
|
-
description: Scalars['String']['output'];
|
|
153863
|
-
title: Scalars['String']['output'];
|
|
153864
|
-
};
|
|
153865
154255
|
export declare type PostOfficeMessagePayload = {
|
|
153866
154256
|
__typename?: 'PostOfficeMessagePayload';
|
|
153867
154257
|
messages: Array<PostOfficeMessage>;
|
|
@@ -154289,6 +154679,8 @@ export declare type Query = {
|
|
|
154289
154679
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
154290
154680
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
154291
154681
|
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
154682
|
+
admin_auditLogBackgroundQueries?: Maybe<AdminAuditLogBackgroundQueryConnection>;
|
|
154683
|
+
admin_auditLogBackgroundQueryById?: Maybe<AdminAuditLogBackgroundQueryResponse>;
|
|
154292
154684
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
154293
154685
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
154294
154686
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -154298,6 +154690,7 @@ export declare type Query = {
|
|
|
154298
154690
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
154299
154691
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
154300
154692
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
154693
|
+
admin_generateAuditLogQueryPlan?: Maybe<AdminAuditLogBackgroundQueryPlanConnection>;
|
|
154301
154694
|
admin_group?: Maybe<AdminGroup>;
|
|
154302
154695
|
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
154303
154696
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
@@ -154330,8 +154723,10 @@ export declare type Query = {
|
|
|
154330
154723
|
agentAI_panel?: Maybe<AgentAiPanelResult>;
|
|
154331
154724
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
154332
154725
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
154726
|
+
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
154333
154727
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
154334
154728
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
154729
|
+
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
154335
154730
|
agentStudio_batchEvalConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
154336
154731
|
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
154337
154732
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
@@ -154988,6 +155383,7 @@ export declare type Query = {
|
|
|
154988
155383
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
154989
155384
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
154990
155385
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
155386
|
+
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
154991
155387
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
154992
155388
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
154993
155389
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
@@ -155116,6 +155512,7 @@ export declare type Query = {
|
|
|
155116
155512
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
155117
155513
|
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
155118
155514
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
155515
|
+
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
155119
155516
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
155120
155517
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
155121
155518
|
jsw?: Maybe<JswQuery>;
|
|
@@ -155397,6 +155794,7 @@ export declare type Query = {
|
|
|
155397
155794
|
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
155398
155795
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
155399
155796
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
155797
|
+
spf_starredItems?: Maybe<SpfStarredItemConnection>;
|
|
155400
155798
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
155401
155799
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
155402
155800
|
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
@@ -155567,6 +155965,21 @@ export declare type QueryAdmin_AppModulesForAppsArgs = {
|
|
|
155567
155965
|
appIdentifiers: Array<AdminAppModulesKey>;
|
|
155568
155966
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
155569
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
|
+
};
|
|
155570
155983
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
155571
155984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155572
155985
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155629,6 +156042,14 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
155629
156042
|
orgId: Scalars['ID']['input'];
|
|
155630
156043
|
principal: Scalars['ID']['input'];
|
|
155631
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
|
+
};
|
|
155632
156053
|
export declare type QueryAdmin_GroupArgs = {
|
|
155633
156054
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
155634
156055
|
};
|
|
@@ -155810,6 +156231,12 @@ export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
|
155810
156231
|
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
155811
156232
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
155812
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
|
+
};
|
|
155813
156240
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
155814
156241
|
cloudId: Scalars['String']['input'];
|
|
155815
156242
|
id: Scalars['ID']['input'];
|
|
@@ -155817,6 +156244,11 @@ export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
155817
156244
|
export declare type QueryAgentStudio_AgentsByIdsArgs = {
|
|
155818
156245
|
ids: Array<Scalars['ID']['input']>;
|
|
155819
156246
|
};
|
|
156247
|
+
export declare type QueryAgentStudio_AuthReadinessForAgentArgs = {
|
|
156248
|
+
agentId: Scalars['ID']['input'];
|
|
156249
|
+
cloudId: Scalars['String']['input'];
|
|
156250
|
+
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
156251
|
+
};
|
|
155820
156252
|
export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
|
|
155821
156253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155822
156254
|
cloudId: Scalars['String']['input'];
|
|
@@ -158837,6 +159269,10 @@ export declare type QueryGraphIntegration_SkillArgs = {
|
|
|
158837
159269
|
contextAri: Scalars['ID']['input'];
|
|
158838
159270
|
skillAri: Scalars['ID']['input'];
|
|
158839
159271
|
};
|
|
159272
|
+
export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
159273
|
+
contextAri: Scalars['ID']['input'];
|
|
159274
|
+
dimension: GraphIntegrationSkillDimension;
|
|
159275
|
+
};
|
|
158840
159276
|
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
158841
159277
|
contextAri: Scalars['ID']['input'];
|
|
158842
159278
|
skillAris: Array<Scalars['ID']['input']>;
|
|
@@ -159313,6 +159749,9 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
159313
159749
|
conversationAri: Scalars['ID']['input'];
|
|
159314
159750
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159315
159751
|
};
|
|
159752
|
+
export declare type QueryJsmConversation_SettingArgs = {
|
|
159753
|
+
projectAri: Scalars['String']['input'];
|
|
159754
|
+
};
|
|
159316
159755
|
export declare type QueryJsmConversation_SettingsArgs = {
|
|
159317
159756
|
projectAri: Scalars['String']['input'];
|
|
159318
159757
|
};
|
|
@@ -159367,6 +159806,7 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
159367
159806
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159368
159807
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
159369
159808
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159809
|
+
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
159370
159810
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
159371
159811
|
workspaceAri: Scalars['ID']['input'];
|
|
159372
159812
|
};
|
|
@@ -160325,6 +160765,12 @@ export declare type QuerySpf_PlansArgs = {
|
|
|
160325
160765
|
export declare type QuerySpf_PlansByIdsArgs = {
|
|
160326
160766
|
ids: Array<Scalars['ID']['input']>;
|
|
160327
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
|
+
};
|
|
160328
160774
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
160329
160775
|
appId: Scalars['ID']['input'];
|
|
160330
160776
|
installationId: Scalars['ID']['input'];
|
|
@@ -163259,6 +163705,7 @@ export declare enum Scope {
|
|
|
163259
163705
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
163260
163706
|
ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
|
|
163261
163707
|
ReadContainer = "READ_CONTAINER",
|
|
163708
|
+
ReadCsmTwgCli = "READ_CSM_TWG_CLI",
|
|
163262
163709
|
ReadCustomer = "READ_CUSTOMER",
|
|
163263
163710
|
ReadDesign = "READ_DESIGN",
|
|
163264
163711
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
@@ -185783,6 +186230,33 @@ export declare type SpfRevokeEntityPermissionPayload = Payload & {
|
|
|
185783
186230
|
permission?: Maybe<SpfEntityPermissionEntry>;
|
|
185784
186231
|
success: Scalars['Boolean']['output'];
|
|
185785
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;
|
|
185786
186260
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
185787
186261
|
data: Scalars['String']['input'];
|
|
185788
186262
|
id: Scalars['ID']['input'];
|
|
@@ -192125,6 +192599,11 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
192125
192599
|
cursor: Scalars['String']['output'];
|
|
192126
192600
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
192127
192601
|
};
|
|
192602
|
+
export declare type TownsquareProjectUserViews = TownsquareUserViews & {
|
|
192603
|
+
__typename?: 'TownsquareProjectUserViews';
|
|
192604
|
+
containerId: Scalars['ID']['output'];
|
|
192605
|
+
projectUpdateId: Scalars['ID']['output'];
|
|
192606
|
+
};
|
|
192128
192607
|
export declare type TownsquareProjectsAddGoalLink = {
|
|
192129
192608
|
goalId: Scalars['ID']['input'];
|
|
192130
192609
|
projectId: Scalars['ID']['input'];
|
|
@@ -192159,6 +192638,7 @@ export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
|
|
|
192159
192638
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
192160
192639
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192161
192640
|
projectId: Scalars['ID']['input'];
|
|
192641
|
+
role?: InputMaybe<TownsquareProjectAccessRoleInput>;
|
|
192162
192642
|
users: Array<Scalars['ID']['input']>;
|
|
192163
192643
|
};
|
|
192164
192644
|
export declare type TownsquareProjectsAddMembersPayload = {
|
|
@@ -192171,6 +192651,7 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
192171
192651
|
};
|
|
192172
192652
|
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
192173
192653
|
projectId: Scalars['ID']['input'];
|
|
192654
|
+
role?: InputMaybe<TownsquareProjectAccessRoleInput>;
|
|
192174
192655
|
teamId: Scalars['ID']['input'];
|
|
192175
192656
|
userIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
192176
192657
|
};
|
|
@@ -192181,6 +192662,16 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
192181
192662
|
project?: Maybe<TownsquareProject>;
|
|
192182
192663
|
success: Scalars['Boolean']['output'];
|
|
192183
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
|
+
};
|
|
192184
192675
|
export declare type TownsquareProjectsAppSettings = {
|
|
192185
192676
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
192186
192677
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -193489,6 +193980,21 @@ export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
|
193489
193980
|
errors?: Maybe<Array<MutationError>>;
|
|
193490
193981
|
success: Scalars['Boolean']['output'];
|
|
193491
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
|
+
};
|
|
193492
193998
|
export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
193493
193999
|
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
193494
194000
|
card?: Maybe<TrelloActionCardEntity>;
|
|
@@ -194863,6 +195369,29 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
194863
195369
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
194864
195370
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
194865
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
|
+
};
|
|
194866
195395
|
export declare type TrelloConvertBoardToTemplateInput = {
|
|
194867
195396
|
boardId: Scalars['ID']['input'];
|
|
194868
195397
|
};
|
|
@@ -196240,12 +196769,14 @@ export declare type TrelloMutationApi = {
|
|
|
196240
196769
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
196241
196770
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
196242
196771
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
196772
|
+
addOnboardingInboxCards?: Maybe<TrelloAddOnboardingInboxCardsPayload>;
|
|
196243
196773
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
196244
196774
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
196245
196775
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
196246
196776
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
196247
196777
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
196248
196778
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
196779
|
+
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
196249
196780
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
196250
196781
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
196251
196782
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -196354,6 +196885,9 @@ export declare type TrelloMutationApiAddLabelsToCardArgs = {
|
|
|
196354
196885
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
196355
196886
|
input: TrelloAddMemberInput;
|
|
196356
196887
|
};
|
|
196888
|
+
export declare type TrelloMutationApiAddOnboardingInboxCardsArgs = {
|
|
196889
|
+
input: TrelloAddOnboardingInboxCardsInput;
|
|
196890
|
+
};
|
|
196357
196891
|
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
196358
196892
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
196359
196893
|
};
|
|
@@ -196372,6 +196906,9 @@ export declare type TrelloMutationApiCloseBoardArgs = {
|
|
|
196372
196906
|
export declare type TrelloMutationApiCloseCardArgs = {
|
|
196373
196907
|
input: TrelloCloseCardInput;
|
|
196374
196908
|
};
|
|
196909
|
+
export declare type TrelloMutationApiCompleteOnboardingArgs = {
|
|
196910
|
+
input: TrelloCompleteOnboardingInput;
|
|
196911
|
+
};
|
|
196375
196912
|
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
196376
196913
|
input: TrelloConvertBoardToTemplateInput;
|
|
196377
196914
|
};
|
|
@@ -196748,6 +197285,29 @@ export declare type TrelloPlannerBaseCardUpdated = {
|
|
|
196748
197285
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
196749
197286
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
196750
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
|
+
};
|
|
196751
197311
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
196752
197312
|
__typename?: 'TrelloPlannerCalendar';
|
|
196753
197313
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -197151,8 +197711,13 @@ export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
|
197151
197711
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
197152
197712
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
197153
197713
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
197714
|
+
boardOverrides?: Maybe<TrelloPlannerBoardOverrideConnection>;
|
|
197154
197715
|
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
197155
197716
|
};
|
|
197717
|
+
export declare type TrelloPlannerDueDateCardsSettingsBoardOverridesArgs = {
|
|
197718
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197720
|
+
};
|
|
197156
197721
|
export declare type TrelloPlannerEventCardConnection = {
|
|
197157
197722
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
197158
197723
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|