@fiado/type-kit 1.1.46 → 1.1.47

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.
@@ -155,4 +155,8 @@ V
155
155
  v
156
156
  Fsrc/transactionProcessor/dtos/private/ExecutePocketOperationRequest.ts,b/2/b2186424e9f368610bda357e95a38d1b7b11ba53
157
157
  a
158
- 1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
158
+ 1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
159
+ z
160
+ Jsrc/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.ts,6/9/69d58b0b6323e7e777c435dbaefe94a64394e255
161
+ w
162
+ Gsrc/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.ts,e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4
@@ -155,4 +155,8 @@ V
155
155
  v
156
156
  Fsrc/transactionProcessor/dtos/private/ExecutePocketOperationRequest.ts,b/2/b2186424e9f368610bda357e95a38d1b7b11ba53
157
157
  a
158
- 1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
158
+ 1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
159
+ z
160
+ Jsrc/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.ts,6/9/69d58b0b6323e7e777c435dbaefe94a64394e255
161
+ w
162
+ Gsrc/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.ts,e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4
@@ -0,0 +1,6 @@
1
+ export declare class AuthorizeP2pTransactionRequest {
2
+ idempotencyKey: string;
3
+ sourceDirectoryId: string;
4
+ targetDirectoryId: string;
5
+ amount: number;
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuthorizeP2pTransactionRequest = void 0;
4
+ class AuthorizeP2pTransactionRequest {
5
+ }
6
+ exports.AuthorizeP2pTransactionRequest = AuthorizeP2pTransactionRequest;
@@ -0,0 +1,7 @@
1
+ import { OperationEnum } from "../../../transaction";
2
+ export declare class AuthorizePocketTransactionRequest {
3
+ idempotencyKey: string;
4
+ pocketId: string;
5
+ operation: OperationEnum;
6
+ amount: number;
7
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuthorizePocketTransactionRequest = void 0;
4
+ class AuthorizePocketTransactionRequest {
5
+ }
6
+ exports.AuthorizePocketTransactionRequest = AuthorizePocketTransactionRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,6 @@
1
+ export class AuthorizeP2pTransactionRequest {
2
+ idempotencyKey: string;
3
+ sourceDirectoryId: string;
4
+ targetDirectoryId: string;
5
+ amount: number;
6
+ }
@@ -0,0 +1,8 @@
1
+ import {OperationEnum} from "../../../transaction";
2
+
3
+ export class AuthorizePocketTransactionRequest {
4
+ idempotencyKey: string;
5
+ pocketId: string;
6
+ operation: OperationEnum;
7
+ amount: number;
8
+ }