@forge/cli-shared 6.5.5-next.0 → 6.5.5-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,5 +1,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.5.5-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8819889]
8
+ - @forge/i18n@0.0.3-next.1
9
+ - @forge/manifest@8.6.1-next.1
10
+
3
11
  ## 6.5.5-next.0
4
12
 
5
13
  ### Patch Changes
@@ -22660,6 +22660,29 @@ export declare type EcosystemDataClassificationsContext = {
22660
22660
  hasConstraints?: Maybe<Scalars['Boolean']['output']>;
22661
22661
  id: Scalars['ID']['output'];
22662
22662
  };
22663
+ export declare type EcosystemGlobalInstallationConfigInput = {
22664
+ cloudId: Scalars['ID']['input'];
22665
+ config: Array<EcosystemGlobalInstallationOverrideInput>;
22666
+ };
22667
+ export declare type EcosystemGlobalInstallationConfigResponse = Payload & {
22668
+ __typename?: 'EcosystemGlobalInstallationConfigResponse';
22669
+ config?: Maybe<Array<EcosystemGlobalInstallationOverride>>;
22670
+ errors?: Maybe<Array<MutationError>>;
22671
+ success: Scalars['Boolean']['output'];
22672
+ };
22673
+ export declare type EcosystemGlobalInstallationOverride = {
22674
+ __typename?: 'EcosystemGlobalInstallationOverride';
22675
+ key: EcosystemGlobalInstallationOverrideKeys;
22676
+ value: Scalars['Boolean']['output'];
22677
+ };
22678
+ export declare type EcosystemGlobalInstallationOverrideInput = {
22679
+ key: EcosystemGlobalInstallationOverrideKeys;
22680
+ value: Scalars['Boolean']['input'];
22681
+ };
22682
+ export declare enum EcosystemGlobalInstallationOverrideKeys {
22683
+ AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
22684
+ AllowLogsAccess = "ALLOW_LOGS_ACCESS"
22685
+ }
22663
22686
  export declare type EcosystemInstallationConfigInput = {
22664
22687
  overrides: Array<EcosystemInstallationOverrides>;
22665
22688
  };
@@ -22693,6 +22716,7 @@ export declare type EcosystemMutation = {
22693
22716
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
22694
22717
  updateAppOAuthClient: EcosystemUpdateAppOAuthClientResult;
22695
22718
  updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
22719
+ updateGlobalInstallationConfig?: Maybe<EcosystemGlobalInstallationConfigResponse>;
22696
22720
  updateInstallationDetails?: Maybe<UpdateInstallationDetailsResponse>;
22697
22721
  updateInstallationRemoteRegion?: Maybe<EcosystemUpdateInstallationRemoteRegionResponse>;
22698
22722
  updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
@@ -22745,6 +22769,9 @@ export declare type EcosystemMutationUpdateAppOAuthClientArgs = {
22745
22769
  export declare type EcosystemMutationUpdateAppOwnershipArgs = {
22746
22770
  input: UpdateAppOwnershipInput;
22747
22771
  };
22772
+ export declare type EcosystemMutationUpdateGlobalInstallationConfigArgs = {
22773
+ input: EcosystemGlobalInstallationConfigInput;
22774
+ };
22748
22775
  export declare type EcosystemMutationUpdateInstallationDetailsArgs = {
22749
22776
  input: EcosystemUpdateInstallationDetailsInput;
22750
22777
  };
@@ -22783,6 +22810,7 @@ export declare type EcosystemQuery = {
22783
22810
  forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
22784
22811
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
22785
22812
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
22813
+ globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
22786
22814
  userAccess?: Maybe<UserAccess>;
22787
22815
  userGrants?: Maybe<UserGrantConnection>;
22788
22816
  userInstallationRules?: Maybe<UserInstallationRules>;
@@ -22845,6 +22873,10 @@ export declare type EcosystemQueryForgeMetricsArgs = {
22845
22873
  export declare type EcosystemQueryFortifiedMetricsArgs = {
22846
22874
  appKey: Scalars['ID']['input'];
22847
22875
  };
22876
+ export declare type EcosystemQueryGlobalInstallationConfigArgs = {
22877
+ cloudId: Scalars['ID']['input'];
22878
+ filter?: InputMaybe<GlobalInstallationConfigFilter>;
22879
+ };
22848
22880
  export declare type EcosystemQueryUserAccessArgs = {
22849
22881
  contextId: Scalars['ID']['input'];
22850
22882
  definitionId: Scalars['ID']['input'];
@@ -25346,6 +25378,9 @@ export declare type GlobalCardCreateAdditionalFields = {
25346
25378
  rankCustomFieldId?: Maybe<Scalars['String']['output']>;
25347
25379
  sprintCustomFieldId?: Maybe<Scalars['String']['output']>;
25348
25380
  };
25381
+ export declare type GlobalInstallationConfigFilter = {
25382
+ keys: Array<EcosystemGlobalInstallationOverrideKeys>;
25383
+ };
25349
25384
  export declare type GlobalSpaceConfiguration = {
25350
25385
  __typename?: 'GlobalSpaceConfiguration';
25351
25386
  publicLinkDefaultSpaceStatus?: Maybe<PublicLinkDefaultSpaceStatus>;