@forge/cli-shared 6.0.0-next.16 → 6.0.0-next.18
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 +17 -0
- package/out/graphql/graphql-types.d.ts +38 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +9 -27
- package/out/service/feature-flag-service.d.ts +0 -2
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/service/statsig-service.d.ts +34 -0
- package/out/service/statsig-service.d.ts.map +1 -0
- package/out/service/statsig-service.js +180 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.0.0-next.18
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3d92b59: Integration with statsig
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [2920f46]
|
|
12
|
+
- @forge/manifest@7.9.0-next.14
|
|
13
|
+
|
|
14
|
+
## 6.0.0-next.17
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 6b41440: Remove test feature flags
|
|
19
|
+
|
|
3
20
|
## 6.0.0-next.16
|
|
4
21
|
|
|
5
22
|
### Major Changes
|
|
@@ -36598,6 +36598,7 @@ export declare type GrowthUnifiedProfileSeoContext = {
|
|
|
36598
36598
|
};
|
|
36599
36599
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
36600
36600
|
CustomerService = "CUSTOMER_SERVICE",
|
|
36601
|
+
DataScience = "DATA_SCIENCE",
|
|
36601
36602
|
Design = "DESIGN",
|
|
36602
36603
|
Finance = "FINANCE",
|
|
36603
36604
|
HumanResources = "HUMAN_RESOURCES",
|
|
@@ -36606,6 +36607,8 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
36606
36607
|
Marketing = "MARKETING",
|
|
36607
36608
|
Operations = "OPERATIONS",
|
|
36608
36609
|
Other = "OTHER",
|
|
36610
|
+
ProductManagement = "PRODUCT_MANAGEMENT",
|
|
36611
|
+
ProjectManagement = "PROJECT_MANAGEMENT",
|
|
36609
36612
|
Sales = "SALES",
|
|
36610
36613
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
36611
36614
|
}
|
|
@@ -44457,6 +44460,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
|
|
|
44457
44460
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
44458
44461
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
44459
44462
|
};
|
|
44463
|
+
export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
44464
|
+
__typename?: 'JiraIssueSearchGroupByFieldMutationPayload';
|
|
44465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44466
|
+
success: Scalars['Boolean']['output'];
|
|
44467
|
+
};
|
|
44460
44468
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
44461
44469
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
44462
44470
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -45983,6 +45991,7 @@ export declare type JiraMutation = {
|
|
|
45983
45991
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
45984
45992
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
45985
45993
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
45994
|
+
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
45986
45995
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
45987
45996
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
45988
45997
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -46388,6 +46397,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
46388
46397
|
cloudId: Scalars['ID']['input'];
|
|
46389
46398
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
46390
46399
|
};
|
|
46400
|
+
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
46401
|
+
fieldId: Scalars['String']['input'];
|
|
46402
|
+
viewId: Scalars['ID']['input'];
|
|
46403
|
+
};
|
|
46391
46404
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
46392
46405
|
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
46393
46406
|
viewId: Scalars['ID']['input'];
|
|
@@ -47531,6 +47544,7 @@ export declare type JiraProject = Node & {
|
|
|
47531
47544
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
47532
47545
|
id: Scalars['ID']['output'];
|
|
47533
47546
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
47547
|
+
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47534
47548
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47535
47549
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
47536
47550
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -48385,7 +48399,6 @@ export declare type JiraQuery = {
|
|
|
48385
48399
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
48386
48400
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
48387
48401
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
48388
|
-
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
48389
48402
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
48390
48403
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
48391
48404
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
@@ -48938,13 +48951,6 @@ export declare type JiraQueryJiraProjectsMappedToHelpCenterArgs = {
|
|
|
48938
48951
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48939
48952
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48940
48953
|
};
|
|
48941
|
-
export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
48942
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
48943
|
-
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
48944
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
48945
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48946
|
-
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
48947
|
-
};
|
|
48948
48954
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
48949
48955
|
cloudId: Scalars['ID']['input'];
|
|
48950
48956
|
};
|
|
@@ -51486,7 +51492,6 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
51486
51492
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
51487
51493
|
id: Scalars['ID']['output'];
|
|
51488
51494
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
51489
|
-
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
51490
51495
|
label?: Maybe<Scalars['String']['output']>;
|
|
51491
51496
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
51492
51497
|
};
|
|
@@ -51508,30 +51513,11 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
51508
51513
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
51509
51514
|
totalBoardsInProject: Scalars['Long']['output'];
|
|
51510
51515
|
};
|
|
51511
|
-
export declare enum JiraSoftwareSimpleNavigationItemEnum {
|
|
51512
|
-
JswBacklog = "JSW_BACKLOG",
|
|
51513
|
-
JswBoard = "JSW_BOARD",
|
|
51514
|
-
JswCalendar = "JSW_CALENDAR",
|
|
51515
|
-
JswCode = "JSW_CODE",
|
|
51516
|
-
JswComponents = "JSW_COMPONENTS",
|
|
51517
|
-
JswDeployments = "JSW_DEPLOYMENTS",
|
|
51518
|
-
JswGoals = "JSW_GOALS",
|
|
51519
|
-
JswIncidents = "JSW_INCIDENTS",
|
|
51520
|
-
JswIssues = "JSW_ISSUES",
|
|
51521
|
-
JswList = "JSW_LIST",
|
|
51522
|
-
JswOnCall = "JSW_ON_CALL",
|
|
51523
|
-
JswPages = "JSW_PAGES",
|
|
51524
|
-
JswReleases = "JSW_RELEASES",
|
|
51525
|
-
JswReports = "JSW_REPORTS",
|
|
51526
|
-
JswRequests = "JSW_REQUESTS",
|
|
51527
|
-
JswSecurity = "JSW_SECURITY",
|
|
51528
|
-
JswShortcuts = "JSW_SHORTCUTS",
|
|
51529
|
-
JswTimeline = "JSW_TIMELINE"
|
|
51530
|
-
}
|
|
51531
51516
|
export declare type JiraSpreadsheetGroup = {
|
|
51532
51517
|
__typename?: 'JiraSpreadsheetGroup';
|
|
51533
51518
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
51534
51519
|
fieldType?: Maybe<Scalars['String']['output']>;
|
|
51520
|
+
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
51535
51521
|
id: Scalars['ID']['output'];
|
|
51536
51522
|
issueCount?: Maybe<Scalars['Int']['output']>;
|
|
51537
51523
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -54315,7 +54301,7 @@ export declare type JsmChatMutationAddConversationInteractionArgs = {
|
|
|
54315
54301
|
workspaceAri: Scalars['ID']['input'];
|
|
54316
54302
|
};
|
|
54317
54303
|
export declare type JsmChatMutationAddWebConversationInteractionArgs = {
|
|
54318
|
-
|
|
54304
|
+
conversationMessageId: Scalars['ID']['input'];
|
|
54319
54305
|
input: JsmChatWebAddConversationInteractionInput;
|
|
54320
54306
|
workspaceAri: Scalars['ID']['input'];
|
|
54321
54307
|
};
|
|
@@ -65897,8 +65883,27 @@ export declare type ShepherdAlertSnippet = {
|
|
|
65897
65883
|
contentId: Scalars['ID']['output'];
|
|
65898
65884
|
field: Scalars['String']['output'];
|
|
65899
65885
|
redactable: Scalars['Boolean']['output'];
|
|
65886
|
+
snippetTextBlocks?: Maybe<Array<ShepherdAlertSnippetTextBlock>>;
|
|
65900
65887
|
};
|
|
65901
65888
|
export declare type ShepherdAlertSnippetResult = QueryError | ShepherdAlertSnippets;
|
|
65889
|
+
export declare type ShepherdAlertSnippetTextBlock = {
|
|
65890
|
+
__typename?: 'ShepherdAlertSnippetTextBlock';
|
|
65891
|
+
isSensitive?: Maybe<Scalars['Boolean']['output']>;
|
|
65892
|
+
styles?: Maybe<ShepherdAlertSnippetTextBlockStyles>;
|
|
65893
|
+
text: Scalars['String']['output'];
|
|
65894
|
+
};
|
|
65895
|
+
export declare type ShepherdAlertSnippetTextBlockStyles = {
|
|
65896
|
+
__typename?: 'ShepherdAlertSnippetTextBlockStyles';
|
|
65897
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
65898
|
+
isBold?: Maybe<Scalars['Boolean']['output']>;
|
|
65899
|
+
isCode?: Maybe<Scalars['Boolean']['output']>;
|
|
65900
|
+
isItalic?: Maybe<Scalars['Boolean']['output']>;
|
|
65901
|
+
isStrike?: Maybe<Scalars['Boolean']['output']>;
|
|
65902
|
+
isSubSup?: Maybe<Scalars['Boolean']['output']>;
|
|
65903
|
+
isUnderline?: Maybe<Scalars['Boolean']['output']>;
|
|
65904
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
65905
|
+
textColor?: Maybe<Scalars['String']['output']>;
|
|
65906
|
+
};
|
|
65902
65907
|
export declare type ShepherdAlertSnippets = {
|
|
65903
65908
|
__typename?: 'ShepherdAlertSnippets';
|
|
65904
65909
|
snippets?: Maybe<Array<ShepherdAlertSnippet>>;
|
|
@@ -69934,7 +69939,7 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
69934
69939
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69935
69940
|
__typename?: 'TrelloPlannerCalendar';
|
|
69936
69941
|
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69937
|
-
color?: Maybe<
|
|
69942
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
69938
69943
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69939
69944
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69940
69945
|
id: Scalars['ID']['output'];
|
|
@@ -70083,7 +70088,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
70083
70088
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70084
70089
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70085
70090
|
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70086
|
-
color?: Maybe<
|
|
70091
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70087
70092
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70088
70093
|
id: Scalars['ID']['output'];
|
|
70089
70094
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70159,7 +70164,7 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70159
70164
|
};
|
|
70160
70165
|
export declare type TrelloProviderCalendarInterface = {
|
|
70161
70166
|
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70162
|
-
color?: Maybe<
|
|
70167
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70163
70168
|
id: Scalars['ID']['output'];
|
|
70164
70169
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70165
70170
|
timezone?: Maybe<Scalars['String']['output']>;
|