1
0
Fork 0
mirror of synced 2024-07-15 03:05:57 +12:00

Rename to recordID

This commit is contained in:
Mel O'Hagan 2022-08-09 14:59:05 +01:00
parent 3323388b03
commit 860880baf2

View file

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