@sats-connect/core 0.0.13 → 0.0.14-c7273d1

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/dist/index.d.mts CHANGED
@@ -536,6 +536,9 @@ declare const getInscriptionsParamsSchema: v.ObjectSchema<{
536
536
  readonly limit: v.NumberSchema<undefined>;
537
537
  }, undefined>;
538
538
  declare const getInscriptionsResultSchema: v.ObjectSchema<{
539
+ readonly total: v.NumberSchema<undefined>;
540
+ readonly limit: v.NumberSchema<undefined>;
541
+ readonly offset: v.NumberSchema<undefined>;
539
542
  readonly inscriptions: v.ArraySchema<v.ObjectSchema<{
540
543
  readonly inscriptionId: v.StringSchema<undefined>;
541
544
  readonly inscriptionNumber: v.StringSchema<undefined>;
package/dist/index.mjs CHANGED
@@ -801,6 +801,9 @@ var getInscriptionsParamsSchema = v7.object({
801
801
  limit: v7.number()
802
802
  });
803
803
  var getInscriptionsResultSchema = v7.object({
804
+ total: v7.number(),
805
+ limit: v7.number(),
806
+ offset: v7.number(),
804
807
  inscriptions: v7.array(
805
808
  v7.object({
806
809
  inscriptionId: v7.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sats-connect/core",
3
- "version": "0.0.13",
3
+ "version": "0.0.14-c7273d1",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.mts",