Skip to content
2 changes: 1 addition & 1 deletion packages/blocks/ai/src/lib/actions/askAi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const askAi = createAction({
required: true,
}),
additionalInput: Property.Array({
displayName: 'Additional input',
displayName: 'Additional Input',
description: 'Array of inputs to use for analysis or transformation',
required: false,
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { Property } from '@openops/blocks-framework';
export function annualSavingsProperty() {
return {
useAnnualSavings: Property.Checkbox({
displayName: 'Filter by annual savings',
displayName: 'Filter by Annual Savings',
required: false,
}),

annualSavingsProperty: Property.DynamicProperties({
displayName: 'Annual savings greater than',
displayName: 'Annual Savings Greater Than',
description:
'Only get recommendations where the annual savings are greater than.',
'Only get recommendations where the annual savings are greater than',
required: true,
refreshers: ['useAnnualSavings'],
props: async ({ useAnnualSavings }): Promise<{ [key: string]: any }> => {
Expand All @@ -20,9 +20,9 @@ export function annualSavingsProperty() {

return {
annualSavingsMin: Property.Number({
displayName: 'Annual savings greater than',
displayName: 'Annual Savings Greater Than',
description:
'Only get recommendations where the annual savings are greater than.',
'Only get recommendations where the annual savings are greater than',
required: true,
}),
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Property } from '@openops/blocks-framework';

export function categoryProperty() {
return Property.StaticMultiSelectDropdown({
displayName: 'Category id',
description: 'Get only recommendations from the selected category.',
displayName: 'Category Id',
description: 'Get only recommendations from the selected category',
required: false,
options: {
disabled: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { dateProperty, operatorProperty } from './property-helpers';

export function closedAndDoneRecommendationsProperty() {
return Property.DynamicProperties({
displayName: 'Date filters for closed and done recommendations',
description: 'Filter closed and done recommendations by date range.',
displayName: 'Date Filters for Closed and Done Recommendations',
description: 'Filter closed and done recommendations by date range',
required: true,
refreshers: ['statusFilter'],
props: async ({ statusFilter }): Promise<{ [key: string]: any }> => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { booleanProperty } from './property-helpers';

export function customStatusProperty() {
return Property.DynamicProperties({
displayName: 'Custom status properties',
displayName: 'Custom Status Properties',
description:
'User defined conditions as set in the "is open" and "user status" fields, with logical "and" between them.',
'User defined conditions as set in the "is open" and "user status" fields, with logical "and" between them',
required: true,
refreshers: ['statusFilter'],
props: async ({ statusFilter }): Promise<{ [key: string]: any }> => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function listFilterProperty(

eq: Property.Array({
displayName: `(${displayName}) Values`,
description: 'List of values ​​to be checked.',
description: 'List of values ​​to be checked',
required: true,
}),
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { dateProperty } from './property-helpers';

export function openedRecommendationsProperty() {
return Property.DynamicProperties({
displayName: 'Date filters for open recommendations',
description: 'Filter open recommendations by date range.',
displayName: 'Date Filters for Open Recommendations',
description: 'Filter open recommendations by date range',
required: true,
refreshers: [],
props: async (): Promise<{ [key: string]: any }> => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Property } from '@openops/blocks-framework';
export function statusProperty() {
return Property.StaticDropdown({
displayName: 'Status',
description: 'Define what status of recommendations should be displayed.',
description: 'Define what status of recommendations should be displayed',
options: {
options: statusFilters,
},
Expand Down
10 changes: 5 additions & 5 deletions packages/blocks/anodot/src/lib/api-filters/tags-property.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ export function tagsProperty(

tag: Property.LongText({
displayName: `(${propertyName}) Tag`,
description: '',
description: 'Tag name to filter by',
required: true,
}),

eq: Property.Array({
displayName: `(${propertyName}) Equal values`,
description: 'List of values ​​to be checked for equality.',
displayName: `(${propertyname}) Equal Values`,
description: 'List of values ​​to be checked for equality',
required: false,
}),

like: Property.Array({
displayName: `(${propertyName}) Like values`,
description: 'List of values ​​​​to check if they are like.',
displayName: `(${propertyname}) Like Values`,
description: 'List of values ​​​​to check if they are like',
required: false,
}),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import { Property } from '@openops/blocks-framework';
export function virtualTagsProperty() {
return {
useVirtualTag: Property.Checkbox({
displayName: 'Filter by virtual tags',
displayName: 'Filter by Virtual Tags',
required: false,
}),
virtualTag: Property.DynamicProperties({
displayName: 'Virtual tag filters',
description: 'Each virtual tag represents a collection of custom tags.',
displayName: 'Virtual Tag Filters',
description: 'Each virtual tag represents a collection of custom tags',
required: true,
refreshers: ['useVirtualTag'],
props: async ({ useVirtualTag }): Promise<{ [key: string]: any }> => {
Expand All @@ -18,20 +18,20 @@ export function virtualTagsProperty() {

return {
uuid: Property.LongText({
displayName: '(Virtual tag) uuid',
description: '',
displayName: '(Virtual Tag) UUID',
description: 'UUID of the virtual tag to filter by',
required: true,
}),

eq: Property.Array({
displayName: '(Virtual tag) Equal values',
description: 'List of values ​​to be checked for equality.',
displayName: '(Virtual Tag) Equal Values',
description: 'List of values ​​to be checked for equality',
required: false,
}),

like: Property.Array({
displayName: '(Virtual tag) Like values',
description: 'List of values ​​​​to check if they are like.',
displayName: '(Virtual Tag) Like Values',
description: 'List of values ​​​​to check if they are like',
required: false,
}),
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const addCommentAction = createAction({
required: true,
}),
comment: Property.LongText({
displayName: 'Comment text',
displayName: 'Comment Text',
required: true,
}),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const updateCommentAction = createAction({
required: true,
}),
comment: Property.LongText({
displayName: 'Comment text',
displayName: 'Comment Text',
required: true,
}),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const getRecommendationsCustomAction = createAction({
auth: anadotAuth,
name: 'get_recommendations',
description: 'Get custom Umbrella recommendations',
displayName: 'Get Recommendations (custom settings)',
displayName: 'Get Recommendations (Custom Filters)',
isWriteAction: false,
props: {
accounts: accountProperty(),
Expand Down
8 changes: 4 additions & 4 deletions packages/blocks/anodot/src/lib/update-user-status-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const updateUserStatusAction = createAction({
}),
actionParams: Property.DynamicProperties({
displayName: 'Action Parameters',
description: 'Additional parameters based on the selected user status.',
description: 'Additional parameters based on the selected user status',
required: true,
refreshers: ['userStatus'],
props: async (props): Promise<{ [key: string]: any }> => {
Expand All @@ -49,21 +49,21 @@ export const updateUserStatusAction = createAction({
label_add: Property.LongText({
displayName: 'Add Labels',
description:
'A comma seperated list of labels to add to the recommendation.',
'A comma seperated list of labels to add to the recommendation',
required: false,
}),
label_delete: Property.LongText({
displayName: 'Delete Labels',
description:
'A comma seperated list of labels to remove from the recommendation.',
'A comma seperated list of labels to remove from the recommendation',
required: false,
}),
};
case 'exclude':
return {
comment: Property.LongText({
displayName: 'Comment',
description: 'Comment explaining why the action is excluded.',
description: 'Comment explaining why the action is excluded',
required: true,
}),
until: Property.LongText({
Expand Down
2 changes: 1 addition & 1 deletion packages/blocks/archera/src/lib/actions/apply-plan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const applyCommitmentPlanAction = createAction({
props: {
planId: Property.ShortText({
displayName: 'Plan ID',
description: 'The UUID of the commitment plan to apply.',
description: 'The UUID of the commitment plan to apply',
required: true,
}),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const getCommitmentsInventoryAction = createAction({
props: {
provider: Property.StaticDropdown({
displayName: 'Provider',
description: 'The cloud provider to fetch commitments for.',
description: 'The cloud provider to fetch commitments for',
required: true,
options: {
options: [
Expand All @@ -26,23 +26,23 @@ export const getCommitmentsInventoryAction = createAction({
startDate: Property.ShortText({
displayName: 'Start Date',
description:
'The start date for the commitment inventory query (Format: yyyy-MM-dd).',
'The start date for the commitment inventory query (Format: yyyy-MM-dd)',
required: true,
}),
endDate: Property.ShortText({
displayName: 'End Date',
description:
'The end date for the commitment inventory query (Format: yyyy-MM-dd).',
'The end date for the commitment inventory query (Format: yyyy-MM-dd)',
required: true,
}),
search: Property.ShortText({
displayName: 'Search',
description: 'Search term to filter commitments.',
description: 'Search term to filter commitments',
required: false,
}),
orderBy: Property.StaticDropdown({
displayName: 'Order By',
description: 'Field to order results by.',
description: 'Field to order results by',
required: false,
options: {
options: [
Expand All @@ -67,19 +67,19 @@ export const getCommitmentsInventoryAction = createAction({
}),
desc: Property.Checkbox({
displayName: 'Descending Order',
description: 'Sort in descending order.',
description: 'Sort in descending order',
required: false,
defaultValue: true,
}),
page: Property.Number({
displayName: 'Page',
description: 'Page number for pagination.',
description: 'Page number for pagination',
required: false,
defaultValue: 1,
}),
pageSize: Property.Number({
displayName: 'Page Size',
description: 'Number of items per page (1-10000).',
description: 'Number of items per page (1-10000)',
required: false,
defaultValue: 10,
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const getCommitmentPlanAction = createAction({
props: {
planId: Property.ShortText({
displayName: 'Plan ID',
description: 'The UUID of the commitment plan to retrieve.',
description: 'The UUID of the commitment plan to get',
required: true,
}),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const getDefaultCommitmentPlansAction = createAction({
props: {
provider: Property.StaticDropdown({
displayName: 'Provider',
description: 'The cloud provider to fetch default commitment plans for.',
description: 'The cloud provider to fetch default commitment plans for',
required: true,
options: {
options: [
Expand Down
2 changes: 1 addition & 1 deletion packages/blocks/archera/src/lib/actions/get-metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const getMetricsAction = createAction({
props: {
provider: Property.StaticDropdown({
displayName: 'Provider',
description: 'The cloud provider to fetch metrics for.',
description: 'The cloud provider to fetch metrics for',
required: true,
options: {
options: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const getRecommendedPlan = createAction({
props: {
provider: Property.StaticDropdown({
displayName: 'Provider',
description: 'The cloud provider to fetch recommendations for.',
description: 'The cloud provider to fetch recommendations for',
required: true,
options: {
options: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import {
export const runAthenaQueryAction = createAction({
auth: amazonAuth,
name: 'athena_query',
description: 'Query Athena database',
displayName: 'Query Athena database',
description: 'Execute SQL queries on AWS Athena database',
displayName: 'Query Athena Database',
isWriteAction: false,
props: {
query: Property.LongText({
displayName: 'Query',
description: 'Query to run on the Athena database.',
description: 'Query to run on the Athena database',
supportsAI: true,
required: true,
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const ebsGetRecommendationsAction = createAction({
props: {
accounts: getAwsAccountsMultiSelectDropdown().accounts,
recommendationType: Property.StaticDropdown({
displayName: 'Recommendations type',
displayName: 'Recommendations Type',
description: 'Type of recommendations to collect',
options: {
options: [
Expand Down Expand Up @@ -59,7 +59,7 @@ export const ebsGetRecommendationsAction = createAction({
const dropdownState = getRegionsDropdownState();
props['regions'] = Property.StaticMultiSelectDropdown({
displayName: 'Regions',
description: 'A list of AWS regions.',
description: 'A list of AWS regions',
required: true,
options: dropdownState,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const ec2GetRecommendationsAction = createAction({
props: {
accounts: getAwsAccountsMultiSelectDropdown().accounts,
recommendationType: Property.StaticDropdown({
displayName: 'Recommendations type',
displayName: 'Recommendations Type',
description: 'Type of recommendations to collect',
options: {
options: [
Expand Down Expand Up @@ -62,7 +62,7 @@ export const ec2GetRecommendationsAction = createAction({
const dropdownState = getRegionsDropdownState();
props['regions'] = Property.StaticMultiSelectDropdown({
displayName: 'Regions',
description: 'A list of AWS regions.',
description: 'A list of AWS regions',
required: true,
options: dropdownState,
});
Expand Down
Loading
Loading