@sentio/sdk 2.46.1-rc.1 → 2.47.0-rc.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/sdk",
3
- "version": "2.46.1-rc.1",
3
+ "version": "2.47.0-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -84,8 +84,8 @@
84
84
  "typechain": "^8.3.2",
85
85
  "utility-types": "^3.11.0",
86
86
  "yaml": "^2.3.4",
87
- "@sentio/protos": "2.46.1-rc.1",
88
- "@sentio/runtime": "^2.46.1-rc.1"
87
+ "@sentio/runtime": "^2.47.0-rc.1",
88
+ "@sentio/protos": "2.47.0-rc.1"
89
89
  },
90
90
  "peerDependencies": {
91
91
  "tsup": "npm:@sentio/tsup@^8.3.5-rc.1"
@@ -101,8 +101,8 @@
101
101
  "scripts": {
102
102
  "build": "pnpm gen && pnpm compile",
103
103
  "build:all": "pnpm --filter=$(node -p \"require('./package.json').name\")... build",
104
- "build:bundle": "pnpm gen && pnpm bundle && pnpm bundle:dts",
105
- "bundle": "tsup --config src/bundle.config.ts && cp src/tsup.config.ts lib",
104
+ "build:bundle": "pnpm gen && pnpm bundle",
105
+ "bundle": "tsup --config src/bundle.config.ts",
106
106
  "bundle:dts": "tsc --emitDeclarationOnly --declaration",
107
107
  "compile": "tsc && cp src/tsup.config.ts lib",
108
108
  "gen": "pnpm gen:eth && pnpm gen:aptos && pnpm gen:sui && pnpm gen:solana && pnpm gen:fuel && pnpm gen:starknet && pnpm gen:store",
@@ -2,7 +2,9 @@ import { defineConfig } from 'tsup'
2
2
  import packageJson from '../package.json'
3
3
  import { external } from './tsup.config.js'
4
4
 
5
- const entry = Object.values(packageJson.exports).map((p) => p.replace('lib', 'src').replace('.js', '.ts'))
5
+ const entry = Object.values(packageJson.exports)
6
+ .filter((x) => !x.includes('codegen'))
7
+ .map((p) => p.replace('lib', 'src').replace('.js', '.ts'))
6
8
 
7
9
  export default defineConfig({
8
10
  esbuildOptions: (options) => {