@xoxno/types 1.0.335 → 1.0.336

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.
@@ -15,4 +15,6 @@ export declare class TransactionCreate {
15
15
  options?: number;
16
16
  guardian?: string;
17
17
  guardianSignature?: string;
18
+ relayer?: string;
19
+ relayerSignature?: string;
18
20
  }
@@ -22,6 +22,8 @@ class TransactionCreate {
22
22
  this.options = undefined;
23
23
  this.guardian = undefined;
24
24
  this.guardianSignature = undefined;
25
+ this.relayer = undefined;
26
+ this.relayerSignature = undefined;
25
27
  Object.assign(this, props);
26
28
  }
27
29
  }
@@ -130,3 +132,21 @@ __decorate([
130
132
  (0, class_validator_1.IsString)(),
131
133
  __metadata("design:type", String)
132
134
  ], TransactionCreate.prototype, "guardianSignature", void 0);
135
+ __decorate([
136
+ (0, swagger_1.ApiPropertyOptional)({
137
+ description: 'Optional relayer address',
138
+ type: String,
139
+ }),
140
+ (0, class_validator_1.IsOptional)(),
141
+ (0, class_validator_1.IsString)(),
142
+ __metadata("design:type", String)
143
+ ], TransactionCreate.prototype, "relayer", void 0);
144
+ __decorate([
145
+ (0, swagger_1.ApiPropertyOptional)({
146
+ description: 'Optional relayer signature',
147
+ type: String,
148
+ }),
149
+ (0, class_validator_1.IsOptional)(),
150
+ (0, class_validator_1.IsString)(),
151
+ __metadata("design:type", String)
152
+ ], TransactionCreate.prototype, "relayerSignature", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.335",
3
+ "version": "1.0.336",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {