@forge/cli-shared 8.11.1-next.4 → 8.12.0-next.6
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 +13 -0
- package/out/graphql/graphql-types.d.ts +945 -48
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +138 -32
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +4 -2
- package/out/ui/text.d.ts +8 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -0
- package/package.json +2 -2
|
@@ -1621,6 +1621,10 @@ export declare type AdminAppModuleEdge = {
|
|
|
1621
1621
|
cursor: Scalars['String']['output'];
|
|
1622
1622
|
node: AdminAppModule;
|
|
1623
1623
|
};
|
|
1624
|
+
export declare enum AdminAppType {
|
|
1625
|
+
Atlassian = "ATLASSIAN",
|
|
1626
|
+
MarketplaceApp = "MARKETPLACE_APP"
|
|
1627
|
+
}
|
|
1624
1628
|
export declare type AdminApplicationErrorExtension = AdminErrorExtension & MutationErrorExtension & QueryErrorExtension & {
|
|
1625
1629
|
__typename?: 'AdminApplicationErrorExtension';
|
|
1626
1630
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -1745,6 +1749,21 @@ export declare type AdminAuditLogGroupEventActionEdge = {
|
|
|
1745
1749
|
cursor: Scalars['String']['output'];
|
|
1746
1750
|
node: AdminAuditLogGroupEventAction;
|
|
1747
1751
|
};
|
|
1752
|
+
export declare type AdminAuthenticationPolicyDetails = {
|
|
1753
|
+
__typename?: 'AdminAuthenticationPolicyDetails';
|
|
1754
|
+
authenticationPolicyId: Scalars['ID']['output'];
|
|
1755
|
+
authenticationPolicyName: Scalars['String']['output'];
|
|
1756
|
+
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
1757
|
+
isActive: Scalars['Boolean']['output'];
|
|
1758
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1759
|
+
numberOfUsers?: Maybe<Scalars['Int']['output']>;
|
|
1760
|
+
policyType: AdminAuthenticationPolicyType;
|
|
1761
|
+
ssoConfiguration?: Maybe<AdminPolicySsoConfiguration>;
|
|
1762
|
+
};
|
|
1763
|
+
export declare enum AdminAuthenticationPolicyType {
|
|
1764
|
+
Basic = "BASIC",
|
|
1765
|
+
Standard = "STANDARD"
|
|
1766
|
+
}
|
|
1748
1767
|
export declare type AdminByok = {
|
|
1749
1768
|
__typename?: 'AdminByok';
|
|
1750
1769
|
config: Scalars['String']['output'];
|
|
@@ -1963,11 +1982,37 @@ export declare type AdminIcon = {
|
|
|
1963
1982
|
name: Scalars['String']['output'];
|
|
1964
1983
|
value: Scalars['String']['output'];
|
|
1965
1984
|
};
|
|
1985
|
+
export declare type AdminIdentityProviderDirectoryDetails = {
|
|
1986
|
+
__typename?: 'AdminIdentityProviderDirectoryDetails';
|
|
1987
|
+
directoryName: Scalars['String']['output'];
|
|
1988
|
+
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
1989
|
+
identityProviderType?: Maybe<AdminIdentityProviderType>;
|
|
1990
|
+
isActive: Scalars['Boolean']['output'];
|
|
1991
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1992
|
+
linkedDomains: Array<Scalars['String']['output']>;
|
|
1993
|
+
numberOfPolicies: Scalars['Int']['output'];
|
|
1994
|
+
samlConfiguration?: Maybe<AdminSamlConfigurationDetails>;
|
|
1995
|
+
samlConfigurationId?: Maybe<Scalars['ID']['output']>;
|
|
1996
|
+
};
|
|
1966
1997
|
export declare enum AdminIdentityProviderPublicCertificateExpiryStatus {
|
|
1967
1998
|
Expired = "EXPIRED",
|
|
1968
1999
|
ExpiringSoon = "EXPIRING_SOON",
|
|
1969
2000
|
Valid = "VALID"
|
|
1970
2001
|
}
|
|
2002
|
+
export declare enum AdminIdentityProviderType {
|
|
2003
|
+
ActiveDirectoryFederationServices = "ACTIVE_DIRECTORY_FEDERATION_SERVICES",
|
|
2004
|
+
Auth0 = "AUTH0",
|
|
2005
|
+
GoogleCloudIdentity = "GOOGLE_CLOUD_IDENTITY",
|
|
2006
|
+
GoogleWorkspace = "GOOGLE_WORKSPACE",
|
|
2007
|
+
Idaptive = "IDAPTIVE",
|
|
2008
|
+
Jumpcloud = "JUMPCLOUD",
|
|
2009
|
+
MicrosoftAzureActiveDirectory = "MICROSOFT_AZURE_ACTIVE_DIRECTORY",
|
|
2010
|
+
MicrosoftAzureActiveDirectoryPreconfigured = "MICROSOFT_AZURE_ACTIVE_DIRECTORY_PRECONFIGURED",
|
|
2011
|
+
Okta = "OKTA",
|
|
2012
|
+
Onelogin = "ONELOGIN",
|
|
2013
|
+
Other = "OTHER",
|
|
2014
|
+
PingIdentity = "PING_IDENTITY"
|
|
2015
|
+
}
|
|
1971
2016
|
export declare type AdminImpersonateUserInput = {
|
|
1972
2017
|
accountId: Scalars['String']['input'];
|
|
1973
2018
|
directoryId: Scalars['String']['input'];
|
|
@@ -2151,6 +2196,11 @@ export declare type AdminPermission = {
|
|
|
2151
2196
|
permissionId: Scalars['String']['output'];
|
|
2152
2197
|
};
|
|
2153
2198
|
export declare type AdminPolicy = AdminAccessUrl | AdminAiPolicy | AdminByok | AdminDataResidency;
|
|
2199
|
+
export declare type AdminPolicySsoConfiguration = {
|
|
2200
|
+
__typename?: 'AdminPolicySsoConfiguration';
|
|
2201
|
+
samlConfigurationId?: Maybe<Scalars['ID']['output']>;
|
|
2202
|
+
ssoType: AdminSsoType;
|
|
2203
|
+
};
|
|
2154
2204
|
export declare enum AdminPolicyStatus {
|
|
2155
2205
|
Disabled = "DISABLED",
|
|
2156
2206
|
Enabled = "ENABLED"
|
|
@@ -2349,6 +2399,11 @@ export declare type AdminSortBy = {
|
|
|
2349
2399
|
direction: SortDirection;
|
|
2350
2400
|
fieldName: Scalars['String']['input'];
|
|
2351
2401
|
};
|
|
2402
|
+
export declare enum AdminSsoType {
|
|
2403
|
+
Google = "GOOGLE",
|
|
2404
|
+
None = "NONE",
|
|
2405
|
+
Saml = "SAML"
|
|
2406
|
+
}
|
|
2352
2407
|
export declare type AdminStorageFeature = {
|
|
2353
2408
|
__typename?: 'AdminStorageFeature';
|
|
2354
2409
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2562,6 +2617,11 @@ export declare type AdminUserGroupsArgs = {
|
|
|
2562
2617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2563
2618
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2564
2619
|
};
|
|
2620
|
+
export declare type AdminUserAuthPolicy = {
|
|
2621
|
+
__typename?: 'AdminUserAuthPolicy';
|
|
2622
|
+
authenticationPolicy?: Maybe<AdminAuthenticationPolicyDetails>;
|
|
2623
|
+
hasAuthenticationPolicy: Scalars['Boolean']['output'];
|
|
2624
|
+
};
|
|
2565
2625
|
export declare type AdminUserConnection = {
|
|
2566
2626
|
__typename?: 'AdminUserConnection';
|
|
2567
2627
|
edges?: Maybe<Array<AdminUserEdge>>;
|
|
@@ -2611,7 +2671,7 @@ export declare type AdminVendor = {
|
|
|
2611
2671
|
export declare type AdminWorkspace = {
|
|
2612
2672
|
__typename?: 'AdminWorkspace';
|
|
2613
2673
|
appManifest?: Maybe<AdminAppManifest>;
|
|
2614
|
-
appType
|
|
2674
|
+
appType?: Maybe<AdminAppType>;
|
|
2615
2675
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2616
2676
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
2617
2677
|
directoryId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3065,7 +3125,6 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
|
3065
3125
|
datasetId: Scalars['String']['input'];
|
|
3066
3126
|
judgeConfigId: Scalars['String']['input'];
|
|
3067
3127
|
name: Scalars['String']['input'];
|
|
3068
|
-
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
3069
3128
|
};
|
|
3070
3129
|
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
3071
3130
|
__typename?: 'AgentStudioCreateBatchEvaluationJobPayload';
|
|
@@ -3929,6 +3988,7 @@ export declare type App = {
|
|
|
3929
3988
|
environmentByKey?: Maybe<AppEnvironment>;
|
|
3930
3989
|
environmentByOauthClient?: Maybe<AppEnvironment>;
|
|
3931
3990
|
environments: Array<AppEnvironment>;
|
|
3991
|
+
environmentsPage?: Maybe<AppEnvironmentConnection>;
|
|
3932
3992
|
hasPDReportingApiImplemented?: Maybe<Scalars['Boolean']['output']>;
|
|
3933
3993
|
id: Scalars['ID']['output'];
|
|
3934
3994
|
installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
|
|
@@ -3956,6 +4016,12 @@ export declare type AppEnvironmentByKeyArgs = {
|
|
|
3956
4016
|
export declare type AppEnvironmentByOauthClientArgs = {
|
|
3957
4017
|
oauthClientId: Scalars['ID']['input'];
|
|
3958
4018
|
};
|
|
4019
|
+
export declare type AppEnvironmentsPageArgs = {
|
|
4020
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4021
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4022
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4023
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4024
|
+
};
|
|
3959
4025
|
export declare type AppInstallationsByContextsArgs = {
|
|
3960
4026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3961
4027
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4213,10 +4279,29 @@ export declare type AppEnvironmentAppVersionRolloutEdge = {
|
|
|
4213
4279
|
cursor: Scalars['String']['output'];
|
|
4214
4280
|
node?: Maybe<AppVersionRollout>;
|
|
4215
4281
|
};
|
|
4282
|
+
export declare type AppEnvironmentConnection = {
|
|
4283
|
+
__typename?: 'AppEnvironmentConnection';
|
|
4284
|
+
edges?: Maybe<Array<Maybe<AppEnvironmentEdge>>>;
|
|
4285
|
+
nodes?: Maybe<Array<Maybe<AppEnvironment>>>;
|
|
4286
|
+
pageInfo: AppEnvironmentPageInfo;
|
|
4287
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
4288
|
+
};
|
|
4289
|
+
export declare type AppEnvironmentEdge = {
|
|
4290
|
+
__typename?: 'AppEnvironmentEdge';
|
|
4291
|
+
cursor: Scalars['String']['output'];
|
|
4292
|
+
node?: Maybe<AppEnvironment>;
|
|
4293
|
+
};
|
|
4216
4294
|
export declare type AppEnvironmentInput = {
|
|
4217
4295
|
appId: Scalars['ID']['input'];
|
|
4218
4296
|
key: Scalars['String']['input'];
|
|
4219
4297
|
};
|
|
4298
|
+
export declare type AppEnvironmentPageInfo = {
|
|
4299
|
+
__typename?: 'AppEnvironmentPageInfo';
|
|
4300
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4301
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4302
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4303
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4304
|
+
};
|
|
4220
4305
|
export declare enum AppEnvironmentType {
|
|
4221
4306
|
Development = "DEVELOPMENT",
|
|
4222
4307
|
Production = "PRODUCTION",
|
|
@@ -8327,6 +8412,7 @@ export declare type CcpEntitlementProvisionedResource = {
|
|
|
8327
8412
|
};
|
|
8328
8413
|
export declare type CcpEntitlementRelationship = CommerceEntitlementRelationship & {
|
|
8329
8414
|
__typename?: 'CcpEntitlementRelationship';
|
|
8415
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
8330
8416
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
8331
8417
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
8332
8418
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
@@ -10633,9 +10719,9 @@ export declare type CommerceEntitlementRelationship = {
|
|
|
10633
10719
|
};
|
|
10634
10720
|
export declare type CommerceExpCcpQuery = {
|
|
10635
10721
|
__typename?: 'CommerceExpCcpQuery';
|
|
10636
|
-
|
|
10722
|
+
testField?: Maybe<CommerceExpTestField>;
|
|
10637
10723
|
};
|
|
10638
|
-
export declare type
|
|
10724
|
+
export declare type CommerceExpCcpQueryTestFieldArgs = {
|
|
10639
10725
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
10640
10726
|
};
|
|
10641
10727
|
export declare type CommerceExpTestField = {
|
|
@@ -15020,6 +15106,7 @@ export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
|
15020
15106
|
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
15021
15107
|
};
|
|
15022
15108
|
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
15109
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
15023
15110
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
15024
15111
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
15025
15112
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
@@ -15146,6 +15233,7 @@ export declare type CompassScorecardScoreStatisticsHistoryQuery = {
|
|
|
15146
15233
|
filter?: InputMaybe<CompassScorecardScoreStatisticsHistoryQueryFilter>;
|
|
15147
15234
|
};
|
|
15148
15235
|
export declare type CompassScorecardScoreStatisticsHistoryQueryFilter = {
|
|
15236
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
15149
15237
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
15150
15238
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
15151
15239
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
@@ -20744,6 +20832,17 @@ export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
|
|
|
20744
20832
|
errors: Array<MutationError>;
|
|
20745
20833
|
success: Scalars['Boolean']['output'];
|
|
20746
20834
|
};
|
|
20835
|
+
export declare type ConfluenceUpdateContentAppearanceInput = {
|
|
20836
|
+
contentAppearance: Scalars['String']['input'];
|
|
20837
|
+
contentId: Scalars['ID']['input'];
|
|
20838
|
+
contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
|
|
20839
|
+
};
|
|
20840
|
+
export declare type ConfluenceUpdateContentAppearancePayload = {
|
|
20841
|
+
__typename?: 'ConfluenceUpdateContentAppearancePayload';
|
|
20842
|
+
content?: Maybe<Content>;
|
|
20843
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20844
|
+
success: Scalars['Boolean']['output'];
|
|
20845
|
+
};
|
|
20747
20846
|
export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
|
|
20748
20847
|
add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
|
|
20749
20848
|
contentId: Scalars['ID']['input'];
|
|
@@ -20768,6 +20867,17 @@ export declare type ConfluenceUpdateContentModePayload = {
|
|
|
20768
20867
|
errors?: Maybe<Array<MutationError>>;
|
|
20769
20868
|
success: Scalars['Boolean']['output'];
|
|
20770
20869
|
};
|
|
20870
|
+
export declare type ConfluenceUpdateCoverPictureInput = {
|
|
20871
|
+
contentId: Scalars['ID']['input'];
|
|
20872
|
+
contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
|
|
20873
|
+
coverPicture: Scalars['String']['input'];
|
|
20874
|
+
};
|
|
20875
|
+
export declare type ConfluenceUpdateCoverPicturePayload = {
|
|
20876
|
+
__typename?: 'ConfluenceUpdateCoverPicturePayload';
|
|
20877
|
+
content?: Maybe<Content>;
|
|
20878
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20879
|
+
success: Scalars['Boolean']['output'];
|
|
20880
|
+
};
|
|
20771
20881
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
20772
20882
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
20773
20883
|
id: Scalars['ID']['input'];
|
|
@@ -21179,6 +21289,17 @@ export declare type ConfluenceUpdateTeamsSiteConfigurationPayload = Payload & {
|
|
|
21179
21289
|
errors?: Maybe<Array<MutationError>>;
|
|
21180
21290
|
success: Scalars['Boolean']['output'];
|
|
21181
21291
|
};
|
|
21292
|
+
export declare type ConfluenceUpdateTitleEmojiInput = {
|
|
21293
|
+
contentId: Scalars['ID']['input'];
|
|
21294
|
+
contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
|
|
21295
|
+
titleEmoji: Scalars['String']['input'];
|
|
21296
|
+
};
|
|
21297
|
+
export declare type ConfluenceUpdateTitleEmojiPayload = {
|
|
21298
|
+
__typename?: 'ConfluenceUpdateTitleEmojiPayload';
|
|
21299
|
+
content?: Maybe<Content>;
|
|
21300
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21301
|
+
success: Scalars['Boolean']['output'];
|
|
21302
|
+
};
|
|
21182
21303
|
export declare type ConfluenceUpdateTopicInput = {
|
|
21183
21304
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21184
21305
|
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -24178,6 +24299,16 @@ export declare type CplsUpdateFiltersPayload = Payload & {
|
|
|
24178
24299
|
filters?: Maybe<CplsFilters>;
|
|
24179
24300
|
success: Scalars['Boolean']['output'];
|
|
24180
24301
|
};
|
|
24302
|
+
export declare type CplsUpdateViewSettingsInput = {
|
|
24303
|
+
scopeId: Scalars['ID']['input'];
|
|
24304
|
+
viewSettings: CplsViewSettingsInput;
|
|
24305
|
+
};
|
|
24306
|
+
export declare type CplsUpdateViewSettingsPayload = Payload & {
|
|
24307
|
+
__typename?: 'CplsUpdateViewSettingsPayload';
|
|
24308
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24309
|
+
success: Scalars['Boolean']['output'];
|
|
24310
|
+
viewSettings?: Maybe<CplsViewSettings>;
|
|
24311
|
+
};
|
|
24181
24312
|
export declare type CplsValueFormats = {
|
|
24182
24313
|
__typename?: 'CplsValueFormats';
|
|
24183
24314
|
days?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24190,6 +24321,11 @@ export declare type CplsViewSettings = {
|
|
|
24190
24321
|
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
24191
24322
|
timeScale?: Maybe<CplsTimeScaleType>;
|
|
24192
24323
|
};
|
|
24324
|
+
export declare type CplsViewSettingsInput = {
|
|
24325
|
+
alwaysShowNumbersInGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24326
|
+
contributionValueType?: InputMaybe<CplsContributionValueType>;
|
|
24327
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
24328
|
+
};
|
|
24193
24329
|
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
24194
24330
|
export declare enum CplsWorkType {
|
|
24195
24331
|
CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
|
|
@@ -25214,6 +25350,11 @@ export declare type CsmAiDeleteKnowledgeSourcePayload = Payload & {
|
|
|
25214
25350
|
errors?: Maybe<Array<MutationError>>;
|
|
25215
25351
|
success: Scalars['Boolean']['output'];
|
|
25216
25352
|
};
|
|
25353
|
+
export declare type CsmAiDeleteWidgetPayload = Payload & {
|
|
25354
|
+
__typename?: 'CsmAiDeleteWidgetPayload';
|
|
25355
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25356
|
+
success: Scalars['Boolean']['output'];
|
|
25357
|
+
};
|
|
25217
25358
|
export declare type CsmAiGenerateClientKeyPayload = Payload & {
|
|
25218
25359
|
__typename?: 'CsmAiGenerateClientKeyPayload';
|
|
25219
25360
|
clientKey?: Maybe<CsmAiWidgetClientKey>;
|
|
@@ -30139,9 +30280,12 @@ export declare enum DocumentRepresentation {
|
|
|
30139
30280
|
}
|
|
30140
30281
|
export declare type DraftContentProperties = {
|
|
30141
30282
|
__typename?: 'DraftContentProperties';
|
|
30283
|
+
contentAppearance?: Maybe<Scalars['String']['output']>;
|
|
30142
30284
|
contentMode?: Maybe<Scalars['String']['output']>;
|
|
30285
|
+
coverPicture?: Maybe<Scalars['String']['output']>;
|
|
30143
30286
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
30144
30287
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
30288
|
+
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
30145
30289
|
};
|
|
30146
30290
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
30147
30291
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
@@ -31109,7 +31253,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
31109
31253
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
31110
31254
|
node?: Maybe<ExternalAssociation>;
|
|
31111
31255
|
};
|
|
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;
|
|
31256
|
+
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
31257
|
export declare type ExternalAttachment = {
|
|
31114
31258
|
__typename?: 'ExternalAttachment';
|
|
31115
31259
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -31380,6 +31524,46 @@ export declare type ExternalCue = {
|
|
|
31380
31524
|
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
31381
31525
|
text?: Maybe<Scalars['String']['output']>;
|
|
31382
31526
|
};
|
|
31527
|
+
export declare type ExternalCustomerContact = Node & {
|
|
31528
|
+
__typename?: 'ExternalCustomerContact';
|
|
31529
|
+
accountName?: Maybe<Scalars['String']['output']>;
|
|
31530
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31531
|
+
contactUser?: Maybe<ExternalUser>;
|
|
31532
|
+
container?: Maybe<ExternalEntity>;
|
|
31533
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
31534
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31535
|
+
createdBy?: Maybe<ExternalUser>;
|
|
31536
|
+
customerType?: Maybe<Scalars['String']['output']>;
|
|
31537
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
31538
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
31539
|
+
entitlements?: Maybe<Array<Maybe<ExternalCustomerContactEntitlement>>>;
|
|
31540
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
31541
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
31542
|
+
id: Scalars['ID']['output'];
|
|
31543
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
31544
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
31545
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31546
|
+
parent?: Maybe<ExternalEntity>;
|
|
31547
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31548
|
+
preferredLanguage?: Maybe<Scalars['String']['output']>;
|
|
31549
|
+
provider?: Maybe<ExternalProvider>;
|
|
31550
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
31551
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
31552
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31553
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
31554
|
+
};
|
|
31555
|
+
export declare type ExternalCustomerContactEntitlement = {
|
|
31556
|
+
__typename?: 'ExternalCustomerContactEntitlement';
|
|
31557
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31558
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
31559
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
31560
|
+
entitlementName?: Maybe<Scalars['String']['output']>;
|
|
31561
|
+
licenseKey?: Maybe<Scalars['String']['output']>;
|
|
31562
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
31563
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
31564
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
31565
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31566
|
+
};
|
|
31383
31567
|
export declare type ExternalCustomerOrg = Node & {
|
|
31384
31568
|
__typename?: 'ExternalCustomerOrg';
|
|
31385
31569
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
@@ -31527,6 +31711,8 @@ export declare type ExternalDeal = Node & {
|
|
|
31527
31711
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
31528
31712
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31529
31713
|
contact?: Maybe<ExternalUser>;
|
|
31714
|
+
container?: Maybe<ExternalEntity>;
|
|
31715
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
31530
31716
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
31531
31717
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31532
31718
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -31540,12 +31726,14 @@ export declare type ExternalDeal = Node & {
|
|
|
31540
31726
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
31541
31727
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
31542
31728
|
opportunityAmount?: Maybe<ExternalDealOpportunityAmount>;
|
|
31729
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31543
31730
|
parent?: Maybe<ExternalEntity>;
|
|
31544
31731
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31545
31732
|
provider?: Maybe<ExternalProvider>;
|
|
31546
31733
|
stage?: Maybe<Scalars['String']['output']>;
|
|
31547
31734
|
status?: Maybe<Scalars['String']['output']>;
|
|
31548
31735
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
31736
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
31549
31737
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31550
31738
|
url?: Maybe<Scalars['String']['output']>;
|
|
31551
31739
|
userContributors?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -31697,6 +31885,7 @@ export declare type ExternalEntities = {
|
|
|
31697
31885
|
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
31698
31886
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
31699
31887
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
31888
|
+
customerContact?: Maybe<Array<Maybe<ExternalCustomerContact>>>;
|
|
31700
31889
|
customerOrg?: Maybe<Array<Maybe<ExternalCustomerOrg>>>;
|
|
31701
31890
|
customerOrgCategory?: Maybe<Array<Maybe<ExternalCustomerOrgCategory>>>;
|
|
31702
31891
|
dashboard?: Maybe<Array<Maybe<ExternalDashboard>>>;
|
|
@@ -31725,7 +31914,7 @@ export declare type ExternalEntities = {
|
|
|
31725
31914
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
31726
31915
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
31727
31916
|
};
|
|
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;
|
|
31917
|
+
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
31918
|
export declare type ExternalEntityExtendedValue = {
|
|
31730
31919
|
__typename?: 'ExternalEntityExtendedValue';
|
|
31731
31920
|
fieldDisplayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -35000,7 +35189,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
|
35000
35189
|
cursor: Scalars['String']['output'];
|
|
35001
35190
|
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
35002
35191
|
};
|
|
35003
|
-
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool;
|
|
35192
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
|
|
35004
35193
|
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
35005
35194
|
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
35006
35195
|
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
@@ -35015,7 +35204,8 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
35015
35204
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
35016
35205
|
Action = "ACTION",
|
|
35017
35206
|
McpServer = "MCP_SERVER",
|
|
35018
|
-
McpTool = "MCP_TOOL"
|
|
35207
|
+
McpTool = "MCP_TOOL",
|
|
35208
|
+
Skill = "SKILL"
|
|
35019
35209
|
}
|
|
35020
35210
|
export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
|
|
35021
35211
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
|
|
@@ -35233,6 +35423,17 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
|
|
|
35233
35423
|
errors?: Maybe<Array<MutationError>>;
|
|
35234
35424
|
success: Scalars['Boolean']['output'];
|
|
35235
35425
|
};
|
|
35426
|
+
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
35427
|
+
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
35428
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35429
|
+
displayName: Scalars['String']['output'];
|
|
35430
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
35431
|
+
id: Scalars['ID']['output'];
|
|
35432
|
+
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
35433
|
+
name: Scalars['String']['output'];
|
|
35434
|
+
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
35435
|
+
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
35436
|
+
};
|
|
35236
35437
|
export declare enum GraphIntegrationStatus {
|
|
35237
35438
|
Disabled = "DISABLED",
|
|
35238
35439
|
Enabled = "ENABLED"
|
|
@@ -38014,6 +38215,14 @@ export declare type GraphStore = {
|
|
|
38014
38215
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
38015
38216
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
38016
38217
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
38218
|
+
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38219
|
+
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38220
|
+
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
38221
|
+
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38222
|
+
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38223
|
+
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38224
|
+
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
38225
|
+
atlassianUserInvitedToLoomMeetingInverseBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38017
38226
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
38018
38227
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
38019
38228
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -39257,6 +39466,70 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
39257
39466
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39258
39467
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
39259
39468
|
};
|
|
39469
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
39470
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39471
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39472
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39473
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39474
|
+
id: Scalars['ID']['input'];
|
|
39475
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39476
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39477
|
+
};
|
|
39478
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityBatchArgs = {
|
|
39479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39480
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39482
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39483
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39484
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39485
|
+
};
|
|
39486
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityInverseArgs = {
|
|
39487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39488
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39489
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39491
|
+
id: Scalars['ID']['input'];
|
|
39492
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39493
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39494
|
+
};
|
|
39495
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityInverseBatchArgs = {
|
|
39496
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39497
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39498
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39499
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39500
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39501
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39502
|
+
};
|
|
39503
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
39504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39505
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39507
|
+
id: Scalars['ID']['input'];
|
|
39508
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39509
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39510
|
+
};
|
|
39511
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingBatchArgs = {
|
|
39512
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39514
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39515
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39516
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39517
|
+
};
|
|
39518
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseArgs = {
|
|
39519
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39520
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39521
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39522
|
+
id: Scalars['ID']['input'];
|
|
39523
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39524
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39525
|
+
};
|
|
39526
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseBatchArgs = {
|
|
39527
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39528
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39529
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39530
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39531
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39532
|
+
};
|
|
39260
39533
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
39261
39534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39262
39535
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45732,6 +46005,56 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
|
45732
46005
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
45733
46006
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45734
46007
|
};
|
|
46008
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
46009
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
46010
|
+
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
46011
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
46012
|
+
};
|
|
46013
|
+
export declare enum GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory {
|
|
46014
|
+
CommentAssigned = "COMMENT_ASSIGNED",
|
|
46015
|
+
CommentMention = "COMMENT_MENTION",
|
|
46016
|
+
CommentReply = "COMMENT_REPLY",
|
|
46017
|
+
IssueApproval = "ISSUE_APPROVAL",
|
|
46018
|
+
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
46019
|
+
NotSet = "NOT_SET",
|
|
46020
|
+
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
46021
|
+
ProjectPopularity = "PROJECT_POPULARITY",
|
|
46022
|
+
PrReview = "PR_REVIEW",
|
|
46023
|
+
TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
|
|
46024
|
+
TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
|
|
46025
|
+
TeamInviterContext = "TEAM_INVITER_CONTEXT",
|
|
46026
|
+
TeamPopularity = "TEAM_POPULARITY"
|
|
46027
|
+
}
|
|
46028
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput = {
|
|
46029
|
+
is?: InputMaybe<Array<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory>>;
|
|
46030
|
+
isNot?: InputMaybe<Array<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory>>;
|
|
46031
|
+
};
|
|
46032
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput = {
|
|
46033
|
+
category?: InputMaybe<GraphStoreSortInput>;
|
|
46034
|
+
};
|
|
46035
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput = {
|
|
46036
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46037
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46038
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46039
|
+
relationship_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>;
|
|
46040
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46041
|
+
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>;
|
|
46042
|
+
};
|
|
46043
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput = {
|
|
46044
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput>>>;
|
|
46045
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput>>>;
|
|
46046
|
+
};
|
|
46047
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput = {
|
|
46048
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
46049
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
46050
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46051
|
+
relationship_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
46052
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46053
|
+
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
46054
|
+
};
|
|
46055
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
46056
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46057
|
+
};
|
|
45735
46058
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
45736
46059
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
45737
46060
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -45814,6 +46137,88 @@ export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartNode =
|
|
|
45814
46137
|
id: Scalars['ID']['output'];
|
|
45815
46138
|
};
|
|
45816
46139
|
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartUnion = TownsquareProject;
|
|
46140
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & {
|
|
46141
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
46142
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>;
|
|
46143
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode>>;
|
|
46144
|
+
pageInfo: PageInfo;
|
|
46145
|
+
};
|
|
46146
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge = {
|
|
46147
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge';
|
|
46148
|
+
node: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection;
|
|
46149
|
+
};
|
|
46150
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode = {
|
|
46151
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode';
|
|
46152
|
+
data?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndUnion>;
|
|
46153
|
+
id: Scalars['ID']['output'];
|
|
46154
|
+
};
|
|
46155
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
46156
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection = {
|
|
46157
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection';
|
|
46158
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge>>;
|
|
46159
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode>>;
|
|
46160
|
+
requestedId: Scalars['ID']['output'];
|
|
46161
|
+
};
|
|
46162
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge = {
|
|
46163
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge';
|
|
46164
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46165
|
+
node: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode;
|
|
46166
|
+
};
|
|
46167
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode = Node & {
|
|
46168
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode';
|
|
46169
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46170
|
+
from: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode;
|
|
46171
|
+
id: Scalars['ID']['output'];
|
|
46172
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46173
|
+
to: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode;
|
|
46174
|
+
};
|
|
46175
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode = {
|
|
46176
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode';
|
|
46177
|
+
data?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartUnion>;
|
|
46178
|
+
id: Scalars['ID']['output'];
|
|
46179
|
+
};
|
|
46180
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46181
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
46182
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection';
|
|
46183
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge>>;
|
|
46184
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode>>;
|
|
46185
|
+
pageInfo: PageInfo;
|
|
46186
|
+
};
|
|
46187
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge = {
|
|
46188
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge';
|
|
46189
|
+
node: GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection;
|
|
46190
|
+
};
|
|
46191
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode = {
|
|
46192
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode';
|
|
46193
|
+
data?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndUnion>;
|
|
46194
|
+
id: Scalars['ID']['output'];
|
|
46195
|
+
};
|
|
46196
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndUnion = LoomMeeting;
|
|
46197
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection = {
|
|
46198
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection';
|
|
46199
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge>>;
|
|
46200
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode>>;
|
|
46201
|
+
requestedId: Scalars['ID']['output'];
|
|
46202
|
+
};
|
|
46203
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge = {
|
|
46204
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge';
|
|
46205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46206
|
+
node: GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode;
|
|
46207
|
+
};
|
|
46208
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode = Node & {
|
|
46209
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode';
|
|
46210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46211
|
+
from: GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode;
|
|
46212
|
+
id: Scalars['ID']['output'];
|
|
46213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46214
|
+
to: GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode;
|
|
46215
|
+
};
|
|
46216
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode = {
|
|
46217
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode';
|
|
46218
|
+
data?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion>;
|
|
46219
|
+
id: Scalars['ID']['output'];
|
|
46220
|
+
};
|
|
46221
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45817
46222
|
export declare type GraphStoreBatchChangeProposalHasAtlasGoalConnection = HasPageInfo & {
|
|
45818
46223
|
__typename?: 'GraphStoreBatchChangeProposalHasAtlasGoalConnection';
|
|
45819
46224
|
edges: Array<Maybe<GraphStoreBatchChangeProposalHasAtlasGoalEdge>>;
|
|
@@ -45870,7 +46275,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
45870
46275
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
45871
46276
|
id: Scalars['ID']['output'];
|
|
45872
46277
|
};
|
|
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;
|
|
46278
|
+
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
46279
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
45875
46280
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
45876
46281
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -45895,7 +46300,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
45895
46300
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
45896
46301
|
id: Scalars['ID']['output'];
|
|
45897
46302
|
};
|
|
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;
|
|
46303
|
+
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
46304
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
45900
46305
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
45901
46306
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -47041,6 +47446,47 @@ export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
|
47041
47446
|
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
47042
47447
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47043
47448
|
};
|
|
47449
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput = {
|
|
47450
|
+
category?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput>;
|
|
47451
|
+
};
|
|
47452
|
+
export declare enum GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput {
|
|
47453
|
+
CommentAssigned = "COMMENT_ASSIGNED",
|
|
47454
|
+
CommentMention = "COMMENT_MENTION",
|
|
47455
|
+
CommentReply = "COMMENT_REPLY",
|
|
47456
|
+
IssueApproval = "ISSUE_APPROVAL",
|
|
47457
|
+
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
47458
|
+
NotSet = "NOT_SET",
|
|
47459
|
+
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
47460
|
+
ProjectPopularity = "PROJECT_POPULARITY",
|
|
47461
|
+
PrReview = "PR_REVIEW",
|
|
47462
|
+
TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
|
|
47463
|
+
TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
|
|
47464
|
+
TeamInviterContext = "TEAM_INVITER_CONTEXT",
|
|
47465
|
+
TeamPopularity = "TEAM_POPULARITY"
|
|
47466
|
+
}
|
|
47467
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityInput = {
|
|
47468
|
+
relationships: Array<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput>;
|
|
47469
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47470
|
+
};
|
|
47471
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload = Payload & {
|
|
47472
|
+
__typename?: 'GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload';
|
|
47473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
47474
|
+
success: Scalars['Boolean']['output'];
|
|
47475
|
+
};
|
|
47476
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput = {
|
|
47477
|
+
from: Scalars['ID']['input'];
|
|
47478
|
+
objectMetadata?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput>;
|
|
47479
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipMetadataInput>;
|
|
47480
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
47481
|
+
to: Scalars['ID']['input'];
|
|
47482
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
47483
|
+
};
|
|
47484
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipMetadataInput = {
|
|
47485
|
+
dismissedCategories?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
|
|
47486
|
+
};
|
|
47487
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput = {
|
|
47488
|
+
dismissedCategories?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
|
|
47489
|
+
};
|
|
47044
47490
|
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
47045
47491
|
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
47046
47492
|
};
|
|
@@ -47623,7 +48069,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
47623
48069
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
47624
48070
|
id: Scalars['ID']['output'];
|
|
47625
48071
|
};
|
|
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;
|
|
48072
|
+
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
48073
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
47628
48074
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
47629
48075
|
value: Scalars['String']['output'];
|
|
@@ -47637,13 +48083,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
47637
48083
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
47638
48084
|
id: Scalars['ID']['output'];
|
|
47639
48085
|
};
|
|
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;
|
|
48086
|
+
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
48087
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
47642
48088
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
47643
48089
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
47644
48090
|
id: Scalars['ID']['output'];
|
|
47645
48091
|
};
|
|
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;
|
|
48092
|
+
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
48093
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
47648
48094
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
47649
48095
|
value: Scalars['Boolean']['output'];
|
|
@@ -47739,7 +48185,11 @@ export declare type GraphStoreCypherQueryV2NodeList = {
|
|
|
47739
48185
|
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
47740
48186
|
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
47741
48187
|
};
|
|
47742
|
-
export declare type
|
|
48188
|
+
export declare type GraphStoreCypherQueryV2Path = {
|
|
48189
|
+
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
48190
|
+
elements: Array<Scalars['String']['output']>;
|
|
48191
|
+
};
|
|
48192
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampObject;
|
|
47743
48193
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
47744
48194
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
47745
48195
|
value: Scalars['String']['output'];
|
|
@@ -47752,7 +48202,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
47752
48202
|
V2 = "V2",
|
|
47753
48203
|
V3 = "V3"
|
|
47754
48204
|
}
|
|
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;
|
|
48205
|
+
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
48206
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
47757
48207
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
47758
48208
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -47762,6 +48212,19 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
47762
48212
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
47763
48213
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
47764
48214
|
};
|
|
48215
|
+
export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput = {
|
|
48216
|
+
relationships: Array<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput>;
|
|
48217
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48218
|
+
};
|
|
48219
|
+
export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload = Payload & {
|
|
48220
|
+
__typename?: 'GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload';
|
|
48221
|
+
errors?: Maybe<Array<MutationError>>;
|
|
48222
|
+
success: Scalars['Boolean']['output'];
|
|
48223
|
+
};
|
|
48224
|
+
export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput = {
|
|
48225
|
+
from: Scalars['ID']['input'];
|
|
48226
|
+
to: Scalars['ID']['input'];
|
|
48227
|
+
};
|
|
47765
48228
|
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
47766
48229
|
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
47767
48230
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48518,7 +48981,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
48518
48981
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
48519
48982
|
id: Scalars['ID']['output'];
|
|
48520
48983
|
};
|
|
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;
|
|
48984
|
+
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
48985
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
48523
48986
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
48524
48987
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -48532,7 +48995,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
48532
48995
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
48533
48996
|
id: Scalars['ID']['output'];
|
|
48534
48997
|
};
|
|
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;
|
|
48998
|
+
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
48999
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
48537
49000
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
48538
49001
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -52108,6 +52571,7 @@ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSort
|
|
|
52108
52571
|
};
|
|
52109
52572
|
export declare type GraphStoreMutation = {
|
|
52110
52573
|
__typename?: 'GraphStoreMutation';
|
|
52574
|
+
createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
52111
52575
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
52112
52576
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
52113
52577
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
@@ -52140,6 +52604,7 @@ export declare type GraphStoreMutation = {
|
|
|
52140
52604
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
52141
52605
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
52142
52606
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
52607
|
+
deleteAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
52143
52608
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
52144
52609
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
52145
52610
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
@@ -52173,6 +52638,9 @@ export declare type GraphStoreMutation = {
|
|
|
52173
52638
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
52174
52639
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
52175
52640
|
};
|
|
52641
|
+
export declare type GraphStoreMutationCreateAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
52642
|
+
input?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
52643
|
+
};
|
|
52176
52644
|
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
52177
52645
|
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
52178
52646
|
};
|
|
@@ -52269,6 +52737,9 @@ export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs
|
|
|
52269
52737
|
export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
52270
52738
|
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
52271
52739
|
};
|
|
52740
|
+
export declare type GraphStoreMutationDeleteAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
52741
|
+
input?: InputMaybe<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
52742
|
+
};
|
|
52272
52743
|
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
52273
52744
|
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
52274
52745
|
};
|
|
@@ -53613,6 +54084,66 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
53613
54084
|
};
|
|
53614
54085
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
53615
54086
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
54087
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
54088
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
54089
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
54090
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54091
|
+
pageInfo: PageInfo;
|
|
54092
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54093
|
+
};
|
|
54094
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge = {
|
|
54095
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge';
|
|
54096
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54097
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54098
|
+
id: Scalars['ID']['output'];
|
|
54099
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54100
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion>;
|
|
54101
|
+
};
|
|
54102
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
54103
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection';
|
|
54104
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge>>>;
|
|
54105
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54106
|
+
pageInfo: PageInfo;
|
|
54107
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54108
|
+
};
|
|
54109
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge = {
|
|
54110
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge';
|
|
54111
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54112
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54113
|
+
id: Scalars['ID']['output'];
|
|
54114
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54115
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion>;
|
|
54116
|
+
};
|
|
54117
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54118
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
54119
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
54120
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
54121
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
54122
|
+
pageInfo: PageInfo;
|
|
54123
|
+
};
|
|
54124
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge = {
|
|
54125
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge';
|
|
54126
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54127
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54128
|
+
id: Scalars['ID']['output'];
|
|
54129
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54130
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion>;
|
|
54131
|
+
};
|
|
54132
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection = HasPageInfo & {
|
|
54133
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection';
|
|
54134
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge>>>;
|
|
54135
|
+
pageInfo: PageInfo;
|
|
54136
|
+
};
|
|
54137
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge = {
|
|
54138
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge';
|
|
54139
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54140
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54141
|
+
id: Scalars['ID']['output'];
|
|
54142
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54143
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion>;
|
|
54144
|
+
};
|
|
54145
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54146
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion = LoomMeeting;
|
|
53616
54147
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
53617
54148
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
53618
54149
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -54287,8 +54818,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
54287
54818
|
lastUpdated: Scalars['DateTime']['output'];
|
|
54288
54819
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
54289
54820
|
};
|
|
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;
|
|
54821
|
+
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;
|
|
54822
|
+
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
54823
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
54293
54824
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
54294
54825
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -67637,6 +68168,11 @@ export declare type JiraAiAgentSessionEdge = {
|
|
|
67637
68168
|
cursor: Scalars['String']['output'];
|
|
67638
68169
|
node?: Maybe<JiraAiAgentSession>;
|
|
67639
68170
|
};
|
|
68171
|
+
export declare type JiraAiAgentSessionEnrichmentInput = {
|
|
68172
|
+
agentIdentityAccountId: Scalars['String']['input'];
|
|
68173
|
+
cloudId: Scalars['ID']['input'];
|
|
68174
|
+
conversationId: Scalars['String']['input'];
|
|
68175
|
+
};
|
|
67640
68176
|
export declare type JiraAiEnablementIssueInput = {
|
|
67641
68177
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
67642
68178
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -78969,6 +79505,7 @@ export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
|
78969
79505
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
78970
79506
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
78971
79507
|
id: Scalars['ID']['input'];
|
|
79508
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
78972
79509
|
};
|
|
78973
79510
|
export declare type JiraMutationRequestCancelIssueExportTaskArgs = {
|
|
78974
79511
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81923,6 +82460,7 @@ export declare type JiraQuery = {
|
|
|
81923
82460
|
__typename?: 'JiraQuery';
|
|
81924
82461
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
81925
82462
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
82463
|
+
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
81926
82464
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
81927
82465
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
81928
82466
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
@@ -82152,6 +82690,9 @@ export declare type JiraQueryActiveBackgroundDetailsArgs = {
|
|
|
82152
82690
|
export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
82153
82691
|
cloudId: Scalars['ID']['input'];
|
|
82154
82692
|
};
|
|
82693
|
+
export declare type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
82694
|
+
input: JiraAiAgentSessionEnrichmentInput;
|
|
82695
|
+
};
|
|
82155
82696
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
82156
82697
|
cloudId: Scalars['ID']['input'];
|
|
82157
82698
|
};
|
|
@@ -83331,6 +83872,7 @@ export declare type JiraRecommendedActionCategory = {
|
|
|
83331
83872
|
descriptionLinkLabel?: Maybe<Scalars['String']['output']>;
|
|
83332
83873
|
id: Scalars['ID']['output'];
|
|
83333
83874
|
title?: Maybe<Scalars['String']['output']>;
|
|
83875
|
+
type?: Maybe<JiraRecommendedActionCategoryType>;
|
|
83334
83876
|
};
|
|
83335
83877
|
export declare type JiraRecommendedActionCategoryConnection = {
|
|
83336
83878
|
__typename?: 'JiraRecommendedActionCategoryConnection';
|
|
@@ -83343,6 +83885,21 @@ export declare type JiraRecommendedActionCategoryEdge = {
|
|
|
83343
83885
|
cursor: Scalars['String']['output'];
|
|
83344
83886
|
node?: Maybe<JiraRecommendedActionCategory>;
|
|
83345
83887
|
};
|
|
83888
|
+
export declare enum JiraRecommendedActionCategoryType {
|
|
83889
|
+
CommentAssigned = "COMMENT_ASSIGNED",
|
|
83890
|
+
CommentMention = "COMMENT_MENTION",
|
|
83891
|
+
CommentReply = "COMMENT_REPLY",
|
|
83892
|
+
IssueApproval = "ISSUE_APPROVAL",
|
|
83893
|
+
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
83894
|
+
NotSet = "NOT_SET",
|
|
83895
|
+
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
83896
|
+
ProjectPopularity = "PROJECT_POPULARITY",
|
|
83897
|
+
PrReview = "PR_REVIEW",
|
|
83898
|
+
TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
|
|
83899
|
+
TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
|
|
83900
|
+
TeamInviterContext = "TEAM_INVITER_CONTEXT",
|
|
83901
|
+
TeamPopularity = "TEAM_POPULARITY"
|
|
83902
|
+
}
|
|
83346
83903
|
export declare type JiraRecommendedActionConnection = {
|
|
83347
83904
|
__typename?: 'JiraRecommendedActionConnection';
|
|
83348
83905
|
edges?: Maybe<Array<Maybe<JiraRecommendedActionEdge>>>;
|
|
@@ -83354,7 +83911,7 @@ export declare type JiraRecommendedActionEdge = {
|
|
|
83354
83911
|
cursor: Scalars['String']['output'];
|
|
83355
83912
|
node?: Maybe<JiraRecommendedAction>;
|
|
83356
83913
|
};
|
|
83357
|
-
export declare type JiraRecommendedActionEntity = JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment;
|
|
83914
|
+
export declare type JiraRecommendedActionEntity = ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
83358
83915
|
export declare type JiraRedaction = {
|
|
83359
83916
|
__typename?: 'JiraRedaction';
|
|
83360
83917
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -86653,6 +87210,7 @@ export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
|
86653
87210
|
export declare type JiraSubscription = {
|
|
86654
87211
|
__typename?: 'JiraSubscription';
|
|
86655
87212
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
87213
|
+
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
86656
87214
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
86657
87215
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
86658
87216
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -86689,6 +87247,10 @@ export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
|
|
|
86689
87247
|
cloudId: Scalars['ID']['input'];
|
|
86690
87248
|
subscriptionId: Scalars['ID']['input'];
|
|
86691
87249
|
};
|
|
87250
|
+
export declare type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
87251
|
+
cloudId: Scalars['ID']['input'];
|
|
87252
|
+
issueId: Scalars['String']['input'];
|
|
87253
|
+
};
|
|
86692
87254
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
86693
87255
|
cloudId: Scalars['ID']['input'];
|
|
86694
87256
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -89906,6 +90468,7 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
89906
90468
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
89907
90469
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
89908
90470
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
90471
|
+
isLoading: Scalars['Boolean']['output'];
|
|
89909
90472
|
nodes: Array<JsmChannelsPlanNodeMapEntry>;
|
|
89910
90473
|
planId: Scalars['ID']['output'];
|
|
89911
90474
|
};
|
|
@@ -90579,8 +91142,8 @@ export declare type JsmConversationClaimConversationPayload = Payload & {
|
|
|
90579
91142
|
success: Scalars['Boolean']['output'];
|
|
90580
91143
|
};
|
|
90581
91144
|
export declare type JsmConversationCloseConversationInput = {
|
|
91145
|
+
channelId: Scalars['ID']['input'];
|
|
90582
91146
|
cloudId: Scalars['ID']['input'];
|
|
90583
|
-
conversationId: Scalars['ID']['input'];
|
|
90584
91147
|
};
|
|
90585
91148
|
export declare type JsmConversationCloseConversationPayload = Payload & {
|
|
90586
91149
|
__typename?: 'JsmConversationCloseConversationPayload';
|
|
@@ -91801,7 +92364,10 @@ export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
|
91801
92364
|
export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
|
|
91802
92365
|
export declare enum KnowledgeDiscoveryProduct {
|
|
91803
92366
|
Confluence = "CONFLUENCE",
|
|
91804
|
-
|
|
92367
|
+
Google = "GOOGLE",
|
|
92368
|
+
Jira = "JIRA",
|
|
92369
|
+
Sharepoint = "SHAREPOINT",
|
|
92370
|
+
Slack = "SLACK"
|
|
91805
92371
|
}
|
|
91806
92372
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
91807
92373
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
@@ -92167,11 +92733,22 @@ export declare enum KnowledgeDiscoveryZeroQueryDateRange {
|
|
|
92167
92733
|
Yesterday = "YESTERDAY"
|
|
92168
92734
|
}
|
|
92169
92735
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
92736
|
+
CollaboratorProfile = "COLLABORATOR_PROFILE",
|
|
92737
|
+
ConfluencePagesCreated = "CONFLUENCE_PAGES_CREATED",
|
|
92170
92738
|
ConfluencePagesCreated_7Days = "CONFLUENCE_PAGES_CREATED_7_DAYS",
|
|
92739
|
+
ConfluencePagesCreated_30Days = "CONFLUENCE_PAGES_CREATED_30_DAYS",
|
|
92740
|
+
ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
|
|
92741
|
+
ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
|
|
92171
92742
|
ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
|
|
92172
92743
|
JiraNlq = "JIRA_NLQ",
|
|
92173
92744
|
JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
|
|
92174
92745
|
RelatedQuestion = "RELATED_QUESTION",
|
|
92746
|
+
ThirdPartyGoogleCollaboratorDocs = "THIRD_PARTY_GOOGLE_COLLABORATOR_DOCS",
|
|
92747
|
+
ThirdPartyGoogleMyDocs = "THIRD_PARTY_GOOGLE_MY_DOCS",
|
|
92748
|
+
ThirdPartySharepointCollaboratorDocs = "THIRD_PARTY_SHAREPOINT_COLLABORATOR_DOCS",
|
|
92749
|
+
ThirdPartySharepointMyDocs = "THIRD_PARTY_SHAREPOINT_MY_DOCS",
|
|
92750
|
+
ThirdPartySlackCollaboratorMessages = "THIRD_PARTY_SLACK_COLLABORATOR_MESSAGES",
|
|
92751
|
+
ThirdPartySlackMyMessages = "THIRD_PARTY_SLACK_MY_MESSAGES",
|
|
92175
92752
|
WhoIs = "WHO_IS"
|
|
92176
92753
|
}
|
|
92177
92754
|
export declare enum KnowledgeGraphContentType {
|
|
@@ -93210,6 +93787,7 @@ export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
|
93210
93787
|
};
|
|
93211
93788
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
93212
93789
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
93790
|
+
additionalCompatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
93213
93791
|
cloudAppEnvironmentId: Scalars['ID']['output'];
|
|
93214
93792
|
cloudAppId: Scalars['ID']['output'];
|
|
93215
93793
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
@@ -93489,7 +94067,7 @@ export declare type MarketplaceConsoleBankDetailsInput = {
|
|
|
93489
94067
|
bankAccountType?: InputMaybe<MarketplaceConsoleBankAccountType>;
|
|
93490
94068
|
bankAddress?: InputMaybe<Scalars['String']['input']>;
|
|
93491
94069
|
bankCity: Scalars['String']['input'];
|
|
93492
|
-
|
|
94070
|
+
bankCountryCode: Scalars['String']['input'];
|
|
93493
94071
|
bankName: Scalars['String']['input'];
|
|
93494
94072
|
bankPostCode?: InputMaybe<Scalars['String']['input']>;
|
|
93495
94073
|
bankState?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -94183,6 +94761,7 @@ export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownErr
|
|
|
94183
94761
|
export declare type MarketplaceConsoleMutationApi = {
|
|
94184
94762
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
94185
94763
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
94764
|
+
archiveMaker?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
94186
94765
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
94187
94766
|
createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
|
|
94188
94767
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
@@ -94208,6 +94787,9 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
94208
94787
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
94209
94788
|
product: MarketplaceConsoleEditionsInput;
|
|
94210
94789
|
};
|
|
94790
|
+
export declare type MarketplaceConsoleMutationApiArchiveMakerArgs = {
|
|
94791
|
+
developerId: Scalars['ID']['input'];
|
|
94792
|
+
};
|
|
94211
94793
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
94212
94794
|
appSoftwareId: Scalars['String']['input'];
|
|
94213
94795
|
};
|
|
@@ -97612,6 +98194,7 @@ export declare type MercuryGoalInsight = MercuryInsight & {
|
|
|
97612
98194
|
__typename?: 'MercuryGoalInsight';
|
|
97613
98195
|
ari: Scalars['ID']['output'];
|
|
97614
98196
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
98197
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97615
98198
|
id: Scalars['ID']['output'];
|
|
97616
98199
|
insightData?: Maybe<TownsquareGoal>;
|
|
97617
98200
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97673,7 +98256,6 @@ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
|
97673
98256
|
export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
97674
98257
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97675
98258
|
focusAreaId: Scalars['ID']['input'];
|
|
97676
|
-
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
97677
98259
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
97678
98260
|
};
|
|
97679
98261
|
export declare type MercuryInvestmentCategory = Node & {
|
|
@@ -97720,6 +98302,7 @@ export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
|
97720
98302
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
97721
98303
|
ari: Scalars['ID']['output'];
|
|
97722
98304
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
98305
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97723
98306
|
id: Scalars['ID']['output'];
|
|
97724
98307
|
insightData?: Maybe<JiraAlignAggProject>;
|
|
97725
98308
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97750,6 +98333,7 @@ export declare type MercuryJiraIssueInsight = MercuryInsight & {
|
|
|
97750
98333
|
__typename?: 'MercuryJiraIssueInsight';
|
|
97751
98334
|
ari: Scalars['ID']['output'];
|
|
97752
98335
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
98336
|
+
focusAreaId: Scalars['ID']['output'];
|
|
97753
98337
|
id: Scalars['ID']['output'];
|
|
97754
98338
|
insightData?: Maybe<JiraIssue>;
|
|
97755
98339
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -99303,6 +99887,7 @@ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
|
99303
99887
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
99304
99888
|
ari: Scalars['ID']['output'];
|
|
99305
99889
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
99890
|
+
focusAreaId: Scalars['ID']['output'];
|
|
99306
99891
|
id: Scalars['ID']['output'];
|
|
99307
99892
|
insightData?: Maybe<TownsquareProject>;
|
|
99308
99893
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -100160,8 +100745,10 @@ export declare type Mutation = {
|
|
|
100160
100745
|
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
100161
100746
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
100162
100747
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
100748
|
+
confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
|
|
100163
100749
|
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
100164
100750
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
100751
|
+
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
100165
100752
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
100166
100753
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
100167
100754
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -100172,6 +100759,7 @@ export declare type Mutation = {
|
|
|
100172
100759
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
100173
100760
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
100174
100761
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
100762
|
+
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
100175
100763
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
100176
100764
|
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
100177
100765
|
confluence_updateWatermarkConfig?: Maybe<ConfluenceUpdateWatermarkConfigPayload>;
|
|
@@ -100196,6 +100784,7 @@ export declare type Mutation = {
|
|
|
100196
100784
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
100197
100785
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
100198
100786
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
100787
|
+
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
100199
100788
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
100200
100789
|
createApp?: Maybe<CreateAppResponse>;
|
|
100201
100790
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -100252,6 +100841,7 @@ export declare type Mutation = {
|
|
|
100252
100841
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
100253
100842
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
100254
100843
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
100844
|
+
csmAi_deleteWidget?: Maybe<CsmAiDeleteWidgetPayload>;
|
|
100255
100845
|
csmAi_generateWidgetClientKey?: Maybe<CsmAiGenerateClientKeyPayload>;
|
|
100256
100846
|
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
100257
100847
|
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
@@ -100596,10 +101186,14 @@ export declare type Mutation = {
|
|
|
100596
101186
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
100597
101187
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
100598
101188
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
101189
|
+
projects_editDropdownCustomField?: Maybe<TownsquareProjectsEditDropdownCustomFieldPayload>;
|
|
100599
101190
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
100600
101191
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
101192
|
+
projects_editNumberCustomField?: Maybe<TownsquareProjectsEditNumberCustomFieldPayload>;
|
|
100601
101193
|
projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
|
|
101194
|
+
projects_editTextCustomField?: Maybe<TownsquareProjectsEditTextCustomFieldPayload>;
|
|
100602
101195
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
101196
|
+
projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
|
|
100603
101197
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
100604
101198
|
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
100605
101199
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -100706,10 +101300,14 @@ export declare type Mutation = {
|
|
|
100706
101300
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
100707
101301
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100708
101302
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
101303
|
+
spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
|
|
101304
|
+
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
100709
101305
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
100710
101306
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
100711
101307
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
100712
101308
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
101309
|
+
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
101310
|
+
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
100713
101311
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100714
101312
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
100715
101313
|
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -100723,6 +101321,13 @@ export declare type Mutation = {
|
|
|
100723
101321
|
spf_updateAskUpdateDescription?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100724
101322
|
spf_updateAskUpdateStatus?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
100725
101323
|
spf_updateAskUpdateTargetDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
101324
|
+
spf_updatePlanDescription?: Maybe<SpfUpsertPlanPayload>;
|
|
101325
|
+
spf_updatePlanName?: Maybe<SpfUpsertPlanPayload>;
|
|
101326
|
+
spf_updatePlanPortfolio?: Maybe<SpfUpsertPlanPayload>;
|
|
101327
|
+
spf_updatePlanScenarioName?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
101328
|
+
spf_updatePlanScenarioStatus?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
101329
|
+
spf_updatePlanStatus?: Maybe<SpfUpsertPlanPayload>;
|
|
101330
|
+
spf_updatePlanTimeframe?: Maybe<SpfUpsertPlanPayload>;
|
|
100726
101331
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
100727
101332
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
100728
101333
|
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
@@ -101670,6 +102275,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
101670
102275
|
cloudId: Scalars['ID']['input'];
|
|
101671
102276
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
101672
102277
|
};
|
|
102278
|
+
export declare type MutationConfluence_UpdateContentAppearanceArgs = {
|
|
102279
|
+
cloudId: Scalars['ID']['input'];
|
|
102280
|
+
input: ConfluenceUpdateContentAppearanceInput;
|
|
102281
|
+
};
|
|
101673
102282
|
export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
|
|
101674
102283
|
cloudId: Scalars['ID']['input'];
|
|
101675
102284
|
input: ConfluenceUpdateContentDirectRestrictionsInput;
|
|
@@ -101678,6 +102287,10 @@ export declare type MutationConfluence_UpdateContentModeArgs = {
|
|
|
101678
102287
|
cloudId: Scalars['ID']['input'];
|
|
101679
102288
|
input: ConfluenceUpdateContentModeInput;
|
|
101680
102289
|
};
|
|
102290
|
+
export declare type MutationConfluence_UpdateCoverPictureArgs = {
|
|
102291
|
+
cloudId: Scalars['ID']['input'];
|
|
102292
|
+
input: ConfluenceUpdateCoverPictureInput;
|
|
102293
|
+
};
|
|
101681
102294
|
export declare type MutationConfluence_UpdateCustomContentPermissionsArgs = {
|
|
101682
102295
|
cloudId: Scalars['ID']['input'];
|
|
101683
102296
|
input: ConfluenceUpdateCustomContentPermissionsInput;
|
|
@@ -101720,6 +102333,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
101720
102333
|
cloudId: Scalars['ID']['input'];
|
|
101721
102334
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
101722
102335
|
};
|
|
102336
|
+
export declare type MutationConfluence_UpdateTitleEmojiArgs = {
|
|
102337
|
+
cloudId: Scalars['ID']['input'];
|
|
102338
|
+
input: ConfluenceUpdateTitleEmojiInput;
|
|
102339
|
+
};
|
|
101723
102340
|
export declare type MutationConfluence_UpdateTopicArgs = {
|
|
101724
102341
|
cloudId: Scalars['ID']['input'];
|
|
101725
102342
|
input: ConfluenceUpdateTopicInput;
|
|
@@ -101803,6 +102420,9 @@ export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
|
101803
102420
|
export declare type MutationCpls_UpdateFiltersArgs = {
|
|
101804
102421
|
input: CplsUpdateFiltersInput;
|
|
101805
102422
|
};
|
|
102423
|
+
export declare type MutationCpls_UpdateViewSettingsArgs = {
|
|
102424
|
+
input: CplsUpdateViewSettingsInput;
|
|
102425
|
+
};
|
|
101806
102426
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
101807
102427
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
101808
102428
|
};
|
|
@@ -102009,6 +102629,11 @@ export declare type MutationCsmAi_DeleteKnowledgeSourceArgs = {
|
|
|
102009
102629
|
csmAiKnowledgeSourceId: Scalars['ID']['input'];
|
|
102010
102630
|
helpCenterAri: Scalars['ID']['input'];
|
|
102011
102631
|
};
|
|
102632
|
+
export declare type MutationCsmAi_DeleteWidgetArgs = {
|
|
102633
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
102634
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
102635
|
+
widgetId: Scalars['ID']['input'];
|
|
102636
|
+
};
|
|
102012
102637
|
export declare type MutationCsmAi_GenerateWidgetClientKeyArgs = {
|
|
102013
102638
|
helpCenterAri: Scalars['ID']['input'];
|
|
102014
102639
|
widgetId: Scalars['ID']['input'];
|
|
@@ -103079,18 +103704,30 @@ export declare type MutationProjects_EditCommentArgs = {
|
|
|
103079
103704
|
export declare type MutationProjects_EditDecisionArgs = {
|
|
103080
103705
|
input: TownsquareProjectsEditDecisionInput;
|
|
103081
103706
|
};
|
|
103707
|
+
export declare type MutationProjects_EditDropdownCustomFieldArgs = {
|
|
103708
|
+
input: TownsquareProjectsEditDropdownCustomFieldInput;
|
|
103709
|
+
};
|
|
103082
103710
|
export declare type MutationProjects_EditLearningArgs = {
|
|
103083
103711
|
input: TownsquareProjectsEditLearningInput;
|
|
103084
103712
|
};
|
|
103085
103713
|
export declare type MutationProjects_EditLinkArgs = {
|
|
103086
103714
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
103087
103715
|
};
|
|
103716
|
+
export declare type MutationProjects_EditNumberCustomFieldArgs = {
|
|
103717
|
+
input: TownsquareProjectsEditNumberCustomFieldInput;
|
|
103718
|
+
};
|
|
103088
103719
|
export declare type MutationProjects_EditRiskArgs = {
|
|
103089
103720
|
input: TownsquareProjectsEditRiskInput;
|
|
103090
103721
|
};
|
|
103722
|
+
export declare type MutationProjects_EditTextCustomFieldArgs = {
|
|
103723
|
+
input: TownsquareProjectsEditTextCustomFieldInput;
|
|
103724
|
+
};
|
|
103091
103725
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
103092
103726
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
103093
103727
|
};
|
|
103728
|
+
export declare type MutationProjects_EditUserCustomFieldArgs = {
|
|
103729
|
+
input: TownsquareProjectsEditUserCustomFieldInput;
|
|
103730
|
+
};
|
|
103094
103731
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
103095
103732
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
103096
103733
|
};
|
|
@@ -103436,6 +104073,12 @@ export declare type MutationSpf_CreateAskCommentArgs = {
|
|
|
103436
104073
|
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
103437
104074
|
input: SpfCreateAskUpdateInput;
|
|
103438
104075
|
};
|
|
104076
|
+
export declare type MutationSpf_CreatePlanArgs = {
|
|
104077
|
+
input: SpfCreatePlanInput;
|
|
104078
|
+
};
|
|
104079
|
+
export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
104080
|
+
input: SpfCreatePlanScenarioInput;
|
|
104081
|
+
};
|
|
103439
104082
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
103440
104083
|
input: SpfDeleteAskInput;
|
|
103441
104084
|
};
|
|
@@ -103448,6 +104091,12 @@ export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
|
103448
104091
|
export declare type MutationSpf_DeleteAskUpdateArgs = {
|
|
103449
104092
|
input: SpfDeleteAskUpdateInput;
|
|
103450
104093
|
};
|
|
104094
|
+
export declare type MutationSpf_DeletePlanArgs = {
|
|
104095
|
+
input: SpfDeletePlanInput;
|
|
104096
|
+
};
|
|
104097
|
+
export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
104098
|
+
input: SpfDeletePlanScenarioInput;
|
|
104099
|
+
};
|
|
103451
104100
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
103452
104101
|
input: SpfUpdateAskCommentDataInput;
|
|
103453
104102
|
};
|
|
@@ -103487,6 +104136,27 @@ export declare type MutationSpf_UpdateAskUpdateStatusArgs = {
|
|
|
103487
104136
|
export declare type MutationSpf_UpdateAskUpdateTargetDateArgs = {
|
|
103488
104137
|
input: SpfAskUpdateTargetDateInput;
|
|
103489
104138
|
};
|
|
104139
|
+
export declare type MutationSpf_UpdatePlanDescriptionArgs = {
|
|
104140
|
+
input: SpfUpdatePlanDescriptionInput;
|
|
104141
|
+
};
|
|
104142
|
+
export declare type MutationSpf_UpdatePlanNameArgs = {
|
|
104143
|
+
input: SpfUpdatePlanNameInput;
|
|
104144
|
+
};
|
|
104145
|
+
export declare type MutationSpf_UpdatePlanPortfolioArgs = {
|
|
104146
|
+
input: SpfUpdatePlanPortfolioInput;
|
|
104147
|
+
};
|
|
104148
|
+
export declare type MutationSpf_UpdatePlanScenarioNameArgs = {
|
|
104149
|
+
input: SpfUpdatePlanScenarioNameInput;
|
|
104150
|
+
};
|
|
104151
|
+
export declare type MutationSpf_UpdatePlanScenarioStatusArgs = {
|
|
104152
|
+
input: SpfUpdatePlanScenarioStatusInput;
|
|
104153
|
+
};
|
|
104154
|
+
export declare type MutationSpf_UpdatePlanStatusArgs = {
|
|
104155
|
+
input: SpfUpdatePlanStatusInput;
|
|
104156
|
+
};
|
|
104157
|
+
export declare type MutationSpf_UpdatePlanTimeframeArgs = {
|
|
104158
|
+
input: SpfUpdatePlanTimeframeInput;
|
|
104159
|
+
};
|
|
103490
104160
|
export declare type MutationSplitIssueArgs = {
|
|
103491
104161
|
input?: InputMaybe<SplitIssueInput>;
|
|
103492
104162
|
};
|
|
@@ -105699,6 +106369,10 @@ export declare type PolarisAddReactionPayload = Payload & {
|
|
|
105699
106369
|
node: Array<PolarisReactionSummary>;
|
|
105700
106370
|
success: Scalars['Boolean']['output'];
|
|
105701
106371
|
};
|
|
106372
|
+
export declare enum PolarisColorStyle {
|
|
106373
|
+
Background = "BACKGROUND",
|
|
106374
|
+
Highlight = "HIGHLIGHT"
|
|
106375
|
+
}
|
|
105702
106376
|
export declare enum PolarisColumnSize {
|
|
105703
106377
|
Default = "DEFAULT",
|
|
105704
106378
|
Large = "LARGE",
|
|
@@ -106120,6 +106794,9 @@ export declare enum PolarisTimelineTodayMarker {
|
|
|
106120
106794
|
}
|
|
106121
106795
|
export declare type PolarisView = {
|
|
106122
106796
|
__typename?: 'PolarisView';
|
|
106797
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
106798
|
+
colorBy?: Maybe<PolarisIdeaField>;
|
|
106799
|
+
colorStyle?: Maybe<PolarisColorStyle>;
|
|
106123
106800
|
columnSize?: Maybe<PolarisColumnSize>;
|
|
106124
106801
|
comments?: Maybe<Array<PolarisComment>>;
|
|
106125
106802
|
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -106611,11 +107288,14 @@ export declare type PublishConditionsDialog = {
|
|
|
106611
107288
|
};
|
|
106612
107289
|
export declare type PublishedContentProperties = {
|
|
106613
107290
|
__typename?: 'PublishedContentProperties';
|
|
107291
|
+
contentAppearance?: Maybe<Scalars['String']['output']>;
|
|
106614
107292
|
contentMode?: Maybe<Scalars['String']['output']>;
|
|
107293
|
+
coverPicture?: Maybe<Scalars['String']['output']>;
|
|
106615
107294
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
106616
107295
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
106617
107296
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
106618
107297
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
107298
|
+
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
106619
107299
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
106620
107300
|
};
|
|
106621
107301
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -106705,6 +107385,7 @@ export declare type Query = {
|
|
|
106705
107385
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
106706
107386
|
admin_group?: Maybe<AdminGroup>;
|
|
106707
107387
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
107388
|
+
admin_identityProviderDirectoryDetails?: Maybe<AdminIdentityProviderDirectoryDetails>;
|
|
106708
107389
|
admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
|
|
106709
107390
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
106710
107391
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
@@ -106716,6 +107397,7 @@ export declare type Query = {
|
|
|
106716
107397
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
106717
107398
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
106718
107399
|
admin_user?: Maybe<AdminUser>;
|
|
107400
|
+
admin_userAuthPolicy?: Maybe<AdminUserAuthPolicy>;
|
|
106719
107401
|
admin_userRoles?: Maybe<AdminUserRoleConnection>;
|
|
106720
107402
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
106721
107403
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -107054,7 +107736,6 @@ export declare type Query = {
|
|
|
107054
107736
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
107055
107737
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
107056
107738
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
107057
|
-
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
107058
107739
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
107059
107740
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
107060
107741
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
@@ -107310,7 +107991,6 @@ export declare type Query = {
|
|
|
107310
107991
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
107311
107992
|
jsw?: Maybe<JswQuery>;
|
|
107312
107993
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
107313
|
-
kitsune_hello?: Maybe<Scalars['String']['output']>;
|
|
107314
107994
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
107315
107995
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
107316
107996
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
@@ -107742,6 +108422,10 @@ export declare type QueryAdmin_GroupsArgs = {
|
|
|
107742
108422
|
input?: InputMaybe<AdminSearchGroupInput>;
|
|
107743
108423
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107744
108424
|
};
|
|
108425
|
+
export declare type QueryAdmin_IdentityProviderDirectoryDetailsArgs = {
|
|
108426
|
+
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
108427
|
+
orgId: Scalars['ID']['input'];
|
|
108428
|
+
};
|
|
107745
108429
|
export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
|
|
107746
108430
|
identityProviderDirectoryId: Scalars['ID']['input'];
|
|
107747
108431
|
orgId: Scalars['ID']['input'];
|
|
@@ -107800,6 +108484,10 @@ export declare type QueryAdmin_UnitsForOrgArgs = {
|
|
|
107800
108484
|
export declare type QueryAdmin_UserArgs = {
|
|
107801
108485
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
107802
108486
|
};
|
|
108487
|
+
export declare type QueryAdmin_UserAuthPolicyArgs = {
|
|
108488
|
+
orgId: Scalars['ID']['input'];
|
|
108489
|
+
userId: Scalars['ID']['input'];
|
|
108490
|
+
};
|
|
107803
108491
|
export declare type QueryAdmin_UserRolesArgs = {
|
|
107804
108492
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107805
108493
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107953,7 +108641,6 @@ export declare type QueryAgentStudio_DatasetListArgs = {
|
|
|
107953
108641
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107954
108642
|
productType: AgentStudioProductType;
|
|
107955
108643
|
projectContainerAri: Scalars['ID']['input'];
|
|
107956
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
107957
108644
|
};
|
|
107958
108645
|
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
107959
108646
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107961,7 +108648,6 @@ export declare type QueryAgentStudio_DatasetsArgs = {
|
|
|
107961
108648
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107962
108649
|
productType: AgentStudioProductType;
|
|
107963
108650
|
projectContainerAri: Scalars['ID']['input'];
|
|
107964
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
107965
108651
|
};
|
|
107966
108652
|
export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
107967
108653
|
cloudId: Scalars['String']['input'];
|
|
@@ -109504,9 +110190,6 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
109504
110190
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
109505
110191
|
startTime: Scalars['String']['input'];
|
|
109506
110192
|
};
|
|
109507
|
-
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
109508
|
-
id: Scalars['ID']['input'];
|
|
109509
|
-
};
|
|
109510
110193
|
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
109511
110194
|
input: CplsSearchCustomContributionTargetsInput;
|
|
109512
110195
|
};
|
|
@@ -110469,9 +111152,6 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
110469
111152
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
110470
111153
|
ids: Array<Scalars['ID']['input']>;
|
|
110471
111154
|
};
|
|
110472
|
-
export declare type QueryKitsune_HelloArgs = {
|
|
110473
|
-
projectAri: Scalars['ID']['input'];
|
|
110474
|
-
};
|
|
110475
111155
|
export declare type QueryKitsune_NodeArgs = {
|
|
110476
111156
|
id: Scalars['ID']['input'];
|
|
110477
111157
|
};
|
|
@@ -112369,10 +113049,11 @@ export declare enum RadarUserFieldPermission {
|
|
|
112369
113049
|
}
|
|
112370
113050
|
export declare type RadarView = Node & {
|
|
112371
113051
|
__typename?: 'RadarView';
|
|
113052
|
+
creator?: Maybe<User>;
|
|
113053
|
+
creatorAaid: Scalars['ID']['output'];
|
|
112372
113054
|
groupingField?: Maybe<Scalars['String']['output']>;
|
|
112373
113055
|
id: Scalars['ID']['output'];
|
|
112374
113056
|
orderedColumns?: Maybe<Array<Scalars['String']['output']>>;
|
|
112375
|
-
ownerAaid: Scalars['ID']['output'];
|
|
112376
113057
|
pageName: RadarViewPageName;
|
|
112377
113058
|
rql?: Maybe<Scalars['String']['output']>;
|
|
112378
113059
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -134416,11 +135097,6 @@ export declare type SiteSettings = {
|
|
|
134416
135097
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
134417
135098
|
siteTitle: Scalars['String']['output'];
|
|
134418
135099
|
};
|
|
134419
|
-
export declare type SkyBridgeId = {
|
|
134420
|
-
__typename?: 'SkyBridgeId';
|
|
134421
|
-
id: Scalars['ID']['output'];
|
|
134422
|
-
shardingContext: Scalars['String']['output'];
|
|
134423
|
-
};
|
|
134424
135100
|
export declare type SkyBridgeIdInput = {
|
|
134425
135101
|
id: Scalars['ID']['input'];
|
|
134426
135102
|
shardingContext: Scalars['String']['input'];
|
|
@@ -135743,6 +136419,21 @@ export declare type SpfCreateAskUpdateInput = {
|
|
|
135743
136419
|
status?: InputMaybe<SpfAskStatus>;
|
|
135744
136420
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
135745
136421
|
};
|
|
136422
|
+
export declare type SpfCreatePlanInput = {
|
|
136423
|
+
approverIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136424
|
+
cloudId: Scalars['ID']['input'];
|
|
136425
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
136426
|
+
name: Scalars['String']['input'];
|
|
136427
|
+
ownerIds: Array<Scalars['String']['input']>;
|
|
136428
|
+
portfolioId: Scalars['String']['input'];
|
|
136429
|
+
status: SpfPlanStatus;
|
|
136430
|
+
timeframe: SpfPlanTimeframeInput;
|
|
136431
|
+
};
|
|
136432
|
+
export declare type SpfCreatePlanScenarioInput = {
|
|
136433
|
+
name: Scalars['String']['input'];
|
|
136434
|
+
planId: Scalars['ID']['input'];
|
|
136435
|
+
status: SpfPlanScenarioStatus;
|
|
136436
|
+
};
|
|
135746
136437
|
export declare type SpfDeleteAskCommentInput = {
|
|
135747
136438
|
id: Scalars['ID']['input'];
|
|
135748
136439
|
};
|
|
@@ -135779,6 +136470,24 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
135779
136470
|
id: Scalars['ID']['output'];
|
|
135780
136471
|
success: Scalars['Boolean']['output'];
|
|
135781
136472
|
};
|
|
136473
|
+
export declare type SpfDeletePlanInput = {
|
|
136474
|
+
id: Scalars['ID']['input'];
|
|
136475
|
+
};
|
|
136476
|
+
export declare type SpfDeletePlanPayload = Payload & {
|
|
136477
|
+
__typename?: 'SpfDeletePlanPayload';
|
|
136478
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136479
|
+
id: Scalars['ID']['output'];
|
|
136480
|
+
success: Scalars['Boolean']['output'];
|
|
136481
|
+
};
|
|
136482
|
+
export declare type SpfDeletePlanScenarioInput = {
|
|
136483
|
+
id: Scalars['ID']['input'];
|
|
136484
|
+
};
|
|
136485
|
+
export declare type SpfDeletePlanScenarioPayload = Payload & {
|
|
136486
|
+
__typename?: 'SpfDeletePlanScenarioPayload';
|
|
136487
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136488
|
+
id: Scalars['ID']['output'];
|
|
136489
|
+
success: Scalars['Boolean']['output'];
|
|
136490
|
+
};
|
|
135782
136491
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
135783
136492
|
export declare type SpfMediaToken = {
|
|
135784
136493
|
__typename?: 'SpfMediaToken';
|
|
@@ -135793,18 +136502,16 @@ export declare type SpfPlan = Node & {
|
|
|
135793
136502
|
__typename?: 'SpfPlan';
|
|
135794
136503
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135795
136504
|
createdBy?: Maybe<User>;
|
|
135796
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135797
136505
|
description?: Maybe<Scalars['String']['output']>;
|
|
135798
136506
|
id: Scalars['ID']['output'];
|
|
135799
136507
|
name: Scalars['String']['output'];
|
|
135800
136508
|
portfolio?: Maybe<MercuryFocusArea>;
|
|
135801
|
-
portfolioId: Scalars['String']['output'];
|
|
135802
136509
|
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
135803
136510
|
status: SpfPlanStatus;
|
|
135804
136511
|
timeframe: SpfPlanTimeframe;
|
|
136512
|
+
transitions?: Maybe<Array<Maybe<SpfPlanTransition>>>;
|
|
135805
136513
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135806
136514
|
updatedBy?: Maybe<User>;
|
|
135807
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135808
136515
|
};
|
|
135809
136516
|
export declare type SpfPlanScenariosArgs = {
|
|
135810
136517
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135827,14 +136534,12 @@ export declare type SpfPlanScenario = Node & {
|
|
|
135827
136534
|
__typename?: 'SpfPlanScenario';
|
|
135828
136535
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135829
136536
|
createdBy?: Maybe<User>;
|
|
135830
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135831
136537
|
id: Scalars['ID']['output'];
|
|
135832
136538
|
name: Scalars['String']['output'];
|
|
135833
136539
|
planId: Scalars['String']['output'];
|
|
135834
136540
|
status: SpfPlanScenarioStatus;
|
|
135835
136541
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135836
136542
|
updatedBy?: Maybe<User>;
|
|
135837
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135838
136543
|
};
|
|
135839
136544
|
export declare type SpfPlanScenarioConnection = {
|
|
135840
136545
|
__typename?: 'SpfPlanScenarioConnection';
|
|
@@ -135852,7 +136557,9 @@ export declare enum SpfPlanScenarioStatus {
|
|
|
135852
136557
|
Draft = "DRAFT"
|
|
135853
136558
|
}
|
|
135854
136559
|
export declare enum SpfPlanStatus {
|
|
135855
|
-
|
|
136560
|
+
Canceled = "CANCELED",
|
|
136561
|
+
Draft = "DRAFT",
|
|
136562
|
+
Final = "FINAL"
|
|
135856
136563
|
}
|
|
135857
136564
|
export declare type SpfPlanTimeframe = {
|
|
135858
136565
|
__typename?: 'SpfPlanTimeframe';
|
|
@@ -135865,6 +136572,17 @@ export declare enum SpfPlanTimeframeGranularity {
|
|
|
135865
136572
|
Quarter = "QUARTER",
|
|
135866
136573
|
Week = "WEEK"
|
|
135867
136574
|
}
|
|
136575
|
+
export declare type SpfPlanTimeframeInput = {
|
|
136576
|
+
endDate: Scalars['String']['input'];
|
|
136577
|
+
startDate: Scalars['String']['input'];
|
|
136578
|
+
timeframeGranularity: SpfPlanTimeframeGranularity;
|
|
136579
|
+
};
|
|
136580
|
+
export declare type SpfPlanTransition = {
|
|
136581
|
+
__typename?: 'SpfPlanTransition';
|
|
136582
|
+
planId: Scalars['String']['output'];
|
|
136583
|
+
status?: Maybe<SpfPlanStatus>;
|
|
136584
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
136585
|
+
};
|
|
135868
136586
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
135869
136587
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
135870
136588
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135909,6 +136627,34 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
135909
136627
|
id: Scalars['ID']['input'];
|
|
135910
136628
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
135911
136629
|
};
|
|
136630
|
+
export declare type SpfUpdatePlanDescriptionInput = {
|
|
136631
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
136632
|
+
id: Scalars['ID']['input'];
|
|
136633
|
+
};
|
|
136634
|
+
export declare type SpfUpdatePlanNameInput = {
|
|
136635
|
+
id: Scalars['ID']['input'];
|
|
136636
|
+
name: Scalars['String']['input'];
|
|
136637
|
+
};
|
|
136638
|
+
export declare type SpfUpdatePlanPortfolioInput = {
|
|
136639
|
+
id: Scalars['ID']['input'];
|
|
136640
|
+
portfolioId: Scalars['String']['input'];
|
|
136641
|
+
};
|
|
136642
|
+
export declare type SpfUpdatePlanScenarioNameInput = {
|
|
136643
|
+
id: Scalars['ID']['input'];
|
|
136644
|
+
name: Scalars['String']['input'];
|
|
136645
|
+
};
|
|
136646
|
+
export declare type SpfUpdatePlanScenarioStatusInput = {
|
|
136647
|
+
id: Scalars['ID']['input'];
|
|
136648
|
+
status: SpfPlanScenarioStatus;
|
|
136649
|
+
};
|
|
136650
|
+
export declare type SpfUpdatePlanStatusInput = {
|
|
136651
|
+
id: Scalars['ID']['input'];
|
|
136652
|
+
status: SpfPlanStatus;
|
|
136653
|
+
};
|
|
136654
|
+
export declare type SpfUpdatePlanTimeframeInput = {
|
|
136655
|
+
id: Scalars['ID']['input'];
|
|
136656
|
+
timeframe: SpfPlanTimeframeInput;
|
|
136657
|
+
};
|
|
135912
136658
|
export declare type SpfUpsertAskCommentPayload = Payload & {
|
|
135913
136659
|
__typename?: 'SpfUpsertAskCommentPayload';
|
|
135914
136660
|
comment?: Maybe<SpfAskComment>;
|
|
@@ -135928,6 +136674,18 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
135928
136674
|
errors?: Maybe<Array<MutationError>>;
|
|
135929
136675
|
success: Scalars['Boolean']['output'];
|
|
135930
136676
|
};
|
|
136677
|
+
export declare type SpfUpsertPlanPayload = Payload & {
|
|
136678
|
+
__typename?: 'SpfUpsertPlanPayload';
|
|
136679
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136680
|
+
plan?: Maybe<SpfPlan>;
|
|
136681
|
+
success: Scalars['Boolean']['output'];
|
|
136682
|
+
};
|
|
136683
|
+
export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
136684
|
+
__typename?: 'SpfUpsertPlanScenarioPayload';
|
|
136685
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136686
|
+
planScenario?: Maybe<SpfPlanScenario>;
|
|
136687
|
+
success: Scalars['Boolean']['output'];
|
|
136688
|
+
};
|
|
135931
136689
|
export declare type SplitIssueInput = {
|
|
135932
136690
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
135933
136691
|
originalIssue: OriginalSplitIssue;
|
|
@@ -137362,8 +138120,10 @@ export declare type Subscription = {
|
|
|
137362
138120
|
jira?: Maybe<JiraSubscription>;
|
|
137363
138121
|
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
137364
138122
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
138123
|
+
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
137365
138124
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
137366
138125
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
138126
|
+
jsmConversation_dummy?: Maybe<Scalars['String']['output']>;
|
|
137367
138127
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
137368
138128
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
137369
138129
|
migration: MigrationSubscription;
|
|
@@ -137423,6 +138183,10 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
|
|
|
137423
138183
|
cloudId: Scalars['ID']['input'];
|
|
137424
138184
|
message: Scalars['String']['input'];
|
|
137425
138185
|
};
|
|
138186
|
+
export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
138187
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
138188
|
+
planID: Scalars['ID']['input'];
|
|
138189
|
+
};
|
|
137426
138190
|
export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
|
|
137427
138191
|
jiraProjectAri: Scalars['ID']['input'];
|
|
137428
138192
|
workItemId: Scalars['ID']['input'];
|
|
@@ -139195,6 +139959,21 @@ export declare type TownsquareCustomFieldNumberSavedValueNode = Node & Townsquar
|
|
|
139195
139959
|
export declare type TownsquareCustomFieldSavedValueNode = {
|
|
139196
139960
|
id: Scalars['ID']['output'];
|
|
139197
139961
|
};
|
|
139962
|
+
export declare type TownsquareCustomFieldTextAllowedValueConnection = {
|
|
139963
|
+
__typename?: 'TownsquareCustomFieldTextAllowedValueConnection';
|
|
139964
|
+
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextAllowedValueEdge>>>;
|
|
139965
|
+
pageInfo: PageInfo;
|
|
139966
|
+
};
|
|
139967
|
+
export declare type TownsquareCustomFieldTextAllowedValueEdge = {
|
|
139968
|
+
__typename?: 'TownsquareCustomFieldTextAllowedValueEdge';
|
|
139969
|
+
cursor: Scalars['String']['output'];
|
|
139970
|
+
node?: Maybe<TownsquareCustomFieldTextAllowedValueNode>;
|
|
139971
|
+
};
|
|
139972
|
+
export declare type TownsquareCustomFieldTextAllowedValueNode = Node & {
|
|
139973
|
+
__typename?: 'TownsquareCustomFieldTextAllowedValueNode';
|
|
139974
|
+
id: Scalars['ID']['output'];
|
|
139975
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
139976
|
+
};
|
|
139198
139977
|
export declare type TownsquareCustomFieldTextSavedValueConnection = {
|
|
139199
139978
|
__typename?: 'TownsquareCustomFieldTextSavedValueConnection';
|
|
139200
139979
|
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextSavedValueEdge>>>;
|
|
@@ -140498,6 +141277,7 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
140498
141277
|
};
|
|
140499
141278
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
140500
141279
|
__typename?: 'TownsquareProject';
|
|
141280
|
+
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
140501
141281
|
archived: Scalars['Boolean']['output'];
|
|
140502
141282
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
140503
141283
|
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
@@ -140557,6 +141337,10 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
140557
141337
|
watching?: Maybe<Scalars['Boolean']['output']>;
|
|
140558
141338
|
workspace?: Maybe<TownsquareWorkspace>;
|
|
140559
141339
|
};
|
|
141340
|
+
export declare type TownsquareProjectAccessArgs = {
|
|
141341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
141342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141343
|
+
};
|
|
140560
141344
|
export declare type TownsquareProjectChangelogArgs = {
|
|
140561
141345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140562
141346
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140645,6 +141429,25 @@ export declare type TownsquareProjectWatchersArgs = {
|
|
|
140645
141429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
140646
141430
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140647
141431
|
};
|
|
141432
|
+
export declare type TownsquareProjectAccessConnection = {
|
|
141433
|
+
__typename?: 'TownsquareProjectAccessConnection';
|
|
141434
|
+
count: Scalars['Int']['output'];
|
|
141435
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
141436
|
+
pageInfo: PageInfo;
|
|
141437
|
+
};
|
|
141438
|
+
export declare type TownsquareProjectAccessEdge = {
|
|
141439
|
+
__typename?: 'TownsquareProjectAccessEdge';
|
|
141440
|
+
cursor: Scalars['String']['output'];
|
|
141441
|
+
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
141442
|
+
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
141443
|
+
node?: Maybe<TownsquareAccessPrincipal>;
|
|
141444
|
+
principalAri?: Maybe<Scalars['String']['output']>;
|
|
141445
|
+
role?: Maybe<TownsquareProjectAccessRole>;
|
|
141446
|
+
};
|
|
141447
|
+
export declare enum TownsquareProjectAccessRole {
|
|
141448
|
+
Editor = "EDITOR",
|
|
141449
|
+
Viewer = "VIEWER"
|
|
141450
|
+
}
|
|
140648
141451
|
export declare type TownsquareProjectChangelogItem = {
|
|
140649
141452
|
__typename?: 'TownsquareProjectChangelogItem';
|
|
140650
141453
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -141067,6 +141870,17 @@ export declare type TownsquareProjectsEditDecisionPayload = {
|
|
|
141067
141870
|
errors?: Maybe<Array<MutationError>>;
|
|
141068
141871
|
success: Scalars['Boolean']['output'];
|
|
141069
141872
|
};
|
|
141873
|
+
export declare type TownsquareProjectsEditDropdownCustomFieldInput = {
|
|
141874
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141875
|
+
projectId: Scalars['ID']['input'];
|
|
141876
|
+
valueId: Scalars['ID']['input'];
|
|
141877
|
+
};
|
|
141878
|
+
export declare type TownsquareProjectsEditDropdownCustomFieldPayload = {
|
|
141879
|
+
__typename?: 'TownsquareProjectsEditDropdownCustomFieldPayload';
|
|
141880
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141881
|
+
success: Scalars['Boolean']['output'];
|
|
141882
|
+
valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
141883
|
+
};
|
|
141070
141884
|
export declare type TownsquareProjectsEditInput = {
|
|
141071
141885
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141072
141886
|
description?: InputMaybe<TownsquareProjectDescriptionInput>;
|
|
@@ -141105,6 +141919,17 @@ export declare type TownsquareProjectsEditMutationErrorExtension = MutationError
|
|
|
141105
141919
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
141106
141920
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
141107
141921
|
};
|
|
141922
|
+
export declare type TownsquareProjectsEditNumberCustomFieldInput = {
|
|
141923
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141924
|
+
projectId: Scalars['ID']['input'];
|
|
141925
|
+
value: Scalars['Float']['input'];
|
|
141926
|
+
};
|
|
141927
|
+
export declare type TownsquareProjectsEditNumberCustomFieldPayload = {
|
|
141928
|
+
__typename?: 'TownsquareProjectsEditNumberCustomFieldPayload';
|
|
141929
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141930
|
+
success: Scalars['Boolean']['output'];
|
|
141931
|
+
valueNode?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
141932
|
+
};
|
|
141108
141933
|
export declare type TownsquareProjectsEditPayload = {
|
|
141109
141934
|
__typename?: 'TownsquareProjectsEditPayload';
|
|
141110
141935
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -141122,6 +141947,17 @@ export declare type TownsquareProjectsEditRiskPayload = {
|
|
|
141122
141947
|
risk?: Maybe<TownsquareRisk>;
|
|
141123
141948
|
success: Scalars['Boolean']['output'];
|
|
141124
141949
|
};
|
|
141950
|
+
export declare type TownsquareProjectsEditTextCustomFieldInput = {
|
|
141951
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141952
|
+
projectId: Scalars['ID']['input'];
|
|
141953
|
+
value: Scalars['String']['input'];
|
|
141954
|
+
};
|
|
141955
|
+
export declare type TownsquareProjectsEditTextCustomFieldPayload = {
|
|
141956
|
+
__typename?: 'TownsquareProjectsEditTextCustomFieldPayload';
|
|
141957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141958
|
+
success: Scalars['Boolean']['output'];
|
|
141959
|
+
valueNode?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
141960
|
+
};
|
|
141125
141961
|
export declare type TownsquareProjectsEditUpdateInput = {
|
|
141126
141962
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
141127
141963
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -141136,6 +141972,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
141136
141972
|
success: Scalars['Boolean']['output'];
|
|
141137
141973
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
141138
141974
|
};
|
|
141975
|
+
export declare type TownsquareProjectsEditUserCustomFieldInput = {
|
|
141976
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
141977
|
+
projectId: Scalars['ID']['input'];
|
|
141978
|
+
userId: Scalars['ID']['input'];
|
|
141979
|
+
};
|
|
141980
|
+
export declare type TownsquareProjectsEditUserCustomFieldPayload = {
|
|
141981
|
+
__typename?: 'TownsquareProjectsEditUserCustomFieldPayload';
|
|
141982
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141983
|
+
success: Scalars['Boolean']['output'];
|
|
141984
|
+
user?: Maybe<User>;
|
|
141985
|
+
};
|
|
141139
141986
|
export declare type TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension = MutationErrorExtension & {
|
|
141140
141987
|
__typename?: 'TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension';
|
|
141141
141988
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -141592,6 +142439,7 @@ export declare type TownsquareTextSelectCustomFieldValuesArgs = {
|
|
|
141592
142439
|
};
|
|
141593
142440
|
export declare type TownsquareTextSelectCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
141594
142441
|
__typename?: 'TownsquareTextSelectCustomFieldDefinition';
|
|
142442
|
+
allowedValues?: Maybe<TownsquareCustomFieldTextAllowedValueConnection>;
|
|
141595
142443
|
canSetMultipleValues?: Maybe<Scalars['Boolean']['output']>;
|
|
141596
142444
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
141597
142445
|
creator?: Maybe<User>;
|
|
@@ -141603,6 +142451,10 @@ export declare type TownsquareTextSelectCustomFieldDefinition = Node & Townsquar
|
|
|
141603
142451
|
token?: Maybe<Scalars['String']['output']>;
|
|
141604
142452
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
141605
142453
|
};
|
|
142454
|
+
export declare type TownsquareTextSelectCustomFieldDefinitionAllowedValuesArgs = {
|
|
142455
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142456
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142457
|
+
};
|
|
141606
142458
|
export declare type TownsquareThemeUrIs = {
|
|
141607
142459
|
__typename?: 'TownsquareThemeURIs';
|
|
141608
142460
|
dark?: Maybe<Scalars['String']['output']>;
|
|
@@ -142058,6 +142910,7 @@ export declare type TrelloApplication = {
|
|
|
142058
142910
|
id: Scalars['ID']['output'];
|
|
142059
142911
|
iframeConnectorUrl?: Maybe<Scalars['URL']['output']>;
|
|
142060
142912
|
key?: Maybe<Scalars['String']['output']>;
|
|
142913
|
+
legacyName?: Maybe<Scalars['String']['output']>;
|
|
142061
142914
|
listings?: Maybe<Array<TrelloApplicationListing>>;
|
|
142062
142915
|
moderatedState?: Maybe<Scalars['String']['output']>;
|
|
142063
142916
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -142201,6 +143054,7 @@ export declare type TrelloBaseBoard = {
|
|
|
142201
143054
|
limits?: Maybe<TrelloBoardLimits>;
|
|
142202
143055
|
lists?: Maybe<TrelloListConnection>;
|
|
142203
143056
|
objectId: Scalars['ID']['output'];
|
|
143057
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
142204
143058
|
workspace?: Maybe<TrelloWorkspace>;
|
|
142205
143059
|
};
|
|
142206
143060
|
export declare type TrelloBaseBoardLabelsArgs = {
|
|
@@ -142212,6 +143066,10 @@ export declare type TrelloBaseBoardListsArgs = {
|
|
|
142212
143066
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
142213
143067
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142214
143068
|
};
|
|
143069
|
+
export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
143070
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143071
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143072
|
+
};
|
|
142215
143073
|
export declare type TrelloBaseBoardPrefs = {
|
|
142216
143074
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
142217
143075
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -142223,6 +143081,8 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
142223
143081
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
142224
143082
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
142225
143083
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
143084
|
+
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
143085
|
+
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
142226
143086
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
142227
143087
|
};
|
|
142228
143088
|
export declare type TrelloBaseCard = {
|
|
@@ -142246,6 +143106,7 @@ export declare type TrelloBaseCard = {
|
|
|
142246
143106
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
142247
143107
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
142248
143108
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
143109
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
142249
143110
|
position?: Maybe<Scalars['Float']['output']>;
|
|
142250
143111
|
role?: Maybe<TrelloCardRole>;
|
|
142251
143112
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -142272,6 +143133,11 @@ export declare type TrelloBaseCardLabelsArgs = {
|
|
|
142272
143133
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142273
143134
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142274
143135
|
};
|
|
143136
|
+
export declare type TrelloBaseCardPlannerEventsArgs = {
|
|
143137
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143138
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
143139
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143140
|
+
};
|
|
142275
143141
|
export declare type TrelloBaseCardUpdated = {
|
|
142276
143142
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
142277
143143
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -142293,6 +143159,7 @@ export declare type TrelloBaseCardUpdated = {
|
|
|
142293
143159
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
142294
143160
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
142295
143161
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
143162
|
+
plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
|
|
142296
143163
|
position?: Maybe<Scalars['Float']['output']>;
|
|
142297
143164
|
role?: Maybe<TrelloCardRole>;
|
|
142298
143165
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -143030,6 +143897,14 @@ export declare type TrelloCardPlannerEvent = {
|
|
|
143030
143897
|
id: Scalars['ID']['output'];
|
|
143031
143898
|
objectId: Scalars['ID']['output'];
|
|
143032
143899
|
};
|
|
143900
|
+
export declare type TrelloCardPlannerEventConnectionUpdated = {
|
|
143901
|
+
__typename?: 'TrelloCardPlannerEventConnectionUpdated';
|
|
143902
|
+
edges?: Maybe<Array<TrelloCardPlannerEventEdgeUpdated>>;
|
|
143903
|
+
};
|
|
143904
|
+
export declare type TrelloCardPlannerEventEdgeUpdated = {
|
|
143905
|
+
__typename?: 'TrelloCardPlannerEventEdgeUpdated';
|
|
143906
|
+
node: TrelloCardPlannerEvent;
|
|
143907
|
+
};
|
|
143033
143908
|
export declare enum TrelloCardRole {
|
|
143034
143909
|
Board = "BOARD",
|
|
143035
143910
|
Link = "LINK",
|
|
@@ -143069,6 +143944,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
|
143069
143944
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
143070
143945
|
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
143071
143946
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
143947
|
+
plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
|
|
143072
143948
|
position?: Maybe<Scalars['Float']['output']>;
|
|
143073
143949
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
143074
143950
|
role?: Maybe<TrelloCardRole>;
|
|
@@ -143721,6 +144597,7 @@ export declare type TrelloInbox = TrelloBaseBoard & {
|
|
|
143721
144597
|
limits?: Maybe<TrelloBoardLimits>;
|
|
143722
144598
|
lists?: Maybe<TrelloListConnection>;
|
|
143723
144599
|
objectId: Scalars['ID']['output'];
|
|
144600
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
143724
144601
|
prefs: TrelloInboxPrefs;
|
|
143725
144602
|
workspace?: Maybe<TrelloWorkspace>;
|
|
143726
144603
|
};
|
|
@@ -143733,6 +144610,10 @@ export declare type TrelloInboxListsArgs = {
|
|
|
143733
144610
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
143734
144611
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143735
144612
|
};
|
|
144613
|
+
export declare type TrelloInboxPlannerEventCardsArgs = {
|
|
144614
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144615
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144616
|
+
};
|
|
143736
144617
|
export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
143737
144618
|
__typename?: 'TrelloInboxCard';
|
|
143738
144619
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
@@ -143755,6 +144636,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
143755
144636
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
143756
144637
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
143757
144638
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
144639
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
143758
144640
|
position?: Maybe<Scalars['Float']['output']>;
|
|
143759
144641
|
role?: Maybe<TrelloCardRole>;
|
|
143760
144642
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -143781,6 +144663,11 @@ export declare type TrelloInboxCardLabelsArgs = {
|
|
|
143781
144663
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143782
144664
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143783
144665
|
};
|
|
144666
|
+
export declare type TrelloInboxCardPlannerEventsArgs = {
|
|
144667
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144668
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
144669
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144670
|
+
};
|
|
143784
144671
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
143785
144672
|
__typename?: 'TrelloInboxCardUpdated';
|
|
143786
144673
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -143803,6 +144690,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
143803
144690
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
143804
144691
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
143805
144692
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
144693
|
+
plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
|
|
143806
144694
|
position?: Maybe<Scalars['Float']['output']>;
|
|
143807
144695
|
role?: Maybe<TrelloCardRole>;
|
|
143808
144696
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -143837,6 +144725,8 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
143837
144725
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
143838
144726
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
143839
144727
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
144728
|
+
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
144729
|
+
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
143840
144730
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
143841
144731
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
143842
144732
|
};
|
|
@@ -144106,6 +144996,10 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
144106
144996
|
initials?: Maybe<Scalars['String']['output']>;
|
|
144107
144997
|
};
|
|
144108
144998
|
export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
|
|
144999
|
+
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
145000
|
+
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
145001
|
+
boardOrInboxUpdated?: Maybe<TrelloBaseBoardUpdated>;
|
|
145002
|
+
};
|
|
144109
145003
|
export declare type TrelloMemberPrefs = {
|
|
144110
145004
|
__typename?: 'TrelloMemberPrefs';
|
|
144111
145005
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -144943,7 +145837,7 @@ export declare type TrelloPlannerEventCardDeleted = {
|
|
|
144943
145837
|
export declare type TrelloPlannerEventCardEdge = {
|
|
144944
145838
|
__typename?: 'TrelloPlannerEventCardEdge';
|
|
144945
145839
|
cursor: Scalars['String']['output'];
|
|
144946
|
-
node:
|
|
145840
|
+
node: TrelloBaseCard;
|
|
144947
145841
|
};
|
|
144948
145842
|
export declare type TrelloPlannerEventConnection = {
|
|
144949
145843
|
__typename?: 'TrelloPlannerEventConnection';
|
|
@@ -145566,7 +146460,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
145566
146460
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
145567
146461
|
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
145568
146462
|
onInboxUpdated?: Maybe<TrelloInboxUpdated>;
|
|
145569
|
-
|
|
146463
|
+
onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
|
|
145570
146464
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
145571
146465
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
145572
146466
|
};
|
|
@@ -148152,6 +149046,9 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
148152
149046
|
success: Scalars['Boolean']['output'];
|
|
148153
149047
|
};
|
|
148154
149048
|
export declare type UpdatePolarisViewInput = {
|
|
149049
|
+
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149050
|
+
colorBy?: InputMaybe<Scalars['ID']['input']>;
|
|
149051
|
+
colorStyle?: InputMaybe<PolarisColorStyle>;
|
|
148155
149052
|
columnSize?: InputMaybe<PolarisColumnSize>;
|
|
148156
149053
|
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
148157
149054
|
connectionsLayoutType?: InputMaybe<PolarisConnectionsLayout>;
|