@forge/cli-shared 3.5.1-next.4 → 3.5.1-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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.5.1-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [30a32d0]
8
+ - @forge/manifest@4.6.0-next.3
9
+
3
10
  ## 3.5.1-next.4
4
11
 
5
12
  ### Patch Changes
@@ -335,7 +335,8 @@ export declare enum ApiGroup {
335
335
  CollaborationGraph = "COLLABORATION_GRAPH",
336
336
  DevopsThirdParty = "DEVOPS_THIRD_PARTY",
337
337
  CloudAdmin = "CLOUD_ADMIN",
338
- CustomerService = "CUSTOMER_SERVICE"
338
+ CustomerService = "CUSTOMER_SERVICE",
339
+ SurfacePlatform = "SURFACE_PLATFORM"
339
340
  }
340
341
  export declare type App = {
341
342
  __typename?: 'App';
@@ -7887,6 +7888,9 @@ export declare type InstallationSummaryApp = {
7887
7888
  name?: Maybe<Scalars['String']>;
7888
7889
  description?: Maybe<Scalars['String']>;
7889
7890
  environment: InstallationSummaryAppEnvironment;
7891
+ definitionId?: Maybe<Scalars['ID']>;
7892
+ installationId?: Maybe<Scalars['ID']>;
7893
+ isSystemApp?: Maybe<Scalars['Boolean']>;
7890
7894
  };
7891
7895
  export declare type InstallationSummaryAppEnvironment = {
7892
7896
  __typename?: 'InstallationSummaryAppEnvironment';
@@ -8558,6 +8562,74 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
8558
8562
  last?: Maybe<Scalars['Int']>;
8559
8563
  before?: Maybe<Scalars['String']>;
8560
8564
  };
8565
+ export declare type JiraCannedResponse = Node & {
8566
+ __typename?: 'JiraCannedResponse';
8567
+ id: Scalars['ID'];
8568
+ projectAri: Scalars['ID'];
8569
+ title: Scalars['String'];
8570
+ content: Scalars['String'];
8571
+ scope: JiraCannedResponseScope;
8572
+ lastUpdatedAt?: Maybe<Scalars['Long']>;
8573
+ createdBy?: Maybe<Scalars['ID']>;
8574
+ usageCount?: Maybe<Scalars['Int']>;
8575
+ };
8576
+ export declare type JiraCannedResponseCreateInput = {
8577
+ projectAri: Scalars['ID'];
8578
+ title: Scalars['String'];
8579
+ content: Scalars['String'];
8580
+ scope: JiraCannedResponseScope;
8581
+ };
8582
+ export declare type JiraCannedResponseCreatePayload = Payload & {
8583
+ __typename?: 'JiraCannedResponseCreatePayload';
8584
+ success: Scalars['Boolean'];
8585
+ errors?: Maybe<Array<MutationError>>;
8586
+ jiraCannedResponse?: Maybe<JiraCannedResponse>;
8587
+ };
8588
+ export declare type JiraCannedResponseDeletePayload = Payload & {
8589
+ __typename?: 'JiraCannedResponseDeletePayload';
8590
+ id: Scalars['ID'];
8591
+ success: Scalars['Boolean'];
8592
+ errors?: Maybe<Array<MutationError>>;
8593
+ };
8594
+ export declare type JiraCannedResponseMutationApi = {
8595
+ __typename?: 'JiraCannedResponseMutationApi';
8596
+ createCannedResponse?: Maybe<JiraCannedResponseCreatePayload>;
8597
+ updateCannedResponse?: Maybe<JiraCannedResponseUpdatePayload>;
8598
+ deleteCannedResponse?: Maybe<JiraCannedResponseDeletePayload>;
8599
+ };
8600
+ export declare type JiraCannedResponseMutationApiCreateCannedResponseArgs = {
8601
+ input: JiraCannedResponseCreateInput;
8602
+ };
8603
+ export declare type JiraCannedResponseMutationApiUpdateCannedResponseArgs = {
8604
+ input: JiraCannedResponseUpdateInput;
8605
+ };
8606
+ export declare type JiraCannedResponseMutationApiDeleteCannedResponseArgs = {
8607
+ id: Scalars['ID'];
8608
+ };
8609
+ export declare type JiraCannedResponseQueryApi = {
8610
+ __typename?: 'JiraCannedResponseQueryApi';
8611
+ cannedResponseById?: Maybe<JiraCannedResponseQueryResult>;
8612
+ };
8613
+ export declare type JiraCannedResponseQueryApiCannedResponseByIdArgs = {
8614
+ id: Scalars['ID'];
8615
+ };
8616
+ export declare type JiraCannedResponseQueryResult = JiraCannedResponse | QueryError;
8617
+ export declare enum JiraCannedResponseScope {
8618
+ Project = "PROJECT",
8619
+ Personal = "PERSONAL"
8620
+ }
8621
+ export declare type JiraCannedResponseUpdateInput = {
8622
+ id: Scalars['ID'];
8623
+ title: Scalars['String'];
8624
+ content: Scalars['String'];
8625
+ scope: JiraCannedResponseScope;
8626
+ };
8627
+ export declare type JiraCannedResponseUpdatePayload = Payload & {
8628
+ __typename?: 'JiraCannedResponseUpdatePayload';
8629
+ success: Scalars['Boolean'];
8630
+ errors?: Maybe<Array<MutationError>>;
8631
+ jiraCannedResponse?: Maybe<JiraCannedResponse>;
8632
+ };
8561
8633
  export declare type JiraCascadingOption = {
8562
8634
  __typename?: 'JiraCascadingOption';
8563
8635
  parentOptionValue?: Maybe<JiraOption>;
@@ -14071,6 +14143,7 @@ export declare type JiraVersion = Node & {
14071
14143
  issues?: Maybe<JiraIssueConnection>;
14072
14144
  project?: Maybe<JiraProject>;
14073
14145
  canEdit?: Maybe<Scalars['Boolean']>;
14146
+ canEditRelatedWork?: Maybe<Scalars['Boolean']>;
14074
14147
  canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
14075
14148
  canViewDevTools?: Maybe<Scalars['Boolean']>;
14076
14149
  releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
@@ -15578,6 +15651,7 @@ export declare type Mutation = {
15578
15651
  createReleaseNote: ContentPlatformReleaseNote;
15579
15652
  publishReleaseNote: ContentPlatformReleaseNote;
15580
15653
  updateReleaseNote: ContentPlatformReleaseNote;
15654
+ jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
15581
15655
  devOps?: Maybe<DevOpsMutation>;
15582
15656
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
15583
15657
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -17825,6 +17899,7 @@ export declare type PolarisView = {
17825
17899
  hideEmptyGroups?: Maybe<Scalars['Boolean']>;
17826
17900
  enabledAutoSave?: Maybe<Scalars['Boolean']>;
17827
17901
  layoutType?: Maybe<PolarisViewLayoutType>;
17902
+ hideEmptyColumns?: Maybe<Scalars['Boolean']>;
17828
17903
  };
17829
17904
  export declare type PolarisViewJqlArgs = {
17830
17905
  filter?: Maybe<PolarisFilterInput>;
@@ -17960,6 +18035,7 @@ export declare type Query = {
17960
18035
  releaseNotes: ContentPlatformReleaseNotesConnection;
17961
18036
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
17962
18037
  smarts?: Maybe<SmartsQueryApi>;
18038
+ jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
17963
18039
  townsquare?: Maybe<TownsquareQueryApi>;
17964
18040
  devOps?: Maybe<DevOps>;
17965
18041
  jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -18453,6 +18529,7 @@ export declare enum RateLimitingCurrency {
18453
18529
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
18454
18530
  TeamsCurrency = "TEAMS_CURRENCY",
18455
18531
  TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
18532
+ TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
18456
18533
  CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
18457
18534
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
18458
18535
  DirectoryCurrency = "DIRECTORY_CURRENCY",
@@ -20654,6 +20731,10 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
20654
20731
  projectType?: JiraProjectType;
20655
20732
  filter?: JiraProjectFilterInput;
20656
20733
  };
20734
+ export declare enum SubscriptionEventSources {
20735
+ Streamhub = "STREAMHUB",
20736
+ Producer = "PRODUCER"
20737
+ }
20657
20738
  export declare type SupportRequest = {
20658
20739
  __typename?: 'SupportRequest';
20659
20740
  id: Scalars['ID'];
@@ -21089,13 +21170,58 @@ export declare type TeamMemberEdge = {
21089
21170
  node?: Maybe<TeamMember>;
21090
21171
  cursor: Scalars['String'];
21091
21172
  };
21173
+ export declare type TeamMembershipFilter = {
21174
+ memberIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
21175
+ };
21092
21176
  export declare type TeamQuery = {
21093
21177
  __typename?: 'TeamQuery';
21094
21178
  team?: Maybe<Team>;
21179
+ teamSearch?: Maybe<TeamSearchResultConnection>;
21095
21180
  };
21096
21181
  export declare type TeamQueryTeamArgs = {
21097
21182
  id: Scalars['ID'];
21098
21183
  };
21184
+ export declare type TeamQueryTeamSearchArgs = {
21185
+ organizationId: Scalars['ID'];
21186
+ filter?: Maybe<TeamSearchFilter>;
21187
+ first?: Maybe<Scalars['Int']>;
21188
+ after?: Maybe<Scalars['String']>;
21189
+ sortBy?: Maybe<Array<Maybe<TeamSort>>>;
21190
+ };
21191
+ export declare type TeamSearchFilter = {
21192
+ query?: Maybe<Scalars['String']>;
21193
+ membership?: Maybe<TeamMembershipFilter>;
21194
+ };
21195
+ export declare type TeamSearchResult = {
21196
+ __typename?: 'TeamSearchResult';
21197
+ team?: Maybe<Team>;
21198
+ memberCount?: Maybe<Scalars['Int']>;
21199
+ includesYou?: Maybe<Scalars['Boolean']>;
21200
+ };
21201
+ export declare type TeamSearchResultConnection = {
21202
+ __typename?: 'TeamSearchResultConnection';
21203
+ edges?: Maybe<Array<Maybe<TeamSearchResultEdge>>>;
21204
+ nodes?: Maybe<Array<Maybe<TeamSearchResult>>>;
21205
+ pageInfo?: Maybe<PageInfo>;
21206
+ };
21207
+ export declare type TeamSearchResultEdge = {
21208
+ __typename?: 'TeamSearchResultEdge';
21209
+ node?: Maybe<TeamSearchResult>;
21210
+ cursor: Scalars['String'];
21211
+ };
21212
+ export declare type TeamSort = {
21213
+ field: TeamSortField;
21214
+ order?: Maybe<TeamSortOrder>;
21215
+ };
21216
+ export declare enum TeamSortField {
21217
+ Id = "ID",
21218
+ DisplayName = "DISPLAY_NAME",
21219
+ State = "STATE"
21220
+ }
21221
+ export declare enum TeamSortOrder {
21222
+ Asc = "ASC",
21223
+ Desc = "DESC"
21224
+ }
21099
21225
  export declare enum TeamState {
21100
21226
  Active = "ACTIVE",
21101
21227
  Disbanded = "DISBANDED",
@@ -22136,6 +22262,7 @@ export declare type UpdatePolarisViewInput = {
22136
22262
  matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
22137
22263
  sortMode?: Maybe<PolarisViewSortMode>;
22138
22264
  hideEmptyGroups?: Maybe<Scalars['Boolean']>;
22265
+ hideEmptyColumns?: Maybe<Scalars['Boolean']>;
22139
22266
  enabledAutoSave?: Maybe<Scalars['Boolean']>;
22140
22267
  layoutType?: Maybe<PolarisViewLayoutType>;
22141
22268
  };