@forge/cli-shared 4.1.0 → 4.2.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +130 -94
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/feature-flag-service.d.ts +2 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 4.2.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6f17340]
|
|
8
|
+
- @forge/manifest@7.2.2-next.0
|
|
9
|
+
|
|
10
|
+
## 4.2.0-next.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 35b01cd: Move tunnel to Cloudflare
|
|
15
|
+
|
|
3
16
|
## 4.1.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -1790,7 +1790,6 @@ export declare type Backlog = {
|
|
|
1790
1790
|
extension?: Maybe<BacklogExtension>;
|
|
1791
1791
|
labels: Array<Maybe<Scalars['String']['output']>>;
|
|
1792
1792
|
requestColumnMigration: Scalars['Boolean']['output'];
|
|
1793
|
-
viewConfig?: Maybe<ViewConfig>;
|
|
1794
1793
|
};
|
|
1795
1794
|
export declare type BacklogCardsArgs = {
|
|
1796
1795
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -2635,6 +2634,7 @@ export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
|
2635
2634
|
__typename?: 'CcpTransactionAccount';
|
|
2636
2635
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
2637
2636
|
id: Scalars['ID']['output'];
|
|
2637
|
+
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
2638
2638
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2639
2639
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
2640
2640
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -2837,6 +2837,7 @@ export declare type CommerceSubscription = {
|
|
|
2837
2837
|
};
|
|
2838
2838
|
export declare type CommerceTransactionAccount = {
|
|
2839
2839
|
experienceCapabilities?: Maybe<CommerceTransactionAccountExperienceCapabilities>;
|
|
2840
|
+
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
2840
2841
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2841
2842
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
2842
2843
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -9712,7 +9713,9 @@ export declare type DevOps = {
|
|
|
9712
9713
|
providers?: Maybe<DevOpsProviders>;
|
|
9713
9714
|
providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
9714
9715
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
9716
|
+
summarisedBuildsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedBuilds>>>;
|
|
9715
9717
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
9718
|
+
summarisedDeploymentsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
9716
9719
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
9717
9720
|
toolchain?: Maybe<Toolchain>;
|
|
9718
9721
|
};
|
|
@@ -9742,9 +9745,15 @@ export declare type DevOpsProvidersByIdsArgs = {
|
|
|
9742
9745
|
providerIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9743
9746
|
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
9744
9747
|
};
|
|
9748
|
+
export declare type DevOpsSummarisedBuildsByAgsIssuesArgs = {
|
|
9749
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9750
|
+
};
|
|
9745
9751
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
9746
9752
|
ids: Array<Scalars['ID']['input']>;
|
|
9747
9753
|
};
|
|
9754
|
+
export declare type DevOpsSummarisedDeploymentsByAgsIssuesArgs = {
|
|
9755
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9756
|
+
};
|
|
9748
9757
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
9749
9758
|
ids: Array<Scalars['ID']['input']>;
|
|
9750
9759
|
};
|
|
@@ -10319,6 +10328,7 @@ export declare type DevOpsOperationsIncidentDetails = {
|
|
|
10319
10328
|
description?: Maybe<Scalars['String']['output']>;
|
|
10320
10329
|
id: Scalars['ID']['output'];
|
|
10321
10330
|
linkedPostIncidentReviews?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
10331
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
10322
10332
|
severity?: Maybe<DevOpsOperationsIncidentSeverity>;
|
|
10323
10333
|
status?: Maybe<DevOpsOperationsIncidentStatus>;
|
|
10324
10334
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -10843,6 +10853,7 @@ export declare type DevOpsSummarisedBuilds = {
|
|
|
10843
10853
|
__typename?: 'DevOpsSummarisedBuilds';
|
|
10844
10854
|
buildStates?: Maybe<Array<Maybe<DevOpsSummarisedBuildState>>>;
|
|
10845
10855
|
count?: Maybe<Scalars['Int']['output']>;
|
|
10856
|
+
id: Scalars['ID']['output'];
|
|
10846
10857
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10847
10858
|
mostRelevantCount?: Maybe<Scalars['Int']['output']>;
|
|
10848
10859
|
singleClickUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -10854,6 +10865,7 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
10854
10865
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
10855
10866
|
deploymentState?: Maybe<DeploymentState>;
|
|
10856
10867
|
entityId: Scalars['ID']['output'];
|
|
10868
|
+
id: Scalars['ID']['output'];
|
|
10857
10869
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10858
10870
|
mostRelevantCount?: Maybe<Scalars['Int']['output']>;
|
|
10859
10871
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -25846,6 +25858,7 @@ export declare type HamsSubscription = CommerceSubscription & {
|
|
|
25846
25858
|
export declare type HamsTransactionAccount = CommerceTransactionAccount & {
|
|
25847
25859
|
__typename?: 'HamsTransactionAccount';
|
|
25848
25860
|
experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
|
|
25861
|
+
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
25849
25862
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
25850
25863
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
25851
25864
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -28474,9 +28487,11 @@ export declare type JiraAppNavigationConfig = {
|
|
|
28474
28487
|
};
|
|
28475
28488
|
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28476
28489
|
__typename?: 'JiraAppNavigationItem';
|
|
28490
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
28477
28491
|
appType?: Maybe<JiraAppType>;
|
|
28478
28492
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28479
28493
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28494
|
+
envLabel?: Maybe<Scalars['String']['output']>;
|
|
28480
28495
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28481
28496
|
id: Scalars['ID']['output'];
|
|
28482
28497
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28895,6 +28910,13 @@ export declare type JiraAvatar = {
|
|
|
28895
28910
|
small?: Maybe<Scalars['String']['output']>;
|
|
28896
28911
|
xsmall?: Maybe<Scalars['String']['output']>;
|
|
28897
28912
|
};
|
|
28913
|
+
export declare type JiraBackgroundUploadToken = {
|
|
28914
|
+
__typename?: 'JiraBackgroundUploadToken';
|
|
28915
|
+
targetCollection?: Maybe<Scalars['String']['output']>;
|
|
28916
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
28917
|
+
tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
28918
|
+
};
|
|
28919
|
+
export declare type JiraBackgroundUploadTokenResult = JiraBackgroundUploadToken | QueryError;
|
|
28898
28920
|
export declare type JiraBitbucketDevOpsProvider = JiraDevOpsProvider & {
|
|
28899
28921
|
__typename?: 'JiraBitbucketDevOpsProvider';
|
|
28900
28922
|
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
@@ -29003,19 +29025,6 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
29003
29025
|
RemoveAll = "REMOVE_ALL",
|
|
29004
29026
|
Replace = "REPLACE"
|
|
29005
29027
|
}
|
|
29006
|
-
export declare type JiraBulkEditResponse = {
|
|
29007
|
-
__typename?: 'JiraBulkEditResponse';
|
|
29008
|
-
bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
|
|
29009
|
-
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
29010
|
-
totalIssues?: Maybe<Scalars['Int']['output']>;
|
|
29011
|
-
};
|
|
29012
|
-
export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
29013
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29014
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
29015
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29016
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29017
|
-
search?: InputMaybe<JiraBulkEditFieldsSearch>;
|
|
29018
|
-
};
|
|
29019
29028
|
export declare type JiraBulkOperationInput = {
|
|
29020
29029
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
29021
29030
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
@@ -29055,17 +29064,6 @@ export declare type JiraBulkTransitionEdge = {
|
|
|
29055
29064
|
cursor: Scalars['String']['output'];
|
|
29056
29065
|
node?: Maybe<JiraBulkTransition>;
|
|
29057
29066
|
};
|
|
29058
|
-
export declare type JiraBulkTransitionResponse = {
|
|
29059
|
-
__typename?: 'JiraBulkTransitionResponse';
|
|
29060
|
-
bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
|
|
29061
|
-
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
29062
|
-
};
|
|
29063
|
-
export declare type JiraBulkTransitionResponseBulkTransitionsArgs = {
|
|
29064
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29065
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
29066
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29067
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29068
|
-
};
|
|
29069
29067
|
export declare type JiraBulkTransitionScreenConnection = {
|
|
29070
29068
|
__typename?: 'JiraBulkTransitionScreenConnection';
|
|
29071
29069
|
edges?: Maybe<Array<Maybe<JiraBulkTransitionScreenEdge>>>;
|
|
@@ -34999,6 +34997,8 @@ export declare type JiraProject = Node & {
|
|
|
34999
34997
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
35000
34998
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
35001
34999
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
35000
|
+
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
35001
|
+
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
35002
35002
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
35003
35003
|
key: Scalars['String']['output'];
|
|
35004
35004
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -35395,6 +35395,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
35395
35395
|
export declare type JiraProjectFieldProjectsArgs = {
|
|
35396
35396
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35397
35397
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
35398
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
35398
35399
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35399
35400
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35400
35401
|
recent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35651,6 +35652,7 @@ export declare type JiraQuery = {
|
|
|
35651
35652
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
35652
35653
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
35653
35654
|
attachmentSearch?: Maybe<JiraAttachmentConnection>;
|
|
35655
|
+
backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
|
|
35654
35656
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
35655
35657
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
35656
35658
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
@@ -35702,8 +35704,6 @@ export declare type JiraQuery = {
|
|
|
35702
35704
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
35703
35705
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
35704
35706
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
35705
|
-
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
35706
|
-
jiraBulkEditTransitions?: Maybe<JiraBulkTransitionResponse>;
|
|
35707
35707
|
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
35708
35708
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
35709
35709
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -35848,6 +35848,10 @@ export declare type JiraQueryAttachmentSearchArgs = {
|
|
|
35848
35848
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35849
35849
|
projectKeys: Array<Scalars['String']['input']>;
|
|
35850
35850
|
};
|
|
35851
|
+
export declare type JiraQueryBackgroundUploadTokenArgs = {
|
|
35852
|
+
cloudId: Scalars['ID']['input'];
|
|
35853
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
35854
|
+
};
|
|
35851
35855
|
export declare type JiraQueryBooleanUserPropertyArgs = {
|
|
35852
35856
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
35853
35857
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36083,12 +36087,6 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
36083
36087
|
cloudId: Scalars['ID']['input'];
|
|
36084
36088
|
keys: Array<Scalars['String']['input']>;
|
|
36085
36089
|
};
|
|
36086
|
-
export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
36087
|
-
issueIds: Array<Scalars['ID']['input']>;
|
|
36088
|
-
};
|
|
36089
|
-
export declare type JiraQueryJiraBulkEditTransitionsArgs = {
|
|
36090
|
-
issueIds: Array<Scalars['ID']['input']>;
|
|
36091
|
-
};
|
|
36092
36090
|
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
36093
36091
|
input: Array<JiraBulkTransitionScreenInput>;
|
|
36094
36092
|
};
|
|
@@ -38430,16 +38428,25 @@ export declare enum JiraSoftwareSimpleNavigationItemEnum {
|
|
|
38430
38428
|
}
|
|
38431
38429
|
export declare type JiraSprint = Node & {
|
|
38432
38430
|
__typename?: 'JiraSprint';
|
|
38431
|
+
boardId?: Maybe<Scalars['Long']['output']>;
|
|
38433
38432
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
38434
38433
|
completionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
38435
38434
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
38436
38435
|
goal?: Maybe<Scalars['String']['output']>;
|
|
38437
38436
|
id: Scalars['ID']['output'];
|
|
38438
38437
|
name?: Maybe<Scalars['String']['output']>;
|
|
38438
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
38439
38439
|
sprintId: Scalars['String']['output'];
|
|
38440
|
+
sprintProgress?: Maybe<JiraSprintProgress>;
|
|
38440
38441
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
38441
38442
|
state?: Maybe<JiraSprintState>;
|
|
38442
38443
|
};
|
|
38444
|
+
export declare type JiraSprintProjectsArgs = {
|
|
38445
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38446
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38448
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38449
|
+
};
|
|
38443
38450
|
export declare type JiraSprintConnection = {
|
|
38444
38451
|
__typename?: 'JiraSprintConnection';
|
|
38445
38452
|
edges?: Maybe<Array<Maybe<JiraSprintEdge>>>;
|
|
@@ -38515,6 +38522,17 @@ export declare type JiraSprintMutationPayload = Payload & {
|
|
|
38515
38522
|
jiraSprint?: Maybe<JiraSprint>;
|
|
38516
38523
|
success: Scalars['Boolean']['output'];
|
|
38517
38524
|
};
|
|
38525
|
+
export declare type JiraSprintProgress = {
|
|
38526
|
+
__typename?: 'JiraSprintProgress';
|
|
38527
|
+
estimationType?: Maybe<Scalars['String']['output']>;
|
|
38528
|
+
statusCategoryProgress?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
38529
|
+
};
|
|
38530
|
+
export declare type JiraSprintProgressStatusCategoryProgressArgs = {
|
|
38531
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38532
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38533
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38534
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38535
|
+
};
|
|
38518
38536
|
export declare enum JiraSprintState {
|
|
38519
38537
|
Active = "ACTIVE",
|
|
38520
38538
|
Closed = "CLOSED",
|
|
@@ -38562,6 +38580,23 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
38562
38580
|
type: Scalars['String']['output'];
|
|
38563
38581
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38564
38582
|
};
|
|
38583
|
+
export declare type JiraStatusCategoryProgress = {
|
|
38584
|
+
__typename?: 'JiraStatusCategoryProgress';
|
|
38585
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
38586
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
38587
|
+
};
|
|
38588
|
+
export declare type JiraStatusCategoryProgressConnection = {
|
|
38589
|
+
__typename?: 'JiraStatusCategoryProgressConnection';
|
|
38590
|
+
edges?: Maybe<Array<Maybe<JiraStatusCategoryProgressEdge>>>;
|
|
38591
|
+
errors?: Maybe<Array<QueryError>>;
|
|
38592
|
+
pageInfo: PageInfo;
|
|
38593
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38594
|
+
};
|
|
38595
|
+
export declare type JiraStatusCategoryProgressEdge = {
|
|
38596
|
+
__typename?: 'JiraStatusCategoryProgressEdge';
|
|
38597
|
+
cursor: Scalars['String']['output'];
|
|
38598
|
+
node?: Maybe<JiraStatusCategoryProgress>;
|
|
38599
|
+
};
|
|
38565
38600
|
export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38566
38601
|
__typename?: 'JiraStatusField';
|
|
38567
38602
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40583,8 +40618,7 @@ export declare type JsmChatChannelRequestTypeMapping = {
|
|
|
40583
40618
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
40584
40619
|
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40585
40620
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
40586
|
-
|
|
40587
|
-
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40621
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
|
|
40588
40622
|
settings?: Maybe<JsmChatChannelSettings>;
|
|
40589
40623
|
};
|
|
40590
40624
|
export declare type JsmChatChannelSettings = {
|
|
@@ -40598,15 +40632,11 @@ export declare enum JsmChatChannelType {
|
|
|
40598
40632
|
Request = "REQUEST"
|
|
40599
40633
|
}
|
|
40600
40634
|
export declare type JsmChatCreateChannelInput = {
|
|
40601
|
-
aaid: Scalars['String']['input'];
|
|
40602
|
-
activationId: Scalars['String']['input'];
|
|
40603
40635
|
channelName: Scalars['String']['input'];
|
|
40604
40636
|
channelType: JsmChatChannelType;
|
|
40605
|
-
|
|
40637
|
+
isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40606
40638
|
isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40607
|
-
|
|
40608
|
-
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40609
|
-
siteId: Scalars['String']['input'];
|
|
40639
|
+
requestTypeIds: Array<Scalars['String']['input']>;
|
|
40610
40640
|
};
|
|
40611
40641
|
export declare type JsmChatCreateChannelOutput = {
|
|
40612
40642
|
__typename?: 'JsmChatCreateChannelOutput';
|
|
@@ -40657,6 +40687,7 @@ export declare type JsmChatMutation = {
|
|
|
40657
40687
|
};
|
|
40658
40688
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
40659
40689
|
input?: InputMaybe<JsmChatCreateChannelInput>;
|
|
40690
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
40660
40691
|
};
|
|
40661
40692
|
export declare type JsmChatMutationCreateCommentArgs = {
|
|
40662
40693
|
input: JsmChatCreateCommentInput;
|
|
@@ -40666,6 +40697,8 @@ export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
|
40666
40697
|
};
|
|
40667
40698
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
40668
40699
|
input: JsmChatUpdateChannelSettingsInput;
|
|
40700
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
40701
|
+
slackChannelAri?: InputMaybe<Scalars['ID']['input']>;
|
|
40669
40702
|
};
|
|
40670
40703
|
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
40671
40704
|
input: JsmChatUpdateProjectSettingsInput;
|
|
@@ -40703,10 +40736,16 @@ export declare type JsmChatQueryInitializeConfigArgs = {
|
|
|
40703
40736
|
export declare type JsmChatQueryInitializeNativeConfigArgs = {
|
|
40704
40737
|
jiraProjectAri: Scalars['ID']['input'];
|
|
40705
40738
|
};
|
|
40739
|
+
export declare type JsmChatRequestTypesMappedResponse = {
|
|
40740
|
+
__typename?: 'JsmChatRequestTypesMappedResponse';
|
|
40741
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
40742
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40743
|
+
};
|
|
40706
40744
|
export declare type JsmChatSlackConfig = {
|
|
40707
40745
|
__typename?: 'JsmChatSlackConfig';
|
|
40708
40746
|
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40709
40747
|
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40748
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
40710
40749
|
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40711
40750
|
siteId: Scalars['ID']['output'];
|
|
40712
40751
|
slackTeamDomain?: Maybe<Scalars['String']['output']>;
|
|
@@ -40716,14 +40755,9 @@ export declare type JsmChatSlackConfig = {
|
|
|
40716
40755
|
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40717
40756
|
};
|
|
40718
40757
|
export declare type JsmChatUpdateChannelSettingsInput = {
|
|
40719
|
-
|
|
40720
|
-
|
|
40721
|
-
|
|
40722
|
-
projectId: Scalars['String']['input'];
|
|
40723
|
-
requestTypeIds: Array<Scalars['String']['input']>;
|
|
40724
|
-
siteId: Scalars['String']['input'];
|
|
40725
|
-
teamId: Scalars['String']['input'];
|
|
40726
|
-
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
40758
|
+
isDeflectionChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40759
|
+
isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40760
|
+
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40727
40761
|
};
|
|
40728
40762
|
export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
40729
40763
|
__typename?: 'JsmChatUpdateChannelSettingsOutput';
|
|
@@ -42149,7 +42183,6 @@ export declare type Mutation = {
|
|
|
42149
42183
|
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
42150
42184
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
42151
42185
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
42152
|
-
setViewConfig?: Maybe<SetViewConfigOutput>;
|
|
42153
42186
|
shepherd?: Maybe<ShepherdMutation>;
|
|
42154
42187
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
42155
42188
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -42494,9 +42527,6 @@ export declare type MutationSetSwimlaneStrategyArgs = {
|
|
|
42494
42527
|
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
42495
42528
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
42496
42529
|
};
|
|
42497
|
-
export declare type MutationSetViewConfigArgs = {
|
|
42498
|
-
input?: InputMaybe<SetViewConfigInput>;
|
|
42499
|
-
};
|
|
42500
42530
|
export declare type MutationSplitIssueArgs = {
|
|
42501
42531
|
input?: InputMaybe<SplitIssueInput>;
|
|
42502
42532
|
};
|
|
@@ -47259,19 +47289,6 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
47259
47289
|
strategy: SwimlaneStrategy;
|
|
47260
47290
|
success: Scalars['Boolean']['output'];
|
|
47261
47291
|
};
|
|
47262
|
-
export declare type SetViewConfigInput = {
|
|
47263
|
-
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
47264
|
-
id: Scalars['ID']['input'];
|
|
47265
|
-
};
|
|
47266
|
-
export declare type SetViewConfigOutput = MutationResponse & {
|
|
47267
|
-
__typename?: 'SetViewConfigOutput';
|
|
47268
|
-
clientMutationId?: Maybe<Scalars['ID']['output']>;
|
|
47269
|
-
message: Scalars['String']['output'];
|
|
47270
|
-
modifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
47271
|
-
statusCode: Scalars['Int']['output'];
|
|
47272
|
-
success: Scalars['Boolean']['output'];
|
|
47273
|
-
viewConfig?: Maybe<ViewConfig>;
|
|
47274
|
-
};
|
|
47275
47292
|
export declare enum ShepherdActionType {
|
|
47276
47293
|
Activate = "ACTIVATE",
|
|
47277
47294
|
Archive = "ARCHIVE",
|
|
@@ -47473,6 +47490,7 @@ export declare enum ShepherdAlertStatus {
|
|
|
47473
47490
|
}
|
|
47474
47491
|
export declare type ShepherdAlertSupportingData = {
|
|
47475
47492
|
__typename?: 'ShepherdAlertSupportingData';
|
|
47493
|
+
bitbucketDetectionHighlight?: Maybe<ShepherdBitbucketDetectionHighlight>;
|
|
47476
47494
|
customDetectionHighlight?: Maybe<ShepherdCustomDetectionHighlight>;
|
|
47477
47495
|
highlight: ShepherdHighlight;
|
|
47478
47496
|
marketplaceAppHighlight?: Maybe<ShepherdMarketplaceAppHighlight>;
|
|
@@ -47584,12 +47602,27 @@ export declare type ShepherdAuditLogContext = {
|
|
|
47584
47602
|
attributes: Array<ShepherdAuditLogAttribute>;
|
|
47585
47603
|
id: Scalars['String']['output'];
|
|
47586
47604
|
};
|
|
47605
|
+
export declare type ShepherdBitbucketDetectionHighlight = {
|
|
47606
|
+
__typename?: 'ShepherdBitbucketDetectionHighlight';
|
|
47607
|
+
repository?: Maybe<ShepherdBitbucketRepositoryInfo>;
|
|
47608
|
+
workspace?: Maybe<ShepherdBitbucketWorkspaceInfo>;
|
|
47609
|
+
};
|
|
47610
|
+
export declare type ShepherdBitbucketRepositoryInfo = {
|
|
47611
|
+
__typename?: 'ShepherdBitbucketRepositoryInfo';
|
|
47612
|
+
name: Scalars['String']['output'];
|
|
47613
|
+
url: Scalars['URL']['output'];
|
|
47614
|
+
};
|
|
47587
47615
|
export declare type ShepherdBitbucketWorkspace = {
|
|
47588
47616
|
__typename?: 'ShepherdBitbucketWorkspace';
|
|
47589
47617
|
ari: Scalars['ID']['output'];
|
|
47590
47618
|
slug?: Maybe<Scalars['String']['output']>;
|
|
47591
47619
|
url?: Maybe<Scalars['String']['output']>;
|
|
47592
47620
|
};
|
|
47621
|
+
export declare type ShepherdBitbucketWorkspaceInfo = {
|
|
47622
|
+
__typename?: 'ShepherdBitbucketWorkspaceInfo';
|
|
47623
|
+
name: Scalars['String']['output'];
|
|
47624
|
+
url: Scalars['URL']['output'];
|
|
47625
|
+
};
|
|
47593
47626
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
47594
47627
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
47595
47628
|
category: Scalars['String']['output'];
|
|
@@ -51444,7 +51477,8 @@ export declare type UnifiedMutation = {
|
|
|
51444
51477
|
__typename?: 'UnifiedMutation';
|
|
51445
51478
|
createLinkedAccount: UnifiedLinkedCreateAccountUnion;
|
|
51446
51479
|
createParentAccount: UnifiedCreateAccountUnion;
|
|
51447
|
-
|
|
51480
|
+
createUnifiedSystem: UnifiedSystemCreateAccountUnion;
|
|
51481
|
+
updateUnifiedProfile: UnifiedCreateProfileUnion;
|
|
51448
51482
|
};
|
|
51449
51483
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
51450
51484
|
input: UnifiedLinkedAccountInput;
|
|
@@ -51452,7 +51486,10 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
|
51452
51486
|
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
51453
51487
|
input: UnifiedParentAccountInput;
|
|
51454
51488
|
};
|
|
51455
|
-
export declare type
|
|
51489
|
+
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
51490
|
+
input: UnifiedSystemInput;
|
|
51491
|
+
};
|
|
51492
|
+
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
51456
51493
|
input: UnifiedProfileInput;
|
|
51457
51494
|
};
|
|
51458
51495
|
export declare type UnifiedParentAccount = {
|
|
@@ -51473,11 +51510,14 @@ export declare type UnifiedProfile = {
|
|
|
51473
51510
|
location?: Maybe<Scalars['String']['output']>;
|
|
51474
51511
|
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
51475
51512
|
photoUrl?: Maybe<Scalars['String']['output']>;
|
|
51513
|
+
products?: Maybe<Scalars['String']['output']>;
|
|
51476
51514
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
51477
51515
|
role?: Maybe<Scalars['String']['output']>;
|
|
51478
|
-
|
|
51479
|
-
|
|
51516
|
+
unifiedProfileInternalId?: Maybe<Scalars['ID']['output']>;
|
|
51517
|
+
unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
|
|
51480
51518
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
51519
|
+
xUrl?: Maybe<Scalars['String']['output']>;
|
|
51520
|
+
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
51481
51521
|
};
|
|
51482
51522
|
export declare type UnifiedProfileInput = {
|
|
51483
51523
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -51488,11 +51528,15 @@ export declare type UnifiedProfileInput = {
|
|
|
51488
51528
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
51489
51529
|
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
51490
51530
|
photoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51531
|
+
products?: InputMaybe<Scalars['String']['input']>;
|
|
51491
51532
|
publicName?: InputMaybe<Scalars['String']['input']>;
|
|
51492
51533
|
role?: InputMaybe<Scalars['String']['input']>;
|
|
51493
|
-
|
|
51534
|
+
unifiedProfileInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
51535
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51494
51536
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
51495
51537
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51538
|
+
xUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51539
|
+
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51496
51540
|
};
|
|
51497
51541
|
export declare type UnifiedQuery = {
|
|
51498
51542
|
__typename?: 'UnifiedQuery';
|
|
@@ -51507,13 +51551,15 @@ export declare type UnifiedQueryForumSnapshotArgs = {
|
|
|
51507
51551
|
aaid: Scalars['String']['input'];
|
|
51508
51552
|
};
|
|
51509
51553
|
export declare type UnifiedQueryLearningCertificationArgs = {
|
|
51510
|
-
aaid
|
|
51554
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
51555
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51511
51556
|
};
|
|
51512
51557
|
export declare type UnifiedQueryUnifiedAccountArgs = {
|
|
51513
51558
|
aaid: Scalars['String']['input'];
|
|
51514
51559
|
};
|
|
51515
51560
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
51516
|
-
aaid
|
|
51561
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
51562
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51517
51563
|
};
|
|
51518
51564
|
export declare type UnifiedQueryAccountSuccess = {
|
|
51519
51565
|
__typename?: 'UnifiedQueryAccountSuccess';
|
|
@@ -51540,6 +51586,17 @@ export declare type UnifiedQueryProfilesSuccess = {
|
|
|
51540
51586
|
data: Array<UnifiedProfile>;
|
|
51541
51587
|
};
|
|
51542
51588
|
export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
|
|
51589
|
+
export declare type UnifiedSystemCreateAccountSuccess = {
|
|
51590
|
+
__typename?: 'UnifiedSystemCreateAccountSuccess';
|
|
51591
|
+
data: UnifiedProfile;
|
|
51592
|
+
};
|
|
51593
|
+
export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
|
|
51594
|
+
export declare type UnifiedSystemInput = {
|
|
51595
|
+
aaid: Scalars['String']['input'];
|
|
51596
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
51597
|
+
parentAccountEmailId: Scalars['String']['input'];
|
|
51598
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51599
|
+
};
|
|
51543
51600
|
export declare type UnifiedUserCertificateDataRes = {
|
|
51544
51601
|
__typename?: 'UnifiedUserCertificateDataRes';
|
|
51545
51602
|
activeDate: Scalars['String']['output'];
|
|
@@ -52166,12 +52223,6 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
52166
52223
|
rule?: Maybe<UserInstallationRuleValue>;
|
|
52167
52224
|
success: Scalars['Boolean']['output'];
|
|
52168
52225
|
};
|
|
52169
|
-
export declare type ViewConfig = {
|
|
52170
|
-
__typename?: 'ViewConfig';
|
|
52171
|
-
description?: Maybe<Scalars['JSON']['output']>;
|
|
52172
|
-
id: Scalars['ID']['output'];
|
|
52173
|
-
modifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
52174
|
-
};
|
|
52175
52226
|
export declare type VirtualAgentChannelConfig = {
|
|
52176
52227
|
__typename?: 'VirtualAgentChannelConfig';
|
|
52177
52228
|
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|
|
@@ -52188,7 +52239,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
52188
52239
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
52189
52240
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
52190
52241
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
52191
|
-
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
52192
52242
|
respondToQueries: Scalars['Boolean']['output'];
|
|
52193
52243
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
52194
52244
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -52477,7 +52527,6 @@ export declare type VirtualAgentMutationApi = {
|
|
|
52477
52527
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
52478
52528
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
52479
52529
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
52480
|
-
updateJsmPortalConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
52481
52530
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
52482
52531
|
};
|
|
52483
52532
|
export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
@@ -52515,10 +52564,6 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
52515
52564
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
52516
52565
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
52517
52566
|
};
|
|
52518
|
-
export declare type VirtualAgentMutationApiUpdateJsmPortalConfigurationArgs = {
|
|
52519
|
-
input: VirtualAgentUpdateJsmPortalSettingsInput;
|
|
52520
|
-
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
52521
|
-
};
|
|
52522
52567
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
52523
52568
|
input: VirtualAgentUpdateConfigurationInput;
|
|
52524
52569
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -52623,15 +52668,6 @@ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Pay
|
|
|
52623
52668
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
52624
52669
|
success: Scalars['Boolean']['output'];
|
|
52625
52670
|
};
|
|
52626
|
-
export declare type VirtualAgentUpdateJsmPortalSettingsInput = {
|
|
52627
|
-
isEnabledOnJsmPortal: Scalars['Boolean']['input'];
|
|
52628
|
-
};
|
|
52629
|
-
export declare type VirtualAgentUpdateJsmPortalSettingsPayload = Payload & {
|
|
52630
|
-
__typename?: 'VirtualAgentUpdateJsmPortalSettingsPayload';
|
|
52631
|
-
errors?: Maybe<Array<MutationError>>;
|
|
52632
|
-
success: Scalars['Boolean']['output'];
|
|
52633
|
-
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
52634
|
-
};
|
|
52635
52671
|
export declare type VirtualAgentUpdatedQuestionInput = {
|
|
52636
52672
|
id: Scalars['ID']['input'];
|
|
52637
52673
|
question: Scalars['String']['input'];
|