@forge/cli-shared 2.6.2-next.4 → 2.6.2-next.5
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
|
@@ -17245,6 +17245,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
17245
17245
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
17246
17246
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17247
17247
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17248
|
+
removeSupportRequestOrganizations: Array<SupportRequestOrganization>;
|
|
17249
|
+
addSupportRequestOrganizations: Array<SupportRequestOrganization>;
|
|
17248
17250
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
17249
17251
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17250
17252
|
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
@@ -17261,6 +17263,12 @@ export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArg
|
|
|
17261
17263
|
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
17262
17264
|
input: SupportRequestParticipantsInput;
|
|
17263
17265
|
};
|
|
17266
|
+
export declare type SupportRequestCatalogMutationApiRemoveSupportRequestOrganizationsArgs = {
|
|
17267
|
+
input: SupportRequestOrganizationsInput;
|
|
17268
|
+
};
|
|
17269
|
+
export declare type SupportRequestCatalogMutationApiAddSupportRequestOrganizationsArgs = {
|
|
17270
|
+
input: SupportRequestOrganizationsInput;
|
|
17271
|
+
};
|
|
17264
17272
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
17265
17273
|
emails: Array<Scalars['String']>;
|
|
17266
17274
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -17386,6 +17394,15 @@ export declare type SupportRequestNotification = {
|
|
|
17386
17394
|
__typename?: 'SupportRequestNotification';
|
|
17387
17395
|
status?: Maybe<Scalars['Boolean']>;
|
|
17388
17396
|
};
|
|
17397
|
+
export declare type SupportRequestOrganization = {
|
|
17398
|
+
__typename?: 'SupportRequestOrganization';
|
|
17399
|
+
id: Scalars['Int'];
|
|
17400
|
+
name: Scalars['String'];
|
|
17401
|
+
};
|
|
17402
|
+
export declare type SupportRequestOrganizationsInput = {
|
|
17403
|
+
requestKey: Scalars['String'];
|
|
17404
|
+
orgIds: Array<Scalars['Int']>;
|
|
17405
|
+
};
|
|
17389
17406
|
export declare type SupportRequestPage = {
|
|
17390
17407
|
__typename?: 'SupportRequestPage';
|
|
17391
17408
|
profile?: Maybe<SupportRequestUser>;
|
|
@@ -17496,11 +17513,16 @@ export declare enum SupportRequestUserType {
|
|
|
17496
17513
|
export declare type SupportRequestUsers = {
|
|
17497
17514
|
__typename?: 'SupportRequestUsers';
|
|
17498
17515
|
searchUsers: Array<SupportRequestUser>;
|
|
17516
|
+
searchOrganizations: Array<SupportRequestOrganization>;
|
|
17499
17517
|
};
|
|
17500
17518
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
17501
17519
|
query?: Maybe<Scalars['String']>;
|
|
17502
17520
|
requestKey?: Maybe<Scalars['String']>;
|
|
17503
17521
|
};
|
|
17522
|
+
export declare type SupportRequestUsersSearchOrganizationsArgs = {
|
|
17523
|
+
query?: Maybe<Scalars['String']>;
|
|
17524
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
17525
|
+
};
|
|
17504
17526
|
export declare type SupportRequests = {
|
|
17505
17527
|
__typename?: 'SupportRequests';
|
|
17506
17528
|
total: Scalars['Int'];
|