@pulsecharterconnect/types 0.2.104 → 0.2.106

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.
@@ -161,8 +161,6 @@ export interface ITransportationRequest {
161
161
  eventLog?: IEventLog[];
162
162
  isTrainingMode?: boolean;
163
163
  equipmentReturnRequested?: boolean;
164
- organProcurementOrganizationId?: string;
165
- organProcurementOrganizationContactId?: string;
166
164
  createdAt?: number;
167
165
  updatedAt?: number;
168
166
  }
@@ -241,6 +241,8 @@ export interface ITrip {
241
241
  actualCompletionTimeTimezone?: string;
242
242
  tripCommunicationsChannels?: ICommunicationsChannel[];
243
243
  tripActionHistory?: ITripActionItem[];
244
+ organProcurementOrganizationId?: string;
245
+ organProcurementOrganizationContactId?: string;
244
246
  createdAt?: number;
245
247
  updatedAt?: number;
246
248
  }
@@ -269,6 +271,8 @@ export declare class Trip implements ITrip {
269
271
  actualCompletionTimeTimezone?: string;
270
272
  tripCommunicationsChannels?: ICommunicationsChannel[];
271
273
  tripActionHistory?: ITripActionItem[] | undefined;
274
+ organProcurementOrganizationId?: string;
275
+ organProcurementOrganizationContactId?: string;
272
276
  createdAt?: number;
273
277
  updatedAt?: number;
274
278
  constructor(trip: ITrip);
@@ -183,6 +183,10 @@ class Trip {
183
183
  this.tripCommunicationsChannels =
184
184
  trip.tripCommunicationsChannels || undefined;
185
185
  this.tripActionHistory = trip.tripActionHistory || undefined;
186
+ this.organProcurementOrganizationId =
187
+ trip.organProcurementOrganizationId || undefined;
188
+ this.organProcurementOrganizationContactId =
189
+ trip.organProcurementOrganizationContactId || undefined;
186
190
  this.createdAt = trip.createdAt;
187
191
  this.updatedAt = trip.updatedAt;
188
192
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.104",
3
+ "version": "0.2.106",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",