@forge/cli-shared 8.2.0-next.3 → 8.2.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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.2.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 73f3108: Add tip about variables only changing after deployment
8
+
3
9
  ## 8.2.0-next.3
4
10
 
5
11
  ### Patch Changes
@@ -17306,6 +17306,9 @@ export declare type CsmAiHub = {
17306
17306
  export declare type CsmAiHubActionsArgs = {
17307
17307
  filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
17308
17308
  };
17309
+ export declare type CsmAiHubWidgetsArgs = {
17310
+ type?: InputMaybe<CsmAiWidgetType>;
17311
+ };
17309
17312
  export declare type CsmAiHubResult = CsmAiHub | QueryError;
17310
17313
  export declare type CsmAiKeyValueInput = {
17311
17314
  key: Scalars['String']['input'];
@@ -17417,10 +17420,10 @@ export declare enum CsmAiWidgetBrandingSpaceVariant {
17417
17420
  export declare type CsmAiWidgetBrandingTheme = {
17418
17421
  __typename?: 'CsmAiWidgetBrandingTheme';
17419
17422
  attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
17420
- chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
17421
- colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
17422
- radius?: Maybe<CsmAiWidgetBrandingRadius>;
17423
- space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
17423
+ chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
17424
+ colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
17425
+ radius: CsmAiWidgetBrandingRadius;
17426
+ space: CsmAiWidgetBrandingSpaceVariant;
17424
17427
  };
17425
17428
  export declare type CsmAiWidgetBrandingThemeUpdateInput = {
17426
17429
  attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
@@ -49542,6 +49545,7 @@ export declare type Group = {
49542
49545
  name?: Maybe<Scalars['String']['output']>;
49543
49546
  permissionType?: Maybe<SitePermissionType>;
49544
49547
  resourceAri?: Maybe<Scalars['ID']['output']>;
49548
+ team?: Maybe<TeamV2>;
49545
49549
  usageType?: Maybe<ConfluenceGroupUsageType>;
49546
49550
  };
49547
49551
  export declare type GroupByPageInfo = {
@@ -49562,6 +49566,7 @@ export declare type GroupWithPermissions = {
49562
49566
  name?: Maybe<Scalars['String']['output']>;
49563
49567
  operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
49564
49568
  resourceAri?: Maybe<Scalars['ID']['output']>;
49569
+ team?: Maybe<TeamV2>;
49565
49570
  usageType?: Maybe<ConfluenceGroupUsageType>;
49566
49571
  };
49567
49572
  export declare type GroupWithPermissionsEdge = {
@@ -49585,6 +49590,7 @@ export declare type GroupWithRestrictions = {
49585
49590
  permissionType?: Maybe<SitePermissionType>;
49586
49591
  resourceAri?: Maybe<Scalars['ID']['output']>;
49587
49592
  restrictingContent?: Maybe<Content>;
49593
+ team?: Maybe<TeamV2>;
49588
49594
  usageType?: Maybe<ConfluenceGroupUsageType>;
49589
49595
  };
49590
49596
  export declare type GroupWithRestrictionsEdge = {
@@ -51747,7 +51753,18 @@ export declare type HelpObjectStoreArticleMetadata = {
51747
51753
  isExternal: Scalars['Boolean']['output'];
51748
51754
  searchStrategy: HelpObjectStoreArticleSearchStrategy;
51749
51755
  };
51756
+ export declare type HelpObjectStoreArticleRelative = {
51757
+ __typename?: 'HelpObjectStoreArticleRelative';
51758
+ id: Scalars['ID']['output'];
51759
+ status?: Maybe<Scalars['String']['output']>;
51760
+ title?: Maybe<Scalars['String']['output']>;
51761
+ type?: Maybe<HelpObjectStoreArticleContentType>;
51762
+ };
51750
51763
  export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
51764
+ export declare enum HelpObjectStoreArticleSearchExpandType {
51765
+ Ancestors = "ANCESTORS",
51766
+ ViewCount = "VIEW_COUNT"
51767
+ }
51751
51768
  export declare type HelpObjectStoreArticleSearchResponse = HelpObjectStoreArticleSearchResults | HelpObjectStoreSearchError;
51752
51769
  export declare type HelpObjectStoreArticleSearchResult = {
51753
51770
  __typename?: 'HelpObjectStoreArticleSearchResult';
@@ -52027,6 +52044,8 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
52027
52044
  entityKey?: Maybe<Scalars['String']['output']>;
52028
52045
  };
52029
52046
  export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
52047
+ articleIds?: InputMaybe<Array<Scalars['String']['input']>>;
52048
+ expand?: InputMaybe<Array<HelpObjectStoreArticleSearchExpandType>>;
52030
52049
  orderBy?: InputMaybe<Scalars['String']['input']>;
52031
52050
  parentId?: InputMaybe<Scalars['Long']['input']>;
52032
52051
  query?: InputMaybe<Scalars['String']['input']>;
@@ -52035,6 +52054,7 @@ export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
52035
52054
  export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
52036
52055
  export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
52037
52056
  __typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
52057
+ ancestors?: Maybe<Array<HelpObjectStoreArticleRelative>>;
52038
52058
  body?: Maybe<Scalars['String']['output']>;
52039
52059
  contentType?: Maybe<HelpObjectStoreArticleContentType>;
52040
52060
  id: Scalars['ID']['output'];
@@ -79679,6 +79699,7 @@ export declare type Mutation = {
79679
79699
  polaris?: Maybe<PolarisMutationNamespace>;
79680
79700
  polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
79681
79701
  polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
79702
+ projects_edit?: Maybe<TownsquareProjectsEditPayload>;
79682
79703
  publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
79683
79704
  publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
79684
79705
  publishReleaseNote: ContentPlatformReleaseNote;
@@ -80959,6 +80980,9 @@ export declare type MutationPolarisAddReactionArgs = {
80959
80980
  export declare type MutationPolarisDeleteReactionArgs = {
80960
80981
  input: PolarisDeleteReactionInput;
80961
80982
  };
80983
+ export declare type MutationProjects_EditArgs = {
80984
+ input?: InputMaybe<TownsquareProjectsEditInput>;
80985
+ };
80962
80986
  export declare type MutationPublicLinkPagesAdminActionArgs = {
80963
80987
  action: PublicLinkAdminAction;
80964
80988
  pageIds: Array<Scalars['ID']['input']>;
@@ -94520,6 +94544,7 @@ export declare type TeamSort = {
94520
94544
  export declare enum TeamSortField {
94521
94545
  DisplayName = "DISPLAY_NAME",
94522
94546
  Id = "ID",
94547
+ IsVerified = "IS_VERIFIED",
94523
94548
  State = "STATE"
94524
94549
  }
94525
94550
  export declare enum TeamSortOrder {
@@ -95519,6 +95544,11 @@ export declare type TownsquareIcon = {
95519
95544
  id?: Maybe<Scalars['String']['output']>;
95520
95545
  shortName?: Maybe<Scalars['String']['output']>;
95521
95546
  };
95547
+ export declare type TownsquareIconInput = {
95548
+ color?: InputMaybe<Scalars['String']['input']>;
95549
+ id?: InputMaybe<Scalars['String']['input']>;
95550
+ shortName?: InputMaybe<Scalars['String']['input']>;
95551
+ };
95522
95552
  export declare type TownsquareIconUrIs = {
95523
95553
  __typename?: 'TownsquareIconURIs';
95524
95554
  roundedSquare?: Maybe<TownsquareThemeUrIs>;
@@ -95877,6 +95907,24 @@ export declare type TownsquareProjectUpdateEdge = {
95877
95907
  cursor: Scalars['String']['output'];
95878
95908
  node?: Maybe<TownsquareProjectUpdate>;
95879
95909
  };
95910
+ export declare type TownsquareProjectsEditInput = {
95911
+ archived?: InputMaybe<Scalars['Boolean']['input']>;
95912
+ icon?: InputMaybe<TownsquareIconInput>;
95913
+ id: Scalars['ID']['input'];
95914
+ name?: InputMaybe<Scalars['String']['input']>;
95915
+ owner?: InputMaybe<Scalars['ID']['input']>;
95916
+ };
95917
+ export declare type TownsquareProjectsEditMutationErrorExtension = MutationErrorExtension & {
95918
+ __typename?: 'TownsquareProjectsEditMutationErrorExtension';
95919
+ errorType?: Maybe<Scalars['String']['output']>;
95920
+ statusCode?: Maybe<Scalars['Int']['output']>;
95921
+ };
95922
+ export declare type TownsquareProjectsEditPayload = {
95923
+ __typename?: 'TownsquareProjectsEditPayload';
95924
+ errors?: Maybe<Array<MutationError>>;
95925
+ project?: Maybe<TownsquareProject>;
95926
+ success: Scalars['Boolean']['output'];
95927
+ };
95880
95928
  export declare type TownsquareQueryApi = {
95881
95929
  __typename?: 'TownsquareQueryApi';
95882
95930
  allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;