@forge/cli-shared 8.15.0-next.5 → 8.15.1-next.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,29 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.15.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 2719ab7: Add image tag filtering for container repository listing
8
+
9
+ ## 8.15.0
10
+
11
+ ### Minor Changes
12
+
13
+ - e8cce7f: add transformErrorMessage for preserving error attributes
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [6b7a4ef]
18
+ - Updated dependencies [dfa2aa6]
19
+ - Updated dependencies [ea28254]
20
+ - Updated dependencies [e21f32f]
21
+ - Updated dependencies [545ecc1]
22
+ - Updated dependencies [eadb4a6]
23
+ - Updated dependencies [8db2311]
24
+ - Updated dependencies [9418d29]
25
+ - @forge/manifest@12.0.0
26
+
3
27
  ## 8.15.0-next.5
4
28
 
5
29
  ### Patch Changes
@@ -158,6 +158,18 @@ export declare type AvpAddDashboardRowPayload = Payload & {
158
158
  errors?: Maybe<Array<MutationError>>;
159
159
  success: Scalars['Boolean']['output'];
160
160
  };
161
+ export declare type AvpAddFilterExpressionsInput = {
162
+ dashboardAri: Scalars['ID']['input'];
163
+ expressions: Array<AvpFilterExpressionInput>;
164
+ parentGroupId?: InputMaybe<Scalars['ID']['input']>;
165
+ };
166
+ export declare type AvpAddFilterExpressionsPayload = Payload & {
167
+ __typename?: 'AVPAddFilterExpressionsPayload';
168
+ errors?: Maybe<Array<MutationError>>;
169
+ expressionIds?: Maybe<Array<Scalars['ID']['output']>>;
170
+ filterExpression?: Maybe<AvpFilterExpression>;
171
+ success: Scalars['Boolean']['output'];
172
+ };
161
173
  export declare type AvpAnalyticsDimension = {
162
174
  dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
163
175
  name?: InputMaybe<Scalars['String']['input']>;
@@ -699,6 +711,16 @@ export declare type AvpDeleteDashboardFilterPayload = Payload & {
699
711
  errors?: Maybe<Array<MutationError>>;
700
712
  success: Scalars['Boolean']['output'];
701
713
  };
714
+ export declare type AvpDeleteFilterExpressionsInput = {
715
+ dashboardAri: Scalars['ID']['input'];
716
+ expressionIds: Array<Scalars['ID']['input']>;
717
+ };
718
+ export declare type AvpDeleteFilterExpressionsPayload = Payload & {
719
+ __typename?: 'AVPDeleteFilterExpressionsPayload';
720
+ errors?: Maybe<Array<MutationError>>;
721
+ filterExpression?: Maybe<AvpFilterExpression>;
722
+ success: Scalars['Boolean']['output'];
723
+ };
702
724
  export declare type AvpDeleteVariableInput = {
703
725
  dashboardAri: Scalars['ID']['input'];
704
726
  name: Scalars['String']['input'];
@@ -749,6 +771,36 @@ export declare type AvpFilterEnvVarInput = {
749
771
  metadata?: InputMaybe<Scalars['String']['input']>;
750
772
  name?: InputMaybe<Scalars['String']['input']>;
751
773
  };
774
+ export declare type AvpFilterExpression = AvpFilterGroup | AvpPlatformFilter;
775
+ export declare type AvpFilterExpressionInput = {
776
+ filter?: InputMaybe<AvpPlatformFilterInput>;
777
+ group?: InputMaybe<AvpFilterGroupInput>;
778
+ };
779
+ export declare type AvpFilterExpressionUpdateInput = {
780
+ filter?: InputMaybe<AvpPlatformFilterUpdateInput>;
781
+ group?: InputMaybe<AvpFilterGroupUpdateInput>;
782
+ };
783
+ export declare type AvpFilterGroup = {
784
+ __typename?: 'AVPFilterGroup';
785
+ groups: Array<AvpFilterExpression>;
786
+ id: Scalars['ID']['output'];
787
+ metadata?: Maybe<Scalars['String']['output']>;
788
+ operator: AvpFilterOperator;
789
+ };
790
+ export declare type AvpFilterGroupInput = {
791
+ groups: Array<AvpFilterExpressionInput>;
792
+ metadata?: InputMaybe<Scalars['String']['input']>;
793
+ operator: AvpFilterOperator;
794
+ };
795
+ export declare type AvpFilterGroupUpdateInput = {
796
+ groups?: InputMaybe<Array<AvpFilterExpressionInput>>;
797
+ metadata?: InputMaybe<Scalars['String']['input']>;
798
+ operator?: InputMaybe<AvpFilterOperator>;
799
+ };
800
+ export declare enum AvpFilterOperator {
801
+ And = "AND",
802
+ Or = "OR"
803
+ }
752
804
  export declare type AvpGetDashboardTemplatesInput = {
753
805
  cloudId: Scalars['ID']['input'];
754
806
  productKey?: InputMaybe<Scalars['String']['input']>;
@@ -907,6 +959,45 @@ export declare type AvpPermissionsUpdateDashboardUserAccessPayload = {
907
959
  success: Scalars['Boolean']['output'];
908
960
  updatedUsers?: Maybe<Array<AvpPermissionsDashboardUserAccessResult>>;
909
961
  };
962
+ export declare type AvpPlatformDimension = {
963
+ __typename?: 'AVPPlatformDimension';
964
+ datasourceLocator: AvpDatasourceLocator;
965
+ name: Scalars['String']['output'];
966
+ product: Scalars['String']['output'];
967
+ semanticModel: Scalars['String']['output'];
968
+ };
969
+ export declare type AvpPlatformDimensionInput = {
970
+ datasourceLocator: AvpDatasourceLocatorInput;
971
+ name: Scalars['String']['input'];
972
+ product: Scalars['String']['input'];
973
+ semanticModel: Scalars['String']['input'];
974
+ };
975
+ export declare type AvpPlatformFilter = {
976
+ __typename?: 'AVPPlatformFilter';
977
+ comparison: Scalars['String']['output'];
978
+ defaultValues: Array<Scalars['String']['output']>;
979
+ dimensions: Array<AvpPlatformDimension>;
980
+ id: Scalars['ID']['output'];
981
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
982
+ label?: Maybe<Scalars['String']['output']>;
983
+ metadata?: Maybe<Scalars['String']['output']>;
984
+ };
985
+ export declare type AvpPlatformFilterInput = {
986
+ comparison: Scalars['String']['input'];
987
+ defaultValues: Array<Scalars['String']['input']>;
988
+ dimensions: Array<AvpPlatformDimensionInput>;
989
+ isHidden?: InputMaybe<Scalars['Boolean']['input']>;
990
+ label?: InputMaybe<Scalars['String']['input']>;
991
+ metadata?: InputMaybe<Scalars['String']['input']>;
992
+ };
993
+ export declare type AvpPlatformFilterUpdateInput = {
994
+ comparison?: InputMaybe<Scalars['String']['input']>;
995
+ defaultValues?: InputMaybe<Array<Scalars['String']['input']>>;
996
+ dimensions?: InputMaybe<Array<AvpPlatformDimensionInput>>;
997
+ isHidden?: InputMaybe<Scalars['Boolean']['input']>;
998
+ label?: InputMaybe<Scalars['String']['input']>;
999
+ metadata?: InputMaybe<Scalars['String']['input']>;
1000
+ };
910
1001
  export declare type AvpProductWorkspaceMapEntry = {
911
1002
  product: Scalars['String']['input'];
912
1003
  workspaceId: Scalars['ID']['input'];
@@ -1022,6 +1113,17 @@ export declare type AvpUpdateDashboardStatusPayload = Payload & {
1022
1113
  errors?: Maybe<Array<MutationError>>;
1023
1114
  success: Scalars['Boolean']['output'];
1024
1115
  };
1116
+ export declare type AvpUpdateFilterExpressionInput = {
1117
+ dashboardAri: Scalars['ID']['input'];
1118
+ expression: AvpFilterExpressionUpdateInput;
1119
+ expressionId: Scalars['ID']['input'];
1120
+ };
1121
+ export declare type AvpUpdateFilterExpressionPayload = Payload & {
1122
+ __typename?: 'AVPUpdateFilterExpressionPayload';
1123
+ errors?: Maybe<Array<MutationError>>;
1124
+ filterExpression?: Maybe<AvpFilterExpression>;
1125
+ success: Scalars['Boolean']['output'];
1126
+ };
1025
1127
  export declare type AvpUpdateVariableInput = {
1026
1128
  dashboardAri: Scalars['ID']['input'];
1027
1129
  envVar: AvpVariableEnvVarInput;
@@ -5719,32 +5821,6 @@ export declare type AquaIssueContext = {
5719
5821
  issue?: Maybe<JiraIssue>;
5720
5822
  issueARI?: Maybe<Scalars['ID']['output']>;
5721
5823
  };
5722
- export declare type AquaLiveChatSubscription = {
5723
- __typename?: 'AquaLiveChatSubscription';
5724
- updateConversation?: Maybe<AquaLiveChatSubscriptionResponse>;
5725
- };
5726
- export declare type AquaLiveChatSubscriptionUpdateConversationArgs = {
5727
- conversationId: Scalars['ID']['input'];
5728
- };
5729
- export declare type AquaLiveChatSubscriptionResponse = {
5730
- __typename?: 'AquaLiveChatSubscriptionResponse';
5731
- result?: Maybe<Scalars['String']['output']>;
5732
- };
5733
- export declare type AquaMessage = {
5734
- __typename?: 'AquaMessage';
5735
- content: Scalars['String']['output'];
5736
- conversationId: Scalars['String']['output'];
5737
- id: Scalars['String']['output'];
5738
- messageType: AquaMessageType;
5739
- senderId: Scalars['String']['output'];
5740
- sentAt: Scalars['String']['output'];
5741
- };
5742
- export declare enum AquaMessageType {
5743
- File = "FILE",
5744
- Image = "IMAGE",
5745
- System = "SYSTEM",
5746
- Text = "TEXT"
5747
- }
5748
5824
  export declare type AquaNotificationDetails = {
5749
5825
  __typename?: 'AquaNotificationDetails';
5750
5826
  actionTaken?: Maybe<Scalars['String']['output']>;
@@ -5811,11 +5887,6 @@ export declare type AquaProjectContext = {
5811
5887
  __typename?: 'AquaProjectContext';
5812
5888
  id?: Maybe<Scalars['Long']['output']>;
5813
5889
  };
5814
- export declare type AquaSendMessageInput = {
5815
- content: Scalars['String']['input'];
5816
- messageType?: InputMaybe<AquaMessageType>;
5817
- senderId: Scalars['String']['input'];
5818
- };
5819
5890
  export declare type ArchiveFeature = {
5820
5891
  __typename?: 'ArchiveFeature';
5821
5892
  isEntitled: Scalars['Boolean']['output'];
@@ -8389,6 +8460,7 @@ export declare type AtlassianAccountUser = LocalizationContext & User & {
8389
8460
  };
8390
8461
  export declare type AtlassianAccountUserExtendedProfile = {
8391
8462
  __typename?: 'AtlassianAccountUserExtendedProfile';
8463
+ aboutMe?: Maybe<Scalars['String']['output']>;
8392
8464
  closedDate?: Maybe<Scalars['DateTime']['output']>;
8393
8465
  department?: Maybe<Scalars['String']['output']>;
8394
8466
  inactiveDate?: Maybe<Scalars['DateTime']['output']>;
@@ -8396,6 +8468,7 @@ export declare type AtlassianAccountUserExtendedProfile = {
8396
8468
  location?: Maybe<Scalars['String']['output']>;
8397
8469
  organization?: Maybe<Scalars['String']['output']>;
8398
8470
  phoneNumbers?: Maybe<Array<Maybe<AtlassianAccountUserPhoneNumber>>>;
8471
+ pronouns?: Maybe<Scalars['String']['output']>;
8399
8472
  teamType?: Maybe<Scalars['String']['output']>;
8400
8473
  };
8401
8474
  export declare type AtlassianAccountUserPhoneNumber = {
@@ -8738,6 +8811,10 @@ export declare type BlockServiceBlockIdentifierInput = {
8738
8811
  blockAri: Scalars['String']['input'];
8739
8812
  blockInstanceId?: InputMaybe<Scalars['String']['input']>;
8740
8813
  };
8814
+ export declare type BlockServiceBlockNodeInput = {
8815
+ blockAri: Scalars['String']['input'];
8816
+ blockInstanceId: Scalars['String']['input'];
8817
+ };
8741
8818
  export declare type BlockServiceBlockPayload = {
8742
8819
  __typename?: 'BlockServiceBlockPayload';
8743
8820
  blockAri: Scalars['String']['output'];
@@ -8780,11 +8857,36 @@ export declare type BlockServiceDocumentReferenceBlocksPayload = {
8780
8857
  blocks: Array<BlockServiceBlockPayload>;
8781
8858
  errors?: Maybe<Array<BlockServiceBlockErrorPayload>>;
8782
8859
  };
8860
+ export declare type BlockServiceGetReferencesPayload = {
8861
+ __typename?: 'BlockServiceGetReferencesPayload';
8862
+ errors: Array<BlockServiceReferenceError>;
8863
+ references: Array<BlockServiceReference>;
8864
+ };
8865
+ export declare type BlockServiceReference = {
8866
+ __typename?: 'BlockServiceReference';
8867
+ blockAri: Scalars['String']['output'];
8868
+ blockInstanceId: Scalars['String']['output'];
8869
+ createdAt: Scalars['String']['output'];
8870
+ createdBy: Scalars['String']['output'];
8871
+ documentAri: Scalars['String']['output'];
8872
+ };
8873
+ export declare type BlockServiceReferenceError = {
8874
+ __typename?: 'BlockServiceReferenceError';
8875
+ blockAri: Scalars['String']['output'];
8876
+ code: Scalars['String']['output'];
8877
+ documentAri: Scalars['String']['output'];
8878
+ reason: Scalars['String']['output'];
8879
+ };
8783
8880
  export declare type BlockServiceUpdateBlockInput = {
8784
8881
  blockAri: Scalars['String']['input'];
8785
8882
  content: Scalars['String']['input'];
8786
8883
  stepVersion?: InputMaybe<Scalars['Float']['input']>;
8787
8884
  };
8885
+ export declare type BlockServiceUpdateDocumentReferencesInput = {
8886
+ blocks: Array<BlockServiceBlockNodeInput>;
8887
+ documentAri: Scalars['String']['input'];
8888
+ noContent?: InputMaybe<Scalars['Boolean']['input']>;
8889
+ };
8788
8890
  export declare type BlockSmartLink = SmartLink & {
8789
8891
  __typename?: 'BlockSmartLink';
8790
8892
  title?: Maybe<Scalars['String']['output']>;
@@ -28802,8 +28904,8 @@ export declare type CustomerServiceRequestEdge = {
28802
28904
  node?: Maybe<CustomerServiceRequest>;
28803
28905
  };
28804
28906
  export declare type CustomerServiceRequestFilterInput = {
28907
+ searchText?: InputMaybe<Scalars['String']['input']>;
28805
28908
  status?: InputMaybe<CustomerServiceStatusKey>;
28806
- summaryContains?: InputMaybe<Scalars['String']['input']>;
28807
28909
  };
28808
28910
  export declare type CustomerServiceRequestFormDataConnection = {
28809
28911
  __typename?: 'CustomerServiceRequestFormDataConnection';
@@ -87981,8 +88083,12 @@ export declare type InfluentsNotificationFeedEdge = {
87981
88083
  node: InfluentsNotificationHeadItem;
87982
88084
  };
87983
88085
  export declare type InfluentsNotificationFilter = {
88086
+ afterTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
88087
+ beforeTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
87984
88088
  categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
87985
88089
  eventTypeFilter?: InputMaybe<Scalars['String']['input']>;
88090
+ excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88091
+ includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
87986
88092
  productFilter?: InputMaybe<Scalars['String']['input']>;
87987
88093
  readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
87988
88094
  workspaceId?: InputMaybe<Scalars['String']['input']>;
@@ -88054,6 +88160,8 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
88054
88160
  beforeInclusive?: InputMaybe<Scalars['String']['input']>;
88055
88161
  beforeInclusiveTimestamp?: InputMaybe<Scalars['String']['input']>;
88056
88162
  category?: InputMaybe<InfluentsNotificationCategory>;
88163
+ excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88164
+ includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88057
88165
  product?: InputMaybe<Scalars['String']['input']>;
88058
88166
  workspaceId?: InputMaybe<Scalars['String']['input']>;
88059
88167
  };
@@ -99756,6 +99864,7 @@ export declare type JiraLinkedIssuesInput = {
99756
99864
  export declare type JiraListSettingMigrationData = {
99757
99865
  columns?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
99758
99866
  groupBy?: InputMaybe<Scalars['String']['input']>;
99867
+ hideDone?: InputMaybe<Scalars['Boolean']['input']>;
99759
99868
  jql?: InputMaybe<Scalars['String']['input']>;
99760
99869
  projectId: Scalars['Long']['input'];
99761
99870
  };
@@ -112815,6 +112924,7 @@ export declare type JsmConversationClaimedConversationMessage = {
112815
112924
  __typename?: 'JsmConversationClaimedConversationMessage';
112816
112925
  author?: Maybe<Scalars['ID']['output']>;
112817
112926
  conversationId: Scalars['ID']['output'];
112927
+ expiresIn?: Maybe<Scalars['Long']['output']>;
112818
112928
  plainTextContent?: Maybe<Scalars['String']['output']>;
112819
112929
  };
112820
112930
  export declare type JsmConversationCloseConversationInput = {
@@ -122993,6 +123103,7 @@ export declare type Mutation = {
122993
123103
  avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
122994
123104
  avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
122995
123105
  avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
123106
+ avp_addFilterExpressions?: Maybe<AvpAddFilterExpressionsPayload>;
122996
123107
  avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
122997
123108
  avp_cloneChart?: Maybe<AvpCloneChartPayload>;
122998
123109
  avp_copyChart?: Maybe<AvpCopyChartPayload>;
@@ -123005,6 +123116,7 @@ export declare type Mutation = {
123005
123116
  avp_createVariable?: Maybe<AvpCreateVariablePayload>;
123006
123117
  avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
123007
123118
  avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
123119
+ avp_deleteFilterExpressions?: Maybe<AvpDeleteFilterExpressionsPayload>;
123008
123120
  avp_deleteVariable?: Maybe<AvpDeleteVariablePayload>;
123009
123121
  avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
123010
123122
  avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
@@ -123019,10 +123131,12 @@ export declare type Mutation = {
123019
123131
  avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
123020
123132
  avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
123021
123133
  avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
123134
+ avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
123022
123135
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
123023
123136
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
123024
123137
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
123025
123138
  blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
123139
+ blockService_updateDocumentReferences?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
123026
123140
  boardCardMove?: Maybe<MoveCardOutput>;
123027
123141
  bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
123028
123142
  bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
@@ -123674,7 +123788,6 @@ export declare type Mutation = {
123674
123788
  revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
123675
123789
  roadmaps?: Maybe<RoadmapsMutation>;
123676
123790
  runImport?: Maybe<RunImportPayload>;
123677
- sendMessage?: Maybe<AquaMessage>;
123678
123791
  setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
123679
123792
  setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
123680
123793
  setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
@@ -124395,6 +124508,9 @@ export declare type MutationAvp_AddDashboardElementArgs = {
124395
124508
  export declare type MutationAvp_AddDashboardRowArgs = {
124396
124509
  input: AvpAddDashboardRowInput;
124397
124510
  };
124511
+ export declare type MutationAvp_AddFilterExpressionsArgs = {
124512
+ input: AvpAddFilterExpressionsInput;
124513
+ };
124398
124514
  export declare type MutationAvp_ClearChartsInRowArgs = {
124399
124515
  input: AvpClearChartsInRowInput;
124400
124516
  };
@@ -124431,6 +124547,9 @@ export declare type MutationAvp_DeleteChartArgs = {
124431
124547
  export declare type MutationAvp_DeleteDashboardFilterArgs = {
124432
124548
  input: AvpDeleteDashboardFilterInput;
124433
124549
  };
124550
+ export declare type MutationAvp_DeleteFilterExpressionsArgs = {
124551
+ input: AvpDeleteFilterExpressionsInput;
124552
+ };
124434
124553
  export declare type MutationAvp_DeleteVariableArgs = {
124435
124554
  input: AvpDeleteVariableInput;
124436
124555
  };
@@ -124473,6 +124592,9 @@ export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
124473
124592
  export declare type MutationAvp_UpdateDashboardStatusArgs = {
124474
124593
  input: AvpUpdateDashboardStatusInput;
124475
124594
  };
124595
+ export declare type MutationAvp_UpdateFilterExpressionArgs = {
124596
+ input: AvpUpdateFilterExpressionInput;
124597
+ };
124476
124598
  export declare type MutationAvp_UpdateVariableArgs = {
124477
124599
  input: AvpUpdateVariableInput;
124478
124600
  };
@@ -124485,6 +124607,9 @@ export declare type MutationBlockService_DeleteBlockArgs = {
124485
124607
  export declare type MutationBlockService_UpdateBlockArgs = {
124486
124608
  input: BlockServiceUpdateBlockInput;
124487
124609
  };
124610
+ export declare type MutationBlockService_UpdateDocumentReferencesArgs = {
124611
+ input: BlockServiceUpdateDocumentReferencesInput;
124612
+ };
124488
124613
  export declare type MutationBoardCardMoveArgs = {
124489
124614
  input?: InputMaybe<BoardCardMoveInput>;
124490
124615
  };
@@ -126648,10 +126773,6 @@ export declare type MutationRevertToLegacyEditorArgs = {
126648
126773
  export declare type MutationRunImportArgs = {
126649
126774
  input: RunImportInput;
126650
126775
  };
126651
- export declare type MutationSendMessageArgs = {
126652
- conversationId: Scalars['String']['input'];
126653
- input: AquaSendMessageInput;
126654
- };
126655
126776
  export declare type MutationSetAppEnvironmentVariableArgs = {
126656
126777
  input: SetAppEnvironmentVariableInput;
126657
126778
  };
@@ -130271,6 +130392,7 @@ export declare type Query = {
130271
130392
  apps?: Maybe<AppConnection>;
130272
130393
  aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
130273
130394
  assetsDM_adapters?: Maybe<AssetsDmAdapters>;
130395
+ assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
130274
130396
  assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
130275
130397
  assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
130276
130398
  assetsDM_computedIssues?: Maybe<Array<AssetsDmComputedIssueItem>>;
@@ -130335,6 +130457,7 @@ export declare type Query = {
130335
130457
  avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
130336
130458
  avp_getDashboard?: Maybe<AvpDashboard>;
130337
130459
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
130460
+ avp_getFilterExpression?: Maybe<AvpFilterExpression>;
130338
130461
  avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
130339
130462
  avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
130340
130463
  bitbucket?: Maybe<BitbucketQuery>;
@@ -130342,6 +130465,7 @@ export declare type Query = {
130342
130465
  blockService_batchRetrieveBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
130343
130466
  blockService_getBlock?: Maybe<BlockServiceBlockPayload>;
130344
130467
  blockService_getDocumentReferenceBlocks?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
130468
+ blockService_getReferences?: Maybe<BlockServiceGetReferencesPayload>;
130345
130469
  blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
130346
130470
  boardScope?: Maybe<BoardScope>;
130347
130471
  buildsByApp?: Maybe<BuildConnection>;
@@ -131814,6 +131938,10 @@ export declare type QueryAssetsDm_AdaptersArgs = {
131814
131938
  cloudId: Scalars['ID']['input'];
131815
131939
  workspaceId: Scalars['ID']['input'];
131816
131940
  };
131941
+ export declare type QueryAssetsDm_AllCleansingRulesArgs = {
131942
+ cloudId: Scalars['ID']['input'];
131943
+ workspaceId: Scalars['ID']['input'];
131944
+ };
131817
131945
  export declare type QueryAssetsDm_AttributePrioritiesListArgs = {
131818
131946
  cloudId: Scalars['ID']['input'];
131819
131947
  search?: InputMaybe<AssetsDmAttributePrioritySearch>;
@@ -132167,6 +132295,9 @@ export declare type QueryAvp_GetDashboardArgs = {
132167
132295
  export declare type QueryAvp_GetDashboardTemplatesArgs = {
132168
132296
  input: AvpGetDashboardTemplatesInput;
132169
132297
  };
132298
+ export declare type QueryAvp_GetFilterExpressionArgs = {
132299
+ dashboardAri: Scalars['ID']['input'];
132300
+ };
132170
132301
  export declare type QueryAvpanalytics_GetmodeldataArgs = {
132171
132302
  input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
132172
132303
  };
@@ -132190,6 +132321,9 @@ export declare type QueryBlockService_GetBlockArgs = {
132190
132321
  export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
132191
132322
  documentAri: Scalars['String']['input'];
132192
132323
  };
132324
+ export declare type QueryBlockService_GetReferencesArgs = {
132325
+ blockAri: Scalars['String']['input'];
132326
+ };
132193
132327
  export declare type QueryBlockedAccessRestrictionsArgs = {
132194
132328
  accessType: ResourceAccessType;
132195
132329
  contentId: Scalars['Long']['input'];
@@ -161691,7 +161825,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
161691
161825
  };
161692
161826
  export declare type Subscription = {
161693
161827
  __typename?: 'Subscription';
161694
- aqua?: Maybe<AquaLiveChatSubscription>;
161695
161828
  bitbucket?: Maybe<BitbucketSubscription>;
161696
161829
  blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
161697
161830
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
@@ -162404,6 +162537,10 @@ export declare type TeamCreateCustomFieldPayload = {
162404
162537
  options?: InputMaybe<Array<Scalars['String']['input']>>;
162405
162538
  type: TeamCustomFieldType;
162406
162539
  };
162540
+ export declare type TeamCreateCustomFieldValuePayload = {
162541
+ customFieldAri: Scalars['ID']['input'];
162542
+ value: Scalars['String']['input'];
162543
+ };
162407
162544
  export declare type TeamCreatePayload = Payload & {
162408
162545
  __typename?: 'TeamCreatePayload';
162409
162546
  errors?: Maybe<Array<MutationError>>;
@@ -162430,10 +162567,14 @@ export declare type TeamCustomFieldInfo = {
162430
162567
  name: Scalars['String']['output'];
162431
162568
  type: TeamCustomFieldType;
162432
162569
  };
162433
- export declare type TeamCustomFieldOption = {
162434
- __typename?: 'TeamCustomFieldOption';
162570
+ export declare type TeamCustomFieldKeyValues = {
162571
+ __typename?: 'TeamCustomFieldKeyValues';
162572
+ cardinality: TeamCustomFieldCardinality;
162573
+ description?: Maybe<Scalars['String']['output']>;
162435
162574
  id: Scalars['ID']['output'];
162436
- value: Scalars['String']['output'];
162575
+ name: Scalars['String']['output'];
162576
+ type: TeamCustomFieldType;
162577
+ values?: Maybe<Array<TeamCustomFieldValue>>;
162437
162578
  };
162438
162579
  export declare enum TeamCustomFieldType {
162439
162580
  Number = "NUMBER",
@@ -162442,6 +162583,11 @@ export declare enum TeamCustomFieldType {
162442
162583
  Team = "TEAM",
162443
162584
  User = "USER"
162444
162585
  }
162586
+ export declare type TeamCustomFieldValue = {
162587
+ __typename?: 'TeamCustomFieldValue';
162588
+ id: Scalars['ID']['output'];
162589
+ value: Scalars['String']['output'];
162590
+ };
162445
162591
  export declare type TeamDeletePayload = Payload & {
162446
162592
  __typename?: 'TeamDeletePayload';
162447
162593
  errors?: Maybe<Array<MutationError>>;
@@ -162458,7 +162604,7 @@ export declare type TeamDetailedCustomFieldInfo = {
162458
162604
  description?: Maybe<Scalars['String']['output']>;
162459
162605
  id: Scalars['ID']['output'];
162460
162606
  name: Scalars['String']['output'];
162461
- options?: Maybe<Array<TeamCustomFieldOption>>;
162607
+ options?: Maybe<Array<TeamCustomFieldValue>>;
162462
162608
  type: TeamCustomFieldType;
162463
162609
  };
162464
162610
  export declare type TeamHierarchy = {
@@ -162542,6 +162688,7 @@ export declare type TeamMutation = {
162542
162688
  assignTeamToType?: Maybe<TeamV2>;
162543
162689
  bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
162544
162690
  createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
162691
+ createCustomFieldValue?: Maybe<TeamCustomFieldValue>;
162545
162692
  createTeam?: Maybe<TeamCreatePayload>;
162546
162693
  createTeamType?: Maybe<TeamType>;
162547
162694
  deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
@@ -162578,6 +162725,9 @@ export declare type TeamMutationCreateCustomFieldArgs = {
162578
162725
  customFieldData: TeamCreateCustomFieldPayload;
162579
162726
  scopeId: Scalars['ID']['input'];
162580
162727
  };
162728
+ export declare type TeamMutationCreateCustomFieldValueArgs = {
162729
+ customFieldValueData: TeamCreateCustomFieldValuePayload;
162730
+ };
162581
162731
  export declare type TeamMutationCreateTeamArgs = {
162582
162732
  input: TeamCreateTeamInput;
162583
162733
  };
@@ -162660,6 +162810,7 @@ export declare type TeamQuery = {
162660
162810
  __typename?: 'TeamQuery';
162661
162811
  customField?: Maybe<TeamDetailedCustomFieldInfo>;
162662
162812
  customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
162813
+ customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
162663
162814
  notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
162664
162815
  roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
162665
162816
  team?: Maybe<Team>;
@@ -162677,6 +162828,10 @@ export declare type TeamQueryCustomFieldArgs = {
162677
162828
  export declare type TeamQueryCustomFieldsWithinScopeArgs = {
162678
162829
  scopeId: Scalars['ID']['input'];
162679
162830
  };
162831
+ export declare type TeamQueryCustomFieldsWithinTeamArgs = {
162832
+ scopeId: Scalars['ID']['input'];
162833
+ teamId: Scalars['ID']['input'];
162834
+ };
162680
162835
  export declare type TeamQueryNotificationConfigurationsArgs = {
162681
162836
  ari: Scalars['ID']['input'];
162682
162837
  };