File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 33 * Taken from:
44 * @see https://github.com/Airtable/blocks/blob/6c0a2ed709a34e28cb3e999fc6cc6406eaa3817b/packages/sdk/src/types/mutations.ts
55 */
6-
76const MutationTypes = Object . freeze ( {
87 SET_MULTIPLE_RECORD_CELL_VALUES : 'setMultipleRecordCellValues' as const ,
98 DELETE_RECORD : 'deleteRecord' as const ,
Original file line number Diff line number Diff line change 1- export { AirtableScriptEnvironment as default } from './environment'
2-
31import type { AirtableScriptGlobal } from './environment'
42import type {
53 RunScriptOptions ,
64 RunScriptResult ,
75} from './environment/run-airtable-script'
86
7+ export { AirtableScriptEnvironment as default } from './environment'
8+
99declare global {
1010 /**
1111 * Runs a given Airtable script against a base fixture. Returns the output, console, and base
@@ -26,9 +26,11 @@ declare global {
2626 const runAirtableScript : (
2727 options : RunScriptOptions
2828 ) => Promise < RunScriptResult >
29+
2930 /**
3031 * An object containing the different types of mutations that can be tracked in a script.
3132 */
33+
3234 const MutationTypes : AirtableScriptGlobal [ 'MutationTypes' ]
3335 /**
3436 * A special string that is used to denote that a call to output.clear() was made in the script.
You can’t perform that action at this time.
0 commit comments