@shushed/helpers 0.0.247-airtable-helper-views-20260130120425 → 0.0.247-airtable-helper-views-20260130120716
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.
|
@@ -423,7 +423,8 @@ class AirtableHelper extends runtime_1.default {
|
|
|
423
423
|
if (!unprocessedResult) {
|
|
424
424
|
const res = (await resp.json());
|
|
425
425
|
nextCursor = res.cursor;
|
|
426
|
-
this.
|
|
426
|
+
const scope = this.viewId ? `view: ${this.viewId}` : `table: ${this.tableId}`;
|
|
427
|
+
this.logging.log(`Received ${res.payloads.length} records from the ${scope}.`);
|
|
427
428
|
for (const payload of res.payloads) {
|
|
428
429
|
const changes = this.viewId
|
|
429
430
|
? payload.changedViewsById?.[this.viewId]
|
|
@@ -547,7 +548,8 @@ class AirtableHelper extends runtime_1.default {
|
|
|
547
548
|
return null;
|
|
548
549
|
}
|
|
549
550
|
createNotificationUrl() {
|
|
550
|
-
|
|
551
|
+
const baseUrl = `${this.runtimeUrl}/executeWorkflow/${this.workflowId}/${this.triggerId}?request-from-airtable=1&baseId=${this.baseId}&tableId=${this.tableId}`;
|
|
552
|
+
return this.viewId ? `${baseUrl}&viewId=${this.viewId}` : baseUrl;
|
|
551
553
|
}
|
|
552
554
|
async isValidSignature(secret, payload, signature) {
|
|
553
555
|
const macSecretDecoded = Buffer.from(secret, 'base64');
|