@forge/cli-shared 3.2.3-next.2 → 3.2.3-next.3
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
|
@@ -5663,6 +5663,7 @@ export declare type DevOps = {
|
|
|
5663
5663
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5664
5664
|
pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
|
|
5665
5665
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5666
|
+
dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
|
|
5666
5667
|
ariGraph?: Maybe<AriGraph>;
|
|
5667
5668
|
};
|
|
5668
5669
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
@@ -5677,6 +5678,10 @@ export declare type DevOpsPullRequestEntityDetailsArgs = {
|
|
|
5677
5678
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5678
5679
|
ids: Array<Scalars['ID']>;
|
|
5679
5680
|
};
|
|
5681
|
+
export declare type DevOpsDataDepotProvidersArgs = {
|
|
5682
|
+
id: Scalars['ID'];
|
|
5683
|
+
providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
|
|
5684
|
+
};
|
|
5680
5685
|
export declare type DevOpsAvatar = {
|
|
5681
5686
|
__typename?: 'DevOpsAvatar';
|
|
5682
5687
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -5691,6 +5696,35 @@ export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
|
5691
5696
|
key: Scalars['String'];
|
|
5692
5697
|
value: Scalars['JSON'];
|
|
5693
5698
|
};
|
|
5699
|
+
export declare type DevOpsDataDepotProvider = {
|
|
5700
|
+
id: Scalars['ID'];
|
|
5701
|
+
name?: Maybe<Scalars['String']>;
|
|
5702
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5703
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5704
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5705
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5706
|
+
};
|
|
5707
|
+
export declare enum DevOpsDataDepotProviderType {
|
|
5708
|
+
DevInfo = "DEV_INFO",
|
|
5709
|
+
Build = "BUILD",
|
|
5710
|
+
Deployment = "DEPLOYMENT",
|
|
5711
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
5712
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
5713
|
+
Security = "SECURITY"
|
|
5714
|
+
}
|
|
5715
|
+
export declare type DevOpsDataDepotProviders = {
|
|
5716
|
+
__typename?: 'DevOpsDataDepotProviders';
|
|
5717
|
+
securityProviders?: Maybe<Array<DevOpsDataDepotSecurityProvider>>;
|
|
5718
|
+
};
|
|
5719
|
+
export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider & {
|
|
5720
|
+
__typename?: 'DevOpsDataDepotSecurityProvider';
|
|
5721
|
+
id: Scalars['ID'];
|
|
5722
|
+
name?: Maybe<Scalars['String']>;
|
|
5723
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5724
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5725
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5726
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5727
|
+
};
|
|
5694
5728
|
export declare type DevOpsEntities = {
|
|
5695
5729
|
__typename?: 'DevOpsEntities';
|
|
5696
5730
|
featureFlagEntities?: Maybe<DevOpsFeatureFlagConnection>;
|