@forge/cli-shared 8.0.0-next.8 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +91 -0
- package/out/app-logs/graphql-client.d.ts +1 -1
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +33 -18
- package/out/app-logs/view-logs.d.ts +4 -2
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -3
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +3 -1
- package/out/file-system/file-system-reader.d.ts +1 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +916 -82
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +109 -26
- package/out/service/bridge-script-service.d.ts +1 -0
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/i18n-resource-bundling-service.d.ts +1 -0
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.d.ts +1 -0
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +2 -3
- package/out/ui/command-line-ui.d.ts +0 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +0 -5
- package/out/ui/logger.d.ts +0 -1
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +0 -2
- package/out/ui/text.d.ts +0 -14
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -20
- package/package.json +2 -2
|
@@ -725,6 +725,36 @@ export declare type AddPublicLinkPermissionsPayload = Payload & {
|
|
|
725
725
|
success: Scalars['Boolean']['output'];
|
|
726
726
|
};
|
|
727
727
|
export declare type Admin = JiraUser | JiraUserGroup;
|
|
728
|
+
export declare type AdminAccessUrl = {
|
|
729
|
+
__typename?: 'AdminAccessUrl';
|
|
730
|
+
expirationDate?: Maybe<Scalars['String']['output']>;
|
|
731
|
+
id: Scalars['ID']['output'];
|
|
732
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
733
|
+
resources?: Maybe<Array<AdminResource>>;
|
|
734
|
+
status: Scalars['String']['output'];
|
|
735
|
+
url: Scalars['String']['output'];
|
|
736
|
+
};
|
|
737
|
+
export declare type AdminAccessUrlConnection = {
|
|
738
|
+
__typename?: 'AdminAccessUrlConnection';
|
|
739
|
+
edges?: Maybe<Array<AdminAccessUrlEdge>>;
|
|
740
|
+
pageInfo: PageInfo;
|
|
741
|
+
};
|
|
742
|
+
export declare type AdminAccessUrlCreationResponsePayload = Payload & {
|
|
743
|
+
__typename?: 'AdminAccessUrlCreationResponsePayload';
|
|
744
|
+
accessUrl?: Maybe<AdminAccessUrl>;
|
|
745
|
+
errors?: Maybe<Array<MutationError>>;
|
|
746
|
+
success: Scalars['Boolean']['output'];
|
|
747
|
+
};
|
|
748
|
+
export declare type AdminAccessUrlDeletionResponsePayload = Payload & {
|
|
749
|
+
__typename?: 'AdminAccessUrlDeletionResponsePayload';
|
|
750
|
+
errors?: Maybe<Array<MutationError>>;
|
|
751
|
+
success: Scalars['Boolean']['output'];
|
|
752
|
+
};
|
|
753
|
+
export declare type AdminAccessUrlEdge = {
|
|
754
|
+
__typename?: 'AdminAccessUrlEdge';
|
|
755
|
+
cursor: Scalars['String']['output'];
|
|
756
|
+
node: AdminAccessUrl;
|
|
757
|
+
};
|
|
728
758
|
export declare type AdminAnnouncementBannerFeature = {
|
|
729
759
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
730
760
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -746,6 +776,12 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
746
776
|
ScheduledStartDate = "SCHEDULED_START_DATE",
|
|
747
777
|
Visibility = "VISIBILITY"
|
|
748
778
|
}
|
|
779
|
+
export declare type AdminPolicy = AdminAccessUrl;
|
|
780
|
+
export declare type AdminResource = AdminSite;
|
|
781
|
+
export declare type AdminSite = {
|
|
782
|
+
__typename?: 'AdminSite';
|
|
783
|
+
id: Scalars['ID']['output'];
|
|
784
|
+
};
|
|
749
785
|
export declare type AgentAiContextPanelResponse = {
|
|
750
786
|
__typename?: 'AgentAIContextPanelResponse';
|
|
751
787
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
@@ -836,7 +872,9 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
836
872
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
837
873
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
838
874
|
creator?: Maybe<User>;
|
|
875
|
+
creatorType?: Maybe<Scalars['String']['output']>;
|
|
839
876
|
description?: Maybe<Scalars['String']['output']>;
|
|
877
|
+
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
840
878
|
id: Scalars['ID']['output'];
|
|
841
879
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
842
880
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2052,6 +2090,14 @@ export declare type AppStorageAdmin = {
|
|
|
2052
2090
|
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2053
2091
|
input: AppStorageKvsQueryInput;
|
|
2054
2092
|
};
|
|
2093
|
+
export declare type AppStorageAdminMutation = {
|
|
2094
|
+
__typename?: 'AppStorageAdminMutation';
|
|
2095
|
+
appId: Scalars['ID']['output'];
|
|
2096
|
+
kvsSet?: Maybe<AppStorageKvsSetPayload>;
|
|
2097
|
+
};
|
|
2098
|
+
export declare type AppStorageAdminMutationKvsSetArgs = {
|
|
2099
|
+
input: AppStorageKvsSetInput;
|
|
2100
|
+
};
|
|
2055
2101
|
export declare type AppStorageCustomEntityMutation = {
|
|
2056
2102
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2057
2103
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2083,6 +2129,19 @@ export declare type AppStorageKvsQueryPayload = {
|
|
|
2083
2129
|
pageInfo: AppStoragePageInfo;
|
|
2084
2130
|
totalCount: Scalars['Int']['output'];
|
|
2085
2131
|
};
|
|
2132
|
+
export declare type AppStorageKvsSetInput = {
|
|
2133
|
+
contextAri: Scalars['ID']['input'];
|
|
2134
|
+
environmentId: Scalars['ID']['input'];
|
|
2135
|
+
installationId: Scalars['ID']['input'];
|
|
2136
|
+
key: Scalars['String']['input'];
|
|
2137
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2138
|
+
value: Scalars['AppStorageEntityValue']['input'];
|
|
2139
|
+
};
|
|
2140
|
+
export declare type AppStorageKvsSetPayload = {
|
|
2141
|
+
__typename?: 'AppStorageKvsSetPayload';
|
|
2142
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2143
|
+
success: Scalars['Boolean']['output'];
|
|
2144
|
+
};
|
|
2086
2145
|
export declare type AppStorageMutation = {
|
|
2087
2146
|
__typename?: 'AppStorageMutation';
|
|
2088
2147
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -3697,6 +3756,15 @@ export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienc
|
|
|
3697
3756
|
export declare enum CcpCancelEntitlementExperienceCapabilityReasonCode {
|
|
3698
3757
|
EntitlementIsCollectionInstance = "ENTITLEMENT_IS_COLLECTION_INSTANCE"
|
|
3699
3758
|
}
|
|
3759
|
+
export declare type CcpCatalogAccount = Node & {
|
|
3760
|
+
__typename?: 'CcpCatalogAccount';
|
|
3761
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
3762
|
+
id: Scalars['ID']['output'];
|
|
3763
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
3764
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3765
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
3766
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
3767
|
+
};
|
|
3700
3768
|
export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability & {
|
|
3701
3769
|
__typename?: 'CcpChangeOfferingExperienceCapability';
|
|
3702
3770
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -4010,14 +4078,29 @@ export declare enum CcpEntitlementStatus {
|
|
|
4010
4078
|
Active = "ACTIVE",
|
|
4011
4079
|
Inactive = "INACTIVE"
|
|
4012
4080
|
}
|
|
4013
|
-
export declare type CcpEntitlementTemplate = {
|
|
4081
|
+
export declare type CcpEntitlementTemplate = Node & {
|
|
4014
4082
|
__typename?: 'CcpEntitlementTemplate';
|
|
4083
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4084
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4015
4085
|
data?: Maybe<Scalars['String']['output']>;
|
|
4086
|
+
defaultRevision?: Maybe<Scalars['Boolean']['output']>;
|
|
4087
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4088
|
+
id: Scalars['ID']['output'];
|
|
4016
4089
|
key?: Maybe<Scalars['ID']['output']>;
|
|
4090
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
4017
4091
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
4092
|
+
status?: Maybe<CcpEntitlementTemplateStatus>;
|
|
4093
|
+
uniqueKey?: Maybe<Scalars['ID']['output']>;
|
|
4094
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4018
4095
|
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
4019
4096
|
version?: Maybe<Scalars['Int']['output']>;
|
|
4020
4097
|
};
|
|
4098
|
+
export declare enum CcpEntitlementTemplateStatus {
|
|
4099
|
+
Deprecated = "DEPRECATED",
|
|
4100
|
+
None = "NONE",
|
|
4101
|
+
Published = "PUBLISHED",
|
|
4102
|
+
Unpublished = "UNPUBLISHED"
|
|
4103
|
+
}
|
|
4021
4104
|
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
4022
4105
|
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
4023
4106
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -4782,8 +4865,11 @@ export declare type CcpPurchaseOrder = {
|
|
|
4782
4865
|
};
|
|
4783
4866
|
export declare type CcpQueryApi = {
|
|
4784
4867
|
__typename?: 'CcpQueryApi';
|
|
4868
|
+
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
4785
4869
|
entitlement?: Maybe<CcpEntitlement>;
|
|
4870
|
+
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
4786
4871
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4872
|
+
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4787
4873
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4788
4874
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
4789
4875
|
offering?: Maybe<CcpOffering>;
|
|
@@ -4799,12 +4885,21 @@ export declare type CcpQueryApi = {
|
|
|
4799
4885
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4800
4886
|
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4801
4887
|
};
|
|
4888
|
+
export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
4889
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4890
|
+
};
|
|
4802
4891
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4803
4892
|
id: Scalars['ID']['input'];
|
|
4804
4893
|
};
|
|
4894
|
+
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
4895
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4896
|
+
};
|
|
4805
4897
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
4806
4898
|
ids: Array<Scalars['ID']['input']>;
|
|
4807
4899
|
};
|
|
4900
|
+
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
4901
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4902
|
+
};
|
|
4808
4903
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
4809
4904
|
ids: Array<Scalars['ID']['input']>;
|
|
4810
4905
|
};
|
|
@@ -5416,6 +5511,16 @@ export declare enum ChannelPlatformMutationStatus {
|
|
|
5416
5511
|
Failure = "FAILURE",
|
|
5417
5512
|
Success = "SUCCESS"
|
|
5418
5513
|
}
|
|
5514
|
+
export declare type ChannelPlatformPluginActionRequest = {
|
|
5515
|
+
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
5516
|
+
appId?: InputMaybe<Scalars['String']['input']>;
|
|
5517
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
5518
|
+
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5519
|
+
};
|
|
5520
|
+
export declare type ChannelPlatformPluginActionResponse = {
|
|
5521
|
+
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
5522
|
+
response?: Maybe<Scalars['JSON']['output']>;
|
|
5523
|
+
};
|
|
5419
5524
|
export declare type ChannelPlatformSampleQueue = {
|
|
5420
5525
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
5421
5526
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -5428,6 +5533,7 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5428
5533
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5429
5534
|
};
|
|
5430
5535
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5536
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5431
5537
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5432
5538
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5433
5539
|
};
|
|
@@ -7948,6 +8054,7 @@ export declare type CompassCustomNumberFieldFilter = CompassCustomFieldFilter &
|
|
|
7948
8054
|
export declare type CompassCustomNumberFieldFilterInput = {
|
|
7949
8055
|
comparator?: InputMaybe<CustomNumberFieldInputComparators>;
|
|
7950
8056
|
customFieldId: Scalars['String']['input'];
|
|
8057
|
+
values?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
7951
8058
|
};
|
|
7952
8059
|
export declare type CompassCustomNumberFieldInput = {
|
|
7953
8060
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -8033,6 +8140,7 @@ export declare type CompassCustomTextFieldFilter = CompassCustomFieldFilter & {
|
|
|
8033
8140
|
export declare type CompassCustomTextFieldFilterInput = {
|
|
8034
8141
|
comparator?: InputMaybe<CustomTextFieldInputComparators>;
|
|
8035
8142
|
customFieldId: Scalars['String']['input'];
|
|
8143
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8036
8144
|
};
|
|
8037
8145
|
export declare type CompassCustomTextFieldInput = {
|
|
8038
8146
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -9550,6 +9658,7 @@ export declare type CompassScorecard = Node & {
|
|
|
9550
9658
|
name: Scalars['String']['output'];
|
|
9551
9659
|
owner?: Maybe<User>;
|
|
9552
9660
|
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
9661
|
+
scorecardMaturityLevelStatisticsHistories?: Maybe<CompassScorecardMaturityLevelStatisticsHistoryConnection>;
|
|
9553
9662
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
9554
9663
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
9555
9664
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -9579,6 +9688,11 @@ export declare type CompassScorecardDeactivatedComponentsArgs = {
|
|
|
9579
9688
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9580
9689
|
query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
|
|
9581
9690
|
};
|
|
9691
|
+
export declare type CompassScorecardScorecardMaturityLevelStatisticsHistoriesArgs = {
|
|
9692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9693
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9694
|
+
query?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQuery>;
|
|
9695
|
+
};
|
|
9582
9696
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
9583
9697
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
9584
9698
|
};
|
|
@@ -9593,6 +9707,9 @@ export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
|
9593
9707
|
export declare type CompassScorecardApplicationModel = {
|
|
9594
9708
|
applicationType: Scalars['String']['output'];
|
|
9595
9709
|
};
|
|
9710
|
+
export declare type CompassScorecardAppliedToComponentsComponentStateFilter = {
|
|
9711
|
+
in: Array<Scalars['String']['input']>;
|
|
9712
|
+
};
|
|
9596
9713
|
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
9597
9714
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
9598
9715
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -9636,6 +9753,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
9636
9753
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
9637
9754
|
};
|
|
9638
9755
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
9756
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
9639
9757
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9640
9758
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
9641
9759
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
@@ -10058,6 +10176,36 @@ export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
|
10058
10176
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
10059
10177
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
10060
10178
|
};
|
|
10179
|
+
export declare type CompassScorecardMaturityLevelStatistic = {
|
|
10180
|
+
__typename?: 'CompassScorecardMaturityLevelStatistic';
|
|
10181
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10182
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10183
|
+
};
|
|
10184
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistory = {
|
|
10185
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistory';
|
|
10186
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10187
|
+
statistics?: Maybe<Array<CompassScorecardMaturityLevelStatistic>>;
|
|
10188
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10189
|
+
};
|
|
10190
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryConnection = {
|
|
10191
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryConnection';
|
|
10192
|
+
edges?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistoryEdge>>;
|
|
10193
|
+
nodes?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistory>>;
|
|
10194
|
+
pageInfo: PageInfo;
|
|
10195
|
+
};
|
|
10196
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryEdge = {
|
|
10197
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryEdge';
|
|
10198
|
+
cursor: Scalars['String']['output'];
|
|
10199
|
+
node?: Maybe<CompassScorecardMaturityLevelStatisticsHistory>;
|
|
10200
|
+
};
|
|
10201
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
10202
|
+
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
10203
|
+
};
|
|
10204
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
10205
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
10206
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
10207
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
10208
|
+
};
|
|
10061
10209
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
10062
10210
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
10063
10211
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10951,6 +11099,10 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
10951
11099
|
success: Scalars['Boolean']['output'];
|
|
10952
11100
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
10953
11101
|
};
|
|
11102
|
+
export declare enum ComplianceBoundary {
|
|
11103
|
+
Commercial = "COMMERCIAL",
|
|
11104
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11105
|
+
}
|
|
10954
11106
|
export declare type ComponentApiUpload = {
|
|
10955
11107
|
__typename?: 'ComponentApiUpload';
|
|
10956
11108
|
specUrl: Scalars['String']['output'];
|
|
@@ -10979,21 +11131,6 @@ export declare enum ComponentSyncEventStatus {
|
|
|
10979
11131
|
Success = "SUCCESS",
|
|
10980
11132
|
UserError = "USER_ERROR"
|
|
10981
11133
|
}
|
|
10982
|
-
export declare type ConfigurePolarisRefreshInput = {
|
|
10983
|
-
autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
10984
|
-
clearError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10985
|
-
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10986
|
-
project: Scalars['ID']['input'];
|
|
10987
|
-
setError?: InputMaybe<PolarisRefreshError>;
|
|
10988
|
-
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
10989
|
-
timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
10990
|
-
};
|
|
10991
|
-
export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
10992
|
-
__typename?: 'ConfigurePolarisRefreshPayload';
|
|
10993
|
-
errors?: Maybe<Array<MutationError>>;
|
|
10994
|
-
node?: Maybe<Scalars['Int']['output']>;
|
|
10995
|
-
success: Scalars['Boolean']['output'];
|
|
10996
|
-
};
|
|
10997
11134
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
10998
11135
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
10999
11136
|
appearance: Scalars['String']['output'];
|
|
@@ -21492,6 +21629,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
21492
21629
|
export declare type CreateJiraPlaybookInput = {
|
|
21493
21630
|
cloudId: Scalars['ID']['input'];
|
|
21494
21631
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
21632
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
21495
21633
|
name: Scalars['String']['input'];
|
|
21496
21634
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
21497
21635
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -21737,6 +21875,7 @@ export declare type CsmAiAction = {
|
|
|
21737
21875
|
description?: Maybe<Scalars['String']['output']>;
|
|
21738
21876
|
id: Scalars['ID']['output'];
|
|
21739
21877
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
21878
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21740
21879
|
name?: Maybe<Scalars['String']['output']>;
|
|
21741
21880
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
21742
21881
|
};
|
|
@@ -21829,6 +21968,7 @@ export declare type CsmAiCreateActionInput = {
|
|
|
21829
21968
|
authentication: CsmAiAuthenticationInput;
|
|
21830
21969
|
description: Scalars['String']['input'];
|
|
21831
21970
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
21971
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
21832
21972
|
name: Scalars['String']['input'];
|
|
21833
21973
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
21834
21974
|
};
|
|
@@ -21872,6 +22012,10 @@ export declare type CsmAiHub = {
|
|
|
21872
22012
|
agent?: Maybe<CsmAiAgentResult>;
|
|
21873
22013
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
21874
22014
|
id: Scalars['ID']['output'];
|
|
22015
|
+
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22016
|
+
};
|
|
22017
|
+
export declare type CsmAiHubActionsArgs = {
|
|
22018
|
+
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21875
22019
|
};
|
|
21876
22020
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
21877
22021
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -21903,6 +22047,7 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
21903
22047
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
21904
22048
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21905
22049
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22050
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21906
22051
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21907
22052
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
21908
22053
|
};
|
|
@@ -21944,6 +22089,78 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
21944
22089
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
21945
22090
|
success: Scalars['Boolean']['output'];
|
|
21946
22091
|
};
|
|
22092
|
+
export declare type CsmAiUpdateWidgetPayload = Payload & {
|
|
22093
|
+
__typename?: 'CsmAiUpdateWidgetPayload';
|
|
22094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22095
|
+
success: Scalars['Boolean']['output'];
|
|
22096
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
22097
|
+
};
|
|
22098
|
+
export declare type CsmAiWidgetBrandingAttribution = {
|
|
22099
|
+
__typename?: 'CsmAiWidgetBrandingAttribution';
|
|
22100
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22101
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22102
|
+
};
|
|
22103
|
+
export declare type CsmAiWidgetBrandingAttributionInput = {
|
|
22104
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
22105
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
22106
|
+
};
|
|
22107
|
+
export declare enum CsmAiWidgetBrandingChatColorVibeVariant {
|
|
22108
|
+
Dark = "DARK",
|
|
22109
|
+
Default = "DEFAULT",
|
|
22110
|
+
Light = "LIGHT",
|
|
22111
|
+
Vibrant = "VIBRANT"
|
|
22112
|
+
}
|
|
22113
|
+
export declare enum CsmAiWidgetBrandingColorVibeVariant {
|
|
22114
|
+
Dark = "DARK",
|
|
22115
|
+
Light = "LIGHT",
|
|
22116
|
+
Vibrant = "VIBRANT"
|
|
22117
|
+
}
|
|
22118
|
+
export declare enum CsmAiWidgetBrandingRadius {
|
|
22119
|
+
Normal = "NORMAL",
|
|
22120
|
+
Rounded = "ROUNDED",
|
|
22121
|
+
Sharp = "SHARP"
|
|
22122
|
+
}
|
|
22123
|
+
export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
22124
|
+
Comfortable = "COMFORTABLE",
|
|
22125
|
+
Cosy = "COSY",
|
|
22126
|
+
Generous = "GENEROUS"
|
|
22127
|
+
}
|
|
22128
|
+
export declare type CsmAiWidgetBrandingTheme = {
|
|
22129
|
+
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
22130
|
+
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
22131
|
+
chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
|
|
22132
|
+
colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
|
|
22133
|
+
radius?: Maybe<CsmAiWidgetBrandingRadius>;
|
|
22134
|
+
space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
|
|
22135
|
+
};
|
|
22136
|
+
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
22137
|
+
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
22138
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
22139
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
22140
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
22141
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
22142
|
+
};
|
|
22143
|
+
export declare type CsmAiWidgetConfig = {
|
|
22144
|
+
__typename?: 'CsmAiWidgetConfig';
|
|
22145
|
+
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
22146
|
+
id: Scalars['ID']['output'];
|
|
22147
|
+
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22148
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22149
|
+
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
22150
|
+
type: CsmAiWidgetType;
|
|
22151
|
+
};
|
|
22152
|
+
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
22153
|
+
export declare enum CsmAiWidgetType {
|
|
22154
|
+
Embed = "EMBED",
|
|
22155
|
+
SupportSite = "SUPPORT_SITE"
|
|
22156
|
+
}
|
|
22157
|
+
export declare type CsmAiWidgetUpdateInput = {
|
|
22158
|
+
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
22159
|
+
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22160
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22161
|
+
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
22162
|
+
type: CsmAiWidgetType;
|
|
22163
|
+
};
|
|
21947
22164
|
export declare type CumulativeFlowDiagram = {
|
|
21948
22165
|
__typename?: 'CumulativeFlowDiagram';
|
|
21949
22166
|
chart: CfdChartConnection;
|
|
@@ -22089,6 +22306,7 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
22089
22306
|
NotSet = "NOT_SET"
|
|
22090
22307
|
}
|
|
22091
22308
|
export declare enum CustomNumberFieldInputComparators {
|
|
22309
|
+
ContainAny = "CONTAIN_ANY",
|
|
22092
22310
|
IsSet = "IS_SET",
|
|
22093
22311
|
NotSet = "NOT_SET"
|
|
22094
22312
|
}
|
|
@@ -22104,6 +22322,7 @@ export declare enum CustomSingleSelectFieldInputComparators {
|
|
|
22104
22322
|
NotSet = "NOT_SET"
|
|
22105
22323
|
}
|
|
22106
22324
|
export declare enum CustomTextFieldInputComparators {
|
|
22325
|
+
ContainAny = "CONTAIN_ANY",
|
|
22107
22326
|
IsSet = "IS_SET",
|
|
22108
22327
|
NotSet = "NOT_SET"
|
|
22109
22328
|
}
|
|
@@ -24287,6 +24506,42 @@ export declare type DevAiWorkspace = {
|
|
|
24287
24506
|
status?: Maybe<Scalars['String']['output']>;
|
|
24288
24507
|
workspaceAri: Scalars['ID']['output'];
|
|
24289
24508
|
};
|
|
24509
|
+
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
24510
|
+
name: Scalars['String']['input'];
|
|
24511
|
+
};
|
|
24512
|
+
export declare type DevConsoleDeveloperSpace = {
|
|
24513
|
+
__typename?: 'DevConsoleDeveloperSpace';
|
|
24514
|
+
id: Scalars['String']['output'];
|
|
24515
|
+
name: Scalars['String']['output'];
|
|
24516
|
+
status: Scalars['String']['output'];
|
|
24517
|
+
type: DevConsoleDeveloperSpaceType;
|
|
24518
|
+
version: Scalars['Int']['output'];
|
|
24519
|
+
versionId: Scalars['Int']['output'];
|
|
24520
|
+
};
|
|
24521
|
+
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
24522
|
+
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
24523
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
24524
|
+
name: Scalars['String']['output'];
|
|
24525
|
+
};
|
|
24526
|
+
export declare enum DevConsoleDeveloperSpaceType {
|
|
24527
|
+
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
24528
|
+
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
24529
|
+
}
|
|
24530
|
+
export declare type DevConsoleMutation = {
|
|
24531
|
+
__typename?: 'DevConsoleMutation';
|
|
24532
|
+
createDeveloperSpace: DevConsoleDeveloperSpace;
|
|
24533
|
+
};
|
|
24534
|
+
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
24535
|
+
input: DevConsoleCreateDeveloperSpaceInput;
|
|
24536
|
+
};
|
|
24537
|
+
export declare type DevConsoleQuery = {
|
|
24538
|
+
__typename?: 'DevConsoleQuery';
|
|
24539
|
+
getDeveloperSpaceDetails: DevConsoleDeveloperSpaceDetails;
|
|
24540
|
+
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
24541
|
+
};
|
|
24542
|
+
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
24543
|
+
developerSpaceId: Scalars['String']['input'];
|
|
24544
|
+
};
|
|
24290
24545
|
export declare type DevOps = {
|
|
24291
24546
|
__typename?: 'DevOps';
|
|
24292
24547
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -25967,6 +26222,7 @@ export declare type EcosystemMutation = {
|
|
|
25967
26222
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
25968
26223
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
25969
26224
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
26225
|
+
devConsole?: Maybe<DevConsoleMutation>;
|
|
25970
26226
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
25971
26227
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
25972
26228
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
@@ -26071,6 +26327,7 @@ export declare type EcosystemQuery = {
|
|
|
26071
26327
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
26072
26328
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
26073
26329
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
26330
|
+
devConsole?: Maybe<DevConsoleQuery>;
|
|
26074
26331
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
26075
26332
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
26076
26333
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -32811,8 +33068,6 @@ export declare type GraphStore = {
|
|
|
32811
33068
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32812
33069
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32813
33070
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32814
|
-
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32815
|
-
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
32816
33071
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
32817
33072
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
32818
33073
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -33268,6 +33523,7 @@ export declare type GraphStore = {
|
|
|
33268
33523
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
33269
33524
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
33270
33525
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
33526
|
+
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
33271
33527
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
33272
33528
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
33273
33529
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -33918,20 +34174,6 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
33918
34174
|
id: Scalars['ID']['input'];
|
|
33919
34175
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
33920
34176
|
};
|
|
33921
|
-
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
33922
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33923
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33924
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33925
|
-
id: Scalars['ID']['input'];
|
|
33926
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33927
|
-
};
|
|
33928
|
-
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
33929
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33930
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33931
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33932
|
-
id: Scalars['ID']['input'];
|
|
33933
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33934
|
-
};
|
|
33935
34177
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
33936
34178
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33937
34179
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36913,6 +37155,13 @@ export declare type GraphStoreTopicHasRelatedEntityArgs = {
|
|
|
36913
37155
|
id: Scalars['ID']['input'];
|
|
36914
37156
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
36915
37157
|
};
|
|
37158
|
+
export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
37159
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37160
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37161
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37162
|
+
id: Scalars['ID']['input'];
|
|
37163
|
+
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
37164
|
+
};
|
|
36916
37165
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
36917
37166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36918
37167
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39578,9 +39827,6 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
39578
39827
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
39579
39828
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39580
39829
|
};
|
|
39581
|
-
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39582
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39583
|
-
};
|
|
39584
39830
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
39585
39831
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39586
39832
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40102,7 +40348,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40102
40348
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40103
40349
|
id: Scalars['ID']['output'];
|
|
40104
40350
|
};
|
|
40105
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40351
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40106
40352
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40107
40353
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40108
40354
|
value: Scalars['Int']['output'];
|
|
@@ -40137,7 +40383,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40137
40383
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40138
40384
|
id: Scalars['ID']['output'];
|
|
40139
40385
|
};
|
|
40140
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40386
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40141
40387
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40142
40388
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40143
40389
|
value: Scalars['String']['output'];
|
|
@@ -40147,19 +40393,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40147
40393
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40148
40394
|
id: Scalars['ID']['output'];
|
|
40149
40395
|
};
|
|
40150
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40396
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40151
40397
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40152
40398
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40153
40399
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40154
40400
|
id: Scalars['ID']['output'];
|
|
40155
40401
|
};
|
|
40156
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40402
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40157
40403
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40158
40404
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40159
40405
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40160
40406
|
id: Scalars['ID']['output'];
|
|
40161
40407
|
};
|
|
40162
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40408
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40163
40409
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40164
40410
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40165
40411
|
value: Scalars['Boolean']['output'];
|
|
@@ -40258,7 +40504,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40258
40504
|
V2 = "V2",
|
|
40259
40505
|
V3 = "V3"
|
|
40260
40506
|
}
|
|
40261
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40507
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40262
40508
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40263
40509
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40264
40510
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -46063,34 +46309,6 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
46063
46309
|
};
|
|
46064
46310
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
46065
46311
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
46066
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
46067
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
46068
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
46069
|
-
pageInfo: PageInfo;
|
|
46070
|
-
};
|
|
46071
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
46072
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
46073
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46074
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46075
|
-
id: Scalars['ID']['output'];
|
|
46076
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46077
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
46078
|
-
};
|
|
46079
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46080
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
46081
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
46082
|
-
pageInfo: PageInfo;
|
|
46083
|
-
};
|
|
46084
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
46085
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
46086
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46087
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46088
|
-
id: Scalars['ID']['output'];
|
|
46089
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46090
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
46091
|
-
};
|
|
46092
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
46093
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
46094
46312
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
46095
46313
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
46096
46314
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -50356,7 +50574,21 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityEdge = {
|
|
|
50356
50574
|
lastUpdated: Scalars['DateTime']['output'];
|
|
50357
50575
|
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityUnion>;
|
|
50358
50576
|
};
|
|
50359
|
-
export declare type
|
|
50577
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
50578
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection';
|
|
50579
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge>>>;
|
|
50580
|
+
pageInfo: PageInfo;
|
|
50581
|
+
};
|
|
50582
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
50583
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge';
|
|
50584
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50585
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50586
|
+
id: Scalars['ID']['output'];
|
|
50587
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50588
|
+
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion>;
|
|
50589
|
+
};
|
|
50590
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
50591
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
|
|
50360
50592
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
50361
50593
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
50362
50594
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -58600,6 +58832,7 @@ export declare enum JiraBoardType {
|
|
|
58600
58832
|
}
|
|
58601
58833
|
export declare type JiraBoardView = {
|
|
58602
58834
|
__typename?: 'JiraBoardView';
|
|
58835
|
+
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
58603
58836
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58604
58837
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
58605
58838
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -58611,6 +58844,7 @@ export declare type JiraBoardView = {
|
|
|
58611
58844
|
id: Scalars['ID']['output'];
|
|
58612
58845
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58613
58846
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
58847
|
+
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58614
58848
|
};
|
|
58615
58849
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
58616
58850
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58634,8 +58868,13 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
58634
58868
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
58635
58869
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
58636
58870
|
};
|
|
58871
|
+
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
58872
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58874
|
+
};
|
|
58637
58875
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
58638
58876
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
58877
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58639
58878
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58640
58879
|
id: Scalars['ID']['output'];
|
|
58641
58880
|
user?: Maybe<User>;
|
|
@@ -58658,11 +58897,13 @@ export declare type JiraBoardViewCardOptionEdge = {
|
|
|
58658
58897
|
};
|
|
58659
58898
|
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
58660
58899
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
58900
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58661
58901
|
category?: Maybe<JiraOption>;
|
|
58662
58902
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58663
58903
|
id: Scalars['ID']['output'];
|
|
58664
58904
|
};
|
|
58665
58905
|
export declare type JiraBoardViewColumn = {
|
|
58906
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58666
58907
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58667
58908
|
id: Scalars['ID']['output'];
|
|
58668
58909
|
};
|
|
@@ -58691,6 +58932,7 @@ export declare type JiraBoardViewInput = {
|
|
|
58691
58932
|
};
|
|
58692
58933
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
58693
58934
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
58935
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58694
58936
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58695
58937
|
id: Scalars['ID']['output'];
|
|
58696
58938
|
priority?: Maybe<JiraPriority>;
|
|
@@ -58708,18 +58950,45 @@ export declare type JiraBoardViewSettings = {
|
|
|
58708
58950
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
58709
58951
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58710
58952
|
};
|
|
58953
|
+
export declare type JiraBoardViewStatus = {
|
|
58954
|
+
__typename?: 'JiraBoardViewStatus';
|
|
58955
|
+
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
58956
|
+
id: Scalars['ID']['output'];
|
|
58957
|
+
status?: Maybe<JiraStatus>;
|
|
58958
|
+
};
|
|
58959
|
+
export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
58960
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58961
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58962
|
+
};
|
|
58711
58963
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
58712
58964
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
58965
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58713
58966
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58714
58967
|
id: Scalars['ID']['output'];
|
|
58968
|
+
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58715
58969
|
name?: Maybe<Scalars['String']['output']>;
|
|
58716
58970
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
58717
58971
|
};
|
|
58972
|
+
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
58973
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58974
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58975
|
+
};
|
|
58718
58976
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
58719
58977
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
58720
58978
|
name: Scalars['String']['input'];
|
|
58721
58979
|
statusIds: Array<Scalars['ID']['input']>;
|
|
58722
58980
|
};
|
|
58981
|
+
export declare type JiraBoardViewStatusConnection = {
|
|
58982
|
+
__typename?: 'JiraBoardViewStatusConnection';
|
|
58983
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewStatusEdge>>>;
|
|
58984
|
+
errors?: Maybe<Array<QueryError>>;
|
|
58985
|
+
pageInfo?: Maybe<PageInfo>;
|
|
58986
|
+
};
|
|
58987
|
+
export declare type JiraBoardViewStatusEdge = {
|
|
58988
|
+
__typename?: 'JiraBoardViewStatusEdge';
|
|
58989
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58990
|
+
node?: Maybe<JiraBoardViewStatus>;
|
|
58991
|
+
};
|
|
58723
58992
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
58724
58993
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
58725
58994
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60384,6 +60653,10 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
60384
60653
|
journeyVersion: Scalars['Long']['input'];
|
|
60385
60654
|
name: Scalars['String']['input'];
|
|
60386
60655
|
};
|
|
60656
|
+
export declare type JiraCreateFieldSchemeInput = {
|
|
60657
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
60658
|
+
name: Scalars['String']['input'];
|
|
60659
|
+
};
|
|
60387
60660
|
export declare type JiraCreateFormattingRuleInput = {
|
|
60388
60661
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
60389
60662
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60874,6 +61147,15 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
60874
61147
|
errors?: Maybe<Array<MutationError>>;
|
|
60875
61148
|
success: Scalars['Boolean']['output'];
|
|
60876
61149
|
};
|
|
61150
|
+
export declare type JiraDeleteFieldSchemeInput = {
|
|
61151
|
+
schemeId: Scalars['ID']['input'];
|
|
61152
|
+
};
|
|
61153
|
+
export declare type JiraDeleteFieldSchemePayload = Payload & {
|
|
61154
|
+
__typename?: 'JiraDeleteFieldSchemePayload';
|
|
61155
|
+
affectedSchemeId?: Maybe<Scalars['ID']['output']>;
|
|
61156
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61157
|
+
success: Scalars['Boolean']['output'];
|
|
61158
|
+
};
|
|
60877
61159
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
60878
61160
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
60879
61161
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60946,6 +61228,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
60946
61228
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60947
61229
|
issues?: Maybe<JiraIssueConnection>;
|
|
60948
61230
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
61231
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60949
61232
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60950
61233
|
};
|
|
60951
61234
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -60956,6 +61239,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
60956
61239
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60957
61240
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60958
61241
|
};
|
|
61242
|
+
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61243
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61244
|
+
};
|
|
60959
61245
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
60960
61246
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60961
61247
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61381,6 +61667,11 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
61381
61667
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
61382
61668
|
success: Scalars['Boolean']['output'];
|
|
61383
61669
|
};
|
|
61670
|
+
export declare type JiraEditFieldSchemeInput = {
|
|
61671
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
61672
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
61673
|
+
schemeId: Scalars['ID']['input'];
|
|
61674
|
+
};
|
|
61384
61675
|
export declare enum JiraEmailMimeType {
|
|
61385
61676
|
Html = "HTML",
|
|
61386
61677
|
Text = "TEXT"
|
|
@@ -61755,6 +62046,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
61755
62046
|
Allow = "ALLOW",
|
|
61756
62047
|
Exclude = "EXCLUDE"
|
|
61757
62048
|
}
|
|
62049
|
+
export declare type JiraFieldSchemePayload = Payload & {
|
|
62050
|
+
__typename?: 'JiraFieldSchemePayload';
|
|
62051
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62052
|
+
fieldScheme?: Maybe<JiraFieldConfigScheme>;
|
|
62053
|
+
success: Scalars['Boolean']['output'];
|
|
62054
|
+
};
|
|
62055
|
+
export declare type JiraFieldSchemesInput = {
|
|
62056
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62057
|
+
};
|
|
61758
62058
|
export declare type JiraFieldSearcherTemplate = {
|
|
61759
62059
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
61760
62060
|
displayName: Scalars['String']['output'];
|
|
@@ -61775,6 +62075,10 @@ export declare type JiraFieldSetPreferences = {
|
|
|
61775
62075
|
__typename?: 'JiraFieldSetPreferences';
|
|
61776
62076
|
width?: Maybe<Scalars['Int']['output']>;
|
|
61777
62077
|
};
|
|
62078
|
+
export declare type JiraFieldSetPreferencesInput = {
|
|
62079
|
+
fieldSetId: Scalars['String']['input'];
|
|
62080
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
62081
|
+
};
|
|
61778
62082
|
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
61779
62083
|
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
61780
62084
|
};
|
|
@@ -61797,10 +62101,14 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
61797
62101
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61798
62102
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61799
62103
|
};
|
|
62104
|
+
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62105
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62106
|
+
};
|
|
61800
62107
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
61801
62108
|
export declare type JiraFieldSetsMutationInput = {
|
|
61802
62109
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
61803
62110
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62111
|
+
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
61804
62112
|
};
|
|
61805
62113
|
export declare type JiraFieldSetsViewMetadata = {
|
|
61806
62114
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -61815,6 +62123,9 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
61815
62123
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61816
62124
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61817
62125
|
};
|
|
62126
|
+
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62127
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62128
|
+
};
|
|
61818
62129
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
61819
62130
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
61820
62131
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -62629,7 +62940,6 @@ export declare type JiraGroup = Node & {
|
|
|
62629
62940
|
name: Scalars['String']['output'];
|
|
62630
62941
|
};
|
|
62631
62942
|
export declare type JiraGroupByDropdownFilter = {
|
|
62632
|
-
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
62633
62943
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
62634
62944
|
};
|
|
62635
62945
|
export declare type JiraGroupConnection = {
|
|
@@ -62663,6 +62973,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
62663
62973
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62664
62974
|
jql?: Maybe<Scalars['String']['output']>;
|
|
62665
62975
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
62976
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
62666
62977
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
62667
62978
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
62668
62979
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -62686,6 +62997,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
62686
62997
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62687
62998
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62688
62999
|
};
|
|
63000
|
+
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
63001
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63002
|
+
};
|
|
62689
63003
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
62690
63004
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
62691
63005
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -64224,6 +64538,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
64224
64538
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
64225
64539
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
64226
64540
|
};
|
|
64541
|
+
export declare type JiraIssueSearchSettings = {
|
|
64542
|
+
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64543
|
+
};
|
|
64227
64544
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
64228
64545
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64229
64546
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -64252,6 +64569,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
64252
64569
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64253
64570
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64254
64571
|
};
|
|
64572
|
+
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64573
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64574
|
+
};
|
|
64255
64575
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
64256
64576
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
64257
64577
|
};
|
|
@@ -64339,6 +64659,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64339
64659
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64340
64660
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64341
64661
|
};
|
|
64662
|
+
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64663
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64664
|
+
};
|
|
64342
64665
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64343
64666
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64344
64667
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65575,6 +65898,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
65575
65898
|
issues?: Maybe<JiraIssueConnection>;
|
|
65576
65899
|
jql?: Maybe<Scalars['String']['output']>;
|
|
65577
65900
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
65901
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
65578
65902
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
65579
65903
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
65580
65904
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -65587,6 +65911,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
65587
65911
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65588
65912
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65589
65913
|
};
|
|
65914
|
+
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
65915
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65916
|
+
};
|
|
65590
65917
|
export declare type JiraListViewIssuesArgs = {
|
|
65591
65918
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65592
65919
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65602,6 +65929,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
65602
65929
|
export declare type JiraListViewViewSettingsArgs = {
|
|
65603
65930
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
65604
65931
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
65932
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
65605
65933
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65606
65934
|
};
|
|
65607
65935
|
export declare type JiraLongRunningTaskProgress = {
|
|
@@ -67868,6 +68196,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
67868
68196
|
__typename?: 'JiraPlaybook';
|
|
67869
68197
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
67870
68198
|
id: Scalars['ID']['output'];
|
|
68199
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
67871
68200
|
name?: Maybe<Scalars['String']['output']>;
|
|
67872
68201
|
owner?: Maybe<User>;
|
|
67873
68202
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67888,6 +68217,13 @@ export declare type JiraPlaybookEdge = {
|
|
|
67888
68217
|
cursor: Scalars['String']['output'];
|
|
67889
68218
|
node?: Maybe<JiraPlaybook>;
|
|
67890
68219
|
};
|
|
68220
|
+
export declare type JiraPlaybookExecutionFilter = {
|
|
68221
|
+
contextId?: InputMaybe<Scalars['String']['input']>;
|
|
68222
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68223
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68224
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68225
|
+
status?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68226
|
+
};
|
|
67891
68227
|
export declare type JiraPlaybookFilter = {
|
|
67892
68228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67893
68229
|
};
|
|
@@ -68895,6 +69231,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
68895
69231
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
68896
69232
|
mostRecent?: Maybe<JiraProject>;
|
|
68897
69233
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69234
|
+
otherItems?: Maybe<JiraProjectConnection>;
|
|
68898
69235
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
68899
69236
|
recents?: Maybe<JiraProjectConnection>;
|
|
68900
69237
|
};
|
|
@@ -68912,6 +69249,10 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
68912
69249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68913
69250
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68914
69251
|
};
|
|
69252
|
+
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69253
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69254
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69255
|
+
};
|
|
68915
69256
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
68916
69257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68917
69258
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69090,6 +69431,7 @@ export declare type JiraQuery = {
|
|
|
69090
69431
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
69091
69432
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
69092
69433
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
69434
|
+
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
69093
69435
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69094
69436
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
69095
69437
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -69816,6 +70158,9 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
69816
70158
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
69817
70159
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
69818
70160
|
};
|
|
70161
|
+
export declare type JiraQueryLabelsInBoardArgs = {
|
|
70162
|
+
boardId: Scalars['ID']['input'];
|
|
70163
|
+
};
|
|
69819
70164
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
69820
70165
|
cloudId: Scalars['ID']['input'];
|
|
69821
70166
|
};
|
|
@@ -71022,6 +71367,10 @@ export declare type JiraScmRepository = {
|
|
|
71022
71367
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
71023
71368
|
name?: Maybe<Scalars['String']['output']>;
|
|
71024
71369
|
};
|
|
71370
|
+
export declare type JiraScopedResetFieldsetsInput = {
|
|
71371
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71372
|
+
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71373
|
+
};
|
|
71025
71374
|
export declare type JiraScreen = Node & {
|
|
71026
71375
|
__typename?: 'JiraScreen';
|
|
71027
71376
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72397,6 +72746,15 @@ export declare type JiraSetFieldAssociationWithIssueTypesPayload = Payload & {
|
|
|
72397
72746
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
72398
72747
|
success: Scalars['Boolean']['output'];
|
|
72399
72748
|
};
|
|
72749
|
+
export declare type JiraSetFieldSetsPreferencesInput = {
|
|
72750
|
+
fieldSetsPreferences?: InputMaybe<Array<JiraFieldSetPreferencesInput>>;
|
|
72751
|
+
viewId: Scalars['ID']['input'];
|
|
72752
|
+
};
|
|
72753
|
+
export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
72754
|
+
__typename?: 'JiraSetFieldSetsPreferencesPayload';
|
|
72755
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72756
|
+
success: Scalars['Boolean']['output'];
|
|
72757
|
+
};
|
|
72400
72758
|
export declare type JiraSetIsFavouriteInput = {
|
|
72401
72759
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
72402
72760
|
entityId: Scalars['ID']['input'];
|
|
@@ -72892,6 +73250,7 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
72892
73250
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72893
73251
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
72894
73252
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73253
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72895
73254
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
72896
73255
|
};
|
|
72897
73256
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
@@ -72961,6 +73320,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
72961
73320
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
72962
73321
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72963
73322
|
};
|
|
73323
|
+
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73324
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73325
|
+
};
|
|
72964
73326
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
72965
73327
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
72966
73328
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -75039,7 +75401,8 @@ export declare type JiraViewScopeInput = {
|
|
|
75039
75401
|
};
|
|
75040
75402
|
export declare enum JiraVisibilityControlMechanism {
|
|
75041
75403
|
AppAccessRules = "AppAccessRules",
|
|
75042
|
-
DisplayConditions = "DisplayConditions"
|
|
75404
|
+
DisplayConditions = "DisplayConditions",
|
|
75405
|
+
UnlicensedAccess = "UnlicensedAccess"
|
|
75043
75406
|
}
|
|
75044
75407
|
export declare type JiraVote = {
|
|
75045
75408
|
__typename?: 'JiraVote';
|
|
@@ -76962,6 +77325,15 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
76962
77325
|
Plain = "PLAIN"
|
|
76963
77326
|
}
|
|
76964
77327
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
77328
|
+
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
|
|
77329
|
+
cloudId: Scalars['String']['input'];
|
|
77330
|
+
query: Scalars['String']['input'];
|
|
77331
|
+
};
|
|
77332
|
+
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedPayload = Payload & {
|
|
77333
|
+
__typename?: 'KnowledgeDiscoveryMarkZeroQueryInteractedPayload';
|
|
77334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77335
|
+
success: Scalars['Boolean']['output'];
|
|
77336
|
+
};
|
|
76965
77337
|
export declare type KnowledgeDiscoveryMetadata = {
|
|
76966
77338
|
numberOfRecentDocuments?: InputMaybe<Scalars['Int']['input']>;
|
|
76967
77339
|
};
|
|
@@ -76973,6 +77345,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
76973
77345
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
76974
77346
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
76975
77347
|
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
77348
|
+
markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
76976
77349
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
76977
77350
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
76978
77351
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -76995,6 +77368,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
|
76995
77368
|
export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
|
|
76996
77369
|
input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
|
|
76997
77370
|
};
|
|
77371
|
+
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
|
|
77372
|
+
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
77373
|
+
};
|
|
76998
77374
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
76999
77375
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
77000
77376
|
};
|
|
@@ -77034,6 +77410,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
77034
77410
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
77035
77411
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
77036
77412
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
77413
|
+
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
77037
77414
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
77038
77415
|
};
|
|
77039
77416
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
@@ -77134,6 +77511,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
77134
77511
|
id: Scalars['String']['input'];
|
|
77135
77512
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
77136
77513
|
};
|
|
77514
|
+
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
77515
|
+
ids: Array<Scalars['ID']['input']>;
|
|
77516
|
+
};
|
|
77137
77517
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
77138
77518
|
cloudId: Scalars['String']['input'];
|
|
77139
77519
|
};
|
|
@@ -77217,6 +77597,20 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
|
77217
77597
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77218
77598
|
updatedAt: Scalars['String']['output'];
|
|
77219
77599
|
};
|
|
77600
|
+
export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
77601
|
+
__typename?: 'KnowledgeDiscoveryTopicByAri';
|
|
77602
|
+
description: Scalars['String']['output'];
|
|
77603
|
+
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77604
|
+
id: Scalars['ID']['output'];
|
|
77605
|
+
name: Scalars['String']['output'];
|
|
77606
|
+
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77607
|
+
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77608
|
+
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77609
|
+
updatedAt: Scalars['String']['output'];
|
|
77610
|
+
};
|
|
77611
|
+
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77612
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77613
|
+
};
|
|
77220
77614
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
77221
77615
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
77222
77616
|
Area = "AREA",
|
|
@@ -77276,9 +77670,19 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
77276
77670
|
};
|
|
77277
77671
|
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
77278
77672
|
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
77279
|
-
zeroQueries?: Maybe<Array<
|
|
77673
|
+
zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
|
|
77280
77674
|
};
|
|
77281
77675
|
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
77676
|
+
export declare type KnowledgeDiscoveryZeroQuery = {
|
|
77677
|
+
__typename?: 'KnowledgeDiscoveryZeroQuery';
|
|
77678
|
+
query: Scalars['String']['output'];
|
|
77679
|
+
type: KnowledgeDiscoveryZeroQueryType;
|
|
77680
|
+
};
|
|
77681
|
+
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
77682
|
+
RecentWork = "RECENT_WORK",
|
|
77683
|
+
RelatedQuestion = "RELATED_QUESTION",
|
|
77684
|
+
WhoIs = "WHO_IS"
|
|
77685
|
+
}
|
|
77282
77686
|
export declare enum KnowledgeGraphContentType {
|
|
77283
77687
|
Blogpost = "BLOGPOST",
|
|
77284
77688
|
Page = "PAGE"
|
|
@@ -78191,6 +78595,7 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
78191
78595
|
};
|
|
78192
78596
|
export declare type MarketplaceAppVersionFilter = {
|
|
78193
78597
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78598
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
78194
78599
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
78195
78600
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
78196
78601
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -81025,6 +81430,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
81025
81430
|
ari: Scalars['String']['output'];
|
|
81026
81431
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
81027
81432
|
createdDate: Scalars['String']['output'];
|
|
81433
|
+
draft: Scalars['Boolean']['output'];
|
|
81028
81434
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
81029
81435
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
81030
81436
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
@@ -81114,7 +81520,7 @@ export declare type MercuryFocusAreaChangeRequirements = {
|
|
|
81114
81520
|
};
|
|
81115
81521
|
export declare type MercuryFocusAreaChangeSummary = {
|
|
81116
81522
|
__typename?: 'MercuryFocusAreaChangeSummary';
|
|
81117
|
-
focusAreaId
|
|
81523
|
+
focusAreaId?: Maybe<Scalars['ID']['output']>;
|
|
81118
81524
|
fundChangeSummary?: Maybe<MercuryFocusAreaFundChangeSummary>;
|
|
81119
81525
|
positionChangeSummary?: Maybe<MercuryFocusAreaPositionChangeSummary>;
|
|
81120
81526
|
strategicEventId: Scalars['ID']['output'];
|
|
@@ -81134,6 +81540,7 @@ export declare type MercuryFocusAreaFundChangeSummary = {
|
|
|
81134
81540
|
__typename?: 'MercuryFocusAreaFundChangeSummary';
|
|
81135
81541
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81136
81542
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81543
|
+
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81137
81544
|
};
|
|
81138
81545
|
export declare type MercuryFocusAreaGoalLink = Node & {
|
|
81139
81546
|
__typename?: 'MercuryFocusAreaGoalLink';
|
|
@@ -81209,7 +81616,9 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
|
81209
81616
|
movedInCount?: Maybe<Scalars['Int']['output']>;
|
|
81210
81617
|
movedOutCount?: Maybe<Scalars['Int']['output']>;
|
|
81211
81618
|
movedWithinCount?: Maybe<Scalars['Int']['output']>;
|
|
81619
|
+
netCount?: Maybe<Scalars['Int']['output']>;
|
|
81212
81620
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
81621
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81213
81622
|
};
|
|
81214
81623
|
export declare type MercuryFocusAreaSort = {
|
|
81215
81624
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
@@ -82456,6 +82865,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
82456
82865
|
changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
|
|
82457
82866
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
82458
82867
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
82868
|
+
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
82459
82869
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
82460
82870
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
82461
82871
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -82499,6 +82909,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
|
|
|
82499
82909
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
|
|
82500
82910
|
changeProposalId: Scalars['ID']['input'];
|
|
82501
82911
|
};
|
|
82912
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
|
|
82913
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
82914
|
+
};
|
|
82502
82915
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
82503
82916
|
inputs: Array<MercuryChangeSummaryInput>;
|
|
82504
82917
|
};
|
|
@@ -83083,6 +83496,8 @@ export declare type Mutation = {
|
|
|
83083
83496
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
83084
83497
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
83085
83498
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
83499
|
+
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
83500
|
+
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
83086
83501
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
83087
83502
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
83088
83503
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
@@ -83096,6 +83511,7 @@ export declare type Mutation = {
|
|
|
83096
83511
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
83097
83512
|
appStorage?: Maybe<AppStorageMutation>;
|
|
83098
83513
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
83514
|
+
appStorage_admin?: Maybe<AppStorageAdminMutation>;
|
|
83099
83515
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
83100
83516
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
83101
83517
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
@@ -83116,10 +83532,10 @@ export declare type Mutation = {
|
|
|
83116
83532
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
83117
83533
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
83118
83534
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
83535
|
+
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
83119
83536
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
83120
83537
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
83121
83538
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
83122
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
83123
83539
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
83124
83540
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
83125
83541
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -83374,6 +83790,7 @@ export declare type Mutation = {
|
|
|
83374
83790
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
83375
83791
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
83376
83792
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
83793
|
+
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
83377
83794
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
83378
83795
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
83379
83796
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -83460,10 +83877,13 @@ export declare type Mutation = {
|
|
|
83460
83877
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
83461
83878
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
83462
83879
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
83880
|
+
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83463
83881
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83464
83882
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
83883
|
+
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
83465
83884
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
83466
83885
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83886
|
+
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83467
83887
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
83468
83888
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
83469
83889
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
@@ -83479,6 +83899,7 @@ export declare type Mutation = {
|
|
|
83479
83899
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
83480
83900
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
83481
83901
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
83902
|
+
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
83482
83903
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
83483
83904
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
83484
83905
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
@@ -83496,6 +83917,7 @@ export declare type Mutation = {
|
|
|
83496
83917
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
83497
83918
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
83498
83919
|
likeContent?: Maybe<LikeContentPayload>;
|
|
83920
|
+
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
83499
83921
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
83500
83922
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
83501
83923
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
@@ -83602,10 +84024,26 @@ export declare type Mutation = {
|
|
|
83602
84024
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
83603
84025
|
shepherd?: Maybe<ShepherdMutation>;
|
|
83604
84026
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
84027
|
+
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
83605
84028
|
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
84029
|
+
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
84030
|
+
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
83606
84031
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
83607
84032
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84033
|
+
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
83608
84034
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84035
|
+
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84036
|
+
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
84037
|
+
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
84038
|
+
spf_updateAskJustification?: Maybe<SpfUpdateAskPayload>;
|
|
84039
|
+
spf_updateAskName?: Maybe<SpfUpdateAskPayload>;
|
|
84040
|
+
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84041
|
+
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84042
|
+
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84043
|
+
spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
|
|
84044
|
+
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84045
|
+
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84046
|
+
spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
|
|
83609
84047
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
83610
84048
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
83611
84049
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -83731,6 +84169,12 @@ export declare type MutationAddReactionArgs = {
|
|
|
83731
84169
|
contentType: GraphQlReactionContentType;
|
|
83732
84170
|
emojiId: Scalars['String']['input'];
|
|
83733
84171
|
};
|
|
84172
|
+
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
84173
|
+
resourceAri: Scalars['ID']['input'];
|
|
84174
|
+
};
|
|
84175
|
+
export declare type MutationAdmin_DeleteAccessUrlArgs = {
|
|
84176
|
+
id: Scalars['ID']['input'];
|
|
84177
|
+
};
|
|
83734
84178
|
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
83735
84179
|
cloudId: Scalars['String']['input'];
|
|
83736
84180
|
input: AgentStudioCreateAgentInput;
|
|
@@ -83771,6 +84215,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
83771
84215
|
containerId: Scalars['String']['input'];
|
|
83772
84216
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
83773
84217
|
};
|
|
84218
|
+
export declare type MutationAppStorage_AdminArgs = {
|
|
84219
|
+
appId: Scalars['ID']['input'];
|
|
84220
|
+
};
|
|
83774
84221
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
83775
84222
|
input: ApplyPolarisProjectTemplateInput;
|
|
83776
84223
|
};
|
|
@@ -83825,11 +84272,10 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
83825
84272
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83826
84273
|
};
|
|
83827
84274
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
83828
|
-
|
|
84275
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83829
84276
|
};
|
|
83830
84277
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
83831
84278
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83832
|
-
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
83833
84279
|
};
|
|
83834
84280
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
83835
84281
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83841,15 +84287,15 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
83841
84287
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
83842
84288
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
83843
84289
|
};
|
|
84290
|
+
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
84291
|
+
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
84292
|
+
};
|
|
83844
84293
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
83845
84294
|
contentId: Scalars['ID']['input'];
|
|
83846
84295
|
};
|
|
83847
84296
|
export declare type MutationCompleteSprintArgs = {
|
|
83848
84297
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83849
84298
|
};
|
|
83850
|
-
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
83851
|
-
input: ConfigurePolarisRefreshInput;
|
|
83852
|
-
};
|
|
83853
84299
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
83854
84300
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
83855
84301
|
};
|
|
@@ -84691,6 +85137,11 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
84691
85137
|
helpCenterAri: Scalars['ID']['input'];
|
|
84692
85138
|
input: CsmAiUpdateHandoffConfigInput;
|
|
84693
85139
|
};
|
|
85140
|
+
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85141
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
85142
|
+
input: CsmAiWidgetUpdateInput;
|
|
85143
|
+
widgetId: Scalars['ID']['input'];
|
|
85144
|
+
};
|
|
84694
85145
|
export declare type MutationCustomerServiceArgs = {
|
|
84695
85146
|
cloudId: Scalars['ID']['input'];
|
|
84696
85147
|
};
|
|
@@ -84942,6 +85393,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
84942
85393
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
84943
85394
|
input: JiraCreateCustomBackgroundInput;
|
|
84944
85395
|
};
|
|
85396
|
+
export declare type MutationJira_CreateFieldSchemeArgs = {
|
|
85397
|
+
cloudId: Scalars['ID']['input'];
|
|
85398
|
+
input: JiraCreateFieldSchemeInput;
|
|
85399
|
+
};
|
|
84945
85400
|
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
84946
85401
|
cloudId: Scalars['ID']['input'];
|
|
84947
85402
|
input: JiraCreateGlobalCustomFieldInput;
|
|
@@ -84949,12 +85404,20 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
84949
85404
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
84950
85405
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
84951
85406
|
};
|
|
85407
|
+
export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
85408
|
+
cloudId: Scalars['ID']['input'];
|
|
85409
|
+
input: JiraDeleteFieldSchemeInput;
|
|
85410
|
+
};
|
|
84952
85411
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
84953
85412
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
84954
85413
|
};
|
|
84955
85414
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
84956
85415
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
84957
85416
|
};
|
|
85417
|
+
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
85418
|
+
cloudId: Scalars['ID']['input'];
|
|
85419
|
+
input: JiraEditFieldSchemeInput;
|
|
85420
|
+
};
|
|
84958
85421
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
84959
85422
|
input: JiraPublishBoardViewConfigInput;
|
|
84960
85423
|
};
|
|
@@ -85001,6 +85464,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
85001
85464
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
85002
85465
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
85003
85466
|
};
|
|
85467
|
+
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
85468
|
+
input: JiraSetFieldSetsPreferencesInput;
|
|
85469
|
+
};
|
|
85004
85470
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
85005
85471
|
input: JiraSetIssueSearchGroupByInput;
|
|
85006
85472
|
};
|
|
@@ -85047,6 +85513,12 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
85047
85513
|
export declare type MutationLikeContentArgs = {
|
|
85048
85514
|
input: LikeContentInput;
|
|
85049
85515
|
};
|
|
85516
|
+
export declare type MutationLoom_SpaceCreateArgs = {
|
|
85517
|
+
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
85518
|
+
name: Scalars['String']['input'];
|
|
85519
|
+
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
85520
|
+
siteId: Scalars['ID']['input'];
|
|
85521
|
+
};
|
|
85050
85522
|
export declare type MutationMarkCommentsAsReadArgs = {
|
|
85051
85523
|
input: MarkCommentsAsReadInput;
|
|
85052
85524
|
};
|
|
@@ -85361,18 +85833,66 @@ export declare type MutationShareResourceArgs = {
|
|
|
85361
85833
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
85362
85834
|
spaceKey: Scalars['String']['input'];
|
|
85363
85835
|
};
|
|
85836
|
+
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
85837
|
+
input: SpfAttachAskLinkInput;
|
|
85838
|
+
};
|
|
85364
85839
|
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
85365
85840
|
input: SpfAttachRelatedContentInput;
|
|
85366
85841
|
};
|
|
85842
|
+
export declare type MutationSpf_CreateAskArgs = {
|
|
85843
|
+
input: SpfCreateAskInput;
|
|
85844
|
+
};
|
|
85845
|
+
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
85846
|
+
input: SpfCreateAskCommentInput;
|
|
85847
|
+
};
|
|
85367
85848
|
export declare type MutationSpf_CreateCommentArgs = {
|
|
85368
85849
|
input: SpfCreateCommentInput;
|
|
85369
85850
|
};
|
|
85370
85851
|
export declare type MutationSpf_CreateDependencyArgs = {
|
|
85371
85852
|
input: SpfCreateDependencyInput;
|
|
85372
85853
|
};
|
|
85854
|
+
export declare type MutationSpf_DeleteAskArgs = {
|
|
85855
|
+
input: SpfDeleteAskInput;
|
|
85856
|
+
};
|
|
85373
85857
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
85374
85858
|
input: SpfDeleteDependencyInput;
|
|
85375
85859
|
};
|
|
85860
|
+
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
85861
|
+
input: SpfUpdateAskCommentDataInput;
|
|
85862
|
+
};
|
|
85863
|
+
export declare type MutationSpf_UpdateAskDescriptionArgs = {
|
|
85864
|
+
input: SpfUpdateAskDescriptionInput;
|
|
85865
|
+
};
|
|
85866
|
+
export declare type MutationSpf_UpdateAskImpactedWorkArgs = {
|
|
85867
|
+
input: SpfUpdateAskImpactedWorkInput;
|
|
85868
|
+
};
|
|
85869
|
+
export declare type MutationSpf_UpdateAskJustificationArgs = {
|
|
85870
|
+
input: SpfUpdateAskJustificationInput;
|
|
85871
|
+
};
|
|
85872
|
+
export declare type MutationSpf_UpdateAskNameArgs = {
|
|
85873
|
+
input: SpfUpdateAskNameInput;
|
|
85874
|
+
};
|
|
85875
|
+
export declare type MutationSpf_UpdateAskOwnerArgs = {
|
|
85876
|
+
input: SpfUpdateAskOwnerInput;
|
|
85877
|
+
};
|
|
85878
|
+
export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
85879
|
+
input: SpfUpdateAskPriorityInput;
|
|
85880
|
+
};
|
|
85881
|
+
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
85882
|
+
input: SpfUpdateAskReceivingTeamInput;
|
|
85883
|
+
};
|
|
85884
|
+
export declare type MutationSpf_UpdateAskStatusArgs = {
|
|
85885
|
+
input: SpfUpdateAskStatusInput;
|
|
85886
|
+
};
|
|
85887
|
+
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
85888
|
+
input: SpfUpdateAskSubmitterInput;
|
|
85889
|
+
};
|
|
85890
|
+
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
85891
|
+
input: SpfUpdateAskSubmittingTeamInput;
|
|
85892
|
+
};
|
|
85893
|
+
export declare type MutationSpf_UpdateAskTargetDateArgs = {
|
|
85894
|
+
input: SpfUpdateAskTargetDateInput;
|
|
85895
|
+
};
|
|
85376
85896
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
85377
85897
|
input: SpfUpdateCommentDataInput;
|
|
85378
85898
|
};
|
|
@@ -86012,6 +86532,7 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
86012
86532
|
clientInfo?: Maybe<OAuthClientsClientInfo>;
|
|
86013
86533
|
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
86014
86534
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
86535
|
+
scopesInfo?: Maybe<Array<OAuthClientsScopeInfo>>;
|
|
86015
86536
|
};
|
|
86016
86537
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
86017
86538
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -86033,6 +86554,11 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
86033
86554
|
};
|
|
86034
86555
|
export declare type OAuthClientsClientInfo = {
|
|
86035
86556
|
__typename?: 'OAuthClientsClientInfo';
|
|
86557
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
86558
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
86559
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
86560
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
86561
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
86036
86562
|
clientId: Scalars['String']['output'];
|
|
86037
86563
|
clientName?: Maybe<Scalars['String']['output']>;
|
|
86038
86564
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -86051,6 +86577,11 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
86051
86577
|
description?: Maybe<Scalars['String']['output']>;
|
|
86052
86578
|
key: Scalars['String']['output'];
|
|
86053
86579
|
};
|
|
86580
|
+
export declare type OAuthClientsScopeInfo = {
|
|
86581
|
+
__typename?: 'OAuthClientsScopeInfo';
|
|
86582
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
86583
|
+
key: Scalars['String']['output'];
|
|
86584
|
+
};
|
|
86054
86585
|
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
86055
86586
|
contextIds: Array<Scalars['ID']['input']>;
|
|
86056
86587
|
extensionId: Scalars['ID']['input'];
|
|
@@ -88438,6 +88969,7 @@ export declare type Query = {
|
|
|
88438
88969
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
88439
88970
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
88440
88971
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
88972
|
+
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
88441
88973
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
88442
88974
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
88443
88975
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
@@ -88478,6 +89010,9 @@ export declare type Query = {
|
|
|
88478
89010
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
88479
89011
|
apps?: Maybe<AppConnection>;
|
|
88480
89012
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89013
|
+
atlasGoalLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89014
|
+
atlasProjectsLinkedToGoals?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89015
|
+
atlasProjectsLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88481
89016
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
88482
89017
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
88483
89018
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -88768,6 +89303,7 @@ export declare type Query = {
|
|
|
88768
89303
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
88769
89304
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
88770
89305
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89306
|
+
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88771
89307
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
88772
89308
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
88773
89309
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -88925,6 +89461,7 @@ export declare type Query = {
|
|
|
88925
89461
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
88926
89462
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
88927
89463
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89464
|
+
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
88928
89465
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
88929
89466
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
88930
89467
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -89035,6 +89572,8 @@ export declare type Query = {
|
|
|
89035
89572
|
pricings: ContentPlatformPricingSearchConnection;
|
|
89036
89573
|
productListing?: Maybe<ProductListingResult>;
|
|
89037
89574
|
productListings: Array<ProductListingResult>;
|
|
89575
|
+
projects_byAri?: Maybe<TownsquareProject>;
|
|
89576
|
+
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
89038
89577
|
ptpage?: Maybe<PtPage>;
|
|
89039
89578
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
89040
89579
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -89107,6 +89646,9 @@ export declare type Query = {
|
|
|
89107
89646
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
89108
89647
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
89109
89648
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
89649
|
+
spf_ask?: Maybe<SpfAskResult>;
|
|
89650
|
+
spf_asks?: Maybe<SpfAskConnection>;
|
|
89651
|
+
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
89110
89652
|
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
89111
89653
|
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
89112
89654
|
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
@@ -89179,6 +89721,13 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
|
|
|
89179
89721
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89180
89722
|
orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
|
|
89181
89723
|
};
|
|
89724
|
+
export declare type QueryAdmin_AccessUrlsArgs = {
|
|
89725
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89726
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89727
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89728
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89729
|
+
orgId: Scalars['ID']['input'];
|
|
89730
|
+
};
|
|
89182
89731
|
export declare type QueryAgentAi_ContextPanelArgs = {
|
|
89183
89732
|
cloudId: Scalars['ID']['input'];
|
|
89184
89733
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89360,6 +89909,15 @@ export declare type QueryAppsArgs = {
|
|
|
89360
89909
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
89361
89910
|
cloudId: Scalars['ID']['input'];
|
|
89362
89911
|
};
|
|
89912
|
+
export declare type QueryAtlasGoalLinkedToIssueArgs = {
|
|
89913
|
+
issueId: Scalars['ID']['input'];
|
|
89914
|
+
};
|
|
89915
|
+
export declare type QueryAtlasProjectsLinkedToGoalsArgs = {
|
|
89916
|
+
goalId: Scalars['ID']['input'];
|
|
89917
|
+
};
|
|
89918
|
+
export declare type QueryAtlasProjectsLinkedToIssueArgs = {
|
|
89919
|
+
issueId: Scalars['ID']['input'];
|
|
89920
|
+
};
|
|
89363
89921
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
89364
89922
|
cloudId: Scalars['ID']['input'];
|
|
89365
89923
|
};
|
|
@@ -90663,6 +91221,11 @@ export declare type QueryContentWatchersArgs = {
|
|
|
90663
91221
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90664
91222
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
90665
91223
|
};
|
|
91224
|
+
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91225
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91227
|
+
projectId: Scalars['ID']['input'];
|
|
91228
|
+
};
|
|
90666
91229
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
90667
91230
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90668
91231
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -91225,6 +91788,12 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
91225
91788
|
cloudId: Scalars['ID']['input'];
|
|
91226
91789
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91227
91790
|
};
|
|
91791
|
+
export declare type QueryJira_FieldSchemesArgs = {
|
|
91792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91793
|
+
cloudId: Scalars['ID']['input'];
|
|
91794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91795
|
+
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
91796
|
+
};
|
|
91228
91797
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
91229
91798
|
cloudId: Scalars['ID']['input'];
|
|
91230
91799
|
};
|
|
@@ -91477,6 +92046,7 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
91477
92046
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91478
92047
|
cloudId: Scalars['ID']['input'];
|
|
91479
92048
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
92049
|
+
filters?: InputMaybe<JiraPlaybookExecutionFilter>;
|
|
91480
92050
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91481
92051
|
projectKey: Scalars['String']['input'];
|
|
91482
92052
|
};
|
|
@@ -91555,6 +92125,12 @@ export declare type QueryProductListingsArgs = {
|
|
|
91555
92125
|
ids: Array<Scalars['ID']['input']>;
|
|
91556
92126
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
91557
92127
|
};
|
|
92128
|
+
export declare type QueryProjects_ByAriArgs = {
|
|
92129
|
+
ari: Scalars['String']['input'];
|
|
92130
|
+
};
|
|
92131
|
+
export declare type QueryProjects_ByArisArgs = {
|
|
92132
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
92133
|
+
};
|
|
91558
92134
|
export declare type QueryPtpageArgs = {
|
|
91559
92135
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91560
92136
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91635,8 +92211,9 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
91635
92211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91636
92212
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
91637
92213
|
cloudId: Scalars['ID']['input'];
|
|
91638
|
-
entity
|
|
92214
|
+
entity?: InputMaybe<RadarPositionsByEntityType>;
|
|
91639
92215
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92216
|
+
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
91640
92217
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
91641
92218
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
91642
92219
|
};
|
|
@@ -91873,6 +92450,18 @@ export declare type QuerySpacesArgs = {
|
|
|
91873
92450
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
91874
92451
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
91875
92452
|
};
|
|
92453
|
+
export declare type QuerySpf_AskArgs = {
|
|
92454
|
+
id: Scalars['ID']['input'];
|
|
92455
|
+
};
|
|
92456
|
+
export declare type QuerySpf_AsksArgs = {
|
|
92457
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92458
|
+
cloudId: Scalars['ID']['input'];
|
|
92459
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92460
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
92461
|
+
};
|
|
92462
|
+
export declare type QuerySpf_AsksByIdsArgs = {
|
|
92463
|
+
ids: Array<Scalars['ID']['input']>;
|
|
92464
|
+
};
|
|
91876
92465
|
export declare type QuerySpf_DependenciesArgs = {
|
|
91877
92466
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91878
92467
|
cloudId: Scalars['ID']['input'];
|
|
@@ -92514,8 +93103,13 @@ export declare type RadarPositionsByEntityEdge = RadarEdge & {
|
|
|
92514
93103
|
cursor: Scalars['String']['output'];
|
|
92515
93104
|
node: RadarPositionsByEntity;
|
|
92516
93105
|
};
|
|
93106
|
+
export declare type RadarPositionsByEntityInput = {
|
|
93107
|
+
entity: RadarPositionsByEntityType;
|
|
93108
|
+
fieldValue?: InputMaybe<Scalars['ID']['input']>;
|
|
93109
|
+
};
|
|
92517
93110
|
export declare enum RadarPositionsByEntityType {
|
|
92518
|
-
FocusArea = "focusArea"
|
|
93111
|
+
FocusArea = "focusArea",
|
|
93112
|
+
Position = "position"
|
|
92519
93113
|
}
|
|
92520
93114
|
export declare type RadarPrincipalByResourceRole = {
|
|
92521
93115
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
@@ -92659,6 +93253,8 @@ export declare enum RateLimitingCurrency {
|
|
|
92659
93253
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
92660
93254
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
92661
93255
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
93256
|
+
DevConsoleMutationCurrency = "DEV_CONSOLE_MUTATION_CURRENCY",
|
|
93257
|
+
DevConsoleQueryCurrency = "DEV_CONSOLE_QUERY_CURRENCY",
|
|
92662
93258
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
92663
93259
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
92664
93260
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -94344,6 +94940,7 @@ export declare type SearchAnalyticsInput = {
|
|
|
94344
94940
|
queryVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
94345
94941
|
searchReferrerId?: InputMaybe<Scalars['String']['input']>;
|
|
94346
94942
|
searchSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
94943
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
94347
94944
|
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
94348
94945
|
};
|
|
94349
94946
|
export declare type SearchBoardFilter = {
|
|
@@ -97986,6 +98583,137 @@ export declare type SpaceWithExemption = {
|
|
|
97986
98583
|
status?: Maybe<Scalars['String']['output']>;
|
|
97987
98584
|
type?: Maybe<Scalars['String']['output']>;
|
|
97988
98585
|
};
|
|
98586
|
+
export declare type SpfAsk = Node & {
|
|
98587
|
+
__typename?: 'SpfAsk';
|
|
98588
|
+
comments?: Maybe<SpfAskCommentConnection>;
|
|
98589
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98590
|
+
createdBy?: Maybe<User>;
|
|
98591
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
98592
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
98593
|
+
id: Scalars['ID']['output'];
|
|
98594
|
+
impactedWork?: Maybe<SpfImpactedWork>;
|
|
98595
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
98596
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
98597
|
+
links?: Maybe<SpfAskLinkConnection>;
|
|
98598
|
+
name: Scalars['String']['output'];
|
|
98599
|
+
owner?: Maybe<User>;
|
|
98600
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
98601
|
+
priority: SpfAskPriority;
|
|
98602
|
+
receivingTeam?: Maybe<TeamV2>;
|
|
98603
|
+
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
98604
|
+
status: SpfAskStatus;
|
|
98605
|
+
submitter?: Maybe<User>;
|
|
98606
|
+
submitterId: Scalars['String']['output'];
|
|
98607
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
98608
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
98609
|
+
targetDate?: Maybe<SpfAskTargetDate>;
|
|
98610
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98611
|
+
updatedBy?: Maybe<User>;
|
|
98612
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
98613
|
+
};
|
|
98614
|
+
export declare type SpfAskCommentsArgs = {
|
|
98615
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98617
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
98618
|
+
};
|
|
98619
|
+
export declare type SpfAskLinksArgs = {
|
|
98620
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98621
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98622
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
98623
|
+
};
|
|
98624
|
+
export declare type SpfAskComment = {
|
|
98625
|
+
__typename?: 'SpfAskComment';
|
|
98626
|
+
askId: Scalars['String']['output'];
|
|
98627
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98628
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
98629
|
+
data: Scalars['String']['output'];
|
|
98630
|
+
id: Scalars['ID']['output'];
|
|
98631
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98632
|
+
};
|
|
98633
|
+
export declare type SpfAskCommentConnection = {
|
|
98634
|
+
__typename?: 'SpfAskCommentConnection';
|
|
98635
|
+
edges?: Maybe<Array<Maybe<SpfAskCommentEdge>>>;
|
|
98636
|
+
pageInfo: PageInfo;
|
|
98637
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
98638
|
+
};
|
|
98639
|
+
export declare type SpfAskCommentEdge = {
|
|
98640
|
+
__typename?: 'SpfAskCommentEdge';
|
|
98641
|
+
cursor: Scalars['String']['output'];
|
|
98642
|
+
node?: Maybe<SpfAskCommentResult>;
|
|
98643
|
+
};
|
|
98644
|
+
export declare type SpfAskCommentResult = QueryError | SpfAskComment;
|
|
98645
|
+
export declare type SpfAskConnection = {
|
|
98646
|
+
__typename?: 'SpfAskConnection';
|
|
98647
|
+
edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
|
|
98648
|
+
pageInfo: PageInfo;
|
|
98649
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
98650
|
+
};
|
|
98651
|
+
export declare type SpfAskEdge = {
|
|
98652
|
+
__typename?: 'SpfAskEdge';
|
|
98653
|
+
cursor: Scalars['String']['output'];
|
|
98654
|
+
node?: Maybe<SpfAskResult>;
|
|
98655
|
+
};
|
|
98656
|
+
export declare type SpfAskLink = {
|
|
98657
|
+
__typename?: 'SpfAskLink';
|
|
98658
|
+
askId: Scalars['String']['output'];
|
|
98659
|
+
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
98660
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
98661
|
+
id: Scalars['ID']['output'];
|
|
98662
|
+
url: Scalars['URL']['output'];
|
|
98663
|
+
};
|
|
98664
|
+
export declare type SpfAskLinkConnection = {
|
|
98665
|
+
__typename?: 'SpfAskLinkConnection';
|
|
98666
|
+
edges?: Maybe<Array<Maybe<SpfAskLinkEdge>>>;
|
|
98667
|
+
pageInfo: PageInfo;
|
|
98668
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
98669
|
+
};
|
|
98670
|
+
export declare type SpfAskLinkEdge = {
|
|
98671
|
+
__typename?: 'SpfAskLinkEdge';
|
|
98672
|
+
cursor: Scalars['String']['output'];
|
|
98673
|
+
node?: Maybe<SpfAskLinkResult>;
|
|
98674
|
+
};
|
|
98675
|
+
export declare type SpfAskLinkResult = QueryError | SpfAskLink;
|
|
98676
|
+
export declare enum SpfAskPriority {
|
|
98677
|
+
Critical = "CRITICAL",
|
|
98678
|
+
High = "HIGH",
|
|
98679
|
+
Highest = "HIGHEST",
|
|
98680
|
+
Low = "LOW",
|
|
98681
|
+
Medium = "MEDIUM"
|
|
98682
|
+
}
|
|
98683
|
+
export declare type SpfAskResult = QueryError | SpfAsk;
|
|
98684
|
+
export declare enum SpfAskStatus {
|
|
98685
|
+
Accepted = "ACCEPTED",
|
|
98686
|
+
Canceled = "CANCELED",
|
|
98687
|
+
Denied = "DENIED",
|
|
98688
|
+
Draft = "DRAFT",
|
|
98689
|
+
InReview = "IN_REVIEW",
|
|
98690
|
+
Revising = "REVISING",
|
|
98691
|
+
Submitted = "SUBMITTED"
|
|
98692
|
+
}
|
|
98693
|
+
export declare type SpfAskTargetDate = {
|
|
98694
|
+
__typename?: 'SpfAskTargetDate';
|
|
98695
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
98696
|
+
targetDateType?: Maybe<SpfAskTargetDateType>;
|
|
98697
|
+
};
|
|
98698
|
+
export declare type SpfAskTargetDateInput = {
|
|
98699
|
+
targetDate: Scalars['String']['input'];
|
|
98700
|
+
targetDateType: SpfAskTargetDateType;
|
|
98701
|
+
};
|
|
98702
|
+
export declare enum SpfAskTargetDateType {
|
|
98703
|
+
Day = "DAY",
|
|
98704
|
+
Month = "MONTH",
|
|
98705
|
+
Quarter = "QUARTER"
|
|
98706
|
+
}
|
|
98707
|
+
export declare type SpfAttachAskLinkInput = {
|
|
98708
|
+
askId: Scalars['ID']['input'];
|
|
98709
|
+
url: Scalars['URL']['input'];
|
|
98710
|
+
};
|
|
98711
|
+
export declare type SpfAttachAskLinkPayload = Payload & {
|
|
98712
|
+
__typename?: 'SpfAttachAskLinkPayload';
|
|
98713
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98714
|
+
link?: Maybe<SpfAskLink>;
|
|
98715
|
+
success: Scalars['Boolean']['output'];
|
|
98716
|
+
};
|
|
97989
98717
|
export declare type SpfAttachRelatedContentInput = {
|
|
97990
98718
|
dependencyId: Scalars['ID']['input'];
|
|
97991
98719
|
url: Scalars['URL']['input'];
|
|
@@ -98017,6 +98745,36 @@ export declare type SpfCommentEdge = {
|
|
|
98017
98745
|
node?: Maybe<SpfCommentResult>;
|
|
98018
98746
|
};
|
|
98019
98747
|
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
98748
|
+
export declare type SpfCreateAskCommentInput = {
|
|
98749
|
+
askId: Scalars['ID']['input'];
|
|
98750
|
+
data: Scalars['String']['input'];
|
|
98751
|
+
};
|
|
98752
|
+
export declare type SpfCreateAskCommentPayload = Payload & {
|
|
98753
|
+
__typename?: 'SpfCreateAskCommentPayload';
|
|
98754
|
+
comment?: Maybe<SpfAskComment>;
|
|
98755
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98756
|
+
success: Scalars['Boolean']['output'];
|
|
98757
|
+
};
|
|
98758
|
+
export declare type SpfCreateAskInput = {
|
|
98759
|
+
cloudId: Scalars['ID']['input'];
|
|
98760
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
98761
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
98762
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
98763
|
+
name: Scalars['String']['input'];
|
|
98764
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
98765
|
+
priority: SpfAskPriority;
|
|
98766
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
98767
|
+
status: SpfAskStatus;
|
|
98768
|
+
submitterId: Scalars['String']['input'];
|
|
98769
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
98770
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
98771
|
+
};
|
|
98772
|
+
export declare type SpfCreateAskPayload = Payload & {
|
|
98773
|
+
__typename?: 'SpfCreateAskPayload';
|
|
98774
|
+
ask?: Maybe<SpfAsk>;
|
|
98775
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98776
|
+
success: Scalars['Boolean']['output'];
|
|
98777
|
+
};
|
|
98020
98778
|
export declare type SpfCreateCommentInput = {
|
|
98021
98779
|
data: Scalars['String']['input'];
|
|
98022
98780
|
dependencyId: Scalars['ID']['input'];
|
|
@@ -98047,6 +98805,15 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
98047
98805
|
errors?: Maybe<Array<MutationError>>;
|
|
98048
98806
|
success: Scalars['Boolean']['output'];
|
|
98049
98807
|
};
|
|
98808
|
+
export declare type SpfDeleteAskInput = {
|
|
98809
|
+
id: Scalars['ID']['input'];
|
|
98810
|
+
};
|
|
98811
|
+
export declare type SpfDeleteAskPayload = Payload & {
|
|
98812
|
+
__typename?: 'SpfDeleteAskPayload';
|
|
98813
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98814
|
+
id: Scalars['ID']['output'];
|
|
98815
|
+
success: Scalars['Boolean']['output'];
|
|
98816
|
+
};
|
|
98050
98817
|
export declare type SpfDeleteDependencyInput = {
|
|
98051
98818
|
id: Scalars['ID']['input'];
|
|
98052
98819
|
};
|
|
@@ -98156,6 +98923,66 @@ export declare enum SpfTargetDateType {
|
|
|
98156
98923
|
Month = "MONTH",
|
|
98157
98924
|
Quarter = "QUARTER"
|
|
98158
98925
|
}
|
|
98926
|
+
export declare type SpfUpdateAskCommentDataInput = {
|
|
98927
|
+
data: Scalars['String']['input'];
|
|
98928
|
+
id: Scalars['ID']['input'];
|
|
98929
|
+
};
|
|
98930
|
+
export declare type SpfUpdateAskCommentPayload = Payload & {
|
|
98931
|
+
__typename?: 'SpfUpdateAskCommentPayload';
|
|
98932
|
+
comment?: Maybe<SpfAskComment>;
|
|
98933
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98934
|
+
success: Scalars['Boolean']['output'];
|
|
98935
|
+
};
|
|
98936
|
+
export declare type SpfUpdateAskDescriptionInput = {
|
|
98937
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
98938
|
+
id: Scalars['ID']['input'];
|
|
98939
|
+
};
|
|
98940
|
+
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
98941
|
+
id: Scalars['ID']['input'];
|
|
98942
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
98943
|
+
};
|
|
98944
|
+
export declare type SpfUpdateAskJustificationInput = {
|
|
98945
|
+
id: Scalars['ID']['input'];
|
|
98946
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
98947
|
+
};
|
|
98948
|
+
export declare type SpfUpdateAskNameInput = {
|
|
98949
|
+
id: Scalars['ID']['input'];
|
|
98950
|
+
name: Scalars['String']['input'];
|
|
98951
|
+
};
|
|
98952
|
+
export declare type SpfUpdateAskOwnerInput = {
|
|
98953
|
+
id: Scalars['ID']['input'];
|
|
98954
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
98955
|
+
};
|
|
98956
|
+
export declare type SpfUpdateAskPayload = Payload & {
|
|
98957
|
+
__typename?: 'SpfUpdateAskPayload';
|
|
98958
|
+
ask?: Maybe<SpfAsk>;
|
|
98959
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98960
|
+
success: Scalars['Boolean']['output'];
|
|
98961
|
+
};
|
|
98962
|
+
export declare type SpfUpdateAskPriorityInput = {
|
|
98963
|
+
id: Scalars['ID']['input'];
|
|
98964
|
+
priority: SpfAskPriority;
|
|
98965
|
+
};
|
|
98966
|
+
export declare type SpfUpdateAskReceivingTeamInput = {
|
|
98967
|
+
id: Scalars['ID']['input'];
|
|
98968
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
98969
|
+
};
|
|
98970
|
+
export declare type SpfUpdateAskStatusInput = {
|
|
98971
|
+
id: Scalars['ID']['input'];
|
|
98972
|
+
status: SpfAskStatus;
|
|
98973
|
+
};
|
|
98974
|
+
export declare type SpfUpdateAskSubmitterInput = {
|
|
98975
|
+
id: Scalars['ID']['input'];
|
|
98976
|
+
submitterId: Scalars['String']['input'];
|
|
98977
|
+
};
|
|
98978
|
+
export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
98979
|
+
id: Scalars['ID']['input'];
|
|
98980
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
98981
|
+
};
|
|
98982
|
+
export declare type SpfUpdateAskTargetDateInput = {
|
|
98983
|
+
id: Scalars['ID']['input'];
|
|
98984
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
98985
|
+
};
|
|
98159
98986
|
export declare type SpfUpdateCommentDataInput = {
|
|
98160
98987
|
data: Scalars['String']['input'];
|
|
98161
98988
|
id: Scalars['ID']['input'];
|
|
@@ -99483,6 +100310,7 @@ export declare type TenantContext = {
|
|
|
99483
100310
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
99484
100311
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
99485
100312
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100313
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
99486
100314
|
};
|
|
99487
100315
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
99488
100316
|
product: Scalars['String']['input'];
|
|
@@ -101774,6 +102602,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
101774
102602
|
export declare type TrelloCardClause = {
|
|
101775
102603
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
101776
102604
|
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
102605
|
+
ids?: InputMaybe<TrelloCardIdsClause>;
|
|
101777
102606
|
list?: InputMaybe<TrelloCardListClause>;
|
|
101778
102607
|
};
|
|
101779
102608
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -101882,6 +102711,9 @@ export declare enum TrelloCardExternalSource {
|
|
|
101882
102711
|
Siri = "SIRI",
|
|
101883
102712
|
Slack = "SLACK"
|
|
101884
102713
|
}
|
|
102714
|
+
export declare type TrelloCardIdsClause = {
|
|
102715
|
+
cards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102716
|
+
};
|
|
101885
102717
|
export declare type TrelloCardLabelEdgeUpdated = {
|
|
101886
102718
|
__typename?: 'TrelloCardLabelEdgeUpdated';
|
|
101887
102719
|
node: TrelloLabelId;
|
|
@@ -102028,6 +102860,7 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
102028
102860
|
};
|
|
102029
102861
|
export declare type TrelloChecklistDeleted = {
|
|
102030
102862
|
__typename?: 'TrelloChecklistDeleted';
|
|
102863
|
+
id: Scalars['ID']['output'];
|
|
102031
102864
|
objectId: Scalars['ID']['output'];
|
|
102032
102865
|
};
|
|
102033
102866
|
export declare type TrelloChecklistEdge = {
|
|
@@ -105299,6 +106132,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
105299
106132
|
export declare type UpdateJiraPlaybookInput = {
|
|
105300
106133
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
105301
106134
|
id: Scalars['ID']['input'];
|
|
106135
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
105302
106136
|
name: Scalars['String']['input'];
|
|
105303
106137
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
105304
106138
|
scopeType: JiraPlaybookScopeType;
|