@forge/cli-shared 8.19.0-next.7 → 8.19.0
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 +26 -0
- package/out/graphql/graphql-types.d.ts +718 -30
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +91 -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 & {
|
|
@@ -1441,6 +1442,13 @@ export declare type AvpGetDashboardTemplatesInput = {
|
|
|
1441
1442
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1442
1443
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1443
1444
|
};
|
|
1445
|
+
export declare type AvpGetReadOnlyDashboardInput = {
|
|
1446
|
+
cloudId: Scalars['ID']['input'];
|
|
1447
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
1448
|
+
productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
|
|
1449
|
+
templateId: Scalars['String']['input'];
|
|
1450
|
+
workspaceAri: Scalars['ID']['input'];
|
|
1451
|
+
};
|
|
1444
1452
|
export declare type AvpHotTierFilterConfig = {
|
|
1445
1453
|
__typename?: 'AVPHotTierFilterConfig';
|
|
1446
1454
|
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
@@ -1580,6 +1588,7 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
|
|
|
1580
1588
|
export declare type AvpPermissionsGetCapabilitiesInput = {
|
|
1581
1589
|
capabilityRequests?: InputMaybe<Array<AvpPermissionsCapabilityEntry>>;
|
|
1582
1590
|
cloudId: Scalars['ID']['input'];
|
|
1591
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1583
1592
|
};
|
|
1584
1593
|
export declare type AvpPermissionsGetCapabilitiesResponse = {
|
|
1585
1594
|
__typename?: 'AVPPermissionsGetCapabilitiesResponse';
|
|
@@ -1604,6 +1613,7 @@ export declare type AvpPermissionsHasCapabilityInput = {
|
|
|
1604
1613
|
capabilityId: Scalars['String']['input'];
|
|
1605
1614
|
cloudId: Scalars['ID']['input'];
|
|
1606
1615
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
1616
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1607
1617
|
};
|
|
1608
1618
|
export declare type AvpPermissionsHasCapabilityResponse = {
|
|
1609
1619
|
__typename?: 'AVPPermissionsHasCapabilityResponse';
|
|
@@ -2596,6 +2606,11 @@ export declare type AdminAiPolicyEdge = {
|
|
|
2596
2606
|
cursor: Scalars['String']['output'];
|
|
2597
2607
|
node: AdminAiPolicy;
|
|
2598
2608
|
};
|
|
2609
|
+
export declare enum AdminAiPolicyStatus {
|
|
2610
|
+
Disabled = "DISABLED",
|
|
2611
|
+
Enabled = "ENABLED",
|
|
2612
|
+
OptOut = "OPT_OUT"
|
|
2613
|
+
}
|
|
2599
2614
|
export declare type AdminAnnouncementBannerFeature = {
|
|
2600
2615
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
2601
2616
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -2713,6 +2728,65 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
|
|
|
2713
2728
|
errors?: Maybe<Array<MutationError>>;
|
|
2714
2729
|
success: Scalars['Boolean']['output'];
|
|
2715
2730
|
};
|
|
2731
|
+
export declare type AdminAuditLogBackgroundQueryConnection = {
|
|
2732
|
+
__typename?: 'AdminAuditLogBackgroundQueryConnection';
|
|
2733
|
+
edges?: Maybe<Array<AdminAuditLogBackgroundQueryListEdge>>;
|
|
2734
|
+
pageInfo: PageInfo;
|
|
2735
|
+
};
|
|
2736
|
+
export declare type AdminAuditLogBackgroundQueryFilterInput = {
|
|
2737
|
+
actions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2738
|
+
actors?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2739
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
2740
|
+
ips?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2741
|
+
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2742
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
2743
|
+
};
|
|
2744
|
+
export declare type AdminAuditLogBackgroundQueryFiltersType = {
|
|
2745
|
+
__typename?: 'AdminAuditLogBackgroundQueryFiltersType';
|
|
2746
|
+
actions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2747
|
+
actors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2748
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
2749
|
+
ips?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2750
|
+
locations?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2751
|
+
to?: Maybe<Scalars['String']['output']>;
|
|
2752
|
+
};
|
|
2753
|
+
export declare type AdminAuditLogBackgroundQueryListEdge = {
|
|
2754
|
+
__typename?: 'AdminAuditLogBackgroundQueryListEdge';
|
|
2755
|
+
cursor: Scalars['String']['output'];
|
|
2756
|
+
node?: Maybe<Array<AdminAuditLogBackgroundQueryResponse>>;
|
|
2757
|
+
};
|
|
2758
|
+
export declare type AdminAuditLogBackgroundQueryPlanConnection = {
|
|
2759
|
+
__typename?: 'AdminAuditLogBackgroundQueryPlanConnection';
|
|
2760
|
+
edges?: Maybe<Array<AdminAuditLogBackgroundQueryPlanEdge>>;
|
|
2761
|
+
pageInfo: PageInfo;
|
|
2762
|
+
};
|
|
2763
|
+
export declare type AdminAuditLogBackgroundQueryPlanEdge = {
|
|
2764
|
+
__typename?: 'AdminAuditLogBackgroundQueryPlanEdge';
|
|
2765
|
+
cursor: Scalars['String']['output'];
|
|
2766
|
+
node: AdminAuditLogBackgroundQueryType;
|
|
2767
|
+
};
|
|
2768
|
+
export declare type AdminAuditLogBackgroundQueryResponse = {
|
|
2769
|
+
__typename?: 'AdminAuditLogBackgroundQueryResponse';
|
|
2770
|
+
createdAt: Scalars['String']['output'];
|
|
2771
|
+
createdBy: Scalars['String']['output'];
|
|
2772
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2773
|
+
filters: AdminAuditLogBackgroundQueryFiltersType;
|
|
2774
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2775
|
+
queryId: Scalars['String']['output'];
|
|
2776
|
+
status: AdminAuditLogBackgroundQueryStatusType;
|
|
2777
|
+
updatedAt: Scalars['String']['output'];
|
|
2778
|
+
};
|
|
2779
|
+
export declare enum AdminAuditLogBackgroundQueryStatusType {
|
|
2780
|
+
Cancelled = "CANCELLED",
|
|
2781
|
+
Completed = "COMPLETED",
|
|
2782
|
+
Failed = "FAILED",
|
|
2783
|
+
InProgress = "IN_PROGRESS",
|
|
2784
|
+
Queued = "QUEUED"
|
|
2785
|
+
}
|
|
2786
|
+
export declare enum AdminAuditLogBackgroundQueryType {
|
|
2787
|
+
Background = "BACKGROUND",
|
|
2788
|
+
Sync = "SYNC"
|
|
2789
|
+
}
|
|
2716
2790
|
export declare type AdminAuditLogContainer = {
|
|
2717
2791
|
id: Scalars['ID']['input'];
|
|
2718
2792
|
type: AdminAuditLogContainerType;
|
|
@@ -2965,6 +3039,7 @@ export declare type AdminCreateAiPolicyInput = {
|
|
|
2965
3039
|
consented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2966
3040
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2967
3041
|
resources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3042
|
+
status?: InputMaybe<AdminAiPolicyStatus>;
|
|
2968
3043
|
};
|
|
2969
3044
|
export declare type AdminCreateAiPolicyResponsePayload = Payload & {
|
|
2970
3045
|
__typename?: 'AdminCreateAiPolicyResponsePayload';
|
|
@@ -3081,6 +3156,7 @@ export declare type AdminEntitlement = {
|
|
|
3081
3156
|
};
|
|
3082
3157
|
export declare type AdminEntitlementDetails = AdminCcpEntitlement | AdminHamsEntitlement;
|
|
3083
3158
|
export declare type AdminErrorExtension = {
|
|
3159
|
+
downstreamService?: Maybe<Scalars['String']['output']>;
|
|
3084
3160
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
3085
3161
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
3086
3162
|
};
|
|
@@ -3378,6 +3454,11 @@ export declare type AdminMfaConfig = {
|
|
|
3378
3454
|
__typename?: 'AdminMfaConfig';
|
|
3379
3455
|
isEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
3380
3456
|
};
|
|
3457
|
+
export declare type AdminMutationError = {
|
|
3458
|
+
__typename?: 'AdminMutationError';
|
|
3459
|
+
extensions?: Maybe<AdminApplicationErrorExtension>;
|
|
3460
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3461
|
+
};
|
|
3381
3462
|
export declare enum AdminOperation {
|
|
3382
3463
|
And = "AND",
|
|
3383
3464
|
Nor = "NOR"
|
|
@@ -3846,7 +3927,7 @@ export declare type AdminUnitCreateInput = {
|
|
|
3846
3927
|
};
|
|
3847
3928
|
export declare type AdminUnitCreatePayload = {
|
|
3848
3929
|
__typename?: 'AdminUnitCreatePayload';
|
|
3849
|
-
errors?: Maybe<Array<
|
|
3930
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3850
3931
|
requestId?: Maybe<Scalars['ID']['output']>;
|
|
3851
3932
|
success: Scalars['Boolean']['output'];
|
|
3852
3933
|
};
|
|
@@ -4441,6 +4522,11 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
4441
4522
|
edges: Array<AgentStudioAgentEdge>;
|
|
4442
4523
|
pageInfo: PageInfo;
|
|
4443
4524
|
};
|
|
4525
|
+
export declare type AgentStudioApp = {
|
|
4526
|
+
displayName: Scalars['String']['output'];
|
|
4527
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
4528
|
+
integrationKey: Scalars['String']['output'];
|
|
4529
|
+
};
|
|
4444
4530
|
export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfiguration & Node & {
|
|
4445
4531
|
__typename?: 'AgentStudioAssistant';
|
|
4446
4532
|
accessIdentityMode?: Maybe<AgentStudioAccessIdentityMode>;
|
|
@@ -4545,6 +4631,10 @@ export declare type AgentStudioAssistantScenario = AgentStudioBaseConfiguration
|
|
|
4545
4631
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
4546
4632
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4547
4633
|
};
|
|
4634
|
+
export declare type AgentStudioAuthReadinessResult = {
|
|
4635
|
+
__typename?: 'AgentStudioAuthReadinessResult';
|
|
4636
|
+
firstPartyApps: Array<AgentStudioFirstPartyApp>;
|
|
4637
|
+
};
|
|
4548
4638
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
4549
4639
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
4550
4640
|
};
|
|
@@ -4912,6 +5002,18 @@ export declare type AgentStudioEvaluationSummary = {
|
|
|
4912
5002
|
totalItems: Scalars['Int']['output'];
|
|
4913
5003
|
totalRunTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
4914
5004
|
};
|
|
5005
|
+
export declare enum AgentStudioFirstPartyAccessStatus {
|
|
5006
|
+
HasAccess = "HAS_ACCESS",
|
|
5007
|
+
NoAccess = "NO_ACCESS",
|
|
5008
|
+
Unknown = "UNKNOWN"
|
|
5009
|
+
}
|
|
5010
|
+
export declare type AgentStudioFirstPartyApp = AgentStudioApp & {
|
|
5011
|
+
__typename?: 'AgentStudioFirstPartyApp';
|
|
5012
|
+
accessStatus: AgentStudioFirstPartyAccessStatus;
|
|
5013
|
+
displayName: Scalars['String']['output'];
|
|
5014
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
5015
|
+
integrationKey: Scalars['String']['output'];
|
|
5016
|
+
};
|
|
4915
5017
|
export declare type AgentStudioHasVersionCapability = {
|
|
4916
5018
|
__typename?: 'AgentStudioHasVersionCapability';
|
|
4917
5019
|
hasVersionCapability?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5690,6 +5792,12 @@ export declare type AgentStudioUpdateUseAgentPermissionModePayload = Payload & {
|
|
|
5690
5792
|
etag?: Maybe<Scalars['String']['output']>;
|
|
5691
5793
|
success: Scalars['Boolean']['output'];
|
|
5692
5794
|
};
|
|
5795
|
+
export declare type AgentStudioUpgradeSchemaPayload = Payload & {
|
|
5796
|
+
__typename?: 'AgentStudioUpgradeSchemaPayload';
|
|
5797
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
5798
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5799
|
+
success: Scalars['Boolean']['output'];
|
|
5800
|
+
};
|
|
5693
5801
|
export declare type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
5694
5802
|
datasetName: Scalars['String']['input'];
|
|
5695
5803
|
file: Scalars['Upload']['input'];
|
|
@@ -5898,6 +6006,7 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
5898
6006
|
activeAgents: Scalars['Int']['output'];
|
|
5899
6007
|
onBreak: Scalars['Int']['output'];
|
|
5900
6008
|
onDuty: Scalars['Int']['output'];
|
|
6009
|
+
totalAgents: Scalars['Int']['output'];
|
|
5901
6010
|
};
|
|
5902
6011
|
export declare type AgentWorkspaceCapacityConnection = {
|
|
5903
6012
|
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
@@ -5946,6 +6055,7 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
5946
6055
|
overloadedCount: Scalars['Int']['output'];
|
|
5947
6056
|
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
5948
6057
|
totalCapacity: Scalars['Int']['output'];
|
|
6058
|
+
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
5949
6059
|
};
|
|
5950
6060
|
export declare type AgentWorkspaceCatalog = {
|
|
5951
6061
|
__typename?: 'AgentWorkspaceCatalog';
|
|
@@ -6496,6 +6606,11 @@ export declare type AgentWorkspaceRecurrenceRuleInput = {
|
|
|
6496
6606
|
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
6497
6607
|
weekOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
|
6498
6608
|
};
|
|
6609
|
+
export declare type AgentWorkspaceResolvedDateRange = {
|
|
6610
|
+
__typename?: 'AgentWorkspaceResolvedDateRange';
|
|
6611
|
+
endTime: Scalars['DateTime']['output'];
|
|
6612
|
+
startTime: Scalars['DateTime']['output'];
|
|
6613
|
+
};
|
|
6499
6614
|
export declare type AgentWorkspaceRestoreSkillInput = {
|
|
6500
6615
|
cloudId: Scalars['ID']['input'];
|
|
6501
6616
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -6619,6 +6734,7 @@ export declare type AgentWorkspaceShiftsConnection = {
|
|
|
6619
6734
|
initialFilters?: Maybe<AgentWorkspaceShiftsAppliedFilters>;
|
|
6620
6735
|
metadata: AgentWorkspaceShiftsMetadata;
|
|
6621
6736
|
pageInfo: AgentWorkspaceAgentsPageInfo;
|
|
6737
|
+
resolvedDateRange?: Maybe<AgentWorkspaceResolvedDateRange>;
|
|
6622
6738
|
summary: AgentWorkspaceShiftsSummary;
|
|
6623
6739
|
};
|
|
6624
6740
|
export declare type AgentWorkspaceShiftsMetadata = {
|
|
@@ -6633,17 +6749,19 @@ export declare type AgentWorkspaceShiftsMetadata = {
|
|
|
6633
6749
|
export declare type AgentWorkspaceShiftsQueryInput = {
|
|
6634
6750
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6635
6751
|
cloudId: Scalars['ID']['input'];
|
|
6636
|
-
endTime
|
|
6752
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6637
6753
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6638
6754
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6639
6755
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6640
6756
|
scheduleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6641
|
-
startTime
|
|
6757
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6642
6758
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6643
6759
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6644
6760
|
};
|
|
6645
6761
|
export declare type AgentWorkspaceShiftsSummary = {
|
|
6646
6762
|
__typename?: 'AgentWorkspaceShiftsSummary';
|
|
6763
|
+
activeAgents: Scalars['Int']['output'];
|
|
6764
|
+
activeShifts: Scalars['Int']['output'];
|
|
6647
6765
|
avgAgentsPerHour: Scalars['Float']['output'];
|
|
6648
6766
|
completedShiftsPercentage: Scalars['Float']['output'];
|
|
6649
6767
|
scheduledAgents: Scalars['Int']['output'];
|
|
@@ -6794,6 +6912,7 @@ export declare type AgentWorkspaceTeamSchedulesConnection = {
|
|
|
6794
6912
|
hasAnyProjectSchedules: Scalars['Boolean']['output'];
|
|
6795
6913
|
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
6796
6914
|
pageInfo: AgentWorkspaceTeamsPageInfo;
|
|
6915
|
+
resolvedDateRange?: Maybe<AgentWorkspaceResolvedDateRange>;
|
|
6797
6916
|
summary: AgentWorkspaceTeamSchedulesSummary;
|
|
6798
6917
|
};
|
|
6799
6918
|
export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
@@ -6803,11 +6922,11 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
|
6803
6922
|
};
|
|
6804
6923
|
export declare type AgentWorkspaceTeamSchedulesQueryInput = {
|
|
6805
6924
|
cloudId: Scalars['ID']['input'];
|
|
6806
|
-
endTime
|
|
6925
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6807
6926
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6808
6927
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6809
6928
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6810
|
-
startTime
|
|
6929
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6811
6930
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6812
6931
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6813
6932
|
};
|
|
@@ -7551,6 +7670,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
7551
7670
|
extensionByKey?: Maybe<AppVersionExtension>;
|
|
7552
7671
|
extensions?: Maybe<AppVersionExtensions>;
|
|
7553
7672
|
id: Scalars['ID']['output'];
|
|
7673
|
+
installationTarget?: Maybe<InstallationTarget>;
|
|
7554
7674
|
installations?: Maybe<AppInstallationByIndexConnection>;
|
|
7555
7675
|
isLatest: Scalars['Boolean']['output'];
|
|
7556
7676
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
@@ -11562,8 +11682,10 @@ export declare type AssetsVerticalAssetTypesTracking = {
|
|
|
11562
11682
|
auditInfo: AssetsVerticalAuditInfo;
|
|
11563
11683
|
cloudId: Scalars['ID']['output'];
|
|
11564
11684
|
id: Scalars['ID']['output'];
|
|
11565
|
-
|
|
11566
|
-
|
|
11685
|
+
objSchema?: Maybe<AssetsSchema>;
|
|
11686
|
+
objSchemaAri: Scalars['ID']['output'];
|
|
11687
|
+
objType?: Maybe<AssetsObjectType>;
|
|
11688
|
+
objTypeAri: Scalars['ID']['output'];
|
|
11567
11689
|
verticalInstantiationCategoryId: Scalars['ID']['output'];
|
|
11568
11690
|
workspaceId: Scalars['ID']['output'];
|
|
11569
11691
|
};
|
|
@@ -11738,7 +11860,6 @@ export declare type AssetsVerticalCreateVerticalInstantiationCategoryInput = {
|
|
|
11738
11860
|
cloudId: Scalars['ID']['input'];
|
|
11739
11861
|
items?: InputMaybe<Array<AssetsVerticalItemSelectionInput>>;
|
|
11740
11862
|
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
11741
|
-
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
11742
11863
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
11743
11864
|
};
|
|
11744
11865
|
export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
@@ -12073,7 +12194,6 @@ export declare type AssetsVerticalUpdateVerticalInstantiationCategoryInput = {
|
|
|
12073
12194
|
cloudId: Scalars['ID']['input'];
|
|
12074
12195
|
id: Scalars['ID']['input'];
|
|
12075
12196
|
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
12076
|
-
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
12077
12197
|
};
|
|
12078
12198
|
export declare type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
12079
12199
|
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput>>;
|
|
@@ -12182,7 +12302,6 @@ export declare type AssetsVerticalVerticalInstantiationCategoryWithSelectionsInp
|
|
|
12182
12302
|
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
12183
12303
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
12184
12304
|
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
12185
|
-
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
12186
12305
|
};
|
|
12187
12306
|
export declare type AssetsVerticalVerticalInstantiationConnection = {
|
|
12188
12307
|
__typename?: 'AssetsVerticalVerticalInstantiationConnection';
|
|
@@ -26271,7 +26390,7 @@ export declare type ConfluenceCommentConnection = {
|
|
|
26271
26390
|
nodes?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
26272
26391
|
pageInfo: ConfluencePageInfo;
|
|
26273
26392
|
};
|
|
26274
|
-
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
26393
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard;
|
|
26275
26394
|
export declare type ConfluenceCommentCountSummary = {
|
|
26276
26395
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
26277
26396
|
total?: Maybe<Scalars['Int']['output']>;
|
|
@@ -26527,6 +26646,14 @@ export declare type ConfluenceContentNativeProperties = {
|
|
|
26527
26646
|
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
26528
26647
|
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
26529
26648
|
};
|
|
26649
|
+
export declare type ConfluenceContentOwnerNotificationRecord = {
|
|
26650
|
+
__typename?: 'ConfluenceContentOwnerNotificationRecord';
|
|
26651
|
+
contentId: Scalars['ID']['output'];
|
|
26652
|
+
message: Scalars['String']['output'];
|
|
26653
|
+
recipientEmail: Scalars['String']['output'];
|
|
26654
|
+
sentAt: Scalars['String']['output'];
|
|
26655
|
+
sentBy: ConfluenceContentPerformanceUser;
|
|
26656
|
+
};
|
|
26530
26657
|
export declare type ConfluenceContentPerformance = {
|
|
26531
26658
|
__typename?: 'ConfluenceContentPerformance';
|
|
26532
26659
|
content: ConfluenceContentPerformanceContent;
|
|
@@ -27551,6 +27678,11 @@ export declare type ConfluenceEnableDefaultSpaceLogoPayload = Payload & {
|
|
|
27551
27678
|
errors?: Maybe<Array<MutationError>>;
|
|
27552
27679
|
success: Scalars['Boolean']['output'];
|
|
27553
27680
|
};
|
|
27681
|
+
export declare type ConfluenceEnableGlobalAnonymousEnforcementPayload = Payload & {
|
|
27682
|
+
__typename?: 'ConfluenceEnableGlobalAnonymousEnforcementPayload';
|
|
27683
|
+
errors: Array<MutationError>;
|
|
27684
|
+
success: Scalars['Boolean']['output'];
|
|
27685
|
+
};
|
|
27554
27686
|
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
27555
27687
|
id: Scalars['ID']['input'];
|
|
27556
27688
|
};
|
|
@@ -29099,6 +29231,16 @@ export declare type ConfluenceNotificationsSettings = {
|
|
|
29099
29231
|
__typename?: 'ConfluenceNotificationsSettings';
|
|
29100
29232
|
emailSettings?: Maybe<ConfluenceEmailSettings>;
|
|
29101
29233
|
};
|
|
29234
|
+
export declare type ConfluenceNotifyContentOwnerInput = {
|
|
29235
|
+
contentId: Scalars['ID']['input'];
|
|
29236
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
29237
|
+
};
|
|
29238
|
+
export declare type ConfluenceNotifyContentOwnerPayload = Payload & {
|
|
29239
|
+
__typename?: 'ConfluenceNotifyContentOwnerPayload';
|
|
29240
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29241
|
+
notificationRecord?: Maybe<Array<Maybe<ConfluenceContentOwnerNotificationRecord>>>;
|
|
29242
|
+
success: Scalars['Boolean']['output'];
|
|
29243
|
+
};
|
|
29102
29244
|
export declare type ConfluenceOperationCheck = {
|
|
29103
29245
|
__typename?: 'ConfluenceOperationCheck';
|
|
29104
29246
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -37692,6 +37834,7 @@ export declare type DevAiCancelRunningAutofixScanInput = {
|
|
|
37692
37834
|
export declare type DevAiClientConfig = {
|
|
37693
37835
|
__typename?: 'DevAiClientConfig';
|
|
37694
37836
|
availableModels: Array<DevAiAvailableModel>;
|
|
37837
|
+
defaultModelId?: Maybe<Scalars['String']['output']>;
|
|
37695
37838
|
enableDynamicModelPricing: Scalars['Boolean']['output'];
|
|
37696
37839
|
};
|
|
37697
37840
|
export declare type DevAiContainerConfig = {
|
|
@@ -38044,6 +38187,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
38044
38187
|
cloudId: Scalars['ID']['input'];
|
|
38045
38188
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
38046
38189
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
38190
|
+
modelId?: InputMaybe<Scalars['String']['input']>;
|
|
38047
38191
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
38048
38192
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
38049
38193
|
repository: DevAiRovoDevRepositoryInput;
|
|
@@ -38055,6 +38199,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
|
|
|
38055
38199
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
38056
38200
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
38057
38201
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
38202
|
+
modelId?: InputMaybe<Scalars['String']['input']>;
|
|
38058
38203
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
38059
38204
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
38060
38205
|
repository: DevAiRovoDevRepositoryInput;
|
|
@@ -46038,6 +46183,18 @@ export declare enum GraphIntegrationSkillColor {
|
|
|
46038
46183
|
Teal = "TEAL",
|
|
46039
46184
|
Yellow = "YELLOW"
|
|
46040
46185
|
}
|
|
46186
|
+
export declare enum GraphIntegrationSkillDimension {
|
|
46187
|
+
Products = "PRODUCTS"
|
|
46188
|
+
}
|
|
46189
|
+
export declare type GraphIntegrationSkillDimensionItem = {
|
|
46190
|
+
displayName: Scalars['String']['output'];
|
|
46191
|
+
id: Scalars['String']['output'];
|
|
46192
|
+
};
|
|
46193
|
+
export declare type GraphIntegrationSkillDimensionMetadata = {
|
|
46194
|
+
__typename?: 'GraphIntegrationSkillDimensionMetadata';
|
|
46195
|
+
items: Array<GraphIntegrationSkillDimensionItem>;
|
|
46196
|
+
totalCount: Scalars['Int']['output'];
|
|
46197
|
+
};
|
|
46041
46198
|
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
46042
46199
|
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
46043
46200
|
color?: Maybe<GraphIntegrationSkillColor>;
|
|
@@ -46064,6 +46221,12 @@ export declare type GraphIntegrationSkillMetadata = {
|
|
|
46064
46221
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46065
46222
|
version: Scalars['String']['output'];
|
|
46066
46223
|
};
|
|
46224
|
+
export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDimensionItem & {
|
|
46225
|
+
__typename?: 'GraphIntegrationSkillProductItem';
|
|
46226
|
+
displayName: Scalars['String']['output'];
|
|
46227
|
+
iconUrl: Scalars['String']['output'];
|
|
46228
|
+
id: Scalars['String']['output'];
|
|
46229
|
+
};
|
|
46067
46230
|
export declare type GraphIntegrationSkillTool = {
|
|
46068
46231
|
__typename?: 'GraphIntegrationSkillTool';
|
|
46069
46232
|
id: Scalars['String']['output'];
|
|
@@ -49693,6 +49856,8 @@ export declare type GraphStore = {
|
|
|
49693
49856
|
userCreatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection>;
|
|
49694
49857
|
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
49695
49858
|
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
49859
|
+
userCreatedExternalVideo?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoConnection>;
|
|
49860
|
+
userCreatedExternalVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection>;
|
|
49696
49861
|
userCreatedFocusArea?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaConnection>;
|
|
49697
49862
|
userCreatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection>;
|
|
49698
49863
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
@@ -49860,6 +50025,7 @@ export declare type GraphStore = {
|
|
|
49860
50025
|
userUpdatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogConnection>;
|
|
49861
50026
|
userUpdatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogInverseConnection>;
|
|
49862
50027
|
userUpdatedThirdPartyPullRequestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseConnection>;
|
|
50028
|
+
userUpdatedThirdPartyVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection>;
|
|
49863
50029
|
userUpdatedVideo?: Maybe<GraphStoreSimplifiedUserUpdatedVideoConnection>;
|
|
49864
50030
|
userUpdatedVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedVideoInverseConnection>;
|
|
49865
50031
|
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
@@ -49882,6 +50048,7 @@ export declare type GraphStore = {
|
|
|
49882
50048
|
userViewedProjectUpdateBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
49883
50049
|
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
49884
50050
|
userViewedProjectUpdateInverseBatch?: Maybe<GraphStoreBatchUserViewedProjectUpdateConnection>;
|
|
50051
|
+
userViewedThirdPartyVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection>;
|
|
49885
50052
|
userViewedVideo?: Maybe<GraphStoreSimplifiedUserViewedVideoConnection>;
|
|
49886
50053
|
userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
|
|
49887
50054
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
@@ -56551,6 +56718,22 @@ export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
|
|
|
56551
56718
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56552
56719
|
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
56553
56720
|
};
|
|
56721
|
+
export declare type GraphStoreUserCreatedExternalVideoArgs = {
|
|
56722
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56723
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56724
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56725
|
+
id: Scalars['ID']['input'];
|
|
56726
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56727
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalVideoSortInput>;
|
|
56728
|
+
};
|
|
56729
|
+
export declare type GraphStoreUserCreatedExternalVideoInverseArgs = {
|
|
56730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56731
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56732
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56733
|
+
id: Scalars['ID']['input'];
|
|
56734
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56735
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalVideoSortInput>;
|
|
56736
|
+
};
|
|
56554
56737
|
export declare type GraphStoreUserCreatedFocusAreaArgs = {
|
|
56555
56738
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56556
56739
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57887,6 +58070,14 @@ export declare type GraphStoreUserUpdatedThirdPartyPullRequestInverseArgs = {
|
|
|
57887
58070
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57888
58071
|
sort?: InputMaybe<GraphStoreUserUpdatedThirdPartyPullRequestSortInput>;
|
|
57889
58072
|
};
|
|
58073
|
+
export declare type GraphStoreUserUpdatedThirdPartyVideoInverseArgs = {
|
|
58074
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58075
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58076
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58077
|
+
id: Scalars['ID']['input'];
|
|
58078
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58079
|
+
sort?: InputMaybe<GraphStoreUserUpdatedThirdPartyVideoSortInput>;
|
|
58080
|
+
};
|
|
57890
58081
|
export declare type GraphStoreUserUpdatedVideoArgs = {
|
|
57891
58082
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57892
58083
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58059,6 +58250,14 @@ export declare type GraphStoreUserViewedProjectUpdateInverseBatchArgs = {
|
|
|
58059
58250
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58060
58251
|
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
58061
58252
|
};
|
|
58253
|
+
export declare type GraphStoreUserViewedThirdPartyVideoInverseArgs = {
|
|
58254
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58255
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58256
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58257
|
+
id: Scalars['ID']['input'];
|
|
58258
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58259
|
+
sort?: InputMaybe<GraphStoreUserViewedThirdPartyVideoSortInput>;
|
|
58260
|
+
};
|
|
58062
58261
|
export declare type GraphStoreUserViewedVideoArgs = {
|
|
58063
58262
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58064
58263
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76011,6 +76210,34 @@ export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
|
|
|
76011
76210
|
};
|
|
76012
76211
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76013
76212
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestUnion = ExternalTest;
|
|
76213
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoConnection = HasPageInfo & {
|
|
76214
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoConnection';
|
|
76215
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalVideoEdge>>>;
|
|
76216
|
+
pageInfo: PageInfo;
|
|
76217
|
+
};
|
|
76218
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoEdge = {
|
|
76219
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoEdge';
|
|
76220
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76221
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76222
|
+
id: Scalars['ID']['output'];
|
|
76223
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76224
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoUnion>;
|
|
76225
|
+
};
|
|
76226
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection = HasPageInfo & {
|
|
76227
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoInverseConnection';
|
|
76228
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseEdge>>>;
|
|
76229
|
+
pageInfo: PageInfo;
|
|
76230
|
+
};
|
|
76231
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoInverseEdge = {
|
|
76232
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalVideoInverseEdge';
|
|
76233
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76234
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76235
|
+
id: Scalars['ID']['output'];
|
|
76236
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76237
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalVideoInverseUnion>;
|
|
76238
|
+
};
|
|
76239
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76240
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalVideoUnion = ExternalVideo;
|
|
76014
76241
|
export declare type GraphStoreSimplifiedUserCreatedFocusAreaConnection = HasPageInfo & {
|
|
76015
76242
|
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaConnection';
|
|
76016
76243
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaEdge>>>;
|
|
@@ -78321,6 +78548,20 @@ export declare type GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseE
|
|
|
78321
78548
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseUnion>;
|
|
78322
78549
|
};
|
|
78323
78550
|
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyPullRequestInverseUnion = ThirdPartyUser;
|
|
78551
|
+
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
78552
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseConnection';
|
|
78553
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseEdge>>>;
|
|
78554
|
+
pageInfo: PageInfo;
|
|
78555
|
+
};
|
|
78556
|
+
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseEdge = {
|
|
78557
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseEdge';
|
|
78558
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78559
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78560
|
+
id: Scalars['ID']['output'];
|
|
78561
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78562
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseUnion>;
|
|
78563
|
+
};
|
|
78564
|
+
export declare type GraphStoreSimplifiedUserUpdatedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
78324
78565
|
export declare type GraphStoreSimplifiedUserUpdatedVideoConnection = HasPageInfo & {
|
|
78325
78566
|
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoConnection';
|
|
78326
78567
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedVideoEdge>>>;
|
|
@@ -78573,6 +78814,20 @@ export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
|
78573
78814
|
};
|
|
78574
78815
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
78575
78816
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateUnion = TownsquareProjectUpdate;
|
|
78817
|
+
export declare type GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
78818
|
+
__typename?: 'GraphStoreSimplifiedUserViewedThirdPartyVideoInverseConnection';
|
|
78819
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseEdge>>>;
|
|
78820
|
+
pageInfo: PageInfo;
|
|
78821
|
+
};
|
|
78822
|
+
export declare type GraphStoreSimplifiedUserViewedThirdPartyVideoInverseEdge = {
|
|
78823
|
+
__typename?: 'GraphStoreSimplifiedUserViewedThirdPartyVideoInverseEdge';
|
|
78824
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78825
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78826
|
+
id: Scalars['ID']['output'];
|
|
78827
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78828
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedThirdPartyVideoInverseUnion>;
|
|
78829
|
+
};
|
|
78830
|
+
export declare type GraphStoreSimplifiedUserViewedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
78576
78831
|
export declare type GraphStoreSimplifiedUserViewedVideoConnection = HasPageInfo & {
|
|
78577
78832
|
__typename?: 'GraphStoreSimplifiedUserViewedVideoConnection';
|
|
78578
78833
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoEdge>>>;
|
|
@@ -79691,6 +79946,9 @@ export declare type GraphStoreUserCreatedExternalSpaceSortInput = {
|
|
|
79691
79946
|
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
79692
79947
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79693
79948
|
};
|
|
79949
|
+
export declare type GraphStoreUserCreatedExternalVideoSortInput = {
|
|
79950
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79951
|
+
};
|
|
79694
79952
|
export declare type GraphStoreUserCreatedFocusAreaSortInput = {
|
|
79695
79953
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79696
79954
|
};
|
|
@@ -79989,6 +80247,9 @@ export declare type GraphStoreUserUpdatedIssueWorklogSortInput = {
|
|
|
79989
80247
|
export declare type GraphStoreUserUpdatedThirdPartyPullRequestSortInput = {
|
|
79990
80248
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79991
80249
|
};
|
|
80250
|
+
export declare type GraphStoreUserUpdatedThirdPartyVideoSortInput = {
|
|
80251
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80252
|
+
};
|
|
79992
80253
|
export declare type GraphStoreUserUpdatedVideoSortInput = {
|
|
79993
80254
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79994
80255
|
};
|
|
@@ -80019,6 +80280,9 @@ export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
|
80019
80280
|
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
80020
80281
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80021
80282
|
};
|
|
80283
|
+
export declare type GraphStoreUserViewedThirdPartyVideoSortInput = {
|
|
80284
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80285
|
+
};
|
|
80022
80286
|
export declare type GraphStoreUserViewedVideoSortInput = {
|
|
80023
80287
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80024
80288
|
};
|
|
@@ -80147,6 +80411,8 @@ export declare type GraphStoreV2 = {
|
|
|
80147
80411
|
atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
|
|
80148
80412
|
atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
|
|
80149
80413
|
atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
|
|
80414
|
+
atlassianUserCreatedExternalVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection>;
|
|
80415
|
+
atlassianUserCreatedExternalVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection>;
|
|
80150
80416
|
atlassianUserCreatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection>;
|
|
80151
80417
|
atlassianUserCreatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection>;
|
|
80152
80418
|
atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
|
|
@@ -80618,6 +80884,8 @@ export declare type GraphStoreV2 = {
|
|
|
80618
80884
|
externalUserUpdatedExternalTestStatus?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusConnection>;
|
|
80619
80885
|
externalUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseConnection>;
|
|
80620
80886
|
externalUserUpdatedThirdPartyPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseConnection>;
|
|
80887
|
+
externalUserUpdatedThirdPartyVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection>;
|
|
80888
|
+
externalUserViewedThirdPartyVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection>;
|
|
80621
80889
|
externalVideoHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection>;
|
|
80622
80890
|
externalVideoHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceInverseConnection>;
|
|
80623
80891
|
externalWorkerFillsExternalPosition?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection>;
|
|
@@ -81589,6 +81857,20 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
|
|
|
81589
81857
|
id: Scalars['ID']['input'];
|
|
81590
81858
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
|
|
81591
81859
|
};
|
|
81860
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoArgs = {
|
|
81861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81862
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81863
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81864
|
+
id: Scalars['ID']['input'];
|
|
81865
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalVideoSortInput>;
|
|
81866
|
+
};
|
|
81867
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoInverseArgs = {
|
|
81868
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81869
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81870
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81871
|
+
id: Scalars['ID']['input'];
|
|
81872
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalVideoSortInput>;
|
|
81873
|
+
};
|
|
81592
81874
|
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaArgs = {
|
|
81593
81875
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81594
81876
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -84899,6 +85181,20 @@ export declare type GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestInverseA
|
|
|
84899
85181
|
id: Scalars['ID']['input'];
|
|
84900
85182
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestSortInput>;
|
|
84901
85183
|
};
|
|
85184
|
+
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyVideoInverseArgs = {
|
|
85185
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85186
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85187
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85188
|
+
id: Scalars['ID']['input'];
|
|
85189
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedThirdPartyVideoSortInput>;
|
|
85190
|
+
};
|
|
85191
|
+
export declare type GraphStoreV2ExternalUserViewedThirdPartyVideoInverseArgs = {
|
|
85192
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85193
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85194
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85195
|
+
id: Scalars['ID']['input'];
|
|
85196
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserViewedThirdPartyVideoSortInput>;
|
|
85197
|
+
};
|
|
84902
85198
|
export declare type GraphStoreV2ExternalVideoHasExternalSpaceArgs = {
|
|
84903
85199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84904
85200
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86619,6 +86915,9 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput
|
|
|
86619
86915
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
|
|
86620
86916
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86621
86917
|
};
|
|
86918
|
+
export declare type GraphStoreV2AtlassianUserCreatedExternalVideoSortInput = {
|
|
86919
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86920
|
+
};
|
|
86622
86921
|
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput = {
|
|
86623
86922
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86624
86923
|
};
|
|
@@ -88444,6 +88743,12 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput =
|
|
|
88444
88743
|
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyPullRequestSortInput = {
|
|
88445
88744
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88446
88745
|
};
|
|
88746
|
+
export declare type GraphStoreV2ExternalUserUpdatedThirdPartyVideoSortInput = {
|
|
88747
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88748
|
+
};
|
|
88749
|
+
export declare type GraphStoreV2ExternalUserViewedThirdPartyVideoSortInput = {
|
|
88750
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88751
|
+
};
|
|
88447
88752
|
export declare type GraphStoreV2ExternalVideoHasExternalSpaceSortInput = {
|
|
88448
88753
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88449
88754
|
};
|
|
@@ -91529,6 +91834,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
|
|
|
91529
91834
|
};
|
|
91530
91835
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91531
91836
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
91837
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection = HasPageInfo & {
|
|
91838
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoConnection';
|
|
91839
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoEdge>>>;
|
|
91840
|
+
pageInfo: PageInfo;
|
|
91841
|
+
};
|
|
91842
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoEdge = {
|
|
91843
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoEdge';
|
|
91844
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91845
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91846
|
+
id: Scalars['ID']['output'];
|
|
91847
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91848
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoUnion>;
|
|
91849
|
+
};
|
|
91850
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection = HasPageInfo & {
|
|
91851
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseConnection';
|
|
91852
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseEdge>>>;
|
|
91853
|
+
pageInfo: PageInfo;
|
|
91854
|
+
};
|
|
91855
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseEdge = {
|
|
91856
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseEdge';
|
|
91857
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91858
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91859
|
+
id: Scalars['ID']['output'];
|
|
91860
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91861
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseUnion>;
|
|
91862
|
+
};
|
|
91863
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91864
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalVideoUnion = ExternalVideo;
|
|
91532
91865
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection = HasPageInfo & {
|
|
91533
91866
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection';
|
|
91534
91867
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge>>>;
|
|
@@ -98173,6 +98506,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullReque
|
|
|
98173
98506
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseUnion>;
|
|
98174
98507
|
};
|
|
98175
98508
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyPullRequestInverseUnion = ThirdPartyUser;
|
|
98509
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
98510
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseConnection';
|
|
98511
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseEdge>>>;
|
|
98512
|
+
pageInfo: PageInfo;
|
|
98513
|
+
};
|
|
98514
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseEdge = {
|
|
98515
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseEdge';
|
|
98516
|
+
createdAt: Scalars['DateTime']['output'];
|
|
98517
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98518
|
+
id: Scalars['ID']['output'];
|
|
98519
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
98520
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseUnion>;
|
|
98521
|
+
};
|
|
98522
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
98523
|
+
export declare type GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection = HasPageInfo & {
|
|
98524
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseConnection';
|
|
98525
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseEdge>>>;
|
|
98526
|
+
pageInfo: PageInfo;
|
|
98527
|
+
};
|
|
98528
|
+
export declare type GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseEdge = {
|
|
98529
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseEdge';
|
|
98530
|
+
createdAt: Scalars['DateTime']['output'];
|
|
98531
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98532
|
+
id: Scalars['ID']['output'];
|
|
98533
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
98534
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseUnion>;
|
|
98535
|
+
};
|
|
98536
|
+
export declare type GraphStoreV2SimplifiedExternalUserViewedThirdPartyVideoInverseUnion = ThirdPartyUser;
|
|
98176
98537
|
export declare type GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection = HasPageInfo & {
|
|
98177
98538
|
__typename?: 'GraphStoreV2SimplifiedExternalVideoHasExternalSpaceConnection';
|
|
98178
98539
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalVideoHasExternalSpaceEdge>>>;
|
|
@@ -101524,6 +101885,7 @@ export declare type GravityField = {
|
|
|
101524
101885
|
key: Scalars['String']['output'];
|
|
101525
101886
|
name: Scalars['String']['output'];
|
|
101526
101887
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
101888
|
+
stableId?: Maybe<Scalars['String']['output']>;
|
|
101527
101889
|
type: Scalars['String']['output'];
|
|
101528
101890
|
};
|
|
101529
101891
|
export declare type GravityFieldDefinition = {
|
|
@@ -105576,6 +105938,10 @@ export declare type InstallationSummaryAppEnvironmentVersion = {
|
|
|
105576
105938
|
id?: Maybe<Scalars['ID']['output']>;
|
|
105577
105939
|
version?: Maybe<Scalars['String']['output']>;
|
|
105578
105940
|
};
|
|
105941
|
+
export declare enum InstallationTarget {
|
|
105942
|
+
Site = "SITE",
|
|
105943
|
+
Unit = "UNIT"
|
|
105944
|
+
}
|
|
105579
105945
|
export declare type InstallationsListFilterByAppEnvironments = {
|
|
105580
105946
|
types: Array<AppEnvironmentType>;
|
|
105581
105947
|
};
|
|
@@ -107971,6 +108337,25 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
|
107971
108337
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107972
108338
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107973
108339
|
};
|
|
108340
|
+
export declare type JiraBacklogViewAssigneeWorkBreakdown = {
|
|
108341
|
+
__typename?: 'JiraBacklogViewAssigneeWorkBreakdown';
|
|
108342
|
+
remainingEstimate?: Maybe<Scalars['String']['output']>;
|
|
108343
|
+
subtaskCount?: Maybe<Scalars['Long']['output']>;
|
|
108344
|
+
totalEstimate?: Maybe<Scalars['String']['output']>;
|
|
108345
|
+
totalIssues?: Maybe<Scalars['Long']['output']>;
|
|
108346
|
+
user?: Maybe<User>;
|
|
108347
|
+
};
|
|
108348
|
+
export declare type JiraBacklogViewAssigneeWorkBreakdownConnection = {
|
|
108349
|
+
__typename?: 'JiraBacklogViewAssigneeWorkBreakdownConnection';
|
|
108350
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewAssigneeWorkBreakdownEdge>>>;
|
|
108351
|
+
pageInfo?: Maybe<PageInfo>;
|
|
108352
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
108353
|
+
};
|
|
108354
|
+
export declare type JiraBacklogViewAssigneeWorkBreakdownEdge = {
|
|
108355
|
+
__typename?: 'JiraBacklogViewAssigneeWorkBreakdownEdge';
|
|
108356
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108357
|
+
node?: Maybe<JiraBacklogViewAssigneeWorkBreakdown>;
|
|
108358
|
+
};
|
|
107974
108359
|
export declare type JiraBacklogViewBoardConfig = {
|
|
107975
108360
|
__typename?: 'JiraBacklogViewBoardConfig';
|
|
107976
108361
|
estimationField?: Maybe<JiraField>;
|
|
@@ -108074,6 +108459,7 @@ export declare type JiraBacklogViewQueryInput = {
|
|
|
108074
108459
|
};
|
|
108075
108460
|
export declare type JiraBacklogViewSettings = {
|
|
108076
108461
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
108462
|
+
includeSubtaskInEstimate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108077
108463
|
quickFilterIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
108078
108464
|
skipCollapsedIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108079
108465
|
};
|
|
@@ -108083,6 +108469,7 @@ export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & No
|
|
|
108083
108469
|
id: Scalars['ID']['output'];
|
|
108084
108470
|
issues?: Maybe<JiraIssueConnection>;
|
|
108085
108471
|
sprint?: Maybe<JiraSprint>;
|
|
108472
|
+
workByAssignee?: Maybe<JiraBacklogViewAssigneeWorkBreakdownConnection>;
|
|
108086
108473
|
};
|
|
108087
108474
|
export declare type JiraBacklogViewSprintCardListEstimationDetailsArgs = {
|
|
108088
108475
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
@@ -108094,6 +108481,13 @@ export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
|
108094
108481
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108095
108482
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
108096
108483
|
};
|
|
108484
|
+
export declare type JiraBacklogViewSprintCardListWorkByAssigneeArgs = {
|
|
108485
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108486
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
108487
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108488
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108489
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
108490
|
+
};
|
|
108097
108491
|
export declare enum JiraBacklogViewStrategy {
|
|
108098
108492
|
IssueList = "ISSUE_LIST",
|
|
108099
108493
|
KanbanBacklog = "KANBAN_BACKLOG",
|
|
@@ -109996,7 +110390,7 @@ export declare enum JiraCommentSortField {
|
|
|
109996
110390
|
LatestActivity = "LATEST_ACTIVITY"
|
|
109997
110391
|
}
|
|
109998
110392
|
export declare type JiraCommentSortInput = {
|
|
109999
|
-
field
|
|
110393
|
+
field?: InputMaybe<JiraCommentSortField>;
|
|
110000
110394
|
order?: InputMaybe<SortDirection>;
|
|
110001
110395
|
};
|
|
110002
110396
|
export declare type JiraCommentSummary = {
|
|
@@ -114354,6 +114748,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114354
114748
|
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
114355
114749
|
assignee?: Maybe<User>;
|
|
114356
114750
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
114751
|
+
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
114357
114752
|
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
114358
114753
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
114359
114754
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
@@ -114449,6 +114844,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114449
114844
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
114450
114845
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
114451
114846
|
key: Scalars['String']['output'];
|
|
114847
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
114452
114848
|
labelsField?: Maybe<JiraLabelsField>;
|
|
114453
114849
|
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
114454
114850
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -114761,6 +115157,12 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
114761
115157
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
114762
115158
|
key: Scalars['String']['input'];
|
|
114763
115159
|
};
|
|
115160
|
+
export declare type JiraIssueLabelsArgs = {
|
|
115161
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115162
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
115163
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115164
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
115165
|
+
};
|
|
114764
115166
|
export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
114765
115167
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114766
115168
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133147,6 +133549,10 @@ export declare type JsmConversationEdge = {
|
|
|
133147
133549
|
cursor: Scalars['String']['output'];
|
|
133148
133550
|
node?: Maybe<JsmConversation>;
|
|
133149
133551
|
};
|
|
133552
|
+
export declare enum JsmConversationLiveChatAvailabilityCriteria {
|
|
133553
|
+
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
133554
|
+
Status = "STATUS"
|
|
133555
|
+
}
|
|
133150
133556
|
export declare type JsmConversationMediaConfiguration = {
|
|
133151
133557
|
__typename?: 'JsmConversationMediaConfiguration';
|
|
133152
133558
|
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -133186,6 +133592,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
133186
133592
|
export declare type JsmConversationSettings = {
|
|
133187
133593
|
__typename?: 'JsmConversationSettings';
|
|
133188
133594
|
assignedTeam?: Maybe<TeamV2>;
|
|
133595
|
+
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
133189
133596
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
133190
133597
|
issueLabel?: Maybe<Scalars['String']['output']>;
|
|
133191
133598
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
@@ -133194,6 +133601,7 @@ export declare type JsmConversationSettings = {
|
|
|
133194
133601
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
133195
133602
|
};
|
|
133196
133603
|
export declare type JsmConversationSettingsInput = {
|
|
133604
|
+
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
133197
133605
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
133198
133606
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
133199
133607
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133206,6 +133614,7 @@ export declare type JsmConversationSettingsPayload = Payload & {
|
|
|
133206
133614
|
errors?: Maybe<Array<MutationError>>;
|
|
133207
133615
|
success: Scalars['Boolean']['output'];
|
|
133208
133616
|
};
|
|
133617
|
+
export declare type JsmConversationSettingsResult = JsmConversationSettings | QueryError;
|
|
133209
133618
|
export declare type JsmConversationSla = {
|
|
133210
133619
|
__typename?: 'JsmConversationSla';
|
|
133211
133620
|
slaDuration?: Maybe<Scalars['String']['output']>;
|
|
@@ -133734,6 +134143,7 @@ export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
|
133734
134143
|
__typename?: 'KitsuneFeedbackConnection';
|
|
133735
134144
|
edges: Array<KitsuneFeedbackEdge>;
|
|
133736
134145
|
pageInfo: PageInfo;
|
|
134146
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133737
134147
|
};
|
|
133738
134148
|
export declare type KitsuneFeedbackEdge = KitsuneEdge & {
|
|
133739
134149
|
__typename?: 'KitsuneFeedbackEdge';
|
|
@@ -133749,9 +134159,11 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
133749
134159
|
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
133750
134160
|
content: Scalars['KitsuneADF']['output'];
|
|
133751
134161
|
createdAt: Scalars['DateTime']['output'];
|
|
134162
|
+
feedbackAri: Scalars['ID']['output'];
|
|
133752
134163
|
id: Scalars['ID']['output'];
|
|
133753
134164
|
source?: Maybe<KitsuneSource>;
|
|
133754
|
-
|
|
134165
|
+
spaceAri: Scalars['ID']['output'];
|
|
134166
|
+
spaceId: Scalars['String']['output'];
|
|
133755
134167
|
summary?: Maybe<KitsuneSummary>;
|
|
133756
134168
|
tenantId: Scalars['ID']['output'];
|
|
133757
134169
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -134037,6 +134449,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
134037
134449
|
Intercom = "INTERCOM",
|
|
134038
134450
|
Jira = "JIRA",
|
|
134039
134451
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
134452
|
+
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
134040
134453
|
Jotform = "JOTFORM",
|
|
134041
134454
|
Kustomer = "KUSTOMER",
|
|
134042
134455
|
Linear = "LINEAR",
|
|
@@ -134057,6 +134470,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
134057
134470
|
NotionTables = "NOTION_TABLES",
|
|
134058
134471
|
Otter = "OTTER",
|
|
134059
134472
|
PdfFiles = "PDF_FILES",
|
|
134473
|
+
Pendo = "PENDO",
|
|
134060
134474
|
Pipedrive = "PIPEDRIVE",
|
|
134061
134475
|
Planhat = "PLANHAT",
|
|
134062
134476
|
Powerpoint = "POWERPOINT",
|
|
@@ -139226,8 +139640,8 @@ export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
|
139226
139640
|
};
|
|
139227
139641
|
export declare type MarketplaceStoreGridBreakpointConfig = {
|
|
139228
139642
|
__typename?: 'MarketplaceStoreGridBreakpointConfig';
|
|
139229
|
-
cells: Array<Array<MarketplaceStoreGridCell>>;
|
|
139230
139643
|
columns?: Maybe<Scalars['Int']['output']>;
|
|
139644
|
+
rows: Array<MarketplaceStoreGridRow>;
|
|
139231
139645
|
};
|
|
139232
139646
|
export declare type MarketplaceStoreGridCell = {
|
|
139233
139647
|
__typename?: 'MarketplaceStoreGridCell';
|
|
@@ -139242,6 +139656,10 @@ export declare type MarketplaceStoreGridCellSlot = {
|
|
|
139242
139656
|
variant?: Maybe<MarketplaceStoreLayoutSlotVariant>;
|
|
139243
139657
|
widgetKind: MarketplaceStoreLayoutSlotWidgetKind;
|
|
139244
139658
|
};
|
|
139659
|
+
export declare type MarketplaceStoreGridRow = {
|
|
139660
|
+
__typename?: 'MarketplaceStoreGridRow';
|
|
139661
|
+
cells: Array<MarketplaceStoreGridCell>;
|
|
139662
|
+
};
|
|
139245
139663
|
export declare type MarketplaceStoreGridWidget = {
|
|
139246
139664
|
__typename?: 'MarketplaceStoreGridWidget';
|
|
139247
139665
|
lg: MarketplaceStoreGridBreakpointConfig;
|
|
@@ -139408,6 +139826,7 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
139408
139826
|
title: Scalars['String']['output'];
|
|
139409
139827
|
};
|
|
139410
139828
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
139829
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
139411
139830
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
139412
139831
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
139413
139832
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
@@ -140293,6 +140712,12 @@ export declare type MediaItemDescriptorInput = {
|
|
|
140293
140712
|
fileId: Scalars['ID']['input'];
|
|
140294
140713
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
140295
140714
|
};
|
|
140715
|
+
export declare type MediaItemsInput = {
|
|
140716
|
+
clientId: Scalars['String']['input'];
|
|
140717
|
+
descriptors: Array<MediaItemDescriptorInput>;
|
|
140718
|
+
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140719
|
+
token: Scalars['String']['input'];
|
|
140720
|
+
};
|
|
140296
140721
|
export declare type MediaPickerUserToken = {
|
|
140297
140722
|
__typename?: 'MediaPickerUserToken';
|
|
140298
140723
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -142253,6 +142678,11 @@ export declare type MercuryFocusAreaStatusUpdateConnection = {
|
|
|
142253
142678
|
pageInfo: PageInfo;
|
|
142254
142679
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142255
142680
|
};
|
|
142681
|
+
export declare type MercuryFocusAreaStatusUpdateDraft = {
|
|
142682
|
+
__typename?: 'MercuryFocusAreaStatusUpdateDraft';
|
|
142683
|
+
draft?: Maybe<Scalars['String']['output']>;
|
|
142684
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
142685
|
+
};
|
|
142256
142686
|
export declare type MercuryFocusAreaStatusUpdateEdge = {
|
|
142257
142687
|
__typename?: 'MercuryFocusAreaStatusUpdateEdge';
|
|
142258
142688
|
cursor: Scalars['String']['output'];
|
|
@@ -142397,8 +142827,10 @@ export declare type MercuryFundsMutationApi = {
|
|
|
142397
142827
|
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
142398
142828
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
142399
142829
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
142830
|
+
setBenefitBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
142400
142831
|
setCostBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
142401
142832
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
142833
|
+
unsetBenefitBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
142402
142834
|
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
142403
142835
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
142404
142836
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
@@ -142467,12 +142899,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
142467
142899
|
export declare type MercuryFundsMutationApiSetBaselineArgs = {
|
|
142468
142900
|
input: MercurySetBaselineInput;
|
|
142469
142901
|
};
|
|
142902
|
+
export declare type MercuryFundsMutationApiSetBenefitBaselineArgs = {
|
|
142903
|
+
input: MercurySetBaselineInput;
|
|
142904
|
+
};
|
|
142470
142905
|
export declare type MercuryFundsMutationApiSetCostBaselineArgs = {
|
|
142471
142906
|
input: MercurySetBaselineInput;
|
|
142472
142907
|
};
|
|
142473
142908
|
export declare type MercuryFundsMutationApiUnsetBaselineArgs = {
|
|
142474
142909
|
input: MercuryUnsetBaselineInput;
|
|
142475
142910
|
};
|
|
142911
|
+
export declare type MercuryFundsMutationApiUnsetBenefitBaselineArgs = {
|
|
142912
|
+
input: MercuryUnsetBaselineInput;
|
|
142913
|
+
};
|
|
142476
142914
|
export declare type MercuryFundsMutationApiUnsetCostBaselineArgs = {
|
|
142477
142915
|
input: MercuryUnsetBaselineInput;
|
|
142478
142916
|
};
|
|
@@ -143227,6 +143665,7 @@ export declare type MercuryMutationApi = {
|
|
|
143227
143665
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
143228
143666
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
143229
143667
|
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
143668
|
+
updateFocusAreaCustomFieldDefinitionVisibility?: Maybe<MercuryUpdateCustomFieldDefinitionVisibilityPayload>;
|
|
143230
143669
|
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
143231
143670
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
143232
143671
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -143365,6 +143804,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameAr
|
|
|
143365
143804
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
143366
143805
|
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
143367
143806
|
};
|
|
143807
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionVisibilityArgs = {
|
|
143808
|
+
input: MercuryUpdateCustomFieldDefinitionVisibilityInput;
|
|
143809
|
+
};
|
|
143368
143810
|
export declare type MercuryMutationApiUpdateFocusAreaHierarchyNameArgs = {
|
|
143369
143811
|
input: MercuryUpdateFocusAreaHierarchyNameInput;
|
|
143370
143812
|
};
|
|
@@ -143975,6 +144417,7 @@ export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
|
143975
144417
|
export declare type MercuryQueryApi = {
|
|
143976
144418
|
__typename?: 'MercuryQueryApi';
|
|
143977
144419
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
144420
|
+
aiFocusAreaStatusUpdateDraft?: Maybe<MercuryFocusAreaStatusUpdateDraft>;
|
|
143978
144421
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
143979
144422
|
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
143980
144423
|
aiLinkedGoalOrWorkInsightSummary?: Maybe<MercuryLinkedGoalOrWorkAiSummary>;
|
|
@@ -144008,6 +144451,10 @@ export declare type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
|
144008
144451
|
id: Scalars['ID']['input'];
|
|
144009
144452
|
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
144010
144453
|
};
|
|
144454
|
+
export declare type MercuryQueryApiAiFocusAreaStatusUpdateDraftArgs = {
|
|
144455
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144456
|
+
focusAreaId: Scalars['ID']['input'];
|
|
144457
|
+
};
|
|
144011
144458
|
export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
144012
144459
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144013
144460
|
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -145422,6 +145869,16 @@ export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload &
|
|
|
145422
145869
|
errors?: Maybe<Array<MutationError>>;
|
|
145423
145870
|
success: Scalars['Boolean']['output'];
|
|
145424
145871
|
};
|
|
145872
|
+
export declare type MercuryUpdateCustomFieldDefinitionVisibilityInput = {
|
|
145873
|
+
id: Scalars['ID']['input'];
|
|
145874
|
+
visibility: MercuryCustomFieldVisibility;
|
|
145875
|
+
};
|
|
145876
|
+
export declare type MercuryUpdateCustomFieldDefinitionVisibilityPayload = Payload & {
|
|
145877
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionVisibilityPayload';
|
|
145878
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
145879
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145880
|
+
success: Scalars['Boolean']['output'];
|
|
145881
|
+
};
|
|
145425
145882
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
145426
145883
|
aboutContent: Scalars['String']['input'];
|
|
145427
145884
|
cloudId: Scalars['ID']['input'];
|
|
@@ -146001,6 +146458,7 @@ export declare type Mutation = {
|
|
|
146001
146458
|
agentStudio_updateKnowledgeGapSuggestionArticleStatus?: Maybe<AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload>;
|
|
146002
146459
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
146003
146460
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
146461
|
+
agentStudio_upgradeSchema?: Maybe<AgentStudioUpgradeSchemaPayload>;
|
|
146004
146462
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
146005
146463
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
146006
146464
|
agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
|
|
@@ -146244,6 +146702,7 @@ export declare type Mutation = {
|
|
|
146244
146702
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
146245
146703
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
146246
146704
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
146705
|
+
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
146247
146706
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
146248
146707
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
146249
146708
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
@@ -146269,6 +146728,7 @@ export declare type Mutation = {
|
|
|
146269
146728
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
146270
146729
|
confluence_nbmUpdateTransformer?: Maybe<ConfluenceNbmUpdateTransformerPayload>;
|
|
146271
146730
|
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
146731
|
+
confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
|
|
146272
146732
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
146273
146733
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
146274
146734
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
@@ -146835,6 +147295,7 @@ export declare type Mutation = {
|
|
|
146835
147295
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
146836
147296
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
146837
147297
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
147298
|
+
projects_addView?: Maybe<TownsquareProjectsAddViewPayload>;
|
|
146838
147299
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
146839
147300
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
146840
147301
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
@@ -147410,6 +147871,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
147410
147871
|
containerId: Scalars['String']['input'];
|
|
147411
147872
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
147412
147873
|
};
|
|
147874
|
+
export declare type MutationAgentStudio_UpgradeSchemaArgs = {
|
|
147875
|
+
id: Scalars['ID']['input'];
|
|
147876
|
+
};
|
|
147413
147877
|
export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
147414
147878
|
cloudId: Scalars['String']['input'];
|
|
147415
147879
|
input?: InputMaybe<AgentStudioUploadBatchEvaluationDatasetInput>;
|
|
@@ -148292,6 +148756,9 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
148292
148756
|
cloudId: Scalars['ID']['input'];
|
|
148293
148757
|
input: ConfluenceDeleteTopicInput;
|
|
148294
148758
|
};
|
|
148759
|
+
export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
|
|
148760
|
+
cloudId: Scalars['ID']['input'];
|
|
148761
|
+
};
|
|
148295
148762
|
export declare type MutationConfluence_ExperimentInitAiFirstCreationArgs = {
|
|
148296
148763
|
cloudId: Scalars['ID']['input'];
|
|
148297
148764
|
};
|
|
@@ -148394,6 +148861,10 @@ export declare type MutationConfluence_NbmUploadTransformerConfigArgs = {
|
|
|
148394
148861
|
cloudId: Scalars['ID']['input'];
|
|
148395
148862
|
input: ConfluenceNbmUploadTransformerConfigInput;
|
|
148396
148863
|
};
|
|
148864
|
+
export declare type MutationConfluence_NotifyContentOwnerArgs = {
|
|
148865
|
+
cloudId: Scalars['ID']['input'];
|
|
148866
|
+
input: Array<InputMaybe<ConfluenceNotifyContentOwnerInput>>;
|
|
148867
|
+
};
|
|
148397
148868
|
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
148398
148869
|
cloudId: Scalars['ID']['input'];
|
|
148399
148870
|
input: ConfluencePatchCalendarInput;
|
|
@@ -150288,6 +150759,9 @@ export declare type MutationProjects_AddMembersArgs = {
|
|
|
150288
150759
|
export declare type MutationProjects_AddTeamContributorsArgs = {
|
|
150289
150760
|
input?: InputMaybe<TownsquareProjectsAddTeamContributorsInput>;
|
|
150290
150761
|
};
|
|
150762
|
+
export declare type MutationProjects_AddViewArgs = {
|
|
150763
|
+
input: TownsquareProjectsAddViewInput;
|
|
150764
|
+
};
|
|
150291
150765
|
export declare type MutationProjects_CloneArgs = {
|
|
150292
150766
|
input: TownsquareProjectsCloneInput;
|
|
150293
150767
|
};
|
|
@@ -153846,27 +154320,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
153846
154320
|
Explicit = "explicit",
|
|
153847
154321
|
Implicit = "implicit"
|
|
153848
154322
|
}
|
|
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
|
-
};
|
|
154323
|
+
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
153860
154324
|
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
153861
154325
|
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
153862
154326
|
description: Scalars['String']['output'];
|
|
153863
154327
|
title: Scalars['String']['output'];
|
|
153864
154328
|
};
|
|
153865
|
-
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
153866
|
-
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
153867
|
-
description: Scalars['String']['output'];
|
|
153868
|
-
title: Scalars['String']['output'];
|
|
153869
|
-
};
|
|
153870
154329
|
export declare type PostOfficeMessagePayload = {
|
|
153871
154330
|
__typename?: 'PostOfficeMessagePayload';
|
|
153872
154331
|
messages: Array<PostOfficeMessage>;
|
|
@@ -154294,6 +154753,8 @@ export declare type Query = {
|
|
|
154294
154753
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
154295
154754
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
154296
154755
|
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
154756
|
+
admin_auditLogBackgroundQueries?: Maybe<AdminAuditLogBackgroundQueryConnection>;
|
|
154757
|
+
admin_auditLogBackgroundQueryById?: Maybe<AdminAuditLogBackgroundQueryResponse>;
|
|
154297
154758
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
154298
154759
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
154299
154760
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -154303,6 +154764,7 @@ export declare type Query = {
|
|
|
154303
154764
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
154304
154765
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
154305
154766
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
154767
|
+
admin_generateAuditLogQueryPlan?: Maybe<AdminAuditLogBackgroundQueryPlanConnection>;
|
|
154306
154768
|
admin_group?: Maybe<AdminGroup>;
|
|
154307
154769
|
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
154308
154770
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
@@ -154335,8 +154797,10 @@ export declare type Query = {
|
|
|
154335
154797
|
agentAI_panel?: Maybe<AgentAiPanelResult>;
|
|
154336
154798
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
154337
154799
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
154800
|
+
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
154338
154801
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
154339
154802
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
154803
|
+
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
154340
154804
|
agentStudio_batchEvalConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
154341
154805
|
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
154342
154806
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
@@ -154547,6 +155011,7 @@ export declare type Query = {
|
|
|
154547
155011
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
154548
155012
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
154549
155013
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
155014
|
+
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
154550
155015
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
154551
155016
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
154552
155017
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
@@ -154702,6 +155167,7 @@ export declare type Query = {
|
|
|
154702
155167
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
154703
155168
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
154704
155169
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
155170
|
+
confluence_isGlobalAnonymousEnforcementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
154705
155171
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
154706
155172
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
154707
155173
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
@@ -154993,6 +155459,7 @@ export declare type Query = {
|
|
|
154993
155459
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
154994
155460
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
154995
155461
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
155462
|
+
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
154996
155463
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
154997
155464
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
154998
155465
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
@@ -155121,6 +155588,7 @@ export declare type Query = {
|
|
|
155121
155588
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
155122
155589
|
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
155123
155590
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
155591
|
+
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
155124
155592
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
155125
155593
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
155126
155594
|
jsw?: Maybe<JswQuery>;
|
|
@@ -155204,6 +155672,7 @@ export declare type Query = {
|
|
|
155204
155672
|
me: AuthenticationContext;
|
|
155205
155673
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
155206
155674
|
media_items?: Maybe<Array<MediaItem>>;
|
|
155675
|
+
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
155207
155676
|
mercury?: Maybe<MercuryQueryApi>;
|
|
155208
155677
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
155209
155678
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
@@ -155402,6 +155871,7 @@ export declare type Query = {
|
|
|
155402
155871
|
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
155403
155872
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
155404
155873
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
155874
|
+
spf_starredItems?: Maybe<SpfStarredItemConnection>;
|
|
155405
155875
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
155406
155876
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
155407
155877
|
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
@@ -155572,6 +156042,21 @@ export declare type QueryAdmin_AppModulesForAppsArgs = {
|
|
|
155572
156042
|
appIdentifiers: Array<AdminAppModulesKey>;
|
|
155573
156043
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
155574
156044
|
};
|
|
156045
|
+
export declare type QueryAdmin_AuditLogBackgroundQueriesArgs = {
|
|
156046
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156047
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
156048
|
+
container: AdminAuditLogContainer;
|
|
156049
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156050
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
156051
|
+
};
|
|
156052
|
+
export declare type QueryAdmin_AuditLogBackgroundQueryByIdArgs = {
|
|
156053
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156054
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
156055
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
156056
|
+
container: AdminAuditLogContainer;
|
|
156057
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156058
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
156059
|
+
};
|
|
155575
156060
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
155576
156061
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155577
156062
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155634,6 +156119,14 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
155634
156119
|
orgId: Scalars['ID']['input'];
|
|
155635
156120
|
principal: Scalars['ID']['input'];
|
|
155636
156121
|
};
|
|
156122
|
+
export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
|
|
156123
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156124
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
156125
|
+
container: AdminAuditLogContainer;
|
|
156126
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156127
|
+
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
156128
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
156129
|
+
};
|
|
155637
156130
|
export declare type QueryAdmin_GroupArgs = {
|
|
155638
156131
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
155639
156132
|
};
|
|
@@ -155815,6 +156308,12 @@ export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
|
155815
156308
|
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
155816
156309
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
155817
156310
|
};
|
|
156311
|
+
export declare type QueryAgentStudio_AgentByIdForDuplicateArgs = {
|
|
156312
|
+
id: Scalars['ID']['input'];
|
|
156313
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
156314
|
+
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
156315
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
156316
|
+
};
|
|
155818
156317
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
155819
156318
|
cloudId: Scalars['String']['input'];
|
|
155820
156319
|
id: Scalars['ID']['input'];
|
|
@@ -155822,6 +156321,11 @@ export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
155822
156321
|
export declare type QueryAgentStudio_AgentsByIdsArgs = {
|
|
155823
156322
|
ids: Array<Scalars['ID']['input']>;
|
|
155824
156323
|
};
|
|
156324
|
+
export declare type QueryAgentStudio_AuthReadinessForAgentArgs = {
|
|
156325
|
+
agentId: Scalars['ID']['input'];
|
|
156326
|
+
cloudId: Scalars['String']['input'];
|
|
156327
|
+
version?: InputMaybe<AgentStudioAgentVersionInput>;
|
|
156328
|
+
};
|
|
155825
156329
|
export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
|
|
155826
156330
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155827
156331
|
cloudId: Scalars['String']['input'];
|
|
@@ -156885,6 +157389,9 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
|
156885
157389
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
156886
157390
|
dashboardAri: Scalars['ID']['input'];
|
|
156887
157391
|
};
|
|
157392
|
+
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
157393
|
+
input: AvpGetReadOnlyDashboardInput;
|
|
157394
|
+
};
|
|
156888
157395
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
156889
157396
|
cloudId: Scalars['ID']['input'];
|
|
156890
157397
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -157518,6 +158025,9 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
157518
158025
|
export declare type QueryConfluence_ImportsAllArgs = {
|
|
157519
158026
|
cloudID: Scalars['ID']['input'];
|
|
157520
158027
|
};
|
|
158028
|
+
export declare type QueryConfluence_IsGlobalAnonymousEnforcementEnabledArgs = {
|
|
158029
|
+
cloudId: Scalars['ID']['input'];
|
|
158030
|
+
};
|
|
157521
158031
|
export declare type QueryConfluence_IsPrivacyModeEnabledArgs = {
|
|
157522
158032
|
cloudId: Scalars['ID']['input'];
|
|
157523
158033
|
};
|
|
@@ -158842,6 +159352,10 @@ export declare type QueryGraphIntegration_SkillArgs = {
|
|
|
158842
159352
|
contextAri: Scalars['ID']['input'];
|
|
158843
159353
|
skillAri: Scalars['ID']['input'];
|
|
158844
159354
|
};
|
|
159355
|
+
export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
159356
|
+
contextAri: Scalars['ID']['input'];
|
|
159357
|
+
dimension: GraphIntegrationSkillDimension;
|
|
159358
|
+
};
|
|
158845
159359
|
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
158846
159360
|
contextAri: Scalars['ID']['input'];
|
|
158847
159361
|
skillAris: Array<Scalars['ID']['input']>;
|
|
@@ -159318,6 +159832,9 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
159318
159832
|
conversationAri: Scalars['ID']['input'];
|
|
159319
159833
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159320
159834
|
};
|
|
159835
|
+
export declare type QueryJsmConversation_SettingArgs = {
|
|
159836
|
+
projectAri: Scalars['String']['input'];
|
|
159837
|
+
};
|
|
159321
159838
|
export declare type QueryJsmConversation_SettingsArgs = {
|
|
159322
159839
|
projectAri: Scalars['String']['input'];
|
|
159323
159840
|
};
|
|
@@ -159372,6 +159889,7 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
159372
159889
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159373
159890
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
159374
159891
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159892
|
+
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
159375
159893
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
159376
159894
|
workspaceAri: Scalars['ID']['input'];
|
|
159377
159895
|
};
|
|
@@ -159586,6 +160104,10 @@ export declare type QueryMedia_ItemsArgs = {
|
|
|
159586
160104
|
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
159587
160105
|
token: Scalars['String']['input'];
|
|
159588
160106
|
};
|
|
160107
|
+
export declare type QueryMedia_ItemsByDescriptorArgs = {
|
|
160108
|
+
cloudId: Scalars['String']['input'];
|
|
160109
|
+
input: MediaItemsInput;
|
|
160110
|
+
};
|
|
159589
160111
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
159590
160112
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159591
160113
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -160330,6 +160852,12 @@ export declare type QuerySpf_PlansArgs = {
|
|
|
160330
160852
|
export declare type QuerySpf_PlansByIdsArgs = {
|
|
160331
160853
|
ids: Array<Scalars['ID']['input']>;
|
|
160332
160854
|
};
|
|
160855
|
+
export declare type QuerySpf_StarredItemsArgs = {
|
|
160856
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
160857
|
+
cloudId: Scalars['ID']['input'];
|
|
160858
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160859
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
160860
|
+
};
|
|
160333
160861
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
160334
160862
|
appId: Scalars['ID']['input'];
|
|
160335
160863
|
installationId: Scalars['ID']['input'];
|
|
@@ -163264,6 +163792,7 @@ export declare enum Scope {
|
|
|
163264
163792
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
163265
163793
|
ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
|
|
163266
163794
|
ReadContainer = "READ_CONTAINER",
|
|
163795
|
+
ReadCsmTwgCli = "READ_CSM_TWG_CLI",
|
|
163267
163796
|
ReadCustomer = "READ_CUSTOMER",
|
|
163268
163797
|
ReadDesign = "READ_DESIGN",
|
|
163269
163798
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
@@ -164301,10 +164830,17 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
164301
164830
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
164302
164831
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
164303
164832
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
164833
|
+
tabs?: Maybe<Array<SearchResultGraphTab>>;
|
|
164304
164834
|
title: Scalars['String']['output'];
|
|
164305
164835
|
type: SearchResultType;
|
|
164306
164836
|
url: Scalars['String']['output'];
|
|
164307
164837
|
};
|
|
164838
|
+
export declare type SearchResultGraphTab = {
|
|
164839
|
+
__typename?: 'SearchResultGraphTab';
|
|
164840
|
+
tabId?: Maybe<Scalars['String']['output']>;
|
|
164841
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
164842
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
164843
|
+
};
|
|
164308
164844
|
export declare type SearchResultItemEdge = {
|
|
164309
164845
|
__typename?: 'SearchResultItemEdge';
|
|
164310
164846
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -182910,6 +183446,7 @@ export declare type ShepherdDetection = Node & {
|
|
|
182910
183446
|
category: ShepherdAlertDetectionCategory;
|
|
182911
183447
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
182912
183448
|
id: Scalars['ID']['output'];
|
|
183449
|
+
platformDetectorType?: Maybe<Scalars['String']['output']>;
|
|
182913
183450
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
182914
183451
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
182915
183452
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
@@ -185788,6 +186325,33 @@ export declare type SpfRevokeEntityPermissionPayload = Payload & {
|
|
|
185788
186325
|
permission?: Maybe<SpfEntityPermissionEntry>;
|
|
185789
186326
|
success: Scalars['Boolean']['output'];
|
|
185790
186327
|
};
|
|
186328
|
+
export declare type SpfStarredItem = {
|
|
186329
|
+
__typename?: 'SpfStarredItem';
|
|
186330
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
186331
|
+
createdBy?: Maybe<User>;
|
|
186332
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
186333
|
+
entityType: Scalars['String']['output'];
|
|
186334
|
+
id: Scalars['ID']['output'];
|
|
186335
|
+
starredItem?: Maybe<SpfStarredWork>;
|
|
186336
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
186337
|
+
updatedBy?: Maybe<User>;
|
|
186338
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
186339
|
+
user?: Maybe<User>;
|
|
186340
|
+
userId: Scalars['String']['output'];
|
|
186341
|
+
};
|
|
186342
|
+
export declare type SpfStarredItemConnection = {
|
|
186343
|
+
__typename?: 'SpfStarredItemConnection';
|
|
186344
|
+
edges?: Maybe<Array<Maybe<SpfStarredItemEdge>>>;
|
|
186345
|
+
pageInfo: PageInfo;
|
|
186346
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
186347
|
+
};
|
|
186348
|
+
export declare type SpfStarredItemEdge = {
|
|
186349
|
+
__typename?: 'SpfStarredItemEdge';
|
|
186350
|
+
cursor: Scalars['String']['output'];
|
|
186351
|
+
node?: Maybe<SpfStarredItemResult>;
|
|
186352
|
+
};
|
|
186353
|
+
export declare type SpfStarredItemResult = QueryError | SpfStarredItem;
|
|
186354
|
+
export declare type SpfStarredWork = SpfAsk | SpfPlan;
|
|
185791
186355
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
185792
186356
|
data: Scalars['String']['input'];
|
|
185793
186357
|
id: Scalars['ID']['input'];
|
|
@@ -192130,6 +192694,11 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
192130
192694
|
cursor: Scalars['String']['output'];
|
|
192131
192695
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
192132
192696
|
};
|
|
192697
|
+
export declare type TownsquareProjectUserViews = TownsquareUserViews & {
|
|
192698
|
+
__typename?: 'TownsquareProjectUserViews';
|
|
192699
|
+
containerId: Scalars['ID']['output'];
|
|
192700
|
+
projectUpdateId: Scalars['ID']['output'];
|
|
192701
|
+
};
|
|
192133
192702
|
export declare type TownsquareProjectsAddGoalLink = {
|
|
192134
192703
|
goalId: Scalars['ID']['input'];
|
|
192135
192704
|
projectId: Scalars['ID']['input'];
|
|
@@ -192164,6 +192733,7 @@ export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
|
|
|
192164
192733
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
192165
192734
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192166
192735
|
projectId: Scalars['ID']['input'];
|
|
192736
|
+
role?: InputMaybe<TownsquareProjectAccessRoleInput>;
|
|
192167
192737
|
users: Array<Scalars['ID']['input']>;
|
|
192168
192738
|
};
|
|
192169
192739
|
export declare type TownsquareProjectsAddMembersPayload = {
|
|
@@ -192176,6 +192746,7 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
192176
192746
|
};
|
|
192177
192747
|
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
192178
192748
|
projectId: Scalars['ID']['input'];
|
|
192749
|
+
role?: InputMaybe<TownsquareProjectAccessRoleInput>;
|
|
192179
192750
|
teamId: Scalars['ID']['input'];
|
|
192180
192751
|
userIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
192181
192752
|
};
|
|
@@ -192186,6 +192757,16 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
192186
192757
|
project?: Maybe<TownsquareProject>;
|
|
192187
192758
|
success: Scalars['Boolean']['output'];
|
|
192188
192759
|
};
|
|
192760
|
+
export declare type TownsquareProjectsAddViewInput = {
|
|
192761
|
+
containerId: Scalars['ID']['input'];
|
|
192762
|
+
projectUpdateId: Scalars['ID']['input'];
|
|
192763
|
+
};
|
|
192764
|
+
export declare type TownsquareProjectsAddViewPayload = {
|
|
192765
|
+
__typename?: 'TownsquareProjectsAddViewPayload';
|
|
192766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192767
|
+
success: Scalars['Boolean']['output'];
|
|
192768
|
+
views?: Maybe<TownsquareProjectUserViews>;
|
|
192769
|
+
};
|
|
192189
192770
|
export declare type TownsquareProjectsAppSettings = {
|
|
192190
192771
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
192191
192772
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -193494,6 +194075,21 @@ export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
|
193494
194075
|
errors?: Maybe<Array<MutationError>>;
|
|
193495
194076
|
success: Scalars['Boolean']['output'];
|
|
193496
194077
|
};
|
|
194078
|
+
export declare type TrelloAddOnboardingInboxCardsCardInput = {
|
|
194079
|
+
description: Scalars['String']['input'];
|
|
194080
|
+
externalSource: TrelloCardExternalSource;
|
|
194081
|
+
name: Scalars['String']['input'];
|
|
194082
|
+
position: Scalars['Float']['input'];
|
|
194083
|
+
};
|
|
194084
|
+
export declare type TrelloAddOnboardingInboxCardsInput = {
|
|
194085
|
+
cards: Array<TrelloAddOnboardingInboxCardsCardInput>;
|
|
194086
|
+
};
|
|
194087
|
+
export declare type TrelloAddOnboardingInboxCardsPayload = Payload & {
|
|
194088
|
+
__typename?: 'TrelloAddOnboardingInboxCardsPayload';
|
|
194089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194090
|
+
inboxCards?: Maybe<Array<TrelloInboxCard>>;
|
|
194091
|
+
success: Scalars['Boolean']['output'];
|
|
194092
|
+
};
|
|
193497
194093
|
export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
193498
194094
|
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
193499
194095
|
card?: Maybe<TrelloActionCardEntity>;
|
|
@@ -194682,6 +195278,11 @@ export declare enum TrelloCardRole {
|
|
|
194682
195278
|
Mirror = "MIRROR",
|
|
194683
195279
|
Separator = "SEPARATOR"
|
|
194684
195280
|
}
|
|
195281
|
+
export declare type TrelloCardSearchResult = {
|
|
195282
|
+
__typename?: 'TrelloCardSearchResult';
|
|
195283
|
+
options?: Maybe<TrelloSearchOptions>;
|
|
195284
|
+
results?: Maybe<TrelloSearchCardConnection>;
|
|
195285
|
+
};
|
|
194685
195286
|
export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
194686
195287
|
__typename?: 'TrelloCardUpdated';
|
|
194687
195288
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -194868,6 +195469,29 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
194868
195469
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
194869
195470
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
194870
195471
|
};
|
|
195472
|
+
export declare type TrelloCompleteOnboardingBoardInput = {
|
|
195473
|
+
addStarterGuide: Scalars['Boolean']['input'];
|
|
195474
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
195475
|
+
description: Scalars['String']['input'];
|
|
195476
|
+
firstListCards?: InputMaybe<Array<InputMaybe<TrelloCompleteOnboardingCardInput>>>;
|
|
195477
|
+
name: Scalars['String']['input'];
|
|
195478
|
+
};
|
|
195479
|
+
export declare type TrelloCompleteOnboardingCardInput = {
|
|
195480
|
+
description: Scalars['String']['input'];
|
|
195481
|
+
name: Scalars['String']['input'];
|
|
195482
|
+
position: Scalars['Float']['input'];
|
|
195483
|
+
};
|
|
195484
|
+
export declare type TrelloCompleteOnboardingInput = {
|
|
195485
|
+
board: TrelloCompleteOnboardingBoardInput;
|
|
195486
|
+
organizationName: Scalars['String']['input'];
|
|
195487
|
+
};
|
|
195488
|
+
export declare type TrelloCompleteOnboardingPayload = Payload & {
|
|
195489
|
+
__typename?: 'TrelloCompleteOnboardingPayload';
|
|
195490
|
+
board: TrelloBoard;
|
|
195491
|
+
errors?: Maybe<Array<MutationError>>;
|
|
195492
|
+
success: Scalars['Boolean']['output'];
|
|
195493
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
195494
|
+
};
|
|
194871
195495
|
export declare type TrelloConvertBoardToTemplateInput = {
|
|
194872
195496
|
boardId: Scalars['ID']['input'];
|
|
194873
195497
|
};
|
|
@@ -196245,12 +196869,14 @@ export declare type TrelloMutationApi = {
|
|
|
196245
196869
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
196246
196870
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
196247
196871
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
196872
|
+
addOnboardingInboxCards?: Maybe<TrelloAddOnboardingInboxCardsPayload>;
|
|
196248
196873
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
196249
196874
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
196250
196875
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
196251
196876
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
196252
196877
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
196253
196878
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
196879
|
+
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
196254
196880
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
196255
196881
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
196256
196882
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -196359,6 +196985,9 @@ export declare type TrelloMutationApiAddLabelsToCardArgs = {
|
|
|
196359
196985
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
196360
196986
|
input: TrelloAddMemberInput;
|
|
196361
196987
|
};
|
|
196988
|
+
export declare type TrelloMutationApiAddOnboardingInboxCardsArgs = {
|
|
196989
|
+
input: TrelloAddOnboardingInboxCardsInput;
|
|
196990
|
+
};
|
|
196362
196991
|
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
196363
196992
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
196364
196993
|
};
|
|
@@ -196377,6 +197006,9 @@ export declare type TrelloMutationApiCloseBoardArgs = {
|
|
|
196377
197006
|
export declare type TrelloMutationApiCloseCardArgs = {
|
|
196378
197007
|
input: TrelloCloseCardInput;
|
|
196379
197008
|
};
|
|
197009
|
+
export declare type TrelloMutationApiCompleteOnboardingArgs = {
|
|
197010
|
+
input: TrelloCompleteOnboardingInput;
|
|
197011
|
+
};
|
|
196380
197012
|
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
196381
197013
|
input: TrelloConvertBoardToTemplateInput;
|
|
196382
197014
|
};
|
|
@@ -196753,6 +197385,29 @@ export declare type TrelloPlannerBaseCardUpdated = {
|
|
|
196753
197385
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
196754
197386
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
196755
197387
|
};
|
|
197388
|
+
export declare enum TrelloPlannerBoardFilterMode {
|
|
197389
|
+
All = "ALL",
|
|
197390
|
+
AssignedToMe = "ASSIGNED_TO_ME",
|
|
197391
|
+
Exclude = "EXCLUDE"
|
|
197392
|
+
}
|
|
197393
|
+
export declare type TrelloPlannerBoardOverride = {
|
|
197394
|
+
__typename?: 'TrelloPlannerBoardOverride';
|
|
197395
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
197396
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
197397
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
197398
|
+
id: Scalars['ID']['output'];
|
|
197399
|
+
mode?: Maybe<TrelloPlannerBoardFilterMode>;
|
|
197400
|
+
};
|
|
197401
|
+
export declare type TrelloPlannerBoardOverrideConnection = {
|
|
197402
|
+
__typename?: 'TrelloPlannerBoardOverrideConnection';
|
|
197403
|
+
edges: Array<TrelloPlannerBoardOverrideEdge>;
|
|
197404
|
+
pageInfo: PageInfo;
|
|
197405
|
+
};
|
|
197406
|
+
export declare type TrelloPlannerBoardOverrideEdge = {
|
|
197407
|
+
__typename?: 'TrelloPlannerBoardOverrideEdge';
|
|
197408
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
197409
|
+
node?: Maybe<TrelloPlannerBoardOverride>;
|
|
197410
|
+
};
|
|
196756
197411
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
196757
197412
|
__typename?: 'TrelloPlannerCalendar';
|
|
196758
197413
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -197156,8 +197811,13 @@ export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
|
197156
197811
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
197157
197812
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
197158
197813
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
197814
|
+
boardOverrides?: Maybe<TrelloPlannerBoardOverrideConnection>;
|
|
197159
197815
|
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
197160
197816
|
};
|
|
197817
|
+
export declare type TrelloPlannerDueDateCardsSettingsBoardOverridesArgs = {
|
|
197818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197819
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197820
|
+
};
|
|
197161
197821
|
export declare type TrelloPlannerEventCardConnection = {
|
|
197162
197822
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
197163
197823
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
@@ -197411,6 +198071,7 @@ export declare type TrelloProposedEvent = {
|
|
|
197411
198071
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
197412
198072
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
197413
198073
|
objectId: Scalars['ID']['output'];
|
|
198074
|
+
schedulingRequestId?: Maybe<Scalars['String']['output']>;
|
|
197414
198075
|
source?: Maybe<TrelloProposedEventSource>;
|
|
197415
198076
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
197416
198077
|
};
|
|
@@ -197467,6 +198128,7 @@ export declare type TrelloProposedEventUpdated = {
|
|
|
197467
198128
|
cards?: Maybe<TrelloProposedEventCardConnectionUpdated>;
|
|
197468
198129
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
197469
198130
|
objectId: Scalars['ID']['output'];
|
|
198131
|
+
schedulingRequestId?: Maybe<Scalars['String']['output']>;
|
|
197470
198132
|
source?: Maybe<TrelloProposedEventSource>;
|
|
197471
198133
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
197472
198134
|
};
|
|
@@ -197516,6 +198178,7 @@ export declare type TrelloQueryApi = {
|
|
|
197516
198178
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
197517
198179
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
197518
198180
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
198181
|
+
searchCards?: Maybe<TrelloCardSearchResult>;
|
|
197519
198182
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
197520
198183
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
197521
198184
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
@@ -197633,6 +198296,14 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
197633
198296
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
197634
198297
|
ids: Array<Scalars['ID']['input']>;
|
|
197635
198298
|
};
|
|
198299
|
+
export declare type TrelloQueryApiSearchCardsArgs = {
|
|
198300
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
198301
|
+
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
198302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
198303
|
+
partial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
198304
|
+
query: Scalars['String']['input'];
|
|
198305
|
+
workspaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
198306
|
+
};
|
|
197636
198307
|
export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
197637
198308
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
197638
198309
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
@@ -197849,6 +198520,23 @@ export declare type TrelloScaleProps = {
|
|
|
197849
198520
|
url?: Maybe<Scalars['URL']['output']>;
|
|
197850
198521
|
width?: Maybe<Scalars['Int']['output']>;
|
|
197851
198522
|
};
|
|
198523
|
+
export declare type TrelloSearchCardConnection = {
|
|
198524
|
+
__typename?: 'TrelloSearchCardConnection';
|
|
198525
|
+
edges?: Maybe<Array<TrelloSearchCardEdge>>;
|
|
198526
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseCard>>>;
|
|
198527
|
+
pageInfo: PageInfo;
|
|
198528
|
+
};
|
|
198529
|
+
export declare type TrelloSearchCardEdge = {
|
|
198530
|
+
__typename?: 'TrelloSearchCardEdge';
|
|
198531
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
198532
|
+
node?: Maybe<TrelloBaseCard>;
|
|
198533
|
+
};
|
|
198534
|
+
export declare type TrelloSearchOptions = {
|
|
198535
|
+
__typename?: 'TrelloSearchOptions';
|
|
198536
|
+
modifiers?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
198537
|
+
partial?: Maybe<Scalars['Boolean']['output']>;
|
|
198538
|
+
terms?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
198539
|
+
};
|
|
197852
198540
|
export declare type TrelloSendBoardEmailKeyInput = {
|
|
197853
198541
|
boardId: Scalars['ID']['input'];
|
|
197854
198542
|
};
|