@forge/cli-shared 8.15.2-next.0-experimental-1dcd593 → 8.15.2-next.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,18 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.15.2-next.0-experimental-1dcd593
4
-
5
- ### Minor Changes
6
-
7
- - b59aee1: Support hot reloading for forge containers tunneling
3
+ ## 8.15.2-next.1
8
4
 
9
5
  ### Patch Changes
10
6
 
11
- - Updated dependencies [b59aee1]
12
7
  - Updated dependencies [beddb18]
13
- - Updated dependencies [561036a]
14
- - Updated dependencies [b248c8f]
15
- - @forge/manifest@12.1.1-next.0-experimental-1dcd593
8
+ - @forge/manifest@12.1.1-next.1
16
9
 
17
10
  ## 8.15.2-next.0
18
11
 
@@ -5764,6 +5764,7 @@ export declare type AppInstallation = {
5764
5764
  app?: Maybe<App>;
5765
5765
  appEnvironment?: Maybe<AppEnvironment>;
5766
5766
  appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
5767
+ appLicense?: Maybe<AppInstallationAppLicense>;
5767
5768
  computeVersion?: Maybe<AppEnvironmentVersion>;
5768
5769
  config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
5769
5770
  createdAt: Scalars['DateTime']['output'];
@@ -5779,6 +5780,19 @@ export declare type AppInstallation = {
5779
5780
  secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
5780
5781
  version?: Maybe<AppVersion>;
5781
5782
  };
5783
+ export declare type AppInstallationAppLicense = {
5784
+ __typename?: 'AppInstallationAppLicense';
5785
+ active: Scalars['Boolean']['output'];
5786
+ billingPeriod?: Maybe<Scalars['String']['output']>;
5787
+ capabilitySet?: Maybe<AppLicenseCapabilitySet>;
5788
+ ccpEntitlementId?: Maybe<Scalars['String']['output']>;
5789
+ ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
5790
+ isEvaluation?: Maybe<Scalars['Boolean']['output']>;
5791
+ subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
5792
+ supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
5793
+ trialEndDate?: Maybe<Scalars['DateTime']['output']>;
5794
+ type?: Maybe<Scalars['String']['output']>;
5795
+ };
5782
5796
  export declare type AppInstallationByIndexConnection = {
5783
5797
  __typename?: 'AppInstallationByIndexConnection';
5784
5798
  edges?: Maybe<Array<Maybe<AppInstallationByIndexEdge>>>;
@@ -5946,6 +5960,10 @@ export declare type AppInstallationsFilter = {
5946
5960
  appId: Scalars['ID']['input'];
5947
5961
  environmentType?: InputMaybe<AppEnvironmentType>;
5948
5962
  };
5963
+ export declare enum AppLicenseCapabilitySet {
5964
+ CapabilityAdvanced = "capabilityAdvanced",
5965
+ CapabilityStandard = "capabilityStandard"
5966
+ }
5949
5967
  export declare type AppLog = FunctionInvocationMetadata & {
5950
5968
  __typename?: 'AppLog';
5951
5969
  appLogLines?: Maybe<AppLogLineConnection>;
@@ -103960,6 +103978,7 @@ export declare type JiraGradientBackground = JiraBackground & {
103960
103978
  };
103961
103979
  export declare type JiraGrantTypeKey = {
103962
103980
  __typename?: 'JiraGrantTypeKey';
103981
+ grantsPerPermissionLimit?: Maybe<Scalars['Int']['output']>;
103963
103982
  key: JiraGrantTypeKeyEnum;
103964
103983
  name: Scalars['String']['output'];
103965
103984
  };
@@ -110502,6 +110521,7 @@ export declare type JiraPermissionGrants = {
110502
110521
  __typename?: 'JiraPermissionGrants';
110503
110522
  grantType: JiraGrantTypeKey;
110504
110523
  grantValues?: Maybe<Array<JiraPermissionGrantValue>>;
110524
+ grantsPerPermissionLimit?: Maybe<Scalars['Int']['output']>;
110505
110525
  totalCount?: Maybe<Scalars['Int']['output']>;
110506
110526
  };
110507
110527
  export declare type JiraPermissionLevel = {
@@ -116002,6 +116022,10 @@ export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
116002
116022
  errors?: Maybe<Array<MutationError>>;
116003
116023
  success: Scalars['Boolean']['output'];
116004
116024
  };
116025
+ export declare type JiraSetCalendarViewFilterInput = {
116026
+ jql: Scalars['String']['input'];
116027
+ viewId: Scalars['ID']['input'];
116028
+ };
116005
116029
  export declare type JiraSetCapacityMostRecentSubRouteInput = {
116006
116030
  cloudId: Scalars['ID']['input'];
116007
116031
  scopeId: Scalars['ID']['input'];
@@ -132415,6 +132439,7 @@ export declare type Mutation = {
132415
132439
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
132416
132440
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
132417
132441
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
132442
+ jira_setCalendarViewFilter?: Maybe<JiraUpdateCalendarViewConfigPayload>;
132418
132443
  jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
132419
132444
  jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
132420
132445
  jira_setFavicon?: Maybe<JiraSetFaviconPayload>;
@@ -135094,6 +135119,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
135094
135119
  export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
135095
135120
  input: JiraSetBoardViewWorkflowSelectedInput;
135096
135121
  };
135122
+ export declare type MutationJira_SetCalendarViewFilterArgs = {
135123
+ input: JiraSetCalendarViewFilterInput;
135124
+ };
135097
135125
  export declare type MutationJira_SetCapacityMostRecentSubRouteArgs = {
135098
135126
  input: JiraSetCapacityMostRecentSubRouteInput;
135099
135127
  };
@@ -139990,6 +140018,7 @@ export declare type Query = {
139990
140018
  jira_fieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
139991
140019
  jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
139992
140020
  jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
140021
+ jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
139993
140022
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
139994
140023
  jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
139995
140024
  jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
@@ -143558,6 +143587,9 @@ export declare type QueryJira_IsAgentAssignableArgs = {
143558
143587
  agentInput: JiraAgentAssignableInput;
143559
143588
  cloudId: Scalars['ID']['input'];
143560
143589
  };
143590
+ export declare type QueryJira_IsBetaAiFeaturesEnabledArgs = {
143591
+ cloudId: Scalars['ID']['input'];
143592
+ };
143561
143593
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
143562
143594
  cloudId: Scalars['ID']['input'];
143563
143595
  };
@@ -172153,6 +172185,7 @@ export declare type TeamMutation = {
172153
172185
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
172154
172186
  setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
172155
172187
  unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
172188
+ updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
172156
172189
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
172157
172190
  updateTeam?: Maybe<TeamUpdatePayload>;
172158
172191
  updateType?: Maybe<TeamType>;
@@ -172230,6 +172263,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
172230
172263
  customFieldValueId: Scalars['ID']['input'];
172231
172264
  teamId: Scalars['ID']['input'];
172232
172265
  };
172266
+ export declare type TeamMutationUpdateCustomFieldArgs = {
172267
+ customFieldData: TeamUpdateCustomFieldPayload;
172268
+ id: Scalars['ID']['input'];
172269
+ };
172233
172270
  export declare type TeamMutationUpdateRoleAssignmentsArgs = {
172234
172271
  organizationId: Scalars['ID']['input'];
172235
172272
  principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -172494,6 +172531,10 @@ export declare type TeamTypeUpdatePayload = {
172494
172531
  description?: InputMaybe<Scalars['String']['input']>;
172495
172532
  name?: InputMaybe<Scalars['String']['input']>;
172496
172533
  };
172534
+ export declare type TeamUpdateCustomFieldPayload = {
172535
+ description?: InputMaybe<Scalars['String']['input']>;
172536
+ name?: InputMaybe<Scalars['String']['input']>;
172537
+ };
172497
172538
  export declare type TeamUpdatePayload = Payload & {
172498
172539
  __typename?: 'TeamUpdatePayload';
172499
172540
  errors?: Maybe<Array<MutationError>>;
@@ -173577,6 +173618,7 @@ export declare type TownsquareGoal = Node & {
173577
173618
  latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
173578
173619
  latestUserUpdate?: Maybe<TownsquareGoalUpdate>;
173579
173620
  metricTargets?: Maybe<TownsquareMetricTargetConnection>;
173621
+ msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
173580
173622
  name: Scalars['String']['output'];
173581
173623
  owner?: Maybe<User>;
173582
173624
  parentGoal?: Maybe<TownsquareGoal>;
@@ -173640,6 +173682,10 @@ export declare type TownsquareGoalMetricTargetsArgs = {
173640
173682
  after?: InputMaybe<Scalars['String']['input']>;
173641
173683
  first?: InputMaybe<Scalars['Int']['input']>;
173642
173684
  };
173685
+ export declare type TownsquareGoalMsteamsChannelsArgs = {
173686
+ after?: InputMaybe<Scalars['String']['input']>;
173687
+ first?: InputMaybe<Scalars['Int']['input']>;
173688
+ };
173643
173689
  export declare type TownsquareGoalParentGoalSuggestionsArgs = {
173644
173690
  after?: InputMaybe<Scalars['String']['input']>;
173645
173691
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -174756,6 +174802,44 @@ export declare enum TownsquareMetricValueSortEnum {
174756
174802
  TimeAsc = "TIME_ASC",
174757
174803
  TimeDesc = "TIME_DESC"
174758
174804
  }
174805
+ export declare type TownsquareMsteamsConnectedChannelChannelInfo = {
174806
+ __typename?: 'TownsquareMsteamsConnectedChannelChannelInfo';
174807
+ channelId?: Maybe<Scalars['String']['output']>;
174808
+ displayName?: Maybe<Scalars['String']['output']>;
174809
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
174810
+ membershipType?: Maybe<Scalars['String']['output']>;
174811
+ };
174812
+ export declare type TownsquareMsteamsConnectedChannelConnection = {
174813
+ __typename?: 'TownsquareMsteamsConnectedChannelConnection';
174814
+ edges?: Maybe<Array<Maybe<TownsquareMsteamsConnectedChannelEdge>>>;
174815
+ pageInfo: PageInfo;
174816
+ };
174817
+ export declare type TownsquareMsteamsConnectedChannelEdge = {
174818
+ __typename?: 'TownsquareMsteamsConnectedChannelEdge';
174819
+ cursor: Scalars['String']['output'];
174820
+ node?: Maybe<TownsquareMsteamsConnectedChannelInfo>;
174821
+ };
174822
+ export declare type TownsquareMsteamsConnectedChannelInfo = {
174823
+ __typename?: 'TownsquareMsteamsConnectedChannelInfo';
174824
+ channel?: Maybe<TownsquareMsteamsConnectedChannelChannelInfo>;
174825
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
174826
+ subscriber?: Maybe<User>;
174827
+ team?: Maybe<TownsquareMsteamsConnectedChannelTeamInfo>;
174828
+ tenant?: Maybe<TownsquareMsteamsConnectedChannelTenantInfo>;
174829
+ };
174830
+ export declare type TownsquareMsteamsConnectedChannelTeamInfo = {
174831
+ __typename?: 'TownsquareMsteamsConnectedChannelTeamInfo';
174832
+ displayName?: Maybe<Scalars['String']['output']>;
174833
+ internalId?: Maybe<Scalars['String']['output']>;
174834
+ isPrivate?: Maybe<Scalars['Boolean']['output']>;
174835
+ visibility?: Maybe<Scalars['String']['output']>;
174836
+ };
174837
+ export declare type TownsquareMsteamsConnectedChannelTenantInfo = {
174838
+ __typename?: 'TownsquareMsteamsConnectedChannelTenantInfo';
174839
+ displayName?: Maybe<Scalars['String']['output']>;
174840
+ isUserLoggedIn?: Maybe<Scalars['Boolean']['output']>;
174841
+ microsoftTenantId?: Maybe<Scalars['String']['output']>;
174842
+ };
174759
174843
  export declare type TownsquareMutationApi = {
174760
174844
  __typename?: 'TownsquareMutationApi';
174761
174845
  archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
@@ -174873,6 +174957,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
174873
174957
  mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
174874
174958
  mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
174875
174959
  mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
174960
+ msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
174876
174961
  name: Scalars['String']['output'];
174877
174962
  owner?: Maybe<User>;
174878
174963
  risks?: Maybe<TownsquareRiskConnection>;
@@ -174949,6 +175034,10 @@ export declare type TownsquareProjectMembersArgs = {
174949
175034
  after?: InputMaybe<Scalars['String']['input']>;
174950
175035
  first?: InputMaybe<Scalars['Int']['input']>;
174951
175036
  };
175037
+ export declare type TownsquareProjectMsteamsChannelsArgs = {
175038
+ after?: InputMaybe<Scalars['String']['input']>;
175039
+ first?: InputMaybe<Scalars['Int']['input']>;
175040
+ };
174952
175041
  export declare type TownsquareProjectRisksArgs = {
174953
175042
  after?: InputMaybe<Scalars['String']['input']>;
174954
175043
  createdAfter?: InputMaybe<Scalars['DateTime']['input']>;