@forge/cli-shared 8.15.0 → 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,11 @@
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
+
3
9
  ## 8.15.0
4
10
 
5
11
  ### Minor 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 = {
@@ -28831,8 +28904,8 @@ export declare type CustomerServiceRequestEdge = {
28831
28904
  node?: Maybe<CustomerServiceRequest>;
28832
28905
  };
28833
28906
  export declare type CustomerServiceRequestFilterInput = {
28907
+ searchText?: InputMaybe<Scalars['String']['input']>;
28834
28908
  status?: InputMaybe<CustomerServiceStatusKey>;
28835
- summaryContains?: InputMaybe<Scalars['String']['input']>;
28836
28909
  };
28837
28910
  export declare type CustomerServiceRequestFormDataConnection = {
28838
28911
  __typename?: 'CustomerServiceRequestFormDataConnection';
@@ -88010,8 +88083,12 @@ export declare type InfluentsNotificationFeedEdge = {
88010
88083
  node: InfluentsNotificationHeadItem;
88011
88084
  };
88012
88085
  export declare type InfluentsNotificationFilter = {
88086
+ afterTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
88087
+ beforeTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
88013
88088
  categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
88014
88089
  eventTypeFilter?: InputMaybe<Scalars['String']['input']>;
88090
+ excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88091
+ includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88015
88092
  productFilter?: InputMaybe<Scalars['String']['input']>;
88016
88093
  readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
88017
88094
  workspaceId?: InputMaybe<Scalars['String']['input']>;
@@ -88083,6 +88160,8 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
88083
88160
  beforeInclusive?: InputMaybe<Scalars['String']['input']>;
88084
88161
  beforeInclusiveTimestamp?: InputMaybe<Scalars['String']['input']>;
88085
88162
  category?: InputMaybe<InfluentsNotificationCategory>;
88163
+ excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88164
+ includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
88086
88165
  product?: InputMaybe<Scalars['String']['input']>;
88087
88166
  workspaceId?: InputMaybe<Scalars['String']['input']>;
88088
88167
  };
@@ -99785,6 +99864,7 @@ export declare type JiraLinkedIssuesInput = {
99785
99864
  export declare type JiraListSettingMigrationData = {
99786
99865
  columns?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
99787
99866
  groupBy?: InputMaybe<Scalars['String']['input']>;
99867
+ hideDone?: InputMaybe<Scalars['Boolean']['input']>;
99788
99868
  jql?: InputMaybe<Scalars['String']['input']>;
99789
99869
  projectId: Scalars['Long']['input'];
99790
99870
  };
@@ -112844,6 +112924,7 @@ export declare type JsmConversationClaimedConversationMessage = {
112844
112924
  __typename?: 'JsmConversationClaimedConversationMessage';
112845
112925
  author?: Maybe<Scalars['ID']['output']>;
112846
112926
  conversationId: Scalars['ID']['output'];
112927
+ expiresIn?: Maybe<Scalars['Long']['output']>;
112847
112928
  plainTextContent?: Maybe<Scalars['String']['output']>;
112848
112929
  };
112849
112930
  export declare type JsmConversationCloseConversationInput = {
@@ -123022,6 +123103,7 @@ export declare type Mutation = {
123022
123103
  avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
123023
123104
  avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
123024
123105
  avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
123106
+ avp_addFilterExpressions?: Maybe<AvpAddFilterExpressionsPayload>;
123025
123107
  avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
123026
123108
  avp_cloneChart?: Maybe<AvpCloneChartPayload>;
123027
123109
  avp_copyChart?: Maybe<AvpCopyChartPayload>;
@@ -123034,6 +123116,7 @@ export declare type Mutation = {
123034
123116
  avp_createVariable?: Maybe<AvpCreateVariablePayload>;
123035
123117
  avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
123036
123118
  avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
123119
+ avp_deleteFilterExpressions?: Maybe<AvpDeleteFilterExpressionsPayload>;
123037
123120
  avp_deleteVariable?: Maybe<AvpDeleteVariablePayload>;
123038
123121
  avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
123039
123122
  avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
@@ -123048,6 +123131,7 @@ export declare type Mutation = {
123048
123131
  avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
123049
123132
  avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
123050
123133
  avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
123134
+ avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
123051
123135
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
123052
123136
  blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
123053
123137
  blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
@@ -123704,7 +123788,6 @@ export declare type Mutation = {
123704
123788
  revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
123705
123789
  roadmaps?: Maybe<RoadmapsMutation>;
123706
123790
  runImport?: Maybe<RunImportPayload>;
123707
- sendMessage?: Maybe<AquaMessage>;
123708
123791
  setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
123709
123792
  setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
123710
123793
  setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
@@ -124425,6 +124508,9 @@ export declare type MutationAvp_AddDashboardElementArgs = {
124425
124508
  export declare type MutationAvp_AddDashboardRowArgs = {
124426
124509
  input: AvpAddDashboardRowInput;
124427
124510
  };
124511
+ export declare type MutationAvp_AddFilterExpressionsArgs = {
124512
+ input: AvpAddFilterExpressionsInput;
124513
+ };
124428
124514
  export declare type MutationAvp_ClearChartsInRowArgs = {
124429
124515
  input: AvpClearChartsInRowInput;
124430
124516
  };
@@ -124461,6 +124547,9 @@ export declare type MutationAvp_DeleteChartArgs = {
124461
124547
  export declare type MutationAvp_DeleteDashboardFilterArgs = {
124462
124548
  input: AvpDeleteDashboardFilterInput;
124463
124549
  };
124550
+ export declare type MutationAvp_DeleteFilterExpressionsArgs = {
124551
+ input: AvpDeleteFilterExpressionsInput;
124552
+ };
124464
124553
  export declare type MutationAvp_DeleteVariableArgs = {
124465
124554
  input: AvpDeleteVariableInput;
124466
124555
  };
@@ -124503,6 +124592,9 @@ export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
124503
124592
  export declare type MutationAvp_UpdateDashboardStatusArgs = {
124504
124593
  input: AvpUpdateDashboardStatusInput;
124505
124594
  };
124595
+ export declare type MutationAvp_UpdateFilterExpressionArgs = {
124596
+ input: AvpUpdateFilterExpressionInput;
124597
+ };
124506
124598
  export declare type MutationAvp_UpdateVariableArgs = {
124507
124599
  input: AvpUpdateVariableInput;
124508
124600
  };
@@ -126681,10 +126773,6 @@ export declare type MutationRevertToLegacyEditorArgs = {
126681
126773
  export declare type MutationRunImportArgs = {
126682
126774
  input: RunImportInput;
126683
126775
  };
126684
- export declare type MutationSendMessageArgs = {
126685
- conversationId: Scalars['String']['input'];
126686
- input: AquaSendMessageInput;
126687
- };
126688
126776
  export declare type MutationSetAppEnvironmentVariableArgs = {
126689
126777
  input: SetAppEnvironmentVariableInput;
126690
126778
  };
@@ -130304,6 +130392,7 @@ export declare type Query = {
130304
130392
  apps?: Maybe<AppConnection>;
130305
130393
  aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
130306
130394
  assetsDM_adapters?: Maybe<AssetsDmAdapters>;
130395
+ assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
130307
130396
  assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
130308
130397
  assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
130309
130398
  assetsDM_computedIssues?: Maybe<Array<AssetsDmComputedIssueItem>>;
@@ -130368,6 +130457,7 @@ export declare type Query = {
130368
130457
  avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
130369
130458
  avp_getDashboard?: Maybe<AvpDashboard>;
130370
130459
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
130460
+ avp_getFilterExpression?: Maybe<AvpFilterExpression>;
130371
130461
  avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
130372
130462
  avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
130373
130463
  bitbucket?: Maybe<BitbucketQuery>;
@@ -131848,6 +131938,10 @@ export declare type QueryAssetsDm_AdaptersArgs = {
131848
131938
  cloudId: Scalars['ID']['input'];
131849
131939
  workspaceId: Scalars['ID']['input'];
131850
131940
  };
131941
+ export declare type QueryAssetsDm_AllCleansingRulesArgs = {
131942
+ cloudId: Scalars['ID']['input'];
131943
+ workspaceId: Scalars['ID']['input'];
131944
+ };
131851
131945
  export declare type QueryAssetsDm_AttributePrioritiesListArgs = {
131852
131946
  cloudId: Scalars['ID']['input'];
131853
131947
  search?: InputMaybe<AssetsDmAttributePrioritySearch>;
@@ -132201,6 +132295,9 @@ export declare type QueryAvp_GetDashboardArgs = {
132201
132295
  export declare type QueryAvp_GetDashboardTemplatesArgs = {
132202
132296
  input: AvpGetDashboardTemplatesInput;
132203
132297
  };
132298
+ export declare type QueryAvp_GetFilterExpressionArgs = {
132299
+ dashboardAri: Scalars['ID']['input'];
132300
+ };
132204
132301
  export declare type QueryAvpanalytics_GetmodeldataArgs = {
132205
132302
  input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
132206
132303
  };
@@ -161728,7 +161825,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
161728
161825
  };
161729
161826
  export declare type Subscription = {
161730
161827
  __typename?: 'Subscription';
161731
- aqua?: Maybe<AquaLiveChatSubscription>;
161732
161828
  bitbucket?: Maybe<BitbucketSubscription>;
161733
161829
  blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
161734
161830
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;