@forge/cli-shared 8.11.1-next.4 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +425 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +68 -32
- 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>>;
|
|
@@ -3929,6 +3986,7 @@ export declare type App = {
|
|
|
3929
3986
|
environmentByKey?: Maybe<AppEnvironment>;
|
|
3930
3987
|
environmentByOauthClient?: Maybe<AppEnvironment>;
|
|
3931
3988
|
environments: Array<AppEnvironment>;
|
|
3989
|
+
environmentsPage?: Maybe<AppEnvironmentConnection>;
|
|
3932
3990
|
hasPDReportingApiImplemented?: Maybe<Scalars['Boolean']['output']>;
|
|
3933
3991
|
id: Scalars['ID']['output'];
|
|
3934
3992
|
installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
|
|
@@ -3956,6 +4014,12 @@ export declare type AppEnvironmentByKeyArgs = {
|
|
|
3956
4014
|
export declare type AppEnvironmentByOauthClientArgs = {
|
|
3957
4015
|
oauthClientId: Scalars['ID']['input'];
|
|
3958
4016
|
};
|
|
4017
|
+
export declare type AppEnvironmentsPageArgs = {
|
|
4018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4019
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4020
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4021
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4022
|
+
};
|
|
3959
4023
|
export declare type AppInstallationsByContextsArgs = {
|
|
3960
4024
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3961
4025
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4213,10 +4277,29 @@ export declare type AppEnvironmentAppVersionRolloutEdge = {
|
|
|
4213
4277
|
cursor: Scalars['String']['output'];
|
|
4214
4278
|
node?: Maybe<AppVersionRollout>;
|
|
4215
4279
|
};
|
|
4280
|
+
export declare type AppEnvironmentConnection = {
|
|
4281
|
+
__typename?: 'AppEnvironmentConnection';
|
|
4282
|
+
edges?: Maybe<Array<Maybe<AppEnvironmentEdge>>>;
|
|
4283
|
+
nodes?: Maybe<Array<Maybe<AppEnvironment>>>;
|
|
4284
|
+
pageInfo: AppEnvironmentPageInfo;
|
|
4285
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
4286
|
+
};
|
|
4287
|
+
export declare type AppEnvironmentEdge = {
|
|
4288
|
+
__typename?: 'AppEnvironmentEdge';
|
|
4289
|
+
cursor: Scalars['String']['output'];
|
|
4290
|
+
node?: Maybe<AppEnvironment>;
|
|
4291
|
+
};
|
|
4216
4292
|
export declare type AppEnvironmentInput = {
|
|
4217
4293
|
appId: Scalars['ID']['input'];
|
|
4218
4294
|
key: Scalars['String']['input'];
|
|
4219
4295
|
};
|
|
4296
|
+
export declare type AppEnvironmentPageInfo = {
|
|
4297
|
+
__typename?: 'AppEnvironmentPageInfo';
|
|
4298
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4299
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4300
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4301
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4302
|
+
};
|
|
4220
4303
|
export declare enum AppEnvironmentType {
|
|
4221
4304
|
Development = "DEVELOPMENT",
|
|
4222
4305
|
Production = "PRODUCTION",
|
|
@@ -24178,6 +24261,16 @@ export declare type CplsUpdateFiltersPayload = Payload & {
|
|
|
24178
24261
|
filters?: Maybe<CplsFilters>;
|
|
24179
24262
|
success: Scalars['Boolean']['output'];
|
|
24180
24263
|
};
|
|
24264
|
+
export declare type CplsUpdateViewSettingsInput = {
|
|
24265
|
+
scopeId: Scalars['ID']['input'];
|
|
24266
|
+
viewSettings: CplsViewSettingsInput;
|
|
24267
|
+
};
|
|
24268
|
+
export declare type CplsUpdateViewSettingsPayload = Payload & {
|
|
24269
|
+
__typename?: 'CplsUpdateViewSettingsPayload';
|
|
24270
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24271
|
+
success: Scalars['Boolean']['output'];
|
|
24272
|
+
viewSettings?: Maybe<CplsViewSettings>;
|
|
24273
|
+
};
|
|
24181
24274
|
export declare type CplsValueFormats = {
|
|
24182
24275
|
__typename?: 'CplsValueFormats';
|
|
24183
24276
|
days?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24190,6 +24283,11 @@ export declare type CplsViewSettings = {
|
|
|
24190
24283
|
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
24191
24284
|
timeScale?: Maybe<CplsTimeScaleType>;
|
|
24192
24285
|
};
|
|
24286
|
+
export declare type CplsViewSettingsInput = {
|
|
24287
|
+
alwaysShowNumbersInGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24288
|
+
contributionValueType?: InputMaybe<CplsContributionValueType>;
|
|
24289
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
24290
|
+
};
|
|
24193
24291
|
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
24194
24292
|
export declare enum CplsWorkType {
|
|
24195
24293
|
CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
|
|
@@ -31109,7 +31207,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
31109
31207
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
31110
31208
|
node?: Maybe<ExternalAssociation>;
|
|
31111
31209
|
};
|
|
31112
|
-
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;
|
|
31113
31211
|
export declare type ExternalAttachment = {
|
|
31114
31212
|
__typename?: 'ExternalAttachment';
|
|
31115
31213
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -31380,6 +31478,46 @@ export declare type ExternalCue = {
|
|
|
31380
31478
|
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
31381
31479
|
text?: Maybe<Scalars['String']['output']>;
|
|
31382
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
|
+
};
|
|
31383
31521
|
export declare type ExternalCustomerOrg = Node & {
|
|
31384
31522
|
__typename?: 'ExternalCustomerOrg';
|
|
31385
31523
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
@@ -31527,6 +31665,8 @@ export declare type ExternalDeal = Node & {
|
|
|
31527
31665
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
31528
31666
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31529
31667
|
contact?: Maybe<ExternalUser>;
|
|
31668
|
+
container?: Maybe<ExternalEntity>;
|
|
31669
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
31530
31670
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
31531
31671
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31532
31672
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -31540,12 +31680,14 @@ export declare type ExternalDeal = Node & {
|
|
|
31540
31680
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
31541
31681
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
31542
31682
|
opportunityAmount?: Maybe<ExternalDealOpportunityAmount>;
|
|
31683
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31543
31684
|
parent?: Maybe<ExternalEntity>;
|
|
31544
31685
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31545
31686
|
provider?: Maybe<ExternalProvider>;
|
|
31546
31687
|
stage?: Maybe<Scalars['String']['output']>;
|
|
31547
31688
|
status?: Maybe<Scalars['String']['output']>;
|
|
31548
31689
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
31690
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
31549
31691
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31550
31692
|
url?: Maybe<Scalars['String']['output']>;
|
|
31551
31693
|
userContributors?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -31697,6 +31839,7 @@ export declare type ExternalEntities = {
|
|
|
31697
31839
|
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
31698
31840
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
31699
31841
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
31842
|
+
customerContact?: Maybe<Array<Maybe<ExternalCustomerContact>>>;
|
|
31700
31843
|
customerOrg?: Maybe<Array<Maybe<ExternalCustomerOrg>>>;
|
|
31701
31844
|
customerOrgCategory?: Maybe<Array<Maybe<ExternalCustomerOrgCategory>>>;
|
|
31702
31845
|
dashboard?: Maybe<Array<Maybe<ExternalDashboard>>>;
|
|
@@ -31725,7 +31868,7 @@ export declare type ExternalEntities = {
|
|
|
31725
31868
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
31726
31869
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
31727
31870
|
};
|
|
31728
|
-
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;
|
|
31729
31872
|
export declare type ExternalEntityExtendedValue = {
|
|
31730
31873
|
__typename?: 'ExternalEntityExtendedValue';
|
|
31731
31874
|
fieldDisplayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -45870,7 +46013,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
45870
46013
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
45871
46014
|
id: Scalars['ID']['output'];
|
|
45872
46015
|
};
|
|
45873
|
-
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;
|
|
45874
46017
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
45875
46018
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
45876
46019
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -45895,7 +46038,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
45895
46038
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
45896
46039
|
id: Scalars['ID']['output'];
|
|
45897
46040
|
};
|
|
45898
|
-
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;
|
|
45899
46042
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
45900
46043
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
45901
46044
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -47623,7 +47766,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
47623
47766
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
47624
47767
|
id: Scalars['ID']['output'];
|
|
47625
47768
|
};
|
|
47626
|
-
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;
|
|
47627
47770
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
47628
47771
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
47629
47772
|
value: Scalars['String']['output'];
|
|
@@ -47637,13 +47780,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
47637
47780
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
47638
47781
|
id: Scalars['ID']['output'];
|
|
47639
47782
|
};
|
|
47640
|
-
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;
|
|
47641
47784
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
47642
47785
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
47643
47786
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
47644
47787
|
id: Scalars['ID']['output'];
|
|
47645
47788
|
};
|
|
47646
|
-
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;
|
|
47647
47790
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
47648
47791
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
47649
47792
|
value: Scalars['Boolean']['output'];
|
|
@@ -47739,7 +47882,11 @@ export declare type GraphStoreCypherQueryV2NodeList = {
|
|
|
47739
47882
|
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
47740
47883
|
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
47741
47884
|
};
|
|
47742
|
-
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;
|
|
47743
47890
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
47744
47891
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
47745
47892
|
value: Scalars['String']['output'];
|
|
@@ -47752,7 +47899,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
47752
47899
|
V2 = "V2",
|
|
47753
47900
|
V3 = "V3"
|
|
47754
47901
|
}
|
|
47755
|
-
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;
|
|
47756
47903
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
47757
47904
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
47758
47905
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -48518,7 +48665,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
48518
48665
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
48519
48666
|
id: Scalars['ID']['output'];
|
|
48520
48667
|
};
|
|
48521
|
-
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;
|
|
48522
48669
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
48523
48670
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
48524
48671
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -48532,7 +48679,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
48532
48679
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
48533
48680
|
id: Scalars['ID']['output'];
|
|
48534
48681
|
};
|
|
48535
|
-
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;
|
|
48536
48683
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
48537
48684
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
48538
48685
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -54287,8 +54434,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
54287
54434
|
lastUpdated: Scalars['DateTime']['output'];
|
|
54288
54435
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
54289
54436
|
};
|
|
54290
|
-
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;
|
|
54291
|
-
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;
|
|
54292
54439
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
54293
54440
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
54294
54441
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -89906,6 +90053,7 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
89906
90053
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
89907
90054
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
89908
90055
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
90056
|
+
isLoading: Scalars['Boolean']['output'];
|
|
89909
90057
|
nodes: Array<JsmChannelsPlanNodeMapEntry>;
|
|
89910
90058
|
planId: Scalars['ID']['output'];
|
|
89911
90059
|
};
|
|
@@ -93210,6 +93358,7 @@ export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
|
93210
93358
|
};
|
|
93211
93359
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
93212
93360
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
93361
|
+
additionalCompatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
93213
93362
|
cloudAppEnvironmentId: Scalars['ID']['output'];
|
|
93214
93363
|
cloudAppId: Scalars['ID']['output'];
|
|
93215
93364
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
@@ -97612,6 +97761,7 @@ export declare type MercuryGoalInsight = MercuryInsight & {
|
|
|
97612
97761
|
__typename?: 'MercuryGoalInsight';
|
|
97613
97762
|
ari: Scalars['ID']['output'];
|
|
97614
97763
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
97764
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97615
97765
|
id: Scalars['ID']['output'];
|
|
97616
97766
|
insightData?: Maybe<TownsquareGoal>;
|
|
97617
97767
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97720,6 +97870,7 @@ export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
|
97720
97870
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
97721
97871
|
ari: Scalars['ID']['output'];
|
|
97722
97872
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
97873
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97723
97874
|
id: Scalars['ID']['output'];
|
|
97724
97875
|
insightData?: Maybe<JiraAlignAggProject>;
|
|
97725
97876
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97750,6 +97901,7 @@ export declare type MercuryJiraIssueInsight = MercuryInsight & {
|
|
|
97750
97901
|
__typename?: 'MercuryJiraIssueInsight';
|
|
97751
97902
|
ari: Scalars['ID']['output'];
|
|
97752
97903
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
97904
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97753
97905
|
id: Scalars['ID']['output'];
|
|
97754
97906
|
insightData?: Maybe<JiraIssue>;
|
|
97755
97907
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -99303,6 +99455,7 @@ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
|
99303
99455
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
99304
99456
|
ari: Scalars['ID']['output'];
|
|
99305
99457
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
99458
|
+
focusAreaId: Scalars['ID']['output'];
|
|
99306
99459
|
id: Scalars['ID']['output'];
|
|
99307
99460
|
insightData?: Maybe<TownsquareProject>;
|
|
99308
99461
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -100196,6 +100349,7 @@ export declare type Mutation = {
|
|
|
100196
100349
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
100197
100350
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
100198
100351
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
100352
|
+
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
100199
100353
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
100200
100354
|
createApp?: Maybe<CreateAppResponse>;
|
|
100201
100355
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -100596,10 +100750,14 @@ export declare type Mutation = {
|
|
|
100596
100750
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
100597
100751
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
100598
100752
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
100753
|
+
projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
|
|
100599
100754
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
100600
100755
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
100756
|
+
projects_editNumberCustomField?: Maybe<TownsquareProjectsEditNumberCustomFieldPayload>;
|
|
100601
100757
|
projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
|
|
100758
|
+
projects_editTextCustomField?: Maybe<TownsquareProjectsEditTextCustomFieldPayload>;
|
|
100602
100759
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
100760
|
+
projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
|
|
100603
100761
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
100604
100762
|
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
100605
100763
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -100706,10 +100864,13 @@ export declare type Mutation = {
|
|
|
100706
100864
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
100707
100865
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100708
100866
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100867
|
+
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
100709
100868
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
100710
100869
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
100711
100870
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
100712
100871
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
100872
|
+
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
100873
|
+
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
100713
100874
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100714
100875
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
100715
100876
|
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -100723,6 +100884,13 @@ export declare type Mutation = {
|
|
|
100723
100884
|
spf_updateAskUpdateDescription?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100724
100885
|
spf_updateAskUpdateStatus?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100725
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>;
|
|
100726
100894
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
100727
100895
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
100728
100896
|
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
@@ -101803,6 +101971,9 @@ export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
|
101803
101971
|
export declare type MutationCpls_UpdateFiltersArgs = {
|
|
101804
101972
|
input: CplsUpdateFiltersInput;
|
|
101805
101973
|
};
|
|
101974
|
+
export declare type MutationCpls_UpdateViewSettingsArgs = {
|
|
101975
|
+
input: CplsUpdateViewSettingsInput;
|
|
101976
|
+
};
|
|
101806
101977
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
101807
101978
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
101808
101979
|
};
|
|
@@ -103079,18 +103250,30 @@ export declare type MutationProjects_EditCommentArgs = {
|
|
|
103079
103250
|
export declare type MutationProjects_EditDecisionArgs = {
|
|
103080
103251
|
input: TownsquareProjectsEditDecisionInput;
|
|
103081
103252
|
};
|
|
103253
|
+
export declare type MutationProjects_EditDropdownCustomFieldArgs = {
|
|
103254
|
+
input: TownsquareProjectsEditDropdownCustomFieldInput;
|
|
103255
|
+
};
|
|
103082
103256
|
export declare type MutationProjects_EditLearningArgs = {
|
|
103083
103257
|
input: TownsquareProjectsEditLearningInput;
|
|
103084
103258
|
};
|
|
103085
103259
|
export declare type MutationProjects_EditLinkArgs = {
|
|
103086
103260
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
103087
103261
|
};
|
|
103262
|
+
export declare type MutationProjects_EditNumberCustomFieldArgs = {
|
|
103263
|
+
input: TownsquareProjectsEditNumberCustomFieldInput;
|
|
103264
|
+
};
|
|
103088
103265
|
export declare type MutationProjects_EditRiskArgs = {
|
|
103089
103266
|
input: TownsquareProjectsEditRiskInput;
|
|
103090
103267
|
};
|
|
103268
|
+
export declare type MutationProjects_EditTextCustomFieldArgs = {
|
|
103269
|
+
input: TownsquareProjectsEditTextCustomFieldInput;
|
|
103270
|
+
};
|
|
103091
103271
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
103092
103272
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
103093
103273
|
};
|
|
103274
|
+
export declare type MutationProjects_EditUserCustomFieldArgs = {
|
|
103275
|
+
input: TownsquareProjectsEditUserCustomFieldInput;
|
|
103276
|
+
};
|
|
103094
103277
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
103095
103278
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
103096
103279
|
};
|
|
@@ -103436,6 +103619,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
|
|
|
103436
103619
|
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
103437
103620
|
input: SpfCreateAskUpdateInput;
|
|
103438
103621
|
};
|
|
103622
|
+
export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
103623
|
+
input: SpfCreatePlanScenarioInput;
|
|
103624
|
+
};
|
|
103439
103625
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
103440
103626
|
input: SpfDeleteAskInput;
|
|
103441
103627
|
};
|
|
@@ -103448,6 +103634,12 @@ export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
|
103448
103634
|
export declare type MutationSpf_DeleteAskUpdateArgs = {
|
|
103449
103635
|
input: SpfDeleteAskUpdateInput;
|
|
103450
103636
|
};
|
|
103637
|
+
export declare type MutationSpf_DeletePlanArgs = {
|
|
103638
|
+
input: SpfDeletePlanInput;
|
|
103639
|
+
};
|
|
103640
|
+
export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
103641
|
+
input: SpfDeletePlanScenarioInput;
|
|
103642
|
+
};
|
|
103451
103643
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
103452
103644
|
input: SpfUpdateAskCommentDataInput;
|
|
103453
103645
|
};
|
|
@@ -103487,6 +103679,27 @@ export declare type MutationSpf_UpdateAskUpdateStatusArgs = {
|
|
|
103487
103679
|
export declare type MutationSpf_UpdateAskUpdateTargetDateArgs = {
|
|
103488
103680
|
input: SpfAskUpdateTargetDateInput;
|
|
103489
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
|
+
};
|
|
103490
103703
|
export declare type MutationSplitIssueArgs = {
|
|
103491
103704
|
input?: InputMaybe<SplitIssueInput>;
|
|
103492
103705
|
};
|
|
@@ -105699,6 +105912,10 @@ export declare type PolarisAddReactionPayload = Payload & {
|
|
|
105699
105912
|
node: Array<PolarisReactionSummary>;
|
|
105700
105913
|
success: Scalars['Boolean']['output'];
|
|
105701
105914
|
};
|
|
105915
|
+
export declare enum PolarisColorStyle {
|
|
105916
|
+
Background = "BACKGROUND",
|
|
105917
|
+
Highlight = "HIGHLIGHT"
|
|
105918
|
+
}
|
|
105702
105919
|
export declare enum PolarisColumnSize {
|
|
105703
105920
|
Default = "DEFAULT",
|
|
105704
105921
|
Large = "LARGE",
|
|
@@ -106120,6 +106337,9 @@ export declare enum PolarisTimelineTodayMarker {
|
|
|
106120
106337
|
}
|
|
106121
106338
|
export declare type PolarisView = {
|
|
106122
106339
|
__typename?: 'PolarisView';
|
|
106340
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
106341
|
+
colorBy?: Maybe<PolarisIdeaField>;
|
|
106342
|
+
colorStyle?: Maybe<PolarisColorStyle>;
|
|
106123
106343
|
columnSize?: Maybe<PolarisColumnSize>;
|
|
106124
106344
|
comments?: Maybe<Array<PolarisComment>>;
|
|
106125
106345
|
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -106705,6 +106925,7 @@ export declare type Query = {
|
|
|
106705
106925
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
106706
106926
|
admin_group?: Maybe<AdminGroup>;
|
|
106707
106927
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
106928
|
+
admin_identityProviderDirectoryDetails?: Maybe<AdminIdentityProviderDirectoryDetails>;
|
|
106708
106929
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
106709
106930
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
106710
106931
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
@@ -106716,6 +106937,7 @@ export declare type Query = {
|
|
|
106716
106937
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
106717
106938
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
106718
106939
|
admin_user?: Maybe<AdminUser>;
|
|
106940
|
+
admin_userAuthPolicy?: Maybe<AdminUserAuthPolicy>;
|
|
106719
106941
|
admin_userRoles?: Maybe<AdminUserRoleConnection>;
|
|
106720
106942
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
106721
106943
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -107310,7 +107532,6 @@ export declare type Query = {
|
|
|
107310
107532
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
107311
107533
|
jsw?: Maybe<JswQuery>;
|
|
107312
107534
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
107313
|
-
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
107314
107535
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
107315
107536
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
107316
107537
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
@@ -107742,6 +107963,10 @@ export declare type QueryAdmin_GroupsArgs = {
|
|
|
107742
107963
|
input?: InputMaybe<AdminSearchGroupInput>;
|
|
107743
107964
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107744
107965
|
};
|
|
107966
|
+
export declare type QueryAdmin_IdentityProviderDirectoryDetailsArgs = {
|
|
107967
|
+
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
107968
|
+
orgId: Scalars['ID']['input'];
|
|
107969
|
+
};
|
|
107745
107970
|
export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
|
|
107746
107971
|
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
107747
107972
|
orgId: Scalars['ID']['input'];
|
|
@@ -107800,6 +108025,10 @@ export declare type QueryAdmin_UnitsForOrgArgs = {
|
|
|
107800
108025
|
export declare type QueryAdmin_UserArgs = {
|
|
107801
108026
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
107802
108027
|
};
|
|
108028
|
+
export declare type QueryAdmin_UserAuthPolicyArgs = {
|
|
108029
|
+
orgId: Scalars['ID']['input'];
|
|
108030
|
+
userId: Scalars['ID']['input'];
|
|
108031
|
+
};
|
|
107803
108032
|
export declare type QueryAdmin_UserRolesArgs = {
|
|
107804
108033
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107805
108034
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -110469,9 +110698,6 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
110469
110698
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
110470
110699
|
ids: Array<Scalars['ID']['input']>;
|
|
110471
110700
|
};
|
|
110472
|
-
export declare type QueryKitsune_HelloArgs = {
|
|
110473
|
-
projectAri: Scalars['ID']['input'];
|
|
110474
|
-
};
|
|
110475
110701
|
export declare type QueryKitsune_NodeArgs = {
|
|
110476
110702
|
id: Scalars['ID']['input'];
|
|
110477
110703
|
};
|
|
@@ -134416,11 +134642,6 @@ export declare type SiteSettings = {
|
|
|
134416
134642
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
134417
134643
|
siteTitle: Scalars['String']['output'];
|
|
134418
134644
|
};
|
|
134419
|
-
export declare type SkyBridgeId = {
|
|
134420
|
-
__typename?: 'SkyBridgeId';
|
|
134421
|
-
id: Scalars['ID']['output'];
|
|
134422
|
-
shardingContext: Scalars['String']['output'];
|
|
134423
|
-
};
|
|
134424
134645
|
export declare type SkyBridgeIdInput = {
|
|
134425
134646
|
id: Scalars['ID']['input'];
|
|
134426
134647
|
shardingContext: Scalars['String']['input'];
|
|
@@ -135743,6 +135964,11 @@ export declare type SpfCreateAskUpdateInput = {
|
|
|
135743
135964
|
status?: InputMaybe<SpfAskStatus>;
|
|
135744
135965
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
135745
135966
|
};
|
|
135967
|
+
export declare type SpfCreatePlanScenarioInput = {
|
|
135968
|
+
name: Scalars['String']['input'];
|
|
135969
|
+
planId: Scalars['ID']['input'];
|
|
135970
|
+
status: SpfPlanScenarioStatus;
|
|
135971
|
+
};
|
|
135746
135972
|
export declare type SpfDeleteAskCommentInput = {
|
|
135747
135973
|
id: Scalars['ID']['input'];
|
|
135748
135974
|
};
|
|
@@ -135779,6 +136005,24 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
135779
136005
|
id: Scalars['ID']['output'];
|
|
135780
136006
|
success: Scalars['Boolean']['output'];
|
|
135781
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
|
+
};
|
|
135782
136026
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
135783
136027
|
export declare type SpfMediaToken = {
|
|
135784
136028
|
__typename?: 'SpfMediaToken';
|
|
@@ -135793,18 +136037,15 @@ export declare type SpfPlan = Node & {
|
|
|
135793
136037
|
__typename?: 'SpfPlan';
|
|
135794
136038
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135795
136039
|
createdBy?: Maybe<User>;
|
|
135796
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135797
136040
|
description?: Maybe<Scalars['String']['output']>;
|
|
135798
136041
|
id: Scalars['ID']['output'];
|
|
135799
136042
|
name: Scalars['String']['output'];
|
|
135800
136043
|
portfolio?: Maybe<MercuryFocusArea>;
|
|
135801
|
-
portfolioId: Scalars['String']['output'];
|
|
135802
136044
|
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
135803
136045
|
status: SpfPlanStatus;
|
|
135804
136046
|
timeframe: SpfPlanTimeframe;
|
|
135805
136047
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135806
136048
|
updatedBy?: Maybe<User>;
|
|
135807
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135808
136049
|
};
|
|
135809
136050
|
export declare type SpfPlanScenariosArgs = {
|
|
135810
136051
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135827,14 +136068,12 @@ export declare type SpfPlanScenario = Node & {
|
|
|
135827
136068
|
__typename?: 'SpfPlanScenario';
|
|
135828
136069
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135829
136070
|
createdBy?: Maybe<User>;
|
|
135830
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135831
136071
|
id: Scalars['ID']['output'];
|
|
135832
136072
|
name: Scalars['String']['output'];
|
|
135833
136073
|
planId: Scalars['String']['output'];
|
|
135834
136074
|
status: SpfPlanScenarioStatus;
|
|
135835
136075
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135836
136076
|
updatedBy?: Maybe<User>;
|
|
135837
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135838
136077
|
};
|
|
135839
136078
|
export declare type SpfPlanScenarioConnection = {
|
|
135840
136079
|
__typename?: 'SpfPlanScenarioConnection';
|
|
@@ -135865,6 +136104,11 @@ export declare enum SpfPlanTimeframeGranularity {
|
|
|
135865
136104
|
Quarter = "QUARTER",
|
|
135866
136105
|
Week = "WEEK"
|
|
135867
136106
|
}
|
|
136107
|
+
export declare type SpfPlanTimeframeInput = {
|
|
136108
|
+
endDate: Scalars['String']['input'];
|
|
136109
|
+
startDate: Scalars['String']['input'];
|
|
136110
|
+
timeframeGranularity: SpfPlanTimeframeGranularity;
|
|
136111
|
+
};
|
|
135868
136112
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
135869
136113
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
135870
136114
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135909,6 +136153,34 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
135909
136153
|
id: Scalars['ID']['input'];
|
|
135910
136154
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
135911
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
|
+
};
|
|
135912
136184
|
export declare type SpfUpsertAskCommentPayload = Payload & {
|
|
135913
136185
|
__typename?: 'SpfUpsertAskCommentPayload';
|
|
135914
136186
|
comment?: Maybe<SpfAskComment>;
|
|
@@ -135928,6 +136200,18 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
135928
136200
|
errors?: Maybe<Array<MutationError>>;
|
|
135929
136201
|
success: Scalars['Boolean']['output'];
|
|
135930
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
|
+
};
|
|
135931
136215
|
export declare type SplitIssueInput = {
|
|
135932
136216
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
135933
136217
|
originalIssue: OriginalSplitIssue;
|
|
@@ -139195,6 +139479,21 @@ export declare type TownsquareCustomFieldNumberSavedValueNode = Node & Townsquar
|
|
|
139195
139479
|
export declare type TownsquareCustomFieldSavedValueNode = {
|
|
139196
139480
|
id: Scalars['ID']['output'];
|
|
139197
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
|
+
};
|
|
139198
139497
|
export declare type TownsquareCustomFieldTextSavedValueConnection = {
|
|
139199
139498
|
__typename?: 'TownsquareCustomFieldTextSavedValueConnection';
|
|
139200
139499
|
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextSavedValueEdge>>>;
|
|
@@ -140498,6 +140797,7 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
140498
140797
|
};
|
|
140499
140798
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
140500
140799
|
__typename?: 'TownsquareProject';
|
|
140800
|
+
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
140501
140801
|
archived: Scalars['Boolean']['output'];
|
|
140502
140802
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
140503
140803
|
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
@@ -140557,6 +140857,10 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
140557
140857
|
watching?: Maybe<Scalars['Boolean']['output']>;
|
|
140558
140858
|
workspace?: Maybe<TownsquareWorkspace>;
|
|
140559
140859
|
};
|
|
140860
|
+
export declare type TownsquareProjectAccessArgs = {
|
|
140861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
140862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140863
|
+
};
|
|
140560
140864
|
export declare type TownsquareProjectChangelogArgs = {
|
|
140561
140865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140562
140866
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140645,6 +140949,25 @@ export declare type TownsquareProjectWatchersArgs = {
|
|
|
140645
140949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140646
140950
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140647
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
|
+
}
|
|
140648
140971
|
export declare type TownsquareProjectChangelogItem = {
|
|
140649
140972
|
__typename?: 'TownsquareProjectChangelogItem';
|
|
140650
140973
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -141067,6 +141390,17 @@ export declare type TownsquareProjectsEditDecisionPayload = {
|
|
|
141067
141390
|
errors?: Maybe<Array<MutationError>>;
|
|
141068
141391
|
success: Scalars['Boolean']['output'];
|
|
141069
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
|
+
};
|
|
141070
141404
|
export declare type TownsquareProjectsEditInput = {
|
|
141071
141405
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141072
141406
|
description?: InputMaybe<TownsquareProjectDescriptionInput>;
|
|
@@ -141105,6 +141439,17 @@ export declare type TownsquareProjectsEditMutationErrorExtension = MutationError
|
|
|
141105
141439
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
141106
141440
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
141107
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
|
+
};
|
|
141108
141453
|
export declare type TownsquareProjectsEditPayload = {
|
|
141109
141454
|
__typename?: 'TownsquareProjectsEditPayload';
|
|
141110
141455
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -141122,6 +141467,17 @@ export declare type TownsquareProjectsEditRiskPayload = {
|
|
|
141122
141467
|
risk?: Maybe<TownsquareRisk>;
|
|
141123
141468
|
success: Scalars['Boolean']['output'];
|
|
141124
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
|
+
};
|
|
141125
141481
|
export declare type TownsquareProjectsEditUpdateInput = {
|
|
141126
141482
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
141127
141483
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -141136,6 +141492,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
141136
141492
|
success: Scalars['Boolean']['output'];
|
|
141137
141493
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
141138
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
|
+
};
|
|
141139
141506
|
export declare type TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension = MutationErrorExtension & {
|
|
141140
141507
|
__typename?: 'TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension';
|
|
141141
141508
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -141592,6 +141959,7 @@ export declare type TownsquareTextSelectCustomFieldValuesArgs = {
|
|
|
141592
141959
|
};
|
|
141593
141960
|
export declare type TownsquareTextSelectCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
141594
141961
|
__typename?: 'TownsquareTextSelectCustomFieldDefinition';
|
|
141962
|
+
allowedValues?: Maybe<TownsquareCustomFieldTextAllowedValueConnection>;
|
|
141595
141963
|
canSetMultipleValues?: Maybe<Scalars['Boolean']['output']>;
|
|
141596
141964
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
141597
141965
|
creator?: Maybe<User>;
|
|
@@ -141603,6 +141971,10 @@ export declare type TownsquareTextSelectCustomFieldDefinition = Node & Townsquar
|
|
|
141603
141971
|
token?: Maybe<Scalars['String']['output']>;
|
|
141604
141972
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
141605
141973
|
};
|
|
141974
|
+
export declare type TownsquareTextSelectCustomFieldDefinitionAllowedValuesArgs = {
|
|
141975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
141976
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141977
|
+
};
|
|
141606
141978
|
export declare type TownsquareThemeUrIs = {
|
|
141607
141979
|
__typename?: 'TownsquareThemeURIs';
|
|
141608
141980
|
dark?: Maybe<Scalars['String']['output']>;
|
|
@@ -142201,6 +142573,7 @@ export declare type TrelloBaseBoard = {
|
|
|
142201
142573
|
limits?: Maybe<TrelloBoardLimits>;
|
|
142202
142574
|
lists?: Maybe<TrelloListConnection>;
|
|
142203
142575
|
objectId: Scalars['ID']['output'];
|
|
142576
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
142204
142577
|
workspace?: Maybe<TrelloWorkspace>;
|
|
142205
142578
|
};
|
|
142206
142579
|
export declare type TrelloBaseBoardLabelsArgs = {
|
|
@@ -142212,6 +142585,10 @@ export declare type TrelloBaseBoardListsArgs = {
|
|
|
142212
142585
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
142213
142586
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142214
142587
|
};
|
|
142588
|
+
export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
142589
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142590
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142591
|
+
};
|
|
142215
142592
|
export declare type TrelloBaseBoardPrefs = {
|
|
142216
142593
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
142217
142594
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -142246,6 +142623,7 @@ export declare type TrelloBaseCard = {
|
|
|
142246
142623
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
142247
142624
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
142248
142625
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
142626
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
142249
142627
|
position?: Maybe<Scalars['Float']['output']>;
|
|
142250
142628
|
role?: Maybe<TrelloCardRole>;
|
|
142251
142629
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -142272,6 +142650,11 @@ export declare type TrelloBaseCardLabelsArgs = {
|
|
|
142272
142650
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142273
142651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142274
142652
|
};
|
|
142653
|
+
export declare type TrelloBaseCardPlannerEventsArgs = {
|
|
142654
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142655
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
142656
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142657
|
+
};
|
|
142275
142658
|
export declare type TrelloBaseCardUpdated = {
|
|
142276
142659
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
142277
142660
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -143721,6 +144104,7 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
143721
144104
|
limits?: Maybe<TrelloBoardLimits>;
|
|
143722
144105
|
lists?: Maybe<TrelloListConnection>;
|
|
143723
144106
|
objectId: Scalars['ID']['output'];
|
|
144107
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
143724
144108
|
prefs: TrelloInboxPrefs;
|
|
143725
144109
|
workspace?: Maybe<TrelloWorkspace>;
|
|
143726
144110
|
};
|
|
@@ -143733,6 +144117,10 @@ export declare type TrelloInboxListsArgs = {
|
|
|
143733
144117
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
143734
144118
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143735
144119
|
};
|
|
144120
|
+
export declare type TrelloInboxPlannerEventCardsArgs = {
|
|
144121
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144122
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144123
|
+
};
|
|
143736
144124
|
export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
143737
144125
|
__typename?: 'TrelloInboxCard';
|
|
143738
144126
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
@@ -143755,6 +144143,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
143755
144143
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
143756
144144
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
143757
144145
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
144146
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
143758
144147
|
position?: Maybe<Scalars['Float']['output']>;
|
|
143759
144148
|
role?: Maybe<TrelloCardRole>;
|
|
143760
144149
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -143781,6 +144170,11 @@ export declare type TrelloInboxCardLabelsArgs = {
|
|
|
143781
144170
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143782
144171
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143783
144172
|
};
|
|
144173
|
+
export declare type TrelloInboxCardPlannerEventsArgs = {
|
|
144174
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144175
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
144176
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144177
|
+
};
|
|
143784
144178
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
143785
144179
|
__typename?: 'TrelloInboxCardUpdated';
|
|
143786
144180
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -144943,7 +145337,7 @@ export declare type TrelloPlannerEventCardDeleted = {
|
|
|
144943
145337
|
export declare type TrelloPlannerEventCardEdge = {
|
|
144944
145338
|
__typename?: 'TrelloPlannerEventCardEdge';
|
|
144945
145339
|
cursor: Scalars['String']['output'];
|
|
144946
|
-
node:
|
|
145340
|
+
node: TrelloBaseCard;
|
|
144947
145341
|
};
|
|
144948
145342
|
export declare type TrelloPlannerEventConnection = {
|
|
144949
145343
|
__typename?: 'TrelloPlannerEventConnection';
|
|
@@ -148152,6 +148546,9 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
148152
148546
|
success: Scalars['Boolean']['output'];
|
|
148153
148547
|
};
|
|
148154
148548
|
export declare type UpdatePolarisViewInput = {
|
|
148549
|
+
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148550
|
+
colorBy?: InputMaybe<Scalars['ID']['input']>;
|
|
148551
|
+
colorStyle?: InputMaybe<PolarisColorStyle>;
|
|
148155
148552
|
columnSize?: InputMaybe<PolarisColumnSize>;
|
|
148156
148553
|
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
148157
148554
|
connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
|