@forge/cli-shared 6.6.0 → 6.6.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 +14 -0
- package/out/graphql/graphql-types.d.ts +88 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -24
- package/out/service/supported-products-service.d.ts +2 -1
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +5 -1
- package/out/ui/text.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6b8b6e2]
|
|
8
|
+
- @forge/manifest@8.6.2-next.0
|
|
9
|
+
|
|
10
|
+
## 6.6.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 091886c: prepare installations product field to accept multiple products
|
|
15
|
+
- 29e8c8b: Change message to deprecated
|
|
16
|
+
|
|
3
17
|
## 6.6.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -972,6 +972,7 @@ export declare type App = {
|
|
|
972
972
|
environmentByKey?: Maybe<AppEnvironment>;
|
|
973
973
|
environmentByOauthClient?: Maybe<AppEnvironment>;
|
|
974
974
|
environments: Array<AppEnvironment>;
|
|
975
|
+
hasPDReportingApiImplemented?: Maybe<Scalars['Boolean']['output']>;
|
|
975
976
|
id: Scalars['ID']['output'];
|
|
976
977
|
installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
|
|
977
978
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -1215,6 +1216,22 @@ export declare type AppEnvironmentVersionEdge = {
|
|
|
1215
1216
|
cursor: Scalars['String']['output'];
|
|
1216
1217
|
node?: Maybe<AppEnvironmentVersion>;
|
|
1217
1218
|
};
|
|
1219
|
+
export declare type AppFeaturesExposedCredentialsInput = {
|
|
1220
|
+
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
1221
|
+
defaultAuthClientType?: InputMaybe<AuthClientType>;
|
|
1222
|
+
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
1223
|
+
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1224
|
+
privacyPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
1225
|
+
refreshTokenRotation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1226
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1227
|
+
termsOfService?: InputMaybe<Scalars['String']['input']>;
|
|
1228
|
+
vendorName?: InputMaybe<Scalars['String']['input']>;
|
|
1229
|
+
vendorType?: InputMaybe<VendorType>;
|
|
1230
|
+
};
|
|
1231
|
+
export declare type AppFeaturesInput = {
|
|
1232
|
+
hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1233
|
+
hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
|
|
1234
|
+
};
|
|
1218
1235
|
export declare type AppHostService = {
|
|
1219
1236
|
__typename?: 'AppHostService';
|
|
1220
1237
|
description: Scalars['String']['output'];
|
|
@@ -2200,6 +2217,7 @@ export declare type AtlassianOAuthClient = {
|
|
|
2200
2217
|
clientARI: Scalars['ID']['output'];
|
|
2201
2218
|
clientID: Scalars['ID']['output'];
|
|
2202
2219
|
refreshToken?: Maybe<RefreshToken>;
|
|
2220
|
+
systemUser?: Maybe<SystemUser>;
|
|
2203
2221
|
};
|
|
2204
2222
|
export declare enum AtlassianProductHostingType {
|
|
2205
2223
|
Cloud = "CLOUD",
|
|
@@ -2281,6 +2299,11 @@ export declare type AuditsPageInfo = {
|
|
|
2281
2299
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2282
2300
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
2283
2301
|
};
|
|
2302
|
+
export declare enum AuthClientType {
|
|
2303
|
+
AtlassianMobile = "ATLASSIAN_MOBILE",
|
|
2304
|
+
ThirdParty = "THIRD_PARTY",
|
|
2305
|
+
ThirdPartyNative = "THIRD_PARTY_NATIVE"
|
|
2306
|
+
}
|
|
2284
2307
|
export declare type AuthToken = {
|
|
2285
2308
|
__typename?: 'AuthToken';
|
|
2286
2309
|
token: Scalars['String']['output'];
|
|
@@ -18594,6 +18617,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
|
|
|
18594
18617
|
success: Scalars['Boolean']['output'];
|
|
18595
18618
|
};
|
|
18596
18619
|
export declare type CreateAppInput = {
|
|
18620
|
+
appFeatures?: InputMaybe<AppFeaturesInput>;
|
|
18597
18621
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
18598
18622
|
name: Scalars['String']['input'];
|
|
18599
18623
|
};
|
|
@@ -22930,6 +22954,10 @@ export declare type DiscoveredFeature = {
|
|
|
22930
22954
|
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
22931
22955
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
22932
22956
|
};
|
|
22957
|
+
export declare enum DistributionStatus {
|
|
22958
|
+
Development = "DEVELOPMENT",
|
|
22959
|
+
Public = "PUBLIC"
|
|
22960
|
+
}
|
|
22933
22961
|
export declare type DocumentBody = {
|
|
22934
22962
|
__typename?: 'DocumentBody';
|
|
22935
22963
|
representation: DocumentRepresentation;
|
|
@@ -53826,6 +53854,7 @@ export declare type JiraForgeExtension = {
|
|
|
53826
53854
|
id: Scalars['ID']['output'];
|
|
53827
53855
|
installationId: Scalars['String']['output'];
|
|
53828
53856
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
53857
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
53829
53858
|
properties: Scalars['JSON']['output'];
|
|
53830
53859
|
scopes: Array<Scalars['String']['output']>;
|
|
53831
53860
|
type: Scalars['String']['output'];
|
|
@@ -86222,6 +86251,13 @@ export declare enum SystemSpaceHomepageTemplate {
|
|
|
86222
86251
|
Minimal = "MINIMAL",
|
|
86223
86252
|
Visual = "VISUAL"
|
|
86224
86253
|
}
|
|
86254
|
+
export declare type SystemUser = {
|
|
86255
|
+
__typename?: 'SystemUser';
|
|
86256
|
+
accountId: Scalars['ID']['output'];
|
|
86257
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
86258
|
+
isMentionable?: Maybe<Scalars['Boolean']['output']>;
|
|
86259
|
+
nickName?: Maybe<Scalars['String']['output']>;
|
|
86260
|
+
};
|
|
86225
86261
|
export declare type TapExperiment = {
|
|
86226
86262
|
__typename?: 'TapExperiment';
|
|
86227
86263
|
experimentKey: Scalars['String']['output'];
|
|
@@ -87430,6 +87466,18 @@ export declare type TownsquareProjectEdge = {
|
|
|
87430
87466
|
cursor: Scalars['String']['output'];
|
|
87431
87467
|
node?: Maybe<TownsquareProject>;
|
|
87432
87468
|
};
|
|
87469
|
+
export declare enum TownsquareProjectPhase {
|
|
87470
|
+
Done = "done",
|
|
87471
|
+
InProgress = "in_progress",
|
|
87472
|
+
Paused = "paused",
|
|
87473
|
+
Pending = "pending"
|
|
87474
|
+
}
|
|
87475
|
+
export declare type TownsquareProjectPhaseDetails = {
|
|
87476
|
+
__typename?: 'TownsquareProjectPhaseDetails';
|
|
87477
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
87478
|
+
id: Scalars['Int']['output'];
|
|
87479
|
+
name?: Maybe<TownsquareProjectPhase>;
|
|
87480
|
+
};
|
|
87433
87481
|
export declare enum TownsquareProjectSortEnum {
|
|
87434
87482
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
87435
87483
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -87463,6 +87511,38 @@ export declare enum TownsquareProjectStateValue {
|
|
|
87463
87511
|
Paused = "paused",
|
|
87464
87512
|
Pending = "pending"
|
|
87465
87513
|
}
|
|
87514
|
+
export declare type TownsquareProjectUpdate = Node & {
|
|
87515
|
+
__typename?: 'TownsquareProjectUpdate';
|
|
87516
|
+
ari: Scalars['String']['output'];
|
|
87517
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
87518
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87519
|
+
creator?: Maybe<User>;
|
|
87520
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87521
|
+
id: Scalars['ID']['output'];
|
|
87522
|
+
lastEditedBy?: Maybe<User>;
|
|
87523
|
+
missedUpdate: Scalars['Boolean']['output'];
|
|
87524
|
+
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
87525
|
+
newPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87526
|
+
newPhaseNew?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87527
|
+
newState?: Maybe<TownsquareProjectState>;
|
|
87528
|
+
newTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
87529
|
+
newTargetDateConfidence: Scalars['Int']['output'];
|
|
87530
|
+
oldDueDate?: Maybe<TownsquareTargetDate>;
|
|
87531
|
+
oldPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87532
|
+
oldPhaseNew?: Maybe<TownsquareProjectPhaseDetails>;
|
|
87533
|
+
oldState?: Maybe<TownsquareProjectState>;
|
|
87534
|
+
oldTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
87535
|
+
oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
|
|
87536
|
+
project?: Maybe<TownsquareProject>;
|
|
87537
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
87538
|
+
updateType?: Maybe<TownsquareUpdateType>;
|
|
87539
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
87540
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
87541
|
+
};
|
|
87542
|
+
export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
87543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87544
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87545
|
+
};
|
|
87466
87546
|
export declare type TownsquareQueryApi = {
|
|
87467
87547
|
__typename?: 'TownsquareQueryApi';
|
|
87468
87548
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -87479,6 +87559,7 @@ export declare type TownsquareQueryApi = {
|
|
|
87479
87559
|
project?: Maybe<TownsquareProject>;
|
|
87480
87560
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
87481
87561
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
87562
|
+
projectUpdatesByAris?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
87482
87563
|
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
87483
87564
|
tagsByAri?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
87484
87565
|
};
|
|
@@ -87554,6 +87635,9 @@ export declare type TownsquareQueryApiProjectTqlArgs = {
|
|
|
87554
87635
|
q: Scalars['String']['input'];
|
|
87555
87636
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
87556
87637
|
};
|
|
87638
|
+
export declare type TownsquareQueryApiProjectUpdatesByArisArgs = {
|
|
87639
|
+
aris: Array<Scalars['ID']['input']>;
|
|
87640
|
+
};
|
|
87557
87641
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
87558
87642
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87559
87643
|
};
|
|
@@ -91791,6 +91875,10 @@ export declare type ValidateTitleForCreatePayload = {
|
|
|
91791
91875
|
isValid: Scalars['Boolean']['output'];
|
|
91792
91876
|
message?: Maybe<Scalars['String']['output']>;
|
|
91793
91877
|
};
|
|
91878
|
+
export declare enum VendorType {
|
|
91879
|
+
Internal = "INTERNAL",
|
|
91880
|
+
ThirdParty = "THIRD_PARTY"
|
|
91881
|
+
}
|
|
91794
91882
|
export declare type Version = {
|
|
91795
91883
|
__typename?: 'Version';
|
|
91796
91884
|
by?: Maybe<Person>;
|