@forge/cli-shared 8.15.2-next.3-experimental-112266b → 8.15.2-next.3-experimental-375a008

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,20 +1,15 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.15.2-next.3-experimental-112266b
4
-
5
- ### Minor Changes
6
-
7
- - 2a2584c: Upgrade glob to 13.0.1
3
+ ## 8.15.2-next.3-experimental-375a008
8
4
 
9
5
  ### Patch Changes
10
6
 
11
7
  - df6d793: Improve show containers data table view
12
8
  - 7af27e8: Updated wording for install list to match dev console
13
- - Updated dependencies [2a2584c]
14
9
  - Updated dependencies [beddb18]
15
10
  - Updated dependencies [561036a]
16
11
  - Updated dependencies [b248c8f]
17
- - @forge/manifest@12.1.1-next.1-experimental-112266b
12
+ - @forge/manifest@12.1.1-next.1-experimental-375a008
18
13
 
19
14
  ## 8.15.2-next.3
20
15
 
@@ -4795,6 +4795,7 @@ export declare type AgentWorkspaceAgent = {
4795
4795
  skills: Array<AgentWorkspaceUserSkill>;
4796
4796
  teamIds: Array<Scalars['ID']['output']>;
4797
4797
  teamNames: Array<Scalars['String']['output']>;
4798
+ user?: Maybe<User>;
4798
4799
  };
4799
4800
  export declare type AgentWorkspaceAgentAvailability = {
4800
4801
  __typename?: 'AgentWorkspaceAgentAvailability';
@@ -10056,6 +10057,9 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
10056
10057
  first?: InputMaybe<Scalars['Int']['input']>;
10057
10058
  permissionFilter?: InputMaybe<BitbucketPermission>;
10058
10059
  };
10060
+ export declare type BlockServiceBatchCreateBlocksInput = {
10061
+ blocks: Array<BlockServiceCreateBlockInput>;
10062
+ };
10059
10063
  export declare type BlockServiceBatchRetrieveBlocksInput = {
10060
10064
  blockAris: Array<Scalars['String']['input']>;
10061
10065
  blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
@@ -133229,6 +133233,7 @@ export declare type Mutation = {
133229
133233
  avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
133230
133234
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
133231
133235
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
133236
+ blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
133232
133237
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
133233
133238
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
133234
133239
  blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
@@ -134823,6 +134828,9 @@ export declare type MutationAvp_UpdateVariableArgs = {
134823
134828
  export declare type MutationAvpanalytics_CreateModelArgs = {
134824
134829
  input?: InputMaybe<AvpAnalyticsCreateModelInput>;
134825
134830
  };
134831
+ export declare type MutationBlockService_BatchCreateBlocksArgs = {
134832
+ input: BlockServiceBatchCreateBlocksInput;
134833
+ };
134826
134834
  export declare type MutationBlockService_CreateBlockArgs = {
134827
134835
  input: BlockServiceCreateBlockInput;
134828
134836
  };