@pulsecharterconnect/types 0.1.26 → 0.1.27

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.
@@ -114,8 +114,10 @@ export interface IParticipant {
114
114
  export declare class Participant implements IParticipant {
115
115
  id: string;
116
116
  organizationId: string;
117
+ prefix?: string;
117
118
  firstName: string;
118
119
  lastName: string;
120
+ suffix?: string;
119
121
  phoneNumber: string;
120
122
  gender?: Gender;
121
123
  birthdate?: number;
@@ -64,8 +64,10 @@ class Participant {
64
64
  constructor(participant) {
65
65
  this.id = participant.id;
66
66
  this.organizationId = participant.organizationId;
67
+ this.prefix = participant.prefix || undefined;
67
68
  this.firstName = participant.firstName;
68
69
  this.lastName = participant.lastName;
70
+ this.suffix = participant.suffix || undefined;
69
71
  this.phoneNumber = participant.phoneNumber;
70
72
  this.gender = participant.gender || undefined;
71
73
  this.dietaryPreferences = participant.dietaryPreferences || undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",