@digiteers/uloba3-sdk 1.3.9 → 1.3.12

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.d.ts CHANGED
@@ -7553,6 +7553,7 @@ export interface paths {
7553
7553
  job_id?: string | null;
7554
7554
  account_id?: string | null;
7555
7555
  previous_inquiry_id?: string | null;
7556
+ conversation_id?: string | null;
7556
7557
  /**
7557
7558
  * Message
7558
7559
  * @description Inquiry message content
@@ -7682,6 +7683,53 @@ export interface paths {
7682
7683
  name?: string | null;
7683
7684
  type?: string | null;
7684
7685
  } | null;
7686
+ inquiry_text?: string;
7687
+ responded_at?: string | null;
7688
+ inquirer_first_name?: string | null;
7689
+ inquirer_last_name?: string | null;
7690
+ inquirer_email?: string | null;
7691
+ inquirer_phone?: string | null;
7692
+ inquirer_name?: string | null;
7693
+ assistant_first_name?: string | null;
7694
+ assistant_last_name?: string | null;
7695
+ assistant_email?: string | null;
7696
+ assistant_phone?: string | null;
7697
+ assistant_name?: string | null;
7698
+ receiver_email?: string | null;
7699
+ receiver_name?: string | null;
7700
+ receiver_phone?: string | null;
7701
+ assistant_profile_id?: string | null;
7702
+ assistant_profile_title?: string | null;
7703
+ assistant_profile_status?: string | null;
7704
+ assistant_availability_status?: string | null;
7705
+ job_title?: string | null;
7706
+ job_status?: string | null;
7707
+ job_deadline?: string | null;
7708
+ status_label?: string | null;
7709
+ has_job_reference?: boolean | null;
7710
+ has_response?: boolean | null;
7711
+ is_pending_response?: boolean | null;
7712
+ attachments?: {
7713
+ /** Format: uuid */
7714
+ id: string;
7715
+ file_name: string;
7716
+ original_name: string;
7717
+ mime_type: string;
7718
+ file_size: number;
7719
+ file_type?: string;
7720
+ description?: string;
7721
+ storage_bucket: string;
7722
+ storage_path: string;
7723
+ /** Format: uuid */
7724
+ uploaded_by: string;
7725
+ /** Format: date-time */
7726
+ created_at: string;
7727
+ }[] | null;
7728
+ is_expired?: boolean;
7729
+ days_until_expiry?: number | null;
7730
+ can_be_submitted?: boolean;
7731
+ can_be_cancelled?: boolean;
7732
+ response_required_from?: 'inquirer' | 'assistant' | 'none' | null;
7685
7733
  }[];
