@forge/cli-shared 9.4.0-next.12 → 9.4.0-next.13
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
|
@@ -14295,6 +14295,7 @@ export type AssetsDmObjectInfo = {
|
|
|
14295
14295
|
};
|
|
14296
14296
|
export type AssetsDmObjectSchema = {
|
|
14297
14297
|
__typename?: 'AssetsDMObjectSchema';
|
|
14298
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14298
14299
|
id: Scalars['ID']['output'];
|
|
14299
14300
|
name: Scalars['String']['output'];
|
|
14300
14301
|
objectCount: Scalars['Int']['output'];
|
|
@@ -14724,6 +14725,7 @@ export type AssetsDmSavedSearchesQueryArgs = {
|
|
|
14724
14725
|
};
|
|
14725
14726
|
export type AssetsDmSchemaObjectType = {
|
|
14726
14727
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
14728
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14727
14729
|
id: Scalars['ID']['output'];
|
|
14728
14730
|
name: Scalars['String']['output'];
|
|
14729
14731
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -56449,6 +56451,16 @@ export type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
|
56449
56451
|
errors?: Maybe<Array<MutationError>>;
|
|
56450
56452
|
success: Scalars['Boolean']['output'];
|
|
56451
56453
|
};
|
|
56454
|
+
export type GraphIntegrationResolveSkillCloneLinkInput = {
|
|
56455
|
+
cloneToken: Scalars['String']['input'];
|
|
56456
|
+
contextAri: Scalars['ID']['input'];
|
|
56457
|
+
};
|
|
56458
|
+
export type GraphIntegrationResolveSkillCloneLinkPayload = {
|
|
56459
|
+
__typename?: 'GraphIntegrationResolveSkillCloneLinkPayload';
|
|
56460
|
+
createdBy?: Maybe<User>;
|
|
56461
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56462
|
+
skills: Array<GraphIntegrationSharedSkillInfo>;
|
|
56463
|
+
};
|
|
56452
56464
|
export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput = {
|
|
56453
56465
|
capabilityType: GraphIntegrationTwgCapabilityType;
|
|
56454
56466
|
cloudId: Scalars['ID']['input'];
|
|
@@ -56460,6 +56472,13 @@ export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload =
|
|
|
56460
56472
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
56461
56473
|
success: Scalars['Boolean']['output'];
|
|
56462
56474
|
};
|
|
56475
|
+
export type GraphIntegrationSharedSkillInfo = {
|
|
56476
|
+
__typename?: 'GraphIntegrationSharedSkillInfo';
|
|
56477
|
+
hasConflict: Scalars['Boolean']['output'];
|
|
56478
|
+
id: Scalars['ID']['output'];
|
|
56479
|
+
name: Scalars['String']['output'];
|
|
56480
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
56481
|
+
};
|
|
56463
56482
|
export type GraphIntegrationSkill = {
|
|
56464
56483
|
__typename?: 'GraphIntegrationSkill';
|
|
56465
56484
|
description: Scalars['String']['output'];
|
|
@@ -154903,9 +154922,11 @@ export type JsmChannelsRequestTypesInput = {
|
|
|
154903
154922
|
export declare enum JsmChannelsResolutionPlanAction {
|
|
154904
154923
|
Approve = "APPROVE",
|
|
154905
154924
|
Pause = "PAUSE",
|
|
154925
|
+
Pin = "PIN",
|
|
154906
154926
|
Regenerate = "REGENERATE",
|
|
154907
154927
|
Reject = "REJECT",
|
|
154908
|
-
Resume = "RESUME"
|
|
154928
|
+
Resume = "RESUME",
|
|
154929
|
+
Unpin = "UNPIN"
|
|
154909
154930
|
}
|
|
154910
154931
|
export type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
154911
154932
|
__typename?: 'JsmChannelsResolutionPlanActionPayload';
|
|
@@ -188406,6 +188427,7 @@ export type Query = {
|
|
|
188406
188427
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
188407
188428
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
188408
188429
|
graphIntegration_rbacRecords?: Maybe<Array<GraphIntegrationRbacRecord>>;
|
|
188430
|
+
graphIntegration_resolveSkillCloneLink?: Maybe<GraphIntegrationResolveSkillCloneLinkPayload>;
|
|
188409
188431
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
188410
188432
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
188411
188433
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
@@ -196024,6 +196046,9 @@ export type QueryGraphIntegration_RbacRecordsArgs = {
|
|
|
196024
196046
|
resourceAri: Scalars['ID']['input'];
|
|
196025
196047
|
workspaceAri: Scalars['ID']['input'];
|
|
196026
196048
|
};
|
|
196049
|
+
export type QueryGraphIntegration_ResolveSkillCloneLinkArgs = {
|
|
196050
|
+
input: GraphIntegrationResolveSkillCloneLinkInput;
|
|
196051
|
+
};
|
|
196027
196052
|
export type QueryGraphIntegration_SkillArgs = {
|
|
196028
196053
|
contextAri: Scalars['ID']['input'];
|
|
196029
196054
|
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|