@super-protocol/sdk-js 2.2.0-beta.24 → 2.2.0-beta.25

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.
@@ -1,3 +1,4 @@
1
+ import { OfferType } from './Offer.js';
1
2
  import { BlockchainId, TokenAmount } from './Web3.js';
2
3
  export type PublicKey = {
3
4
  kty: string;
@@ -40,6 +41,8 @@ export type OfferResource = {
40
41
  timestamp: number;
41
42
  signature: Signature;
42
43
  signedEncryptedData: string;
44
+ offerType: OfferType;
45
+ solutionHash: string;
43
46
  };
44
47
  export type OfferStorageAllocated = {
45
48
  teeOfferIssuerId: BlockchainId;
@@ -1,3 +1,4 @@
1
+ import { OfferType } from './Offer.js';
1
2
  import { BlockchainId, TokenAmount } from './Web3.js';
2
3
  export type PublicKey = {
3
4
  kty: string;
@@ -40,6 +41,8 @@ export type OfferResource = {
40
41
  timestamp: number;
41
42
  signature: Signature;
42
43
  signedEncryptedData: string;
44
+ offerType: OfferType;
45
+ solutionHash: string;
43
46
  };
44
47
  export type OfferStorageAllocated = {
45
48
  teeOfferIssuerId: BlockchainId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@super-protocol/sdk-js",
3
- "version": "2.2.0-beta.24",
3
+ "version": "2.2.0-beta.25",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/mjs/index.js",
6
6
  "exports": {