@forge/cli-shared 6.0.0-next.17 → 6.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 +49 -0
- package/out/graphql/graphql-types.d.ts +42 -63
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +9 -28
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/service/statsig-service.d.ts +34 -0
- package/out/service/statsig-service.d.ts.map +1 -0
- package/out/service/statsig-service.js +180 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- f354267: Migrating forge logs commands to use v2 logs APIs to fetch logs. Updated the functionality of the `forge logs -n <limit>` or `forge logs --limit <limit>` CLI command. Instead of showing logs from the last <limit> invocations, it will show the last <limit> log lines.
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 3d92b59: Integration with statsig
|
|
12
|
+
- 238e7ab: Update type references to support a change in the manifest remote schema
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 9c5836c: cleanup ff
|
|
17
|
+
- 89b9453: Add test for macro config resource
|
|
18
|
+
- f81ee89: Fix a typo in message.
|
|
19
|
+
- 6b41440: Remove test feature flags
|
|
20
|
+
- Updated dependencies [63d81cf]
|
|
21
|
+
- Updated dependencies [bdca785]
|
|
22
|
+
- Updated dependencies [238e7ab]
|
|
23
|
+
- Updated dependencies [32601f4]
|
|
24
|
+
- Updated dependencies [47f24ba]
|
|
25
|
+
- Updated dependencies [c4391fa]
|
|
26
|
+
- Updated dependencies [d500498]
|
|
27
|
+
- Updated dependencies [5f02b70]
|
|
28
|
+
- Updated dependencies [d9e0900]
|
|
29
|
+
- Updated dependencies [08ff14e]
|
|
30
|
+
- Updated dependencies [8616ebc]
|
|
31
|
+
- Updated dependencies [75698c0]
|
|
32
|
+
- Updated dependencies [f69e798]
|
|
33
|
+
- Updated dependencies [5cd256c]
|
|
34
|
+
- Updated dependencies [b961661]
|
|
35
|
+
- Updated dependencies [6cd61be]
|
|
36
|
+
- Updated dependencies [2920f46]
|
|
37
|
+
- Updated dependencies [3fe0097]
|
|
38
|
+
- Updated dependencies [8ec88e3]
|
|
39
|
+
- @forge/manifest@7.9.0
|
|
40
|
+
|
|
41
|
+
## 6.0.0-next.18
|
|
42
|
+
|
|
43
|
+
### Minor Changes
|
|
44
|
+
|
|
45
|
+
- 3d92b59: Integration with statsig
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- Updated dependencies [2920f46]
|
|
50
|
+
- @forge/manifest@7.9.0-next.14
|
|
51
|
+
|
|
3
52
|
## 6.0.0-next.17
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
|
@@ -36598,6 +36598,7 @@ export declare type GrowthUnifiedProfileSeoContext = {
|
|
|
36598
36598
|
};
|
|
36599
36599
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
36600
36600
|
CustomerService = "CUSTOMER_SERVICE",
|
|
36601
|
+
DataScience = "DATA_SCIENCE",
|
|
36601
36602
|
Design = "DESIGN",
|
|
36602
36603
|
Finance = "FINANCE",
|
|
36603
36604
|
HumanResources = "HUMAN_RESOURCES",
|
|
@@ -36606,6 +36607,8 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
36606
36607
|
Marketing = "MARKETING",
|
|
36607
36608
|
Operations = "OPERATIONS",
|
|
36608
36609
|
Other = "OTHER",
|
|
36610
|
+
ProductManagement = "PRODUCT_MANAGEMENT",
|
|
36611
|
+
ProjectManagement = "PROJECT_MANAGEMENT",
|
|
36609
36612
|
Sales = "SALES",
|
|
36610
36613
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
36611
36614
|
}
|
|
@@ -44457,6 +44460,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
|
|
|
44457
44460
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
44458
44461
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
44459
44462
|
};
|
|
44463
|
+
export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
44464
|
+
__typename?: 'JiraIssueSearchGroupByFieldMutationPayload';
|
|
44465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44466
|
+
success: Scalars['Boolean']['output'];
|
|
44467
|
+
};
|
|
44460
44468
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
44461
44469
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
44462
44470
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -45983,6 +45991,7 @@ export declare type JiraMutation = {
|
|
|
45983
45991
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
45984
45992
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
45985
45993
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
45994
|
+
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
45986
45995
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
45987
45996
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
45988
45997
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -46388,6 +46397,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
46388
46397
|
cloudId: Scalars['ID']['input'];
|
|
46389
46398
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
46390
46399
|
};
|
|
46400
|
+
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
46401
|
+
fieldId: Scalars['String']['input'];
|
|
46402
|
+
viewId: Scalars['ID']['input'];
|
|
46403
|
+
};
|
|
46391
46404
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
46392
46405
|
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
46393
46406
|
viewId: Scalars['ID']['input'];
|
|
@@ -46652,7 +46665,6 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
46652
46665
|
Reports = "REPORTS",
|
|
46653
46666
|
Requests = "REQUESTS",
|
|
46654
46667
|
Security = "SECURITY",
|
|
46655
|
-
Shortcut = "SHORTCUT",
|
|
46656
46668
|
Shortcuts = "SHORTCUTS",
|
|
46657
46669
|
Summary = "SUMMARY",
|
|
46658
46670
|
Timeline = "TIMELINE"
|
|
@@ -47531,6 +47543,7 @@ export declare type JiraProject = Node & {
|
|
|
47531
47543
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
47532
47544
|
id: Scalars['ID']['output'];
|
|
47533
47545
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
47546
|
+
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47534
47547
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47535
47548
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
47536
47549
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -48285,7 +48298,6 @@ export declare enum JiraPullRequestState {
|
|
|
48285
48298
|
export declare type JiraQuery = {
|
|
48286
48299
|
__typename?: 'JiraQuery';
|
|
48287
48300
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
48288
|
-
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
48289
48301
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
48290
48302
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
48291
48303
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -48385,7 +48397,6 @@ export declare type JiraQuery = {
|
|
|
48385
48397
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
48386
48398
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
48387
48399
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
48388
|
-
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
48389
48400
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
48390
48401
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
48391
48402
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
@@ -48412,10 +48423,6 @@ export declare type JiraQuery = {
|
|
|
48412
48423
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
48413
48424
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
48414
48425
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
48415
|
-
navigationItem?: Maybe<JiraNavigationItemResult>;
|
|
48416
|
-
navigationItemByProjectKeyAndItemId?: Maybe<JiraNavigationItemResult>;
|
|
48417
|
-
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
48418
|
-
navigationItemsByProjectKey?: Maybe<JiraNavigationItemConnection>;
|
|
48419
48426
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
48420
48427
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
48421
48428
|
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
@@ -48469,11 +48476,6 @@ export declare type JiraQuery = {
|
|
|
48469
48476
|
export declare type JiraQueryActiveBackgroundDetailsArgs = {
|
|
48470
48477
|
entityId: Scalars['ID']['input'];
|
|
48471
48478
|
};
|
|
48472
|
-
export declare type JiraQueryAddableNavigationItemTypesArgs = {
|
|
48473
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
48474
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48475
|
-
scopeId: Scalars['ID']['input'];
|
|
48476
|
-
};
|
|
48477
48479
|
export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
48478
48480
|
cloudId: Scalars['ID']['input'];
|
|
48479
48481
|
};
|
|
@@ -48938,13 +48940,6 @@ export declare type JiraQueryJiraProjectsMappedToHelpCenterArgs = {
|
|
|
48938
48940
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48939
48941
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48940
48942
|
};
|
|
48941
|
-
export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
48942
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
48943
|
-
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
48944
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
48945
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48946
|
-
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
48947
|
-
};
|
|
48948
48943
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
48949
48944
|
cloudId: Scalars['ID']['input'];
|
|
48950
48945
|
};
|
|
@@ -49063,25 +49058,6 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
49063
49058
|
cloudId: Scalars['ID']['input'];
|
|
49064
49059
|
input: JiraNaturalLanguageToJqlInput;
|
|
49065
49060
|
};
|
|
49066
|
-
export declare type JiraQueryNavigationItemArgs = {
|
|
49067
|
-
id: Scalars['ID']['input'];
|
|
49068
|
-
};
|
|
49069
|
-
export declare type JiraQueryNavigationItemByProjectKeyAndItemIdArgs = {
|
|
49070
|
-
cloudId: Scalars['ID']['input'];
|
|
49071
|
-
itemId: Scalars['ID']['input'];
|
|
49072
|
-
projectKey: Scalars['String']['input'];
|
|
49073
|
-
};
|
|
49074
|
-
export declare type JiraQueryNavigationItemsArgs = {
|
|
49075
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
49076
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49077
|
-
scopeId: Scalars['ID']['input'];
|
|
49078
|
-
};
|
|
49079
|
-
export declare type JiraQueryNavigationItemsByProjectKeyArgs = {
|
|
49080
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
49081
|
-
cloudId: Scalars['ID']['input'];
|
|
49082
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49083
|
-
projectKey: Scalars['String']['input'];
|
|
49084
|
-
};
|
|
49085
49061
|
export declare type JiraQueryNavigationUiStateArgs = {
|
|
49086
49062
|
cloudId: Scalars['ID']['input'];
|
|
49087
49063
|
};
|
|
@@ -51486,7 +51462,6 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
51486
51462
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
51487
51463
|
id: Scalars['ID']['output'];
|
|
51488
51464
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
51489
|
-
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
51490
51465
|
label?: Maybe<Scalars['String']['output']>;
|
|
51491
51466
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
51492
51467
|
};
|
|
@@ -51508,30 +51483,11 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
51508
51483
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
51509
51484
|
totalBoardsInProject: Scalars['Long']['output'];
|
|
51510
51485
|
};
|
|
51511
|
-
export declare enum JiraSoftwareSimpleNavigationItemEnum {
|
|
51512
|
-
JswBacklog = "JSW_BACKLOG",
|
|
51513
|
-
JswBoard = "JSW_BOARD",
|
|
51514
|
-
JswCalendar = "JSW_CALENDAR",
|
|
51515
|
-
JswCode = "JSW_CODE",
|
|
51516
|
-
JswComponents = "JSW_COMPONENTS",
|
|
51517
|
-
JswDeployments = "JSW_DEPLOYMENTS",
|
|
51518
|
-
JswGoals = "JSW_GOALS",
|
|
51519
|
-
JswIncidents = "JSW_INCIDENTS",
|
|
51520
|
-
JswIssues = "JSW_ISSUES",
|
|
51521
|
-
JswList = "JSW_LIST",
|
|
51522
|
-
JswOnCall = "JSW_ON_CALL",
|
|
51523
|
-
JswPages = "JSW_PAGES",
|
|
51524
|
-
JswReleases = "JSW_RELEASES",
|
|
51525
|
-
JswReports = "JSW_REPORTS",
|
|
51526
|
-
JswRequests = "JSW_REQUESTS",
|
|
51527
|
-
JswSecurity = "JSW_SECURITY",
|
|
51528
|
-
JswShortcuts = "JSW_SHORTCUTS",
|
|
51529
|
-
JswTimeline = "JSW_TIMELINE"
|
|
51530
|
-
}
|
|
51531
51486
|
export declare type JiraSpreadsheetGroup = {
|
|
51532
51487
|
__typename?: 'JiraSpreadsheetGroup';
|
|
51533
51488
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
51534
51489
|
fieldType?: Maybe<Scalars['String']['output']>;
|
|
51490
|
+
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
51535
51491
|
id: Scalars['ID']['output'];
|
|
51536
51492
|
issueCount?: Maybe<Scalars['Int']['output']>;
|
|
51537
51493
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -54315,7 +54271,7 @@ export declare type JsmChatMutationAddConversationInteractionArgs = {
|
|
|
54315
54271
|
workspaceAri: Scalars['ID']['input'];
|
|
54316
54272
|
};
|
|
54317
54273
|
export declare type JsmChatMutationAddWebConversationInteractionArgs = {
|
|
54318
|
-
|
|
54274
|
+
conversationMessageId: Scalars['ID']['input'];
|
|
54319
54275
|
input: JsmChatWebAddConversationInteractionInput;
|
|
54320
54276
|
workspaceAri: Scalars['ID']['input'];
|
|
54321
54277
|
};
|
|
@@ -65897,8 +65853,27 @@ export declare type ShepherdAlertSnippet = {
|
|
|
65897
65853
|
contentId: Scalars['ID']['output'];
|
|
65898
65854
|
field: Scalars['String']['output'];
|
|
65899
65855
|
redactable: Scalars['Boolean']['output'];
|
|
65856
|
+
snippetTextBlocks?: Maybe<Array<ShepherdAlertSnippetTextBlock>>;
|
|
65900
65857
|
};
|
|
65901
65858
|
export declare type ShepherdAlertSnippetResult = QueryError | ShepherdAlertSnippets;
|
|
65859
|
+
export declare type ShepherdAlertSnippetTextBlock = {
|
|
65860
|
+
__typename?: 'ShepherdAlertSnippetTextBlock';
|
|
65861
|
+
isSensitive?: Maybe<Scalars['Boolean']['output']>;
|
|
65862
|
+
styles?: Maybe<ShepherdAlertSnippetTextBlockStyles>;
|
|
65863
|
+
text: Scalars['String']['output'];
|
|
65864
|
+
};
|
|
65865
|
+
export declare type ShepherdAlertSnippetTextBlockStyles = {
|
|
65866
|
+
__typename?: 'ShepherdAlertSnippetTextBlockStyles';
|
|
65867
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
65868
|
+
isBold?: Maybe<Scalars['Boolean']['output']>;
|
|
65869
|
+
isCode?: Maybe<Scalars['Boolean']['output']>;
|
|
65870
|
+
isItalic?: Maybe<Scalars['Boolean']['output']>;
|
|
65871
|
+
isStrike?: Maybe<Scalars['Boolean']['output']>;
|
|
65872
|
+
isSubSup?: Maybe<Scalars['Boolean']['output']>;
|
|
65873
|
+
isUnderline?: Maybe<Scalars['Boolean']['output']>;
|
|
65874
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
65875
|
+
textColor?: Maybe<Scalars['String']['output']>;
|
|
65876
|
+
};
|
|
65902
65877
|
export declare type ShepherdAlertSnippets = {
|
|
65903
65878
|
__typename?: 'ShepherdAlertSnippets';
|
|
65904
65879
|
snippets?: Maybe<Array<ShepherdAlertSnippet>>;
|
|
@@ -69934,7 +69909,7 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
69934
69909
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69935
69910
|
__typename?: 'TrelloPlannerCalendar';
|
|
69936
69911
|
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69937
|
-
color?: Maybe<
|
|
69912
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
69938
69913
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69939
69914
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69940
69915
|
id: Scalars['ID']['output'];
|
|
@@ -70083,7 +70058,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
70083
70058
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70084
70059
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70085
70060
|
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70086
|
-
color?: Maybe<
|
|
70061
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70087
70062
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70088
70063
|
id: Scalars['ID']['output'];
|
|
70089
70064
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70159,7 +70134,7 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70159
70134
|
};
|
|
70160
70135
|
export declare type TrelloProviderCalendarInterface = {
|
|
70161
70136
|
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70162
|
-
color?: Maybe<
|
|
70137
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70163
70138
|
id: Scalars['ID']['output'];
|
|
70164
70139
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70165
70140
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
@@ -72072,12 +72047,16 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
72072
72047
|
export declare type VirtualAgentQueryApi = {
|
|
72073
72048
|
__typename?: 'VirtualAgentQueryApi';
|
|
72074
72049
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
72050
|
+
virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
|
|
72075
72051
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
72076
72052
|
};
|
|
72077
72053
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
72078
72054
|
jiraProjectId: Scalars['ID']['input'];
|
|
72079
72055
|
requestTypeId: Scalars['String']['input'];
|
|
72080
72056
|
};
|
|
72057
|
+
export declare type VirtualAgentQueryApiVirtualAgentAvailabilityArgs = {
|
|
72058
|
+
containerId: Scalars['ID']['input'];
|
|
72059
|
+
};
|
|
72081
72060
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
72082
72061
|
cloudId: Scalars['ID']['input'];
|
|
72083
72062
|
};
|