@forge/cli-shared 3.2.0-next.6 → 3.2.0-next.7
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
|
@@ -516,6 +516,17 @@ export declare type AppInstallation = {
|
|
|
516
516
|
appEnvironment?: Maybe<AppEnvironment>;
|
|
517
517
|
license?: Maybe<AppInstallationLicense>;
|
|
518
518
|
};
|
|
519
|
+
export declare type AppInstallationByIndexConnection = {
|
|
520
|
+
__typename?: 'AppInstallationByIndexConnection';
|
|
521
|
+
edges?: Maybe<Array<Maybe<AppInstallationByIndexEdge>>>;
|
|
522
|
+
nodes?: Maybe<Array<Maybe<AppInstallation>>>;
|
|
523
|
+
pageInfo: AppInstallationPageInfo;
|
|
524
|
+
};
|
|
525
|
+
export declare type AppInstallationByIndexEdge = {
|
|
526
|
+
__typename?: 'AppInstallationByIndexEdge';
|
|
527
|
+
cursor: Scalars['String'];
|
|
528
|
+
node?: Maybe<AppInstallation>;
|
|
529
|
+
};
|
|
519
530
|
export declare type AppInstallationConnection = {
|
|
520
531
|
__typename?: 'AppInstallationConnection';
|
|
521
532
|
edges?: Maybe<Array<Maybe<AppInstallationEdge>>>;
|
|
@@ -571,6 +582,13 @@ export declare type AppInstallationLicense = {
|
|
|
571
582
|
ccpEntitlementId?: Maybe<Scalars['String']>;
|
|
572
583
|
ccpEntitlementSlug?: Maybe<Scalars['String']>;
|
|
573
584
|
};
|
|
585
|
+
export declare type AppInstallationPageInfo = {
|
|
586
|
+
__typename?: 'AppInstallationPageInfo';
|
|
587
|
+
hasNextPage: Scalars['Boolean'];
|
|
588
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
589
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
590
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
591
|
+
};
|
|
574
592
|
export declare type AppInstallationResponse = Payload & {
|
|
575
593
|
__typename?: 'AppInstallationResponse';
|
|
576
594
|
installationId?: Maybe<Scalars['ID']>;
|
|
@@ -628,6 +646,15 @@ export declare type AppInstallationUpgradeTask = AppInstallationTask & {
|
|
|
628
646
|
state: AppTaskState;
|
|
629
647
|
errors?: Maybe<Array<MutationError>>;
|
|
630
648
|
};
|
|
649
|
+
export declare type AppInstallationsByAppFilter = {
|
|
650
|
+
apps: InstallationsListFilterByApps;
|
|
651
|
+
appEnvironments?: Maybe<InstallationsListFilterByAppEnvironments>;
|
|
652
|
+
appInstallations?: Maybe<InstallationsListFilterByAppInstallations>;
|
|
653
|
+
};
|
|
654
|
+
export declare type AppInstallationsByContextFilter = {
|
|
655
|
+
appInstallations: InstallationsListFilterByAppInstallationsWithCompulsoryContexts;
|
|
656
|
+
apps?: Maybe<InstallationsListFilterByApps>;
|
|
657
|
+
};
|
|
631
658
|
export declare type AppInstallationsFilter = {
|
|
632
659
|
appId: Scalars['ID'];
|
|
633
660
|
environmentType?: Maybe<AppEnvironmentType>;
|
|
@@ -6652,6 +6679,8 @@ export declare type EcosystemQuery = {
|
|
|
6652
6679
|
userGrants?: Maybe<UserGrantConnection>;
|
|
6653
6680
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
6654
6681
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
6682
|
+
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
6683
|
+
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
6655
6684
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
6656
6685
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
6657
6686
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
@@ -6668,6 +6697,20 @@ export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
|
6668
6697
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
6669
6698
|
cloudId: Scalars['ID'];
|
|
6670
6699
|
};
|
|
6700
|
+
export declare type EcosystemQueryAppInstallationsByContextArgs = {
|
|
6701
|
+
filter: AppInstallationsByContextFilter;
|
|
6702
|
+
first?: Maybe<Scalars['Int']>;
|
|
6703
|
+
last?: Maybe<Scalars['Int']>;
|
|
6704
|
+
before?: Maybe<Scalars['String']>;
|
|
6705
|
+
after?: Maybe<Scalars['String']>;
|
|
6706
|
+
};
|
|
6707
|
+
export declare type EcosystemQueryAppInstallationsByAppArgs = {
|
|
6708
|
+
filter: AppInstallationsByAppFilter;
|
|
6709
|
+
first?: Maybe<Scalars['Int']>;
|
|
6710
|
+
last?: Maybe<Scalars['Int']>;
|
|
6711
|
+
before?: Maybe<Scalars['String']>;
|
|
6712
|
+
after?: Maybe<Scalars['String']>;
|
|
6713
|
+
};
|
|
6671
6714
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
6672
6715
|
appKey: Scalars['ID'];
|
|
6673
6716
|
};
|
|
@@ -7484,6 +7527,20 @@ export declare type InstallationContextWithLogAccess = {
|
|
|
7484
7527
|
installationContext: Scalars['ID'];
|
|
7485
7528
|
tenantContext?: Maybe<TenantContext>;
|
|
7486
7529
|
};
|
|
7530
|
+
export declare type InstallationsListFilterByAppEnvironments = {
|
|
7531
|
+
types: Array<AppEnvironmentType>;
|
|
7532
|
+
};
|
|
7533
|
+
export declare type InstallationsListFilterByAppInstallations = {
|
|
7534
|
+
ids?: Maybe<Array<Scalars['ID']>>;
|
|
7535
|
+
contexts?: Maybe<Array<Scalars['ID']>>;
|
|
7536
|
+
};
|
|
7537
|
+
export declare type InstallationsListFilterByAppInstallationsWithCompulsoryContexts = {
|
|
7538
|
+
contexts: Array<Scalars['ID']>;
|
|
7539
|
+
ids?: Maybe<Array<Scalars['ID']>>;
|
|
7540
|
+
};
|
|
7541
|
+
export declare type InstallationsListFilterByApps = {
|
|
7542
|
+
ids: Array<Scalars['ID']>;
|
|
7543
|
+
};
|
|
7487
7544
|
export declare type InvocationResponsePayload = {
|
|
7488
7545
|
__typename?: 'InvocationResponsePayload';
|
|
7489
7546
|
body: Scalars['JSON'];
|
|
@@ -16573,6 +16630,7 @@ export declare type RoadmapAddItemResponse = {
|
|
|
16573
16630
|
key: Scalars['String'];
|
|
16574
16631
|
item?: Maybe<RoadmapItem>;
|
|
16575
16632
|
matchesSource: Scalars['Boolean'];
|
|
16633
|
+
matchesJqlFilters: Scalars['Boolean'];
|
|
16576
16634
|
};
|
|
16577
16635
|
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
16578
16636
|
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
@@ -19903,6 +19961,7 @@ export declare type VirtualAgentIntentRuleProjection = Node & {
|
|
|
19903
19961
|
id: Scalars['ID'];
|
|
19904
19962
|
isEnabled: Scalars['Boolean'];
|
|
19905
19963
|
intentProjection?: Maybe<VirtualAgentIntentProjectionResult>;
|
|
19964
|
+
flowJsonRepresentation?: Maybe<Scalars['String']>;
|
|
19906
19965
|
};
|
|
19907
19966
|
export declare type VirtualAgentIntentRuleProjectionEdge = {
|
|
19908
19967
|
__typename?: 'VirtualAgentIntentRuleProjectionEdge';
|