@plutonlabs/sdk 0.0.23-beta → 0.0.25-beta

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.
@@ -11,8 +11,22 @@ export declare class QuoteSelectedIntentsRequestDto {
11
11
  */
12
12
  destinationWalletAddress: string;
13
13
  }
14
+ export declare class EventQuoteSelectedIntentDto {
15
+ id: string;
16
+ solverId: string;
17
+ /**
18
+ * @description User destination wallet address
19
+ * @example '0x8767865786576'
20
+ */
21
+ destinationWalletAddress: string;
22
+ }
23
+ export declare class EventQuoteSelectedIntentResponseDto {
24
+ id: string;
25
+ }
14
26
  export declare class SolverQuoteSelectedIntentDto {
27
+ constructor(partial: Partial<SolverQuoteSelectedIntentDto>);
15
28
  id: string;
29
+ solverId: string;
16
30
  /**
17
31
  * @description User destination wallet address
18
32
  * @example '0x8767865786576'
@@ -1 +1 @@
1
- {"version":3,"file":"quote_selected_intents_request.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,8BAA8B;IAEzC,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IAGH,mBAAmB,EAAE,MAAM,CAAC;IAE5B;;;OAGG;IAGH,wBAAwB,EAAE,MAAM,CAAC;CAClC;AAGD,qBAAa,4BAA4B;IAEvC,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IAGH,wBAAwB,EAAE,MAAM,CAAC;CAClC"}
1
+ {"version":3,"file":"quote_selected_intents_request.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,8BAA8B;IAEzC,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IAGH,mBAAmB,EAAE,MAAM,CAAC;IAE5B;;;OAGG;IAGH,wBAAwB,EAAE,MAAM,CAAC;CAClC;AAED,qBAAa,2BAA2B;IAGtC,EAAE,EAAE,MAAM,CAAC;IAIX,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IAGH,wBAAwB,EAAE,MAAM,CAAC;CAClC;AAED,qBAAa,mCAAmC;IAG9C,EAAE,EAAE,MAAM,CAAC;CACZ;AAGD,qBAAa,4BAA4B;gBAE3B,OAAO,EAAE,OAAO,CAAC,4BAA4B,CAAC;IAM1D,EAAE,EAAE,MAAM,CAAC;IAIX,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IAGH,wBAAwB,EAAE,MAAM,CAAC;CAClC"}
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.SolverQuoteSelectedIntentDto = exports.QuoteSelectedIntentsRequestDto = void 0;
12
+ exports.SolverQuoteSelectedIntentDto = exports.EventQuoteSelectedIntentResponseDto = exports.EventQuoteSelectedIntentDto = exports.QuoteSelectedIntentsRequestDto = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
14
  class QuoteSelectedIntentsRequestDto {
15
15
  }
@@ -28,13 +28,48 @@ __decorate([
28
28
  (0, class_validator_1.IsString)(),
29
29
  __metadata("design:type", String)
30
30
  ], QuoteSelectedIntentsRequestDto.prototype, "destinationWalletAddress", void 0);
31
+ class EventQuoteSelectedIntentDto {
32
+ }
33
+ exports.EventQuoteSelectedIntentDto = EventQuoteSelectedIntentDto;
34
+ __decorate([
35
+ (0, class_validator_1.IsNotEmpty)(),
36
+ (0, class_validator_1.IsUUID)(),
37
+ __metadata("design:type", String)
38
+ ], EventQuoteSelectedIntentDto.prototype, "id", void 0);
39
+ __decorate([
40
+ (0, class_validator_1.IsNotEmpty)(),
41
+ (0, class_validator_1.IsUUID)(),
42
+ __metadata("design:type", String)
43
+ ], EventQuoteSelectedIntentDto.prototype, "solverId", void 0);
44
+ __decorate([
45
+ (0, class_validator_1.IsNotEmpty)(),
46
+ (0, class_validator_1.IsString)(),
47
+ __metadata("design:type", String)
48
+ ], EventQuoteSelectedIntentDto.prototype, "destinationWalletAddress", void 0);
49
+ class EventQuoteSelectedIntentResponseDto {
50
+ }
51
+ exports.EventQuoteSelectedIntentResponseDto = EventQuoteSelectedIntentResponseDto;
52
+ __decorate([
53
+ (0, class_validator_1.IsNotEmpty)(),
54
+ (0, class_validator_1.IsUUID)(),
55
+ __metadata("design:type", String)
56
+ ], EventQuoteSelectedIntentResponseDto.prototype, "id", void 0);
31
57
  class SolverQuoteSelectedIntentDto {
58
+ constructor(partial) {
59
+ Object.assign(this, partial);
60
+ }
32
61
  }
33
62
  exports.SolverQuoteSelectedIntentDto = SolverQuoteSelectedIntentDto;
34
63
  __decorate([
64
+ (0, class_validator_1.IsNotEmpty)(),
35
65
  (0, class_validator_1.IsUUID)(),
36
66
  __metadata("design:type", String)
37
67
  ], SolverQuoteSelectedIntentDto.prototype, "id", void 0);
68
+ __decorate([
69
+ (0, class_validator_1.IsNotEmpty)(),
70
+ (0, class_validator_1.IsUUID)(),
71
+ __metadata("design:type", String)
72
+ ], SolverQuoteSelectedIntentDto.prototype, "solverId", void 0);
38
73
  __decorate([
39
74
  (0, class_validator_1.IsNotEmpty)(),
40
75
  (0, class_validator_1.IsString)(),
@@ -1 +1 @@
1
- {"version":3,"file":"quote_selected_intents_request.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAE/D,MAAa,8BAA8B;CAmB1C;AAnBD,wEAmBC;AAjBC;IADC,IAAA,wBAAM,GAAE;;0DACE;AAQX;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2EACiB;AAQ5B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gFACsB;AAInC,MAAa,4BAA4B;CAWxC;AAXD,oEAWC;AATC;IADC,IAAA,wBAAM,GAAE;;wDACE;AAQX;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8EACsB"}
1
+ {"version":3,"file":"quote_selected_intents_request.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAE/D,MAAa,8BAA8B;CAmB1C;AAnBD,wEAmBC;AAjBC;IADC,IAAA,wBAAM,GAAE;;0DACE;AAQX;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2EACiB;AAQ5B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gFACsB;AAGnC,MAAa,2BAA2B;CAgBvC;AAhBD,kEAgBC;AAbC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;uDACE;AAIX;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;6DACQ;AAQjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;6EACsB;AAGnC,MAAa,mCAAmC;CAI/C;AAJD,kFAIC;AADC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;+DACE;AAIb,MAAa,4BAA4B;IAEvC,YAAY,OAA8C;QACxD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC/B,CAAC;CAiBF;AArBD,oEAqBC;AAbC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;wDACE;AAIX;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;8DACQ;AAQjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8EACsB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plutonlabs/sdk",
3
- "version": "0.0.23-beta",
3
+ "version": "0.0.25-beta",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -20,7 +20,6 @@
20
20
  "typescript": "^5.7.3"
21
21
  },
22
22
  "dependencies": {
23
- "@plutonlabs/sdk": "^0.0.3-beta",
24
23
  "bignumber.js": "^9.1.2",
25
24
  "class-transformer": "^0.5.1",
26
25
  "class-validator": "^0.14.1",