@forge/cli-shared 8.15.0-next.5 → 8.15.0

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,23 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e8cce7f: add transformErrorMessage for preserving error attributes
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [6b7a4ef]
12
+ - Updated dependencies [dfa2aa6]
13
+ - Updated dependencies [ea28254]
14
+ - Updated dependencies [e21f32f]
15
+ - Updated dependencies [545ecc1]
16
+ - Updated dependencies [eadb4a6]
17
+ - Updated dependencies [8db2311]
18
+ - Updated dependencies [9418d29]
19
+ - @forge/manifest@12.0.0
20
+
3
21
  ## 8.15.0-next.5
4
22
 
5
23
  ### Patch Changes
@@ -8738,6 +8738,10 @@ export declare type BlockServiceBlockIdentifierInput = {
8738
8738
  blockAri: Scalars['String']['input'];
8739
8739
  blockInstanceId?: InputMaybe<Scalars['String']['input']>;
8740
8740
  };
8741
+ export declare type BlockServiceBlockNodeInput = {
8742
+ blockAri: Scalars['String']['input'];
8743
+ blockInstanceId: Scalars['String']['input'];
8744
+ };
8741
8745
  export declare type BlockServiceBlockPayload = {
8742
8746
  __typename?: 'BlockServiceBlockPayload';
8743
8747
  blockAri: Scalars['String']['output'];
@@ -8780,11 +8784,36 @@ export declare type BlockServiceDocumentReferenceBlocksPayload = {
8780
8784
  blocks: Array<BlockServiceBlockPayload>;
8781
8785
  errors?: Maybe<Array<BlockServiceBlockErrorPayload>>;
8782
8786
  };
8787
+ export declare type BlockServiceGetReferencesPayload = {
8788
+ __typename?: 'BlockServiceGetReferencesPayload';
8789
+ errors: Array<BlockServiceReferenceError>;
8790
+ references: Array<BlockServiceReference>;
8791
+ };
8792
+ export declare type BlockServiceReference = {
8793
+ __typename?: 'BlockServiceReference';
8794
+ blockAri: Scalars['String']['output'];
8795
+ blockInstanceId: Scalars['String']['output'];
8796
+ createdAt: Scalars['String']['output'];
8797
+ createdBy: Scalars['String']['output'];
8798
+ documentAri: Scalars['String']['output'];
8799
+ };
8800
+ export declare type BlockServiceReferenceError = {
8801
+ __typename?: 'BlockServiceReferenceError';
8802
+ blockAri: Scalars['String']['output'];
8803
+ code: Scalars['String']['output'];
8804
+ documentAri: Scalars['String']['output'];
8805
+ reason: Scalars['String']['output'];
8806
+ };
8783
8807
  export declare type BlockServiceUpdateBlockInput = {
8784
8808
  blockAri: Scalars['String']['input'];
8785
8809
  content: Scalars['String']['input'];
8786
8810
  stepVersion?: InputMaybe<Scalars['Float']['input']>;
8787
8811
  };
8812
+ export declare type BlockServiceUpdateDocumentReferencesInput = {
8813
+ blocks: Array<BlockServiceBlockNodeInput>;
8814
+ documentAri: Scalars['String']['input'];
8815
+ noContent?: InputMaybe<Scalars['Boolean']['input']>;
8816
+ };
8788
8817
  export declare type BlockSmartLink = SmartLink & {
8789
8818
  __typename?: 'BlockSmartLink';
8790
8819
  title?: Maybe<Scalars['String']['output']>;
@@ -123023,6 +123052,7 @@ export declare type Mutation = {
123023
123052
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
123024
123053
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
123025
123054
  blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
123055
+ blockService_updateDocumentReferences?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
123026
123056
  boardCardMove?: Maybe<MoveCardOutput>;
123027
123057
  bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
123028
123058
  bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
@@ -124485,6 +124515,9 @@ export declare type MutationBlockService_DeleteBlockArgs = {
124485
124515
  export declare type MutationBlockService_UpdateBlockArgs = {
124486
124516
  input: BlockServiceUpdateBlockInput;
124487
124517
  };
124518
+ export declare type MutationBlockService_UpdateDocumentReferencesArgs = {
124519
+ input: BlockServiceUpdateDocumentReferencesInput;
124520
+ };
124488
124521
  export declare type MutationBoardCardMoveArgs = {
124489
124522
  input?: InputMaybe<BoardCardMoveInput>;
124490
124523
  };
@@ -130342,6 +130375,7 @@ export declare type Query = {
130342
130375
  blockService_batchRetrieveBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
130343
130376
  blockService_getBlock?: Maybe<BlockServiceBlockPayload>;
130344
130377
  blockService_getDocumentReferenceBlocks?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
130378
+ blockService_getReferences?: Maybe<BlockServiceGetReferencesPayload>;
130345
130379
  blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
130346
130380
  boardScope?: Maybe<BoardScope>;
130347
130381
  buildsByApp?: Maybe<BuildConnection>;
@@ -132190,6 +132224,9 @@ export declare type QueryBlockService_GetBlockArgs = {
132190
132224
  export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
132191
132225
  documentAri: Scalars['String']['input'];
132192
132226
  };
132227
+ export declare type QueryBlockService_GetReferencesArgs = {
132228
+ blockAri: Scalars['String']['input'];
132229
+ };
132193
132230
  export declare type QueryBlockedAccessRestrictionsArgs = {
132194
132231
  accessType: ResourceAccessType;
132195
132232
  contentId: Scalars['Long']['input'];
@@ -162404,6 +162441,10 @@ export declare type TeamCreateCustomFieldPayload = {
162404
162441
  options?: InputMaybe<Array<Scalars['String']['input']>>;
162405
162442
  type: TeamCustomFieldType;
162406
162443
  };
162444
+ export declare type TeamCreateCustomFieldValuePayload = {
162445
+ customFieldAri: Scalars['ID']['input'];
162446
+ value: Scalars['String']['input'];
162447
+ };
162407
162448
  export declare type TeamCreatePayload = Payload & {
162408
162449
  __typename?: 'TeamCreatePayload';
162409
162450
  errors?: Maybe<Array<MutationError>>;
@@ -162430,10 +162471,14 @@ export declare type TeamCustomFieldInfo = {
162430
162471
  name: Scalars['String']['output'];
162431
162472
  type: TeamCustomFieldType;
162432
162473
  };
162433
- export declare type TeamCustomFieldOption = {
162434
- __typename?: 'TeamCustomFieldOption';
162474
+ export declare type TeamCustomFieldKeyValues = {
162475
+ __typename?: 'TeamCustomFieldKeyValues';
162476
+ cardinality: TeamCustomFieldCardinality;
162477
+ description?: Maybe<Scalars['String']['output']>;
162435
162478
  id: Scalars['ID']['output'];
162436
- value: Scalars['String']['output'];
162479
+ name: Scalars['String']['output'];
162480
+ type: TeamCustomFieldType;
162481
+ values?: Maybe<Array<TeamCustomFieldValue>>;
162437
162482
  };
162438
162483
  export declare enum TeamCustomFieldType {
162439
162484
  Number = "NUMBER",
@@ -162442,6 +162487,11 @@ export declare enum TeamCustomFieldType {
162442
162487
  Team = "TEAM",
162443
162488
  User = "USER"
162444
162489
  }
162490
+ export declare type TeamCustomFieldValue = {
162491
+ __typename?: 'TeamCustomFieldValue';
162492
+ id: Scalars['ID']['output'];
162493
+ value: Scalars['String']['output'];
162494
+ };
162445
162495
  export declare type TeamDeletePayload = Payload & {
162446
162496
  __typename?: 'TeamDeletePayload';
162447
162497
  errors?: Maybe<Array<MutationError>>;
@@ -162458,7 +162508,7 @@ export declare type TeamDetailedCustomFieldInfo = {
162458
162508
  description?: Maybe<Scalars['String']['output']>;
162459
162509
  id: Scalars['ID']['output'];
162460
162510
  name: Scalars['String']['output'];
162461
- options?: Maybe<Array<TeamCustomFieldOption>>;
162511
+ options?: Maybe<Array<TeamCustomFieldValue>>;
162462
162512
  type: TeamCustomFieldType;
162463
162513
  };
162464
162514
  export declare type TeamHierarchy = {
@@ -162542,6 +162592,7 @@ export declare type TeamMutation = {
162542
162592
  assignTeamToType?: Maybe<TeamV2>;
162543
162593
  bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
162544
162594
  createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
162595
+ createCustomFieldValue?: Maybe<TeamCustomFieldValue>;
162545
162596
  createTeam?: Maybe<TeamCreatePayload>;
162546
162597
  createTeamType?: Maybe<TeamType>;
162547
162598
  deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
@@ -162578,6 +162629,9 @@ export declare type TeamMutationCreateCustomFieldArgs = {
162578
162629
  customFieldData: TeamCreateCustomFieldPayload;
162579
162630
  scopeId: Scalars['ID']['input'];
162580
162631
  };
162632
+ export declare type TeamMutationCreateCustomFieldValueArgs = {
162633
+ customFieldValueData: TeamCreateCustomFieldValuePayload;
162634
+ };
162581
162635
  export declare type TeamMutationCreateTeamArgs = {
162582
162636
  input: TeamCreateTeamInput;
162583
162637
  };
@@ -162660,6 +162714,7 @@ export declare type TeamQuery = {
162660
162714
  __typename?: 'TeamQuery';
162661
162715
  customField?: Maybe<TeamDetailedCustomFieldInfo>;
162662
162716
  customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
162717
+ customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
162663
162718
  notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
162664
162719
  roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
162665
162720
  team?: Maybe<Team>;
@@ -162677,6 +162732,10 @@ export declare type TeamQueryCustomFieldArgs = {
162677
162732
  export declare type TeamQueryCustomFieldsWithinScopeArgs = {
162678
162733
  scopeId: Scalars['ID']['input'];
162679
162734
  };
162735
+ export declare type TeamQueryCustomFieldsWithinTeamArgs = {
162736
+ scopeId: Scalars['ID']['input'];
162737
+ teamId: Scalars['ID']['input'];
162738
+ };
162680
162739
  export declare type TeamQueryNotificationConfigurationsArgs = {
162681
162740
  ari: Scalars['ID']['input'];
162682
162741
  };