@forge/cli-shared 2.4.0-next.5 → 2.4.0-next.6
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
|
@@ -1450,6 +1450,7 @@ export declare type CardStatus = {
|
|
|
1450
1450
|
export declare type CardType = {
|
|
1451
1451
|
__typename?: 'CardType';
|
|
1452
1452
|
id?: Maybe<Scalars['ID']>;
|
|
1453
|
+
externalId?: Maybe<Scalars['ID']>;
|
|
1453
1454
|
name?: Maybe<Scalars['String']>;
|
|
1454
1455
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1455
1456
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -14996,6 +14997,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
14996
14997
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14997
14998
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14998
14999
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15000
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
14999
15001
|
};
|
|
15000
15002
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
15001
15003
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -15015,6 +15017,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
15015
15017
|
sen?: Maybe<Scalars['String']>;
|
|
15016
15018
|
operation: SupportRequestNamedContactOperation;
|
|
15017
15019
|
};
|
|
15020
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15021
|
+
input: SupportRequestUpdateInput;
|
|
15022
|
+
};
|
|
15018
15023
|
export declare type SupportRequestCatalogQueryApi = {
|
|
15019
15024
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
15020
15025
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -15195,6 +15200,14 @@ export declare type SupportRequestTransitions = {
|
|
|
15195
15200
|
lastPage: Scalars['Boolean'];
|
|
15196
15201
|
values: Array<SupportRequestTransition>;
|
|
15197
15202
|
};
|
|
15203
|
+
export declare type SupportRequestUpdateFieldInput = {
|
|
15204
|
+
id: Scalars['String'];
|
|
15205
|
+
value: Scalars['String'];
|
|
15206
|
+
};
|
|
15207
|
+
export declare type SupportRequestUpdateInput = {
|
|
15208
|
+
requestKey: Scalars['ID'];
|
|
15209
|
+
experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
|
|
15210
|
+
};
|
|
15198
15211
|
export declare type SupportRequestUser = {
|
|
15199
15212
|
__typename?: 'SupportRequestUser';
|
|
15200
15213
|
user?: Maybe<User>;
|