@forge/cli-shared 2.2.1 → 2.2.2-next.0

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
+ ## 2.2.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2c635f9]
8
+ - @forge/manifest@3.1.1-next.0
9
+
3
10
  ## 2.2.1
4
11
 
5
12
  ### Patch Changes
@@ -1801,7 +1801,6 @@ export declare enum CompassComponentType {
1801
1801
  Other = "OTHER"
1802
1802
  }
1803
1803
  export declare type CompassCreateAlertEventInput = {
1804
- eventType: CompassEventType;
1805
1804
  displayName: Scalars['String'];
1806
1805
  lastUpdated: Scalars['DateTime'];
1807
1806
  alertId: Scalars['ID'];
@@ -1823,7 +1822,6 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
1823
1822
  errors?: Maybe<Array<MutationError>>;
1824
1823
  };
1825
1824
  export declare type CompassCreateCustomEventInput = {
1826
- eventType: CompassEventType;
1827
1825
  displayName: Scalars['String'];
1828
1826
  lastUpdated: Scalars['DateTime'];
1829
1827
  customEventId: Scalars['ID'];
@@ -1855,7 +1853,6 @@ export declare type CompassCreateEventsPayload = Payload & {
1855
1853
  errors?: Maybe<Array<MutationError>>;
1856
1854
  };
1857
1855
  export declare type CompassCreateFlagEventInput = {
1858
- eventType: CompassEventType;
1859
1856
  displayName: Scalars['String'];
1860
1857
  lastUpdated: Scalars['DateTime'];
1861
1858
  flagId: Scalars['ID'];
@@ -1866,7 +1863,6 @@ export declare type CompassCreateFlagEventInput = {
1866
1863
  externalEventSourceId: Scalars['ID'];
1867
1864
  };
1868
1865
  export declare type CompassCreateIncidentEventInput = {
1869
- eventType: CompassEventType;
1870
1866
  displayName: Scalars['String'];
1871
1867
  lastUpdated: Scalars['DateTime'];
1872
1868
  incidentId: Scalars['ID'];
@@ -1877,7 +1873,6 @@ export declare type CompassCreateIncidentEventInput = {
1877
1873
  externalEventSourceId: Scalars['ID'];
1878
1874
  };
1879
1875
  export declare type CompassCreateLifecycleEventInput = {
1880
- eventType: CompassEventType;
1881
1876
  displayName: Scalars['String'];
1882
1877
  lastUpdated: Scalars['DateTime'];
1883
1878
  lifecycleId: Scalars['ID'];
@@ -5072,6 +5067,7 @@ export declare type EcosystemMutation = {
5072
5067
  __typename?: 'EcosystemMutation';
5073
5068
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
5074
5069
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
5070
+ updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
5075
5071
  };
5076
5072
  export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
5077
5073
  input: UpdateAppHostServiceScopesInput;
@@ -5079,10 +5075,14 @@ export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
5079
5075
  export declare type EcosystemMutationDeleteUserGrantArgs = {
5080
5076
  input: DeleteUserGrantInput;
5081
5077
  };
5078
+ export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
5079
+ input: UpdateUserInstallationRulesInput;
5080
+ };
5082
5081
  export declare type EcosystemQuery = {
5083
5082
  __typename?: 'EcosystemQuery';
5084
5083
  userGrants?: Maybe<UserGrantConnection>;
5085
5084
  checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
5085
+ userInstallationRules?: Maybe<UserInstallationRules>;
5086
5086
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
5087
5087
  };
5088
5088
  export declare type EcosystemQueryUserGrantsArgs = {
@@ -5094,6 +5094,9 @@ export declare type EcosystemQueryUserGrantsArgs = {
5094
5094
  export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
5095
5095
  input: CheckConsentPermissionByOAuthClientIdInput;
5096
5096
  };
5097
+ export declare type EcosystemQueryUserInstallationRulesArgs = {
5098
+ cloudId: Scalars['ID'];
5099
+ };
5097
5100
  export declare type EcosystemQueryForgeMetricsArgs = {
5098
5101
  appId: Scalars['ID'];
5099
5102
  };
@@ -9824,6 +9827,18 @@ export declare enum JiraStatusCategoryColor {
9824
9827
  WarmRed = "WARM_RED",
9825
9828
  BlueGray = "BLUE_GRAY"
9826
9829
  }
9830
+ export declare type JiraStatusCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
9831
+ __typename?: 'JiraStatusCategoryField';
9832
+ id: Scalars['ID'];
9833
+ fieldId: Scalars['String'];
9834
+ aliasFieldId?: Maybe<Scalars['ID']>;
9835
+ type: Scalars['String'];
9836
+ name: Scalars['String'];
9837
+ description?: Maybe<Scalars['String']>;
9838
+ statusCategory: JiraStatusCategory;
9839
+ fieldConfig?: Maybe<JiraFieldConfig>;
9840
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
9841
+ };
9827
9842
  export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
9828
9843
  __typename?: 'JiraStatusField';
9829
9844
  id: Scalars['ID'];
@@ -14277,6 +14292,53 @@ export declare enum TownsquareGoalSortEnum {
14277
14292
  WatchingAsc = "WATCHING_ASC",
14278
14293
  WatchingDesc = "WATCHING_DESC"
14279
14294
  }
14295
+ export declare type TownsquareHelpPointer = Node & {
14296
+ __typename?: 'TownsquareHelpPointer';
14297
+ cloudId?: Maybe<Scalars['String']>;
14298
+ creationDate?: Maybe<Scalars['DateTime']>;
14299
+ creatorAaid?: Maybe<Scalars['String']>;
14300
+ description?: Maybe<Scalars['String']>;
14301
+ id: Scalars['ID'];
14302
+ link?: Maybe<Scalars['String']>;
14303
+ name?: Maybe<Scalars['String']>;
14304
+ owner?: Maybe<TownsquareHelpPointerOwner>;
14305
+ tags?: Maybe<TownsquareTagConnection>;
14306
+ teamId?: Maybe<Scalars['String']>;
14307
+ type?: Maybe<TownsquareHelpPointerType>;
14308
+ iconData?: Maybe<Scalars['String']>;
14309
+ };
14310
+ export declare type TownsquareHelpPointerTagsArgs = {
14311
+ after?: Maybe<Scalars['String']>;
14312
+ first?: Maybe<Scalars['Int']>;
14313
+ };
14314
+ export declare type TownsquareHelpPointerConnection = {
14315
+ __typename?: 'TownsquareHelpPointerConnection';
14316
+ count: Scalars['Int'];
14317
+ edges?: Maybe<Array<Maybe<TownsquareHelpPointerEdge>>>;
14318
+ pageInfo: PageInfo;
14319
+ };
14320
+ export declare type TownsquareHelpPointerEdge = {
14321
+ __typename?: 'TownsquareHelpPointerEdge';
14322
+ cursor: Scalars['String'];
14323
+ node?: Maybe<TownsquareHelpPointer>;
14324
+ };
14325
+ export declare type TownsquareHelpPointerOwner = {
14326
+ __typename?: 'TownsquareHelpPointerOwner';
14327
+ displayName?: Maybe<Scalars['String']>;
14328
+ id?: Maybe<Scalars['String']>;
14329
+ largeAvatarImageUrl?: Maybe<Scalars['String']>;
14330
+ smallAvatarImageUrl?: Maybe<Scalars['String']>;
14331
+ };
14332
+ export declare type TownsquareHelpPointerSearchResponse = {
14333
+ __typename?: 'TownsquareHelpPointerSearchResponse';
14334
+ results?: Maybe<TownsquareHelpPointerConnection>;
14335
+ tags?: Maybe<Array<Maybe<TownsquareTag>>>;
14336
+ teams?: Maybe<Array<Maybe<TownsquareTeam>>>;
14337
+ };
14338
+ export declare enum TownsquareHelpPointerType {
14339
+ Action = "ACTION",
14340
+ Information = "INFORMATION"
14341
+ }
14280
14342
  export declare type TownsquareProject = Node & {
14281
14343
  __typename?: 'TownsquareProject';
14282
14344
  archived: Scalars['Boolean'];
@@ -14338,6 +14400,9 @@ export declare type TownsquareQueryApi = {
14338
14400
  commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
14339
14401
  projectSearch?: Maybe<TownsquareProjectConnection>;
14340
14402
  goalSearch?: Maybe<TownsquareGoalConnection>;
14403
+ helpPointerSearch?: Maybe<TownsquareHelpPointerSearchResponse>;
14404
+ helpPointersByCloudIds?: Maybe<TownsquareHelpPointerConnection>;
14405
+ helpPointersByTeam?: Maybe<TownsquareHelpPointerConnection>;
14341
14406
  };
14342
14407
  export declare type TownsquareQueryApiProjectsByAriArgs = {
14343
14408
  aris?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -14363,6 +14428,45 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
14363
14428
  q?: Maybe<Scalars['String']>;
14364
14429
  sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
14365
14430
  };
14431
+ export declare type TownsquareQueryApiHelpPointerSearchArgs = {
14432
+ after?: Maybe<Scalars['String']>;
14433
+ cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
14434
+ first?: Maybe<Scalars['Int']>;
14435
+ q?: Maybe<Scalars['String']>;
14436
+ };
14437
+ export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
14438
+ after?: Maybe<Scalars['String']>;
14439
+ cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
14440
+ first?: Maybe<Scalars['Int']>;
14441
+ };
14442
+ export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
14443
+ after?: Maybe<Scalars['String']>;
14444
+ first?: Maybe<Scalars['Int']>;
14445
+ teamUuid: Scalars['String'];
14446
+ };
14447
+ export declare type TownsquareTag = Node & {
14448
+ __typename?: 'TownsquareTag';
14449
+ description?: Maybe<Scalars['String']>;
14450
+ id: Scalars['ID'];
14451
+ name?: Maybe<Scalars['String']>;
14452
+ };
14453
+ export declare type TownsquareTagConnection = {
14454
+ __typename?: 'TownsquareTagConnection';
14455
+ count: Scalars['Int'];
14456
+ edges?: Maybe<Array<Maybe<TownsquareTagEdge>>>;
14457
+ pageInfo: PageInfo;
14458
+ };
14459
+ export declare type TownsquareTagEdge = {
14460
+ __typename?: 'TownsquareTagEdge';
14461
+ cursor: Scalars['String'];
14462
+ node?: Maybe<TownsquareTag>;
14463
+ };
14464
+ export declare type TownsquareTeam = Node & {
14465
+ __typename?: 'TownsquareTeam';
14466
+ avatarUrl?: Maybe<Scalars['String']>;
14467
+ id: Scalars['ID'];
14468
+ name?: Maybe<Scalars['String']>;
14469
+ };
14366
14470
  export declare type TransitionFilter = {
14367
14471
  from: Scalars['String'];
14368
14472
  to: Scalars['String'];
@@ -14845,6 +14949,10 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
14845
14949
  success: Scalars['Boolean'];
14846
14950
  errors?: Maybe<Array<MutationError>>;
14847
14951
  };
14952
+ export declare type UpdateUserInstallationRulesInput = {
14953
+ cloudId: Scalars['ID'];
14954
+ rule: UserInstallationRuleValue;
14955
+ };
14848
14956
  export declare type User = {
14849
14957
  accountId: Scalars['ID'];
14850
14958
  canonicalAccountId: Scalars['ID'];
@@ -14912,6 +15020,20 @@ export declare type UserGrantPageInfo = {
14912
15020
  startCursor?: Maybe<Scalars['String']>;
14913
15021
  endCursor?: Maybe<Scalars['String']>;
14914
15022
  };
15023
+ export declare enum UserInstallationRuleValue {
15024
+ Allow = "allow",
15025
+ Deny = "deny"
15026
+ }
15027
+ export declare type UserInstallationRules = {
15028
+ __typename?: 'UserInstallationRules';
15029
+ rule: UserInstallationRuleValue;
15030
+ };
15031
+ export declare type UserInstallationRulesPayload = Payload & {
15032
+ __typename?: 'UserInstallationRulesPayload';
15033
+ rule?: Maybe<UserInstallationRuleValue>;
15034
+ success: Scalars['Boolean'];
15035
+ errors?: Maybe<Array<MutationError>>;
15036
+ };
14915
15037
  export declare type WatchMarketplaceAppPayload = Payload & {
14916
15038
  __typename?: 'WatchMarketplaceAppPayload';
14917
15039
  success: Scalars['Boolean'];