@flashbacktech/flashbackclient 0.1.61 → 0.1.63

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,9 +1,5 @@
1
1
  import { StellarNetwork } from './wallet/transaction';
2
2
  import { FlashOnStellarClientV2, FlashOnStellarClientConfigV2 } from './client';
3
- export { ConsumerOps } from './client/consumer';
4
- export { ProviderOps } from './client/provider';
5
- export { BucketOps } from './client/bucket';
6
- export { DealOps } from './client/deal';
7
- export { FundingOps } from './client/funding';
3
+ export * from "./wallet/index";
8
4
  export * from './models';
9
5
  export { StellarNetwork, FlashOnStellarClientV2, FlashOnStellarClientConfigV2 };
@@ -14,19 +14,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.FlashOnStellarClientV2 = exports.FundingOps = exports.DealOps = exports.BucketOps = exports.ProviderOps = exports.ConsumerOps = void 0;
17
+ exports.FlashOnStellarClientV2 = void 0;
18
18
  const client_1 = require("./client");
19
19
  Object.defineProperty(exports, "FlashOnStellarClientV2", { enumerable: true, get: function () { return client_1.FlashOnStellarClientV2; } });
20
- // Export operation classes
21
- var consumer_1 = require("./client/consumer");
22
- Object.defineProperty(exports, "ConsumerOps", { enumerable: true, get: function () { return consumer_1.ConsumerOps; } });
23
- var provider_1 = require("./client/provider");
24
- Object.defineProperty(exports, "ProviderOps", { enumerable: true, get: function () { return provider_1.ProviderOps; } });
25
- var bucket_1 = require("./client/bucket");
26
- Object.defineProperty(exports, "BucketOps", { enumerable: true, get: function () { return bucket_1.BucketOps; } });
27
- var deal_1 = require("./client/deal");
28
- Object.defineProperty(exports, "DealOps", { enumerable: true, get: function () { return deal_1.DealOps; } });
29
- var funding_1 = require("./client/funding");
30
- Object.defineProperty(exports, "FundingOps", { enumerable: true, get: function () { return funding_1.FundingOps; } });
20
+ __exportStar(require("./wallet/index"), exports);
31
21
  // Export models and types
32
22
  __exportStar(require("./models"), exports);
@@ -98,6 +98,7 @@ export interface Deal {
98
98
  }
99
99
  export interface DealInfo {
100
100
  deal: Deal;
101
+ bucket: Bucket;
101
102
  provider_name: string;
102
103
  provider_reputation: string;
103
104
  consumer_name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.1.61",
3
+ "version": "0.1.63",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"