@forge/cli-shared 9.3.0-next.0 → 9.3.0-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 +8 -0
- package/out/graphql/graphql-types.d.ts +48 -26
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +6 -10
- package/out/service/statsig-service.d.ts +3 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +9 -0
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.3.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4d50a76: Changes to forge deploy with a feature-gated combined artifact upload flow.
|
|
8
|
+
- Updated dependencies [39f1f15]
|
|
9
|
+
- @forge/manifest@13.3.0-next.1
|
|
10
|
+
|
|
3
11
|
## 9.3.0-next.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -19854,29 +19854,19 @@ export type ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep = {
|
|
|
19854
19854
|
};
|
|
19855
19855
|
export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStepStatus {
|
|
19856
19856
|
Completed = "COMPLETED",
|
|
19857
|
-
|
|
19858
|
-
InProgress = "IN_PROGRESS",
|
|
19859
|
-
Skipped = "SKIPPED"
|
|
19857
|
+
InProgress = "IN_PROGRESS"
|
|
19860
19858
|
}
|
|
19861
|
-
export type
|
|
19862
|
-
__typename?: '
|
|
19859
|
+
export type ChangeManagementJsmPreventionCenterOverviewSummaryResponse = {
|
|
19860
|
+
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryResponse';
|
|
19863
19861
|
analysisSteps?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep>>;
|
|
19864
|
-
doneSoFar?: Maybe<
|
|
19862
|
+
doneSoFar?: Maybe<Scalars['String']['output']>;
|
|
19865
19863
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
19866
19864
|
potentialRisk?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel>;
|
|
19867
19865
|
sources?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummarySource>>;
|
|
19866
|
+
status: ChangeManagementJsmPreventionCenterOverviewSummaryStatus;
|
|
19868
19867
|
suggestedNextSteps?: Maybe<Scalars['String']['output']>;
|
|
19869
|
-
summary
|
|
19870
|
-
};
|
|
19871
|
-
export type ChangeManagementJsmPreventionCenterOverviewSummaryDoneItem = {
|
|
19872
|
-
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryDoneItem';
|
|
19873
|
-
body?: Maybe<Scalars['String']['output']>;
|
|
19874
|
-
};
|
|
19875
|
-
export type ChangeManagementJsmPreventionCenterOverviewSummaryInProgressResponse = {
|
|
19876
|
-
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryInProgressResponse';
|
|
19877
|
-
analysisSteps?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep>>;
|
|
19868
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
19878
19869
|
};
|
|
19879
|
-
export type ChangeManagementJsmPreventionCenterOverviewSummaryResponse = ChangeManagementJsmPreventionCenterOverviewSummaryAvailableResponse | ChangeManagementJsmPreventionCenterOverviewSummaryInProgressResponse;
|
|
19880
19870
|
export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel {
|
|
19881
19871
|
High = "HIGH",
|
|
19882
19872
|
Low = "LOW",
|
|
@@ -19884,17 +19874,15 @@ export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel
|
|
|
19884
19874
|
}
|
|
19885
19875
|
export type ChangeManagementJsmPreventionCenterOverviewSummarySource = {
|
|
19886
19876
|
__typename?: 'ChangeManagementJSMPreventionCenterOverviewSummarySource';
|
|
19887
|
-
|
|
19888
|
-
|
|
19877
|
+
ari: Scalars['String']['output'];
|
|
19878
|
+
lastModified: Scalars['String']['output'];
|
|
19889
19879
|
title: Scalars['String']['output'];
|
|
19890
|
-
type:
|
|
19880
|
+
type: Scalars['String']['output'];
|
|
19891
19881
|
url: Scalars['String']['output'];
|
|
19892
19882
|
};
|
|
19893
|
-
export declare enum
|
|
19894
|
-
|
|
19895
|
-
|
|
19896
|
-
Jsm = "JSM",
|
|
19897
|
-
Statuspage = "STATUSPAGE"
|
|
19883
|
+
export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryStatus {
|
|
19884
|
+
Available = "AVAILABLE",
|
|
19885
|
+
InProgress = "IN_PROGRESS"
|
|
19898
19886
|
}
|
|
19899
19887
|
export type ChangeManagementLastRovoRiskAssessmentPayload = {
|
|
19900
19888
|
__typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
|
|
@@ -38160,7 +38148,9 @@ export type ContentAnalyticsViewsByDate = {
|
|
|
38160
38148
|
};
|
|
38161
38149
|
export type ContentAnalyticsViewsByDateItem = {
|
|
38162
38150
|
__typename?: 'ContentAnalyticsViewsByDateItem';
|
|
38151
|
+
agentTotal?: Maybe<Scalars['Int']['output']>;
|
|
38163
38152
|
date: Scalars['String']['output'];
|
|
38153
|
+
peopleTotal?: Maybe<Scalars['Int']['output']>;
|
|
38164
38154
|
total: Scalars['Int']['output'];
|
|
38165
38155
|
};
|
|
38166
38156
|
export type ContentAnalyticsViewsByUser = {
|
|
@@ -41749,11 +41739,17 @@ export type CustomerServiceAssetsFieldConfig = {
|
|
|
41749
41739
|
objectType: CustomerServiceAssetsFieldObjectTypeMetadata;
|
|
41750
41740
|
schema: CustomerServiceAssetsFieldSchemaMetadata;
|
|
41751
41741
|
};
|
|
41742
|
+
export type CustomerServiceAssetsFieldData = {
|
|
41743
|
+
__typename?: 'CustomerServiceAssetsFieldData';
|
|
41744
|
+
assetsObjectTypeId: Scalars['String']['output'];
|
|
41745
|
+
assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
|
|
41746
|
+
};
|
|
41752
41747
|
export type CustomerServiceAssetsFieldObject = {
|
|
41753
41748
|
__typename?: 'CustomerServiceAssetsFieldObject';
|
|
41754
41749
|
avatar?: Maybe<CustomerServiceAssetsAvatar>;
|
|
41755
41750
|
id: Scalars['ID']['output'];
|
|
41756
41751
|
label: Scalars['String']['output'];
|
|
41752
|
+
objectKey: Scalars['ID']['output'];
|
|
41757
41753
|
objectSchemaId: Scalars['ID']['output'];
|
|
41758
41754
|
objectTypeId: Scalars['ID']['output'];
|
|
41759
41755
|
};
|
|
@@ -42015,7 +42011,7 @@ export type CustomerServiceConnectedFieldConfig = {
|
|
|
42015
42011
|
};
|
|
42016
42012
|
export type CustomerServiceConnectedFieldData = {
|
|
42017
42013
|
__typename?: 'CustomerServiceConnectedFieldData';
|
|
42018
|
-
|
|
42014
|
+
assetsField?: Maybe<CustomerServiceAssetsFieldData>;
|
|
42019
42015
|
};
|
|
42020
42016
|
export type CustomerServiceContext = {
|
|
42021
42017
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -128224,6 +128220,7 @@ export type JiraForgeExtension = {
|
|
|
128224
128220
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
128225
128221
|
moduleId?: Maybe<Scalars['ID']['output']>;
|
|
128226
128222
|
properties: Scalars['JSON']['output'];
|
|
128223
|
+
sandboxPolicies?: Maybe<Array<Scalars['String']['output']>>;
|
|
128227
128224
|
scopes: Array<Scalars['String']['output']>;
|
|
128228
128225
|
type: Scalars['String']['output'];
|
|
128229
128226
|
userAccess?: Maybe<JiraUserAppAccess>;
|
|
@@ -134660,6 +134657,7 @@ export type JiraMutation = {
|
|
|
134660
134657
|
archiveJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
134661
134658
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
134662
134659
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
134660
|
+
bulkCreateCaseManagementRequestTypes?: Maybe<JiraServiceManagementBulkCreateCaseManagementRequestTypesPayload>;
|
|
134663
134661
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
134664
134662
|
bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
|
|
134665
134663
|
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
@@ -134961,6 +134959,9 @@ export type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
134961
134959
|
export type JiraMutationAttributeUnsplashImageArgs = {
|
|
134962
134960
|
input: JiraUnsplashAttributionInput;
|
|
134963
134961
|
};
|
|
134962
|
+
export type JiraMutationBulkCreateCaseManagementRequestTypesArgs = {
|
|
134963
|
+
input: JiraServiceManagementBulkCreateCaseManagementRequestTypesInput;
|
|
134964
|
+
};
|
|
134964
134965
|
export type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
134965
134966
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
134966
134967
|
};
|
|
@@ -137381,6 +137382,7 @@ export type JiraPolarisGlobalViewFields = {
|
|
|
137381
137382
|
export type JiraPolicyRuleInput = {
|
|
137382
137383
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
137383
137384
|
properties?: InputMaybe<Scalars['JSON']['input']>;
|
|
137385
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
137384
137386
|
ruleTypeId: Scalars['String']['input'];
|
|
137385
137387
|
};
|
|
137386
137388
|
export type JiraPolicyRulesByDomainInput = {
|
|
@@ -142449,6 +142451,16 @@ export type JiraServiceManagementAttachmentPreviewField = JiraServiceManagementR
|
|
|
142449
142451
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
142450
142452
|
type?: Maybe<Scalars['String']['output']>;
|
|
142451
142453
|
};
|
|
142454
|
+
export type JiraServiceManagementBulkCreateCaseManagementRequestTypesInput = {
|
|
142455
|
+
projectId: Scalars['ID']['input'];
|
|
142456
|
+
requestTypes: Array<JiraServiceManagementCaseRequestTypeSelectionInput>;
|
|
142457
|
+
};
|
|
142458
|
+
export type JiraServiceManagementBulkCreateCaseManagementRequestTypesPayload = {
|
|
142459
|
+
__typename?: 'JiraServiceManagementBulkCreateCaseManagementRequestTypesPayload';
|
|
142460
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142461
|
+
results: Array<JiraServiceManagementCaseRequestTypeCreationResult>;
|
|
142462
|
+
success: Scalars['Boolean']['output'];
|
|
142463
|
+
};
|
|
142452
142464
|
export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
142453
142465
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
142454
142466
|
projectId: Scalars['ID']['input'];
|
|
@@ -142474,6 +142486,14 @@ export type JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge = {
|
|
|
142474
142486
|
cursor: Scalars['String']['output'];
|
|
142475
142487
|
node?: Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOption>;
|
|
142476
142488
|
};
|
|
142489
|
+
export type JiraServiceManagementCaseRequestTypeCreationResult = {
|
|
142490
|
+
__typename?: 'JiraServiceManagementCaseRequestTypeCreationResult';
|
|
142491
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142492
|
+
templateId: Scalars['ID']['output'];
|
|
142493
|
+
};
|
|
142494
|
+
export type JiraServiceManagementCaseRequestTypeSelectionInput = {
|
|
142495
|
+
templateId: Scalars['ID']['input'];
|
|
142496
|
+
};
|
|
142477
142497
|
export type JiraServiceManagementChannelSource = {
|
|
142478
142498
|
__typename?: 'JiraServiceManagementChannelSource';
|
|
142479
142499
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -152108,6 +152128,7 @@ export type KitsuneRankInput = {
|
|
|
152108
152128
|
};
|
|
152109
152129
|
export type KitsuneRollupInput = {
|
|
152110
152130
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
152131
|
+
ideaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
152111
152132
|
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
152112
152133
|
};
|
|
152113
152134
|
export type KitsuneSearchChunk = {
|
|
@@ -187363,7 +187384,7 @@ export type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
|
187363
187384
|
export type QueryDevai_AutodevNextWorkstreamTaskArgs = {
|
|
187364
187385
|
cloudId: Scalars['ID']['input'];
|
|
187365
187386
|
workItemId: Scalars['ID']['input'];
|
|
187366
|
-
workspaceId
|
|
187387
|
+
workspaceId?: Scalars['ID']['input'];
|
|
187367
187388
|
};
|
|
187368
187389
|
export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
187369
187390
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -234264,6 +234285,7 @@ export type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
|
234264
234285
|
export type SubscriptionChangeManagement_JsmPreventionCenterOverviewSummaryUpdatedArgs = {
|
|
234265
234286
|
cloudId: Scalars['ID']['input'];
|
|
234266
234287
|
entityKey: Scalars['String']['input'];
|
|
234288
|
+
userAccountId: Scalars['String']['input'];
|
|
234267
234289
|
};
|
|
234268
234290
|
export type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
234269
234291
|
id: Scalars['ID']['input'];
|