@forge/cli-shared 2.1.6-next.3 → 2.1.6-next.7
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
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.6-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [cdd8645]
|
|
8
|
+
- Updated dependencies [b97660c]
|
|
9
|
+
- @forge/manifest@2.6.0-next.6
|
|
10
|
+
|
|
11
|
+
## 2.1.6-next.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [0a39c43]
|
|
16
|
+
- @forge/manifest@2.6.0-next.5
|
|
17
|
+
|
|
18
|
+
## 2.1.6-next.5
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [91ea057]
|
|
23
|
+
- @forge/manifest@2.5.1-next.4
|
|
24
|
+
|
|
25
|
+
## 2.1.6-next.4
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [3010f0e]
|
|
30
|
+
- @forge/manifest@2.5.1-next.3
|
|
31
|
+
|
|
3
32
|
## 2.1.6-next.3
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -1567,6 +1567,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1567
1567
|
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
1568
1568
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1569
1569
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1570
|
+
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1570
1571
|
};
|
|
1571
1572
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1572
1573
|
id: Scalars['ID'];
|
|
@@ -1605,6 +1606,10 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
1605
1606
|
export declare type CompassCatalogQueryApiMetricDefinitionsArgs = {
|
|
1606
1607
|
query: CompassMetricDefinitionsQuery;
|
|
1607
1608
|
};
|
|
1609
|
+
export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
1610
|
+
cloudId: Scalars['ID'];
|
|
1611
|
+
metricDefinitionId: Scalars['ID'];
|
|
1612
|
+
};
|
|
1608
1613
|
export declare type CompassChangeMetadata = {
|
|
1609
1614
|
__typename?: 'CompassChangeMetadata';
|
|
1610
1615
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1766,9 +1771,9 @@ export declare type CompassDeleteMetricSourceInput = {
|
|
|
1766
1771
|
};
|
|
1767
1772
|
export declare type CompassDeleteMetricSourcePayload = Payload & {
|
|
1768
1773
|
__typename?: 'CompassDeleteMetricSourcePayload';
|
|
1769
|
-
deletedMetricSourceId?: Maybe<Scalars['ID']>;
|
|
1770
1774
|
success: Scalars['Boolean'];
|
|
1771
1775
|
errors?: Maybe<Array<MutationError>>;
|
|
1776
|
+
deletedMetricSourceId?: Maybe<Scalars['ID']>;
|
|
1772
1777
|
};
|
|
1773
1778
|
export declare type CompassDeleteTeamCheckinActionInput = {
|
|
1774
1779
|
id: Scalars['ID'];
|
|
@@ -1996,6 +2001,11 @@ export declare type CompassMetricDefinition = {
|
|
|
1996
2001
|
name?: Maybe<Scalars['String']>;
|
|
1997
2002
|
description?: Maybe<Scalars['String']>;
|
|
1998
2003
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
2004
|
+
type: CompassMetricDefinitionType;
|
|
2005
|
+
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
2006
|
+
};
|
|
2007
|
+
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
2008
|
+
query?: Maybe<CompassMetricSourcesQuery>;
|
|
1999
2009
|
};
|
|
2000
2010
|
export declare type CompassMetricDefinitionEdge = {
|
|
2001
2011
|
__typename?: 'CompassMetricDefinitionEdge';
|
|
@@ -2013,6 +2023,11 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
2013
2023
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
2014
2024
|
suffix: Scalars['String'];
|
|
2015
2025
|
};
|
|
2026
|
+
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
2027
|
+
export declare enum CompassMetricDefinitionType {
|
|
2028
|
+
BuiltIn = "BUILT_IN",
|
|
2029
|
+
Custom = "CUSTOM"
|
|
2030
|
+
}
|
|
2016
2031
|
export declare type CompassMetricDefinitionsConnection = {
|
|
2017
2032
|
__typename?: 'CompassMetricDefinitionsConnection';
|
|
2018
2033
|
edges?: Maybe<Array<CompassMetricDefinitionEdge>>;
|
|
@@ -2032,6 +2047,7 @@ export declare type CompassMetricSource = {
|
|
|
2032
2047
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
2033
2048
|
url?: Maybe<Scalars['String']>;
|
|
2034
2049
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2050
|
+
component?: Maybe<CompassComponent>;
|
|
2035
2051
|
};
|
|
2036
2052
|
export declare type CompassMetricSourceValuesArgs = {
|
|
2037
2053
|
query?: Maybe<CompassMetricSourceValuesQuery>;
|
|
@@ -2052,6 +2068,17 @@ export declare type CompassMetricSourceValuesQuery = {
|
|
|
2052
2068
|
after?: Maybe<Scalars['String']>;
|
|
2053
2069
|
};
|
|
2054
2070
|
export declare type CompassMetricSourceValuesQueryResult = CompassMetricSourceValuesConnection | QueryError;
|
|
2071
|
+
export declare type CompassMetricSourcesConnection = {
|
|
2072
|
+
__typename?: 'CompassMetricSourcesConnection';
|
|
2073
|
+
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
2074
|
+
nodes?: Maybe<Array<CompassMetricSource>>;
|
|
2075
|
+
pageInfo: PageInfo;
|
|
2076
|
+
};
|
|
2077
|
+
export declare type CompassMetricSourcesQuery = {
|
|
2078
|
+
first?: Maybe<Scalars['Int']>;
|
|
2079
|
+
after?: Maybe<Scalars['String']>;
|
|
2080
|
+
};
|
|
2081
|
+
export declare type CompassMetricSourcesQueryResult = CompassMetricSourcesConnection | QueryError;
|
|
2055
2082
|
export declare type CompassMetricValue = {
|
|
2056
2083
|
__typename?: 'CompassMetricValue';
|
|
2057
2084
|
timestamp?: Maybe<Scalars['DateTime']>;
|
|
@@ -2435,6 +2462,7 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2435
2462
|
};
|
|
2436
2463
|
export declare type ConfluenceComment = {
|
|
2437
2464
|
__typename?: 'ConfluenceComment';
|
|
2465
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
2438
2466
|
commentId?: Maybe<Scalars['ID']>;
|
|
2439
2467
|
container?: Maybe<ConfluenceAbstractPage>;
|
|
2440
2468
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2446,6 +2474,16 @@ export declare type ConfluenceCommentLinks = {
|
|
|
2446
2474
|
base?: Maybe<Scalars['String']>;
|
|
2447
2475
|
webUi?: Maybe<Scalars['String']>;
|
|
2448
2476
|
};
|
|
2477
|
+
export declare type ConfluenceContentBody = {
|
|
2478
|
+
__typename?: 'ConfluenceContentBody';
|
|
2479
|
+
adf?: Maybe<Scalars['String']>;
|
|
2480
|
+
editor?: Maybe<Scalars['String']>;
|
|
2481
|
+
editor2?: Maybe<Scalars['String']>;
|
|
2482
|
+
exportView?: Maybe<Scalars['String']>;
|
|
2483
|
+
storage?: Maybe<Scalars['String']>;
|
|
2484
|
+
styledView?: Maybe<Scalars['String']>;
|
|
2485
|
+
view?: Maybe<Scalars['String']>;
|
|
2486
|
+
};
|
|
2449
2487
|
export declare enum ConfluenceContentStatus {
|
|
2450
2488
|
Any = "ANY",
|
|
2451
2489
|
Archived = "ARCHIVED",
|
|
@@ -2461,6 +2499,48 @@ export declare enum ConfluenceContentType {
|
|
|
2461
2499
|
Comment = "COMMENT",
|
|
2462
2500
|
Page = "PAGE"
|
|
2463
2501
|
}
|
|
2502
|
+
export declare type ConfluenceCreateSpaceInput = {
|
|
2503
|
+
key: Scalars['String'];
|
|
2504
|
+
name: Scalars['String'];
|
|
2505
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
2506
|
+
};
|
|
2507
|
+
export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
2508
|
+
__typename?: 'ConfluenceCreateSpacePayload';
|
|
2509
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2510
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2511
|
+
success: Scalars['Boolean'];
|
|
2512
|
+
};
|
|
2513
|
+
export declare type ConfluenceInlineTask = {
|
|
2514
|
+
__typename?: 'ConfluenceInlineTask';
|
|
2515
|
+
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
2516
|
+
body?: Maybe<ConfluenceContentBody>;
|
|
2517
|
+
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
2518
|
+
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
2519
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2520
|
+
createdOn?: Maybe<Scalars['String']>;
|
|
2521
|
+
dueOn?: Maybe<Scalars['String']>;
|
|
2522
|
+
globalId?: Maybe<Scalars['ID']>;
|
|
2523
|
+
id?: Maybe<Scalars['ID']>;
|
|
2524
|
+
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
2525
|
+
taskId?: Maybe<Scalars['ID']>;
|
|
2526
|
+
updatedOn?: Maybe<Scalars['String']>;
|
|
2527
|
+
};
|
|
2528
|
+
export declare type ConfluenceInlineTaskContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2529
|
+
export declare enum ConfluenceInlineTaskStatus {
|
|
2530
|
+
Complete = "COMPLETE",
|
|
2531
|
+
Incomplete = "INCOMPLETE"
|
|
2532
|
+
}
|
|
2533
|
+
export declare type ConfluenceMutationApi = {
|
|
2534
|
+
__typename?: 'ConfluenceMutationApi';
|
|
2535
|
+
createConfluenceSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2536
|
+
updateConfluenceSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2537
|
+
};
|
|
2538
|
+
export declare type ConfluenceMutationApiCreateConfluenceSpaceArgs = {
|
|
2539
|
+
input: ConfluenceCreateSpaceInput;
|
|
2540
|
+
};
|
|
2541
|
+
export declare type ConfluenceMutationApiUpdateConfluenceSpaceArgs = {
|
|
2542
|
+
input: ConfluenceUpdateSpaceInput;
|
|
2543
|
+
};
|
|
2464
2544
|
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2465
2545
|
__typename?: 'ConfluencePage';
|
|
2466
2546
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2480,6 +2560,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
2480
2560
|
__typename?: 'ConfluenceQueryApi';
|
|
2481
2561
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2482
2562
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2563
|
+
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2483
2564
|
confluencePage?: Maybe<ConfluenceAbstractPage>;
|
|
2484
2565
|
confluencePageWithFilters?: Maybe<ConfluenceAbstractPage>;
|
|
2485
2566
|
confluencePages?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
@@ -2493,6 +2574,9 @@ export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
|
2493
2574
|
export declare type ConfluenceQueryApiConfluenceCommentsArgs = {
|
|
2494
2575
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
2495
2576
|
};
|
|
2577
|
+
export declare type ConfluenceQueryApiConfluenceInlineTaskArgs = {
|
|
2578
|
+
id: Scalars['ID'];
|
|
2579
|
+
};
|
|
2496
2580
|
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
2497
2581
|
id: Scalars['ID'];
|
|
2498
2582
|
};
|
|
@@ -2544,6 +2628,21 @@ export declare enum ConfluenceSpaceType {
|
|
|
2544
2628
|
Global = "GLOBAL",
|
|
2545
2629
|
Personal = "PERSONAL"
|
|
2546
2630
|
}
|
|
2631
|
+
export declare type ConfluenceUpdateSpaceInput = {
|
|
2632
|
+
id: Scalars['ID'];
|
|
2633
|
+
name?: Maybe<Scalars['String']>;
|
|
2634
|
+
};
|
|
2635
|
+
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
2636
|
+
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
2637
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2639
|
+
success: Scalars['Boolean'];
|
|
2640
|
+
};
|
|
2641
|
+
export declare type ConfluenceUserInfo = {
|
|
2642
|
+
__typename?: 'ConfluenceUserInfo';
|
|
2643
|
+
user?: Maybe<User>;
|
|
2644
|
+
personalSpace?: Maybe<ConfluenceSpace>;
|
|
2645
|
+
};
|
|
2547
2646
|
export declare type ConnectAppScope = {
|
|
2548
2647
|
__typename?: 'ConnectAppScope';
|
|
2549
2648
|
scopeId: Scalars['ID'];
|
|
@@ -3903,12 +4002,18 @@ export declare type DevOpsTool = {
|
|
|
3903
4002
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
3904
4003
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
3905
4004
|
};
|
|
3906
|
-
export declare type DevOpsToolAvailable = DevOpsTool & {
|
|
4005
|
+
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
3907
4006
|
__typename?: 'DevOpsToolAvailable';
|
|
3908
4007
|
id: Scalars['ID'];
|
|
3909
4008
|
name: Scalars['String'];
|
|
3910
4009
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
3911
4010
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4011
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4012
|
+
};
|
|
4013
|
+
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
4014
|
+
query?: Maybe<Scalars['String']>;
|
|
4015
|
+
first?: Maybe<Scalars['Int']>;
|
|
4016
|
+
after?: Maybe<Scalars['String']>;
|
|
3912
4017
|
};
|
|
3913
4018
|
export declare type DevOpsToolAvatar = {
|
|
3914
4019
|
__typename?: 'DevOpsToolAvatar';
|
|
@@ -3925,7 +4030,7 @@ export declare type DevOpsToolConnection = {
|
|
|
3925
4030
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
3926
4031
|
pageInfo: PageInfo;
|
|
3927
4032
|
};
|
|
3928
|
-
export declare type DevOpsToolContainer = {
|
|
4033
|
+
export declare type DevOpsToolContainer = Node & {
|
|
3929
4034
|
__typename?: 'DevOpsToolContainer';
|
|
3930
4035
|
id: Scalars['ID'];
|
|
3931
4036
|
displayName: Scalars['String'];
|
|
@@ -3957,11 +4062,17 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3957
4062
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3958
4063
|
webUrl: Scalars['URL'];
|
|
3959
4064
|
};
|
|
3960
|
-
export declare type DevOpsToolNamespace = {
|
|
4065
|
+
export declare type DevOpsToolNamespace = Node & {
|
|
3961
4066
|
__typename?: 'DevOpsToolNamespace';
|
|
3962
4067
|
id: Scalars['ID'];
|
|
3963
4068
|
displayName: Scalars['String'];
|
|
3964
4069
|
canCreateContainer: Scalars['Boolean'];
|
|
4070
|
+
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4071
|
+
};
|
|
4072
|
+
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
4073
|
+
query?: Maybe<Scalars['String']>;
|
|
4074
|
+
first?: Maybe<Scalars['Int']>;
|
|
4075
|
+
after?: Maybe<Scalars['String']>;
|
|
3965
4076
|
};
|
|
3966
4077
|
export declare type DevOpsToolNamespaceConnection = {
|
|
3967
4078
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -3979,7 +4090,7 @@ export declare type DevOpsToolSupportedContainerType = {
|
|
|
3979
4090
|
category: DevOpsToolCategory;
|
|
3980
4091
|
type: DevOpsToolContainerType;
|
|
3981
4092
|
};
|
|
3982
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
4093
|
+
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
3983
4094
|
__typename?: 'DevOpsToolUnavailable';
|
|
3984
4095
|
id: Scalars['ID'];
|
|
3985
4096
|
name: Scalars['String'];
|
|
@@ -3990,27 +4101,23 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3990
4101
|
export declare type DevOpsTools = {
|
|
3991
4102
|
__typename?: 'DevOpsTools';
|
|
3992
4103
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3993
|
-
|
|
3994
|
-
|
|
4104
|
+
tool?: Maybe<DevOpsTool>;
|
|
4105
|
+
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4106
|
+
container?: Maybe<DevOpsToolContainer>;
|
|
3995
4107
|
};
|
|
3996
4108
|
export declare type DevOpsToolsToolsArgs = {
|
|
3997
4109
|
cloudId: Scalars['ID'];
|
|
3998
4110
|
first?: Maybe<Scalars['Int']>;
|
|
3999
4111
|
after?: Maybe<Scalars['String']>;
|
|
4000
4112
|
};
|
|
4001
|
-
export declare type
|
|
4002
|
-
|
|
4003
|
-
toolId: Scalars['String'];
|
|
4004
|
-
first?: Maybe<Scalars['Int']>;
|
|
4005
|
-
after?: Maybe<Scalars['String']>;
|
|
4113
|
+
export declare type DevOpsToolsToolArgs = {
|
|
4114
|
+
id: Scalars['ID'];
|
|
4006
4115
|
};
|
|
4007
|
-
export declare type
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
first?: Maybe<Scalars['Int']>;
|
|
4013
|
-
after?: Maybe<Scalars['String']>;
|
|
4116
|
+
export declare type DevOpsToolsNamespaceArgs = {
|
|
4117
|
+
id: Scalars['ID'];
|
|
4118
|
+
};
|
|
4119
|
+
export declare type DevOpsToolsContainerArgs = {
|
|
4120
|
+
id: Scalars['ID'];
|
|
4014
4121
|
};
|
|
4015
4122
|
export declare type DevStatus = {
|
|
4016
4123
|
__typename?: 'DevStatus';
|
|
@@ -5268,6 +5375,7 @@ export declare type JiraDevOpsIssuePanel = {
|
|
|
5268
5375
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
5269
5376
|
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
5270
5377
|
devSummaryResult?: Maybe<JiraIssueDevSummaryResult>;
|
|
5378
|
+
hasBranchCapabilities?: Maybe<Scalars['Boolean']>;
|
|
5271
5379
|
};
|
|
5272
5380
|
export declare enum JiraDevOpsIssuePanelBannerType {
|
|
5273
5381
|
IssueKeyOnboarding = "ISSUE_KEY_ONBOARDING"
|
|
@@ -7644,7 +7752,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
7644
7752
|
canAnswerApproval?: Maybe<Scalars['Boolean']>;
|
|
7645
7753
|
decisions?: Maybe<JiraServiceManagementDecisionConnection>;
|
|
7646
7754
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
7647
|
-
|
|
7755
|
+
configuration?: Maybe<JiraServiceManagementApprovalConfiguration>;
|
|
7648
7756
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
7649
7757
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
7650
7758
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8969,6 +9077,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
8969
9077
|
export declare type Mutation = {
|
|
8970
9078
|
__typename?: 'Mutation';
|
|
8971
9079
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
9080
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
8972
9081
|
shepherd?: Maybe<ShepherdMutation>;
|
|
8973
9082
|
createApp?: Maybe<CreateAppResponse>;
|
|
8974
9083
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
@@ -11888,6 +11997,7 @@ export declare type SupportRequestComment = {
|
|
|
11888
11997
|
author: SupportRequestUser;
|
|
11889
11998
|
message: Scalars['String'];
|
|
11890
11999
|
createdDate: SupportRequestDisplayableDateTime;
|
|
12000
|
+
mentionedUsers: Array<SupportRequestUser>;
|
|
11891
12001
|
};
|
|
11892
12002
|
export declare type SupportRequestComments = {
|
|
11893
12003
|
__typename?: 'SupportRequestComments';
|
|
@@ -12084,6 +12194,7 @@ export declare type TenantContext = {
|
|
|
12084
12194
|
__typename?: 'TenantContext';
|
|
12085
12195
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12086
12196
|
hostName?: Maybe<Scalars['String']>;
|
|
12197
|
+
cloudUrl?: Maybe<Scalars['URL']>;
|
|
12087
12198
|
orgId?: Maybe<Scalars['ID']>;
|
|
12088
12199
|
};
|
|
12089
12200
|
export declare type Testing = {
|