@forge/cli-shared 8.11.1-next.3-experimental-9065145 → 8.11.1-next.5
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 +6 -8
- package/out/graphql/graphql-types.d.ts +380 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +68 -32
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +2 -4
- package/out/ui/text.d.ts +0 -8
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -8
- package/package.json +2 -2
|
@@ -1745,6 +1745,21 @@ export declare type AdminAuditLogGroupEventActionEdge = {
|
|
|
1745
1745
|
cursor: Scalars['String']['output'];
|
|
1746
1746
|
node: AdminAuditLogGroupEventAction;
|
|
1747
1747
|
};
|
|
1748
|
+
export declare type AdminAuthenticationPolicyDetails = {
|
|
1749
|
+
__typename?: 'AdminAuthenticationPolicyDetails';
|
|
1750
|
+
authenticationPolicyId: Scalars['ID']['output'];
|
|
1751
|
+
authenticationPolicyName: Scalars['String']['output'];
|
|
1752
|
+
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
1753
|
+
isActive: Scalars['Boolean']['output'];
|
|
1754
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1755
|
+
numberOfUsers?: Maybe<Scalars['Int']['output']>;
|
|
1756
|
+
policyType: AdminAuthenticationPolicyType;
|
|
1757
|
+
ssoConfiguration?: Maybe<AdminPolicySsoConfiguration>;
|
|
1758
|
+
};
|
|
1759
|
+
export declare enum AdminAuthenticationPolicyType {
|
|
1760
|
+
Basic = "BASIC",
|
|
1761
|
+
Standard = "STANDARD"
|
|
1762
|
+
}
|
|
1748
1763
|
export declare type AdminByok = {
|
|
1749
1764
|
__typename?: 'AdminByok';
|
|
1750
1765
|
config: Scalars['String']['output'];
|
|
@@ -1963,11 +1978,38 @@ export declare type AdminIcon = {
|
|
|
1963
1978
|
name: Scalars['String']['output'];
|
|
1964
1979
|
value: Scalars['String']['output'];
|
|
1965
1980
|
};
|
|
1981
|
+
export declare type AdminIdentityProviderDirectoryDetails = {
|
|
1982
|
+
__typename?: 'AdminIdentityProviderDirectoryDetails';
|
|
1983
|
+
directoryName: Scalars['String']['output'];
|
|
1984
|
+
externalDirectoryId?: Maybe<Scalars['ID']['output']>;
|
|
1985
|
+
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
1986
|
+
identityProviderType?: Maybe<AdminIdentityProviderType>;
|
|
1987
|
+
isActive: Scalars['Boolean']['output'];
|
|
1988
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1989
|
+
linkedDomains: Array<Scalars['String']['output']>;
|
|
1990
|
+
numberOfPolicies: Scalars['Int']['output'];
|
|
1991
|
+
samlConfiguration?: Maybe<AdminSamlConfigurationDetails>;
|
|
1992
|
+
samlConfigurationId?: Maybe<Scalars['ID']['output']>;
|
|
1993
|
+
};
|
|
1966
1994
|
export declare enum AdminIdentityProviderPublicCertificateExpiryStatus {
|
|
1967
1995
|
Expired = "EXPIRED",
|
|
1968
1996
|
ExpiringSoon = "EXPIRING_SOON",
|
|
1969
1997
|
Valid = "VALID"
|
|
1970
1998
|
}
|
|
1999
|
+
export declare enum AdminIdentityProviderType {
|
|
2000
|
+
ActiveDirectoryFederationServices = "ACTIVE_DIRECTORY_FEDERATION_SERVICES",
|
|
2001
|
+
Auth0 = "AUTH0",
|
|
2002
|
+
GoogleCloudIdentity = "GOOGLE_CLOUD_IDENTITY",
|
|
2003
|
+
GoogleWorkspace = "GOOGLE_WORKSPACE",
|
|
2004
|
+
Idaptive = "IDAPTIVE",
|
|
2005
|
+
Jumpcloud = "JUMPCLOUD",
|
|
2006
|
+
MicrosoftAzureActiveDirectory = "MICROSOFT_AZURE_ACTIVE_DIRECTORY",
|
|
2007
|
+
MicrosoftAzureActiveDirectoryPreconfigured = "MICROSOFT_AZURE_ACTIVE_DIRECTORY_PRECONFIGURED",
|
|
2008
|
+
Okta = "OKTA",
|
|
2009
|
+
Onelogin = "ONELOGIN",
|
|
2010
|
+
Other = "OTHER",
|
|
2011
|
+
PingIdentity = "PING_IDENTITY"
|
|
2012
|
+
}
|
|
1971
2013
|
export declare type AdminImpersonateUserInput = {
|
|
1972
2014
|
accountId: Scalars['String']['input'];
|
|
1973
2015
|
directoryId: Scalars['String']['input'];
|
|
@@ -2151,6 +2193,11 @@ export declare type AdminPermission = {
|
|
|
2151
2193
|
permissionId: Scalars['String']['output'];
|
|
2152
2194
|
};
|
|
2153
2195
|
export declare type AdminPolicy = AdminAccessUrl | AdminAiPolicy | AdminByok | AdminDataResidency;
|
|
2196
|
+
export declare type AdminPolicySsoConfiguration = {
|
|
2197
|
+
__typename?: 'AdminPolicySsoConfiguration';
|
|
2198
|
+
samlConfigurationId?: Maybe<Scalars['ID']['output']>;
|
|
2199
|
+
ssoType: AdminSsoType;
|
|
2200
|
+
};
|
|
2154
2201
|
export declare enum AdminPolicyStatus {
|
|
2155
2202
|
Disabled = "DISABLED",
|
|
2156
2203
|
Enabled = "ENABLED"
|
|
@@ -2349,6 +2396,11 @@ export declare type AdminSortBy = {
|
|
|
2349
2396
|
direction: SortDirection;
|
|
2350
2397
|
fieldName: Scalars['String']['input'];
|
|
2351
2398
|
};
|
|
2399
|
+
export declare enum AdminSsoType {
|
|
2400
|
+
Google = "GOOGLE",
|
|
2401
|
+
None = "NONE",
|
|
2402
|
+
Saml = "SAML"
|
|
2403
|
+
}
|
|
2352
2404
|
export declare type AdminStorageFeature = {
|
|
2353
2405
|
__typename?: 'AdminStorageFeature';
|
|
2354
2406
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2562,6 +2614,11 @@ export declare type AdminUserGroupsArgs = {
|
|
|
2562
2614
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2563
2615
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2564
2616
|
};
|
|
2617
|
+
export declare type AdminUserAuthPolicy = {
|
|
2618
|
+
__typename?: 'AdminUserAuthPolicy';
|
|
2619
|
+
authenticationPolicy?: Maybe<AdminAuthenticationPolicyDetails>;
|
|
2620
|
+
hasAuthenticationPolicy: Scalars['Boolean']['output'];
|
|
2621
|
+
};
|
|
2565
2622
|
export declare type AdminUserConnection = {
|
|
2566
2623
|
__typename?: 'AdminUserConnection';
|
|
2567
2624
|
edges?: Maybe<Array<AdminUserEdge>>;
|
|
@@ -31150,7 +31207,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
31150
31207
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
31151
31208
|
node?: Maybe<ExternalAssociation>;
|
|
31152
31209
|
};
|
|
31153
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
31210
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
31154
31211
|
export declare type ExternalAttachment = {
|
|
31155
31212
|
__typename?: 'ExternalAttachment';
|
|
31156
31213
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -31421,6 +31478,46 @@ export declare type ExternalCue = {
|
|
|
31421
31478
|
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
31422
31479
|
text?: Maybe<Scalars['String']['output']>;
|
|
31423
31480
|
};
|
|
31481
|
+
export declare type ExternalCustomerContact = Node & {
|
|
31482
|
+
__typename?: 'ExternalCustomerContact';
|
|
31483
|
+
accountName?: Maybe<Scalars['String']['output']>;
|
|
31484
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31485
|
+
contactUser?: Maybe<ExternalUser>;
|
|
31486
|
+
container?: Maybe<ExternalEntity>;
|
|
31487
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
31488
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31489
|
+
createdBy?: Maybe<ExternalUser>;
|
|
31490
|
+
customerType?: Maybe<Scalars['String']['output']>;
|
|
31491
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
31492
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
31493
|
+
entitlements?: Maybe<Array<Maybe<ExternalCustomerContactEntitlement>>>;
|
|
31494
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
31495
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
31496
|
+
id: Scalars['ID']['output'];
|
|
31497
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
31498
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
31499
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31500
|
+
parent?: Maybe<ExternalEntity>;
|
|
31501
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31502
|
+
preferredLanguage?: Maybe<Scalars['String']['output']>;
|
|
31503
|
+
provider?: Maybe<ExternalProvider>;
|
|
31504
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
31505
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
31506
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31507
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
31508
|
+
};
|
|
31509
|
+
export declare type ExternalCustomerContactEntitlement = {
|
|
31510
|
+
__typename?: 'ExternalCustomerContactEntitlement';
|
|
31511
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31512
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
31513
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
31514
|
+
entitlementName?: Maybe<Scalars['String']['output']>;
|
|
31515
|
+
licenseKey?: Maybe<Scalars['String']['output']>;
|
|
31516
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
31517
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
31518
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
31519
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31520
|
+
};
|
|
31424
31521
|
export declare type ExternalCustomerOrg = Node & {
|
|
31425
31522
|
__typename?: 'ExternalCustomerOrg';
|
|
31426
31523
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
@@ -31568,6 +31665,8 @@ export declare type ExternalDeal = Node & {
|
|
|
31568
31665
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
31569
31666
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31570
31667
|
contact?: Maybe<ExternalUser>;
|
|
31668
|
+
container?: Maybe<ExternalEntity>;
|
|
31669
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
31571
31670
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
31572
31671
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31573
31672
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -31581,12 +31680,14 @@ export declare type ExternalDeal = Node & {
|
|
|
31581
31680
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
31582
31681
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
31583
31682
|
opportunityAmount?: Maybe<ExternalDealOpportunityAmount>;
|
|
31683
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31584
31684
|
parent?: Maybe<ExternalEntity>;
|
|
31585
31685
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31586
31686
|
provider?: Maybe<ExternalProvider>;
|
|
31587
31687
|
stage?: Maybe<Scalars['String']['output']>;
|
|
31588
31688
|
status?: Maybe<Scalars['String']['output']>;
|
|
31589
31689
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
31690
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
31590
31691
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31591
31692
|
url?: Maybe<Scalars['String']['output']>;
|
|
31592
31693
|
userContributors?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -31738,6 +31839,7 @@ export declare type ExternalEntities = {
|
|
|
31738
31839
|
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
31739
31840
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
31740
31841
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
31842
|
+
customerContact?: Maybe<Array<Maybe<ExternalCustomerContact>>>;
|
|
31741
31843
|
customerOrg?: Maybe<Array<Maybe<ExternalCustomerOrg>>>;
|
|
31742
31844
|
customerOrgCategory?: Maybe<Array<Maybe<ExternalCustomerOrgCategory>>>;
|
|
31743
31845
|
dashboard?: Maybe<Array<Maybe<ExternalDashboard>>>;
|
|
@@ -31766,7 +31868,7 @@ export declare type ExternalEntities = {
|
|
|
31766
31868
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
31767
31869
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
31768
31870
|
};
|
|
31769
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
31871
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
31770
31872
|
export declare type ExternalEntityExtendedValue = {
|
|
31771
31873
|
__typename?: 'ExternalEntityExtendedValue';
|
|
31772
31874
|
fieldDisplayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -45911,7 +46013,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
45911
46013
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
45912
46014
|
id: Scalars['ID']['output'];
|
|
45913
46015
|
};
|
|
45914
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
46016
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
45915
46017
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
45916
46018
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
45917
46019
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -45936,7 +46038,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
45936
46038
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
45937
46039
|
id: Scalars['ID']['output'];
|
|
45938
46040
|
};
|
|
45939
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
46041
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
45940
46042
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
45941
46043
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
45942
46044
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -47664,7 +47766,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
47664
47766
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
47665
47767
|
id: Scalars['ID']['output'];
|
|
47666
47768
|
};
|
|
47667
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47769
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47668
47770
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
47669
47771
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
47670
47772
|
value: Scalars['String']['output'];
|
|
@@ -47678,13 +47780,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
47678
47780
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
47679
47781
|
id: Scalars['ID']['output'];
|
|
47680
47782
|
};
|
|
47681
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47783
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47682
47784
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
47683
47785
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
47684
47786
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
47685
47787
|
id: Scalars['ID']['output'];
|
|
47686
47788
|
};
|
|
47687
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47789
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47688
47790
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
47689
47791
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
47690
47792
|
value: Scalars['Boolean']['output'];
|
|
@@ -47780,7 +47882,11 @@ export declare type GraphStoreCypherQueryV2NodeList = {
|
|
|
47780
47882
|
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
47781
47883
|
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
47782
47884
|
};
|
|
47783
|
-
export declare type
|
|
47885
|
+
export declare type GraphStoreCypherQueryV2Path = {
|
|
47886
|
+
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
47887
|
+
elements: Array<Scalars['String']['output']>;
|
|
47888
|
+
};
|
|
47889
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampObject;
|
|
47784
47890
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
47785
47891
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
47786
47892
|
value: Scalars['String']['output'];
|
|
@@ -47793,7 +47899,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
47793
47899
|
V2 = "V2",
|
|
47794
47900
|
V3 = "V3"
|
|
47795
47901
|
}
|
|
47796
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47902
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47797
47903
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
47798
47904
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
47799
47905
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -48559,7 +48665,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
48559
48665
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
48560
48666
|
id: Scalars['ID']['output'];
|
|
48561
48667
|
};
|
|
48562
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48668
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48563
48669
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
48564
48670
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
48565
48671
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -48573,7 +48679,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
48573
48679
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
48574
48680
|
id: Scalars['ID']['output'];
|
|
48575
48681
|
};
|
|
48576
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48682
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48577
48683
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
48578
48684
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
48579
48685
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -54328,8 +54434,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
54328
54434
|
lastUpdated: Scalars['DateTime']['output'];
|
|
54329
54435
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
54330
54436
|
};
|
|
54331
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54332
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54437
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54438
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54333
54439
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
54334
54440
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
54335
54441
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -89947,6 +90053,7 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
89947
90053
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
89948
90054
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
89949
90055
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
90056
|
+
isLoading: Scalars['Boolean']['output'];
|
|
89950
90057
|
nodes: Array<JsmChannelsPlanNodeMapEntry>;
|
|
89951
90058
|
planId: Scalars['ID']['output'];
|
|
89952
90059
|
};
|
|
@@ -93251,6 +93358,7 @@ export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
|
93251
93358
|
};
|
|
93252
93359
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
93253
93360
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
93361
|
+
additionalCompatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
93254
93362
|
cloudAppEnvironmentId: Scalars['ID']['output'];
|
|
93255
93363
|
cloudAppId: Scalars['ID']['output'];
|
|
93256
93364
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
@@ -97653,6 +97761,7 @@ export declare type MercuryGoalInsight = MercuryInsight & {
|
|
|
97653
97761
|
__typename?: 'MercuryGoalInsight';
|
|
97654
97762
|
ari: Scalars['ID']['output'];
|
|
97655
97763
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
97764
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97656
97765
|
id: Scalars['ID']['output'];
|
|
97657
97766
|
insightData?: Maybe<TownsquareGoal>;
|
|
97658
97767
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97761,6 +97870,7 @@ export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
|
97761
97870
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
97762
97871
|
ari: Scalars['ID']['output'];
|
|
97763
97872
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
97873
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97764
97874
|
id: Scalars['ID']['output'];
|
|
97765
97875
|
insightData?: Maybe<JiraAlignAggProject>;
|
|
97766
97876
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97791,6 +97901,7 @@ export declare type MercuryJiraIssueInsight = MercuryInsight & {
|
|
|
97791
97901
|
__typename?: 'MercuryJiraIssueInsight';
|
|
97792
97902
|
ari: Scalars['ID']['output'];
|
|
97793
97903
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
97904
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97794
97905
|
id: Scalars['ID']['output'];
|
|
97795
97906
|
insightData?: Maybe<JiraIssue>;
|
|
97796
97907
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -99344,6 +99455,7 @@ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
|
99344
99455
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
99345
99456
|
ari: Scalars['ID']['output'];
|
|
99346
99457
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
99458
|
+
focusAreaId: Scalars['ID']['output'];
|
|
99347
99459
|
id: Scalars['ID']['output'];
|
|
99348
99460
|
insightData?: Maybe<TownsquareProject>;
|
|
99349
99461
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -100638,10 +100750,14 @@ export declare type Mutation = {
|
|
|
100638
100750
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
100639
100751
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
100640
100752
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
100753
|
+
projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
|
|
100641
100754
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
100642
100755
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
100756
|
+
projects_editNumberCustomField?: Maybe<TownsquareProjectsEditNumberCustomFieldPayload>;
|
|
100643
100757
|
projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
|
|
100758
|
+
projects_editTextCustomField?: Maybe<TownsquareProjectsEditTextCustomFieldPayload>;
|
|
100644
100759
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
100760
|
+
projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
|
|
100645
100761
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
100646
100762
|
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
100647
100763
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -100748,10 +100864,13 @@ export declare type Mutation = {
|
|
|
100748
100864
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
100749
100865
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100750
100866
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100867
|
+
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
100751
100868
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
100752
100869
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
100753
100870
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
100754
100871
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
100872
|
+
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
100873
|
+
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
100755
100874
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100756
100875
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
100757
100876
|
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -100765,6 +100884,13 @@ export declare type Mutation = {
|
|
|
100765
100884
|
spf_updateAskUpdateDescription?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100766
100885
|
spf_updateAskUpdateStatus?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100767
100886
|
spf_updateAskUpdateTargetDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100887
|
+
spf_updatePlanDescription?: Maybe<SpfUpsertPlanPayload>;
|
|
100888
|
+
spf_updatePlanName?: Maybe<SpfUpsertPlanPayload>;
|
|
100889
|
+
spf_updatePlanPortfolio?: Maybe<SpfUpsertPlanPayload>;
|
|
100890
|
+
spf_updatePlanScenarioName?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
100891
|
+
spf_updatePlanScenarioStatus?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
100892
|
+
spf_updatePlanStatus?: Maybe<SpfUpsertPlanPayload>;
|
|
100893
|
+
spf_updatePlanTimeframe?: Maybe<SpfUpsertPlanPayload>;
|
|
100768
100894
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
100769
100895
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
100770
100896
|
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
@@ -103124,18 +103250,30 @@ export declare type MutationProjects_EditCommentArgs = {
|
|
|
103124
103250
|
export declare type MutationProjects_EditDecisionArgs = {
|
|
103125
103251
|
input: TownsquareProjectsEditDecisionInput;
|
|
103126
103252
|
};
|
|
103253
|
+
export declare type MutationProjects_EditDropdownCustomFieldArgs = {
|
|
103254
|
+
input: TownsquareProjectsEditDropdownCustomFieldInput;
|
|
103255
|
+
};
|
|
103127
103256
|
export declare type MutationProjects_EditLearningArgs = {
|
|
103128
103257
|
input: TownsquareProjectsEditLearningInput;
|
|
103129
103258
|
};
|
|
103130
103259
|
export declare type MutationProjects_EditLinkArgs = {
|
|
103131
103260
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
103132
103261
|
};
|
|
103262
|
+
export declare type MutationProjects_EditNumberCustomFieldArgs = {
|
|
103263
|
+
input: TownsquareProjectsEditNumberCustomFieldInput;
|
|
103264
|
+
};
|
|
103133
103265
|
export declare type MutationProjects_EditRiskArgs = {
|
|
103134
103266
|
input: TownsquareProjectsEditRiskInput;
|
|
103135
103267
|
};
|
|
103268
|
+
export declare type MutationProjects_EditTextCustomFieldArgs = {
|
|
103269
|
+
input: TownsquareProjectsEditTextCustomFieldInput;
|
|
103270
|
+
};
|
|
103136
103271
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
103137
103272
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
103138
103273
|
};
|
|
103274
|
+
export declare type MutationProjects_EditUserCustomFieldArgs = {
|
|
103275
|
+
input: TownsquareProjectsEditUserCustomFieldInput;
|
|
103276
|
+
};
|
|
103139
103277
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
103140
103278
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
103141
103279
|
};
|
|
@@ -103481,6 +103619,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
|
|
|
103481
103619
|
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
103482
103620
|
input: SpfCreateAskUpdateInput;
|
|
103483
103621
|
};
|
|
103622
|
+
export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
103623
|
+
input: SpfCreatePlanScenarioInput;
|
|
103624
|
+
};
|
|
103484
103625
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
103485
103626
|
input: SpfDeleteAskInput;
|
|
103486
103627
|
};
|
|
@@ -103493,6 +103634,12 @@ export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
|
103493
103634
|
export declare type MutationSpf_DeleteAskUpdateArgs = {
|
|
103494
103635
|
input: SpfDeleteAskUpdateInput;
|
|
103495
103636
|
};
|
|
103637
|
+
export declare type MutationSpf_DeletePlanArgs = {
|
|
103638
|
+
input: SpfDeletePlanInput;
|
|
103639
|
+
};
|
|
103640
|
+
export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
103641
|
+
input: SpfDeletePlanScenarioInput;
|
|
103642
|
+
};
|
|
103496
103643
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
103497
103644
|
input: SpfUpdateAskCommentDataInput;
|
|
103498
103645
|
};
|
|
@@ -103532,6 +103679,27 @@ export declare type MutationSpf_UpdateAskUpdateStatusArgs = {
|
|
|
103532
103679
|
export declare type MutationSpf_UpdateAskUpdateTargetDateArgs = {
|
|
103533
103680
|
input: SpfAskUpdateTargetDateInput;
|
|
103534
103681
|
};
|
|
103682
|
+
export declare type MutationSpf_UpdatePlanDescriptionArgs = {
|
|
103683
|
+
input: SpfUpdatePlanDescriptionInput;
|
|
103684
|
+
};
|
|
103685
|
+
export declare type MutationSpf_UpdatePlanNameArgs = {
|
|
103686
|
+
input: SpfUpdatePlanNameInput;
|
|
103687
|
+
};
|
|
103688
|
+
export declare type MutationSpf_UpdatePlanPortfolioArgs = {
|
|
103689
|
+
input: SpfUpdatePlanPortfolioInput;
|
|
103690
|
+
};
|
|
103691
|
+
export declare type MutationSpf_UpdatePlanScenarioNameArgs = {
|
|
103692
|
+
input: SpfUpdatePlanScenarioNameInput;
|
|
103693
|
+
};
|
|
103694
|
+
export declare type MutationSpf_UpdatePlanScenarioStatusArgs = {
|
|
103695
|
+
input: SpfUpdatePlanScenarioStatusInput;
|
|
103696
|
+
};
|
|
103697
|
+
export declare type MutationSpf_UpdatePlanStatusArgs = {
|
|
103698
|
+
input: SpfUpdatePlanStatusInput;
|
|
103699
|
+
};
|
|
103700
|
+
export declare type MutationSpf_UpdatePlanTimeframeArgs = {
|
|
103701
|
+
input: SpfUpdatePlanTimeframeInput;
|
|
103702
|
+
};
|
|
103535
103703
|
export declare type MutationSplitIssueArgs = {
|
|
103536
103704
|
input?: InputMaybe<SplitIssueInput>;
|
|
103537
103705
|
};
|
|
@@ -105744,6 +105912,10 @@ export declare type PolarisAddReactionPayload = Payload & {
|
|
|
105744
105912
|
node: Array<PolarisReactionSummary>;
|
|
105745
105913
|
success: Scalars['Boolean']['output'];
|
|
105746
105914
|
};
|
|
105915
|
+
export declare enum PolarisColorStyle {
|
|
105916
|
+
Background = "BACKGROUND",
|
|
105917
|
+
Highlight = "HIGHLIGHT"
|
|
105918
|
+
}
|
|
105747
105919
|
export declare enum PolarisColumnSize {
|
|
105748
105920
|
Default = "DEFAULT",
|
|
105749
105921
|
Large = "LARGE",
|
|
@@ -106165,6 +106337,9 @@ export declare enum PolarisTimelineTodayMarker {
|
|
|
106165
106337
|
}
|
|
106166
106338
|
export declare type PolarisView = {
|
|
106167
106339
|
__typename?: 'PolarisView';
|
|
106340
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
106341
|
+
colorBy?: Maybe<PolarisIdeaField>;
|
|
106342
|
+
colorStyle?: Maybe<PolarisColorStyle>;
|
|
106168
106343
|
columnSize?: Maybe<PolarisColumnSize>;
|
|
106169
106344
|
comments?: Maybe<Array<PolarisComment>>;
|
|
106170
106345
|
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -106750,6 +106925,7 @@ export declare type Query = {
|
|
|
106750
106925
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
106751
106926
|
admin_group?: Maybe<AdminGroup>;
|
|
106752
106927
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
106928
|
+
admin_identityProviderDirectoryDetails?: Maybe<AdminIdentityProviderDirectoryDetails>;
|
|
106753
106929
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
106754
106930
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
106755
106931
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
@@ -106761,6 +106937,7 @@ export declare type Query = {
|
|
|
106761
106937
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
106762
106938
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
106763
106939
|
admin_user?: Maybe<AdminUser>;
|
|
106940
|
+
admin_userAuthPolicy?: Maybe<AdminUserAuthPolicy>;
|
|
106764
106941
|
admin_userRoles?: Maybe<AdminUserRoleConnection>;
|
|
106765
106942
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
106766
106943
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -107355,7 +107532,6 @@ export declare type Query = {
|
|
|
107355
107532
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
107356
107533
|
jsw?: Maybe<JswQuery>;
|
|
107357
107534
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
107358
|
-
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
107359
107535
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
107360
107536
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
107361
107537
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
@@ -107787,6 +107963,10 @@ export declare type QueryAdmin_GroupsArgs = {
|
|
|
107787
107963
|
input?: InputMaybe<AdminSearchGroupInput>;
|
|
107788
107964
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107789
107965
|
};
|
|
107966
|
+
export declare type QueryAdmin_IdentityProviderDirectoryDetailsArgs = {
|
|
107967
|
+
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
107968
|
+
orgId: Scalars['ID']['input'];
|
|
107969
|
+
};
|
|
107790
107970
|
export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
|
|
107791
107971
|
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
107792
107972
|
orgId: Scalars['ID']['input'];
|
|
@@ -107845,6 +108025,10 @@ export declare type QueryAdmin_UnitsForOrgArgs = {
|
|
|
107845
108025
|
export declare type QueryAdmin_UserArgs = {
|
|
107846
108026
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
107847
108027
|
};
|
|
108028
|
+
export declare type QueryAdmin_UserAuthPolicyArgs = {
|
|
108029
|
+
orgId: Scalars['ID']['input'];
|
|
108030
|
+
userId: Scalars['ID']['input'];
|
|
108031
|
+
};
|
|
107848
108032
|
export declare type QueryAdmin_UserRolesArgs = {
|
|
107849
108033
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107850
108034
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -110514,9 +110698,6 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
110514
110698
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
110515
110699
|
ids: Array<Scalars['ID']['input']>;
|
|
110516
110700
|
};
|
|
110517
|
-
export declare type QueryKitsune_HelloArgs = {
|
|
110518
|
-
projectAri: Scalars['ID']['input'];
|
|
110519
|
-
};
|
|
110520
110701
|
export declare type QueryKitsune_NodeArgs = {
|
|
110521
110702
|
id: Scalars['ID']['input'];
|
|
110522
110703
|
};
|
|
@@ -134461,11 +134642,6 @@ export declare type SiteSettings = {
|
|
|
134461
134642
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
134462
134643
|
siteTitle: Scalars['String']['output'];
|
|
134463
134644
|
};
|
|
134464
|
-
export declare type SkyBridgeId = {
|
|
134465
|
-
__typename?: 'SkyBridgeId';
|
|
134466
|
-
id: Scalars['ID']['output'];
|
|
134467
|
-
shardingContext: Scalars['String']['output'];
|
|
134468
|
-
};
|
|
134469
134645
|
export declare type SkyBridgeIdInput = {
|
|
134470
134646
|
id: Scalars['ID']['input'];
|
|
134471
134647
|
shardingContext: Scalars['String']['input'];
|
|
@@ -135788,6 +135964,11 @@ export declare type SpfCreateAskUpdateInput = {
|
|
|
135788
135964
|
status?: InputMaybe<SpfAskStatus>;
|
|
135789
135965
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
135790
135966
|
};
|
|
135967
|
+
export declare type SpfCreatePlanScenarioInput = {
|
|
135968
|
+
name: Scalars['String']['input'];
|
|
135969
|
+
planId: Scalars['ID']['input'];
|
|
135970
|
+
status: SpfPlanScenarioStatus;
|
|
135971
|
+
};
|
|
135791
135972
|
export declare type SpfDeleteAskCommentInput = {
|
|
135792
135973
|
id: Scalars['ID']['input'];
|
|
135793
135974
|
};
|
|
@@ -135824,6 +136005,24 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
135824
136005
|
id: Scalars['ID']['output'];
|
|
135825
136006
|
success: Scalars['Boolean']['output'];
|
|
135826
136007
|
};
|
|
136008
|
+
export declare type SpfDeletePlanInput = {
|
|
136009
|
+
id: Scalars['ID']['input'];
|
|
136010
|
+
};
|
|
136011
|
+
export declare type SpfDeletePlanPayload = Payload & {
|
|
136012
|
+
__typename?: 'SpfDeletePlanPayload';
|
|
136013
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136014
|
+
id: Scalars['ID']['output'];
|
|
136015
|
+
success: Scalars['Boolean']['output'];
|
|
136016
|
+
};
|
|
136017
|
+
export declare type SpfDeletePlanScenarioInput = {
|
|
136018
|
+
id: Scalars['ID']['input'];
|
|
136019
|
+
};
|
|
136020
|
+
export declare type SpfDeletePlanScenarioPayload = Payload & {
|
|
136021
|
+
__typename?: 'SpfDeletePlanScenarioPayload';
|
|
136022
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136023
|
+
id: Scalars['ID']['output'];
|
|
136024
|
+
success: Scalars['Boolean']['output'];
|
|
136025
|
+
};
|
|
135827
136026
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
135828
136027
|
export declare type SpfMediaToken = {
|
|
135829
136028
|
__typename?: 'SpfMediaToken';
|
|
@@ -135838,18 +136037,15 @@ export declare type SpfPlan = Node & {
|
|
|
135838
136037
|
__typename?: 'SpfPlan';
|
|
135839
136038
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135840
136039
|
createdBy?: Maybe<User>;
|
|
135841
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135842
136040
|
description?: Maybe<Scalars['String']['output']>;
|
|
135843
136041
|
id: Scalars['ID']['output'];
|
|
135844
136042
|
name: Scalars['String']['output'];
|
|
135845
136043
|
portfolio?: Maybe<MercuryFocusArea>;
|
|
135846
|
-
portfolioId: Scalars['String']['output'];
|
|
135847
136044
|
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
135848
136045
|
status: SpfPlanStatus;
|
|
135849
136046
|
timeframe: SpfPlanTimeframe;
|
|
135850
136047
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135851
136048
|
updatedBy?: Maybe<User>;
|
|
135852
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135853
136049
|
};
|
|
135854
136050
|
export declare type SpfPlanScenariosArgs = {
|
|
135855
136051
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135872,14 +136068,12 @@ export declare type SpfPlanScenario = Node & {
|
|
|
135872
136068
|
__typename?: 'SpfPlanScenario';
|
|
135873
136069
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135874
136070
|
createdBy?: Maybe<User>;
|
|
135875
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135876
136071
|
id: Scalars['ID']['output'];
|
|
135877
136072
|
name: Scalars['String']['output'];
|
|
135878
136073
|
planId: Scalars['String']['output'];
|
|
135879
136074
|
status: SpfPlanScenarioStatus;
|
|
135880
136075
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135881
136076
|
updatedBy?: Maybe<User>;
|
|
135882
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135883
136077
|
};
|
|
135884
136078
|
export declare type SpfPlanScenarioConnection = {
|
|
135885
136079
|
__typename?: 'SpfPlanScenarioConnection';
|
|
@@ -135910,6 +136104,11 @@ export declare enum SpfPlanTimeframeGranularity {
|
|
|
135910
136104
|
Quarter = "QUARTER",
|
|
135911
136105
|
Week = "WEEK"
|
|
135912
136106
|
}
|
|
136107
|
+
export declare type SpfPlanTimeframeInput = {
|
|
136108
|
+
endDate: Scalars['String']['input'];
|
|
136109
|
+
startDate: Scalars['String']['input'];
|
|
136110
|
+
timeframeGranularity: SpfPlanTimeframeGranularity;
|
|
136111
|
+
};
|
|
135913
136112
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
135914
136113
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
135915
136114
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135954,6 +136153,34 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
135954
136153
|
id: Scalars['ID']['input'];
|
|
135955
136154
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
135956
136155
|
};
|
|
136156
|
+
export declare type SpfUpdatePlanDescriptionInput = {
|
|
136157
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
136158
|
+
id: Scalars['ID']['input'];
|
|
136159
|
+
};
|
|
136160
|
+
export declare type SpfUpdatePlanNameInput = {
|
|
136161
|
+
id: Scalars['ID']['input'];
|
|
136162
|
+
name: Scalars['String']['input'];
|
|
136163
|
+
};
|
|
136164
|
+
export declare type SpfUpdatePlanPortfolioInput = {
|
|
136165
|
+
id: Scalars['ID']['input'];
|
|
136166
|
+
portfolioId: Scalars['String']['input'];
|
|
136167
|
+
};
|
|
136168
|
+
export declare type SpfUpdatePlanScenarioNameInput = {
|
|
136169
|
+
id: Scalars['ID']['input'];
|
|
136170
|
+
name: Scalars['String']['input'];
|
|
136171
|
+
};
|
|
136172
|
+
export declare type SpfUpdatePlanScenarioStatusInput = {
|
|
136173
|
+
id: Scalars['ID']['input'];
|
|
136174
|
+
status: SpfPlanScenarioStatus;
|
|
136175
|
+
};
|
|
136176
|
+
export declare type SpfUpdatePlanStatusInput = {
|
|
136177
|
+
id: Scalars['ID']['input'];
|
|
136178
|
+
status: SpfPlanStatus;
|
|
136179
|
+
};
|
|
136180
|
+
export declare type SpfUpdatePlanTimeframeInput = {
|
|
136181
|
+
id: Scalars['ID']['input'];
|
|
136182
|
+
timeframe: SpfPlanTimeframeInput;
|
|
136183
|
+
};
|
|
135957
136184
|
export declare type SpfUpsertAskCommentPayload = Payload & {
|
|
135958
136185
|
__typename?: 'SpfUpsertAskCommentPayload';
|
|
135959
136186
|
comment?: Maybe<SpfAskComment>;
|
|
@@ -135973,6 +136200,18 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
135973
136200
|
errors?: Maybe<Array<MutationError>>;
|
|
135974
136201
|
success: Scalars['Boolean']['output'];
|
|
135975
136202
|
};
|
|
136203
|
+
export declare type SpfUpsertPlanPayload = Payload & {
|
|
136204
|
+
__typename?: 'SpfUpsertPlanPayload';
|
|
136205
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136206
|
+
plan?: Maybe<SpfPlan>;
|
|
136207
|
+
success: Scalars['Boolean']['output'];
|
|
136208
|
+
};
|
|
136209
|
+
export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
136210
|
+
__typename?: 'SpfUpsertPlanScenarioPayload';
|
|
136211
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136212
|
+
planScenario?: Maybe<SpfPlanScenario>;
|
|
136213
|
+
success: Scalars['Boolean']['output'];
|
|
136214
|
+
};
|
|
135976
136215
|
export declare type SplitIssueInput = {
|
|
135977
136216
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
135978
136217
|
originalIssue: OriginalSplitIssue;
|
|
@@ -139240,6 +139479,21 @@ export declare type TownsquareCustomFieldNumberSavedValueNode = Node & Townsquar
|
|
|
139240
139479
|
export declare type TownsquareCustomFieldSavedValueNode = {
|
|
139241
139480
|
id: Scalars['ID']['output'];
|
|
139242
139481
|
};
|
|
139482
|
+
export declare type TownsquareCustomFieldTextAllowedValueConnection = {
|
|
139483
|
+
__typename?: 'TownsquareCustomFieldTextAllowedValueConnection';
|
|
139484
|
+
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextAllowedValueEdge>>>;
|
|
139485
|
+
pageInfo: PageInfo;
|
|
139486
|
+
};
|
|
139487
|
+
export declare type TownsquareCustomFieldTextAllowedValueEdge = {
|
|
139488
|
+
__typename?: 'TownsquareCustomFieldTextAllowedValueEdge';
|
|
139489
|
+
cursor: Scalars['String']['output'];
|
|
139490
|
+
node?: Maybe<TownsquareCustomFieldTextAllowedValueNode>;
|
|
139491
|
+
};
|
|
139492
|
+
export declare type TownsquareCustomFieldTextAllowedValueNode = Node & {
|
|
139493
|
+
__typename?: 'TownsquareCustomFieldTextAllowedValueNode';
|
|
139494
|
+
id: Scalars['ID']['output'];
|
|
139495
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
139496
|
+
};
|
|
139243
139497
|
export declare type TownsquareCustomFieldTextSavedValueConnection = {
|
|
139244
139498
|
__typename?: 'TownsquareCustomFieldTextSavedValueConnection';
|
|
139245
139499
|
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextSavedValueEdge>>>;
|
|
@@ -140543,6 +140797,7 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
140543
140797
|
};
|
|
140544
140798
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
140545
140799
|
__typename?: 'TownsquareProject';
|
|
140800
|
+
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
140546
140801
|
archived: Scalars['Boolean']['output'];
|
|
140547
140802
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
140548
140803
|
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
@@ -140602,6 +140857,10 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
140602
140857
|
watching?: Maybe<Scalars['Boolean']['output']>;
|
|
140603
140858
|
workspace?: Maybe<TownsquareWorkspace>;
|
|
140604
140859
|
};
|
|
140860
|
+
export declare type TownsquareProjectAccessArgs = {
|
|
140861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
140862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140863
|
+
};
|
|
140605
140864
|
export declare type TownsquareProjectChangelogArgs = {
|
|
140606
140865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140607
140866
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140690,6 +140949,25 @@ export declare type TownsquareProjectWatchersArgs = {
|
|
|
140690
140949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140691
140950
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140692
140951
|
};
|
|
140952
|
+
export declare type TownsquareProjectAccessConnection = {
|
|
140953
|
+
__typename?: 'TownsquareProjectAccessConnection';
|
|
140954
|
+
count: Scalars['Int']['output'];
|
|
140955
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
140956
|
+
pageInfo: PageInfo;
|
|
140957
|
+
};
|
|
140958
|
+
export declare type TownsquareProjectAccessEdge = {
|
|
140959
|
+
__typename?: 'TownsquareProjectAccessEdge';
|
|
140960
|
+
cursor: Scalars['String']['output'];
|
|
140961
|
+
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
140962
|
+
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
140963
|
+
node?: Maybe<TownsquareAccessPrincipal>;
|
|
140964
|
+
principalAri?: Maybe<Scalars['String']['output']>;
|
|
140965
|
+
role?: Maybe<TownsquareProjectAccessRole>;
|
|
140966
|
+
};
|
|
140967
|
+
export declare enum TownsquareProjectAccessRole {
|
|
140968
|
+
Editor = "EDITOR",
|
|
140969
|
+
Viewer = "VIEWER"
|
|
140970
|
+
}
|
|
140693
140971
|
export declare type TownsquareProjectChangelogItem = {
|
|
140694
140972
|
__typename?: 'TownsquareProjectChangelogItem';
|
|
140695
140973
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -141112,6 +141390,17 @@ export declare type TownsquareProjectsEditDecisionPayload = {
|
|
|
141112
141390
|
errors?: Maybe<Array<MutationError>>;
|
|
141113
141391
|
success: Scalars['Boolean']['output'];
|
|
141114
141392
|
};
|
|
141393
|
+
export declare type TownsquareProjectsEditDropdownCustomFieldInput = {
|
|
141394
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141395
|
+
projectId: Scalars['ID']['input'];
|
|
141396
|
+
valueId: Scalars['ID']['input'];
|
|
141397
|
+
};
|
|
141398
|
+
export declare type TownsquareProjectsEditDropdownCustomFieldPayload = {
|
|
141399
|
+
__typename?: 'TownsquareProjectsEditDropdownCustomFieldPayload';
|
|
141400
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141401
|
+
success: Scalars['Boolean']['output'];
|
|
141402
|
+
valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
141403
|
+
};
|
|
141115
141404
|
export declare type TownsquareProjectsEditInput = {
|
|
141116
141405
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141117
141406
|
description?: InputMaybe<TownsquareProjectDescriptionInput>;
|
|
@@ -141150,6 +141439,17 @@ export declare type TownsquareProjectsEditMutationErrorExtension = MutationError
|
|
|
141150
141439
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
141151
141440
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
141152
141441
|
};
|
|
141442
|
+
export declare type TownsquareProjectsEditNumberCustomFieldInput = {
|
|
141443
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141444
|
+
projectId: Scalars['ID']['input'];
|
|
141445
|
+
value: Scalars['Float']['input'];
|
|
141446
|
+
};
|
|
141447
|
+
export declare type TownsquareProjectsEditNumberCustomFieldPayload = {
|
|
141448
|
+
__typename?: 'TownsquareProjectsEditNumberCustomFieldPayload';
|
|
141449
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141450
|
+
success: Scalars['Boolean']['output'];
|
|
141451
|
+
valueNode?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
141452
|
+
};
|
|
141153
141453
|
export declare type TownsquareProjectsEditPayload = {
|
|
141154
141454
|
__typename?: 'TownsquareProjectsEditPayload';
|
|
141155
141455
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -141167,6 +141467,17 @@ export declare type TownsquareProjectsEditRiskPayload = {
|
|
|
141167
141467
|
risk?: Maybe<TownsquareRisk>;
|
|
141168
141468
|
success: Scalars['Boolean']['output'];
|
|
141169
141469
|
};
|
|
141470
|
+
export declare type TownsquareProjectsEditTextCustomFieldInput = {
|
|
141471
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141472
|
+
projectId: Scalars['ID']['input'];
|
|
141473
|
+
value: Scalars['String']['input'];
|
|
141474
|
+
};
|
|
141475
|
+
export declare type TownsquareProjectsEditTextCustomFieldPayload = {
|
|
141476
|
+
__typename?: 'TownsquareProjectsEditTextCustomFieldPayload';
|
|
141477
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141478
|
+
success: Scalars['Boolean']['output'];
|
|
141479
|
+
valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
141480
|
+
};
|
|
141170
141481
|
export declare type TownsquareProjectsEditUpdateInput = {
|
|
141171
141482
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
141172
141483
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -141181,6 +141492,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
141181
141492
|
success: Scalars['Boolean']['output'];
|
|
141182
141493
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
141183
141494
|
};
|
|
141495
|
+
export declare type TownsquareProjectsEditUserCustomFieldInput = {
|
|
141496
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141497
|
+
projectId: Scalars['ID']['input'];
|
|
141498
|
+
userId: Scalars['ID']['input'];
|
|
141499
|
+
};
|
|
141500
|
+
export declare type TownsquareProjectsEditUserCustomFieldPayload = {
|
|
141501
|
+
__typename?: 'TownsquareProjectsEditUserCustomFieldPayload';
|
|
141502
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141503
|
+
success: Scalars['Boolean']['output'];
|
|
141504
|
+
user?: Maybe<User>;
|
|
141505
|
+
};
|
|
141184
141506
|
export declare type TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension = MutationErrorExtension & {
|
|
141185
141507
|
__typename?: 'TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension';
|
|
141186
141508
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -141637,6 +141959,7 @@ export declare type TownsquareTextSelectCustomFieldValuesArgs = {
|
|
|
141637
141959
|
};
|
|
141638
141960
|
export declare type TownsquareTextSelectCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
141639
141961
|
__typename?: 'TownsquareTextSelectCustomFieldDefinition';
|
|
141962
|
+
allowedValues?: Maybe<TownsquareCustomFieldTextAllowedValueConnection>;
|
|
141640
141963
|
canSetMultipleValues?: Maybe<Scalars['Boolean']['output']>;
|
|
141641
141964
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
141642
141965
|
creator?: Maybe<User>;
|
|
@@ -141648,6 +141971,10 @@ export declare type TownsquareTextSelectCustomFieldDefinition = Node & Townsquar
|
|
|
141648
141971
|
token?: Maybe<Scalars['String']['output']>;
|
|
141649
141972
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
141650
141973
|
};
|
|
141974
|
+
export declare type TownsquareTextSelectCustomFieldDefinitionAllowedValuesArgs = {
|
|
141975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
141976
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141977
|
+
};
|
|
141651
141978
|
export declare type TownsquareThemeUrIs = {
|
|
141652
141979
|
__typename?: 'TownsquareThemeURIs';
|
|
141653
141980
|
dark?: Maybe<Scalars['String']['output']>;
|
|
@@ -142246,6 +142573,7 @@ export declare type TrelloBaseBoard = {
|
|
|
142246
142573
|
limits?: Maybe<TrelloBoardLimits>;
|
|
142247
142574
|
lists?: Maybe<TrelloListConnection>;
|
|
142248
142575
|
objectId: Scalars['ID']['output'];
|
|
142576
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
142249
142577
|
workspace?: Maybe<TrelloWorkspace>;
|
|
142250
142578
|
};
|
|
142251
142579
|
export declare type TrelloBaseBoardLabelsArgs = {
|
|
@@ -142257,6 +142585,10 @@ export declare type TrelloBaseBoardListsArgs = {
|
|
|
142257
142585
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
142258
142586
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142259
142587
|
};
|
|
142588
|
+
export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
142589
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142590
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142591
|
+
};
|
|
142260
142592
|
export declare type TrelloBaseBoardPrefs = {
|
|
142261
142593
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
142262
142594
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -142291,6 +142623,7 @@ export declare type TrelloBaseCard = {
|
|
|
142291
142623
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
142292
142624
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
142293
142625
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
142626
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
142294
142627
|
position?: Maybe<Scalars['Float']['output']>;
|
|
142295
142628
|
role?: Maybe<TrelloCardRole>;
|
|
142296
142629
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -142317,6 +142650,11 @@ export declare type TrelloBaseCardLabelsArgs = {
|
|
|
142317
142650
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142318
142651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142319
142652
|
};
|
|
142653
|
+
export declare type TrelloBaseCardPlannerEventsArgs = {
|
|
142654
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142655
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
142656
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142657
|
+
};
|
|
142320
142658
|
export declare type TrelloBaseCardUpdated = {
|
|
142321
142659
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
142322
142660
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -143766,6 +144104,7 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
143766
144104
|
limits?: Maybe<TrelloBoardLimits>;
|
|
143767
144105
|
lists?: Maybe<TrelloListConnection>;
|
|
143768
144106
|
objectId: Scalars['ID']['output'];
|
|
144107
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
143769
144108
|
prefs: TrelloInboxPrefs;
|
|
143770
144109
|
workspace?: Maybe<TrelloWorkspace>;
|
|
143771
144110
|
};
|
|
@@ -143778,6 +144117,10 @@ export declare type TrelloInboxListsArgs = {
|
|
|
143778
144117
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
143779
144118
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143780
144119
|
};
|
|
144120
|
+
export declare type TrelloInboxPlannerEventCardsArgs = {
|
|
144121
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144122
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144123
|
+
};
|
|
143781
144124
|
export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
143782
144125
|
__typename?: 'TrelloInboxCard';
|
|
143783
144126
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
@@ -143800,6 +144143,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
143800
144143
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
143801
144144
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
143802
144145
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
144146
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
143803
144147
|
position?: Maybe<Scalars['Float']['output']>;
|
|
143804
144148
|
role?: Maybe<TrelloCardRole>;
|
|
143805
144149
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -143826,6 +144170,11 @@ export declare type TrelloInboxCardLabelsArgs = {
|
|
|
143826
144170
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143827
144171
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143828
144172
|
};
|
|
144173
|
+
export declare type TrelloInboxCardPlannerEventsArgs = {
|
|
144174
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144175
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
144176
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144177
|
+
};
|
|
143829
144178
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
143830
144179
|
__typename?: 'TrelloInboxCardUpdated';
|
|
143831
144180
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -144988,7 +145337,7 @@ export declare type TrelloPlannerEventCardDeleted = {
|
|
|
144988
145337
|
export declare type TrelloPlannerEventCardEdge = {
|
|
144989
145338
|
__typename?: 'TrelloPlannerEventCardEdge';
|
|
144990
145339
|
cursor: Scalars['String']['output'];
|
|
144991
|
-
node:
|
|
145340
|
+
node: TrelloBaseCard;
|
|
144992
145341
|
};
|
|
144993
145342
|
export declare type TrelloPlannerEventConnection = {
|
|
144994
145343
|
__typename?: 'TrelloPlannerEventConnection';
|
|
@@ -148197,6 +148546,9 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
148197
148546
|
success: Scalars['Boolean']['output'];
|
|
148198
148547
|
};
|
|
148199
148548
|
export declare type UpdatePolarisViewInput = {
|
|
148549
|
+
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148550
|
+
colorBy?: InputMaybe<Scalars['ID']['input']>;
|
|
148551
|
+
colorStyle?: InputMaybe<PolarisColorStyle>;
|
|
148200
148552
|
columnSize?: InputMaybe<PolarisColumnSize>;
|
|
148201
148553
|
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
148202
148554
|
connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
|