@forge/cli-shared 8.11.1-next.3 → 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 +15 -0
- package/out/graphql/graphql-types.d.ts +61 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +4 -2
- package/out/ui/text.d.ts +8 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +14 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.11.1-next.3-experimental-9065145
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0a706b9: Added global proxy setting for running CLI commands behind a proxy
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 8b24052: fix bug in forge containers tunnel docker compose logic
|
|
12
|
+
- 8bf8249: Remove (Preview) from forge build command
|
|
13
|
+
- Updated dependencies [c7544d8]
|
|
14
|
+
- Updated dependencies [7c2186c]
|
|
15
|
+
- Updated dependencies [0c3a0df]
|
|
16
|
+
- @forge/manifest@11.3.0-next.2-experimental-9065145
|
|
17
|
+
|
|
3
18
|
## 8.11.1-next.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -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",
|
|
@@ -31383,6 +31424,7 @@ export declare type ExternalCue = {
|
|
|
31383
31424
|
export declare type ExternalCustomerOrg = Node & {
|
|
31384
31425
|
__typename?: 'ExternalCustomerOrg';
|
|
31385
31426
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
31427
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
31386
31428
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
31387
31429
|
contacts?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31388
31430
|
container?: Maybe<ExternalEntity>;
|
|
@@ -31393,8 +31435,10 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
31393
31435
|
createdBy?: Maybe<ExternalUser>;
|
|
31394
31436
|
customerOrgLastActivity?: Maybe<ExternalCustomerOrgLastActivity>;
|
|
31395
31437
|
customerOrgLifeTimeValue?: Maybe<ExternalCustomerOrgLifeTimeValue>;
|
|
31438
|
+
customerSegment?: Maybe<Scalars['String']['output']>;
|
|
31396
31439
|
description?: Maybe<Scalars['String']['output']>;
|
|
31397
31440
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
31441
|
+
entitlements?: Maybe<Array<Maybe<ExternalCustomerOrgEntitlement>>>;
|
|
31398
31442
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
31399
31443
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
31400
31444
|
id: Scalars['ID']['output'];
|
|
@@ -31406,6 +31450,7 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
31406
31450
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
31407
31451
|
parent?: Maybe<ExternalEntity>;
|
|
31408
31452
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
31453
|
+
primaryContactUser?: Maybe<ExternalUser>;
|
|
31409
31454
|
provider?: Maybe<ExternalProvider>;
|
|
31410
31455
|
status?: Maybe<Scalars['String']['output']>;
|
|
31411
31456
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
@@ -31438,6 +31483,18 @@ export declare type ExternalCustomerOrgCategory = Node & {
|
|
|
31438
31483
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
31439
31484
|
url?: Maybe<Scalars['String']['output']>;
|
|
31440
31485
|
};
|
|
31486
|
+
export declare type ExternalCustomerOrgEntitlement = {
|
|
31487
|
+
__typename?: 'ExternalCustomerOrgEntitlement';
|
|
31488
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31489
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
31490
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
31491
|
+
entitlementName?: Maybe<Scalars['String']['output']>;
|
|
31492
|
+
licenseKey?: Maybe<Scalars['String']['output']>;
|
|
31493
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
31494
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
31495
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
31496
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31497
|
+
};
|
|
31441
31498
|
export declare type ExternalCustomerOrgLastActivity = {
|
|
31442
31499
|
__typename?: 'ExternalCustomerOrgLastActivity';
|
|
31443
31500
|
event?: Maybe<Scalars['String']['output']>;
|
|
@@ -100180,6 +100237,7 @@ export declare type Mutation = {
|
|
|
100180
100237
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
100181
100238
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
100182
100239
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
100240
|
+
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
100183
100241
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
100184
100242
|
createApp?: Maybe<CreateAppResponse>;
|
|
100185
100243
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -101787,6 +101845,9 @@ export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
|
101787
101845
|
export declare type MutationCpls_UpdateFiltersArgs = {
|
|
101788
101846
|
input: CplsUpdateFiltersInput;
|
|
101789
101847
|
};
|
|
101848
|
+
export declare type MutationCpls_UpdateViewSettingsArgs = {
|
|
101849
|
+
input: CplsUpdateViewSettingsInput;
|
|
101850
|
+
};
|
|
101790
101851
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
101791
101852
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
101792
101853
|
};
|