@forge/cli-shared 9.4.0-next.4-experimental-016ed9d → 9.4.0-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
|
@@ -1,19 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.4.0-next.
|
|
3
|
+
## 9.4.0-next.5
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- 016ed9d: Upgrading graphql-request dependency
|
|
8
|
-
- 2b13c2e: Move from node-fetch to native fetch
|
|
9
|
-
- ff4f2bf: Add `forge site provision` to provision a new demo site or get an existing demo site.
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- 71d0c4e: update 'manifest render' command description
|
|
14
|
-
- f9fba62: Add an option to inspect the application bundle
|
|
15
|
-
- Updated dependencies [6c1371a]
|
|
16
|
-
- @forge/manifest@13.3.1-next.0-experimental-016ed9d
|
|
17
8
|
|
|
18
9
|
## 9.4.0-next.4
|
|
19
10
|
|
|
@@ -7974,6 +7974,10 @@ export type AgentWorkspaceAvailabilityInputPayload = {
|
|
|
7974
7974
|
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
7975
7975
|
teamId: Scalars['ID']['input'];
|
|
7976
7976
|
};
|
|
7977
|
+
export declare enum AgentWorkspaceAvailabilityMode {
|
|
7978
|
+
Auto = "AUTO",
|
|
7979
|
+
Manual = "MANUAL"
|
|
7980
|
+
}
|
|
7977
7981
|
export type AgentWorkspaceAvailabilityPageInfo = {
|
|
7978
7982
|
__typename?: 'AgentWorkspaceAvailabilityPageInfo';
|
|
7979
7983
|
currentPage: Scalars['Int']['output'];
|
|
@@ -8466,6 +8470,7 @@ export type AgentWorkspacePendingTicketsByTeamInput = {
|
|
|
8466
8470
|
};
|
|
8467
8471
|
export type AgentWorkspaceProjectDefaultAvailability = {
|
|
8468
8472
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
8473
|
+
availabilityMode: AgentWorkspaceAvailabilityMode;
|
|
8469
8474
|
projectId: Scalars['ID']['output'];
|
|
8470
8475
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8471
8476
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -8931,6 +8936,7 @@ export type AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload = {
|
|
|
8931
8936
|
serviceFieldId: Scalars['String']['output'];
|
|
8932
8937
|
};
|
|
8933
8938
|
export type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
8939
|
+
availabilityMode?: InputMaybe<AgentWorkspaceAvailabilityMode>;
|
|
8934
8940
|
cloudId: Scalars['ID']['input'];
|
|
8935
8941
|
projectId: Scalars['ID']['input'];
|
|
8936
8942
|
status: AgentWorkspaceAvailabilityStatus;
|
|
@@ -15327,6 +15333,13 @@ export type AssetsVerticalAssetTypesTrackingQueryErrorExtension = QueryErrorExte
|
|
|
15327
15333
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15328
15334
|
};
|
|
15329
15335
|
export type AssetsVerticalAssetTypesTrackingResult = AssetsVerticalAssetTypesTracking | QueryError;
|
|
15336
|
+
export declare enum AssetsVerticalAssetTypesTrackingSortField {
|
|
15337
|
+
ObjectTypeName = "OBJECT_TYPE_NAME"
|
|
15338
|
+
}
|
|
15339
|
+
export type AssetsVerticalAssetTypesTrackingSortInput = {
|
|
15340
|
+
direction?: SortDirection;
|
|
15341
|
+
field: AssetsVerticalAssetTypesTrackingSortField;
|
|
15342
|
+
};
|
|
15330
15343
|
export type AssetsVerticalAssetTypesTrackingsPayload = Payload & {
|
|
15331
15344
|
__typename?: 'AssetsVerticalAssetTypesTrackingsPayload';
|
|
15332
15345
|
assetTypesTrackings?: Maybe<Array<AssetsVerticalAssetTypesTracking>>;
|
|
@@ -16396,6 +16409,9 @@ export type AssetsVerticalVerticalInstantiationCategoryAssetTypesTrackingsArgs =
|
|
|
16396
16409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16397
16410
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16398
16411
|
objSchemaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16412
|
+
parentObjectTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16413
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
16414
|
+
sort?: InputMaybe<AssetsVerticalAssetTypesTrackingSortInput>;
|
|
16399
16415
|
};
|
|
16400
16416
|
export type AssetsVerticalVerticalInstantiationCategoryItemsArgs = {
|
|
16401
16417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40458,6 +40474,7 @@ export type CplsTimeCell = {
|
|
|
40458
40474
|
startDate: Scalars['Date']['output'];
|
|
40459
40475
|
};
|
|
40460
40476
|
export declare enum CplsTimeScaleType {
|
|
40477
|
+
Fortnightly = "FORTNIGHTLY",
|
|
40461
40478
|
Monthly = "MONTHLY",
|
|
40462
40479
|
Weekly = "WEEKLY"
|
|
40463
40480
|
}
|
|
@@ -43407,6 +43424,7 @@ export type CustomerServiceNotes = {
|
|
|
43407
43424
|
export type CustomerServiceNotesQueryResult = CustomerServiceNotes | QueryError;
|
|
43408
43425
|
export type CustomerServiceOmniInteraction = {
|
|
43409
43426
|
__typename?: 'CustomerServiceOmniInteraction';
|
|
43427
|
+
helpseeker?: Maybe<User>;
|
|
43410
43428
|
helpseekerAtlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
43411
43429
|
id: Scalars['ID']['output'];
|
|
43412
43430
|
identifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -43433,6 +43451,7 @@ export type CustomerServiceOmniInteractionMatchedIdentifier = {
|
|
|
43433
43451
|
export type CustomerServiceOmniInteractionQueryResult = CustomerServiceOmniInteraction | QueryError;
|
|
43434
43452
|
export type CustomerServiceOmniInteractionRelatedHelpseeker = {
|
|
43435
43453
|
__typename?: 'CustomerServiceOmniInteractionRelatedHelpseeker';
|
|
43454
|
+
helpseeker?: Maybe<User>;
|
|
43436
43455
|
helpseekerAtlassianAccountId: Scalars['ID']['output'];
|
|
43437
43456
|
matchedIdentifiers: Array<CustomerServiceOmniInteractionMatchedIdentifier>;
|
|
43438
43457
|
};
|
|
@@ -55201,6 +55220,12 @@ export type GraphIntegrationDetailedEntityType = {
|
|
|
55201
55220
|
__typename?: 'GraphIntegrationDetailedEntityType';
|
|
55202
55221
|
name: GraphIntegrationEntityType;
|
|
55203
55222
|
};
|
|
55223
|
+
export declare enum GraphIntegrationDirectoryAuthType {
|
|
55224
|
+
ApiToken = "API_TOKEN",
|
|
55225
|
+
ClientCredentials = "CLIENT_CREDENTIALS",
|
|
55226
|
+
None = "NONE",
|
|
55227
|
+
Oauth = "OAUTH"
|
|
55228
|
+
}
|
|
55204
55229
|
export type GraphIntegrationDirectoryFilterDimension = {
|
|
55205
55230
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
55206
55231
|
displayName: Scalars['String']['output'];
|
|
@@ -55557,6 +55582,7 @@ export type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload
|
|
|
55557
55582
|
};
|
|
55558
55583
|
export type GraphIntegrationMcpServer = {
|
|
55559
55584
|
__typename?: 'GraphIntegrationMcpServer';
|
|
55585
|
+
authType: GraphIntegrationDirectoryAuthType;
|
|
55560
55586
|
displayName: Scalars['String']['output'];
|
|
55561
55587
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
55562
55588
|
id: Scalars['ID']['output'];
|
|
@@ -120323,6 +120349,7 @@ export type HelpCenterPageRovoConfig = {
|
|
|
120323
120349
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
120324
120350
|
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
120325
120351
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120352
|
+
widgetContainerAri?: Maybe<Scalars['String']['output']>;
|
|
120326
120353
|
};
|
|
120327
120354
|
export declare enum HelpCenterPageType {
|
|
120328
120355
|
Custom = "CUSTOM",
|
|
@@ -152816,6 +152843,10 @@ export type JpdViewCreatedEvent = {
|
|
|
152816
152843
|
viewId: Scalars['Int']['output'];
|
|
152817
152844
|
viewUuid: Scalars['ID']['output'];
|
|
152818
152845
|
};
|
|
152846
|
+
export type JpdViewDeleted = {
|
|
152847
|
+
__typename?: 'JpdViewDeleted';
|
|
152848
|
+
success: Scalars['Boolean']['output'];
|
|
152849
|
+
};
|
|
152819
152850
|
export type JpdViewDeletedEvent = {
|
|
152820
152851
|
__typename?: 'JpdViewDeletedEvent';
|
|
152821
152852
|
deletedByUserId: Scalars['ID']['output'];
|
|
@@ -156842,6 +156873,7 @@ export type KitsuneSourceInputWeb = {
|
|
|
156842
156873
|
};
|
|
156843
156874
|
export type KitsuneSpace = Node & {
|
|
156844
156875
|
__typename?: 'KitsuneSpace';
|
|
156876
|
+
accessLevel: KitsuneSpaceAccessLevel;
|
|
156845
156877
|
description?: Maybe<Scalars['String']['output']>;
|
|
156846
156878
|
feedbacks: KitsuneFeedbackConnection;
|
|
156847
156879
|
fields: KitsuneFieldConnection;
|
|
@@ -156873,6 +156905,10 @@ export type KitsuneSpaceViewTreeArgs = {
|
|
|
156873
156905
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156874
156906
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
156875
156907
|
};
|
|
156908
|
+
export declare enum KitsuneSpaceAccessLevel {
|
|
156909
|
+
Open = "OPEN",
|
|
156910
|
+
Private = "PRIVATE"
|
|
156911
|
+
}
|
|
156876
156912
|
export type KitsuneSpaceConnection = KitsuneConnection & {
|
|
156877
156913
|
__typename?: 'KitsuneSpaceConnection';
|
|
156878
156914
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -169479,6 +169515,11 @@ export type MercuryOrganizationCustomFieldDefinitionScope = MercuryCustomFieldDe
|
|
|
169479
169515
|
__typename?: 'MercuryOrganizationCustomFieldDefinitionScope';
|
|
169480
169516
|
entityType: Scalars['String']['output'];
|
|
169481
169517
|
};
|
|
169518
|
+
export type MercuryOrganizationCustomFieldValuesByOrganization = {
|
|
169519
|
+
__typename?: 'MercuryOrganizationCustomFieldValuesByOrganization';
|
|
169520
|
+
customFields: Array<MercuryCustomField>;
|
|
169521
|
+
organizationId: Scalars['ID']['output'];
|
|
169522
|
+
};
|
|
169482
169523
|
export type MercuryOrganizationEdge = {
|
|
169483
169524
|
__typename?: 'MercuryOrganizationEdge';
|
|
169484
169525
|
cursor: Scalars['String']['output'];
|
|
@@ -170173,6 +170214,7 @@ export type MercuryOrganizationsQueryApi = {
|
|
|
170173
170214
|
organizationViewsSearch?: Maybe<MercuryOrganizationViewConnection>;
|
|
170174
170215
|
organizations?: Maybe<Array<MercuryOrganization>>;
|
|
170175
170216
|
organizationsByExternalIds?: Maybe<Array<Maybe<MercuryOrganization>>>;
|
|
170217
|
+
organizationsCustomFields?: Maybe<Array<MercuryOrganizationCustomFieldValuesByOrganization>>;
|
|
170176
170218
|
organizationsForUser?: Maybe<MercuryOrganizationConnection>;
|
|
170177
170219
|
organizationsSearch?: Maybe<MercuryOrganizationConnection>;
|
|
170178
170220
|
planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
|
|
@@ -170258,6 +170300,11 @@ export type MercuryOrganizationsQueryApiOrganizationsByExternalIdsArgs = {
|
|
|
170258
170300
|
cloudId: Scalars['ID']['input'];
|
|
170259
170301
|
ids: Array<Scalars['String']['input']>;
|
|
170260
170302
|
};
|
|
170303
|
+
export type MercuryOrganizationsQueryApiOrganizationsCustomFieldsArgs = {
|
|
170304
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
170305
|
+
customFieldDefinitionIds: Array<Scalars['ID']['input']>;
|
|
170306
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
170307
|
+
};
|
|
170261
170308
|
export type MercuryOrganizationsQueryApiOrganizationsForUserArgs = {
|
|
170262
170309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170263
170310
|
cloudId: Scalars['ID']['input'];
|
|
@@ -175062,6 +175109,7 @@ export type Mutation = {
|
|
|
175062
175109
|
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
175063
175110
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
175064
175111
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
175112
|
+
gravity_deleteView?: Maybe<JpdViewDeleted>;
|
|
175065
175113
|
gravity_discardDraft?: Maybe<GravityDraftPayload>;
|
|
175066
175114
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
175067
175115
|
gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
|
|
@@ -179415,6 +179463,10 @@ export type MutationGravity_DeleteReactionArgs = {
|
|
|
179415
179463
|
cloudId: Scalars['ID']['input'];
|
|
179416
179464
|
input: GravityDeleteReactionInput;
|
|
179417
179465
|
};
|
|
179466
|
+
export type MutationGravity_DeleteViewArgs = {
|
|
179467
|
+
cloudId: Scalars['ID']['input'];
|
|
179468
|
+
viewId: Scalars['ID']['input'];
|
|
179469
|
+
};
|
|
179418
179470
|
export type MutationGravity_DiscardDraftArgs = {
|
|
179419
179471
|
cloudId: Scalars['ID']['input'];
|
|
179420
179472
|
input: GravityDiscardDraftInput;
|
|
@@ -190672,6 +190724,9 @@ export type QueryAssetsVertical_AssetTypesTrackingsArgs = {
|
|
|
190672
190724
|
cloudId: Scalars['ID']['input'];
|
|
190673
190725
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190674
190726
|
objSchemaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190727
|
+
parentObjectTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190728
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
190729
|
+
sort?: InputMaybe<AssetsVerticalAssetTypesTrackingSortInput>;
|
|
190675
190730
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
190676
190731
|
};
|
|
190677
190732
|
export type QueryAssetsVertical_AsyncTaskArgs = {
|
|
@@ -193582,6 +193637,7 @@ export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
|
193582
193637
|
};
|
|
193583
193638
|
export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
193584
193639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193640
|
+
authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
|
|
193585
193641
|
cloudId: Scalars['ID']['input'];
|
|
193586
193642
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
193587
193643
|
first?: InputMaybe<Scalars['Int']['input']>;
|