@fiado/type-kit 1.1.60 → 1.1.61

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.
package/bin/index.d.ts CHANGED
@@ -23,3 +23,4 @@ export * as ContactInfo from './contactInfo';
23
23
  export * as ProductCatalog from './productCatalog';
24
24
  export * as Contract from './contract';
25
25
  export * as CreditContract from './creditContract';
26
+ export * as P2pContact from './p2pContact';
package/bin/index.js CHANGED
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Account = void 0;
26
+ exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Account = void 0;
27
27
  exports.Account = __importStar(require("./account"));
28
28
  exports.Beneficiary = __importStar(require("./beneficiary"));
29
29
  exports.Address = __importStar(require("./address"));
@@ -49,3 +49,4 @@ exports.ContactInfo = __importStar(require("./contactInfo"));
49
49
  exports.ProductCatalog = __importStar(require("./productCatalog"));
50
50
  exports.Contract = __importStar(require("./contract"));
51
51
  exports.CreditContract = __importStar(require("./creditContract"));
52
+ exports.P2pContact = __importStar(require("./p2pContact"));
@@ -0,0 +1,8 @@
1
+ import { CountryId } from "../../country";
2
+ export declare class CreateP2pContactRequest {
3
+ nickname: string;
4
+ countryId: CountryId;
5
+ isDeleted: boolean;
6
+ directoryId: string;
7
+ directoryIdOfNickname: string;
8
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateP2pContactRequest = void 0;
4
+ class CreateP2pContactRequest {
5
+ }
6
+ exports.CreateP2pContactRequest = CreateP2pContactRequest;
@@ -0,0 +1 @@
1
+ export * from './dtos/CreateP2pContactRequest';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dtos/CreateP2pContactRequest"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.1.60",
3
+ "version": "1.1.61",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
package/src/index.ts CHANGED
@@ -23,6 +23,7 @@ export * as ContactInfo from './contactInfo';
23
23
  export * as ProductCatalog from './productCatalog';
24
24
  export * as Contract from './contract';
25
25
  export * as CreditContract from './creditContract';
26
+ export * as P2pContact from './p2pContact';
26
27
 
27
28
 
28
29
 
@@ -0,0 +1,9 @@
1
+ import {CountryId} from "../../country";
2
+
3
+ export class CreateP2pContactRequest {
4
+ nickname: string;
5
+ countryId: CountryId;
6
+ isDeleted: boolean;
7
+ directoryId: string;
8
+ directoryIdOfNickname: string;
9
+ }
@@ -0,0 +1 @@
1
+ export * from './dtos/CreateP2pContactRequest';