@routeflow/types 1.0.23 → 1.0.24
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/exports.d.ts +155 -1
- package/dist/exports.d.ts.map +1 -1
- package/dist/index.d.ts +9605 -5519
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/exports.ts +282 -1
- package/src/index.ts +9605 -5519
- package/src/CLAUDE.md +0 -17
- package/src/app/(dashboard)/documents/CLAUDE.md +0 -7
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@routeflow/types","version":"1.0.
|
|
1
|
+
{"name":"@routeflow/types","version":"1.0.24","description":"Auto-generated TypeScript types from the RouteFlow API OpenAPI specification","main":"dist/exports.js","types":"dist/exports.d.ts","exports":{".":{"types":"./dist/exports.d.ts","default":"./dist/exports.js"},"./raw":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"files":["dist","src"],"scripts":{"generate":"openapi-typescript http://localhost:3001/api/docs-json -o src/index.ts","generate:prod":"openapi-typescript https://api.routeflow.app/api/docs-json -o src/index.ts","build":"tsc","type-check":"tsc --noEmit","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souldevsoul/routeflow-types.git"},"keywords":["routeflow","api","types","typescript","openapi"],"author":"S2S Engineering","license":"MIT","devDependencies":{"openapi-typescript":"^7.4.3","typescript":"^5.7.2"},"publishConfig":{"access":"public"}}
|
package/src/exports.ts
CHANGED
|
@@ -22,7 +22,7 @@ export type StopType = components['schemas']['StopResponseDto']['type'];
|
|
|
22
22
|
export type StopStatus = components['schemas']['StopResponseDto']['status'];
|
|
23
23
|
export type DocumentType = components['schemas']['DocumentResponseDto']['type'];
|
|
24
24
|
export type CustomerType = components['schemas']['CustomerResponseDto']['type'];
|
|
25
|
-
|
|
25
|
+
// MessageType removed - MessageResponseDto is now a generic { message: string } response
|
|
26
26
|
export type StatementStatus = components['schemas']['StatementResponseDto']['status'];
|
|
27
27
|
export type ExpenseType = components['schemas']['ExpenseResponseDto']['type'];
|
|
28
28
|
export type ExpenseStatus = components['schemas']['ExpenseResponseDto']['status'];
|
|
@@ -168,9 +168,205 @@ export type ComplianceWarningType = components['schemas']['ComplianceWarningResp
|
|
|
168
168
|
|
|
169
169
|
// Dispatcher Assignment History
|
|
170
170
|
export type DispatcherAssignmentHistory = components['schemas']['DispatcherAssignmentHistoryResponseDto'];
|
|
171
|
+
export type DispatcherAssignmentHistoryList = components['schemas']['DispatcherAssignmentHistoryListResponseDto'];
|
|
171
172
|
export type DispatcherInfo = components['schemas']['DispatcherInfoDto'];
|
|
172
173
|
export type AssignedByInfo = components['schemas']['AssignedByInfoDto'];
|
|
173
174
|
|
|
175
|
+
// Carrier & Allocation
|
|
176
|
+
export type Carrier = components['schemas']['CarrierResponseDto'];
|
|
177
|
+
export type CarrierList = components['schemas']['CarrierListResponseDto'];
|
|
178
|
+
export type CarrierAllocation = components['schemas']['AllocationResponseDto'];
|
|
179
|
+
export type CarrierPartnership = components['schemas']['PartnershipResponseDto'];
|
|
180
|
+
export type PartnershipCarrier = components['schemas']['PartnershipCarrierDto'];
|
|
181
|
+
export type PartnershipDispatchOrg = components['schemas']['PartnershipDispatchOrgDto'];
|
|
182
|
+
|
|
183
|
+
// API Keys
|
|
184
|
+
export type ApiKey = components['schemas']['ApiKeyResponseDto'];
|
|
185
|
+
export type ApiKeyCreated = components['schemas']['ApiKeyCreatedResponseDto'];
|
|
186
|
+
|
|
187
|
+
// Audit Events
|
|
188
|
+
export type AuditEvent = components['schemas']['AuditEventResponseDto'];
|
|
189
|
+
export type AuditEventList = components['schemas']['AuditEventListResponseDto'];
|
|
190
|
+
|
|
191
|
+
// Dispatch
|
|
192
|
+
export type DispatchCarrierList = components['schemas']['DispatchCarrierListResponseDto'];
|
|
193
|
+
export type DispatchContext = components['schemas']['DispatchContextResponseDto'];
|
|
194
|
+
export type DispatchStatus = components['schemas']['DispatchStatusResponseDto'];
|
|
195
|
+
|
|
196
|
+
// FMCSA & Verification
|
|
197
|
+
export type FmcsaCheck = components['schemas']['FmcsaCheckResponseDto'];
|
|
198
|
+
export type VerificationStatus = components['schemas']['VerificationStatusResponseDto'];
|
|
199
|
+
|
|
200
|
+
// Notification Preferences
|
|
201
|
+
export type NotificationPreference = components['schemas']['NotificationPreferenceResponseDto'];
|
|
202
|
+
|
|
203
|
+
// Reports
|
|
204
|
+
export type OverviewReport = components['schemas']['OverviewReportDto'];
|
|
205
|
+
export type RunProfitabilityItem = components['schemas']['RunProfitabilityItemDto'];
|
|
206
|
+
export type CustomerProfitabilityItem = components['schemas']['CustomerProfitabilityItemDto'];
|
|
207
|
+
export type DriverPerformanceItem = components['schemas']['DriverPerformanceItemDto'];
|
|
208
|
+
export type FleetEfficiencyItem = components['schemas']['FleetEfficiencyItemDto'];
|
|
209
|
+
export type ExpenseBreakdownItem = components['schemas']['ExpenseBreakdownItemDto'];
|
|
210
|
+
export type TopReferrer = components['schemas']['TopReferrerDto'];
|
|
211
|
+
|
|
212
|
+
// GPU OCR
|
|
213
|
+
export type GpuOcrStatus = components['schemas']['GpuOcrStatusResponseDto'];
|
|
214
|
+
export type GpuOcrProvision = components['schemas']['GpuOcrProvisionResponseDto'];
|
|
215
|
+
|
|
216
|
+
// Invitations
|
|
217
|
+
export type Invitation = components['schemas']['InvitationResponseDto'];
|
|
218
|
+
export type InvitationDetail = components['schemas']['InvitationDetailResponseDto'];
|
|
219
|
+
export type InvitationListItem = components['schemas']['InvitationListItemDto'];
|
|
220
|
+
export type AcceptInvitationResponse = components['schemas']['AcceptInvitationResponseDto'];
|
|
221
|
+
export type InviteResponse = components['schemas']['InviteResponseDto'];
|
|
222
|
+
export type ResendInvitationResponse = components['schemas']['ResendInvitationResponseDto'];
|
|
223
|
+
export type InvitedBy = components['schemas']['InvitedByDto'];
|
|
224
|
+
export type AcceptedBy = components['schemas']['AcceptedByDto'];
|
|
225
|
+
export type AcceptedUser = components['schemas']['AcceptedUserDto'];
|
|
226
|
+
|
|
227
|
+
// Telegram Bot Response DTOs
|
|
228
|
+
export type TelegramBotInfo = components['schemas']['TelegramBotInfoResponseDto'];
|
|
229
|
+
export type TelegramMessageResponse = components['schemas']['TelegramMessageResponseDto'];
|
|
230
|
+
export type TelegramRunActionResponse = components['schemas']['TelegramRunActionResponseDto'];
|
|
231
|
+
export type TelegramExceptionResponse = components['schemas']['TelegramExceptionResponseDto'];
|
|
232
|
+
export type TelegramExpenseResponse = components['schemas']['TelegramExpenseResponseDto'];
|
|
233
|
+
export type TelegramInviteLinkResponse = components['schemas']['TelegramInviteLinkResponseDto'];
|
|
234
|
+
export type TelegramUnlinkResponse = components['schemas']['TelegramUnlinkResponseDto'];
|
|
235
|
+
|
|
236
|
+
// Success / Generic
|
|
237
|
+
export type SuccessResponse = components['schemas']['SuccessResponseDto'];
|
|
238
|
+
export type UnreadCount = components['schemas']['UnreadCountResponseDto'];
|
|
239
|
+
|
|
240
|
+
// Sessions
|
|
241
|
+
export type Session = components['schemas']['SessionResponseDto'];
|
|
242
|
+
|
|
243
|
+
// Tokens
|
|
244
|
+
export type TokenResponse = components['schemas']['TokenResponseDto'];
|
|
245
|
+
|
|
246
|
+
// Search
|
|
247
|
+
export type SearchResult = components['schemas']['SearchResultDto'];
|
|
248
|
+
export type SearchResultItem = components['schemas']['SearchResultItemDto'];
|
|
249
|
+
|
|
250
|
+
// Chat / AI
|
|
251
|
+
export type ChatResponse = components['schemas']['ChatResponseDto'];
|
|
252
|
+
export type ChatHistoryResponse = components['schemas']['ChatHistoryResponseDto'];
|
|
253
|
+
export type ChatHistoryMessage = components['schemas']['ChatHistoryMessageDto'];
|
|
254
|
+
export type Conversation = components['schemas']['ConversationResponseDto'];
|
|
255
|
+
export type ConversationList = components['schemas']['ConversationListResponseDto'];
|
|
256
|
+
export type TokenUsage = components['schemas']['TokenUsageDto'];
|
|
257
|
+
export type ToolCall = components['schemas']['ToolCallDto'];
|
|
258
|
+
|
|
259
|
+
// Onboarding
|
|
260
|
+
export type OnboardingStatus = components['schemas']['OnboardingStatusResponseDto'];
|
|
261
|
+
export type CompleteOnboardingResponse = components['schemas']['CompleteOnboardingResponseDto'];
|
|
262
|
+
|
|
263
|
+
// Two-Factor Auth
|
|
264
|
+
export type TwoFactorSetup = components['schemas']['TwoFactorSetupResponseDto'];
|
|
265
|
+
export type TwoFactorEnable = components['schemas']['TwoFactorEnableResponseDto'];
|
|
266
|
+
export type TwoFactorStatus = components['schemas']['TwoFactorStatusResponseDto'];
|
|
267
|
+
|
|
268
|
+
// Validate Reset Token
|
|
269
|
+
export type ValidateResetToken = components['schemas']['ValidateResetTokenResponseDto'];
|
|
270
|
+
|
|
271
|
+
// Assigned Runs
|
|
272
|
+
export type AssignedRunSummary = components['schemas']['AssignedRunSummaryResponseDto'];
|
|
273
|
+
export type AssignedRunList = components['schemas']['AssignedRunListResponseDto'];
|
|
274
|
+
|
|
275
|
+
// Run Charges (list)
|
|
276
|
+
export type RunChargeList = components['schemas']['RunChargeListResponseDto'];
|
|
277
|
+
export type RunChargeCreatedBy = components['schemas']['RunChargeCreatedByDto'];
|
|
278
|
+
|
|
279
|
+
// Run Summary List
|
|
280
|
+
export type RunSummaryList = components['schemas']['RunSummaryListResponseDto'];
|
|
281
|
+
|
|
282
|
+
// Document List
|
|
283
|
+
export type DocumentList = components['schemas']['DocumentListResponseDto'];
|
|
284
|
+
|
|
285
|
+
// Company Document List
|
|
286
|
+
export type CompanyDocumentList = components['schemas']['CompanyDocumentListResponseDto'];
|
|
287
|
+
|
|
288
|
+
// Parsed Document List
|
|
289
|
+
export type ParsedDocumentList = components['schemas']['ParsedDocumentListResponseDto'];
|
|
290
|
+
|
|
291
|
+
// Driver list & related
|
|
292
|
+
export type DriverList = components['schemas']['DriverListResponseDto'];
|
|
293
|
+
export type DriverLinkingCode = components['schemas']['DriverLinkingCodeResponseDto'];
|
|
294
|
+
export type LinkingCode = components['schemas']['LinkingCodeResponseDto'];
|
|
295
|
+
export type DriverLocationHistory = components['schemas']['DriverLocationHistoryResponseDto'];
|
|
296
|
+
|
|
297
|
+
// HOS
|
|
298
|
+
export type HosResponse = components['schemas']['HosResponseDto'];
|
|
299
|
+
|
|
300
|
+
// Magic Link List
|
|
301
|
+
export type MagicLinkList = components['schemas']['MagicLinkListResponseDto'];
|
|
302
|
+
|
|
303
|
+
// Org list & members
|
|
304
|
+
export type OrgList = components['schemas']['OrgListResponseDto'];
|
|
305
|
+
export type OrgMember = components['schemas']['OrgMemberResponseDto'];
|
|
306
|
+
export type OrgMemberDriver = components['schemas']['OrgMemberDriverDto'];
|
|
307
|
+
|
|
308
|
+
// Customer Stats
|
|
309
|
+
export type CustomerStats = components['schemas']['CustomerStatsResponseDto'];
|
|
310
|
+
export type CustomerContact = components['schemas']['CustomerContactDto'];
|
|
311
|
+
|
|
312
|
+
// User list & ref
|
|
313
|
+
export type UserList = components['schemas']['UserListResponseDto'];
|
|
314
|
+
export type UserRef = components['schemas']['UserRefDto'];
|
|
315
|
+
export type TruckRef = components['schemas']['TruckRefDto'];
|
|
316
|
+
export type TrailerRef = components['schemas']['TrailerRefDto'];
|
|
317
|
+
|
|
318
|
+
// Compliance Warning List
|
|
319
|
+
export type ComplianceWarningList = components['schemas']['ComplianceWarningListResponseDto'];
|
|
320
|
+
|
|
321
|
+
// Referral sub-types
|
|
322
|
+
export type ReferralCreatedBy = components['schemas']['ReferralCreatedByDto'];
|
|
323
|
+
|
|
324
|
+
// Extraction Result Data
|
|
325
|
+
export type ExtractionResultData = components['schemas']['ExtractionResultDataDto'];
|
|
326
|
+
|
|
327
|
+
// Pagination Meta
|
|
328
|
+
export type PaginationMetaDto = components['schemas']['PaginationMetaDto'];
|
|
329
|
+
|
|
330
|
+
// Factoring
|
|
331
|
+
export type FactoringInterest = components['schemas']['FactoringInterestResponseDto'];
|
|
332
|
+
export type FactoringPartner = components['schemas']['FactoringPartnerDto'];
|
|
333
|
+
export type FactoringRates = components['schemas']['FactoringRatesDto'];
|
|
334
|
+
|
|
335
|
+
// Permit Requests
|
|
336
|
+
export type PermitRequest = components['schemas']['PermitRequestResponseDto'];
|
|
337
|
+
|
|
338
|
+
// ELD extended
|
|
339
|
+
export type EldProvider = components['schemas']['EldProviderDto'];
|
|
340
|
+
export type EldPricing = components['schemas']['EldPricingDto'];
|
|
341
|
+
|
|
342
|
+
// Axle Weights
|
|
343
|
+
export type AxleWeight = components['schemas']['AxleWeightDto'];
|
|
344
|
+
export type AxleWeightResponse = components['schemas']['AxleWeightResponse'];
|
|
345
|
+
|
|
346
|
+
// State of Travel
|
|
347
|
+
export type StateOfTravel = components['schemas']['StateOfTravelDto'];
|
|
348
|
+
export type StateOfTravelResponse = components['schemas']['StateOfTravelResponse'];
|
|
349
|
+
|
|
350
|
+
// Status History
|
|
351
|
+
export type StatusHistoryEntry = components['schemas']['StatusHistoryEntry'];
|
|
352
|
+
|
|
353
|
+
// Email Log
|
|
354
|
+
export type EmailLogEntry = components['schemas']['EmailLogEntry'];
|
|
355
|
+
|
|
356
|
+
// Upload URL
|
|
357
|
+
export type UploadUrlResponse = components['schemas']['UploadUrlResponseDto'];
|
|
358
|
+
|
|
359
|
+
// Daily Check
|
|
360
|
+
export type DailyCheck = components['schemas']['DailyCheckResponseDto'];
|
|
361
|
+
export type DailyCheckOrgResult = components['schemas']['DailyCheckOrgResultDto'];
|
|
362
|
+
|
|
363
|
+
// Demo Data
|
|
364
|
+
export type ClearDemoDataResponse = components['schemas']['ClearDemoDataResponseDto'];
|
|
365
|
+
export type SetDemoStatusResponse = components['schemas']['SetDemoStatusResponseDto'];
|
|
366
|
+
|
|
367
|
+
// Analyze Document
|
|
368
|
+
export type AnalyzeDocumentResponse = components['schemas']['AnalyzeDocumentResponseDto'];
|
|
369
|
+
|
|
174
370
|
// ============================================================================
|
|
175
371
|
// REQUEST DTOs
|
|
176
372
|
// ============================================================================
|
|
@@ -182,8 +378,11 @@ export type TelegramAuthDto = components['schemas']['TelegramAuthDto'];
|
|
|
182
378
|
export type TelegramLinkDto = components['schemas']['TelegramLinkDto'];
|
|
183
379
|
export type RefreshTokenDto = components['schemas']['RefreshTokenDto'];
|
|
184
380
|
export type VerifyEmailDto = components['schemas']['VerifyEmailDto'];
|
|
381
|
+
export type ResendCodeDto = components['schemas']['ResendCodeDto'];
|
|
185
382
|
export type ForgotPasswordDto = components['schemas']['ForgotPasswordDto'];
|
|
186
383
|
export type ResetPasswordDto = components['schemas']['ResetPasswordDto'];
|
|
384
|
+
export type ChangePasswordDto = components['schemas']['ChangePasswordDto'];
|
|
385
|
+
export type DeleteAccountDto = components['schemas']['DeleteAccountDto'];
|
|
187
386
|
|
|
188
387
|
// User DTOs
|
|
189
388
|
export type CreateUserDto = components['schemas']['CreateUserDto'];
|
|
@@ -284,6 +483,83 @@ export type SignDocumentDto = components['schemas']['SignDocumentDto'];
|
|
|
284
483
|
// ELD DTOs
|
|
285
484
|
export type UpdateManualHosDto = components['schemas']['UpdateManualHosDto'];
|
|
286
485
|
export type LinkEldProviderDto = components['schemas']['LinkEldProviderDto'];
|
|
486
|
+
export type ConnectEldDto = components['schemas']['ConnectEldDto'];
|
|
487
|
+
|
|
488
|
+
// API Key DTOs
|
|
489
|
+
export type CreateApiKeyDto = components['schemas']['CreateApiKeyDto'];
|
|
490
|
+
export type UpdateApiKeyDto = components['schemas']['UpdateApiKeyDto'];
|
|
491
|
+
|
|
492
|
+
// Carrier DTOs
|
|
493
|
+
export type CreateCarrierDto = components['schemas']['CreateCarrierDto'];
|
|
494
|
+
export type UpdateCarrierDto = components['schemas']['UpdateCarrierDto'];
|
|
495
|
+
|
|
496
|
+
// Invitation DTOs
|
|
497
|
+
export type CreateInvitationDto = components['schemas']['CreateInvitationDto'];
|
|
498
|
+
export type AcceptInvitationDto = components['schemas']['AcceptInvitationDto'];
|
|
499
|
+
|
|
500
|
+
// Notification DTOs
|
|
501
|
+
export type UpdateNotificationPreferenceDto = components['schemas']['UpdateNotificationPreferenceDto'];
|
|
502
|
+
export type BulkUpdateNotificationPreferencesDto = components['schemas']['BulkUpdateNotificationPreferencesDto'];
|
|
503
|
+
|
|
504
|
+
// Verification DTOs
|
|
505
|
+
export type SubmitVerificationDto = components['schemas']['SubmitVerificationDto'];
|
|
506
|
+
export type AdminVerificationDecisionDto = components['schemas']['AdminVerificationDecisionDto'];
|
|
507
|
+
|
|
508
|
+
// Permit DTOs
|
|
509
|
+
export type CreatePermitRequestDto = components['schemas']['CreatePermitRequestDto'];
|
|
510
|
+
export type UpdatePermitRequestDto = components['schemas']['UpdatePermitRequestDto'];
|
|
511
|
+
|
|
512
|
+
// Document extended DTOs
|
|
513
|
+
export type UpdateDocumentDto = components['schemas']['UpdateDocumentDto'];
|
|
514
|
+
export type UpdateCompanyDocumentDto = components['schemas']['UpdateCompanyDocumentDto'];
|
|
515
|
+
export type LinkDocumentByUrlDto = components['schemas']['LinkDocumentByUrlDto'];
|
|
516
|
+
export type UploadDocumentDto = components['schemas']['UploadDocumentDto'];
|
|
517
|
+
export type UploadFileRequestDto = components['schemas']['UploadFileRequestDto'];
|
|
518
|
+
export type UploadUrlRequestDto = components['schemas']['UploadUrlRequestDto'];
|
|
519
|
+
export type UploadSignatureDto = components['schemas']['UploadSignatureDto'];
|
|
520
|
+
export type ParseBolDto = components['schemas']['ParseBolDto'];
|
|
521
|
+
export type AnalyzeDocumentDto = components['schemas']['AnalyzeDocumentDto'];
|
|
522
|
+
export type ReviewParsedDocumentDto = components['schemas']['ReviewParsedDocumentDto'];
|
|
523
|
+
|
|
524
|
+
// Chat DTOs
|
|
525
|
+
export type ChatRequestDto = components['schemas']['ChatRequestDto'];
|
|
526
|
+
export type ChatMessageDto = components['schemas']['ChatMessageDto'];
|
|
527
|
+
|
|
528
|
+
// Dispatch DTOs
|
|
529
|
+
export type DispatchLoadDto = components['schemas']['DispatchLoadDto'];
|
|
530
|
+
export type QueueLoadDto = components['schemas']['QueueLoadDto'];
|
|
531
|
+
|
|
532
|
+
// Onboarding DTOs
|
|
533
|
+
export type CompleteOnboardingDto = components['schemas']['CompleteOnboardingDto'];
|
|
534
|
+
export type UpdateOnboardingStatusDto = components['schemas']['UpdateOnboardingStatusDto'];
|
|
535
|
+
|
|
536
|
+
// Org extended DTOs
|
|
537
|
+
export type UpdateCompanyInfoDto = components['schemas']['UpdateCompanyInfoDto'];
|
|
538
|
+
|
|
539
|
+
// Stop extended DTOs
|
|
540
|
+
export type ReportStopExceptionDto = components['schemas']['ReportStopExceptionDto'];
|
|
541
|
+
export type RevertStopStatusDto = components['schemas']['RevertStopStatusDto'];
|
|
542
|
+
|
|
543
|
+
// Statement extended DTOs
|
|
544
|
+
export type MarkAsPaidDto = components['schemas']['MarkAsPaidDto'];
|
|
545
|
+
|
|
546
|
+
// Telegram DTOs
|
|
547
|
+
export type CreateTelegramExpenseDto = components['schemas']['CreateTelegramExpenseDto'];
|
|
548
|
+
export type SendLocationDto = components['schemas']['SendLocationDto'];
|
|
549
|
+
export type SetOnlineStatusDto = components['schemas']['SetOnlineStatusDto'];
|
|
550
|
+
export type SendDriverInviteDto = components['schemas']['SendDriverInviteDto'];
|
|
551
|
+
export type SendRunInviteDto = components['schemas']['SendRunInviteDto'];
|
|
552
|
+
|
|
553
|
+
// Email extended DTOs
|
|
554
|
+
export type UpdateEmailTagsDto = components['schemas']['UpdateEmailTagsDto'];
|
|
555
|
+
export type SendGridWebhookDto = components['schemas']['SendGridWebhookDto'];
|
|
556
|
+
|
|
557
|
+
// Factoring DTOs
|
|
558
|
+
export type ExpressFactoringInterestDto = components['schemas']['ExpressFactoringInterestDto'];
|
|
559
|
+
export type SkipFactoringDto = components['schemas']['SkipFactoringDto'];
|
|
560
|
+
|
|
561
|
+
// Driver extended DTOs
|
|
562
|
+
export type CreateFuelLogDto = components['schemas']['CreateFuelLogDto'];
|
|
287
563
|
|
|
288
564
|
// ELD type aliases (for SDK compatibility)
|
|
289
565
|
export type UpdateManualHosRequest = UpdateManualHosDto;
|
|
@@ -410,3 +686,8 @@ export interface DocumentSignedNotification {
|
|
|
410
686
|
documentType: string;
|
|
411
687
|
sentTo: string[];
|
|
412
688
|
}
|
|
689
|
+
|
|
690
|
+
// Aliases for SDK compatibility
|
|
691
|
+
export type FmcsaCheckResponse = components['schemas']['FmcsaCheckResponseDto'];
|
|
692
|
+
export type PartnershipStatus = components['schemas']['PartnershipResponseDto']['status'];
|
|
693
|
+
export type DispatchRateType = components['schemas']['PartnershipResponseDto']['rateType'];
|