@forge/cli-shared 8.11.1-next.3-experimental-a8bc05b → 8.11.1-next.3-experimental-9065145
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,6 +1,6 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.11.1-next.3-experimental-
|
|
3
|
+
## 8.11.1-next.3-experimental-9065145
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
- Updated dependencies [c7544d8]
|
|
14
14
|
- Updated dependencies [7c2186c]
|
|
15
15
|
- Updated dependencies [0c3a0df]
|
|
16
|
-
- @forge/manifest@11.3.0-next.2-experimental-
|
|
16
|
+
- @forge/manifest@11.3.0-next.2-experimental-9065145
|
|
17
17
|
|
|
18
18
|
## 8.11.1-next.3
|
|
19
19
|
|
|
@@ -3929,6 +3929,7 @@ export declare type App = {
|
|
|
3929
3929
|
environmentByKey?: Maybe<AppEnvironment>;
|
|
3930
3930
|
environmentByOauthClient?: Maybe<AppEnvironment>;
|
|
3931
3931
|
environments: Array<AppEnvironment>;
|
|
3932
|
+
environmentsPage?: Maybe<AppEnvironmentConnection>;
|
|
3932
3933
|
hasPDReportingApiImplemented?: Maybe<Scalars['Boolean']['output']>;
|
|
3933
3934
|
id: Scalars['ID']['output'];
|
|
3934
3935
|
installationsByContexts?: Maybe<AppInstallationByIndexConnection>;
|
|
@@ -3956,6 +3957,12 @@ export declare type AppEnvironmentByKeyArgs = {
|
|
|
3956
3957
|
export declare type AppEnvironmentByOauthClientArgs = {
|
|
3957
3958
|
oauthClientId: Scalars['ID']['input'];
|
|
3958
3959
|
};
|
|
3960
|
+
export declare type AppEnvironmentsPageArgs = {
|
|
3961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3962
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3964
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3965
|
+
};
|
|
3959
3966
|
export declare type AppInstallationsByContextsArgs = {
|
|
3960
3967
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3961
3968
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4213,10 +4220,29 @@ export declare type AppEnvironmentAppVersionRolloutEdge = {
|
|
|
4213
4220
|
cursor: Scalars['String']['output'];
|
|
4214
4221
|
node?: Maybe<AppVersionRollout>;
|
|
4215
4222
|
};
|
|
4223
|
+
export declare type AppEnvironmentConnection = {
|
|
4224
|
+
__typename?: 'AppEnvironmentConnection';
|
|
4225
|
+
edges?: Maybe<Array<Maybe<AppEnvironmentEdge>>>;
|
|
4226
|
+
nodes?: Maybe<Array<Maybe<AppEnvironment>>>;
|
|
4227
|
+
pageInfo: AppEnvironmentPageInfo;
|
|
4228
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
4229
|
+
};
|
|
4230
|
+
export declare type AppEnvironmentEdge = {
|
|
4231
|
+
__typename?: 'AppEnvironmentEdge';
|
|
4232
|
+
cursor: Scalars['String']['output'];
|
|
4233
|
+
node?: Maybe<AppEnvironment>;
|
|
4234
|
+
};
|
|
4216
4235
|
export declare type AppEnvironmentInput = {
|
|
4217
4236
|
appId: Scalars['ID']['input'];
|
|
4218
4237
|
key: Scalars['String']['input'];
|
|
4219
4238
|
};
|
|
4239
|
+
export declare type AppEnvironmentPageInfo = {
|
|
4240
|
+
__typename?: 'AppEnvironmentPageInfo';
|
|
4241
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4242
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4243
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4244
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4245
|
+
};
|
|
4220
4246
|
export declare enum AppEnvironmentType {
|
|
4221
4247
|
Development = "DEVELOPMENT",
|
|
4222
4248
|
Production = "PRODUCTION",
|
|
@@ -24178,6 +24204,16 @@ export declare type CplsUpdateFiltersPayload = Payload & {
|
|
|
24178
24204
|
filters?: Maybe<CplsFilters>;
|
|
24179
24205
|
success: Scalars['Boolean']['output'];
|
|
24180
24206
|
};
|
|
24207
|
+
export declare type CplsUpdateViewSettingsInput = {
|
|
24208
|
+
scopeId: Scalars['ID']['input'];
|
|
24209
|
+
viewSettings: CplsViewSettingsInput;
|
|
24210
|
+
};
|
|
24211
|
+
export declare type CplsUpdateViewSettingsPayload = Payload & {
|
|
24212
|
+
__typename?: 'CplsUpdateViewSettingsPayload';
|
|
24213
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24214
|
+
success: Scalars['Boolean']['output'];
|
|
24215
|
+
viewSettings?: Maybe<CplsViewSettings>;
|
|
24216
|
+
};
|
|
24181
24217
|
export declare type CplsValueFormats = {
|
|
24182
24218
|
__typename?: 'CplsValueFormats';
|
|
24183
24219
|
days?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24190,6 +24226,11 @@ export declare type CplsViewSettings = {
|
|
|
24190
24226
|
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
24191
24227
|
timeScale?: Maybe<CplsTimeScaleType>;
|
|
24192
24228
|
};
|
|
24229
|
+
export declare type CplsViewSettingsInput = {
|
|
24230
|
+
alwaysShowNumbersInGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24231
|
+
contributionValueType?: InputMaybe<CplsContributionValueType>;
|
|
24232
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
24233
|
+
};
|
|
24193
24234
|
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
24194
24235
|
export declare enum CplsWorkType {
|
|
24195
24236
|
CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
|
|
@@ -100196,6 +100237,7 @@ export declare type Mutation = {
|
|
|
100196
100237
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
100197
100238
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
100198
100239
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
100240
|
+
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
100199
100241
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
100200
100242
|
createApp?: Maybe<CreateAppResponse>;
|
|
100201
100243
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -101803,6 +101845,9 @@ export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
|
101803
101845
|
export declare type MutationCpls_UpdateFiltersArgs = {
|
|
101804
101846
|
input: CplsUpdateFiltersInput;
|
|
101805
101847
|
};
|
|
101848
|
+
export declare type MutationCpls_UpdateViewSettingsArgs = {
|
|
101849
|
+
input: CplsUpdateViewSettingsInput;
|
|
101850
|
+
};
|
|
101806
101851
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
101807
101852
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
101808
101853
|
};
|