@forge/cli-shared 2.6.1-next.0 → 2.6.1-next.3
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 +24 -0
- package/out/graphql/graphql-types.d.ts +149 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +15 -1
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +1 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d486898]
|
|
8
|
+
- Updated dependencies [f890e0e]
|
|
9
|
+
- Updated dependencies [91daffc]
|
|
10
|
+
- @forge/manifest@3.10.0-next.3
|
|
11
|
+
|
|
12
|
+
## 2.6.1-next.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [7558a5d9]
|
|
17
|
+
- @forge/manifest@3.9.1-next.2
|
|
18
|
+
|
|
19
|
+
## 2.6.1-next.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [02aefee]
|
|
24
|
+
- Updated dependencies [f543a47]
|
|
25
|
+
- @forge/manifest@3.9.1-next.1
|
|
26
|
+
|
|
3
27
|
## 2.6.1-next.0
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -251,7 +251,7 @@ export declare type ActivityObject = {
|
|
|
251
251
|
contributors?: Maybe<Array<ActivityContributor>>;
|
|
252
252
|
data?: Maybe<ActivityObjectData>;
|
|
253
253
|
};
|
|
254
|
-
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
254
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | ConfluenceFooterComment | ConfluenceInlineComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
255
255
|
export declare enum ActivityObjectType {
|
|
256
256
|
Site = "SITE",
|
|
257
257
|
Project = "PROJECT",
|
|
@@ -878,37 +878,39 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
878
878
|
first?: Maybe<Scalars['Int']>;
|
|
879
879
|
after?: Maybe<Scalars['String']>;
|
|
880
880
|
};
|
|
881
|
-
export declare type
|
|
882
|
-
|
|
883
|
-
from: Scalars['ID'];
|
|
884
|
-
to: Scalars['ID'];
|
|
885
|
-
type: Scalars['ID'];
|
|
881
|
+
export declare type AriGraphCreateRelationshipsInput = {
|
|
882
|
+
relationships: Array<AriGraphCreateRelationshipsInputRelationship>;
|
|
886
883
|
};
|
|
887
|
-
export declare type
|
|
888
|
-
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
889
|
-
};
|
|
890
|
-
export declare type AriGraphCreateRelationshipInputRelationship = {
|
|
884
|
+
export declare type AriGraphCreateRelationshipsInputRelationship = {
|
|
891
885
|
from: Scalars['ID'];
|
|
892
886
|
to: Scalars['ID'];
|
|
893
887
|
type: Scalars['ID'];
|
|
894
888
|
};
|
|
895
|
-
export declare type
|
|
896
|
-
__typename?: '
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
reference: AriGraphCreateRelationshipErrorReference;
|
|
889
|
+
export declare type AriGraphCreateRelationshipsPayload = Payload & {
|
|
890
|
+
__typename?: 'AriGraphCreateRelationshipsPayload';
|
|
891
|
+
success: Scalars['Boolean'];
|
|
892
|
+
errors?: Maybe<Array<MutationError>>;
|
|
900
893
|
};
|
|
901
|
-
export declare type
|
|
902
|
-
|
|
894
|
+
export declare type AriGraphDeleteRelationshipsInput = {
|
|
895
|
+
from?: Maybe<Scalars['ID']>;
|
|
896
|
+
to?: Maybe<Scalars['ID']>;
|
|
897
|
+
type?: Maybe<Scalars['ID']>;
|
|
898
|
+
};
|
|
899
|
+
export declare type AriGraphDeleteRelationshipsPayload = Payload & {
|
|
900
|
+
__typename?: 'AriGraphDeleteRelationshipsPayload';
|
|
903
901
|
success: Scalars['Boolean'];
|
|
904
902
|
errors?: Maybe<Array<MutationError>>;
|
|
905
903
|
};
|
|
906
904
|
export declare type AriGraphMutation = {
|
|
907
905
|
__typename?: 'AriGraphMutation';
|
|
908
|
-
|
|
906
|
+
createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
|
|
907
|
+
deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
|
|
909
908
|
};
|
|
910
|
-
export declare type
|
|
911
|
-
input:
|
|
909
|
+
export declare type AriGraphMutationCreateRelationshipsArgs = {
|
|
910
|
+
input: AriGraphCreateRelationshipsInput;
|
|
911
|
+
};
|
|
912
|
+
export declare type AriGraphMutationDeleteRelationshipsArgs = {
|
|
913
|
+
input: AriGraphDeleteRelationshipsInput;
|
|
912
914
|
};
|
|
913
915
|
export declare type AriGraphRelationship = {
|
|
914
916
|
__typename?: 'AriGraphRelationship';
|
|
@@ -933,6 +935,12 @@ export declare type AriGraphRelationshipNode = {
|
|
|
933
935
|
id: Scalars['ID'];
|
|
934
936
|
data?: Maybe<DeploymentSummary>;
|
|
935
937
|
};
|
|
938
|
+
export declare type AriGraphRelationshipsErrorReference = {
|
|
939
|
+
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
940
|
+
from?: Maybe<Scalars['ID']>;
|
|
941
|
+
to?: Maybe<Scalars['ID']>;
|
|
942
|
+
type: Scalars['ID'];
|
|
943
|
+
};
|
|
936
944
|
export declare type AriGraphRelationshipsFilter = {
|
|
937
945
|
type: Scalars['ID'];
|
|
938
946
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -940,6 +948,12 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
940
948
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
941
949
|
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
942
950
|
};
|
|
951
|
+
export declare type AriGraphRelationshipsMutationErrorExtension = MutationErrorExtension & {
|
|
952
|
+
__typename?: 'AriGraphRelationshipsMutationErrorExtension';
|
|
953
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
954
|
+
errorType?: Maybe<Scalars['String']>;
|
|
955
|
+
reference: AriGraphRelationshipsErrorReference;
|
|
956
|
+
};
|
|
943
957
|
export declare type ArjConfiguration = {
|
|
944
958
|
__typename?: 'ArjConfiguration';
|
|
945
959
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -3521,6 +3535,26 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3521
3535
|
errors?: Maybe<Array<MutationError>>;
|
|
3522
3536
|
success: Scalars['Boolean'];
|
|
3523
3537
|
};
|
|
3538
|
+
export declare type ConfluenceFooterComment = {
|
|
3539
|
+
__typename?: 'ConfluenceFooterComment';
|
|
3540
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3541
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3542
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3543
|
+
id: Scalars['ID'];
|
|
3544
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3545
|
+
name?: Maybe<Scalars['String']>;
|
|
3546
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3547
|
+
};
|
|
3548
|
+
export declare type ConfluenceInlineComment = {
|
|
3549
|
+
__typename?: 'ConfluenceInlineComment';
|
|
3550
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3551
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3552
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3553
|
+
id: Scalars['ID'];
|
|
3554
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3555
|
+
name?: Maybe<Scalars['String']>;
|
|
3556
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3557
|
+
};
|
|
3524
3558
|
export declare type ConfluenceInlineTask = {
|
|
3525
3559
|
__typename?: 'ConfluenceInlineTask';
|
|
3526
3560
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -8051,6 +8085,23 @@ export declare type JiraEstimate = {
|
|
|
8051
8085
|
__typename?: 'JiraEstimate';
|
|
8052
8086
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
8053
8087
|
};
|
|
8088
|
+
export declare type JiraFavourite = JiraProject;
|
|
8089
|
+
export declare type JiraFavouriteConnection = {
|
|
8090
|
+
__typename?: 'JiraFavouriteConnection';
|
|
8091
|
+
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
8092
|
+
pageInfo: PageInfo;
|
|
8093
|
+
};
|
|
8094
|
+
export declare type JiraFavouriteEdge = {
|
|
8095
|
+
__typename?: 'JiraFavouriteEdge';
|
|
8096
|
+
node?: Maybe<JiraFavourite>;
|
|
8097
|
+
cursor: Scalars['String'];
|
|
8098
|
+
};
|
|
8099
|
+
export declare type JiraFavouriteFilter = {
|
|
8100
|
+
type: JiraFavouriteType;
|
|
8101
|
+
};
|
|
8102
|
+
export declare enum JiraFavouriteType {
|
|
8103
|
+
Project = "PROJECT"
|
|
8104
|
+
}
|
|
8054
8105
|
export declare type JiraFieldConfig = {
|
|
8055
8106
|
__typename?: 'JiraFieldConfig';
|
|
8056
8107
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -8417,6 +8468,8 @@ export declare type JiraIssue = Node & {
|
|
|
8417
8468
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
8418
8469
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8419
8470
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
8471
|
+
storyPointsField?: Maybe<JiraNumberField>;
|
|
8472
|
+
screenId?: Maybe<Scalars['Long']>;
|
|
8420
8473
|
};
|
|
8421
8474
|
export declare type JiraIssueFieldsArgs = {
|
|
8422
8475
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -10594,6 +10647,7 @@ export declare type JiraQuery = {
|
|
|
10594
10647
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10595
10648
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10596
10649
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
10650
|
+
favourites?: Maybe<JiraFavouriteConnection>;
|
|
10597
10651
|
issueByKey?: Maybe<JiraIssue>;
|
|
10598
10652
|
issueById?: Maybe<JiraIssue>;
|
|
10599
10653
|
issue?: Maybe<JiraIssue>;
|
|
@@ -10622,6 +10676,7 @@ export declare type JiraQuery = {
|
|
|
10622
10676
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
10623
10677
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10624
10678
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10679
|
+
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10625
10680
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
10626
10681
|
};
|
|
10627
10682
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -10674,6 +10729,14 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
10674
10729
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
10675
10730
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
10676
10731
|
};
|
|
10732
|
+
export declare type JiraQueryFavouritesArgs = {
|
|
10733
|
+
cloudId: Scalars['ID'];
|
|
10734
|
+
filter: JiraFavouriteFilter;
|
|
10735
|
+
first?: Maybe<Scalars['Int']>;
|
|
10736
|
+
after?: Maybe<Scalars['String']>;
|
|
10737
|
+
last?: Maybe<Scalars['Int']>;
|
|
10738
|
+
before?: Maybe<Scalars['String']>;
|
|
10739
|
+
};
|
|
10677
10740
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
10678
10741
|
key: Scalars['String'];
|
|
10679
10742
|
cloudId: Scalars['ID'];
|
|
@@ -10789,6 +10852,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10789
10852
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10790
10853
|
projectId: Scalars['ID'];
|
|
10791
10854
|
};
|
|
10855
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
10856
|
+
cloudId: Scalars['ID'];
|
|
10857
|
+
projectKey: Scalars['String'];
|
|
10858
|
+
};
|
|
10792
10859
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10793
10860
|
projectId: Scalars['ID'];
|
|
10794
10861
|
};
|
|
@@ -11086,6 +11153,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
11086
11153
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
11087
11154
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
11088
11155
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
11156
|
+
approvalState?: Maybe<JiraServiceManagementApprovalState>;
|
|
11089
11157
|
};
|
|
11090
11158
|
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
11091
11159
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11146,6 +11214,10 @@ export declare type JiraServiceManagementApprovalFieldCompletedApprovalsConnecti
|
|
|
11146
11214
|
last?: Maybe<Scalars['Int']>;
|
|
11147
11215
|
before?: Maybe<Scalars['String']>;
|
|
11148
11216
|
};
|
|
11217
|
+
export declare enum JiraServiceManagementApprovalState {
|
|
11218
|
+
InsufficientApprovers = "INSUFFICIENT_APPROVERS",
|
|
11219
|
+
Ok = "OK"
|
|
11220
|
+
}
|
|
11149
11221
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11150
11222
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11151
11223
|
id?: Maybe<Scalars['String']>;
|
|
@@ -15983,8 +16055,9 @@ export declare type SearchAnalyticsInput = {
|
|
|
15983
16055
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
15984
16056
|
};
|
|
15985
16057
|
export declare type SearchBoardFilter = {
|
|
15986
|
-
projectARI
|
|
16058
|
+
projectARI?: Maybe<Scalars['ID']>;
|
|
15987
16059
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16060
|
+
boardTypes?: Maybe<Array<SearchJiraBoardType>>;
|
|
15988
16061
|
};
|
|
15989
16062
|
export declare type SearchConfluenceFilter = {
|
|
15990
16063
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -16051,6 +16124,10 @@ export declare type SearchItemConnection = {
|
|
|
16051
16124
|
pageInfo: PageInfo;
|
|
16052
16125
|
totalCount?: Maybe<Scalars['Int']>;
|
|
16053
16126
|
};
|
|
16127
|
+
export declare enum SearchJiraBoardType {
|
|
16128
|
+
Jsw = "JSW",
|
|
16129
|
+
Jwm = "JWM"
|
|
16130
|
+
}
|
|
16054
16131
|
export declare type SearchJiraFilter = {
|
|
16055
16132
|
boardFilter?: Maybe<SearchBoardFilter>;
|
|
16056
16133
|
projectFilter?: Maybe<SearchJiraProjectFilter>;
|
|
@@ -16100,7 +16177,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
16100
16177
|
type: SearchResultType;
|
|
16101
16178
|
description: Scalars['String'];
|
|
16102
16179
|
favourite: Scalars['Boolean'];
|
|
16103
|
-
boardId
|
|
16180
|
+
boardId?: Maybe<Scalars['String']>;
|
|
16104
16181
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
16105
16182
|
};
|
|
16106
16183
|
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
@@ -16130,6 +16207,20 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16130
16207
|
description: Scalars['String'];
|
|
16131
16208
|
favourite: Scalars['Boolean'];
|
|
16132
16209
|
simplified: Scalars['Boolean'];
|
|
16210
|
+
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
16211
|
+
};
|
|
16212
|
+
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo;
|
|
16213
|
+
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
16214
|
+
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
16215
|
+
id: Scalars['ID'];
|
|
16216
|
+
queueId: Scalars['Int'];
|
|
16217
|
+
queueName: Scalars['String'];
|
|
16218
|
+
};
|
|
16219
|
+
export declare type SearchResultSoftwareProjectLandingPageInfo = {
|
|
16220
|
+
__typename?: 'SearchResultSoftwareProjectLandingPageInfo';
|
|
16221
|
+
id: Scalars['ID'];
|
|
16222
|
+
boardId: Scalars['Int'];
|
|
16223
|
+
boardName: Scalars['String'];
|
|
16133
16224
|
};
|
|
16134
16225
|
export declare enum SearchResultType {
|
|
16135
16226
|
Blogpost = "blogpost",
|
|
@@ -16264,7 +16355,7 @@ export declare type ShepherdAlert = {
|
|
|
16264
16355
|
assignee?: Maybe<ShepherdUser>;
|
|
16265
16356
|
cloudId?: Maybe<Scalars['ID']>;
|
|
16266
16357
|
createdOn: Scalars['DateTime'];
|
|
16267
|
-
description?: Maybe<
|
|
16358
|
+
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
16268
16359
|
id: Scalars['ID'];
|
|
16269
16360
|
orgId: Scalars['ID'];
|
|
16270
16361
|
status: ShepherdAlertStatus;
|
|
@@ -16314,6 +16405,11 @@ export declare type ShepherdAppInfo = {
|
|
|
16314
16405
|
env: Scalars['String'];
|
|
16315
16406
|
loginUrl: Scalars['String'];
|
|
16316
16407
|
};
|
|
16408
|
+
export declare type ShepherdConfig = {
|
|
16409
|
+
__typename?: 'ShepherdConfig';
|
|
16410
|
+
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
16411
|
+
};
|
|
16412
|
+
export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
16317
16413
|
export declare type ShepherdCreateAlertInput = {
|
|
16318
16414
|
assignee?: Maybe<Scalars['ID']>;
|
|
16319
16415
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -16373,6 +16469,11 @@ export declare type ShepherdDescriptionSection = {
|
|
|
16373
16469
|
text?: Maybe<Scalars['JSON']>;
|
|
16374
16470
|
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16375
16471
|
};
|
|
16472
|
+
export declare type ShepherdDescriptionTemplate = {
|
|
16473
|
+
__typename?: 'ShepherdDescriptionTemplate';
|
|
16474
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16475
|
+
type?: Maybe<ShepherdAlertTemplateType>;
|
|
16476
|
+
};
|
|
16376
16477
|
export declare type ShepherdEmailConnection = {
|
|
16377
16478
|
__typename?: 'ShepherdEmailConnection';
|
|
16378
16479
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -16450,6 +16551,7 @@ export declare type ShepherdQuery = {
|
|
|
16450
16551
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
16451
16552
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
16452
16553
|
shepherdAppInfo: ShepherdAppInfo;
|
|
16554
|
+
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
16453
16555
|
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
16454
16556
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
16455
16557
|
};
|
|
@@ -16891,6 +16993,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16891
16993
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16892
16994
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16893
16995
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
16996
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16894
16997
|
};
|
|
16895
16998
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16896
16999
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16918,6 +17021,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16918
17021
|
me?: Maybe<SupportRequestPage>;
|
|
16919
17022
|
supportRequest?: Maybe<SupportRequest>;
|
|
16920
17023
|
users?: Maybe<SupportRequestUsers>;
|
|
17024
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16921
17025
|
};
|
|
16922
17026
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16923
17027
|
key: Scalars['ID'];
|
|
@@ -16942,6 +17046,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16942
17046
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16943
17047
|
contact?: Maybe<SupportRequestUser>;
|
|
16944
17048
|
};
|
|
17049
|
+
export declare type SupportRequestContextMutationApi = {
|
|
17050
|
+
__typename?: 'SupportRequestContextMutationApi';
|
|
17051
|
+
setNotifications: SupportRequestNotification;
|
|
17052
|
+
};
|
|
17053
|
+
export declare type SupportRequestContextMutationApiSetNotificationsArgs = {
|
|
17054
|
+
input: SupportRequestContextSetNotificationInput;
|
|
17055
|
+
};
|
|
17056
|
+
export declare type SupportRequestContextQueryApi = {
|
|
17057
|
+
__typename?: 'SupportRequestContextQueryApi';
|
|
17058
|
+
getNotificationStatus?: Maybe<SupportRequestNotification>;
|
|
17059
|
+
};
|
|
17060
|
+
export declare type SupportRequestContextQueryApiGetNotificationStatusArgs = {
|
|
17061
|
+
key: Scalars['ID'];
|
|
17062
|
+
};
|
|
17063
|
+
export declare type SupportRequestContextSetNotificationInput = {
|
|
17064
|
+
requestKey: Scalars['String'];
|
|
17065
|
+
status: Scalars['Boolean'];
|
|
17066
|
+
};
|
|
16945
17067
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16946
17068
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16947
17069
|
dateTime: Scalars['String'];
|
|
@@ -17006,6 +17128,10 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
17006
17128
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17007
17129
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17008
17130
|
};
|
|
17131
|
+
export declare type SupportRequestNotification = {
|
|
17132
|
+
__typename?: 'SupportRequestNotification';
|
|
17133
|
+
status?: Maybe<Scalars['Boolean']>;
|
|
17134
|
+
};
|
|
17009
17135
|
export declare type SupportRequestPage = {
|
|
17010
17136
|
__typename?: 'SupportRequestPage';
|
|
17011
17137
|
profile?: Maybe<SupportRequestUser>;
|