Browse Source

fix: formula - RIGHT and LEFT methods argument type correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/7962/head
Pranav C 3 months ago
parent
commit
35ca80c97e
  1. 12
      packages/nocodb-sdk/src/lib/formulaHelpers.ts

12
packages/nocodb-sdk/src/lib/formulaHelpers.ts

@ -886,7 +886,7 @@ export const formulas: Record<string, FormulaMeta> = {
validation: { validation: {
args: { args: {
rqd: 2, rqd: 2,
type: FormulaDataTypes.STRING, type: [FormulaDataTypes.STRING, FormulaDataTypes.NUMERIC],
}, },
}, },
description: 'Retrieve the last n characters from the input string.', description: 'Retrieve the last n characters from the input string.',
@ -901,7 +901,7 @@ export const formulas: Record<string, FormulaMeta> = {
validation: { validation: {
args: { args: {
rqd: 2, rqd: 2,
type: FormulaDataTypes.STRING, type: [FormulaDataTypes.STRING, FormulaDataTypes.NUMERIC],
}, },
}, },
description: 'Retrieve the first n characters from the input string.', description: 'Retrieve the first n characters from the input string.',
@ -1066,10 +1066,12 @@ export const formulas: Record<string, FormulaMeta> = {
type: FormulaDataTypes.STRING, type: FormulaDataTypes.STRING,
}, },
}, },
description: description: 'Percent-encode the input parameter for use in URLs',
'Percent-encode the input parameter for use in URLs',
syntax: 'URLENCODE(str)', syntax: 'URLENCODE(str)',
examples: ['URLENCODE("Hello, world") => "Hello%2C%20world"', 'URLENCODE({column1})'], examples: [
'URLENCODE("Hello, world") => "Hello%2C%20world"',
'URLENCODE({column1})',
],
returnType: FormulaDataTypes.STRING, returnType: FormulaDataTypes.STRING,
}, },
WEEKDAY: { WEEKDAY: {

Loading…
Cancel
Save