@homespot-sdk/core 0.0.119 → 0.0.121
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/registration/index.d.ts +2 -2
- package/dist/registration/index.d.ts.map +1 -1
- package/dist/registration/index.js +1 -1
- package/dist/registration/index.js.map +1 -1
- package/dist/registration/sdk.gen.d.ts +19 -19
- package/dist/registration/sdk.gen.d.ts.map +1 -1
- package/dist/registration/sdk.gen.js +20 -20
- package/dist/registration/sdk.gen.js.map +1 -1
- package/dist/registration/transformers.gen.d.ts +2 -2
- package/dist/registration/transformers.gen.d.ts.map +1 -1
- package/dist/registration/transformers.gen.js +1 -1
- package/dist/registration/transformers.gen.js.map +1 -1
- package/dist/registration/types.gen.d.ts +53 -53
- package/dist/registration/types.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.d.ts +35 -35
- package/dist/registration/zod.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.js +35 -35
- package/dist/registration/zod.gen.js.map +1 -1
- package/dist/rem/index.d.ts +2 -2
- package/dist/rem/index.d.ts.map +1 -1
- package/dist/rem/index.js +1 -1
- package/dist/rem/index.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +55 -55
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +57 -57
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +3 -3
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +2 -2
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +159 -159
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +105 -105
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +105 -105
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/types.gen.d.ts
CHANGED
|
@@ -349,7 +349,7 @@ export type TypeEnum2 = 'JPEG' | 'JPG' | 'PNG' | 'WEBP';
|
|
|
349
349
|
export type GroupEnum = 'AGENCY' | 'INVITATION' | 'ROLE' | 'MEMBER' | 'LEAD' | 'CLIENT' | 'PROPERTY';
|
|
350
350
|
export type StatusEnum = 'PENDING' | 'ACCEPTED' | 'CANCELLED' | 'EXPIRED';
|
|
351
351
|
export type SourceTypeEnum = 'MY_HOME' | 'SS' | 'FACEBOOK' | 'YOUTUBE' | 'INSTAGRAM' | 'TIKTOK' | 'LINKEDIN' | 'UNKNOWN';
|
|
352
|
-
export type
|
|
352
|
+
export type DeleteRolesByRoleIdData = {
|
|
353
353
|
body?: never;
|
|
354
354
|
path: {
|
|
355
355
|
roleId: number;
|
|
@@ -357,14 +357,14 @@ export type RemoveRoleData = {
|
|
|
357
357
|
query?: never;
|
|
358
358
|
url: '/roles/{roleId}';
|
|
359
359
|
};
|
|
360
|
-
export type
|
|
360
|
+
export type DeleteRolesByRoleIdResponses = {
|
|
361
361
|
/**
|
|
362
362
|
* No Content
|
|
363
363
|
*/
|
|
364
364
|
204: void;
|
|
365
365
|
};
|
|
366
|
-
export type
|
|
367
|
-
export type
|
|
366
|
+
export type DeleteRolesByRoleIdResponse = DeleteRolesByRoleIdResponses[keyof DeleteRolesByRoleIdResponses];
|
|
367
|
+
export type PutRolesByRoleIdData = {
|
|
368
368
|
body: RolesRequest;
|
|
369
369
|
path: {
|
|
370
370
|
roleId: number;
|
|
@@ -372,14 +372,14 @@ export type UpdateRoleData = {
|
|
|
372
372
|
query?: never;
|
|
373
373
|
url: '/roles/{roleId}';
|
|
374
374
|
};
|
|
375
|
-
export type
|
|
375
|
+
export type PutRolesByRoleIdResponses = {
|
|
376
376
|
/**
|
|
377
377
|
* No Content
|
|
378
378
|
*/
|
|
379
379
|
204: void;
|
|
380
380
|
};
|
|
381
|
-
export type
|
|
382
|
-
export type
|
|
381
|
+
export type PutRolesByRoleIdResponse = PutRolesByRoleIdResponses[keyof PutRolesByRoleIdResponses];
|
|
382
|
+
export type PutMemberByMemberIdRoleData = {
|
|
383
383
|
body: AssignRoleRequest;
|
|
384
384
|
path: {
|
|
385
385
|
memberId: string;
|
|
@@ -387,27 +387,27 @@ export type AssignRoleData = {
|
|
|
387
387
|
query?: never;
|
|
388
388
|
url: '/member/{memberId}/role';
|
|
389
389
|
};
|
|
390
|
-
export type
|
|
390
|
+
export type PutMemberByMemberIdRoleResponses = {
|
|
391
391
|
/**
|
|
392
392
|
* No Content
|
|
393
393
|
*/
|
|
394
394
|
204: void;
|
|
395
395
|
};
|
|
396
|
-
export type
|
|
397
|
-
export type
|
|
396
|
+
export type PutMemberByMemberIdRoleResponse = PutMemberByMemberIdRoleResponses[keyof PutMemberByMemberIdRoleResponses];
|
|
397
|
+
export type PutMemberRoleData = {
|
|
398
398
|
body: BatchAssignRoleRequest;
|
|
399
399
|
path?: never;
|
|
400
400
|
query?: never;
|
|
401
401
|
url: '/member/role';
|
|
402
402
|
};
|
|
403
|
-
export type
|
|
403
|
+
export type PutMemberRoleResponses = {
|
|
404
404
|
/**
|
|
405
405
|
* No Content
|
|
406
406
|
*/
|
|
407
407
|
204: void;
|
|
408
408
|
};
|
|
409
|
-
export type
|
|
410
|
-
export type
|
|
409
|
+
export type PutMemberRoleResponse = PutMemberRoleResponses[keyof PutMemberRoleResponses];
|
|
410
|
+
export type PutLeadsByLeadIdSourceData = {
|
|
411
411
|
body: RecordSourceRequest;
|
|
412
412
|
path: {
|
|
413
413
|
leadId: number;
|
|
@@ -415,14 +415,14 @@ export type RecordSourceData = {
|
|
|
415
415
|
query?: never;
|
|
416
416
|
url: '/leads/{leadId}/source';
|
|
417
417
|
};
|
|
418
|
-
export type
|
|
418
|
+
export type PutLeadsByLeadIdSourceResponses = {
|
|
419
419
|
/**
|
|
420
420
|
* No Content
|
|
421
421
|
*/
|
|
422
422
|
204: void;
|
|
423
423
|
};
|
|
424
|
-
export type
|
|
425
|
-
export type
|
|
424
|
+
export type PutLeadsByLeadIdSourceResponse = PutLeadsByLeadIdSourceResponses[keyof PutLeadsByLeadIdSourceResponses];
|
|
425
|
+
export type PutLeadsByLeadIdNoteData = {
|
|
426
426
|
body: NoteRequest;
|
|
427
427
|
path: {
|
|
428
428
|
leadId: number;
|
|
@@ -430,14 +430,14 @@ export type AnnotateData = {
|
|
|
430
430
|
query?: never;
|
|
431
431
|
url: '/leads/{leadId}/note';
|
|
432
432
|
};
|
|
433
|
-
export type
|
|
433
|
+
export type PutLeadsByLeadIdNoteResponses = {
|
|
434
434
|
/**
|
|
435
435
|
* No Content
|
|
436
436
|
*/
|
|
437
437
|
204: void;
|
|
438
438
|
};
|
|
439
|
-
export type
|
|
440
|
-
export type
|
|
439
|
+
export type PutLeadsByLeadIdNoteResponse = PutLeadsByLeadIdNoteResponses[keyof PutLeadsByLeadIdNoteResponses];
|
|
440
|
+
export type DeleteLeadsByLeadIdIntentsByIntentIdData = {
|
|
441
441
|
body?: never;
|
|
442
442
|
path: {
|
|
443
443
|
leadId: number;
|
|
@@ -446,14 +446,14 @@ export type WithdrawData = {
|
|
|
446
446
|
query?: never;
|
|
447
447
|
url: '/leads/{leadId}/intents/{intentId}';
|
|
448
448
|
};
|
|
449
|
-
export type
|
|
449
|
+
export type DeleteLeadsByLeadIdIntentsByIntentIdResponses = {
|
|
450
450
|
/**
|
|
451
451
|
* No Content
|
|
452
452
|
*/
|
|
453
453
|
204: void;
|
|
454
454
|
};
|
|
455
|
-
export type
|
|
456
|
-
export type
|
|
455
|
+
export type DeleteLeadsByLeadIdIntentsByIntentIdResponse = DeleteLeadsByLeadIdIntentsByIntentIdResponses[keyof DeleteLeadsByLeadIdIntentsByIntentIdResponses];
|
|
456
|
+
export type PutLeadsByLeadIdIntentsByIntentIdData = {
|
|
457
457
|
body: IntentRequest;
|
|
458
458
|
path: {
|
|
459
459
|
leadId: number;
|
|
@@ -462,14 +462,14 @@ export type ReviseData = {
|
|
|
462
462
|
query?: never;
|
|
463
463
|
url: '/leads/{leadId}/intents/{intentId}';
|
|
464
464
|
};
|
|
465
|
-
export type
|
|
465
|
+
export type PutLeadsByLeadIdIntentsByIntentIdResponses = {
|
|
466
466
|
/**
|
|
467
467
|
* No Content
|
|
468
468
|
*/
|
|
469
469
|
204: void;
|
|
470
470
|
};
|
|
471
|
-
export type
|
|
472
|
-
export type
|
|
471
|
+
export type PutLeadsByLeadIdIntentsByIntentIdResponse = PutLeadsByLeadIdIntentsByIntentIdResponses[keyof PutLeadsByLeadIdIntentsByIntentIdResponses];
|
|
472
|
+
export type PutLeadsByLeadIdContactInfoData = {
|
|
473
473
|
body: ContactInfoRequest;
|
|
474
474
|
path: {
|
|
475
475
|
leadId: number;
|
|
@@ -477,14 +477,14 @@ export type CorrectContactInfoData = {
|
|
|
477
477
|
query?: never;
|
|
478
478
|
url: '/leads/{leadId}/contact-info';
|
|
479
479
|
};
|
|
480
|
-
export type
|
|
480
|
+
export type PutLeadsByLeadIdContactInfoResponses = {
|
|
481
481
|
/**
|
|
482
482
|
* No Content
|
|
483
483
|
*/
|
|
484
484
|
204: void;
|
|
485
485
|
};
|
|
486
|
-
export type
|
|
487
|
-
export type
|
|
486
|
+
export type PutLeadsByLeadIdContactInfoResponse = PutLeadsByLeadIdContactInfoResponses[keyof PutLeadsByLeadIdContactInfoResponses];
|
|
487
|
+
export type PutLeadsByLeadIdAssignmentData = {
|
|
488
488
|
body: ReassignMemberRequest;
|
|
489
489
|
path: {
|
|
490
490
|
leadId: number;
|
|
@@ -492,14 +492,14 @@ export type ReassignData = {
|
|
|
492
492
|
query?: never;
|
|
493
493
|
url: '/leads/{leadId}/assignment';
|
|
494
494
|
};
|
|
495
|
-
export type
|
|
495
|
+
export type PutLeadsByLeadIdAssignmentResponses = {
|
|
496
496
|
/**
|
|
497
497
|
* No Content
|
|
498
498
|
*/
|
|
499
499
|
204: void;
|
|
500
500
|
};
|
|
501
|
-
export type
|
|
502
|
-
export type
|
|
501
|
+
export type PutLeadsByLeadIdAssignmentResponse = PutLeadsByLeadIdAssignmentResponses[keyof PutLeadsByLeadIdAssignmentResponses];
|
|
502
|
+
export type PutClientsByClientIdSourceData = {
|
|
503
503
|
body: RecordSourceRequest;
|
|
504
504
|
path: {
|
|
505
505
|
clientId: number;
|
|
@@ -507,14 +507,14 @@ export type RecordSource1Data = {
|
|
|
507
507
|
query?: never;
|
|
508
508
|
url: '/clients/{clientId}/source';
|
|
509
509
|
};
|
|
510
|
-
export type
|
|
510
|
+
export type PutClientsByClientIdSourceResponses = {
|
|
511
511
|
/**
|
|
512
512
|
* No Content
|
|
513
513
|
*/
|
|
514
514
|
204: void;
|
|
515
515
|
};
|
|
516
|
-
export type
|
|
517
|
-
export type
|
|
516
|
+
export type PutClientsByClientIdSourceResponse = PutClientsByClientIdSourceResponses[keyof PutClientsByClientIdSourceResponses];
|
|
517
|
+
export type PutClientsByClientIdPriorityData = {
|
|
518
518
|
body: ReprioritizeClientRequest;
|
|
519
519
|
path: {
|
|
520
520
|
clientId: number;
|
|
@@ -522,14 +522,14 @@ export type ReprioritizeData = {
|
|
|
522
522
|
query?: never;
|
|
523
523
|
url: '/clients/{clientId}/priority';
|
|
524
524
|
};
|
|
525
|
-
export type
|
|
525
|
+
export type PutClientsByClientIdPriorityResponses = {
|
|
526
526
|
/**
|
|
527
527
|
* No Content
|
|
528
528
|
*/
|
|
529
529
|
204: void;
|
|
530
530
|
};
|
|
531
|
-
export type
|
|
532
|
-
export type
|
|
531
|
+
export type PutClientsByClientIdPriorityResponse = PutClientsByClientIdPriorityResponses[keyof PutClientsByClientIdPriorityResponses];
|
|
532
|
+
export type PutClientsByClientIdInterestsByInterestIdData = {
|
|
533
533
|
body: CaptureInterestRequest;
|
|
534
534
|
path: {
|
|
535
535
|
clientId: number;
|
|
@@ -538,14 +538,14 @@ export type ReviseCriteriaData = {
|
|
|
538
538
|
query?: never;
|
|
539
539
|
url: '/clients/{clientId}/interests/{interestId}';
|
|
540
540
|
};
|
|
541
|
-
export type
|
|
541
|
+
export type PutClientsByClientIdInterestsByInterestIdResponses = {
|
|
542
542
|
/**
|
|
543
543
|
* No Content
|
|
544
544
|
*/
|
|
545
545
|
204: void;
|
|
546
546
|
};
|
|
547
|
-
export type
|
|
548
|
-
export type
|
|
547
|
+
export type PutClientsByClientIdInterestsByInterestIdResponse = PutClientsByClientIdInterestsByInterestIdResponses[keyof PutClientsByClientIdInterestsByInterestIdResponses];
|
|
548
|
+
export type PutClientsByClientIdContactPreferencesData = {
|
|
549
549
|
body: UpdateContactPreferencesRequest;
|
|
550
550
|
path: {
|
|
551
551
|
clientId: number;
|
|
@@ -553,14 +553,14 @@ export type UpdateContactPreferencesData = {
|
|
|
553
553
|
query?: never;
|
|
554
554
|
url: '/clients/{clientId}/contact-preferences';
|
|
555
555
|
};
|
|
556
|
-
export type
|
|
556
|
+
export type PutClientsByClientIdContactPreferencesResponses = {
|
|
557
557
|
/**
|
|
558
558
|
* No Content
|
|
559
559
|
*/
|
|
560
560
|
204: void;
|
|
561
561
|
};
|
|
562
|
-
export type
|
|
563
|
-
export type
|
|
562
|
+
export type PutClientsByClientIdContactPreferencesResponse = PutClientsByClientIdContactPreferencesResponses[keyof PutClientsByClientIdContactPreferencesResponses];
|
|
563
|
+
export type PutClientsByClientIdContactInfoData = {
|
|
564
564
|
body: ContactInfoRequest;
|
|
565
565
|
path: {
|
|
566
566
|
clientId: number;
|
|
@@ -568,14 +568,14 @@ export type CorrectContactInfo1Data = {
|
|
|
568
568
|
query?: never;
|
|
569
569
|
url: '/clients/{clientId}/contact-info';
|
|
570
570
|
};
|
|
571
|
-
export type
|
|
571
|
+
export type PutClientsByClientIdContactInfoResponses = {
|
|
572
572
|
/**
|
|
573
573
|
* No Content
|
|
574
574
|
*/
|
|
575
575
|
204: void;
|
|
576
576
|
};
|
|
577
|
-
export type
|
|
578
|
-
export type
|
|
577
|
+
export type PutClientsByClientIdContactInfoResponse = PutClientsByClientIdContactInfoResponses[keyof PutClientsByClientIdContactInfoResponses];
|
|
578
|
+
export type PutClientsByClientIdAssignmentData = {
|
|
579
579
|
body: ReassignMemberRequest;
|
|
580
580
|
path: {
|
|
581
581
|
clientId: number;
|
|
@@ -583,14 +583,14 @@ export type Reassign1Data = {
|
|
|
583
583
|
query?: never;
|
|
584
584
|
url: '/clients/{clientId}/assignment';
|
|
585
585
|
};
|
|
586
|
-
export type
|
|
586
|
+
export type PutClientsByClientIdAssignmentResponses = {
|
|
587
587
|
/**
|
|
588
588
|
* No Content
|
|
589
589
|
*/
|
|
590
590
|
204: void;
|
|
591
591
|
};
|
|
592
|
-
export type
|
|
593
|
-
export type
|
|
592
|
+
export type PutClientsByClientIdAssignmentResponse = PutClientsByClientIdAssignmentResponses[keyof PutClientsByClientIdAssignmentResponses];
|
|
593
|
+
export type PutAgencyByAgencyIdDetailsData = {
|
|
594
594
|
body: CreateAgencyRequest;
|
|
595
595
|
path: {
|
|
596
596
|
agencyId: string;
|
|
@@ -598,14 +598,14 @@ export type CorrectRegistrationDetailsData = {
|
|
|
598
598
|
query?: never;
|
|
599
599
|
url: '/agency/{agencyId}/details';
|
|
600
600
|
};
|
|
601
|
-
export type
|
|
601
|
+
export type PutAgencyByAgencyIdDetailsResponses = {
|
|
602
602
|
/**
|
|
603
603
|
* No Content
|
|
604
604
|
*/
|
|
605
605
|
204: void;
|
|
606
606
|
};
|
|
607
|
-
export type
|
|
608
|
-
export type
|
|
607
|
+
export type PutAgencyByAgencyIdDetailsResponse = PutAgencyByAgencyIdDetailsResponses[keyof PutAgencyByAgencyIdDetailsResponses];
|
|
608
|
+
export type PutAgencyByAgencyIdActivateData = {
|
|
609
609
|
body?: never;
|
|
610
610
|
path: {
|
|
611
611
|
agencyId: string;
|
|
@@ -613,53 +613,53 @@ export type ActivateAgencyData = {
|
|
|
613
613
|
query?: never;
|
|
614
614
|
url: '/agency/{agencyId}/activate';
|
|
615
615
|
};
|
|
616
|
-
export type
|
|
616
|
+
export type PutAgencyByAgencyIdActivateResponses = {
|
|
617
617
|
/**
|
|
618
618
|
* No Content
|
|
619
619
|
*/
|
|
620
620
|
204: void;
|
|
621
621
|
};
|
|
622
|
-
export type
|
|
623
|
-
export type
|
|
622
|
+
export type PutAgencyByAgencyIdActivateResponse = PutAgencyByAgencyIdActivateResponses[keyof PutAgencyByAgencyIdActivateResponses];
|
|
623
|
+
export type PutAgencySocialMediaData = {
|
|
624
624
|
body: SocialMediasRequest;
|
|
625
625
|
path?: never;
|
|
626
626
|
query?: never;
|
|
627
627
|
url: '/agency/social-media';
|
|
628
628
|
};
|
|
629
|
-
export type
|
|
629
|
+
export type PutAgencySocialMediaResponses = {
|
|
630
630
|
/**
|
|
631
631
|
* No Content
|
|
632
632
|
*/
|
|
633
633
|
204: void;
|
|
634
634
|
};
|
|
635
|
-
export type
|
|
636
|
-
export type
|
|
635
|
+
export type PutAgencySocialMediaResponse = PutAgencySocialMediaResponses[keyof PutAgencySocialMediaResponses];
|
|
636
|
+
export type PostWalletTransferData = {
|
|
637
637
|
body: TransferFundsRequest;
|
|
638
638
|
path?: never;
|
|
639
639
|
query?: never;
|
|
640
640
|
url: '/wallet/transfer';
|
|
641
641
|
};
|
|
642
|
-
export type
|
|
642
|
+
export type PostWalletTransferResponses = {
|
|
643
643
|
/**
|
|
644
644
|
* No Content
|
|
645
645
|
*/
|
|
646
646
|
204: void;
|
|
647
647
|
};
|
|
648
|
-
export type
|
|
649
|
-
export type
|
|
648
|
+
export type PostWalletTransferResponse = PostWalletTransferResponses[keyof PostWalletTransferResponses];
|
|
649
|
+
export type PostWalletDepositData = {
|
|
650
650
|
body: DepositFundsRequest;
|
|
651
651
|
path?: never;
|
|
652
652
|
query?: never;
|
|
653
653
|
url: '/wallet/deposit';
|
|
654
654
|
};
|
|
655
|
-
export type
|
|
655
|
+
export type PostWalletDepositResponses = {
|
|
656
656
|
/**
|
|
657
657
|
* No Content
|
|
658
658
|
*/
|
|
659
659
|
204: void;
|
|
660
660
|
};
|
|
661
|
-
export type
|
|
662
|
-
export type
|
|
661
|
+
export type PostWalletDepositResponse = PostWalletDepositResponses[keyof PostWalletDepositResponses];
|
|
662
|
+
export type GetRolesData = {
|
|
663
663
|
body?: never;
|
|
664
664
|
path?: never;
|
|
665
665
|
query?: {
|
|
@@ -678,40 +678,40 @@ export type ListRolesData = {
|
|
|
678
678
|
};
|
|
679
679
|
url: '/roles';
|
|
680
680
|
};
|
|
681
|
-
export type
|
|
681
|
+
export type GetRolesResponses = {
|
|
682
682
|
/**
|
|
683
683
|
* OK
|
|
684
684
|
*/
|
|
685
685
|
200: PagedModelRoleResponse;
|
|
686
686
|
};
|
|
687
|
-
export type
|
|
688
|
-
export type
|
|
687
|
+
export type GetRolesResponse = GetRolesResponses[keyof GetRolesResponses];
|
|
688
|
+
export type PostRolesData = {
|
|
689
689
|
body: RolesRequest;
|
|
690
690
|
path?: never;
|
|
691
691
|
query?: never;
|
|
692
692
|
url: '/roles';
|
|
693
693
|
};
|
|
694
|
-
export type
|
|
694
|
+
export type PostRolesResponses = {
|
|
695
695
|
/**
|
|
696
696
|
* Created
|
|
697
697
|
*/
|
|
698
698
|
201: IdResponseInteger;
|
|
699
699
|
};
|
|
700
|
-
export type
|
|
701
|
-
export type
|
|
700
|
+
export type PostRolesResponse = PostRolesResponses[keyof PostRolesResponses];
|
|
701
|
+
export type PostLeadsData = {
|
|
702
702
|
body: CaptureLeadRequest;
|
|
703
703
|
path?: never;
|
|
704
704
|
query?: never;
|
|
705
705
|
url: '/leads';
|
|
706
706
|
};
|
|
707
|
-
export type
|
|
707
|
+
export type PostLeadsResponses = {
|
|
708
708
|
/**
|
|
709
709
|
* Created
|
|
710
710
|
*/
|
|
711
711
|
201: LeadId;
|
|
712
712
|
};
|
|
713
|
-
export type
|
|
714
|
-
export type
|
|
713
|
+
export type PostLeadsResponse = PostLeadsResponses[keyof PostLeadsResponses];
|
|
714
|
+
export type PostLeadsByLeadIdOutcomeData = {
|
|
715
715
|
body: RecordOutcomeRequest;
|
|
716
716
|
path: {
|
|
717
717
|
leadId: number;
|
|
@@ -719,14 +719,14 @@ export type RecordOutcomeData = {
|
|
|
719
719
|
query?: never;
|
|
720
720
|
url: '/leads/{leadId}/outcome';
|
|
721
721
|
};
|
|
722
|
-
export type
|
|
722
|
+
export type PostLeadsByLeadIdOutcomeResponses = {
|
|
723
723
|
/**
|
|
724
724
|
* No Content
|
|
725
725
|
*/
|
|
726
726
|
204: void;
|
|
727
727
|
};
|
|
728
|
-
export type
|
|
729
|
-
export type
|
|
728
|
+
export type PostLeadsByLeadIdOutcomeResponse = PostLeadsByLeadIdOutcomeResponses[keyof PostLeadsByLeadIdOutcomeResponses];
|
|
729
|
+
export type PostLeadsByLeadIdIntentsData = {
|
|
730
730
|
body: IntentRequest;
|
|
731
731
|
path: {
|
|
732
732
|
leadId: number;
|
|
@@ -734,13 +734,13 @@ export type ExpressData = {
|
|
|
734
734
|
query?: never;
|
|
735
735
|
url: '/leads/{leadId}/intents';
|
|
736
736
|
};
|
|
737
|
-
export type
|
|
737
|
+
export type PostLeadsByLeadIdIntentsResponses = {
|
|
738
738
|
/**
|
|
739
739
|
* Created
|
|
740
740
|
*/
|
|
741
741
|
201: unknown;
|
|
742
742
|
};
|
|
743
|
-
export type
|
|
743
|
+
export type PostLeadsByLeadIdContactedData = {
|
|
744
744
|
body?: never;
|
|
745
745
|
path: {
|
|
746
746
|
leadId: number;
|
|
@@ -748,14 +748,14 @@ export type MarkContactedData = {
|
|
|
748
748
|
query?: never;
|
|
749
749
|
url: '/leads/{leadId}/contacted';
|
|
750
750
|
};
|
|
751
|
-
export type
|
|
751
|
+
export type PostLeadsByLeadIdContactedResponses = {
|
|
752
752
|
/**
|
|
753
753
|
* No Content
|
|
754
754
|
*/
|
|
755
755
|
204: void;
|
|
756
756
|
};
|
|
757
|
-
export type
|
|
758
|
-
export type
|
|
757
|
+
export type PostLeadsByLeadIdContactedResponse = PostLeadsByLeadIdContactedResponses[keyof PostLeadsByLeadIdContactedResponses];
|
|
758
|
+
export type PostLeadsByLeadIdContactAttemptsData = {
|
|
759
759
|
body?: never;
|
|
760
760
|
path: {
|
|
761
761
|
leadId: number;
|
|
@@ -763,14 +763,14 @@ export type LogContactAttemptData = {
|
|
|
763
763
|
query?: never;
|
|
764
764
|
url: '/leads/{leadId}/contact-attempts';
|
|
765
765
|
};
|
|
766
|
-
export type
|
|
766
|
+
export type PostLeadsByLeadIdContactAttemptsResponses = {
|
|
767
767
|
/**
|
|
768
768
|
* No Content
|
|
769
769
|
*/
|
|
770
770
|
204: void;
|
|
771
771
|
};
|
|
772
|
-
export type
|
|
773
|
-
export type
|
|
772
|
+
export type PostLeadsByLeadIdContactAttemptsResponse = PostLeadsByLeadIdContactAttemptsResponses[keyof PostLeadsByLeadIdContactAttemptsResponses];
|
|
773
|
+
export type GetInvitationData = {
|
|
774
774
|
body?: never;
|
|
775
775
|
path?: never;
|
|
776
776
|
query?: {
|
|
@@ -789,26 +789,26 @@ export type GetSentInvitationsData = {
|
|
|
789
789
|
};
|
|
790
790
|
url: '/invitation';
|
|
791
791
|
};
|
|
792
|
-
export type
|
|
792
|
+
export type GetInvitationResponses = {
|
|
793
793
|
/**
|
|
794
794
|
* OK
|
|
795
795
|
*/
|
|
796
796
|
200: PagedModelInvitationViewResponse;
|
|
797
797
|
};
|
|
798
|
-
export type
|
|
799
|
-
export type
|
|
798
|
+
export type GetInvitationResponse = GetInvitationResponses[keyof GetInvitationResponses];
|
|
799
|
+
export type PostInvitationData = {
|
|
800
800
|
body: BulkRecruitmentRequest;
|
|
801
801
|
path?: never;
|
|
802
802
|
query?: never;
|
|
803
803
|
url: '/invitation';
|
|
804
804
|
};
|
|
805
|
-
export type
|
|
805
|
+
export type PostInvitationResponses = {
|
|
806
806
|
/**
|
|
807
807
|
* OK
|
|
808
808
|
*/
|
|
809
809
|
200: unknown;
|
|
810
810
|
};
|
|
811
|
-
export type
|
|
811
|
+
export type PostInvitationByInvitationIdData = {
|
|
812
812
|
body?: never;
|
|
813
813
|
path: {
|
|
814
814
|
invitationId: string;
|
|
@@ -818,39 +818,39 @@ export type AcceptInvitationData = {
|
|
|
818
818
|
};
|
|
819
819
|
url: '/invitation/{invitationId}';
|
|
820
820
|
};
|
|
821
|
-
export type
|
|
821
|
+
export type PostInvitationByInvitationIdResponses = {
|
|
822
822
|
/**
|
|
823
823
|
* OK
|
|
824
824
|
*/
|
|
825
825
|
200: unknown;
|
|
826
826
|
};
|
|
827
|
-
export type
|
|
827
|
+
export type PostInternalPrincipleData = {
|
|
828
828
|
body: AuthRequest;
|
|
829
829
|
path?: never;
|
|
830
830
|
query?: never;
|
|
831
831
|
url: '/internal/principle';
|
|
832
832
|
};
|
|
833
|
-
export type
|
|
833
|
+
export type PostInternalPrincipleResponses = {
|
|
834
834
|
/**
|
|
835
835
|
* OK
|
|
836
836
|
*/
|
|
837
837
|
200: AgencyPrincipalDto;
|
|
838
838
|
};
|
|
839
|
-
export type
|
|
840
|
-
export type
|
|
839
|
+
export type PostInternalPrincipleResponse = PostInternalPrincipleResponses[keyof PostInternalPrincipleResponses];
|
|
840
|
+
export type PostClientsData = {
|
|
841
841
|
body: OnboardClientRequest;
|
|
842
842
|
path?: never;
|
|
843
843
|
query?: never;
|
|
844
844
|
url: '/clients';
|
|
845
845
|
};
|
|
846
|
-
export type
|
|
846
|
+
export type PostClientsResponses = {
|
|
847
847
|
/**
|
|
848
848
|
* Created
|
|
849
849
|
*/
|
|
850
850
|
201: ClientId;
|
|
851
851
|
};
|
|
852
|
-
export type
|
|
853
|
-
export type
|
|
852
|
+
export type PostClientsResponse = PostClientsResponses[keyof PostClientsResponses];
|
|
853
|
+
export type PostClientsByClientIdInterestsData = {
|
|
854
854
|
body: CaptureInterestRequest;
|
|
855
855
|
path: {
|
|
856
856
|
clientId: number;
|
|
@@ -858,14 +858,14 @@ export type CreateData = {
|
|
|
858
858
|
query?: never;
|
|
859
859
|
url: '/clients/{clientId}/interests';
|
|
860
860
|
};
|
|
861
|
-
export type
|
|
861
|
+
export type PostClientsByClientIdInterestsResponses = {
|
|
862
862
|
/**
|
|
863
863
|
* Created
|
|
864
864
|
*/
|
|
865
865
|
201: InterestId;
|
|
866
866
|
};
|
|
867
|
-
export type
|
|
868
|
-
export type
|
|
867
|
+
export type PostClientsByClientIdInterestsResponse = PostClientsByClientIdInterestsResponses[keyof PostClientsByClientIdInterestsResponses];
|
|
868
|
+
export type PostClientsByClientIdInterestsByInterestIdFulfilledData = {
|
|
869
869
|
body?: never;
|
|
870
870
|
path: {
|
|
871
871
|
clientId: number;
|
|
@@ -874,14 +874,14 @@ export type FulfillData = {
|
|
|
874
874
|
query?: never;
|
|
875
875
|
url: '/clients/{clientId}/interests/{interestId}/fulfilled';
|
|
876
876
|
};
|
|
877
|
-
export type
|
|
877
|
+
export type PostClientsByClientIdInterestsByInterestIdFulfilledResponses = {
|
|
878
878
|
/**
|
|
879
879
|
* No Content
|
|
880
880
|
*/
|
|
881
881
|
204: void;
|
|
882
882
|
};
|
|
883
|
-
export type
|
|
884
|
-
export type
|
|
883
|
+
export type PostClientsByClientIdInterestsByInterestIdFulfilledResponse = PostClientsByClientIdInterestsByInterestIdFulfilledResponses[keyof PostClientsByClientIdInterestsByInterestIdFulfilledResponses];
|
|
884
|
+
export type PostClientsByClientIdInterestsByInterestIdCancelledData = {
|
|
885
885
|
body?: never;
|
|
886
886
|
path: {
|
|
887
887
|
clientId: number;
|
|
@@ -890,92 +890,92 @@ export type CancelData = {
|
|
|
890
890
|
query?: never;
|
|
891
891
|
url: '/clients/{clientId}/interests/{interestId}/cancelled';
|
|
892
892
|
};
|
|
893
|
-
export type
|
|
893
|
+
export type PostClientsByClientIdInterestsByInterestIdCancelledResponses = {
|
|
894
894
|
/**
|
|
895
895
|
* No Content
|
|
896
896
|
*/
|
|
897
897
|
204: void;
|
|
898
898
|
};
|
|
899
|
-
export type
|
|
900
|
-
export type
|
|
899
|
+
export type PostClientsByClientIdInterestsByInterestIdCancelledResponse = PostClientsByClientIdInterestsByInterestIdCancelledResponses[keyof PostClientsByClientIdInterestsByInterestIdCancelledResponses];
|
|
900
|
+
export type PostAgencyData = {
|
|
901
901
|
body: CreateAgencyRequest;
|
|
902
902
|
path?: never;
|
|
903
903
|
query?: never;
|
|
904
904
|
url: '/agency';
|
|
905
905
|
};
|
|
906
|
-
export type
|
|
906
|
+
export type PostAgencyResponses = {
|
|
907
907
|
/**
|
|
908
908
|
* Created
|
|
909
909
|
*/
|
|
910
910
|
201: IdResponseUuid;
|
|
911
911
|
};
|
|
912
|
-
export type
|
|
913
|
-
export type
|
|
912
|
+
export type PostAgencyResponse = PostAgencyResponses[keyof PostAgencyResponses];
|
|
913
|
+
export type PostAgencyPresignedUrlsData = {
|
|
914
914
|
body: PhotoRequest;
|
|
915
915
|
path?: never;
|
|
916
916
|
query?: never;
|
|
917
917
|
url: '/agency/presigned-urls';
|
|
918
918
|
};
|
|
919
|
-
export type
|
|
919
|
+
export type PostAgencyPresignedUrlsResponses = {
|
|
920
920
|
/**
|
|
921
921
|
* OK
|
|
922
922
|
*/
|
|
923
923
|
200: PresignedUrlsResponse;
|
|
924
924
|
};
|
|
925
|
-
export type
|
|
926
|
-
export type
|
|
925
|
+
export type PostAgencyPresignedUrlsResponse = PostAgencyPresignedUrlsResponses[keyof PostAgencyPresignedUrlsResponses];
|
|
926
|
+
export type PostAgencyPresignedUrlsNotifyLogoData = {
|
|
927
927
|
body: PhotoRequest;
|
|
928
928
|
path?: never;
|
|
929
929
|
query?: never;
|
|
930
930
|
url: '/agency/presigned-urls/notify/logo';
|
|
931
931
|
};
|
|
932
|
-
export type
|
|
932
|
+
export type PostAgencyPresignedUrlsNotifyLogoResponses = {
|
|
933
933
|
/**
|
|
934
934
|
* OK
|
|
935
935
|
*/
|
|
936
936
|
200: UploadAcknowledgmentResponse;
|
|
937
937
|
};
|
|
938
|
-
export type
|
|
939
|
-
export type
|
|
938
|
+
export type PostAgencyPresignedUrlsNotifyLogoResponse = PostAgencyPresignedUrlsNotifyLogoResponses[keyof PostAgencyPresignedUrlsNotifyLogoResponses];
|
|
939
|
+
export type PostAgencyPresignedUrlsNotifyCoverData = {
|
|
940
940
|
body: PhotoRequest;
|
|
941
941
|
path?: never;
|
|
942
942
|
query?: never;
|
|
943
943
|
url: '/agency/presigned-urls/notify/cover';
|
|
944
944
|
};
|
|
945
|
-
export type
|
|
945
|
+
export type PostAgencyPresignedUrlsNotifyCoverResponses = {
|
|
946
946
|
/**
|
|
947
947
|
* OK
|
|
948
948
|
*/
|
|
949
949
|
200: UploadAcknowledgmentResponse;
|
|
950
950
|
};
|
|
951
|
-
export type
|
|
952
|
-
export type
|
|
951
|
+
export type PostAgencyPresignedUrlsNotifyCoverResponse = PostAgencyPresignedUrlsNotifyCoverResponses[keyof PostAgencyPresignedUrlsNotifyCoverResponses];
|
|
952
|
+
export type GetUserMeData = {
|
|
953
953
|
body?: never;
|
|
954
954
|
path?: never;
|
|
955
955
|
query?: never;
|
|
956
956
|
url: '/user/me';
|
|
957
957
|
};
|
|
958
|
-
export type
|
|
958
|
+
export type GetUserMeResponses = {
|
|
959
959
|
/**
|
|
960
960
|
* OK
|
|
961
961
|
*/
|
|
962
962
|
200: UserContextViewResponse;
|
|
963
963
|
};
|
|
964
|
-
export type
|
|
965
|
-
export type
|
|
964
|
+
export type GetUserMeResponse = GetUserMeResponses[keyof GetUserMeResponses];
|
|
965
|
+
export type GetPublicPermissionsData = {
|
|
966
966
|
body?: never;
|
|
967
967
|
path?: never;
|
|
968
968
|
query?: never;
|
|
969
969
|
url: '/public/permissions';
|
|
970
970
|
};
|
|
971
|
-
export type
|
|
971
|
+
export type GetPublicPermissionsResponses = {
|
|
972
972
|
/**
|
|
973
973
|
* OK
|
|
974
974
|
*/
|
|
975
975
|
200: Array<GroupedPermissionsResponse>;
|
|
976
976
|
};
|
|
977
|
-
export type
|
|
978
|
-
export type
|
|
977
|
+
export type GetPublicPermissionsResponse = GetPublicPermissionsResponses[keyof GetPublicPermissionsResponses];
|
|
978
|
+
export type GetPublicInvitationByInvitationIdData = {
|
|
979
979
|
body?: never;
|
|
980
980
|
path: {
|
|
981
981
|
invitationId: string;
|
|
@@ -985,14 +985,14 @@ export type GetInvitationDetailsData = {
|
|
|
985
985
|
};
|
|
986
986
|
url: '/public/invitation/{invitationId}';
|
|
987
987
|
};
|
|
988
|
-
export type
|
|
988
|
+
export type GetPublicInvitationByInvitationIdResponses = {
|
|
989
989
|
/**
|
|
990
990
|
* OK
|
|
991
991
|
*/
|
|
992
992
|
200: InvitationDetailsResponse;
|
|
993
993
|
};
|
|
994
|
-
export type
|
|
995
|
-
export type
|
|
994
|
+
export type GetPublicInvitationByInvitationIdResponse = GetPublicInvitationByInvitationIdResponses[keyof GetPublicInvitationByInvitationIdResponses];
|
|
995
|
+
export type GetPublicAgencyData = {
|
|
996
996
|
body?: never;
|
|
997
997
|
path?: never;
|
|
998
998
|
query?: {
|
|
@@ -1012,14 +1012,14 @@ export type GetAllAgenciesData = {
|
|
|
1012
1012
|
};
|
|
1013
1013
|
url: '/public/agency';
|
|
1014
1014
|
};
|
|
1015
|
-
export type
|
|
1015
|
+
export type GetPublicAgencyResponses = {
|
|
1016
1016
|
/**
|
|
1017
1017
|
* OK
|
|
1018
1018
|
*/
|
|
1019
1019
|
200: PagedModelAgencySummaryResponse;
|
|
1020
1020
|
};
|
|
1021
|
-
export type
|
|
1022
|
-
export type
|
|
1021
|
+
export type GetPublicAgencyResponse = GetPublicAgencyResponses[keyof GetPublicAgencyResponses];
|
|
1022
|
+
export type GetPublicAgencySubdomainBySubDomainData = {
|
|
1023
1023
|
body?: never;
|
|
1024
1024
|
path: {
|
|
1025
1025
|
subDomain: string;
|
|
@@ -1027,14 +1027,14 @@ export type GetAgencyBySubdomainData = {
|
|
|
1027
1027
|
query?: never;
|
|
1028
1028
|
url: '/public/agency/subdomain/{subDomain}';
|
|
1029
1029
|
};
|
|
1030
|
-
export type
|
|
1030
|
+
export type GetPublicAgencySubdomainBySubDomainResponses = {
|
|
1031
1031
|
/**
|
|
1032
1032
|
* OK
|
|
1033
1033
|
*/
|
|
1034
1034
|
200: AgencySummaryResponse;
|
|
1035
1035
|
};
|
|
1036
|
-
export type
|
|
1037
|
-
export type
|
|
1036
|
+
export type GetPublicAgencySubdomainBySubDomainResponse = GetPublicAgencySubdomainBySubDomainResponses[keyof GetPublicAgencySubdomainBySubDomainResponses];
|
|
1037
|
+
export type GetMemberData = {
|
|
1038
1038
|
body?: never;
|
|
1039
1039
|
path?: never;
|
|
1040
1040
|
query?: {
|
|
@@ -1054,14 +1054,14 @@ export type GetAllMembersData = {
|
|
|
1054
1054
|
};
|
|
1055
1055
|
url: '/member';
|
|
1056
1056
|
};
|
|
1057
|
-
export type
|
|
1057
|
+
export type GetMemberResponses = {
|
|
1058
1058
|
/**
|
|
1059
1059
|
* OK
|
|
1060
1060
|
*/
|
|
1061
1061
|
200: PagedModelMemberViewResponse;
|
|
1062
1062
|
};
|
|
1063
|
-
export type
|
|
1064
|
-
export type
|
|
1063
|
+
export type GetMemberResponse = GetMemberResponses[keyof GetMemberResponses];
|
|
1064
|
+
export type GetLeadData = {
|
|
1065
1065
|
body?: never;
|
|
1066
1066
|
path?: never;
|
|
1067
1067
|
query?: {
|
|
@@ -1083,14 +1083,14 @@ export type SearchData = {
|
|
|
1083
1083
|
};
|
|
1084
1084
|
url: '/lead';
|
|
1085
1085
|
};
|
|
1086
|
-
export type
|
|
1086
|
+
export type GetLeadResponses = {
|
|
1087
1087
|
/**
|
|
1088
1088
|
* OK
|
|
1089
1089
|
*/
|
|
1090
1090
|
200: PagedModelLeadGridResponse;
|
|
1091
1091
|
};
|
|
1092
|
-
export type
|
|
1093
|
-
export type
|
|
1092
|
+
export type GetLeadResponse = GetLeadResponses[keyof GetLeadResponses];
|
|
1093
|
+
export type GetLeadByLeadIdData = {
|
|
1094
1094
|
body?: never;
|
|
1095
1095
|
path: {
|
|
1096
1096
|
leadId: number;
|
|
@@ -1098,14 +1098,14 @@ export type GetByIdData = {
|
|
|
1098
1098
|
query?: never;
|
|
1099
1099
|
url: '/lead/{leadId}';
|
|
1100
1100
|
};
|
|
1101
|
-
export type
|
|
1101
|
+
export type GetLeadByLeadIdResponses = {
|
|
1102
1102
|
/**
|
|
1103
1103
|
* OK
|
|
1104
1104
|
*/
|
|
1105
1105
|
200: LeadGridResponse;
|
|
1106
1106
|
};
|
|
1107
|
-
export type
|
|
1108
|
-
export type
|
|
1107
|
+
export type GetLeadByLeadIdResponse = GetLeadByLeadIdResponses[keyof GetLeadByLeadIdResponses];
|
|
1108
|
+
export type GetLeadMineData = {
|
|
1109
1109
|
body?: never;
|
|
1110
1110
|
path?: never;
|
|
1111
1111
|
query?: {
|
|
@@ -1127,14 +1127,14 @@ export type SearchMineData = {
|
|
|
1127
1127
|
};
|
|
1128
1128
|
url: '/lead/mine';
|
|
1129
1129
|
};
|
|
1130
|
-
export type
|
|
1130
|
+
export type GetLeadMineResponses = {
|
|
1131
1131
|
/**
|
|
1132
1132
|
* OK
|
|
1133
1133
|
*/
|
|
1134
1134
|
200: PagedModelLeadGridResponse;
|
|
1135
1135
|
};
|
|
1136
|
-
export type
|
|
1137
|
-
export type
|
|
1136
|
+
export type GetLeadMineResponse = GetLeadMineResponses[keyof GetLeadMineResponses];
|
|
1137
|
+
export type GetClientData = {
|
|
1138
1138
|
body?: never;
|
|
1139
1139
|
path?: never;
|
|
1140
1140
|
query?: {
|
|
@@ -1155,14 +1155,14 @@ export type SearchClientsData = {
|
|
|
1155
1155
|
};
|
|
1156
1156
|
url: '/client';
|
|
1157
1157
|
};
|
|
1158
|
-
export type
|
|
1158
|
+
export type GetClientResponses = {
|
|
1159
1159
|
/**
|
|
1160
1160
|
* OK
|
|
1161
1161
|
*/
|
|
1162
1162
|
200: PagedModelClientGridResponse;
|
|
1163
1163
|
};
|
|
1164
|
-
export type
|
|
1165
|
-
export type
|
|
1164
|
+
export type GetClientResponse = GetClientResponses[keyof GetClientResponses];
|
|
1165
|
+
export type GetClientByClientIdData = {
|
|
1166
1166
|
body?: never;
|
|
1167
1167
|
path: {
|
|
1168
1168
|
clientId: number;
|
|
@@ -1170,14 +1170,14 @@ export type GetClientByIdData = {
|
|
|
1170
1170
|
query?: never;
|
|
1171
1171
|
url: '/client/{clientId}';
|
|
1172
1172
|
};
|
|
1173
|
-
export type
|
|
1173
|
+
export type GetClientByClientIdResponses = {
|
|
1174
1174
|
/**
|
|
1175
1175
|
* OK
|
|
1176
1176
|
*/
|
|
1177
1177
|
200: ClientGridResponse;
|
|
1178
1178
|
};
|
|
1179
|
-
export type
|
|
1180
|
-
export type
|
|
1179
|
+
export type GetClientByClientIdResponse = GetClientByClientIdResponses[keyof GetClientByClientIdResponses];
|
|
1180
|
+
export type GetClientMyData = {
|
|
1181
1181
|
body?: never;
|
|
1182
1182
|
path?: never;
|
|
1183
1183
|
query?: {
|
|
@@ -1198,14 +1198,14 @@ export type SearchMyClientsData = {
|
|
|
1198
1198
|
};
|
|
1199
1199
|
url: '/client/my';
|
|
1200
1200
|
};
|
|
1201
|
-
export type
|
|
1201
|
+
export type GetClientMyResponses = {
|
|
1202
1202
|
/**
|
|
1203
1203
|
* OK
|
|
1204
1204
|
*/
|
|
1205
1205
|
200: PagedModelClientGridResponse;
|
|
1206
1206
|
};
|
|
1207
|
-
export type
|
|
1208
|
-
export type
|
|
1207
|
+
export type GetClientMyResponse = GetClientMyResponses[keyof GetClientMyResponses];
|
|
1208
|
+
export type GetAgencyByAgencyIdData = {
|
|
1209
1209
|
body?: never;
|
|
1210
1210
|
path: {
|
|
1211
1211
|
agencyId: string;
|
|
@@ -1213,14 +1213,14 @@ export type GetAgencyData = {
|
|
|
1213
1213
|
query?: never;
|
|
1214
1214
|
url: '/agency/{agencyId}';
|
|
1215
1215
|
};
|
|
1216
|
-
export type
|
|
1216
|
+
export type GetAgencyByAgencyIdResponses = {
|
|
1217
1217
|
/**
|
|
1218
1218
|
* OK
|
|
1219
1219
|
*/
|
|
1220
1220
|
200: AgencyProfileResponse;
|
|
1221
1221
|
};
|
|
1222
|
-
export type
|
|
1223
|
-
export type
|
|
1222
|
+
export type GetAgencyByAgencyIdResponse = GetAgencyByAgencyIdResponses[keyof GetAgencyByAgencyIdResponses];
|
|
1223
|
+
export type DeleteMemberByMemberIdData = {
|
|
1224
1224
|
body?: never;
|
|
1225
1225
|
path: {
|
|
1226
1226
|
memberId: string;
|
|
@@ -1228,11 +1228,11 @@ export type RemoveMemberData = {
|
|
|
1228
1228
|
query?: never;
|
|
1229
1229
|
url: '/member/{memberId}';
|
|
1230
1230
|
};
|
|
1231
|
-
export type
|
|
1231
|
+
export type DeleteMemberByMemberIdResponses = {
|
|
1232
1232
|
/**
|
|
1233
1233
|
* No Content
|
|
1234
1234
|
*/
|
|
1235
1235
|
204: void;
|
|
1236
1236
|
};
|
|
1237
|
-
export type
|
|
1237
|
+
export type DeleteMemberByMemberIdResponse = DeleteMemberByMemberIdResponses[keyof DeleteMemberByMemberIdResponses];
|
|
1238
1238
|
//# sourceMappingURL=types.gen.d.ts.map
|