resurgence-data 1.0.37 → 1.0.38

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.
@@ -164,3 +164,8 @@ export declare class InvoiceResponseDTO {
164
164
  biller: BillerResponseDTO;
165
165
  customer: CustomerResponseDTO;
166
166
  }
167
+ export declare class BillerContactCreateDto {
168
+ contactName: string;
169
+ emailAddress: string;
170
+ phoneNumber: string;
171
+ }
@@ -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.InvoiceResponseDTO = exports.BillerItemResponseDTO = exports.BillerItemCategoryResponseDTO = exports.CustomerResponseDTO = exports.BillerContactResponseDTO = exports.GoLiveRequestResponseDTO = exports.BillerDocumentResponseDTO = exports.OnboardedAccountResponseDTO = exports.SettlementAccountResponseDTO = exports.BillerChargeConfigurationResponseDTO = exports.BillerProfileResponseDTO = exports.BillerResponseDTO = exports.BankResponseDTO = exports.ServiceResponseDTO = exports.BillerCategoryResponseDTO = void 0;
12
+ exports.BillerContactCreateDto = exports.InvoiceResponseDTO = exports.BillerItemResponseDTO = exports.BillerItemCategoryResponseDTO = exports.CustomerResponseDTO = exports.BillerContactResponseDTO = exports.GoLiveRequestResponseDTO = exports.BillerDocumentResponseDTO = exports.OnboardedAccountResponseDTO = exports.SettlementAccountResponseDTO = exports.BillerChargeConfigurationResponseDTO = exports.BillerProfileResponseDTO = exports.BillerResponseDTO = exports.BankResponseDTO = exports.ServiceResponseDTO = exports.BillerCategoryResponseDTO = void 0;
13
13
  const swagger_1 = require("@nestjs/swagger");
14
14
  class BillerCategoryResponseDTO {
15
15
  }
@@ -481,3 +481,6 @@ __decorate([
481
481
  (0, swagger_1.ApiProperty)({ description: "Timestamp when the invoice was last updated." }),
482
482
  __metadata("design:type", Date)
483
483
  ], InvoiceResponseDTO.prototype, "updatedAt", void 0);
484
+ class BillerContactCreateDto {
485
+ }
486
+ exports.BillerContactCreateDto = BillerContactCreateDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "DTOs and shareable resources",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",
@@ -393,3 +393,9 @@ export class InvoiceResponseDTO {
393
393
  biller: BillerResponseDTO;
394
394
  customer: CustomerResponseDTO;
395
395
  }
396
+
397
+ export class BillerContactCreateDto {
398
+ contactName: string;
399
+ emailAddress: string;
400
+ phoneNumber: string;
401
+ }