@forge/cli-shared 5.1.0-next.2 → 5.1.0-next.4
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,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.1.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0c9271c: When the manifest changes whilst running forge tunnel, warn the user that they need to redeploy for changes to take effect.
|
|
8
|
+
|
|
9
|
+
## 5.1.0-next.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [8944e0c]
|
|
14
|
+
- @forge/manifest@7.4.1-next.1
|
|
15
|
+
|
|
3
16
|
## 5.1.0-next.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -2510,6 +2510,7 @@ export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
|
2510
2510
|
};
|
|
2511
2511
|
export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
2512
2512
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
2513
|
+
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2513
2514
|
};
|
|
2514
2515
|
export declare type CcpEntitlementPreDunning = CommerceEntitlementPreDunning & {
|
|
2515
2516
|
__typename?: 'CcpEntitlementPreDunning';
|
|
@@ -8372,6 +8373,7 @@ export declare type CreateAppDeploymentInput = {
|
|
|
8372
8373
|
artifactUrl: Scalars['URL']['input'];
|
|
8373
8374
|
environmentKey: Scalars['String']['input'];
|
|
8374
8375
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
8376
|
+
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
8375
8377
|
};
|
|
8376
8378
|
export declare type CreateAppDeploymentResponse = Payload & {
|
|
8377
8379
|
__typename?: 'CreateAppDeploymentResponse';
|
|
@@ -27726,9 +27728,10 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
27726
27728
|
export declare type HelpLayoutAnnouncementInput = {
|
|
27727
27729
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
27728
27730
|
};
|
|
27729
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
27731
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutEditorElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
27730
27732
|
export declare type HelpLayoutAtomicElementInput = {
|
|
27731
27733
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
27734
|
+
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
27732
27735
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
27733
27736
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
27734
27737
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
@@ -27741,6 +27744,7 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
27741
27744
|
};
|
|
27742
27745
|
export declare enum HelpLayoutAtomicElementKey {
|
|
27743
27746
|
Announcement = "ANNOUNCEMENT",
|
|
27747
|
+
Editor = "EDITOR",
|
|
27744
27748
|
Heading = "HEADING",
|
|
27745
27749
|
Hero = "HERO",
|
|
27746
27750
|
Image = "IMAGE",
|
|
@@ -27797,13 +27801,25 @@ export declare type HelpLayoutCreationInput = {
|
|
|
27797
27801
|
parentAri: Scalars['ID']['input'];
|
|
27798
27802
|
sections: Array<HelpLayoutSectionInput>;
|
|
27799
27803
|
};
|
|
27800
|
-
export declare type
|
|
27804
|
+
export declare type HelpLayoutEditorElement = HelpLayoutVisualEntity & Node & {
|
|
27805
|
+
__typename?: 'HelpLayoutEditorElement';
|
|
27806
|
+
adf?: Maybe<Scalars['String']['output']>;
|
|
27807
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
27808
|
+
id: Scalars['ID']['output'];
|
|
27809
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
27810
|
+
};
|
|
27811
|
+
export declare type HelpLayoutEditorInput = {
|
|
27812
|
+
adf: Scalars['String']['input'];
|
|
27813
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
27814
|
+
};
|
|
27815
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutEditorElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
27801
27816
|
export declare enum HelpLayoutElementCategory {
|
|
27802
27817
|
Basic = "BASIC",
|
|
27803
27818
|
Navigation = "NAVIGATION"
|
|
27804
27819
|
}
|
|
27805
27820
|
export declare type HelpLayoutElementInput = {
|
|
27806
27821
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
27822
|
+
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
27807
27823
|
elementTypeKey: HelpLayoutElementKey;
|
|
27808
27824
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
27809
27825
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
@@ -27817,6 +27833,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
27817
27833
|
};
|
|
27818
27834
|
export declare enum HelpLayoutElementKey {
|
|
27819
27835
|
Announcement = "ANNOUNCEMENT",
|
|
27836
|
+
Editor = "EDITOR",
|
|
27820
27837
|
Heading = "HEADING",
|
|
27821
27838
|
Hero = "HERO",
|
|
27822
27839
|
Image = "IMAGE",
|
|
@@ -42618,6 +42635,11 @@ export declare type JsmChatCreateConversationResponse = {
|
|
|
42618
42635
|
__typename?: 'JsmChatCreateConversationResponse';
|
|
42619
42636
|
id: Scalars['ID']['output'];
|
|
42620
42637
|
};
|
|
42638
|
+
export declare type JsmChatDeleteSlackChannelMappingOutput = {
|
|
42639
|
+
__typename?: 'JsmChatDeleteSlackChannelMappingOutput';
|
|
42640
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
42641
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
42642
|
+
};
|
|
42621
42643
|
export declare type JsmChatDisconnectJiraProjectInput = {
|
|
42622
42644
|
activationId: Scalars['ID']['input'];
|
|
42623
42645
|
projectId: Scalars['ID']['input'];
|
|
@@ -42697,6 +42719,7 @@ export declare type JsmChatMutation = {
|
|
|
42697
42719
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
42698
42720
|
createConversation?: Maybe<JsmChatCreateConversationPayload>;
|
|
42699
42721
|
createConversationMessage?: Maybe<JsmChatCreateConversationMessagePayload>;
|
|
42722
|
+
deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
|
|
42700
42723
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
42701
42724
|
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
42702
42725
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
@@ -42727,6 +42750,10 @@ export declare type JsmChatMutationCreateConversationMessageArgs = {
|
|
|
42727
42750
|
input: JsmChatCreateConversationMessageInput;
|
|
42728
42751
|
workspaceAri: Scalars['ID']['input'];
|
|
42729
42752
|
};
|
|
42753
|
+
export declare type JsmChatMutationDeleteSlackChannelMappingArgs = {
|
|
42754
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
42755
|
+
slackChannelAri: Scalars['ID']['input'];
|
|
42756
|
+
};
|
|
42730
42757
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
42731
42758
|
input: JsmChatDisconnectJiraProjectInput;
|
|
42732
42759
|
};
|
|
@@ -43768,17 +43795,17 @@ export declare type MarketplaceConsoleDevSpaceProgramEnrollment = {
|
|
|
43768
43795
|
};
|
|
43769
43796
|
export declare type MarketplaceConsoleDevSpaceSupportAvailability = {
|
|
43770
43797
|
__typename?: 'MarketplaceConsoleDevSpaceSupportAvailability';
|
|
43771
|
-
availableFrom
|
|
43772
|
-
availableTo
|
|
43773
|
-
days?: Maybe<Array<
|
|
43774
|
-
holidays?: Maybe<Array<
|
|
43775
|
-
timezone
|
|
43798
|
+
availableFrom: Scalars['String']['output'];
|
|
43799
|
+
availableTo: Scalars['String']['output'];
|
|
43800
|
+
days?: Maybe<Array<Scalars['String']['output']>>;
|
|
43801
|
+
holidays?: Maybe<Array<MarketplaceConsoleDevSpaceSupportContactHoliday>>;
|
|
43802
|
+
timezone: Scalars['String']['output'];
|
|
43776
43803
|
};
|
|
43777
43804
|
export declare type MarketplaceConsoleDevSpaceSupportContactHoliday = {
|
|
43778
43805
|
__typename?: 'MarketplaceConsoleDevSpaceSupportContactHoliday';
|
|
43779
|
-
date
|
|
43780
|
-
repeatAnnually
|
|
43781
|
-
title
|
|
43806
|
+
date: Scalars['String']['output'];
|
|
43807
|
+
repeatAnnually: Scalars['Boolean']['output'];
|
|
43808
|
+
title: Scalars['String']['output'];
|
|
43782
43809
|
};
|
|
43783
43810
|
export declare type MarketplaceConsoleDevSpaceSupportDetails = {
|
|
43784
43811
|
__typename?: 'MarketplaceConsoleDevSpaceSupportDetails';
|
|
@@ -43787,6 +43814,7 @@ export declare type MarketplaceConsoleDevSpaceSupportDetails = {
|
|
|
43787
43814
|
contactName?: Maybe<Scalars['String']['output']>;
|
|
43788
43815
|
contactPhone?: Maybe<Scalars['String']['output']>;
|
|
43789
43816
|
emergencyContact?: Maybe<Scalars['String']['output']>;
|
|
43817
|
+
slaUrl?: Maybe<Scalars['String']['output']>;
|
|
43790
43818
|
targetResponseTimeInHrs?: Maybe<Scalars['Int']['output']>;
|
|
43791
43819
|
url?: Maybe<Scalars['String']['output']>;
|
|
43792
43820
|
};
|
|
@@ -50757,6 +50785,7 @@ export declare type SearchResultSlackMessage = SearchResult & {
|
|
|
50757
50785
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
50758
50786
|
id: Scalars['ID']['output'];
|
|
50759
50787
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
50788
|
+
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
50760
50789
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
50761
50790
|
title: Scalars['String']['output'];
|
|
50762
50791
|
type: SearchResultType;
|
|
@@ -55384,9 +55413,66 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
55384
55413
|
};
|
|
55385
55414
|
export declare type UnifiedForums = UnifiedINode & {
|
|
55386
55415
|
__typename?: 'UnifiedForums';
|
|
55416
|
+
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
55417
|
+
groups?: Maybe<UnifiedUForumsGroupsResult>;
|
|
55387
55418
|
id: Scalars['ID']['output'];
|
|
55388
55419
|
snapshot?: Maybe<UnifiedUForumsSnapshotResult>;
|
|
55389
55420
|
};
|
|
55421
|
+
export declare type UnifiedForumsBadgesArgs = {
|
|
55422
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55423
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55424
|
+
};
|
|
55425
|
+
export declare type UnifiedForumsGroupsArgs = {
|
|
55426
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55427
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55428
|
+
};
|
|
55429
|
+
export declare type UnifiedForumsBadge = UnifiedIBadge & UnifiedINode & {
|
|
55430
|
+
__typename?: 'UnifiedForumsBadge';
|
|
55431
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55432
|
+
id: Scalars['ID']['output'];
|
|
55433
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
55434
|
+
lastCompletedDate?: Maybe<Scalars['String']['output']>;
|
|
55435
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55436
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
55437
|
+
};
|
|
55438
|
+
export declare type UnifiedForumsBadgeEdge = UnifiedIEdge & {
|
|
55439
|
+
__typename?: 'UnifiedForumsBadgeEdge';
|
|
55440
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55441
|
+
node?: Maybe<UnifiedForumsBadge>;
|
|
55442
|
+
};
|
|
55443
|
+
export declare type UnifiedForumsBadgesConnection = UnifiedIConnection & {
|
|
55444
|
+
__typename?: 'UnifiedForumsBadgesConnection';
|
|
55445
|
+
edges?: Maybe<Array<Maybe<UnifiedForumsBadgeEdge>>>;
|
|
55446
|
+
pageInfo: UnifiedPageInfo;
|
|
55447
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55448
|
+
};
|
|
55449
|
+
export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
55450
|
+
__typename?: 'UnifiedForumsGroup';
|
|
55451
|
+
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
55452
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55453
|
+
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
55454
|
+
id: Scalars['ID']['output'];
|
|
55455
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
55456
|
+
viewHref?: Maybe<Scalars['String']['output']>;
|
|
55457
|
+
};
|
|
55458
|
+
export declare type UnifiedForumsGroupAvatar = {
|
|
55459
|
+
__typename?: 'UnifiedForumsGroupAvatar';
|
|
55460
|
+
largeHref?: Maybe<Scalars['String']['output']>;
|
|
55461
|
+
mediumHref?: Maybe<Scalars['String']['output']>;
|
|
55462
|
+
smallHref?: Maybe<Scalars['String']['output']>;
|
|
55463
|
+
tinyHref?: Maybe<Scalars['String']['output']>;
|
|
55464
|
+
};
|
|
55465
|
+
export declare type UnifiedForumsGroupEdge = UnifiedIEdge & {
|
|
55466
|
+
__typename?: 'UnifiedForumsGroupEdge';
|
|
55467
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55468
|
+
node?: Maybe<UnifiedForumsGroup>;
|
|
55469
|
+
};
|
|
55470
|
+
export declare type UnifiedForumsGroupsConnection = UnifiedIConnection & {
|
|
55471
|
+
__typename?: 'UnifiedForumsGroupsConnection';
|
|
55472
|
+
edges?: Maybe<Array<Maybe<UnifiedForumsGroupEdge>>>;
|
|
55473
|
+
pageInfo: UnifiedPageInfo;
|
|
55474
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55475
|
+
};
|
|
55390
55476
|
export declare type UnifiedForumsSnapshot = UnifiedINode & {
|
|
55391
55477
|
__typename?: 'UnifiedForumsSnapshot';
|
|
55392
55478
|
acceptedAnswersCreated?: Maybe<Scalars['Int']['output']>;
|
|
@@ -55408,10 +55494,14 @@ export declare type UnifiedForumsSnapshot = UnifiedINode & {
|
|
|
55408
55494
|
};
|
|
55409
55495
|
export declare type UnifiedGamification = UnifiedINode & {
|
|
55410
55496
|
__typename?: 'UnifiedGamification';
|
|
55411
|
-
badges?: Maybe<
|
|
55497
|
+
badges?: Maybe<UnifiedUGamificationBadgesResult>;
|
|
55412
55498
|
id: Scalars['ID']['output'];
|
|
55413
55499
|
};
|
|
55414
|
-
export declare type
|
|
55500
|
+
export declare type UnifiedGamificationBadgesArgs = {
|
|
55501
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55502
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55503
|
+
};
|
|
55504
|
+
export declare type UnifiedGamificationBadge = UnifiedIBadge & UnifiedINode & {
|
|
55415
55505
|
__typename?: 'UnifiedGamificationBadge';
|
|
55416
55506
|
description?: Maybe<Scalars['String']['output']>;
|
|
55417
55507
|
id: Scalars['ID']['output'];
|
|
@@ -55420,6 +55510,24 @@ export declare type UnifiedGamificationBadge = UnifiedINode & {
|
|
|
55420
55510
|
name?: Maybe<Scalars['String']['output']>;
|
|
55421
55511
|
type?: Maybe<Scalars['String']['output']>;
|
|
55422
55512
|
};
|
|
55513
|
+
export declare type UnifiedGamificationBadgeEdge = UnifiedIEdge & {
|
|
55514
|
+
__typename?: 'UnifiedGamificationBadgeEdge';
|
|
55515
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55516
|
+
node?: Maybe<UnifiedGamificationBadge>;
|
|
55517
|
+
};
|
|
55518
|
+
export declare type UnifiedGamificationBadgesConnection = UnifiedIConnection & {
|
|
55519
|
+
__typename?: 'UnifiedGamificationBadgesConnection';
|
|
55520
|
+
edges?: Maybe<Array<Maybe<UnifiedGamificationBadgeEdge>>>;
|
|
55521
|
+
pageInfo: UnifiedPageInfo;
|
|
55522
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55523
|
+
};
|
|
55524
|
+
export declare type UnifiedIBadge = {
|
|
55525
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55526
|
+
id: Scalars['ID']['output'];
|
|
55527
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
55528
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55529
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
55530
|
+
};
|
|
55423
55531
|
export declare type UnifiedIConnection = {
|
|
55424
55532
|
edges?: Maybe<Array<Maybe<UnifiedIEdge>>>;
|
|
55425
55533
|
pageInfo: UnifiedPageInfo;
|
|
@@ -55549,6 +55657,7 @@ export declare type UnifiedPayload = {
|
|
|
55549
55657
|
};
|
|
55550
55658
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
55551
55659
|
__typename?: 'UnifiedProfile';
|
|
55660
|
+
badges?: Maybe<UnifiedProfileBadgesConnection>;
|
|
55552
55661
|
bio?: Maybe<Scalars['String']['output']>;
|
|
55553
55662
|
company?: Maybe<Scalars['String']['output']>;
|
|
55554
55663
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
@@ -55568,6 +55677,30 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
55568
55677
|
xUrl?: Maybe<Scalars['String']['output']>;
|
|
55569
55678
|
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
55570
55679
|
};
|
|
55680
|
+
export declare type UnifiedProfileBadgesArgs = {
|
|
55681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55682
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55683
|
+
};
|
|
55684
|
+
export declare type UnifiedProfileBadge = UnifiedIBadge & UnifiedINode & {
|
|
55685
|
+
__typename?: 'UnifiedProfileBadge';
|
|
55686
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55687
|
+
id: Scalars['ID']['output'];
|
|
55688
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
55689
|
+
lastCompletedDate?: Maybe<Scalars['String']['output']>;
|
|
55690
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55691
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
55692
|
+
};
|
|
55693
|
+
export declare type UnifiedProfileBadgeEdge = UnifiedIEdge & {
|
|
55694
|
+
__typename?: 'UnifiedProfileBadgeEdge';
|
|
55695
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55696
|
+
node?: Maybe<UnifiedProfileBadge>;
|
|
55697
|
+
};
|
|
55698
|
+
export declare type UnifiedProfileBadgesConnection = UnifiedIConnection & {
|
|
55699
|
+
__typename?: 'UnifiedProfileBadgesConnection';
|
|
55700
|
+
edges?: Maybe<Array<Maybe<UnifiedProfileBadgeEdge>>>;
|
|
55701
|
+
pageInfo: UnifiedPageInfo;
|
|
55702
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55703
|
+
};
|
|
55571
55704
|
export declare type UnifiedProfileInput = {
|
|
55572
55705
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
55573
55706
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55646,12 +55779,15 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
55646
55779
|
};
|
|
55647
55780
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
55648
55781
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
55782
|
+
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
55783
|
+
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|
|
55649
55784
|
export declare type UnifiedUForumsResult = UnifiedForums | UnifiedQueryError;
|
|
55650
55785
|
export declare type UnifiedUForumsSnapshotResult = UnifiedForumsSnapshot | UnifiedQueryError;
|
|
55651
|
-
export declare type
|
|
55786
|
+
export declare type UnifiedUGamificationBadgesResult = UnifiedGamificationBadgesConnection | UnifiedQueryError;
|
|
55652
55787
|
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
|
|
55653
55788
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
55654
55789
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
55790
|
+
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
55655
55791
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
55656
55792
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|
|
55657
55793
|
export declare type UnlinkExternalSourceInput = {
|