@forge/cli-shared 3.23.0-next.3 → 3.23.0-next.5

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,23 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.23.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8202092]
8
+ - @forge/manifest@5.4.1-next.4
9
+
10
+ ## 3.23.0-next.4
11
+
12
+ ### Patch Changes
13
+
14
+ - 16a7cf5: Bumping dependencies via Renovate:
15
+
16
+ - @types/node-fetch
17
+
18
+ - Updated dependencies [16a7cf5]
19
+ - @forge/manifest@5.4.1-next.3
20
+
3
21
  ## 3.23.0-next.3
4
22
 
5
23
  ### 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
  };
@@ -23762,6 +23770,10 @@ export declare enum JiraFieldOptionIdsFilterOperation {
23762
23770
  Allow = "ALLOW",
23763
23771
  Exclude = "EXCLUDE"
23764
23772
  }
23773
+ export type JiraFieldSetsMutationInput = {
23774
+ replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
23775
+ resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
23776
+ };
23765
23777
  export type JiraFieldType = {
23766
23778
  __typename?: 'JiraFieldType';
23767
23779
  displayName?: Maybe<Scalars['String']['output']>;
@@ -25078,6 +25090,7 @@ export type JiraIssueSearchStatus = {
25078
25090
  export type JiraIssueSearchView = Node & {
25079
25091
  __typename?: 'JiraIssueSearchView';
25080
25092
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
25093
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
25081
25094
  id: Scalars['ID']['output'];
25082
25095
  namespace?: Maybe<Scalars['String']['output']>;
25083
25096
  viewId?: Maybe<Scalars['String']['output']>;
@@ -25252,6 +25265,7 @@ export declare enum JiraJqlAutocompleteType {
25252
25265
  Option = "OPTION",
25253
25266
  Priority = "PRIORITY",
25254
25267
  Project = "PROJECT",
25268
+ Requesttype = "REQUESTTYPE",
25255
25269
  Resolution = "RESOLUTION",
25256
25270
  Sprint = "SPRINT",
25257
25271
  Status = "STATUS",
@@ -26253,8 +26267,8 @@ export type JiraMutationRemoveRelatedWorkFromVersionArgs = {
26253
26267
  input: JiraRemoveRelatedWorkFromVersionInput;
26254
26268
  };
26255
26269
  export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
26270
+ fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
26256
26271
  id: Scalars['ID']['input'];
26257
- input: JiraReplaceIssueSearchViewFieldSetsInput;
26258
26272
  };
26259
26273
  export type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
26260
26274
  input: JiraVersionDetailsCollapsedUisInput;
@@ -26464,7 +26478,8 @@ export type JiraNotificationChannel = {
26464
26478
  };
26465
26479
  export declare enum JiraNotificationChannelType {
26466
26480
  Email = "EMAIL",
26467
- InProduct = "IN_PRODUCT"
26481
+ InProduct = "IN_PRODUCT",
26482
+ MobilePush = "MOBILE_PUSH"
26468
26483
  }
26469
26484
  export type JiraNotificationGlobalPreference = {
26470
26485
  __typename?: 'JiraNotificationGlobalPreference';
@@ -26483,6 +26498,7 @@ export type JiraNotificationPreference = {
26483
26498
  emailChannel?: Maybe<JiraNotificationChannel>;
26484
26499
  id: Scalars['ID']['output'];
26485
26500
  inProductChannel?: Maybe<JiraNotificationChannel>;
26501
+ mobilePushChannel?: Maybe<JiraNotificationChannel>;
26486
26502
  type?: Maybe<JiraNotificationType>;
26487
26503
  };
26488
26504
  export type JiraNotificationPreferenceInput = {