@forge/cli-shared 4.1.0 → 4.2.0-next.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 +6 -0
- package/out/graphql/graphql-types.d.ts +78 -67
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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']>;
|
|
@@ -10319,6 +10320,7 @@ export declare type DevOpsOperationsIncidentDetails = {
|
|
|
10319
10320
|
description?: Maybe<Scalars['String']['output']>;
|
|
10320
10321
|
id: Scalars['ID']['output'];
|
|
10321
10322
|
linkedPostIncidentReviews?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
10323
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
10322
10324
|
severity?: Maybe<DevOpsOperationsIncidentSeverity>;
|
|
10323
10325
|
status?: Maybe<DevOpsOperationsIncidentStatus>;
|
|
10324
10326
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -25846,6 +25848,7 @@ export declare type HamsSubscription = CommerceSubscription & {
|
|
|
25846
25848
|
export declare type HamsTransactionAccount = CommerceTransactionAccount & {
|
|
25847
25849
|
__typename?: 'HamsTransactionAccount';
|
|
25848
25850
|
experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
|
|
25851
|
+
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
25849
25852
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
25850
25853
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
25851
25854
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -28474,9 +28477,11 @@ export declare type JiraAppNavigationConfig = {
|
|
|
28474
28477
|
};
|
|
28475
28478
|
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28476
28479
|
__typename?: 'JiraAppNavigationItem';
|
|
28480
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
28477
28481
|
appType?: Maybe<JiraAppType>;
|
|
28478
28482
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28479
28483
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28484
|
+
envLabel?: Maybe<Scalars['String']['output']>;
|
|
28480
28485
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28481
28486
|
id: Scalars['ID']['output'];
|
|
28482
28487
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28895,6 +28900,13 @@ export declare type JiraAvatar = {
|
|
|
28895
28900
|
small?: Maybe<Scalars['String']['output']>;
|
|
28896
28901
|
xsmall?: Maybe<Scalars['String']['output']>;
|
|
28897
28902
|
};
|
|
28903
|
+
export declare type JiraBackgroundUploadToken = {
|
|
28904
|
+
__typename?: 'JiraBackgroundUploadToken';
|
|
28905
|
+
targetCollection?: Maybe<Scalars['String']['output']>;
|
|
28906
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
28907
|
+
tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
28908
|
+
};
|
|
28909
|
+
export declare type JiraBackgroundUploadTokenResult = JiraBackgroundUploadToken | QueryError;
|
|
28898
28910
|
export declare type JiraBitbucketDevOpsProvider = JiraDevOpsProvider & {
|
|
28899
28911
|
__typename?: 'JiraBitbucketDevOpsProvider';
|
|
28900
28912
|
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
@@ -29003,19 +29015,6 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
29003
29015
|
RemoveAll = "REMOVE_ALL",
|
|
29004
29016
|
Replace = "REPLACE"
|
|
29005
29017
|
}
|
|
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
29018
|
export declare type JiraBulkOperationInput = {
|
|
29020
29019
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
29021
29020
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
@@ -29055,17 +29054,6 @@ export declare type JiraBulkTransitionEdge = {
|
|
|
29055
29054
|
cursor: Scalars['String']['output'];
|
|
29056
29055
|
node?: Maybe<JiraBulkTransition>;
|
|
29057
29056
|
};
|
|
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
29057
|
export declare type JiraBulkTransitionScreenConnection = {
|
|
29070
29058
|
__typename?: 'JiraBulkTransitionScreenConnection';
|
|
29071
29059
|
edges?: Maybe<Array<Maybe<JiraBulkTransitionScreenEdge>>>;
|
|
@@ -34999,6 +34987,8 @@ export declare type JiraProject = Node & {
|
|
|
34999
34987
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
35000
34988
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
35001
34989
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
34990
|
+
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
34991
|
+
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
35002
34992
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
35003
34993
|
key: Scalars['String']['output'];
|
|
35004
34994
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -35395,6 +35385,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
35395
35385
|
export declare type JiraProjectFieldProjectsArgs = {
|
|
35396
35386
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35397
35387
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
35388
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
35398
35389
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35399
35390
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35400
35391
|
recent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35651,6 +35642,7 @@ export declare type JiraQuery = {
|
|
|
35651
35642
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
35652
35643
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
35653
35644
|
attachmentSearch?: Maybe<JiraAttachmentConnection>;
|
|
35645
|
+
backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
|
|
35654
35646
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
35655
35647
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
35656
35648
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
@@ -35702,8 +35694,6 @@ export declare type JiraQuery = {
|
|
|
35702
35694
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
35703
35695
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
35704
35696
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
35705
|
-
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
35706
|
-
jiraBulkEditTransitions?: Maybe<JiraBulkTransitionResponse>;
|
|
35707
35697
|
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
35708
35698
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
35709
35699
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -35848,6 +35838,10 @@ export declare type JiraQueryAttachmentSearchArgs = {
|
|
|
35848
35838
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35849
35839
|
projectKeys: Array<Scalars['String']['input']>;
|
|
35850
35840
|
};
|
|
35841
|
+
export declare type JiraQueryBackgroundUploadTokenArgs = {
|
|
35842
|
+
cloudId: Scalars['ID']['input'];
|
|
35843
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
35844
|
+
};
|
|
35851
35845
|
export declare type JiraQueryBooleanUserPropertyArgs = {
|
|
35852
35846
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
35853
35847
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36083,12 +36077,6 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
36083
36077
|
cloudId: Scalars['ID']['input'];
|
|
36084
36078
|
keys: Array<Scalars['String']['input']>;
|
|
36085
36079
|
};
|
|
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
36080
|
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
36093
36081
|
input: Array<JiraBulkTransitionScreenInput>;
|
|
36094
36082
|
};
|
|
@@ -38430,16 +38418,25 @@ export declare enum JiraSoftwareSimpleNavigationItemEnum {
|
|
|
38430
38418
|
}
|
|
38431
38419
|
export declare type JiraSprint = Node & {
|
|
38432
38420
|
__typename?: 'JiraSprint';
|
|
38421
|
+
boardId?: Maybe<Scalars['Long']['output']>;
|
|
38433
38422
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
38434
38423
|
completionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
38435
38424
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
38436
38425
|
goal?: Maybe<Scalars['String']['output']>;
|
|
38437
38426
|
id: Scalars['ID']['output'];
|
|
38438
38427
|
name?: Maybe<Scalars['String']['output']>;
|
|
38428
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
38439
38429
|
sprintId: Scalars['String']['output'];
|
|
38430
|
+
sprintProgress?: Maybe<JiraSprintProgress>;
|
|
38440
38431
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
38441
38432
|
state?: Maybe<JiraSprintState>;
|
|
38442
38433
|
};
|
|
38434
|
+
export declare type JiraSprintProjectsArgs = {
|
|
38435
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38436
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38437
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38438
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38439
|
+
};
|
|
38443
38440
|
export declare type JiraSprintConnection = {
|
|
38444
38441
|
__typename?: 'JiraSprintConnection';
|
|
38445
38442
|
edges?: Maybe<Array<Maybe<JiraSprintEdge>>>;
|
|
@@ -38515,6 +38512,17 @@ export declare type JiraSprintMutationPayload = Payload & {
|
|
|
38515
38512
|
jiraSprint?: Maybe<JiraSprint>;
|
|
38516
38513
|
success: Scalars['Boolean']['output'];
|
|
38517
38514
|
};
|
|
38515
|
+
export declare type JiraSprintProgress = {
|
|
38516
|
+
__typename?: 'JiraSprintProgress';
|
|
38517
|
+
estimationType?: Maybe<Scalars['String']['output']>;
|
|
38518
|
+
statusCategoryProgress?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
38519
|
+
};
|
|
38520
|
+
export declare type JiraSprintProgressStatusCategoryProgressArgs = {
|
|
38521
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38522
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38523
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38524
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38525
|
+
};
|
|
38518
38526
|
export declare enum JiraSprintState {
|
|
38519
38527
|
Active = "ACTIVE",
|
|
38520
38528
|
Closed = "CLOSED",
|
|
@@ -38562,6 +38570,23 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
38562
38570
|
type: Scalars['String']['output'];
|
|
38563
38571
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38564
38572
|
};
|
|
38573
|
+
export declare type JiraStatusCategoryProgress = {
|
|
38574
|
+
__typename?: 'JiraStatusCategoryProgress';
|
|
38575
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
38576
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
38577
|
+
};
|
|
38578
|
+
export declare type JiraStatusCategoryProgressConnection = {
|
|
38579
|
+
__typename?: 'JiraStatusCategoryProgressConnection';
|
|
38580
|
+
edges?: Maybe<Array<Maybe<JiraStatusCategoryProgressEdge>>>;
|
|
38581
|
+
errors?: Maybe<Array<QueryError>>;
|
|
38582
|
+
pageInfo: PageInfo;
|
|
38583
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38584
|
+
};
|
|
38585
|
+
export declare type JiraStatusCategoryProgressEdge = {
|
|
38586
|
+
__typename?: 'JiraStatusCategoryProgressEdge';
|
|
38587
|
+
cursor: Scalars['String']['output'];
|
|
38588
|
+
node?: Maybe<JiraStatusCategoryProgress>;
|
|
38589
|
+
};
|
|
38565
38590
|
export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38566
38591
|
__typename?: 'JiraStatusField';
|
|
38567
38592
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40599,14 +40624,11 @@ export declare enum JsmChatChannelType {
|
|
|
40599
40624
|
}
|
|
40600
40625
|
export declare type JsmChatCreateChannelInput = {
|
|
40601
40626
|
aaid: Scalars['String']['input'];
|
|
40602
|
-
activationId: Scalars['String']['input'];
|
|
40603
40627
|
channelName: Scalars['String']['input'];
|
|
40604
40628
|
channelType: JsmChatChannelType;
|
|
40605
40629
|
isVirtualAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40606
40630
|
isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40607
|
-
projectId: Scalars['String']['input'];
|
|
40608
40631
|
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40609
|
-
siteId: Scalars['String']['input'];
|
|
40610
40632
|
};
|
|
40611
40633
|
export declare type JsmChatCreateChannelOutput = {
|
|
40612
40634
|
__typename?: 'JsmChatCreateChannelOutput';
|
|
@@ -40657,6 +40679,7 @@ export declare type JsmChatMutation = {
|
|
|
40657
40679
|
};
|
|
40658
40680
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
40659
40681
|
input?: InputMaybe<JsmChatCreateChannelInput>;
|
|
40682
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
40660
40683
|
};
|
|
40661
40684
|
export declare type JsmChatMutationCreateCommentArgs = {
|
|
40662
40685
|
input: JsmChatCreateCommentInput;
|
|
@@ -40666,6 +40689,8 @@ export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
|
40666
40689
|
};
|
|
40667
40690
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
40668
40691
|
input: JsmChatUpdateChannelSettingsInput;
|
|
40692
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
40693
|
+
slackChannelAri?: InputMaybe<Scalars['ID']['input']>;
|
|
40669
40694
|
};
|
|
40670
40695
|
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
40671
40696
|
input: JsmChatUpdateProjectSettingsInput;
|
|
@@ -40716,14 +40741,9 @@ export declare type JsmChatSlackConfig = {
|
|
|
40716
40741
|
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40717
40742
|
};
|
|
40718
40743
|
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']>;
|
|
40744
|
+
isDeflectionChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40745
|
+
isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40746
|
+
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40727
40747
|
};
|
|
40728
40748
|
export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
40729
40749
|
__typename?: 'JsmChatUpdateChannelSettingsOutput';
|
|
@@ -42149,7 +42169,6 @@ export declare type Mutation = {
|
|
|
42149
42169
|
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
42150
42170
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
42151
42171
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
42152
|
-
setViewConfig?: Maybe<SetViewConfigOutput>;
|
|
42153
42172
|
shepherd?: Maybe<ShepherdMutation>;
|
|
42154
42173
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
42155
42174
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -42494,9 +42513,6 @@ export declare type MutationSetSwimlaneStrategyArgs = {
|
|
|
42494
42513
|
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
42495
42514
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
42496
42515
|
};
|
|
42497
|
-
export declare type MutationSetViewConfigArgs = {
|
|
42498
|
-
input?: InputMaybe<SetViewConfigInput>;
|
|
42499
|
-
};
|
|
42500
42516
|
export declare type MutationSplitIssueArgs = {
|
|
42501
42517
|
input?: InputMaybe<SplitIssueInput>;
|
|
42502
42518
|
};
|
|
@@ -47259,19 +47275,6 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
47259
47275
|
strategy: SwimlaneStrategy;
|
|
47260
47276
|
success: Scalars['Boolean']['output'];
|
|
47261
47277
|
};
|
|
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
47278
|
export declare enum ShepherdActionType {
|
|
47276
47279
|
Activate = "ACTIVATE",
|
|
47277
47280
|
Archive = "ARCHIVE",
|
|
@@ -51445,6 +51448,7 @@ export declare type UnifiedMutation = {
|
|
|
51445
51448
|
createLinkedAccount: UnifiedLinkedCreateAccountUnion;
|
|
51446
51449
|
createParentAccount: UnifiedCreateAccountUnion;
|
|
51447
51450
|
createUnifiedProfile: UnifiedCreateProfileUnion;
|
|
51451
|
+
createUnifiedSystem: UnifiedSystemCreateAccountUnion;
|
|
51448
51452
|
};
|
|
51449
51453
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
51450
51454
|
input: UnifiedLinkedAccountInput;
|
|
@@ -51455,6 +51459,9 @@ export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
|
51455
51459
|
export declare type UnifiedMutationCreateUnifiedProfileArgs = {
|
|
51456
51460
|
input: UnifiedProfileInput;
|
|
51457
51461
|
};
|
|
51462
|
+
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
51463
|
+
input: UnifiedSystemInput;
|
|
51464
|
+
};
|
|
51458
51465
|
export declare type UnifiedParentAccount = {
|
|
51459
51466
|
__typename?: 'UnifiedParentAccount';
|
|
51460
51467
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
@@ -51540,6 +51547,16 @@ export declare type UnifiedQueryProfilesSuccess = {
|
|
|
51540
51547
|
data: Array<UnifiedProfile>;
|
|
51541
51548
|
};
|
|
51542
51549
|
export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
|
|
51550
|
+
export declare type UnifiedSystemCreateAccountSuccess = {
|
|
51551
|
+
__typename?: 'UnifiedSystemCreateAccountSuccess';
|
|
51552
|
+
data: UnifiedProfile;
|
|
51553
|
+
};
|
|
51554
|
+
export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
|
|
51555
|
+
export declare type UnifiedSystemInput = {
|
|
51556
|
+
aaid: Scalars['String']['input'];
|
|
51557
|
+
parentAccountEmailId: Scalars['String']['input'];
|
|
51558
|
+
unifiedProfileUsername: Scalars['String']['input'];
|
|
51559
|
+
};
|
|
51543
51560
|
export declare type UnifiedUserCertificateDataRes = {
|
|
51544
51561
|
__typename?: 'UnifiedUserCertificateDataRes';
|
|
51545
51562
|
activeDate: Scalars['String']['output'];
|
|
@@ -52166,12 +52183,6 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
52166
52183
|
rule?: Maybe<UserInstallationRuleValue>;
|
|
52167
52184
|
success: Scalars['Boolean']['output'];
|
|
52168
52185
|
};
|
|
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
52186
|
export declare type VirtualAgentChannelConfig = {
|
|
52176
52187
|
__typename?: 'VirtualAgentChannelConfig';
|
|
52177
52188
|
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|