@forge/cli-shared 3.23.0-next.2 → 3.23.0-next.4
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,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 16a7cf5: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/node-fetch
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [16a7cf5]
|
|
12
|
+
- @forge/manifest@5.4.1-next.3
|
|
13
|
+
|
|
14
|
+
## 3.23.0-next.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 680e21f: Bumping dependencies via Renovate:
|
|
19
|
+
|
|
20
|
+
- io-ts
|
|
21
|
+
|
|
3
22
|
## 3.23.0-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -7145,6 +7145,7 @@ export type CreatePolarisPlayInput = {
|
|
|
7145
7145
|
label: Scalars['String']['input'];
|
|
7146
7146
|
parameters?: InputMaybe<Scalars['JSON']['input']>;
|
|
7147
7147
|
project: Scalars['ID']['input'];
|
|
7148
|
+
skipFieldCreation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7148
7149
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
7149
7150
|
};
|
|
7150
7151
|
export type CreatePolarisPlayPayload = {
|
|
@@ -7996,6 +7997,7 @@ export type CustomerServiceQueryApi = {
|
|
|
7996
7997
|
individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
7997
7998
|
organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
7998
7999
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
8000
|
+
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
7999
8001
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
8000
8002
|
};
|
|
8001
8003
|
export type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
@@ -8012,6 +8014,11 @@ export type CustomerServiceQueryApiOrganizationByOrganizationIdArgs = {
|
|
|
8012
8014
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
8013
8015
|
organizationId: Scalars['ID']['input'];
|
|
8014
8016
|
};
|
|
8017
|
+
export type CustomerServiceQueryApiProductConnectionsArgs = {
|
|
8018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8019
|
+
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
8020
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8021
|
+
};
|
|
8015
8022
|
export type CustomerServiceQueryApiProductsArgs = {
|
|
8016
8023
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8017
8024
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
@@ -20333,6 +20340,7 @@ export type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
|
|
|
20333
20340
|
export type HelpCenterHelpDeskUpdateInput = {
|
|
20334
20341
|
contactInfo: Scalars['String']['input'];
|
|
20335
20342
|
description: Scalars['String']['input'];
|
|
20343
|
+
helpCenterAri?: InputMaybe<Scalars['String']['input']>;
|
|
20336
20344
|
helpDeskId: Scalars['String']['input'];
|
|
20337
20345
|
name: Scalars['String']['input'];
|
|
20338
20346
|
};
|
|
@@ -25252,6 +25260,7 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
25252
25260
|
Option = "OPTION",
|
|
25253
25261
|
Priority = "PRIORITY",
|
|
25254
25262
|
Project = "PROJECT",
|
|
25263
|
+
Requesttype = "REQUESTTYPE",
|
|
25255
25264
|
Resolution = "RESOLUTION",
|
|
25256
25265
|
Sprint = "SPRINT",
|
|
25257
25266
|
Status = "STATUS",
|
|
@@ -26464,7 +26473,8 @@ export type JiraNotificationChannel = {
|
|
|
26464
26473
|
};
|
|
26465
26474
|
export declare enum JiraNotificationChannelType {
|
|
26466
26475
|
Email = "EMAIL",
|
|
26467
|
-
InProduct = "IN_PRODUCT"
|
|
26476
|
+
InProduct = "IN_PRODUCT",
|
|
26477
|
+
MobilePush = "MOBILE_PUSH"
|
|
26468
26478
|
}
|
|
26469
26479
|
export type JiraNotificationGlobalPreference = {
|
|
26470
26480
|
__typename?: 'JiraNotificationGlobalPreference';
|
|
@@ -26483,6 +26493,7 @@ export type JiraNotificationPreference = {
|
|
|
26483
26493
|
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
26484
26494
|
id: Scalars['ID']['output'];
|
|
26485
26495
|
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
26496
|
+
mobilePushChannel?: Maybe<JiraNotificationChannel>;
|
|
26486
26497
|
type?: Maybe<JiraNotificationType>;
|
|
26487
26498
|
};
|
|
26488
26499
|
export type JiraNotificationPreferenceInput = {
|