@pulsecharterconnect/types 0.2.91 → 0.2.93
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/dist/types/Trip.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/Trip.d.ts
CHANGED
|
@@ -183,9 +183,10 @@ export declare class Participant implements IParticipant {
|
|
|
183
183
|
constructor(participant: IParticipant);
|
|
184
184
|
}
|
|
185
185
|
export interface IParticipantGroup {
|
|
186
|
+
id: string;
|
|
186
187
|
name: string;
|
|
187
188
|
description?: string;
|
|
188
|
-
|
|
189
|
+
organizationId: string;
|
|
189
190
|
participantIds: string[];
|
|
190
191
|
}
|
|
191
192
|
export interface ITripParticipant {
|