@forge/cli-shared 5.4.0 → 5.4.1-next.1
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,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.4.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [c74ca63]
|
|
8
|
+
- @forge/manifest@7.6.1-next.1
|
|
9
|
+
|
|
10
|
+
## 5.4.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [b90e809]
|
|
15
|
+
- Updated dependencies [313b8e1]
|
|
16
|
+
- @forge/manifest@7.6.1-next.0
|
|
17
|
+
|
|
3
18
|
## 5.4.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -2997,6 +2997,7 @@ export declare type CommerceOffering = {
|
|
|
2997
2997
|
name?: Maybe<Scalars['String']['output']>;
|
|
2998
2998
|
};
|
|
2999
2999
|
export declare type CommercePricingPlan = {
|
|
3000
|
+
currency?: Maybe<CcpCurrency>;
|
|
3000
3001
|
primaryCycle?: Maybe<CommercePrimaryCycle>;
|
|
3001
3002
|
type?: Maybe<Scalars['String']['output']>;
|
|
3002
3003
|
};
|
|
@@ -6777,6 +6778,22 @@ export declare type ConfluenceFavoritedSummary = {
|
|
|
6777
6778
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
6778
6779
|
isFavorite: Scalars['Boolean']['output'];
|
|
6779
6780
|
};
|
|
6781
|
+
export declare type ConfluenceFolder = {
|
|
6782
|
+
__typename?: 'ConfluenceFolder';
|
|
6783
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
6784
|
+
folderId: Scalars['ID']['output'];
|
|
6785
|
+
id: Scalars['ID']['output'];
|
|
6786
|
+
links?: Maybe<ConfluenceFolderLinks>;
|
|
6787
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
6788
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
6789
|
+
space?: Maybe<ConfluenceSpace>;
|
|
6790
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6791
|
+
};
|
|
6792
|
+
export declare type ConfluenceFolderLinks = {
|
|
6793
|
+
__typename?: 'ConfluenceFolderLinks';
|
|
6794
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
6795
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
6796
|
+
};
|
|
6780
6797
|
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
6781
6798
|
__typename?: 'ConfluenceFooterComment';
|
|
6782
6799
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -12758,6 +12775,8 @@ export declare type ConfluenceQueryApi = {
|
|
|
12758
12775
|
embed?: Maybe<ConfluenceEmbed>;
|
|
12759
12776
|
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
12760
12777
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
12778
|
+
folder?: Maybe<ConfluenceFolder>;
|
|
12779
|
+
folders?: Maybe<Array<Maybe<ConfluenceFolder>>>;
|
|
12761
12780
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
12762
12781
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
12763
12782
|
page?: Maybe<ConfluencePage>;
|
|
@@ -12798,6 +12817,12 @@ export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
|
12798
12817
|
filters?: InputMaybe<ConfluenceSpaceFilters>;
|
|
12799
12818
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12800
12819
|
};
|
|
12820
|
+
export declare type ConfluenceQueryApiFolderArgs = {
|
|
12821
|
+
id: Scalars['ID']['input'];
|
|
12822
|
+
};
|
|
12823
|
+
export declare type ConfluenceQueryApiFoldersArgs = {
|
|
12824
|
+
ids: Array<Scalars['ID']['input']>;
|
|
12825
|
+
};
|
|
12801
12826
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
12802
12827
|
id: Scalars['ID']['input'];
|
|
12803
12828
|
};
|
|
@@ -15720,8 +15745,10 @@ export declare type CustomerServiceCustomAttributeStyleConfigurationInput = {
|
|
|
15720
15745
|
export declare type CustomerServiceCustomDetail = Node & {
|
|
15721
15746
|
__typename?: 'CustomerServiceCustomDetail';
|
|
15722
15747
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15748
|
+
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15723
15749
|
id: Scalars['ID']['output'];
|
|
15724
15750
|
name: Scalars['String']['output'];
|
|
15751
|
+
readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15725
15752
|
type: CustomerServiceCustomDetailType;
|
|
15726
15753
|
};
|
|
15727
15754
|
export declare type CustomerServiceCustomDetailConfigMetadata = {
|
|
@@ -15754,7 +15781,9 @@ export declare type CustomerServiceCustomDetailCreateErrorExtension = MutationEr
|
|
|
15754
15781
|
export declare type CustomerServiceCustomDetailCreateInput = {
|
|
15755
15782
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
15756
15783
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
15784
|
+
editPermissions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15757
15785
|
name: Scalars['String']['input'];
|
|
15786
|
+
readPermissions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15758
15787
|
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
15759
15788
|
type?: InputMaybe<CustomerServiceCustomDetailCreateTypeInput>;
|
|
15760
15789
|
};
|
|
@@ -15828,11 +15857,9 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
15828
15857
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15829
15858
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15830
15859
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15831
|
-
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15832
15860
|
id: Scalars['ID']['output'];
|
|
15833
15861
|
name: Scalars['String']['output'];
|
|
15834
15862
|
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
15835
|
-
readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15836
15863
|
type: CustomerServiceCustomDetailType;
|
|
15837
15864
|
value?: Maybe<Scalars['String']['output']>;
|
|
15838
15865
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -19127,6 +19154,7 @@ export declare type ExternalAuthProvider = {
|
|
|
19127
19154
|
export declare type ExternalBranch = Node & {
|
|
19128
19155
|
__typename?: 'ExternalBranch';
|
|
19129
19156
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
19157
|
+
container?: Maybe<ExternalEntity>;
|
|
19130
19158
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
19131
19159
|
id: Scalars['ID']['output'];
|
|
19132
19160
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -19192,6 +19220,7 @@ export declare type ExternalCommit = Node & {
|
|
|
19192
19220
|
__typename?: 'ExternalCommit';
|
|
19193
19221
|
author?: Maybe<ExternalUser>;
|
|
19194
19222
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
19223
|
+
container?: Maybe<ExternalEntity>;
|
|
19195
19224
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19196
19225
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19197
19226
|
fileInfo?: Maybe<ExternalFileInfo>;
|
|
@@ -19358,6 +19387,7 @@ export declare type ExternalEntities = {
|
|
|
19358
19387
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
19359
19388
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
19360
19389
|
};
|
|
19390
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
19361
19391
|
export declare type ExternalEnvironment = {
|
|
19362
19392
|
__typename?: 'ExternalEnvironment';
|
|
19363
19393
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19469,6 +19499,7 @@ export declare type ExternalPullRequest = Node & {
|
|
|
19469
19499
|
__typename?: 'ExternalPullRequest';
|
|
19470
19500
|
author?: Maybe<ExternalUser>;
|
|
19471
19501
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
19502
|
+
container?: Maybe<ExternalEntity>;
|
|
19472
19503
|
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
19473
19504
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19474
19505
|
id: Scalars['ID']['output'];
|
|
@@ -35485,6 +35516,7 @@ export declare type HamsOffering = CommerceOffering & {
|
|
|
35485
35516
|
};
|
|
35486
35517
|
export declare type HamsPricingPlan = CommercePricingPlan & {
|
|
35487
35518
|
__typename?: 'HamsPricingPlan';
|
|
35519
|
+
currency?: Maybe<CcpCurrency>;
|
|
35488
35520
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
35489
35521
|
type?: Maybe<Scalars['String']['output']>;
|
|
35490
35522
|
};
|
|
@@ -39263,6 +39295,7 @@ export declare type JiraCalendarSprintsInput = {
|
|
|
39263
39295
|
};
|
|
39264
39296
|
export declare type JiraCalendarVersionsInput = {
|
|
39265
39297
|
additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39298
|
+
includeSharedReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39266
39299
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
39267
39300
|
};
|
|
39268
39301
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
@@ -42439,7 +42472,7 @@ export declare type JiraIssueExportError = {
|
|
|
42439
42472
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
42440
42473
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
42441
42474
|
};
|
|
42442
|
-
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress |
|
|
42475
|
+
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
42443
42476
|
export declare type JiraIssueExportInput = {
|
|
42444
42477
|
cloudId: Scalars['ID']['input'];
|
|
42445
42478
|
exportType?: InputMaybe<JiraIssueExportType>;
|
|
@@ -42466,10 +42499,6 @@ export declare type JiraIssueExportTaskProgress = {
|
|
|
42466
42499
|
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
42467
42500
|
task?: Maybe<JiraIssueExportTask>;
|
|
42468
42501
|
};
|
|
42469
|
-
export declare type JiraIssueExportTaskSubmissionFailed = {
|
|
42470
|
-
__typename?: 'JiraIssueExportTaskSubmissionFailed';
|
|
42471
|
-
error?: Maybe<JiraIssueExportError>;
|
|
42472
|
-
};
|
|
42473
42502
|
export declare type JiraIssueExportTaskSubmitted = {
|
|
42474
42503
|
__typename?: 'JiraIssueExportTaskSubmitted';
|
|
42475
42504
|
task?: Maybe<JiraIssueExportTask>;
|
|
@@ -45016,6 +45045,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
45016
45045
|
Code = "CODE",
|
|
45017
45046
|
Components = "COMPONENTS",
|
|
45018
45047
|
Deployments = "DEPLOYMENTS",
|
|
45048
|
+
Development = "DEVELOPMENT",
|
|
45019
45049
|
Forms = "FORMS",
|
|
45020
45050
|
Goals = "GOALS",
|
|
45021
45051
|
Incidents = "INCIDENTS",
|
|
@@ -62627,7 +62657,7 @@ export declare enum SearchConfluenceDocumentStatus {
|
|
|
62627
62657
|
Current = "CURRENT",
|
|
62628
62658
|
Draft = "DRAFT"
|
|
62629
62659
|
}
|
|
62630
|
-
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluencePage | ConfluenceWhiteboard;
|
|
62660
|
+
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
62631
62661
|
export declare type SearchConfluenceFilter = {
|
|
62632
62662
|
ancestorIdsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62633
62663
|
containerARIs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -62822,6 +62852,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
62822
62852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62823
62853
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
62824
62854
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
62855
|
+
disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62825
62856
|
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62826
62857
|
enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62827
62858
|
experience: Scalars['String']['input'];
|
|
@@ -63114,6 +63145,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
63114
63145
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
63115
63146
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
63116
63147
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
63148
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
63117
63149
|
title: Scalars['String']['output'];
|
|
63118
63150
|
type: SearchResultType;
|
|
63119
63151
|
url: Scalars['URL']['output'];
|
|
@@ -63507,6 +63539,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
63507
63539
|
id: Scalars['ID']['output'];
|
|
63508
63540
|
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
63509
63541
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
63542
|
+
product: ShepherdAtlassianProduct;
|
|
63510
63543
|
status: ShepherdAlertStatus;
|
|
63511
63544
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
63512
63545
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
@@ -64001,15 +64034,39 @@ export declare type ShepherdExclusionContentInfo = {
|
|
|
64001
64034
|
url?: Maybe<Scalars['URL']['output']>;
|
|
64002
64035
|
};
|
|
64003
64036
|
export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdExclusionContentInfo;
|
|
64037
|
+
export declare type ShepherdExclusionUserSearchConnection = {
|
|
64038
|
+
__typename?: 'ShepherdExclusionUserSearchConnection';
|
|
64039
|
+
edges?: Maybe<Array<Maybe<ShepherdExclusionUserSearchEdge>>>;
|
|
64040
|
+
pageInfo: PageInfo;
|
|
64041
|
+
};
|
|
64042
|
+
export declare type ShepherdExclusionUserSearchEdge = {
|
|
64043
|
+
__typename?: 'ShepherdExclusionUserSearchEdge';
|
|
64044
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64045
|
+
node?: Maybe<ShepherdExclusionUserSearchNode>;
|
|
64046
|
+
};
|
|
64047
|
+
export declare type ShepherdExclusionUserSearchNode = {
|
|
64048
|
+
__typename?: 'ShepherdExclusionUserSearchNode';
|
|
64049
|
+
aaid: Scalars['ID']['output'];
|
|
64050
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
64051
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
64052
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
64053
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
64054
|
+
};
|
|
64055
|
+
export declare type ShepherdExclusionUserSearchResult = QueryError | ShepherdExclusionUserSearchConnection;
|
|
64004
64056
|
export declare type ShepherdExclusionsQueries = {
|
|
64005
64057
|
__typename?: 'ShepherdExclusionsQueries';
|
|
64006
64058
|
contentInfo?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
64059
|
+
userSearch?: Maybe<ShepherdExclusionUserSearchResult>;
|
|
64007
64060
|
};
|
|
64008
64061
|
export declare type ShepherdExclusionsQueriesContentInfoArgs = {
|
|
64009
64062
|
contentUrlOrAri: Scalars['String']['input'];
|
|
64010
64063
|
productAti: Scalars['String']['input'];
|
|
64011
64064
|
workspaceId: Scalars['ID']['input'];
|
|
64012
64065
|
};
|
|
64066
|
+
export declare type ShepherdExclusionsQueriesUserSearchArgs = {
|
|
64067
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
64068
|
+
workspaceId: Scalars['ID']['input'];
|
|
64069
|
+
};
|
|
64013
64070
|
export declare type ShepherdExternalResource = JiraIssue;
|
|
64014
64071
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
64015
64072
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
@@ -64196,6 +64253,7 @@ export declare enum ShepherdRateThresholdValue {
|
|
|
64196
64253
|
}
|
|
64197
64254
|
export declare type ShepherdRelatedAlertType = {
|
|
64198
64255
|
__typename?: 'ShepherdRelatedAlertType';
|
|
64256
|
+
product?: Maybe<ShepherdAtlassianProduct>;
|
|
64199
64257
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
64200
64258
|
title?: Maybe<ShepherdAlertTitle>;
|
|
64201
64259
|
};
|
|
@@ -64562,6 +64620,7 @@ export declare type ShepherdWorkspaceSettingUpdateInput = {
|
|
|
64562
64620
|
};
|
|
64563
64621
|
export declare type ShepherdWorkspaceSettingValueInput = {
|
|
64564
64622
|
enabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64623
|
+
jiraEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64565
64624
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
64566
64625
|
};
|
|
64567
64626
|
export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
@@ -66237,6 +66296,7 @@ export declare enum TownsquareGoalTypeState {
|
|
|
66237
66296
|
}
|
|
66238
66297
|
export declare type TownsquareLocalizationField = {
|
|
66239
66298
|
__typename?: 'TownsquareLocalizationField';
|
|
66299
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
66240
66300
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
66241
66301
|
};
|
|
66242
66302
|
export declare type TownsquareMutationApi = {
|
|
@@ -67762,6 +67822,7 @@ export declare type UnifiedForumsGroupsArgs = {
|
|
|
67762
67822
|
};
|
|
67763
67823
|
export declare type UnifiedForumsBadge = UnifiedIBadge & UnifiedINode & {
|
|
67764
67824
|
__typename?: 'UnifiedForumsBadge';
|
|
67825
|
+
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
67765
67826
|
description?: Maybe<Scalars['String']['output']>;
|
|
67766
67827
|
id: Scalars['ID']['output'];
|
|
67767
67828
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -67884,6 +67945,7 @@ export declare type UnifiedGamificationRecognitionsTotal = {
|
|
|
67884
67945
|
count?: Maybe<Scalars['Int']['output']>;
|
|
67885
67946
|
};
|
|
67886
67947
|
export declare type UnifiedIBadge = {
|
|
67948
|
+
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
67887
67949
|
description?: Maybe<Scalars['String']['output']>;
|
|
67888
67950
|
id: Scalars['ID']['output'];
|
|
67889
67951
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -67977,13 +68039,9 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
|
67977
68039
|
connectedProductsReferenceId: Scalars['String']['input'];
|
|
67978
68040
|
parentAccountInternalId: Scalars['String']['input'];
|
|
67979
68041
|
};
|
|
67980
|
-
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
67981
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
67982
|
-
};
|
|
67983
68042
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
67984
68043
|
aaid: Scalars['String']['input'];
|
|
67985
68044
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67986
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
67987
68045
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
67988
68046
|
};
|
|
67989
68047
|
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
@@ -68009,7 +68067,6 @@ export declare type UnifiedPageInfo = {
|
|
|
68009
68067
|
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
68010
68068
|
__typename?: 'UnifiedParentAccount';
|
|
68011
68069
|
id: Scalars['ID']['output'];
|
|
68012
|
-
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
68013
68070
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
68014
68071
|
};
|
|
68015
68072
|
export declare type UnifiedParentAccountPayload = UnifiedPayload & {
|