1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Rename to recordID

This commit is contained in:
Mel O'Hagan 2022-08-09 14:59:05 +01:00
parent a5065411cc
commit ea6f0938da

View file

@ -63,7 +63,7 @@ module AirtableModule {
type: QueryTypes.FIELDS,
customisable: true,
fields: {
recordId: {
recordID: {
type: DatasourceFieldTypes.STRING,
required: true,
},
@ -116,13 +116,13 @@ module AirtableModule {
}
}
async update(query: { table: any; recordId: any; json: any }) {
const { table, recordId, json } = query
async update(query: { table: any; recordID: any; json: any }) {
const { table, recordID, json } = query
try {
return await this.client(table).update([
{
id: recordId,
id: recordID,
fields: json,
},
])