@forge/cli-shared 8.15.1-next.0-experimental-5a86f99 → 8.15.1-next.0-experimental-5b18257
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
|
@@ -2681,6 +2681,19 @@ export declare type AdminSiteAppInstallationsArgs = {
|
|
|
2681
2681
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2682
2682
|
owner: Scalars['ID']['input'];
|
|
2683
2683
|
};
|
|
2684
|
+
export declare type AdminSiteRef = {
|
|
2685
|
+
__typename?: 'AdminSiteRef';
|
|
2686
|
+
id: Scalars['ID']['output'];
|
|
2687
|
+
};
|
|
2688
|
+
export declare type AdminSiteRefConnection = {
|
|
2689
|
+
__typename?: 'AdminSiteRefConnection';
|
|
2690
|
+
edges?: Maybe<Array<Maybe<AdminSiteRefEdge>>>;
|
|
2691
|
+
pageInfo: PageInfo;
|
|
2692
|
+
};
|
|
2693
|
+
export declare type AdminSiteRefEdge = {
|
|
2694
|
+
__typename?: 'AdminSiteRefEdge';
|
|
2695
|
+
node: AdminSiteRef;
|
|
2696
|
+
};
|
|
2684
2697
|
export declare type AdminSortBy = {
|
|
2685
2698
|
direction: SortDirection;
|
|
2686
2699
|
fieldName: Scalars['String']['input'];
|
|
@@ -98754,6 +98767,7 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
98754
98767
|
export declare type JiraIssueTypeFilterInput = {
|
|
98755
98768
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
98756
98769
|
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
98770
|
+
parentIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
98757
98771
|
};
|
|
98758
98772
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
98759
98773
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
@@ -113526,7 +113540,7 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
113526
113540
|
sourceCategoryId: Scalars['ID']['output'];
|
|
113527
113541
|
spaceId: Scalars['ID']['output'];
|
|
113528
113542
|
tenantId: Scalars['ID']['output'];
|
|
113529
|
-
title
|
|
113543
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
113530
113544
|
type: Scalars['String']['output'];
|
|
113531
113545
|
updatedAt: Scalars['DateTime']['output'];
|
|
113532
113546
|
url: Scalars['String']['output'];
|
|
@@ -119605,6 +119619,7 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
119605
119619
|
success: Scalars['Boolean']['output'];
|
|
119606
119620
|
};
|
|
119607
119621
|
export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
119622
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
119608
119623
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
119609
119624
|
};
|
|
119610
119625
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
@@ -119623,6 +119638,7 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
119623
119638
|
success: Scalars['Boolean']['output'];
|
|
119624
119639
|
};
|
|
119625
119640
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
119641
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
119626
119642
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
119627
119643
|
};
|
|
119628
119644
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
@@ -126465,7 +126481,7 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
126465
126481
|
content: Scalars['KitsuneADF']['input'];
|
|
126466
126482
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
126467
126483
|
spaceAri: Scalars['ID']['input'];
|
|
126468
|
-
title
|
|
126484
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
126469
126485
|
};
|
|
126470
126486
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
126471
126487
|
name: Scalars['String']['input'];
|
|
@@ -130437,10 +130453,10 @@ export declare type Query = {
|
|
|
130437
130453
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
130438
130454
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
130439
130455
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
130440
|
-
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
130441
130456
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
130442
130457
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
130443
130458
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
130459
|
+
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
130444
130460
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
130445
130461
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
130446
130462
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -130454,6 +130470,8 @@ export declare type Query = {
|
|
|
130454
130470
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
130455
130471
|
admin_org?: Maybe<AdminOrganization>;
|
|
130456
130472
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
130473
|
+
admin_siteRefsForUnit?: Maybe<AdminSiteRefConnection>;
|
|
130474
|
+
admin_sitesByIds?: Maybe<Array<Maybe<AdminSite>>>;
|
|
130457
130475
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
130458
130476
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
130459
130477
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -131505,22 +131523,22 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
131505
131523
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131506
131524
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
131507
131525
|
};
|
|
131508
|
-
export declare type
|
|
131526
|
+
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
131509
131527
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131510
131528
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131511
131529
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131512
|
-
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
131513
131530
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131514
131531
|
orgId: Scalars['ID']['input'];
|
|
131515
131532
|
};
|
|
131516
|
-
export declare type
|
|
131533
|
+
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
131517
131534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131518
131535
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131536
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
131519
131537
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131520
131538
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131521
131539
|
orgId: Scalars['ID']['input'];
|
|
131522
131540
|
};
|
|
131523
|
-
export declare type
|
|
131541
|
+
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
131524
131542
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131525
131543
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131526
131544
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131528,11 +131546,11 @@ export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
|
131528
131546
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131529
131547
|
orgId: Scalars['ID']['input'];
|
|
131530
131548
|
};
|
|
131531
|
-
export declare type
|
|
131549
|
+
export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
131532
131550
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131533
131551
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131534
|
-
filter?: InputMaybe<Scalars['String']['input']>;
|
|
131535
131552
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131553
|
+
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
131536
131554
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131537
131555
|
orgId: Scalars['ID']['input'];
|
|
131538
131556
|
};
|
|
@@ -131609,6 +131627,16 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
131609
131627
|
principalId: Scalars['ID']['input'];
|
|
131610
131628
|
resourceId: Scalars['ID']['input'];
|
|
131611
131629
|
};
|
|
131630
|
+
export declare type QueryAdmin_SiteRefsForUnitArgs = {
|
|
131631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131633
|
+
orgId: Scalars['ID']['input'];
|
|
131634
|
+
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
131635
|
+
};
|
|
131636
|
+
export declare type QueryAdmin_SitesByIdsArgs = {
|
|
131637
|
+
orgId: Scalars['ID']['input'];
|
|
131638
|
+
siteIds: Array<Scalars['ID']['input']>;
|
|
131639
|
+
};
|
|
131612
131640
|
export declare type QueryAdmin_TokensArgs = {
|
|
131613
131641
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131614
131642
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -159415,15 +159443,19 @@ export declare enum SpacePermissionType {
|
|
|
159415
159443
|
CreateAttachment = "CREATE_ATTACHMENT",
|
|
159416
159444
|
CreateBlog = "CREATE_BLOG",
|
|
159417
159445
|
CreateEditPage = "CREATE_EDIT_PAGE",
|
|
159446
|
+
DeleteOwnComment = "DELETE_OWN_COMMENT",
|
|
159418
159447
|
DeleteSpace = "DELETE_SPACE",
|
|
159419
159448
|
EditBlog = "EDIT_BLOG",
|
|
159420
159449
|
EditNativeContent = "EDIT_NATIVE_CONTENT",
|
|
159421
159450
|
ExportContent = "EXPORT_CONTENT",
|
|
159422
159451
|
ExportPage = "EXPORT_PAGE",
|
|
159423
159452
|
ExportSpace = "EXPORT_SPACE",
|
|
159453
|
+
ManageContent = "MANAGE_CONTENT",
|
|
159424
159454
|
ManageGuestUsers = "MANAGE_GUEST_USERS",
|
|
159455
|
+
ManageLookAndFeel = "MANAGE_LOOK_AND_FEEL",
|
|
159425
159456
|
ManageNonlicensedUsers = "MANAGE_NONLICENSED_USERS",
|
|
159426
159457
|
ManagePublicLinks = "MANAGE_PUBLIC_LINKS",
|
|
159458
|
+
ManageTemplates = "MANAGE_TEMPLATES",
|
|
159427
159459
|
ManageUsers = "MANAGE_USERS",
|
|
159428
159460
|
RemoveAttachment = "REMOVE_ATTACHMENT",
|
|
159429
159461
|
RemoveBlog = "REMOVE_BLOG",
|