7686
7734
  pagination: {
7687
7735
  page: number;
@@ -7761,6 +7809,7 @@ export interface paths {
7761
7809
  job_id?: string | null;
7762
7810
  account_id?: string | null;
7763
7811
  previous_inquiry_id?: string | null;
7812
+ conversation_id?: string | null;
7764
7813
  /**
7765
7814
  * Message
7766
7815
  * @description Inquiry message content
@@ -10667,7 +10716,8 @@ export interface paths {
10667
10716
  updated_at?: string | null;
10668
10717
  };
10669
10718
  metadata: {
10670
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
10719
+ /** @description Viewer relationship to the resource */
10720
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
10671
10721
  permissions: {
10672
10722
  canView: boolean;
10673
10723
  canEdit: boolean;
@@ -11005,7 +11055,7 @@ export interface paths {
11005
11055
  patch?: never;
11006
11056
  trace?: never;
11007
11057
  };
11008
- '/api/meetings/': {
11058
+ '/api/inquiries/': {
11009
11059
  parameters: {
11010
11060
  query?: never;
11011
11061
  header?: never;
@@ -11013,195 +11063,31 @@ export interface paths {
11013
11063
  cookie?: never;
11014
11064
  };
11015
11065
  /**
11016
- * List meetings
11017
- * @description Get a list of meetings for the current user (as organizer or attendee)
11066
+ * [DEPRECATED] Use /teamlead instead
11067
+ * @description DEPRECATED: Get a list of inquiries I have sent as a coordinator. Use /teamlead endpoint instead.
11018
11068
  */
11019
11069
  get: {
11020
11070
  parameters: {
11021
11071
  query?: {
11022
- application_id?: string;
11023
- inquiry_id?: string;
11024
- status?: string;
11025
- from?: string;
11026
- to?: string;
11027
- page?: number;
11028
11072
  limit?: number;
11073
+ offset?: number;
11029
11074
  sort_by?: string;
11030
11075
  sort_order?: 'asc' | 'desc';
11076
+ archived?: boolean;
11077
+ search?: string;
11078
+ created_after?: string;
11079
+ created_before?: string;
11080
+ updated_after?: string;
11081
+ updated_before?: string;
11082
+ status?: string;
11083
+ assistant_id?: string;
11084
+ job_id?: string;
11031
11085
  };
11032
11086
  header?: never;
11033
11087
  path?: never;
11034
11088
  cookie?: never;
11035
11089
  };
11036
11090
  requestBody?: never;
11037
- responses: {
11038
- /** @description Default Response */
11039
- 200: {
11040
- headers: {
11041
- [name: string]: unknown;
11042
- };
11043
- content: {
11044
- 'application/json': {
11045
- data: unknown[];
11046
- pagination: {
11047
- page: number;
11048
- limit: number;
11049
- total: number;
11050
- has_more: boolean;
11051
- };
11052
- };
11053
- };
11054
- };
11055
- };
11056
- };
11057
- put?: never;
11058
- /**
11059
- * Create meeting
11060
- * @description Create a new meeting invitation (coordinator only)
11061
- */
11062
- post: {
11063
- parameters: {
11064
- query?: never;
11065
- header?: never;
11066
- path?: never;
11067
- cookie?: never;
11068
- };
11069
- requestBody: {
11070
- content: {
11071
- 'application/json': {
11072
- /** Format: uuid */
11073
- attendee_id: string;
11074
- /** Format: uuid */
11075
- application_id?: string;
11076
- /** Format: uuid */
11077
- inquiry_id?: string;
11078
- type: 'interview' | 'follow_up' | 'contract_review' | 'general';
11079
- purpose: 'initial_interview' | 'technical_interview' | 'cultural_fit' | 'contract_discussion' | 'onboarding' | 'performance_review' | 'other';
11080
- description?: string;
11081
- location?: string;
11082
- meeting_method: 'in_person' | 'phone' | 'video' | 'digital_platform';
11083
- /** Format: date-time */
11084
- proposed_datetime: string;
11085
- duration_minutes?: number;
11086
- };
11087
- };
11088
- };
11089
- responses: {
11090
- /** @description Default Response */
11091
- 201: {
11092
- headers: {
11093
- [name: string]: unknown;
11094
- };
11095
- content: {
11096
- 'application/json': unknown;
11097
- };
11098
- };
11099
- };
11100
- };
11101
- delete?: never;
11102
- options?: never;
11103
- head?: never;
11104
- patch?: never;
11105
- trace?: never;
11106
- };
11107
- '/api/meetings/{meetingId}': {
11108
- parameters: {
11109
- query?: never;
11110
- header?: never;
11111
- path?: never;
11112
- cookie?: never;
11113
- };
11114
- /**
11115
- * Get meeting details
11116
- * @description Get detailed information about a specific meeting
11117
- */
11118
- get: {
11119
- parameters: {
11120
- query?: never;
11121
- header?: never;
11122
- path: {
11123
- meetingId: string;
11124
- };
11125
- cookie?: never;
11126
- };
11127
- requestBody?: never;
11128
- responses: {
11129
- /** @description Default Response */
11130
- 200: {
11131
- headers: {
11132
- [name: string]: unknown;
11133
- };
11134
- content: {
11135
- 'application/json': unknown;
11136
- };
11137
- };
11138
- };
11139
- };
11140
- /**
11141
- * Update meeting
11142
- * @description Update meeting details (organizer only)
11143
- */
11144
- put: {
11145
- parameters: {
11146
- query?: never;
11147
- header?: never;
11148
- path: {
11149
- meetingId: string;
11150
- };
11151
- cookie?: never;
11152
- };
11153
- requestBody?: {
11154
- content: {
11155
- 'application/json': {
11156
- description?: string;
11157
- location?: string;
11158
- meeting_method?: 'in_person' | 'phone' | 'video' | 'digital_platform';
11159
- /** Format: date-time */
11160
- proposed_datetime?: string;
11161
- duration_minutes?: number;
11162
- };
11163
- };
11164
- };
11165
- responses: {
11166
- /** @description Default Response */
11167
- 200: {
11168
- headers: {
11169
- [name: string]: unknown;
11170
- };
11171
- content: {
11172
- 'application/json': unknown;
11173
- };
11174
- };
11175
- };
11176
- };
11177
- post?: never;
11178
- delete?: never;
11179
- options?: never;
11180
- head?: never;
11181
- patch?: never;
11182
- trace?: never;
11183
- };
11184
- '/api/meetings/{meetingId}/view': {
11185
- parameters: {
11186
- query?: never;
11187
- header?: never;
11188
- path?: never;
11189
- cookie?: never;
11190
- };
11191
- /**
11192
- * Get meeting view
11193
- * @description Get meeting data formatted for public display with optional authentication
11194
- */
11195
- get: {
11196
- parameters: {
11197
- query?: never;
11198
- header?: never;
11199
- path: {
11200
- meetingId: string;
11201
- };
11202
- cookie?: never;
11203
- };
11204
- requestBody?: never;
11205
11091
  responses: {
11206
11092
  /** @description Default Response */
11207
11093
  200: {
@@ -11211,552 +11097,11 @@ export interface paths {
11211
11097
  content: {
11212
11098
  'application/json': {
11213
11099
  data: {
11214
- /** Format: uuid */
11215
- id: string;
11216
- /** Format: uuid */
11217
- organizer_id: string;
11218
- /** Format: uuid */
11219
- attendee_id: string;
11220
- application_id: string | null;
11221
- job_id: string | null;
11222
- /** Format: uuid */
11223
- account_id: string;
11224
- inquiry_id: string | null;
11225
- type: 'interview' | 'follow_up' | 'contract_review' | 'general';
11226
- purpose: 'initial_interview' | 'technical_interview' | 'cultural_fit' | 'contract_discussion' | 'onboarding' | 'performance_review' | 'other';
11227
- description: string | null;
11228
- location: string | null;
11229
- meeting_method: 'in_person' | 'phone' | 'video' | 'digital_platform';
11230
- /** Format: date-time */
11231
- proposed_datetime: string;
11232
- duration_minutes: number | null;
11233
- alternative_datetime: string | null;
11234
- status: 'proposed' | 'accepted' | 'declined' | 'rescheduled' | 'completed' | 'cancelled';
11235
- attendee_response: unknown;
11236
- attendee_response_at: string | null;
11237
- response_message: string | null;
11238
- metadata: unknown;
11239
- assistant_deleted: boolean | null;
11240
- assistant_deleted_at: string | null;
11241
- /** Format: date-time */
11242
- created_at: string;
11243
- /** Format: date-time */
11244
- updated_at: string;
11245
- organizer?: {
11246
- /** Format: uuid */
11247
- id: string;
11248
- display_name: string;
11249
- email?: string;
11250
- phone?: string;
11251
- };
11252
- attendee?: {
11253
- /** Format: uuid */
11254
- id: string;
11255
- display_name: string;
11256
- email?: string;
11257
- phone?: string;
11258
- };
11259
- application?: {
11260
- /** Format: uuid */
11261
- id: string;
11262
- application_number: number;
11263
- status: string;
11264
- };
11265
- job?: {
11266
- /** Format: uuid */
11267
- id: string;
11268
- title: string;
11269
- status: string;
11270
- };
11271
- inquiry?: {
11272
- /** Format: uuid */
11273
- id: string;
11274
- inquiry_number: number;
11275
- status: string;
11276
- };
11277
- };
11278
- metadata: {
11279
- viewerContext: string;
11280
- permissions: {
11281
- canView: boolean;
11282
- canEdit: boolean;
11283
- canDelete: boolean;
11284
- canRespond?: boolean;
11285
- canCancel?: boolean;
11286
- canComplete?: boolean;
11287
- canReschedule?: boolean;
11288
- };
11289
- };
11290
- };
11291
- };
11292
- };
11293
- };
11294
- };
11295
- put?: never;
11296
- post?: never;
11297
- delete?: never;
11298
- options?: never;
11299
- head?: never;
11300
- patch?: never;
11301
- trace?: never;
11302
- };
11303
- '/api/meetings/{meetingId}/respond': {
11304
- parameters: {
11305
- query?: never;
11306
- header?: never;
11307
- path?: never;
11308
- cookie?: never;
11309
- };
11310
- get?: never;
11311
- put?: never;
11312
- /**
11313
- * Respond to meeting invitation
11314
- * @description Accept, decline or request reschedule for a meeting
11315
- */
11316
- post: {
11317
- parameters: {
11318
- query?: never;
11319
- header?: never;
11320
- path: {
11321
- meetingId: string;
11322
- };
11323
- cookie?: never;
11324
- };
11325
- requestBody: {
11326
- content: {
11327
- 'application/json': {
11328
- response: 'accept' | 'decline' | 'reschedule';
11329
- /** Format: date-time */
11330
- alternative_datetime?: string;
11331
- message?: string;
11332
- };
11333
- };
11334
- };
11335
- responses: {
11336
- /** @description Default Response */
11337
- 200: {
11338
- headers: {
11339
- [name: string]: unknown;
11340
- };
11341
- content: {
11342
- 'application/json': unknown;
11343
- };
11344
- };
11345
- };
11346
- };
11347
- delete?: never;
11348
- options?: never;
11349
- head?: never;
11350
- patch?: never;
11351
- trace?: never;
11352
- };
11353
- '/api/meetings/{meetingId}/cancel': {
11354
- parameters: {
11355
- query?: never;
11356
- header?: never;
11357
- path?: never;
11358
- cookie?: never;
11359
- };
11360
- get?: never;
11361
- put?: never;
11362
- /**
11363
- * Cancel meeting
11364
- * @description Cancel a meeting (organizer only)
11365
- */
11366
- post: {
11367
- parameters: {
11368
- query?: never;
11369
- header?: never;
11370
- path: {
11371
- meetingId: string;
11372
- };
11373
- cookie?: never;
11374
- };
11375
- requestBody?: {
11376
- content: {
11377
- 'application/json': {
11378
- reason?: string;
11379
- };
11380
- };
11381
- };
11382
- responses: {
11383
- /** @description Default Response */
11384
- 200: {
11385
- headers: {
11386
- [name: string]: unknown;
11387
- };
11388
- content: {
11389
- 'application/json': unknown;
11390
- };
11391
- };
11392
- };
11393
- };
11394
- delete?: never;
11395
- options?: never;
11396
- head?: never;
11397
- patch?: never;
11398
- trace?: never;
11399
- };
11400
- '/api/meetings/{meetingId}/complete': {
11401
- parameters: {
11402
- query?: never;
11403
- header?: never;
11404
- path?: never;
11405
- cookie?: never;
11406
- };
11407
- get?: never;
11408
- put?: never;
11409
- /**
11410
- * Mark meeting as completed
11411
- * @description Mark a meeting as completed (organizer only)
11412
- */
11413
- post: {
11414
- parameters: {
11415
- query?: never;
11416
- header?: never;
11417
- path: {
11418
- meetingId: string;
11419
- };
11420
- cookie?: never;
11421
- };
11422
- requestBody?: {
11423
- content: {
11424
- 'application/json': {
11425
- notes?: string;
11426
- };
11427
- };
11428
- };
11429
- responses: {
11430
- /** @description Default Response */
11431
- 200: {
11432
- headers: {
11433
- [name: string]: unknown;
11434
- };
11435
- content: {
11436
- 'application/json': unknown;
11437
- };
11438
- };
11439
- };
11440
- };
11441
- delete?: never;
11442
- options?: never;
11443
- head?: never;
11444
- patch?: never;
11445
- trace?: never;
11446
- };
11447
- '/api/meetings/{id}/attachments': {
11448
- parameters: {
11449
- query?: never;
11450
- header?: never;
11451
- path?: never;
11452
- cookie?: never;
11453
- };
11454
- /**
11455
- * List meeting attachments
11456
- * @description List all attachments for a meeting. Organizer and participants can view.
11457
- */
11458
- get: {
11459
- parameters: {
11460
- query?: never;
11461
- header?: never;
11462
- path: {
11463
- id: string;
11464
- };
11465
- cookie?: never;
11466
- };
11467
- requestBody?: never;
11468
- responses: {
11469
- /** @description Default Response */
11470
- 200: {
11471
- headers: {
11472
- [name: string]: unknown;
11473
- };
11474
- content: {
11475
- 'application/json': {
11476
- data: {
11477
- /** Format: uuid */
11478
- id: string;
11479
- file_name: string;
11480
- file_size: number;
11481
- mime_type: string;
11482
- file_type?: string;
11483
- description?: string;
11484
- created_at: string;
11485
- /** Format: uuid */
11486
- uploaded_by: string;
11487
- }[];
11488
- stats: {
11489
- totalCount: number;
11490
- totalSize: number;
11491
- fileTypes: string[] | null;
11492
- };
11493
- };
11494
- };
11495
- };
11496
- };
11497
- };
11498
- put?: never;
11499
- /**
11500
- * Upload meeting attachment
11501
- * @description Upload a new attachment to a meeting. Only organizer can upload.
11502
- */
11503
- post: {
11504
- parameters: {
11505
- query?: never;
11506
- header?: never;
11507
- path: {
11508
- id: string;
11509
- };
11510
- cookie?: never;
11511
- };
11512
- requestBody?: never;
11513
- responses: {
11514
- /** @description Default Response */
11515
- 201: {
11516
- headers: {
11517
- [name: string]: unknown;
11518
- };
11519
- content: {
11520
- 'application/json': {
11521
- data: {
11522
- /** Format: uuid */
11523
- id: string;
11524
- file_name: string;
11525
- file_size: number;
11526
- mime_type: string;
11527
- file_type?: string;
11528
- description?: string;
11529
- created_at: string;
11530
- /** Format: uuid */
11531
- uploaded_by: string;
11532
- };
11533
- };
11534
- };
11535
- };
11536
- };
11537
- };
11538
- delete?: never;
11539
- options?: never;
11540
- head?: never;
11541
- patch?: never;
11542
- trace?: never;
11543
- };
11544
- '/api/meetings/{id}/attachments/{attachmentId}': {
11545
- parameters: {
11546
- query?: never;
11547
- header?: never;
11548
- path?: never;
11549
- cookie?: never;
11550
- };
11551
- /**
11552
- * Get meeting attachment details
11553
- * @description Get details for a specific attachment. Organizer and participants can view.
11554
- */
11555
- get: {
11556
- parameters: {
11557
- query?: never;
11558
- header?: never;
11559
- path: {
11560
- id: string;
11561
- attachmentId: string;
11562
- };
11563
- cookie?: never;
11564
- };
11565
- requestBody?: never;
11566
- responses: {
11567
- /** @description Default Response */
11568
- 200: {
11569
- headers: {
11570
- [name: string]: unknown;
11571
- };
11572
- content: {
11573
- 'application/json': {
11574
- data: {
11575
- /** Format: uuid */
11576
- id: string;
11577
- file_name: string;
11578
- file_size: number;
11579
- mime_type: string;
11580
- file_type?: string;
11581
- description?: string;
11582
- created_at: string;
11583
- /** Format: uuid */
11584
- uploaded_by: string;
11585
- };
11586
- };
11587
- };
11588
- };
11589
- };
11590
- };
11591
- /**
11592
- * Update meeting attachment metadata
11593
- * @description Update attachment metadata. Only organizer can update.
11594
- */
11595
- put: {
11596
- parameters: {
11597
- query?: never;
11598
- header?: never;
11599
- path: {
11600
- id: string;
11601
- attachmentId: string;
11602
- };
11603
- cookie?: never;
11604
- };
11605
- requestBody?: {
11606
- content: {
11607
- 'application/json': {
11608
- description?: string;
11609
- file_type?: string;
11610
- };
11611
- };
11612
- };
11613
- responses: {
11614
- /** @description Default Response */
11615
- 200: {
11616
- headers: {
11617
- [name: string]: unknown;
11618
- };
11619
- content: {
11620
- 'application/json': {
11621
- data: {
11622
- /** Format: uuid */
11623
- id: string;
11624
- file_name: string;
11625
- file_size: number;
11626
- mime_type: string;
11627
- file_type?: string;
11628
- description?: string;
11629
- created_at: string;
11630
- /** Format: uuid */
11631
- uploaded_by: string;
11632
- };
11633
- };
11634
- };
11635
- };
11636
- };
11637
- };
11638
- post?: never;
11639
- /**
11640
- * Delete meeting attachment
11641
- * @description Delete an attachment. Only organizer can delete.
11642
- */
11643
- delete: {
11644
- parameters: {
11645
- query?: never;
11646
- header?: never;
11647
- path: {
11648
- id: string;
11649
- attachmentId: string;
11650
- };
11651
- cookie?: never;
11652
- };
11653
- requestBody?: never;
11654
- responses: {
11655
- /** @description Default Response */
11656
- 204: {
11657
- headers: {
11658
- [name: string]: unknown;
11659
- };
11660
- content?: never;
11661
- };
11662
- };
11663
- };
11664
- options?: never;
11665
- head?: never;
11666
- patch?: never;
11667
- trace?: never;
11668
- };
11669
- '/api/meetings/{id}/attachments/{attachmentId}/url': {
11670
- parameters: {
11671
- query?: never;
11672
- header?: never;
11673
- path?: never;
11674
- cookie?: never;
11675
- };
11676
- /**
11677
- * Get signed URL for meeting attachment
11678
- * @description Get a signed URL to download attachment. Organizer and participants can download.
11679
- */
11680
- get: {
11681
- parameters: {
11682
- query?: never;
11683
- header?: never;
11684
- path: {
11685
- id: string;
11686
- attachmentId: string;
11687
- };
11688
- cookie?: never;
11689
- };
11690
- requestBody?: never;
11691
- responses: {
11692
- /** @description Default Response */
11693
- 200: {
11694
- headers: {
11695
- [name: string]: unknown;
11696
- };
11697
- content: {
11698
- 'application/json': {
11699
- url: string;
11700
- };
11701
- };
11702
- };
11703
- };
11704
- };
11705
- put?: never;
11706
- post?: never;
11707
- delete?: never;
11708
- options?: never;
11709
- head?: never;
11710
- patch?: never;
11711
- trace?: never;
11712
- };
11713
- '/api/inquiries/': {
11714
- parameters: {
11715
- query?: never;
11716
- header?: never;
11717
- path?: never;
11718
- cookie?: never;
11719
- };
11720
- /**
11721
- * [DEPRECATED] Use /teamlead instead
11722
- * @description DEPRECATED: Get a list of inquiries I have sent as a coordinator. Use /teamlead endpoint instead.
11723
- */
11724
- get: {
11725
- parameters: {
11726
- query?: {
11727
- limit?: number;
11728
- offset?: number;
11729
- sort_by?: string;
11730
- sort_order?: 'asc' | 'desc';
11731
- archived?: boolean;
11732
- search?: string;
11733
- created_after?: string;
11734
- created_before?: string;
11735
- updated_after?: string;
11736
- updated_before?: string;
11737
- status?: string;
11738
- assistant_id?: string;
11739
- job_id?: string;
11740
- };
11741
- header?: never;
11742
- path?: never;
11743
- cookie?: never;
11744
- };
11745
- requestBody?: never;
11746
- responses: {
11747
- /** @description Default Response */
11748
- 200: {
11749
- headers: {
11750
- [name: string]: unknown;
11751
- };
11752
- content: {
11753
- 'application/json': {
11754
- data: {
11755
- /**
11756
- * UUID
11757
- * Format: uuid
11758
- * @description Universally unique identifier
11759
- */
11100
+ /**
11101
+ * UUID
11102
+ * Format: uuid
11103
+ * @description Universally unique identifier
11104
+ */
11760
11105
  id: string;
11761
11106
  /**
11762
11107
  * UUID
@@ -11779,6 +11124,7 @@ export interface paths {
11779
11124
  job_id?: string | null;
11780
11125
  account_id?: string | null;
11781
11126
  previous_inquiry_id?: string | null;
11127
+ conversation_id?: string | null;
11782
11128
  /**
11783
11129
  * Message
11784
11130
  * @description Inquiry message content
@@ -11908,6 +11254,53 @@ export interface paths {
11908
11254
  name?: string | null;
11909
11255
  type?: string | null;
11910
11256
  } | null;
11257
+ inquiry_text?: string;
11258
+ responded_at?: string | null;
11259
+ inquirer_first_name?: string | null;
11260
+ inquirer_last_name?: string | null;
11261
+ inquirer_email?: string | null;
11262
+ inquirer_phone?: string | null;
11263
+ inquirer_name?: string | null;
11264
+ assistant_first_name?: string | null;
11265
+ assistant_last_name?: string | null;
11266
+ assistant_email?: string | null;
11267
+ assistant_phone?: string | null;
11268
+ assistant_name?: string | null;
11269
+ receiver_email?: string | null;
11270
+ receiver_name?: string | null;
11271
+ receiver_phone?: string | null;
11272
+ assistant_profile_id?: string | null;
11273
+ assistant_profile_title?: string | null;
11274
+ assistant_profile_status?: string | null;
11275
+ assistant_availability_status?: string | null;
11276
+ job_title?: string | null;
11277
+ job_status?: string | null;
11278
+ job_deadline?: string | null;
11279
+ status_label?: string | null;
11280
+ has_job_reference?: boolean | null;
11281
+ has_response?: boolean | null;
11282
+ is_pending_response?: boolean | null;
11283
+ attachments?: {
11284
+ /** Format: uuid */
11285
+ id: string;
11286
+ file_name: string;
11287
+ original_name: string;
11288
+ mime_type: string;
11289
+ file_size: number;
11290
+ file_type?: string;
11291
+ description?: string;
11292
+ storage_bucket: string;
11293
+ storage_path: string;
11294
+ /** Format: uuid */
11295
+ uploaded_by: string;
11296
+ /** Format: date-time */
11297
+ created_at: string;
11298
+ }[] | null;
11299
+ is_expired?: boolean;
11300
+ days_until_expiry?: number | null;
11301
+ can_be_submitted?: boolean;
11302
+ can_be_cancelled?: boolean;
11303
+ response_required_from?: 'inquirer' | 'assistant' | 'none' | null;
11911
11304
  }[];
11912
11305
  pagination: {
11913
11306
  page: number;
@@ -11997,6 +11390,7 @@ export interface paths {
11997
11390
  job_id?: string | null;
11998
11391
  account_id?: string | null;
11999
11392
  previous_inquiry_id?: string | null;
11393
+ conversation_id?: string | null;
12000
11394
  /**
12001
11395
  * Message
12002
11396
  * @description Inquiry message content
@@ -12126,6 +11520,53 @@ export interface paths {
12126
11520
  name?: string | null;
12127
11521
  type?: string | null;
12128
11522
  } | null;
11523
+ inquiry_text?: string;
11524
+ responded_at?: string | null;
11525
+ inquirer_first_name?: string | null;
11526
+ inquirer_last_name?: string | null;
11527
+ inquirer_email?: string | null;
11528
+ inquirer_phone?: string | null;
11529
+ inquirer_name?: string | null;
11530
+ assistant_first_name?: string | null;
11531
+ assistant_last_name?: string | null;
11532
+ assistant_email?: string | null;
11533
+ assistant_phone?: string | null;
11534
+ assistant_name?: string | null;
11535
+ receiver_email?: string | null;
11536
+ receiver_name?: string | null;
11537
+ receiver_phone?: string | null;
11538
+ assistant_profile_id?: string | null;
11539
+ assistant_profile_title?: string | null;
11540
+ assistant_profile_status?: string | null;
11541
+ assistant_availability_status?: string | null;
11542
+ job_title?: string | null;
11543
+ job_status?: string | null;
11544
+ job_deadline?: string | null;
11545
+ status_label?: string | null;
11546
+ has_job_reference?: boolean | null;
11547
+ has_response?: boolean | null;
11548
+ is_pending_response?: boolean | null;
11549
+ attachments?: {
11550
+ /** Format: uuid */
11551
+ id: string;
11552
+ file_name: string;
11553
+ original_name: string;
11554
+ mime_type: string;
11555
+ file_size: number;
11556
+ file_type?: string;
11557
+ description?: string;
11558
+ storage_bucket: string;
11559
+ storage_path: string;
11560
+ /** Format: uuid */
11561
+ uploaded_by: string;
11562
+ /** Format: date-time */
11563
+ created_at: string;
11564
+ }[] | null;
11565
+ is_expired?: boolean;
11566
+ days_until_expiry?: number | null;
11567
+ can_be_submitted?: boolean;
11568
+ can_be_cancelled?: boolean;
11569
+ response_required_from?: 'inquirer' | 'assistant' | 'none' | null;
12129
11570
  }[];
12130
11571
  pagination: {
12131
11572
  page: number;
@@ -12215,6 +11656,7 @@ export interface paths {
12215
11656
  job_id?: string | null;
12216
11657
  account_id?: string | null;
12217
11658
  previous_inquiry_id?: string | null;
11659
+ conversation_id?: string | null;
12218
11660
  /**
12219
11661
  * Message
12220
11662
  * @description Inquiry message content
@@ -12344,6 +11786,53 @@ export interface paths {
12344
11786
  name?: string | null;
12345
11787
  type?: string | null;
12346
11788
  } | null;
11789
+ inquiry_text?: string;
11790
+ responded_at?: string | null;
11791
+ inquirer_first_name?: string | null;
11792
+ inquirer_last_name?: string | null;
11793
+ inquirer_email?: string | null;
11794
+ inquirer_phone?: string | null;
11795
+ inquirer_name?: string | null;
11796
+ assistant_first_name?: string | null;
11797
+ assistant_last_name?: string | null;
11798
+ assistant_email?: string | null;
11799
+ assistant_phone?: string | null;
11800
+ assistant_name?: string | null;
11801
+ receiver_email?: string | null;
11802
+ receiver_name?: string | null;
11803
+ receiver_phone?: string | null;
11804
+ assistant_profile_id?: string | null;
11805
+ assistant_profile_title?: string | null;
11806
+ assistant_profile_status?: string | null;
11807
+ assistant_availability_status?: string | null;
11808
+ job_title?: string | null;
11809
+ job_status?: string | null;
11810
+ job_deadline?: string | null;
11811
+ status_label?: string | null;
11812
+ has_job_reference?: boolean | null;
11813
+ has_response?: boolean | null;
11814
+ is_pending_response?: boolean | null;
11815
+ attachments?: {
11816
+ /** Format: uuid */
11817
+ id: string;
11818
+ file_name: string;
11819
+ original_name: string;
11820
+ mime_type: string;
11821
+ file_size: number;
11822
+ file_type?: string;
11823
+ description?: string;
11824
+ storage_bucket: string;
11825
+ storage_path: string;
11826
+ /** Format: uuid */
11827
+ uploaded_by: string;
11828
+ /** Format: date-time */
11829
+ created_at: string;
11830
+ }[] | null;
11831
+ is_expired?: boolean;
11832
+ days_until_expiry?: number | null;
11833
+ can_be_submitted?: boolean;
11834
+ can_be_cancelled?: boolean;
11835
+ response_required_from?: 'inquirer' | 'assistant' | 'none' | null;
12347
11836
  }[];
12348
11837
  pagination: {
12349
11838
  page: number;
@@ -12433,6 +11922,7 @@ export interface paths {
12433
11922
  job_id?: string | null;
12434
11923
  account_id?: string | null;
12435
11924
  previous_inquiry_id?: string | null;
11925
+ conversation_id?: string | null;
12436
11926
  /**
12437
11927
  * Message
12438
11928
  * @description Inquiry message content
@@ -12559,9 +12049,56 @@ export interface paths {
12559
12049
  * @description Universally unique identifier
12560
12050
  */
12561
12051
  id: string;
12562
- name?: string | null;
12563
- type?: string | null;
12564
- } | null;
12052
+ name?: string | null;
12053
+ type?: string | null;
12054
+ } | null;
12055
+ inquiry_text?: string;
12056
+ responded_at?: string | null;
12057
+ inquirer_first_name?: string | null;
12058
+ inquirer_last_name?: string | null;
12059
+ inquirer_email?: string | null;
12060
+ inquirer_phone?: string | null;
12061
+ inquirer_name?: string | null;
12062
+ assistant_first_name?: string | null;
12063
+ assistant_last_name?: string | null;
12064
+ assistant_email?: string | null;
12065
+ assistant_phone?: string | null;
12066
+ assistant_name?: string | null;
12067
+ receiver_email?: string | null;
12068
+ receiver_name?: string | null;
12069
+ receiver_phone?: string | null;
12070
+ assistant_profile_id?: string | null;
12071
+ assistant_profile_title?: string | null;
12072
+ assistant_profile_status?: string | null;
12073
+ assistant_availability_status?: string | null;
12074
+ job_title?: string | null;
12075
+ job_status?: string | null;
12076
+ job_deadline?: string | null;
12077
+ status_label?: string | null;
12078
+ has_job_reference?: boolean | null;
12079
+ has_response?: boolean | null;
12080
+ is_pending_response?: boolean | null;
12081
+ attachments?: {
12082
+ /** Format: uuid */
12083
+ id: string;
12084
+ file_name: string;
12085
+ original_name: string;
12086
+ mime_type: string;
12087
+ file_size: number;
12088
+ file_type?: string;
12089
+ description?: string;
12090
+ storage_bucket: string;
12091
+ storage_path: string;
12092
+ /** Format: uuid */
12093
+ uploaded_by: string;
12094
+ /** Format: date-time */
12095
+ created_at: string;
12096
+ }[] | null;
12097
+ is_expired?: boolean;
12098
+ days_until_expiry?: number | null;
12099
+ can_be_submitted?: boolean;
12100
+ can_be_cancelled?: boolean;
12101
+ response_required_from?: 'inquirer' | 'assistant' | 'none' | null;
12565
12102
  }[];
12566
12103
  pagination: {
12567
12104
  page: number;
@@ -12643,6 +12180,7 @@ export interface paths {
12643
12180
  job_id?: string | null;
12644
12181
  account_id?: string | null;
12645
12182
  previous_inquiry_id?: string | null;
12183
+ conversation_id?: string | null;
12646
12184
  /**
12647
12185
  * Message
12648
12186
  * @description Inquiry message content
@@ -12924,6 +12462,7 @@ export interface paths {
12924
12462
  job_id?: string | null;
12925
12463
  account_id?: string | null;
12926
12464
  previous_inquiry_id?: string | null;
12465
+ conversation_id?: string | null;
12927
12466
  /**
12928
12467
  * Message
12929
12468
  * @description Inquiry message content
@@ -13215,6 +12754,7 @@ export interface paths {
13215
12754
  job_id?: string | null;
13216
12755
  account_id?: string | null;
13217
12756
  previous_inquiry_id?: string | null;
12757
+ conversation_id?: string | null;
13218
12758
  /**
13219
12759
  * Message
13220
12760
  * @description Inquiry message content
@@ -13513,6 +13053,7 @@ export interface paths {
13513
13053
  job_id?: string | null;
13514
13054
  account_id?: string | null;
13515
13055
  previous_inquiry_id?: string | null;
13056
+ conversation_id?: string | null;
13516
13057
  /**
13517
13058
  * Message
13518
13059
  * @description Inquiry message content
@@ -13790,6 +13331,7 @@ export interface paths {
13790
13331
  job_id?: string | null;
13791
13332
  account_id?: string | null;
13792
13333
  previous_inquiry_id?: string | null;
13334
+ conversation_id?: string | null;
13793
13335
  /**
13794
13336
  * Message
13795
13337
  * @description Inquiry message content
@@ -14061,6 +13603,7 @@ export interface paths {
14061
13603
  job_id?: string | null;
14062
13604
  account_id?: string | null;
14063
13605
  previous_inquiry_id?: string | null;
13606
+ conversation_id?: string | null;
14064
13607
  /**
14065
13608
  * Message
14066
13609
  * @description Inquiry message content
@@ -14332,6 +13875,7 @@ export interface paths {
14332
13875
  job_id?: string | null;
14333
13876
  account_id?: string | null;
14334
13877
  previous_inquiry_id?: string | null;
13878
+ conversation_id?: string | null;
14335
13879
  /**
14336
13880
  * Message
14337
13881
  * @description Inquiry message content
@@ -14603,6 +14147,7 @@ export interface paths {
14603
14147
  job_id?: string | null;
14604
14148
  account_id?: string | null;
14605
14149
  previous_inquiry_id?: string | null;
14150
+ conversation_id?: string | null;
14606
14151
  /**
14607
14152
  * Message
14608
14153
  * @description Inquiry message content
@@ -15697,7 +15242,8 @@ export interface paths {
15697
15242
  updated_at?: string | null;
15698
15243
  };
15699
15244
  metadata: {
15700
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
15245
+ /** @description Viewer relationship to the resource */
15246
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
15701
15247
  permissions: {
15702
15248
  canView: boolean;
15703
15249
  canEdit: boolean;
@@ -15970,7 +15516,8 @@ export interface paths {
15970
15516
  updated_at?: string | null;
15971
15517
  };
15972
15518
  metadata: {
15973
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
15519
+ /** @description Viewer relationship to the resource */
15520
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
15974
15521
  permissions: {
15975
15522
  canView: boolean;
15976
15523
  canEdit: boolean;
@@ -16239,7 +15786,8 @@ export interface paths {
16239
15786
  updated_at?: string | null;
16240
15787
  };
16241
15788
  metadata: {
16242
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
15789
+ /** @description Viewer relationship to the resource */
15790
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
16243
15791
  permissions: {
16244
15792
  canView: boolean;
16245
15793
  canEdit: boolean;
@@ -16438,7 +15986,8 @@ export interface paths {
16438
15986
  updated_at?: string | null;
16439
15987
  };
16440
15988
  metadata: {
16441
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
15989
+ /** @description Viewer relationship to the resource */
15990
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
16442
15991
  permissions: {
16443
15992
  canView: boolean;
16444
15993
  canEdit: boolean;
@@ -16703,7 +16252,8 @@ export interface paths {
16703
16252
  updated_at?: string | null;
16704
16253
  };
16705
16254
  metadata: {
16706
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
16255
+ /** @description Viewer relationship to the resource */
16256
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
16707
16257
  permissions: {
16708
16258
  canView: boolean;
16709
16259
  canEdit: boolean;
@@ -18258,7 +17808,8 @@ export interface paths {
18258
17808
  updated_at?: string | null;
18259
17809
  };
18260
17810
  metadata: {
18261
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
17811
+ /** @description Viewer relationship to the resource */
17812
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
18262
17813
  permissions: {
18263
17814
  canView: boolean;
18264
17815
  canEdit: boolean;
@@ -18554,7 +18105,8 @@ export interface paths {
18554
18105
  updated_at?: string | null;
18555
18106
  };
18556
18107
  metadata: {
18557
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
18108
+ /** @description Viewer relationship to the resource */
18109
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
18558
18110
  permissions: {
18559
18111
  canView: boolean;
18560
18112
  canEdit: boolean;
@@ -18831,7 +18383,8 @@ export interface paths {
18831
18383
  updated_at?: string | null;
18832
18384
  };
18833
18385
  metadata: {
18834
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
18386
+ /** @description Viewer relationship to the resource */
18387
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
18835
18388
  permissions: {
18836
18389
  canView: boolean;
18837
18390
  canEdit: boolean;
@@ -19102,7 +18655,8 @@ export interface paths {
19102
18655
  updated_at?: string | null;
19103
18656
  };
19104
18657
  metadata: {
19105
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
18658
+ /** @description Viewer relationship to the resource */
18659
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
19106
18660
  permissions: {
19107
18661
  canView: boolean;
19108
18662
  canEdit: boolean;
@@ -19380,7 +18934,8 @@ export interface paths {
19380
18934
  updated_at?: string | null;
19381
18935
  };
19382
18936
  metadata: {
19383
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
18937
+ /** @description Viewer relationship to the resource */
18938
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
19384
18939
  permissions: {
19385
18940
  canView: boolean;
19386
18941
  canEdit: boolean;
@@ -19660,7 +19215,8 @@ export interface paths {
19660
19215
  updated_at?: string | null;
19661
19216
  };
19662
19217
  metadata: {
19663
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
19218
+ /** @description Viewer relationship to the resource */
19219
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
19664
19220
  permissions: {
19665
19221
  canView: boolean;
19666
19222
  canEdit: boolean;
@@ -19940,7 +19496,8 @@ export interface paths {
19940
19496
  updated_at?: string | null;
19941
19497
  };
19942
19498
  metadata: {
19943
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
19499
+ /** @description Viewer relationship to the resource */
19500
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
19944
19501
  permissions: {
19945
19502
  canView: boolean;
19946
19503
  canEdit: boolean;
@@ -20218,7 +19775,8 @@ export interface paths {
20218
19775
  updated_at?: string | null;
20219
19776
  };
20220
19777
  metadata: {
20221
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
19778
+ /** @description Viewer relationship to the resource */
19779
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
20222
19780
  permissions: {
20223
19781
  canView: boolean;
20224
19782
  canEdit: boolean;
@@ -20496,7 +20054,8 @@ export interface paths {
20496
20054
  updated_at?: string | null;
20497
20055
  };
20498
20056
  metadata: {
20499
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
20057
+ /** @description Viewer relationship to the resource */
20058
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
20500
20059
  permissions: {
20501
20060
  canView: boolean;
20502
20061
  canEdit: boolean;
@@ -20774,7 +20333,8 @@ export interface paths {
20774
20333
  updated_at?: string | null;
20775
20334
  };
20776
20335
  metadata: {
20777
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
20336
+ /** @description Viewer relationship to the resource */
20337
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
20778
20338
  permissions: {
20779
20339
  canView: boolean;
20780
20340
  canEdit: boolean;
@@ -21045,7 +20605,8 @@ export interface paths {
21045
20605
  updated_at?: string | null;
21046
20606
  };
21047
20607
  metadata: {
21048
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
20608
+ /** @description Viewer relationship to the resource */
20609
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
21049
20610
  permissions: {
21050
20611
  canView: boolean;
21051
20612
  canEdit: boolean;
@@ -21316,7 +20877,8 @@ export interface paths {
21316
20877
  updated_at?: string | null;
21317
20878
  };
21318
20879
  metadata: {
21319
- viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'admin' | 'worker' | 'employer';
20880
+ /** @description Viewer relationship to the resource */
20881
+ viewerContext: 'anonymous' | 'authenticated' | 'owner' | 'coordinator' | 'admin' | 'employer' | 'worker';
21320
20882
  permissions: {
21321
20883
  canView: boolean;
21322
20884
  canEdit: boolean;
@@ -24166,72 +23728,291 @@ export interface paths {
24166
23728
  metadata?: {
24167
23729
  [key: string]: unknown;
24168
23730
  };
24169
- tags?: string[];
24170
- } & {
24171
- /** Format: date-time */
24172
- created_at: string;
24173
- /** Format: date-time */
24174
- updated_at: string;
24175
- } & {
24176
- progress_percentage?: number;
24177
- requirements_total?: number;
24178
- requirements_completed?: number;
24179
- requirements_pending?: number;
24180
- }) & {
24181
- contract?: {
24182
- /** Format: uuid */
24183
- id: string;
24184
- title: string;
24185
- status: string;
24186
- employer_name?: string;
24187
- assistant_name?: string;
23731
+ tags?: string[];
23732
+ } & {
23733
+ /** Format: date-time */
23734
+ created_at: string;
23735
+ /** Format: date-time */
23736
+ updated_at: string;
23737
+ } & {
23738
+ progress_percentage?: number;
23739
+ requirements_total?: number;
23740
+ requirements_completed?: number;
23741
+ requirements_pending?: number;
23742
+ }) & {
23743
+ contract?: {
23744
+ /** Format: uuid */
23745
+ id: string;
23746
+ title: string;
23747
+ status: string;
23748
+ employer_name?: string;
23749
+ assistant_name?: string;
23750
+ };
23751
+ requirements?: ({
23752
+ /** Format: uuid */
23753
+ id: string;
23754
+ } & {
23755
+ /** Format: uuid */
23756
+ case_id: string;
23757
+ name: string;
23758
+ description?: string;
23759
+ requirement_type: 'document' | 'background_check' | 'training' | 'certification' | 'approval' | 'signature';
23760
+ priority: 'optional' | 'recommended' | 'required' | 'critical';
23761
+ } & {
23762
+ status: 'pending' | 'submitted' | 'under_review' | 'approved' | 'rejected' | 'expired';
23763
+ submitted_at?: string | null;
23764
+ approved_at?: string | null;
23765
+ rejected_at?: string | null;
23766
+ rejection_reason?: string;
23767
+ } & {
23768
+ valid_from?: string | null;
23769
+ valid_until?: string | null;
23770
+ is_expired?: boolean;
23771
+ } & {
23772
+ /** Format: date-time */
23773
+ created_at: string;
23774
+ /** Format: date-time */
23775
+ updated_at: string;
23776
+ })[];
23777
+ notes_count?: number;
23778
+ documents_count?: number;
23779
+ })[];
23780
+ pagination: {
23781
+ /** @description Positive integer (1 or greater) */
23782
+ page: number;
23783
+ /** @description Positive integer (1 or greater) */
23784
+ limit: number;
23785
+ /** @description Non-negative integer (0 or greater) */
23786
+ total: number;
23787
+ /** @description Non-negative integer (0 or greater) */
23788
+ total_pages: number;
23789
+ has_more: boolean;
23790
+ };
23791
+ meta?: {
23792
+ /** @description Non-negative integer (0 or greater) */
23793
+ total_filtered?: number;
23794
+ search_query?: string;
23795
+ /** @description Non-negative integer (0 or greater) */
23796
+ filters_applied?: number;
23797
+ };
23798
+ };
23799
+ };
23800
+ };
23801
+ /** @description Default Response */
23802
+ 400: {
23803
+ headers: {
23804
+ [name: string]: unknown;
23805
+ };
23806
+ content: {
23807
+ 'application/json': {
23808
+ error: string;
23809
+ message?: string;
23810
+ code?: string;
23811
+ details?: unknown;
23812
+ /** Format: date-time */
23813
+ timestamp?: string;
23814
+ };
23815
+ };
23816
+ };
23817
+ /** @description Default Response */
23818
+ 401: {
23819
+ headers: {
23820
+ [name: string]: unknown;
23821
+ };
23822
+ content: {
23823
+ 'application/json': {
23824
+ error: string;
23825
+ message?: string;
23826
+ code?: string;
23827
+ details?: unknown;
23828
+ /** Format: date-time */
23829
+ timestamp?: string;
23830
+ };
23831
+ };
23832
+ };
23833
+ /** @description Default Response */
23834
+ 403: {
23835
+ headers: {
23836
+ [name: string]: unknown;
23837
+ };
23838
+ content: {
23839
+ 'application/json': {
23840
+ error: string;
23841
+ message?: string;
23842
+ code?: string;
23843
+ details?: unknown;
23844
+ /** Format: date-time */
23845
+ timestamp?: string;
23846
+ };
23847
+ };
23848
+ };
23849
+ /** @description Default Response */
23850
+ 404: {
23851
+ headers: {
23852
+ [name: string]: unknown;
23853
+ };
23854
+ content: {
23855
+ 'application/json': {
23856
+ error: string;
23857
+ message?: string;
23858
+ code?: string;
23859
+ details?: unknown;
23860
+ /** Format: date-time */
23861
+ timestamp?: string;
23862
+ };
23863
+ };
23864
+ };
23865
+ /** @description Default Response */
23866
+ 422: {
23867
+ headers: {
23868
+ [name: string]: unknown;
23869
+ };
23870
+ content: {
23871
+ 'application/json': {
23872
+ error: string;
23873
+ message: string;
23874
+ errors: {
23875
+ field: string;
23876
+ message: string;
23877
+ code?: string;
23878
+ value?: unknown;
23879
+ }[];
23880
+ /** Format: date-time */
23881
+ timestamp?: string;
23882
+ };
23883
+ };
23884
+ };
23885
+ /** @description Default Response */
23886
+ 500: {
23887
+ headers: {
23888
+ [name: string]: unknown;
23889
+ };
23890
+ content: {
23891
+ 'application/json': {
23892
+ error: string;
23893
+ message?: string;
23894
+ code?: string;
23895
+ details?: unknown;
23896
+ /** Format: date-time */
23897
+ timestamp?: string;
23898
+ };
23899
+ };
23900
+ };
23901
+ };
23902
+ };
23903
+ put?: never;
23904
+ post?: never;
23905
+ delete?: never;
23906
+ options?: never;
23907
+ head?: never;
23908
+ patch?: never;
23909
+ trace?: never;
23910
+ };
23911
+ '/api/contract-cases/stats': {
23912
+ parameters: {
23913
+ query?: never;
23914
+ header?: never;
23915
+ path?: never;
23916
+ cookie?: never;
23917
+ };
23918
+ /**
23919
+ * Get case statistics
23920
+ * @description Get comprehensive statistics for contract cases. Only case managers can access.
23921
+ */
23922
+ get: {
23923
+ parameters: {
23924
+ query?: never;
23925
+ header?: never;
23926
+ path?: never;
23927
+ cookie?: never;
23928
+ };
23929
+ requestBody?: never;
23930
+ responses: {
23931
+ /** @description Standard statistics response wrapper */
23932
+ 200: {
23933
+ headers: {
23934
+ [name: string]: unknown;
23935
+ };
23936
+ content: {
23937
+ 'application/json': {
23938
+ /** @description Contract case statistics for case managers */
23939
+ data: {
23940
+ /** @description Case counts by status */
23941
+ byStatus: {
23942
+ /** @description Non-negative integer (0 or greater) */
23943
+ not_started: number;
23944
+ /** @description Non-negative integer (0 or greater) */
23945
+ in_progress: number;
23946
+ /** @description Non-negative integer (0 or greater) */
23947
+ approved: number;
23948
+ /** @description Non-negative integer (0 or greater) */
23949
+ rejected: number;
23950
+ };
23951
+ /** @description Total counts for case management */
23952
+ totals: {
23953
+ /** @description Non-negative integer (0 or greater) */
23954
+ all: number;
23955
+ /** @description Non-negative integer (0 or greater) */
23956
+ active: number;
23957
+ /** @description Non-negative integer (0 or greater) */
23958
+ myActiveCases: number;
23959
+ /** @description Non-negative integer (0 or greater) */
23960
+ unassigned: number;
23961
+ /** @description Non-negative integer (0 or greater) */
23962
+ needsAction: number;
23963
+ /** @description Non-negative integer (0 or greater) */
23964
+ completedLast30Days: number;
24188
23965
  };
24189
- requirements?: ({
24190
- /** Format: uuid */
24191
- id: string;
24192
- } & {
24193
- /** Format: uuid */
24194
- case_id: string;
24195
- name: string;
24196
- description?: string;
24197
- requirement_type: 'document' | 'background_check' | 'training' | 'certification' | 'approval' | 'signature';
24198
- priority: 'optional' | 'recommended' | 'required' | 'critical';
24199
- } & {
24200
- status: 'pending' | 'submitted' | 'under_review' | 'approved' | 'rejected' | 'expired';
24201
- submitted_at?: string | null;
24202
- approved_at?: string | null;
24203
- rejected_at?: string | null;
24204
- rejection_reason?: string;
24205
- } & {
24206
- valid_from?: string | null;
24207
- valid_until?: string | null;
24208
- is_expired?: boolean;
24209
- } & {
24210
- /** Format: date-time */
24211
- created_at: string;
24212
- /** Format: date-time */
24213
- updated_at: string;
24214
- })[];
24215
- notes_count?: number;
24216
- documents_count?: number;
24217
- })[];
24218
- pagination: {
24219
- /** @description Positive integer (1 or greater) */
24220
- page: number;
24221
- /** @description Positive integer (1 or greater) */
24222
- limit: number;
24223
- /** @description Non-negative integer (0 or greater) */
24224
- total: number;
24225
- /** @description Non-negative integer (0 or greater) */
24226
- total_pages: number;
24227
- has_more: boolean;
23966
+ /** @description Case counts by priority level */
23967
+ byPriority: {
23968
+ /** @description Non-negative integer (0 or greater) */
23969
+ urgent: number;
23970
+ /** @description Non-negative integer (0 or greater) */
23971
+ high_priority: number;
23972
+ /** @description Non-negative integer (0 or greater) */
23973
+ normal: number;
23974
+ };
23975
+ avgProcessingTime?: {
23976
+ /** @description Average hours to process a case */
23977
+ hours: number;
23978
+ /** @description Average days to process a case */
23979
+ days: number;
23980
+ };
23981
+ alerts?: {
23982
+ type: 'info' | 'warning' | 'error' | 'action_required';
23983
+ severity: 'low' | 'medium' | 'high';
23984
+ /** @description Non-negative integer (0 or greater) */
23985
+ count: number;
23986
+ message: string;
23987
+ status: string;
23988
+ }[];
24228
23989
  };
24229
- meta?: {
24230
- /** @description Non-negative integer (0 or greater) */
24231
- total_filtered?: number;
24232
- search_query?: string;
24233
- /** @description Non-negative integer (0 or greater) */
24234
- filters_applied?: number;
23990
+ /** @description Metadata about the statistics query and response */
23991
+ metadata: {
23992
+ /** @description Role context for the statistics query */
23993
+ role: 'coordinator' | 'teamlead' | 'assistant' | 'case_manager' | 'applicant';
23994
+ /**
23995
+ * Format: uuid
23996
+ * @description UUID version 4 identifier
23997
+ */
23998
+ accountId?: string;
23999
+ /**
24000
+ * Format: uuid
24001
+ * @description UUID version 4 identifier
24002
+ */
24003
+ userId?: string;
24004
+ /**
24005
+ * Format: date-time
24006
+ * @description ISO 8601 datetime format (YYYY-MM-DDTHH:mm:ss.sssZ)
24007
+ */
24008
+ queriedAt: string;
24009
+ /** @description Whether the result was served from cache */
24010
+ cached?: boolean;
24011
+ /**
24012
+ * Format: date-time
24013
+ * @description ISO 8601 datetime format (YYYY-MM-DDTHH:mm:ss.sssZ)
24014
+ */
24015
+ cacheExpiresAt?: string;
24235
24016
  };
24236
24017
  };
24237
24018
  };
@@ -25371,16 +25152,262 @@ export interface paths {
25371
25152
  /** @description Requirement ID */
25372
25153
  requirementId: string;
25373
25154
  };
25374
- cookie?: never;
25155
+ cookie?: never;
25156
+ };
25157
+ requestBody?: never;
25158
+ responses: {
25159
+ /** @description Default Response */
25160
+ 204: {
25161
+ headers: {
25162
+ [name: string]: unknown;
25163
+ };
25164
+ content?: never;
25165
+ };
25166
+ /** @description Default Response */
25167
+ 400: {
25168
+ headers: {
25169
+ [name: string]: unknown;
25170
+ };
25171
+ content: {
25172
+ 'application/json': {
25173
+ error: string;
25174
+ message?: string;
25175
+ code?: string;
25176
+ details?: unknown;
25177
+ /** Format: date-time */
25178
+ timestamp?: string;
25179
+ };
25180
+ };
25181
+ };
25182
+ /** @description Default Response */
25183
+ 401: {
25184
+ headers: {
25185
+ [name: string]: unknown;
25186
+ };
25187
+ content: {
25188
+ 'application/json': {
25189
+ error: string;
25190
+ message?: string;
25191
+ code?: string;
25192
+ details?: unknown;
25193
+ /** Format: date-time */
25194
+ timestamp?: string;
25195
+ };
25196
+ };
25197
+ };
25198
+ /** @description Default Response */
25199
+ 403: {
25200
+ headers: {
25201
+ [name: string]: unknown;
25202
+ };
25203
+ content: {
25204
+ 'application/json': {
25205
+ error: string;
25206
+ message?: string;
25207
+ code?: string;
25208
+ details?: unknown;
25209
+ /** Format: date-time */
25210
+ timestamp?: string;
25211
+ };
25212
+ };
25213
+ };
25214
+ /** @description Default Response */
25215
+ 404: {
25216
+ headers: {
25217
+ [name: string]: unknown;
25218
+ };
25219
+ content: {
25220
+ 'application/json': {
25221
+ error: string;
25222
+ message?: string;
25223
+ code?: string;
25224
+ details?: unknown;
25225
+ /** Format: date-time */
25226
+ timestamp?: string;
25227
+ };
25228
+ };
25229
+ };
25230
+ /** @description Default Response */
25231
+ 422: {
25232
+ headers: {
25233
+ [name: string]: unknown;
25234
+ };
25235
+ content: {
25236
+ 'application/json': {
25237
+ error: string;
25238
+ message: string;
25239
+ errors: {
25240
+ field: string;
25241
+ message: string;
25242
+ code?: string;
25243
+ value?: unknown;
25244
+ }[];
25245
+ /** Format: date-time */
25246
+ timestamp?: string;
25247
+ };
25248
+ };
25249
+ };
25250
+ /** @description Default Response */
25251
+ 500: {
25252
+ headers: {
25253
+ [name: string]: unknown;
25254
+ };
25255
+ content: {
25256
+ 'application/json': {
25257
+ error: string;
25258
+ message?: string;
25259
+ code?: string;
25260
+ details?: unknown;
25261
+ /** Format: date-time */
25262
+ timestamp?: string;
25263
+ };
25264
+ };
25265
+ };
25266
+ };
25267
+ };
25268
+ options?: never;
25269
+ head?: never;
25270
+ patch?: never;
25271
+ trace?: never;
25272
+ };
25273
+ '/api/contract-cases/{id}/notes': {
25274
+ parameters: {
25275
+ query?: never;
25276
+ header?: never;
25277
+ path?: never;
25278
+ cookie?: never;
25279
+ };
25280
+ get?: never;
25281
+ put?: never;
25282
+ /**
25283
+ * Add note to case
25284
+ * @description Add an internal note to the case. Only assigned case manager can add notes.
25285
+ */
25286
+ post: {
25287
+ parameters: {
25288
+ query?: never;
25289
+ header?: never;
25290
+ path: {
25291
+ id: string;
25292
+ };
25293
+ cookie?: never;
25294
+ };
25295
+ /** @description Request body for adding a note to a case */
25296
+ requestBody: {
25297
+ content: {
25298
+ 'application/json': {
25299
+ content: string;
25300
+ is_internal?: boolean;
25301
+ metadata?: {
25302
+ [key: string]: unknown;
25303
+ };
25304
+ };
25305
+ };
25375
25306
  };
25376
- requestBody?: never;
25377
25307
  responses: {
25378
- /** @description Default Response */
25379
- 204: {
25308
+ /** @description Single contract case response */
25309
+ 200: {
25380
25310
  headers: {
25381
25311
  [name: string]: unknown;
25382
25312
  };
25383
- content?: never;
25313
+ content: {
25314
+ 'application/json': {
25315
+ /**
25316
+ * Contract Case with Relations
25317
+ * @description Contract case with related entities
25318
+ */
25319
+ data: ({
25320
+ /** Format: uuid */
25321
+ id: string;
25322
+ } & {
25323
+ /** Format: uuid */
25324
+ contract_id: string;
25325
+ contract_title?: string;
25326
+ contract_type?: string;
25327
+ } & {
25328
+ case_number: string;
25329
+ title: string;
25330
+ description?: string;
25331
+ case_type?: 'standard' | 'expedited' | 'emergency' | 'review';
25332
+ priority?: 'low' | 'medium' | 'high' | 'urgent';
25333
+ } & {
25334
+ status: 'not_started' | 'in_progress' | 'waiting_for_info' | 'approved' | 'rejected' | 'cancelled';
25335
+ status_reason?: string;
25336
+ /** Format: date-time */
25337
+ status_changed_at?: string;
25338
+ /** Format: uuid */
25339
+ status_changed_by?: string;
25340
+ } & {
25341
+ assigned_to?: string | null;
25342
+ /** Format: uuid */
25343
+ assigned_by?: string;
25344
+ assigned_at?: string | null;
25345
+ assigned_to_name?: string;
25346
+ } & {
25347
+ started_at?: string | null;
25348
+ completed_at?: string | null;
25349
+ due_date?: string | null;
25350
+ estimated_completion_date?: string | null;
25351
+ } & {
25352
+ reviewed_by?: string | null;
25353
+ reviewed_at?: string | null;
25354
+ review_notes?: string;
25355
+ review_decision?: 'approve' | 'reject' | 'request_changes' | 'escalate';
25356
+ } & {
25357
+ metadata?: {
25358
+ [key: string]: unknown;
25359
+ };
25360
+ tags?: string[];
25361
+ } & {
25362
+ /** Format: date-time */
25363
+ created_at: string;
25364
+ /** Format: date-time */
25365
+ updated_at: string;
25366
+ } & {
25367
+ progress_percentage?: number;
25368
+ requirements_total?: number;
25369
+ requirements_completed?: number;
25370
+ requirements_pending?: number;
25371
+ }) & {
25372
+ contract?: {
25373
+ /** Format: uuid */
25374
+ id: string;
25375
+ title: string;
25376
+ status: string;
25377
+ employer_name?: string;
25378
+ assistant_name?: string;
25379
+ };
25380
+ requirements?: ({
25381
+ /** Format: uuid */
25382
+ id: string;
25383
+ } & {
25384
+ /** Format: uuid */
25385
+ case_id: string;
25386
+ name: string;
25387
+ description?: string;
25388
+ requirement_type: 'document' | 'background_check' | 'training' | 'certification' | 'approval' | 'signature';
25389
+ priority: 'optional' | 'recommended' | 'required' | 'critical';
25390
+ } & {
25391
+ status: 'pending' | 'submitted' | 'under_review' | 'approved' | 'rejected' | 'expired';
25392
+ submitted_at?: string | null;
25393
+ approved_at?: string | null;
25394
+ rejected_at?: string | null;
25395
+ rejection_reason?: string;
25396
+ } & {
25397
+ valid_from?: string | null;
25398
+ valid_until?: string | null;
25399
+ is_expired?: boolean;
25400
+ } & {
25401
+ /** Format: date-time */
25402
+ created_at: string;
25403
+ /** Format: date-time */
25404
+ updated_at: string;
25405
+ })[];
25406
+ notes_count?: number;
25407
+ documents_count?: number;
25408
+ };
25409
+ };
25410
+ };
25384
25411
  };
25385
25412
  /** @description Default Response */
25386
25413
  400: {
@@ -25484,12 +25511,13 @@ export interface paths {
25484
25511
  };
25485
25512
  };
25486
25513
  };
25514
+ delete?: never;
25487
25515
  options?: never;
25488
25516
  head?: never;
25489
25517
  patch?: never;
25490
25518
  trace?: never;
25491
25519
  };
25492
- '/api/contract-cases/{id}/notes': {
25520
+ '/api/contract-cases/{id}/approve': {
25493
25521
  parameters: {
25494
25522
  query?: never;
25495
25523
  header?: never;
@@ -25499,8 +25527,8 @@ export interface paths {
25499
25527
  get?: never;
25500
25528
  put?: never;
25501
25529
  /**
25502
- * Add note to case
25503
- * @description Add an internal note to the case. Only assigned case manager can add notes.
25530
+ * Approve contract case
25531
+ * @description Approve the contract case and activate the contract. Only case managers can approve.
25504
25532
  */
25505
25533
  post: {
25506
25534
  parameters: {
@@ -25511,18 +25539,7 @@ export interface paths {
25511
25539
  };
25512
25540
  cookie?: never;
25513
25541
  };
25514
- /** @description Request body for adding a note to a case */
25515
- requestBody: {
25516
- content: {
25517
- 'application/json': {
25518
- content: string;
25519
- is_internal?: boolean;
25520
- metadata?: {
25521
- [key: string]: unknown;
25522
- };
25523
- };
25524
- };
25525
- };
25542
+ requestBody?: never;
25526
25543
  responses: {
25527
25544
  /** @description Single contract case response */
25528
25545
  200: {
@@ -25736,7 +25753,7 @@ export interface paths {
25736
25753
  patch?: never;
25737
25754
  trace?: never;
25738
25755
  };
25739
- '/api/contract-cases/{id}/approve': {
25756
+ '/api/contract-cases/{id}/request-info': {
25740
25757
  parameters: {
25741
25758
  query?: never;
25742
25759
  header?: never;
@@ -25746,8 +25763,8 @@ export interface paths {
25746
25763
  get?: never;
25747
25764
  put?: never;
25748
25765
  /**
25749
- * Approve contract case
25750
- * @description Approve the contract case and activate the contract. Only case managers can approve.
25766
+ * Request additional information
25767
+ * @description Request additional information for case review. Only case managers can request info.
25751
25768
  */
25752
25769
  post: {
25753
25770
  parameters: {
@@ -25758,7 +25775,16 @@ export interface paths {
25758
25775
  };
25759
25776
  cookie?: never;
25760
25777
  };
25761
- requestBody?: never;
25778
+ requestBody: {
25779
+ content: {
25780
+ 'application/json': {
25781
+ message: string;
25782
+ required_documents: string[];
25783
+ /** Format: date-time */
25784
+ deadline?: string;
25785
+ };
25786
+ };
25787
+ };
25762
25788
  responses: {
25763
25789
  /** @description Single contract case response */
25764
25790
  200: {
@@ -25972,7 +25998,7 @@ export interface paths {
25972
25998
  patch?: never;
25973
25999
  trace?: never;
25974
26000
  };
25975
- '/api/contract-cases/{id}/request-info': {
26001
+ '/api/contract-cases/{id}/resume': {
25976
26002
  parameters: {
25977
26003
  query?: never;
25978
26004
  header?: never;
@@ -25982,8 +26008,8 @@ export interface paths {
25982
26008
  get?: never;
25983
26009
  put?: never;
25984
26010
  /**
25985
- * Request additional information
25986
- * @description Request additional information for case review. Only case managers can request info.
26011
+ * Resume case review
26012
+ * @description Resume case review after receiving requested information. Only case managers can resume cases.
25987
26013
  */
25988
26014
  post: {
25989
26015
  parameters: {
@@ -25994,13 +26020,11 @@ export interface paths {
25994
26020
  };
25995
26021
  cookie?: never;
25996
26022
  };
25997
- requestBody: {
26023
+ requestBody?: {
25998
26024
  content: {
25999
26025
  'application/json': {
26000
- message: string;
26001
- required_documents: string[];
26002
- /** Format: date-time */
26003
- deadline?: string;
26026
+ notes?: string;
26027
+ documents_received?: string[];
26004
26028
  };
26005
26029
  };
26006
26030
  };
@@ -26217,7 +26241,7 @@ export interface paths {
26217
26241
  patch?: never;
26218
26242
  trace?: never;
26219
26243
  };
26220
- '/api/contract-cases/{id}/resume': {
26244
+ '/api/contract-cases/{id}/reject': {
26221
26245
  parameters: {
26222
26246
  query?: never;
26223
26247
  header?: never;
@@ -26227,8 +26251,8 @@ export interface paths {
26227
26251
  get?: never;
26228
26252
  put?: never;
26229
26253
  /**
26230
- * Resume case review
26231
- * @description Resume case review after receiving requested information. Only case managers can resume cases.
26254
+ * Reject contract case
26255
+ * @description Reject the contract case. Only case managers can reject.
26232
26256
  */
26233
26257
  post: {
26234
26258
  parameters: {
@@ -26239,11 +26263,12 @@ export interface paths {
26239
26263
  };
26240
26264
  cookie?: never;
26241
26265
  };
26242
- requestBody?: {
26266
+ /** @description Request body for rejecting a case */
26267
+ requestBody: {
26243
26268
  content: {
26244
26269
  'application/json': {
26270
+ reason: string;
26245
26271
  notes?: string;
26246
- documents_received?: string[];
26247
26272
  };
26248
26273
  };
26249
26274
  };
@@ -26460,7 +26485,7 @@ export interface paths {
26460
26485
  patch?: never;
26461
26486
  trace?: never;
26462
26487
  };
26463
- '/api/contract-cases/{id}/reject': {
26488
+ '/api/contract-cases/{id}/archive': {
26464
26489
  parameters: {
26465
26490
  query?: never;
26466
26491
  header?: never;
@@ -26470,8 +26495,8 @@ export interface paths {
26470
26495
  get?: never;
26471
26496
  put?: never;
26472
26497
  /**
26473
- * Reject contract case
26474
- * @description Reject the contract case. Only case managers can reject.
26498
+ * Archive contract case
26499
+ * @description Archive a completed contract case (approved or rejected). Only case managers can archive.
26475
26500
  */
26476
26501
  post: {
26477
26502
  parameters: {
@@ -26482,15 +26507,7 @@ export interface paths {
26482
26507
  };
26483
26508
  cookie?: never;
26484
26509
  };
26485
- /** @description Request body for rejecting a case */
26486
- requestBody: {
26487
- content: {
26488
- 'application/json': {
26489
- reason: string;
26490
- notes?: string;
26491
- };
26492
- };
26493
- };
26510
+ requestBody?: never;
26494
26511
  responses: {
26495
26512
  /** @description Single contract case response */
26496
26513
  200: {
@@ -29263,81 +29280,6 @@ export interface paths {
29263
29280
  patch?: never;
29264
29281
  trace?: never;
29265
29282
  };
29266
- '/api/analytics/meetings': {
29267
- parameters: {
29268
- query?: never;
29269
- header?: never;
29270
- path?: never;
29271
- cookie?: never;
29272
- };
29273
- /**
29274
- * Get meeting analytics
29275
- * @description Get analytics data for meetings
29276
- */
29277
- get: {
29278
- parameters: {
29279
- query: {
29280
- period: 'day' | 'week' | 'month' | 'quarter' | 'year' | 'ytd' | 'custom';
29281
- startDate?: string;
29282
- endDate?: string;
29283
- compareWithPrevious?: boolean;
29284
- };
29285
- header?: never;
29286
- path?: never;
29287
- cookie?: never;
29288
- };
29289
- requestBody?: never;
29290
- responses: {
29291
- /** @description Default Response */
29292
- 200: {
29293
- headers: {
29294
- [name: string]: unknown;
29295
- };
29296
- content: {
29297
- 'application/json': {
29298
- metrics: {
29299
- scheduledMeetings: {
29300
- value: number;
29301
- change?: number;
29302
- changeValue?: number;
29303
- };
29304
- completedMeetings: {
29305
- value: number;
29306
- change?: number;
29307
- changeValue?: number;
29308
- };
29309
- upcomingMeetings: {
29310
- value: number;
29311
- };
29312
- completionRate: {
29313
- value: number;
29314
- };
29315
- };
29316
- timeSeries: {
29317
- date: string;
29318
- value: number;
29319
- }[];
29320
- sourceBreakdown: {
29321
- status: string;
29322
- count: number;
29323
- }[];
29324
- statusBreakdown: {
29325
- status: string;
29326
- count: number;
29327
- }[];
29328
- };
29329
- };
29330
- };
29331
- };
29332
- };
29333
- put?: never;
29334
- post?: never;
29335
- delete?: never;
29336
- options?: never;
29337
- head?: never;
29338
- patch?: never;
29339
- trace?: never;
29340
- };
29341
29283
  '/api/analytics/dashboard': {
29342
29284
  parameters: {
29343
29285
  query?: never;