@pulsecharterconnect/types 0.2.105 → 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
|
}
|
|
@@ -189,8 +187,6 @@ export declare class TransportationRequest implements ITransportationRequest {
|
|
|
189
187
|
eventLog?: IEventLog[] | undefined;
|
|
190
188
|
isTrainingMode?: boolean;
|
|
191
189
|
equipmentReturnRequested?: boolean;
|
|
192
|
-
organProcurementOrganizationContactId?: string | undefined;
|
|
193
|
-
organProcurementOrganizationId?: string | undefined;
|
|
194
190
|
createdAt?: number;
|
|
195
191
|
updatedAt?: number;
|
|
196
192
|
constructor(transportationRequest: ITransportationRequest);
|
|
@@ -201,10 +201,6 @@ class TransportationRequest {
|
|
|
201
201
|
this.isTrainingMode = transportationRequest.isTrainingMode || false;
|
|
202
202
|
this.equipmentReturnRequested =
|
|
203
203
|
transportationRequest.equipmentReturnRequested || false;
|
|
204
|
-
this.organProcurementOrganizationContactId =
|
|
205
|
-
transportationRequest.organProcurementOrganizationContactId;
|
|
206
|
-
this.organProcurementOrganizationId =
|
|
207
|
-
transportationRequest.organProcurementOrganizationId;
|
|
208
204
|
this.createdAt = transportationRequest.createdAt;
|
|
209
205
|
this.updatedAt = transportationRequest.updatedAt;
|
|
210
206
|
}
|
package/dist/types/Trip.d.ts
CHANGED
|
@@ -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);
|
package/dist/types/Trip.js
CHANGED
|
@@ -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
|
}
|