@forge/cli-shared 9.3.1-next.1-experimental-0b00ed8 → 9.3.1-next.2-experimental-f4ce0ae
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 +12 -5
- package/out/graphql/graphql-types.d.ts +76 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +76 -45
- package/out/http-client/file-uploader.d.ts.map +1 -1
- package/out/http-client/file-uploader.js +7 -33
- package/out/http-client/index.d.ts +1 -0
- package/out/http-client/index.d.ts.map +1 -1
- package/out/http-client/index.js +1 -0
- package/out/http-client/node-request.d.ts +10 -0
- package/out/http-client/node-request.d.ts.map +1 -0
- package/out/http-client/node-request.js +57 -0
- package/package.json +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.3.1-next.
|
|
3
|
+
## 9.3.1-next.2-experimental-f4ce0ae
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 7f4844a: Move from node-fetch to native fetch
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 93422bb: update 'manifest render' command description
|
|
12
|
+
- 93422bb: Add an option to inspect the application bundle
|
|
13
|
+
- Updated dependencies [dcbf516]
|
|
14
|
+
- @forge/manifest@13.3.1-next.0-experimental-f4ce0ae
|
|
15
|
+
|
|
16
|
+
## 9.3.1-next.2
|
|
8
17
|
|
|
9
18
|
### Patch Changes
|
|
10
19
|
|
|
11
|
-
- 71d0c4e: update 'manifest render' command description
|
|
12
|
-
- f9fba62: Add an option to inspect the application bundle
|
|
13
20
|
- Updated dependencies [6c1371a]
|
|
14
|
-
- @forge/manifest@13.3.0
|
|
21
|
+
- @forge/manifest@13.3.1-next.0
|
|
15
22
|
|
|
16
23
|
## 9.3.1-next.1
|
|
17
24
|
|
|
@@ -15679,6 +15679,8 @@ export type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErrorExtens
|
|
|
15679
15679
|
export type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
15680
15680
|
export type AssetsVerticalDisableVerticalInstantiationInput = {
|
|
15681
15681
|
cloudId: Scalars['ID']['input'];
|
|
15682
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
15683
|
+
reason: AssetsVerticalVerticalInstantiationDisableReason;
|
|
15682
15684
|
type: AssetsVerticalVerticalType;
|
|
15683
15685
|
};
|
|
15684
15686
|
export type AssetsVerticalEnableCustomInsightInput = {
|
|
@@ -16423,6 +16425,14 @@ export type AssetsVerticalVerticalInstantiationConnection = {
|
|
|
16423
16425
|
edges: Array<AssetsVerticalVerticalInstantiationEdge>;
|
|
16424
16426
|
pageInfo: PageInfo;
|
|
16425
16427
|
};
|
|
16428
|
+
export declare enum AssetsVerticalVerticalInstantiationDisableReason {
|
|
16429
|
+
DidNotMeetExpectations = "DID_NOT_MEET_EXPECTATIONS",
|
|
16430
|
+
EvaluatingAlternatives = "EVALUATING_ALTERNATIVES",
|
|
16431
|
+
JustTryingItOut = "JUST_TRYING_IT_OUT",
|
|
16432
|
+
NotAPriorityRightNow = "NOT_A_PRIORITY_RIGHT_NOW",
|
|
16433
|
+
Others = "OTHERS",
|
|
16434
|
+
TemporaryPause = "TEMPORARY_PAUSE"
|
|
16435
|
+
}
|
|
16426
16436
|
export type AssetsVerticalVerticalInstantiationEdge = {
|
|
16427
16437
|
__typename?: 'AssetsVerticalVerticalInstantiationEdge';
|
|
16428
16438
|
cursor: Scalars['String']['output'];
|
|
@@ -54763,6 +54773,11 @@ export type GraphIntegrationConsentInput = {
|
|
|
54763
54773
|
formUrlReferer: Scalars['URL']['input'];
|
|
54764
54774
|
source: Scalars['String']['input'];
|
|
54765
54775
|
};
|
|
54776
|
+
export type GraphIntegrationContainerRelationship = {
|
|
54777
|
+
__typename?: 'GraphIntegrationContainerRelationship';
|
|
54778
|
+
relationship: Scalars['String']['output'];
|
|
54779
|
+
type: Scalars['String']['output'];
|
|
54780
|
+
};
|
|
54766
54781
|
export type GraphIntegrationCreateConnectionPayload = Payload & {
|
|
54767
54782
|
__typename?: 'GraphIntegrationCreateConnectionPayload';
|
|
54768
54783
|
connectionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54926,6 +54941,21 @@ export type GraphIntegrationDataConnectorConnection = {
|
|
|
54926
54941
|
id: Scalars['ID']['output'];
|
|
54927
54942
|
name: Scalars['String']['output'];
|
|
54928
54943
|
};
|
|
54944
|
+
export type GraphIntegrationDataProvider = {
|
|
54945
|
+
__typename?: 'GraphIntegrationDataProvider';
|
|
54946
|
+
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
54947
|
+
entityTypes: Array<GraphIntegrationDetailedEntityType>;
|
|
54948
|
+
externalProviderActions: Array<GraphIntegrationExternalProviderAction>;
|
|
54949
|
+
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
54950
|
+
homeUrl?: Maybe<Scalars['String']['output']>;
|
|
54951
|
+
id: Scalars['String']['output'];
|
|
54952
|
+
installationAri?: Maybe<Scalars['String']['output']>;
|
|
54953
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
54954
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54955
|
+
namespace: GraphIntegrationProviderNamespace;
|
|
54956
|
+
projectContainerRelationships: Array<GraphIntegrationContainerRelationship>;
|
|
54957
|
+
providerType: GraphIntegrationProviderType;
|
|
54958
|
+
};
|
|
54929
54959
|
export type GraphIntegrationDeleteConnectionPayload = Payload & {
|
|
54930
54960
|
__typename?: 'GraphIntegrationDeleteConnectionPayload';
|
|
54931
54961
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -54941,6 +54971,17 @@ export type GraphIntegrationDeleteSkillInput = {
|
|
|
54941
54971
|
contextAri: Scalars['ID']['input'];
|
|
54942
54972
|
skillAri: Scalars['ID']['input'];
|
|
54943
54973
|
};
|
|
54974
|
+
export type GraphIntegrationDetailedEntityType = {
|
|
54975
|
+
__typename?: 'GraphIntegrationDetailedEntityType';
|
|
54976
|
+
ati?: Maybe<Scalars['String']['output']>;
|
|
54977
|
+
container?: Maybe<GraphIntegrationDetailedEntityTypeContainer>;
|
|
54978
|
+
name: GraphIntegrationProviderType;
|
|
54979
|
+
};
|
|
54980
|
+
export type GraphIntegrationDetailedEntityTypeContainer = {
|
|
54981
|
+
__typename?: 'GraphIntegrationDetailedEntityTypeContainer';
|
|
54982
|
+
ati: Scalars['String']['output'];
|
|
54983
|
+
name: GraphIntegrationProviderType;
|
|
54984
|
+
};
|
|
54944
54985
|
export type GraphIntegrationDirectoryFilterDimension = {
|
|
54945
54986
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
54946
54987
|
displayName: Scalars['String']['output'];
|
|
@@ -54981,6 +55022,12 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
54981
55022
|
PlatformSkill = "PLATFORM_SKILL",
|
|
54982
55023
|
Skill = "SKILL"
|
|
54983
55024
|
}
|
|
55025
|
+
export type GraphIntegrationExternalProviderAction = {
|
|
55026
|
+
__typename?: 'GraphIntegrationExternalProviderAction';
|
|
55027
|
+
id: Scalars['String']['output'];
|
|
55028
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
55029
|
+
urlTemplate?: Maybe<Scalars['String']['output']>;
|
|
55030
|
+
};
|
|
54984
55031
|
export type GraphIntegrationGlobalMcpServerNode = Node & {
|
|
54985
55032
|
__typename?: 'GraphIntegrationGlobalMcpServerNode';
|
|
54986
55033
|
displayName: Scalars['String']['output'];
|
|
@@ -55391,6 +55438,26 @@ export type GraphIntegrationMcpToolNodeEdge = {
|
|
|
55391
55438
|
cursor: Scalars['String']['output'];
|
|
55392
55439
|
node?: Maybe<GraphIntegrationMcpToolNode>;
|
|
55393
55440
|
};
|
|
55441
|
+
export declare enum GraphIntegrationProviderNamespace {
|
|
55442
|
+
Asap = "ASAP",
|
|
55443
|
+
Classic = "CLASSIC",
|
|
55444
|
+
Forge = "FORGE",
|
|
55445
|
+
Oauth = "OAUTH",
|
|
55446
|
+
Unknown = "UNKNOWN"
|
|
55447
|
+
}
|
|
55448
|
+
export declare enum GraphIntegrationProviderType {
|
|
55449
|
+
Builds = "BUILDS",
|
|
55450
|
+
Deployments = "DEPLOYMENTS",
|
|
55451
|
+
Designs = "DESIGNS",
|
|
55452
|
+
DevelopmentInfo = "DEVELOPMENT_INFO",
|
|
55453
|
+
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
55454
|
+
Documentation = "DOCUMENTATION",
|
|
55455
|
+
FeatureFlags = "FEATURE_FLAGS",
|
|
55456
|
+
Operations = "OPERATIONS",
|
|
55457
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
55458
|
+
Repository = "REPOSITORY",
|
|
55459
|
+
Security = "SECURITY"
|
|
55460
|
+
}
|
|
55394
55461
|
export type GraphIntegrationRbacCreateRecordInput = {
|
|
55395
55462
|
cloudId: Scalars['ID']['input'];
|
|
55396
55463
|
principalId: Scalars['String']['input'];
|
|
@@ -141941,6 +142008,7 @@ export type JiraQuery = {
|
|
|
141941
142008
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
141942
142009
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
141943
142010
|
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
142011
|
+
isContactAdministratorFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
141944
142012
|
isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
141945
142013
|
isJiraDefinitionsPermissionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
141946
142014
|
isLinkingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -142648,6 +142716,9 @@ export type JiraQueryIntegerUserPropertyArgs = {
|
|
|
142648
142716
|
export type JiraQueryIsAiEnabledForIssueArgs = {
|
|
142649
142717
|
issueInput: JiraAiEnablementIssueInput;
|
|
142650
142718
|
};
|
|
142719
|
+
export type JiraQueryIsContactAdministratorFormEnabledArgs = {
|
|
142720
|
+
cloudId: Scalars['ID']['input'];
|
|
142721
|
+
};
|
|
142651
142722
|
export type JiraQueryIsIssueViewEditorAiEnabledArgs = {
|
|
142652
142723
|
cloudId: Scalars['ID']['input'];
|
|
142653
142724
|
jiraProjectType: JiraProjectType;
|
|
@@ -185381,6 +185452,7 @@ export type Query = {
|
|
|
185381
185452
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
185382
185453
|
graphIntegration_customAuth?: Maybe<GraphIntegrationCustomAuthNode>;
|
|
185383
185454
|
graphIntegration_customAuthsByProduct?: Maybe<Array<GraphIntegrationCustomAuthNode>>;
|
|
185455
|
+
graphIntegration_dataProviders?: Maybe<Array<GraphIntegrationDataProvider>>;
|
|
185384
185456
|
graphIntegration_globalMcpServers?: Maybe<Array<Maybe<GraphIntegrationGlobalMcpServerNode>>>;
|
|
185385
185457
|
graphIntegration_globalMcpTools?: Maybe<Array<Maybe<GraphIntegrationGlobalMcpToolNode>>>;
|
|
185386
185458
|
graphIntegration_mcpAdminManagementCuratedMcpServerTemplates?: Maybe<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection>;
|
|
@@ -192838,6 +192910,10 @@ export type QueryGraphIntegration_CustomAuthsByProductArgs = {
|
|
|
192838
192910
|
cloudId: Scalars['ID']['input'];
|
|
192839
192911
|
productAri: Scalars['String']['input'];
|
|
192840
192912
|
};
|
|
192913
|
+
export type QueryGraphIntegration_DataProvidersArgs = {
|
|
192914
|
+
cloudId: Scalars['ID']['input'];
|
|
192915
|
+
providerTypes?: InputMaybe<Array<GraphIntegrationProviderType>>;
|
|
192916
|
+
};
|
|
192841
192917
|
export type QueryGraphIntegration_GlobalMcpServersArgs = {
|
|
192842
192918
|
ids: Array<Scalars['ID']['input']>;
|
|
192843
192919
|
};
|