@forge/cli-shared 3.22.1-next.2 → 3.22.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
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.22.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d0cde6a: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- ignore-walk
|
|
10
|
+
|
|
11
|
+
- 4cce0e1: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- @atlassian/xen-test-util
|
|
14
|
+
|
|
15
|
+
- b45f058: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/jest
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [b45f058]
|
|
20
|
+
- Updated dependencies [b8cb981]
|
|
21
|
+
- Updated dependencies [123ae0d]
|
|
22
|
+
- @forge/manifest@5.4.0
|
|
23
|
+
|
|
24
|
+
## 3.22.1-next.3
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- b45f058: Bumping dependencies via Renovate:
|
|
29
|
+
|
|
30
|
+
- @types/jest
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [b45f058]
|
|
33
|
+
- @forge/manifest@5.4.0-next.2
|
|
34
|
+
|
|
3
35
|
## 3.22.1-next.2
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
|
@@ -1867,6 +1867,7 @@ export type Backlog = {
|
|
|
1867
1867
|
extension?: Maybe<BacklogExtension>;
|
|
1868
1868
|
labels: Array<Maybe<Scalars['String']['output']>>;
|
|
1869
1869
|
requestColumnMigration: Scalars['Boolean']['output'];
|
|
1870
|
+
viewConfig?: Maybe<ViewConfig>;
|
|
1870
1871
|
};
|
|
1871
1872
|
export type BacklogCardsArgs = {
|
|
1872
1873
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -7819,9 +7820,9 @@ export type CustomerServiceNoteAuthor = {
|
|
|
7819
7820
|
avatarUrl: Scalars['String']['output'];
|
|
7820
7821
|
displayName: Scalars['String']['output'];
|
|
7821
7822
|
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
7822
|
-
id
|
|
7823
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
7823
7824
|
isDeleted: Scalars['Boolean']['output'];
|
|
7824
|
-
name
|
|
7825
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7825
7826
|
};
|
|
7826
7827
|
export type CustomerServiceNoteCreateInput = {
|
|
7827
7828
|
body: Scalars['String']['input'];
|
|
@@ -25609,7 +25610,8 @@ export type JiraNotificationChannel = {
|
|
|
25609
25610
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25610
25611
|
};
|
|
25611
25612
|
export declare enum JiraNotificationChannelType {
|
|
25612
|
-
Email = "EMAIL"
|
|
25613
|
+
Email = "EMAIL",
|
|
25614
|
+
InProduct = "IN_PRODUCT"
|
|
25613
25615
|
}
|
|
25614
25616
|
export type JiraNotificationGlobalPreference = {
|
|
25615
25617
|
__typename?: 'JiraNotificationGlobalPreference';
|
|
@@ -25627,6 +25629,7 @@ export type JiraNotificationPreference = {
|
|
|
25627
25629
|
__typename?: 'JiraNotificationPreference';
|
|
25628
25630
|
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
25629
25631
|
id: Scalars['ID']['output'];
|
|
25632
|
+
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
25630
25633
|
type?: Maybe<JiraNotificationType>;
|
|
25631
25634
|
};
|
|
25632
25635
|
export type JiraNotificationPreferenceInput = {
|
|
@@ -31563,6 +31566,7 @@ export type Mutation = {
|
|
|
31563
31566
|
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
31564
31567
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
31565
31568
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
31569
|
+
setViewConfig?: Maybe<SetViewConfigOutput>;
|
|
31566
31570
|
shepherd?: Maybe<ShepherdMutation>;
|
|
31567
31571
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
31568
31572
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -31934,6 +31938,9 @@ export type MutationSetSwimlaneStrategyArgs = {
|
|
|
31934
31938
|
export type MutationSetUserSwimlaneStrategyArgs = {
|
|
31935
31939
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
31936
31940
|
};
|
|
31941
|
+
export type MutationSetViewConfigArgs = {
|
|
31942
|
+
input?: InputMaybe<SetViewConfigInput>;
|
|
31943
|
+
};
|
|
31937
31944
|
export type MutationSplitIssueArgs = {
|
|
31938
31945
|
input?: InputMaybe<SplitIssueInput>;
|
|
31939
31946
|
};
|
|
@@ -36394,6 +36401,18 @@ export type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
36394
36401
|
strategy: SwimlaneStrategy;
|
|
36395
36402
|
success: Scalars['Boolean']['output'];
|
|
36396
36403
|
};
|
|
36404
|
+
export type SetViewConfigInput = {
|
|
36405
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
36406
|
+
id: Scalars['ID']['input'];
|
|
36407
|
+
};
|
|
36408
|
+
export type SetViewConfigOutput = MutationResponse & {
|
|
36409
|
+
__typename?: 'SetViewConfigOutput';
|
|
36410
|
+
clientMutationId?: Maybe<Scalars['ID']['output']>;
|
|
36411
|
+
message: Scalars['String']['output'];
|
|
36412
|
+
modifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
36413
|
+
statusCode: Scalars['Int']['output'];
|
|
36414
|
+
success: Scalars['Boolean']['output'];
|
|
36415
|
+
};
|
|
36397
36416
|
export declare enum ShepherdActionType {
|
|
36398
36417
|
Activate = "ACTIVATE",
|
|
36399
36418
|
Crawl = "CRAWL",
|
|
@@ -40602,6 +40621,12 @@ export type UserInstallationRulesPayload = Payload & {
|
|
|
40602
40621
|
rule?: Maybe<UserInstallationRuleValue>;
|
|
40603
40622
|
success: Scalars['Boolean']['output'];
|
|
40604
40623
|
};
|
|
40624
|
+
export type ViewConfig = {
|
|
40625
|
+
__typename?: 'ViewConfig';
|
|
40626
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
40627
|
+
id: Scalars['ID']['output'];
|
|
40628
|
+
modifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
40629
|
+
};
|
|
40605
40630
|
export type VirtualAgentChannelConfig = {
|
|
40606
40631
|
__typename?: 'VirtualAgentChannelConfig';
|
|
40607
40632
|
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|