@forge/cli-shared 6.6.1-next.0 → 6.6.1-next.2
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 +64 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +40 -24
- 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.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [48d2f56]
|
|
8
|
+
- @forge/manifest@8.7.0-next.1
|
|
9
|
+
|
|
10
|
+
## 6.6.1-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [6b8b6e2]
|
|
15
|
+
- @forge/manifest@8.6.2-next.0
|
|
16
|
+
|
|
3
17
|
## 6.6.1-next.0
|
|
4
18
|
|
|
5
19
|
### Patch 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;
|
|
@@ -30113,6 +30141,7 @@ export declare type GraphStore = {
|
|
|
30113
30141
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30114
30142
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30115
30143
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
30144
|
+
userUpdatedIssueStatusInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection>;
|
|
30116
30145
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
30117
30146
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
30118
30147
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -33671,6 +33700,13 @@ export declare type GraphStoreUserUpdatedIssueInverseArgs = {
|
|
|
33671
33700
|
id: Scalars['ID']['input'];
|
|
33672
33701
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33673
33702
|
};
|
|
33703
|
+
export declare type GraphStoreUserUpdatedIssueStatusInverseArgs = {
|
|
33704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33705
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33706
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33707
|
+
id: Scalars['ID']['input'];
|
|
33708
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueStatusSortInput>;
|
|
33709
|
+
};
|
|
33674
33710
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33675
33711
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33676
33712
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45214,6 +45250,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
45214
45250
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
|
|
45215
45251
|
};
|
|
45216
45252
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45253
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection = HasPageInfo & {
|
|
45254
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection';
|
|
45255
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge>>>;
|
|
45256
|
+
pageInfo: PageInfo;
|
|
45257
|
+
};
|
|
45258
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge = {
|
|
45259
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge';
|
|
45260
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45261
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45262
|
+
id: Scalars['ID']['output'];
|
|
45263
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45264
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion>;
|
|
45265
|
+
};
|
|
45266
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45217
45267
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
45218
45268
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
45219
45269
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
@@ -46381,6 +46431,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
46381
46431
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46382
46432
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46383
46433
|
};
|
|
46434
|
+
export declare type GraphStoreUserUpdatedIssueStatusSortInput = {
|
|
46435
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46436
|
+
};
|
|
46384
46437
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
46385
46438
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46386
46439
|
};
|
|
@@ -86223,6 +86276,13 @@ export declare enum SystemSpaceHomepageTemplate {
|
|
|
86223
86276
|
Minimal = "MINIMAL",
|
|
86224
86277
|
Visual = "VISUAL"
|
|
86225
86278
|
}
|
|
86279
|
+
export declare type SystemUser = {
|
|
86280
|
+
__typename?: 'SystemUser';
|
|
86281
|
+
accountId: Scalars['ID']['output'];
|
|
86282
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
86283
|
+
isMentionable?: Maybe<Scalars['Boolean']['output']>;
|
|
86284
|
+
nickName?: Maybe<Scalars['String']['output']>;
|
|
86285
|
+
};
|
|
86226
86286
|
export declare type TapExperiment = {
|
|
86227
86287
|
__typename?: 'TapExperiment';
|
|
86228
86288
|
experimentKey: Scalars['String']['output'];
|
|
@@ -91840,6 +91900,10 @@ export declare type ValidateTitleForCreatePayload = {
|
|
|
91840
91900
|
isValid: Scalars['Boolean']['output'];
|
|
91841
91901
|
message?: Maybe<Scalars['String']['output']>;
|
|
91842
91902
|
};
|
|
91903
|
+
export declare enum VendorType {
|
|
91904
|
+
Internal = "INTERNAL",
|
|
91905
|
+
ThirdParty = "THIRD_PARTY"
|
|
91906
|
+
}
|
|
91843
91907
|
export declare type Version = {
|
|
91844
91908
|
__typename?: 'Version';
|
|
91845
91909
|
by?: Maybe<Person>;
|