@algorandfoundation/algokit-utils 7.0.0-beta.14 → 7.0.0-beta.15
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.
- package/package.json +1 -1
- package/types/debugging.d.ts +1 -1
- package/types/debugging.js +1 -1
- package/types/debugging.js.map +1 -1
- package/types/debugging.mjs +1 -1
- package/types/debugging.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"**"
|
|
7
7
|
],
|
|
8
8
|
"name": "@algorandfoundation/algokit-utils",
|
|
9
|
-
"version": "7.0.0-beta.
|
|
9
|
+
"version": "7.0.0-beta.15",
|
|
10
10
|
"private": false,
|
|
11
11
|
"description": "A set of core Algorand utilities written in TypeScript and released via npm that make it easier to build solutions on Algorand.",
|
|
12
12
|
"author": "Algorand Foundation",
|
package/types/debugging.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare const SOURCES_DIR = "sources";
|
|
|
10
10
|
/** The file extension for TEAL files */
|
|
11
11
|
export declare const TEAL_FILE_EXT = ".teal";
|
|
12
12
|
/** The file extension for TEAL source map files */
|
|
13
|
-
export declare const TEAL_SOURCEMAP_EXT = ".teal.
|
|
13
|
+
export declare const TEAL_SOURCEMAP_EXT = ".teal.map";
|
|
14
14
|
/** The default maximum search depth for file operations */
|
|
15
15
|
export declare const DEFAULT_MAX_SEARCH_DEPTH = 10;
|
|
16
16
|
/**
|
package/types/debugging.js
CHANGED
|
@@ -10,7 +10,7 @@ const SOURCES_DIR = 'sources';
|
|
|
10
10
|
/** The file extension for TEAL files */
|
|
11
11
|
const TEAL_FILE_EXT = '.teal';
|
|
12
12
|
/** The file extension for TEAL source map files */
|
|
13
|
-
const TEAL_SOURCEMAP_EXT = '.teal.
|
|
13
|
+
const TEAL_SOURCEMAP_EXT = '.teal.map';
|
|
14
14
|
/** The default maximum search depth for file operations */
|
|
15
15
|
const DEFAULT_MAX_SEARCH_DEPTH = 10;
|
|
16
16
|
|
package/types/debugging.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"debugging.js","sources":["../../src/types/debugging.ts"],"sourcesContent":["/**\n * An asynchronous event listener\n */\n\nimport algosdk from 'algosdk'\nimport { CompiledTeal } from './app'\n\n/** The directory name for AlgoKit project related files */\nexport const ALGOKIT_DIR = '.algokit'\n\n/** The directory name for debug source files */\nexport const SOURCES_DIR = 'sources'\n\n/** The file extension for TEAL files */\nexport const TEAL_FILE_EXT = '.teal'\n\n/** The file extension for TEAL source map files */\nexport const TEAL_SOURCEMAP_EXT = '.teal.
|
|
1
|
+
{"version":3,"file":"debugging.js","sources":["../../src/types/debugging.ts"],"sourcesContent":["/**\n * An asynchronous event listener\n */\n\nimport algosdk from 'algosdk'\nimport { CompiledTeal } from './app'\n\n/** The directory name for AlgoKit project related files */\nexport const ALGOKIT_DIR = '.algokit'\n\n/** The directory name for debug source files */\nexport const SOURCES_DIR = 'sources'\n\n/** The file extension for TEAL files */\nexport const TEAL_FILE_EXT = '.teal'\n\n/** The file extension for TEAL source map files */\nexport const TEAL_SOURCEMAP_EXT = '.teal.map'\n\n/** The default maximum search depth for file operations */\nexport const DEFAULT_MAX_SEARCH_DEPTH = 10\n\n/**\n * Represents the data for a single TEAL source\n */\nexport interface TealSourceDebugEventData {\n /** The name of the application */\n appName: string\n /** The name of the file */\n fileName: string\n /** The compiled TEAL code */\n compiledTeal: CompiledTeal\n}\n\n/**\n * Represents the data for multiple TEAL sources debug events emitted whenever an app is compiled as part of a deploy in debug mode\n */\nexport interface TealSourcesDebugEventData {\n /** An array of TEAL source debug event data */\n sources: TealSourceDebugEventData[]\n}\n\n/**\n * Represents the data for AVM traces debug events emitted whenever a transaction is simulated in debug mode\n */\nexport interface AVMTracesEventData {\n /** The simulation response from Algod */\n simulateResponse: algosdk.modelsv2.SimulateResponse\n}\n"],"names":[],"mappings":";;AAAA;;AAEG;AAKH;AACO,MAAM,WAAW,GAAG,WAAU;AAErC;AACO,MAAM,WAAW,GAAG,UAAS;AAEpC;AACO,MAAM,aAAa,GAAG,QAAO;AAEpC;AACO,MAAM,kBAAkB,GAAG,YAAW;AAE7C;AACO,MAAM,wBAAwB,GAAG;;;;;;;;"}
|
package/types/debugging.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const SOURCES_DIR = 'sources';
|
|
|
8
8
|
/** The file extension for TEAL files */
|
|
9
9
|
const TEAL_FILE_EXT = '.teal';
|
|
10
10
|
/** The file extension for TEAL source map files */
|
|
11
|
-
const TEAL_SOURCEMAP_EXT = '.teal.
|
|
11
|
+
const TEAL_SOURCEMAP_EXT = '.teal.map';
|
|
12
12
|
/** The default maximum search depth for file operations */
|
|
13
13
|
const DEFAULT_MAX_SEARCH_DEPTH = 10;
|
|
14
14
|
|
package/types/debugging.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"debugging.mjs","sources":["../../src/types/debugging.ts"],"sourcesContent":["/**\n * An asynchronous event listener\n */\n\nimport algosdk from 'algosdk'\nimport { CompiledTeal } from './app'\n\n/** The directory name for AlgoKit project related files */\nexport const ALGOKIT_DIR = '.algokit'\n\n/** The directory name for debug source files */\nexport const SOURCES_DIR = 'sources'\n\n/** The file extension for TEAL files */\nexport const TEAL_FILE_EXT = '.teal'\n\n/** The file extension for TEAL source map files */\nexport const TEAL_SOURCEMAP_EXT = '.teal.
|
|
1
|
+
{"version":3,"file":"debugging.mjs","sources":["../../src/types/debugging.ts"],"sourcesContent":["/**\n * An asynchronous event listener\n */\n\nimport algosdk from 'algosdk'\nimport { CompiledTeal } from './app'\n\n/** The directory name for AlgoKit project related files */\nexport const ALGOKIT_DIR = '.algokit'\n\n/** The directory name for debug source files */\nexport const SOURCES_DIR = 'sources'\n\n/** The file extension for TEAL files */\nexport const TEAL_FILE_EXT = '.teal'\n\n/** The file extension for TEAL source map files */\nexport const TEAL_SOURCEMAP_EXT = '.teal.map'\n\n/** The default maximum search depth for file operations */\nexport const DEFAULT_MAX_SEARCH_DEPTH = 10\n\n/**\n * Represents the data for a single TEAL source\n */\nexport interface TealSourceDebugEventData {\n /** The name of the application */\n appName: string\n /** The name of the file */\n fileName: string\n /** The compiled TEAL code */\n compiledTeal: CompiledTeal\n}\n\n/**\n * Represents the data for multiple TEAL sources debug events emitted whenever an app is compiled as part of a deploy in debug mode\n */\nexport interface TealSourcesDebugEventData {\n /** An array of TEAL source debug event data */\n sources: TealSourceDebugEventData[]\n}\n\n/**\n * Represents the data for AVM traces debug events emitted whenever a transaction is simulated in debug mode\n */\nexport interface AVMTracesEventData {\n /** The simulation response from Algod */\n simulateResponse: algosdk.modelsv2.SimulateResponse\n}\n"],"names":[],"mappings":"AAAA;;AAEG;AAKH;AACO,MAAM,WAAW,GAAG,WAAU;AAErC;AACO,MAAM,WAAW,GAAG,UAAS;AAEpC;AACO,MAAM,aAAa,GAAG,QAAO;AAEpC;AACO,MAAM,kBAAkB,GAAG,YAAW;AAE7C;AACO,MAAM,wBAAwB,GAAG;;;;"}
|