@forge/cli-shared 8.7.2-next.1 → 8.7.2-next.1-experimental-2578ec1

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
+ ## 8.7.2-next.1-experimental-2578ec1
4
+
5
+ ### Patch Changes
6
+
7
+ - 90ee56f: Remove forge-cli-enable-atlas-product-support FF from type
8
+ - Updated dependencies [f5d3945]
9
+ - @forge/manifest@10.7.0-next.0-experimental-2578ec1
10
+
3
11
  ## 8.7.2-next.1
4
12
 
5
13
  ### Patch Changes
@@ -2629,6 +2629,11 @@ export declare type AgentStudioDeleteDatasetItemPayload = Payload & {
2629
2629
  errors?: Maybe<Array<MutationError>>;
2630
2630
  success: Scalars['Boolean']['output'];
2631
2631
  };
2632
+ export declare type AgentStudioDeleteDatasetPayload = Payload & {
2633
+ __typename?: 'AgentStudioDeleteDatasetPayload';
2634
+ errors?: Maybe<Array<MutationError>>;
2635
+ success: Scalars['Boolean']['output'];
2636
+ };
2632
2637
  export declare type AgentStudioDeleteScenarioPayload = Payload & {
2633
2638
  __typename?: 'AgentStudioDeleteScenarioPayload';
2634
2639
  errors?: Maybe<Array<MutationError>>;
@@ -70738,7 +70743,7 @@ export declare type JiraJqlAtlasProjectFieldValue = JiraJqlFieldValue & {
70738
70743
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
70739
70744
  isSelected?: Maybe<Scalars['Boolean']['output']>;
70740
70745
  jqlTerm: Scalars['String']['output'];
70741
- project: JiraAtlasProject;
70746
+ project?: Maybe<JiraAtlasProject>;
70742
70747
  };
70743
70748
  export declare enum JiraJqlAutocompleteType {
70744
70749
  Basic = "BASIC",
@@ -91052,10 +91057,12 @@ export declare type Mutation = {
91052
91057
  admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
91053
91058
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
91054
91059
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
91060
+ agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
91055
91061
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
91056
91062
  agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
91057
91063
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
91058
91064
  agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
91065
+ agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
91059
91066
  agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
91060
91067
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
91061
91068
  agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
@@ -91857,6 +91864,12 @@ export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
91857
91864
  cloudId: Scalars['ID']['input'];
91858
91865
  groupARIs: Array<Scalars['ID']['input']>;
91859
91866
  };
91867
+ export declare type MutationAgentStudio_CancelBatchEvaluationJobRunArgs = {
91868
+ cloudId: Scalars['String']['input'];
91869
+ jobRunId: Scalars['ID']['input'];
91870
+ productType: AgentStudioProductType;
91871
+ projectContainerAri: Scalars['ID']['input'];
91872
+ };
91860
91873
  export declare type MutationAgentStudio_CreateAgentArgs = {
91861
91874
  cloudId: Scalars['String']['input'];
91862
91875
  input: AgentStudioCreateAgentInput;
@@ -91874,6 +91887,12 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
91874
91887
  export declare type MutationAgentStudio_DeleteAgentArgs = {
91875
91888
  id: Scalars['ID']['input'];
91876
91889
  };
91890
+ export declare type MutationAgentStudio_DeleteDatasetArgs = {
91891
+ cloudId: Scalars['String']['input'];
91892
+ id: Scalars['ID']['input'];
91893
+ productType: AgentStudioProductType;
91894
+ projectContainerAri: Scalars['ID']['input'];
91895
+ };
91877
91896
  export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
91878
91897
  cloudId: Scalars['String']['input'];
91879
91898
  id: Scalars['ID']['input'];
@@ -126838,9 +126857,11 @@ export declare type TeamMutation = {
126838
126857
  __typename?: 'TeamMutation';
126839
126858
  addChild?: Maybe<TeamV2>;
126840
126859
  addParent?: Maybe<TeamV2>;
126860
+ createTeamType?: Maybe<TeamType>;
126841
126861
  removeChild?: Maybe<TeamV2>;
126842
126862
  removeParent?: Maybe<TeamV2>;
126843
126863
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
126864
+ updateType?: Maybe<TeamType>;
126844
126865
  };
126845
126866
  export declare type TeamMutationAddChildArgs = {
126846
126867
  childId: Scalars['ID']['input'];
@@ -126852,6 +126873,10 @@ export declare type TeamMutationAddParentArgs = {
126852
126873
  siteId: Scalars['ID']['input'];
126853
126874
  teamId: Scalars['ID']['input'];
126854
126875
  };
126876
+ export declare type TeamMutationCreateTeamTypeArgs = {
126877
+ scopeId: Scalars['ID']['input'];
126878
+ typeData: TeamTypeCreationPayload;
126879
+ };
126855
126880
  export declare type TeamMutationRemoveChildArgs = {
126856
126881
  childId: Scalars['ID']['input'];
126857
126882
  siteId: Scalars['ID']['input'];
@@ -126867,6 +126892,10 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
126867
126892
  principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
126868
126893
  role: TeamRole;
126869
126894
  };
126895
+ export declare type TeamMutationUpdateTypeArgs = {
126896
+ id: Scalars['ID']['input'];
126897
+ typeData: TeamTypeUpdatePayload;
126898
+ };
126870
126899
  export declare enum TeamPermission {
126871
126900
  FullRead = "FULL_READ",
126872
126901
  FullWrite = "FULL_WRITE",
@@ -126888,6 +126917,8 @@ export declare type TeamQuery = {
126888
126917
  teamSearch?: Maybe<TeamSearchResultConnection>;
126889
126918
  teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
126890
126919
  teamV2?: Maybe<TeamV2>;
126920
+ typeInformation?: Maybe<TeamType>;
126921
+ typesWithinScope?: Maybe<TeamTypeConnection>;
126891
126922
  };
126892
126923
  export declare type TeamQueryRoleAssignmentsArgs = {
126893
126924
  after?: InputMaybe<Scalars['String']['input']>;
@@ -126919,6 +126950,15 @@ export declare type TeamQueryTeamV2Args = {
126919
126950
  id: Scalars['ID']['input'];
126920
126951
  siteId: Scalars['String']['input'];
126921
126952
  };
126953
+ export declare type TeamQueryTypeInformationArgs = {
126954
+ id: Scalars['ID']['input'];
126955
+ scopeId: Scalars['ID']['input'];
126956
+ };
126957
+ export declare type TeamQueryTypesWithinScopeArgs = {
126958
+ after?: InputMaybe<Scalars['String']['input']>;
126959
+ first?: Scalars['Int']['input'];
126960
+ scopeId: Scalars['ID']['input'];
126961
+ };
126922
126962
  export declare enum TeamRole {
126923
126963
  TeamsAdmin = "TEAMS_ADMIN",
126924
126964
  TeamsObserver = "TEAMS_OBSERVER",
@@ -126995,6 +127035,39 @@ export declare enum TeamStateV2 {
126995
127035
  Active = "ACTIVE",
126996
127036
  Purged = "PURGED"
126997
127037
  }
127038
+ export declare type TeamType = {
127039
+ __typename?: 'TeamType';
127040
+ default?: Maybe<TeamTypeDefaultFor>;
127041
+ description?: Maybe<Scalars['String']['output']>;
127042
+ id: Scalars['ID']['output'];
127043
+ name: Scalars['String']['output'];
127044
+ teamScope: Scalars['ID']['output'];
127045
+ verified?: Maybe<Scalars['Boolean']['output']>;
127046
+ };
127047
+ export declare type TeamTypeConnection = {
127048
+ __typename?: 'TeamTypeConnection';
127049
+ edges?: Maybe<Array<TeamTypeEdge>>;
127050
+ nodes?: Maybe<Array<TeamType>>;
127051
+ pageInfo: PageInfo;
127052
+ };
127053
+ export declare type TeamTypeCreationPayload = {
127054
+ description?: InputMaybe<Scalars['String']['input']>;
127055
+ name: Scalars['String']['input'];
127056
+ };
127057
+ export declare enum TeamTypeDefaultFor {
127058
+ Admin = "ADMIN",
127059
+ UserManaged = "USER_MANAGED",
127060
+ Verified = "VERIFIED"
127061
+ }
127062
+ export declare type TeamTypeEdge = {
127063
+ __typename?: 'TeamTypeEdge';
127064
+ cursor: Scalars['String']['output'];
127065
+ node?: Maybe<TeamType>;
127066
+ };
127067
+ export declare type TeamTypeUpdatePayload = {
127068
+ description?: InputMaybe<Scalars['String']['input']>;
127069
+ name?: InputMaybe<Scalars['String']['input']>;
127070
+ };
126998
127071
  export declare type TeamUpdateRoleAssignmentsResponse = {
126999
127072
  __typename?: 'TeamUpdateRoleAssignmentsResponse';
127000
127073
  successfullyAddedPrincipals?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;