@forge/cli-shared 9.0.1-next.2-experimental-9423de1 → 9.0.1-next.3
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,13 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.0.1-next.
|
|
3
|
+
## 9.0.1-next.3
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Updated dependencies [c60a7a5]
|
|
9
|
-
- Updated dependencies [caa7518]
|
|
10
|
-
- @forge/manifest@13.1.0-next.2-experimental-9423de1
|
|
7
|
+
- 5d2cd6c: Add tslib dependency
|
|
11
8
|
|
|
12
9
|
## 9.0.1-next.2
|
|
13
10
|
|
|
@@ -37957,6 +37957,26 @@ export type ConvoAiJiraConfluencePageSuggestion = {
|
|
|
37957
37957
|
suggestionSources: Array<Scalars['String']['output']>;
|
|
37958
37958
|
url: Scalars['String']['output'];
|
|
37959
37959
|
};
|
|
37960
|
+
export type ConvoAiJiraDuplicateWorkItemsConnection = {
|
|
37961
|
+
__typename?: 'ConvoAiJiraDuplicateWorkItemsConnection';
|
|
37962
|
+
edges?: Maybe<Array<ConvoAiJiraDuplicateWorkItemsEdge>>;
|
|
37963
|
+
errors?: Maybe<Array<QueryError>>;
|
|
37964
|
+
pageInfo: PageInfo;
|
|
37965
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37966
|
+
};
|
|
37967
|
+
export type ConvoAiJiraDuplicateWorkItemsEdge = {
|
|
37968
|
+
__typename?: 'ConvoAiJiraDuplicateWorkItemsEdge';
|
|
37969
|
+
cursor: Scalars['String']['output'];
|
|
37970
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestion>;
|
|
37971
|
+
};
|
|
37972
|
+
export type ConvoAiJiraDuplicateWorkItemsInput = {
|
|
37973
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
37974
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37975
|
+
projectId: Scalars['String']['input'];
|
|
37976
|
+
similarityConfig?: InputMaybe<ConvoAiJiraSimilarWorkItemsSimilarityConfig>;
|
|
37977
|
+
summary: Scalars['String']['input'];
|
|
37978
|
+
workItemId?: InputMaybe<Scalars['String']['input']>;
|
|
37979
|
+
};
|
|
37960
37980
|
export type ConvoAiJiraIssueRelatedResourcesResult = {
|
|
37961
37981
|
__typename?: 'ConvoAiJiraIssueRelatedResourcesResult';
|
|
37962
37982
|
edges?: Maybe<Array<ConvoAiJiraRelatedResourcesEdge>>;
|
|
@@ -146546,6 +146566,7 @@ export type JsmChannelsTicketServiceAgentResolutionState = {
|
|
|
146546
146566
|
message?: Maybe<Scalars['String']['output']>;
|
|
146547
146567
|
plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
|
|
146548
146568
|
reasoningEvent?: Maybe<JsmChannelsReasoningEvent>;
|
|
146569
|
+
reasoningEvents?: Maybe<Array<JsmChannelsReasoningEvent>>;
|
|
146549
146570
|
};
|
|
146550
146571
|
export type JsmChannelsTicketServiceAgentResolutionStateResult = JsmChannelsTicketServiceAgentResolutionState | QueryError;
|
|
146551
146572
|
export type JsmChannelsUpdateRovoServiceSkillsInput = {
|
|
@@ -174768,6 +174789,7 @@ export type Query = {
|
|
|
174768
174789
|
convoai_availableSkills?: Maybe<ConvoAiAvailableSkillsResult>;
|
|
174769
174790
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
174770
174791
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
174792
|
+
convoai_jiraDuplicateWorkItems?: Maybe<ConvoAiJiraDuplicateWorkItemsConnection>;
|
|
174771
174793
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
174772
174794
|
convoai_jiraRelated1p3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira1p3pRelatedLinksResult>;
|
|
174773
174795
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
@@ -180948,6 +180970,15 @@ export type QueryConvoai_HomeThreadsArgs = {
|
|
|
180948
180970
|
homeThreadsInput?: InputMaybe<ConvoAiHomeThreadsInput>;
|
|
180949
180971
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
180950
180972
|
};
|
|
180973
|
+
export type QueryConvoai_JiraDuplicateWorkItemsArgs = {
|
|
180974
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
180975
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
180976
|
+
cloudId: Scalars['ID']['input'];
|
|
180977
|
+
experience: Scalars['String']['input'];
|
|
180978
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180979
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
180980
|
+
workItemInput: ConvoAiJiraDuplicateWorkItemsInput;
|
|
180981
|
+
};
|
|
180951
180982
|
export type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
180952
180983
|
cloudId: Scalars['ID']['input'];
|
|
180953
180984
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203973,6 +204004,7 @@ export type SearchTeamsFilters = {
|
|
|
203973
204004
|
hasAttachment?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203974
204005
|
hasLink?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203975
204006
|
messageType?: InputMaybe<Scalars['String']['input']>;
|
|
204007
|
+
workspaceName?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
203976
204008
|
};
|
|
203977
204009
|
export type SearchThirdPartyDynamicFilter = {
|
|
203978
204010
|
__typename?: 'SearchThirdPartyDynamicFilter';
|
|
@@ -228941,6 +228973,7 @@ export type TeamQueryTeamV3Args = {
|
|
|
228941
228973
|
};
|
|
228942
228974
|
export type TeamQueryTeamsTqlArgs = {
|
|
228943
228975
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
228976
|
+
enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
|
|
228944
228977
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
228945
228978
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
228946
228979
|
scopeId: Scalars['ID']['input'];
|
|
@@ -229269,6 +229302,7 @@ export type TeamV2 = Node & {
|
|
|
229269
229302
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
229270
229303
|
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
229271
229304
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
229305
|
+
membersPreview?: Maybe<Array<Maybe<TeamMemberV2>>>;
|
|
229272
229306
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
229273
229307
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
229274
229308
|
permission?: Maybe<TeamPermission>;
|