@savvycal/appointments-core 1.6.0 → 1.7.1
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/index.d.cts +257 -255
- package/dist/index.d.ts +257 -255
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1711,6 +1711,9 @@ interface components {
|
|
|
1711
1711
|
* },
|
|
1712
1712
|
* "client_data": {
|
|
1713
1713
|
* "email": "jane.smith@example.com",
|
|
1714
|
+
* "fields": {
|
|
1715
|
+
* "age": 30
|
|
1716
|
+
* },
|
|
1714
1717
|
* "first_name": "Jane",
|
|
1715
1718
|
* "last_name": "Smith",
|
|
1716
1719
|
* "locale": "en-US",
|
|
@@ -1758,6 +1761,7 @@ interface components {
|
|
|
1758
1761
|
* "conferencing_provider": "zoom_admin",
|
|
1759
1762
|
* "error_message": null,
|
|
1760
1763
|
* "external_meeting_id": "82912345678",
|
|
1764
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
1761
1765
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
1762
1766
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
1763
1767
|
* "object": "appointment_meeting",
|
|
@@ -2263,6 +2267,9 @@ interface components {
|
|
|
2263
2267
|
* "client": null,
|
|
2264
2268
|
* "client_data": {
|
|
2265
2269
|
* "email": "jane@example.com",
|
|
2270
|
+
* "fields": {
|
|
2271
|
+
* "age": 30
|
|
2272
|
+
* },
|
|
2266
2273
|
* "first_name": "Jane",
|
|
2267
2274
|
* "last_name": "Doe",
|
|
2268
2275
|
* "locale": "en",
|
|
@@ -2507,6 +2514,9 @@ interface components {
|
|
|
2507
2514
|
* },
|
|
2508
2515
|
* "client_data": {
|
|
2509
2516
|
* "email": "jane.smith@example.com",
|
|
2517
|
+
* "fields": {
|
|
2518
|
+
* "age": 30
|
|
2519
|
+
* },
|
|
2510
2520
|
* "first_name": "Jane",
|
|
2511
2521
|
* "last_name": "Smith",
|
|
2512
2522
|
* "locale": "en-US",
|
|
@@ -2554,6 +2564,7 @@ interface components {
|
|
|
2554
2564
|
* "conferencing_provider": "zoom_admin",
|
|
2555
2565
|
* "error_message": null,
|
|
2556
2566
|
* "external_meeting_id": "82912345678",
|
|
2567
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
2557
2568
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
2558
2569
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
2559
2570
|
* "object": "appointment_meeting",
|
|
@@ -2821,19 +2832,7 @@ interface components {
|
|
|
2821
2832
|
} | null;
|
|
2822
2833
|
} | null;
|
|
2823
2834
|
/** @description Progressive client data to collect during the booking flow. */
|
|
2824
|
-
client_data?:
|
|
2825
|
-
email?: string | null;
|
|
2826
|
-
/** @description A map of custom field key-value pairs. */
|
|
2827
|
-
fields?: {
|
|
2828
|
-
[key: string]: unknown;
|
|
2829
|
-
} | null;
|
|
2830
|
-
first_name?: string | null;
|
|
2831
|
-
last_name?: string | null;
|
|
2832
|
-
locale?: string | null;
|
|
2833
|
-
phone?: string | null;
|
|
2834
|
-
reference_id?: string | null;
|
|
2835
|
-
time_zone?: string | null;
|
|
2836
|
-
} | null;
|
|
2835
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
2837
2836
|
/** @description The ID of an existing client to link. */
|
|
2838
2837
|
client_id?: string | null;
|
|
2839
2838
|
/**
|
|
@@ -2887,6 +2886,9 @@ interface components {
|
|
|
2887
2886
|
* "client": null,
|
|
2888
2887
|
* "client_data": {
|
|
2889
2888
|
* "email": "jane@example.com",
|
|
2889
|
+
* "fields": {
|
|
2890
|
+
* "age": 30
|
|
2891
|
+
* },
|
|
2890
2892
|
* "first_name": "Jane",
|
|
2891
2893
|
* "last_name": "Doe",
|
|
2892
2894
|
* "locale": "en",
|
|
@@ -3479,6 +3481,9 @@ interface components {
|
|
|
3479
3481
|
* "client": null,
|
|
3480
3482
|
* "client_data": {
|
|
3481
3483
|
* "email": "jane@example.com",
|
|
3484
|
+
* "fields": {
|
|
3485
|
+
* "age": 30
|
|
3486
|
+
* },
|
|
3482
3487
|
* "first_name": "Jane",
|
|
3483
3488
|
* "last_name": "Doe",
|
|
3484
3489
|
* "locale": "en",
|
|
@@ -3833,19 +3838,7 @@ interface components {
|
|
|
3833
3838
|
/** @description When true, automatically assigns an available provider for the selected time slot if no provider_id is specified. */
|
|
3834
3839
|
auto_assign_provider?: boolean | null;
|
|
3835
3840
|
/** @description Progressive client data. Provided fields are merged with existing values. */
|
|
3836
|
-
client_data?:
|
|
3837
|
-
email?: string | null;
|
|
3838
|
-
/** @description A map of custom field key-value pairs. */
|
|
3839
|
-
fields?: {
|
|
3840
|
-
[key: string]: unknown;
|
|
3841
|
-
} | null;
|
|
3842
|
-
first_name?: string | null;
|
|
3843
|
-
last_name?: string | null;
|
|
3844
|
-
locale?: string | null;
|
|
3845
|
-
phone?: string | null;
|
|
3846
|
-
reference_id?: string | null;
|
|
3847
|
-
time_zone?: string | null;
|
|
3848
|
-
} | null;
|
|
3841
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
3849
3842
|
/** @description The ID of an existing client to link. */
|
|
3850
3843
|
client_id?: string | null;
|
|
3851
3844
|
/**
|
|
@@ -3926,6 +3919,9 @@ interface components {
|
|
|
3926
3919
|
* "client": null,
|
|
3927
3920
|
* "client_data": {
|
|
3928
3921
|
* "email": "jane@example.com",
|
|
3922
|
+
* "fields": {
|
|
3923
|
+
* "age": 30
|
|
3924
|
+
* },
|
|
3929
3925
|
* "first_name": "Jane",
|
|
3930
3926
|
* "last_name": "Doe",
|
|
3931
3927
|
* "locale": "en",
|
|
@@ -4290,6 +4286,9 @@ interface components {
|
|
|
4290
4286
|
* "client": null,
|
|
4291
4287
|
* "client_data": {
|
|
4292
4288
|
* "email": "jane@example.com",
|
|
4289
|
+
* "fields": {
|
|
4290
|
+
* "age": 30
|
|
4291
|
+
* },
|
|
4293
4292
|
* "first_name": "Jane",
|
|
4294
4293
|
* "last_name": "Doe",
|
|
4295
4294
|
* "locale": "en",
|
|
@@ -5097,6 +5096,9 @@ interface components {
|
|
|
5097
5096
|
* },
|
|
5098
5097
|
* "client_data": {
|
|
5099
5098
|
* "email": "jane.smith@example.com",
|
|
5099
|
+
* "fields": {
|
|
5100
|
+
* "age": 30
|
|
5101
|
+
* },
|
|
5100
5102
|
* "first_name": "Jane",
|
|
5101
5103
|
* "last_name": "Smith",
|
|
5102
5104
|
* "locale": "en-US",
|
|
@@ -5144,6 +5146,7 @@ interface components {
|
|
|
5144
5146
|
* "conferencing_provider": "zoom_admin",
|
|
5145
5147
|
* "error_message": null,
|
|
5146
5148
|
* "external_meeting_id": "82912345678",
|
|
5149
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
5147
5150
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
5148
5151
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
5149
5152
|
* "object": "appointment_meeting",
|
|
@@ -5547,6 +5550,9 @@ interface components {
|
|
|
5547
5550
|
* },
|
|
5548
5551
|
* "client_data": {
|
|
5549
5552
|
* "email": "jane.smith@example.com",
|
|
5553
|
+
* "fields": {
|
|
5554
|
+
* "age": 30
|
|
5555
|
+
* },
|
|
5550
5556
|
* "first_name": "Jane",
|
|
5551
5557
|
* "last_name": "Smith",
|
|
5552
5558
|
* "locale": "en-US",
|
|
@@ -5594,6 +5600,7 @@ interface components {
|
|
|
5594
5600
|
* "conferencing_provider": "zoom_admin",
|
|
5595
5601
|
* "error_message": null,
|
|
5596
5602
|
* "external_meeting_id": "82912345678",
|
|
5603
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
5597
5604
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
5598
5605
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
5599
5606
|
* "object": "appointment_meeting",
|
|
@@ -5862,19 +5869,7 @@ interface components {
|
|
|
5862
5869
|
} | null;
|
|
5863
5870
|
} | null;
|
|
5864
5871
|
/** @description Progressive client data. Provided fields are merged with existing values. */
|
|
5865
|
-
client_data?:
|
|
5866
|
-
email?: string | null;
|
|
5867
|
-
/** @description A map of custom field key-value pairs. */
|
|
5868
|
-
fields?: {
|
|
5869
|
-
[key: string]: unknown;
|
|
5870
|
-
} | null;
|
|
5871
|
-
first_name?: string | null;
|
|
5872
|
-
last_name?: string | null;
|
|
5873
|
-
locale?: string | null;
|
|
5874
|
-
phone?: string | null;
|
|
5875
|
-
reference_id?: string | null;
|
|
5876
|
-
time_zone?: string | null;
|
|
5877
|
-
} | null;
|
|
5872
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
5878
5873
|
/** @description The ID of an existing client to link. */
|
|
5879
5874
|
client_id?: string | null;
|
|
5880
5875
|
/**
|
|
@@ -5988,6 +5983,9 @@ interface components {
|
|
|
5988
5983
|
* },
|
|
5989
5984
|
* "client_data": {
|
|
5990
5985
|
* "email": "jane.smith@example.com",
|
|
5986
|
+
* "fields": {
|
|
5987
|
+
* "age": 30
|
|
5988
|
+
* },
|
|
5991
5989
|
* "first_name": "Jane",
|
|
5992
5990
|
* "last_name": "Smith",
|
|
5993
5991
|
* "locale": "en-US",
|
|
@@ -6035,6 +6033,7 @@ interface components {
|
|
|
6035
6033
|
* "conferencing_provider": "zoom_admin",
|
|
6036
6034
|
* "error_message": null,
|
|
6037
6035
|
* "external_meeting_id": "82912345678",
|
|
6036
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
6038
6037
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
6039
6038
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
6040
6039
|
* "object": "appointment_meeting",
|
|
@@ -6540,6 +6539,9 @@ interface components {
|
|
|
6540
6539
|
* },
|
|
6541
6540
|
* "client_data": {
|
|
6542
6541
|
* "email": "jane.smith@example.com",
|
|
6542
|
+
* "fields": {
|
|
6543
|
+
* "age": 30
|
|
6544
|
+
* },
|
|
6543
6545
|
* "first_name": "Jane",
|
|
6544
6546
|
* "last_name": "Smith",
|
|
6545
6547
|
* "locale": "en-US",
|
|
@@ -6587,6 +6589,7 @@ interface components {
|
|
|
6587
6589
|
* "conferencing_provider": "zoom_admin",
|
|
6588
6590
|
* "error_message": null,
|
|
6589
6591
|
* "external_meeting_id": "82912345678",
|
|
6592
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
6590
6593
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
6591
6594
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
6592
6595
|
* "object": "appointment_meeting",
|
|
@@ -7259,6 +7262,9 @@ interface components {
|
|
|
7259
7262
|
* },
|
|
7260
7263
|
* "client_data": {
|
|
7261
7264
|
* "email": "jane.smith@example.com",
|
|
7265
|
+
* "fields": {
|
|
7266
|
+
* "age": 30
|
|
7267
|
+
* },
|
|
7262
7268
|
* "first_name": "Jane",
|
|
7263
7269
|
* "last_name": "Smith",
|
|
7264
7270
|
* "locale": "en-US",
|
|
@@ -7306,6 +7312,7 @@ interface components {
|
|
|
7306
7312
|
* "conferencing_provider": "zoom_admin",
|
|
7307
7313
|
* "error_message": null,
|
|
7308
7314
|
* "external_meeting_id": "82912345678",
|
|
7315
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
7309
7316
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
7310
7317
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
7311
7318
|
* "object": "appointment_meeting",
|
|
@@ -7520,19 +7527,7 @@ interface components {
|
|
|
7520
7527
|
/** @description When true, automatically assigns an available provider for the selected time slot if no provider_id is specified. */
|
|
7521
7528
|
auto_assign_provider?: boolean | null;
|
|
7522
7529
|
/** @description Progressive client data. Provided fields are merged with existing values. */
|
|
7523
|
-
client_data?:
|
|
7524
|
-
email?: string | null;
|
|
7525
|
-
/** @description A map of custom field key-value pairs. */
|
|
7526
|
-
fields?: {
|
|
7527
|
-
[key: string]: unknown;
|
|
7528
|
-
} | null;
|
|
7529
|
-
first_name?: string | null;
|
|
7530
|
-
last_name?: string | null;
|
|
7531
|
-
locale?: string | null;
|
|
7532
|
-
phone?: string | null;
|
|
7533
|
-
reference_id?: string | null;
|
|
7534
|
-
time_zone?: string | null;
|
|
7535
|
-
} | null;
|
|
7530
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
7536
7531
|
/**
|
|
7537
7532
|
* Format: date-time
|
|
7538
7533
|
* @description The end time of the slot as an ISO-8601 datetime string with a timezone offset.
|
|
@@ -7610,6 +7605,61 @@ interface components {
|
|
|
7610
7605
|
data: components["schemas"]["ProviderSchedule"][];
|
|
7611
7606
|
meta: components["schemas"]["PaginationMeta"];
|
|
7612
7607
|
};
|
|
7608
|
+
/**
|
|
7609
|
+
* AppointmentClientDataInput
|
|
7610
|
+
* @description Information about the client booking the appointment. You can either provide an `id` or `reference_id` for an existing client,
|
|
7611
|
+
* or provide a new client's details.
|
|
7612
|
+
* @example {
|
|
7613
|
+
* "email": "john.doe@example.com",
|
|
7614
|
+
* "fields": {
|
|
7615
|
+
* "age": 30
|
|
7616
|
+
* },
|
|
7617
|
+
* "first_name": "John",
|
|
7618
|
+
* "last_name": "Doe",
|
|
7619
|
+
* "locale": "en-US",
|
|
7620
|
+
* "phone": "+15551234567",
|
|
7621
|
+
* "reference_id": "1234567890",
|
|
7622
|
+
* "time_zone": "America/New_York"
|
|
7623
|
+
* }
|
|
7624
|
+
*/
|
|
7625
|
+
AppointmentClientDataInput: {
|
|
7626
|
+
/**
|
|
7627
|
+
* Format: email
|
|
7628
|
+
* @description The client's email address. Required if no existing client is provided.
|
|
7629
|
+
*/
|
|
7630
|
+
email?: string | null;
|
|
7631
|
+
/** @description A map of custom field values to set on the client, keyed by field slug. Each key must correspond to a Client Field that has been defined in the account; arbitrary key-value pairs are not accepted. */
|
|
7632
|
+
fields?: {
|
|
7633
|
+
[key: string]: unknown;
|
|
7634
|
+
} | null;
|
|
7635
|
+
/** @description The client's first name. Required if no existing client is provided. */
|
|
7636
|
+
first_name?: string | null;
|
|
7637
|
+
/**
|
|
7638
|
+
* @description The ID of an existing client to attach to the appointment. If not provided, a new client will be created
|
|
7639
|
+
* if the `reference_id` does not correspond to an existing client. If there does exist a client with
|
|
7640
|
+
* the `reference_id` provided, the existing client will be attached to the appointment.
|
|
7641
|
+
*/
|
|
7642
|
+
id?: string | null;
|
|
7643
|
+
/** @description The client's last name. Required if no existing client is provided. */
|
|
7644
|
+
last_name?: string | null;
|
|
7645
|
+
/**
|
|
7646
|
+
* @description The locale of the client booking the appointment.
|
|
7647
|
+
* @example en-US
|
|
7648
|
+
*/
|
|
7649
|
+
locale?: string | null;
|
|
7650
|
+
/**
|
|
7651
|
+
* @description The client's phone number (E.164 format).
|
|
7652
|
+
* @example +1234567890
|
|
7653
|
+
*/
|
|
7654
|
+
phone?: string | null;
|
|
7655
|
+
/** @description External reference identifier for the client. */
|
|
7656
|
+
reference_id?: string | null;
|
|
7657
|
+
/**
|
|
7658
|
+
* @description The client's time zone (IANA format). This field will be used to represent the appointment time slot in the client's local time zone (in the event that it differs from the appointment's local time zone).
|
|
7659
|
+
* @example America/New_York
|
|
7660
|
+
*/
|
|
7661
|
+
time_zone: string;
|
|
7662
|
+
};
|
|
7613
7663
|
/**
|
|
7614
7664
|
* NotFoundResponse
|
|
7615
7665
|
* @description Response schema for not found requests
|
|
@@ -7678,6 +7728,9 @@ interface components {
|
|
|
7678
7728
|
* },
|
|
7679
7729
|
* "client_data": {
|
|
7680
7730
|
* "email": "jane.smith@example.com",
|
|
7731
|
+
* "fields": {
|
|
7732
|
+
* "age": 30
|
|
7733
|
+
* },
|
|
7681
7734
|
* "first_name": "Jane",
|
|
7682
7735
|
* "last_name": "Smith",
|
|
7683
7736
|
* "locale": "en-US",
|
|
@@ -7725,6 +7778,7 @@ interface components {
|
|
|
7725
7778
|
* "conferencing_provider": "zoom_admin",
|
|
7726
7779
|
* "error_message": null,
|
|
7727
7780
|
* "external_meeting_id": "82912345678",
|
|
7781
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
7728
7782
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
7729
7783
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
7730
7784
|
* "object": "appointment_meeting",
|
|
@@ -8107,6 +8161,9 @@ interface components {
|
|
|
8107
8161
|
* },
|
|
8108
8162
|
* "client_data": {
|
|
8109
8163
|
* "email": "jane.smith@example.com",
|
|
8164
|
+
* "fields": {
|
|
8165
|
+
* "age": 30
|
|
8166
|
+
* },
|
|
8110
8167
|
* "first_name": "Jane",
|
|
8111
8168
|
* "last_name": "Smith",
|
|
8112
8169
|
* "locale": "en-US",
|
|
@@ -8154,6 +8211,7 @@ interface components {
|
|
|
8154
8211
|
* "conferencing_provider": "zoom_admin",
|
|
8155
8212
|
* "error_message": null,
|
|
8156
8213
|
* "external_meeting_id": "82912345678",
|
|
8214
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
8157
8215
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
8158
8216
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
8159
8217
|
* "object": "appointment_meeting",
|
|
@@ -8508,6 +8566,9 @@ interface components {
|
|
|
8508
8566
|
* },
|
|
8509
8567
|
* "client_data": {
|
|
8510
8568
|
* "email": "jane.smith@example.com",
|
|
8569
|
+
* "fields": {
|
|
8570
|
+
* "age": 30
|
|
8571
|
+
* },
|
|
8511
8572
|
* "first_name": "Jane",
|
|
8512
8573
|
* "last_name": "Smith",
|
|
8513
8574
|
* "locale": "en-US",
|
|
@@ -8555,6 +8616,7 @@ interface components {
|
|
|
8555
8616
|
* "conferencing_provider": "zoom_admin",
|
|
8556
8617
|
* "error_message": null,
|
|
8557
8618
|
* "external_meeting_id": "82912345678",
|
|
8619
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
8558
8620
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
8559
8621
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
8560
8622
|
* "object": "appointment_meeting",
|
|
@@ -8855,10 +8917,31 @@ interface components {
|
|
|
8855
8917
|
* Meetings are created asynchronously after an appointment is scheduled, so the
|
|
8856
8918
|
* `status` field reflects where the meeting is in its lifecycle. Meeting details
|
|
8857
8919
|
* such as `join_url` are populated only once the status is `created`.
|
|
8920
|
+
*
|
|
8921
|
+
* The `host_url` field is a proxy URL on the account's booking domain (the
|
|
8922
|
+
* canonical SavvyCal host, or an active custom domain when one is
|
|
8923
|
+
* configured) that the meeting host follows to start the meeting. **Treat
|
|
8924
|
+
* this URL as a credential — anyone with it can start the meeting as the
|
|
8925
|
+
* host.** It is valid through the appointment's end time + a 24h grace
|
|
8926
|
+
* window, after which it returns 410 Gone.
|
|
8927
|
+
*
|
|
8928
|
+
* SavvyCal refreshes the underlying conferencing-provider URL transparently
|
|
8929
|
+
* behind the proxy, so the proxy URL generally remains stable across
|
|
8930
|
+
* `appointment.meeting.updated` events. It may change if SavvyCal rotates
|
|
8931
|
+
* the underlying token (e.g., for security reasons) or when the meeting is
|
|
8932
|
+
* replaced — a brand-new meeting with a new `id`, which happens when a
|
|
8933
|
+
* reschedule routes the appointment to a different host on the account.
|
|
8934
|
+
* Listen for `appointment.meeting.updated` and `appointment.meeting.replaced`
|
|
8935
|
+
* to keep stored copies fresh.
|
|
8936
|
+
*
|
|
8937
|
+
* `host_url` is null when the meeting is not yet `created` or when the
|
|
8938
|
+
* conferencing provider has no distinct host start URL (e.g., Google Meet
|
|
8939
|
+
* uses a single shared URL).
|
|
8858
8940
|
* @example {
|
|
8859
8941
|
* "conferencing_provider": "zoom_admin",
|
|
8860
8942
|
* "error_message": null,
|
|
8861
8943
|
* "external_meeting_id": "82912345678",
|
|
8944
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
8862
8945
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
8863
8946
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
8864
8947
|
* "object": "appointment_meeting",
|
|
@@ -8879,6 +8962,19 @@ interface components {
|
|
|
8879
8962
|
* @example 82912345678
|
|
8880
8963
|
*/
|
|
8881
8964
|
external_meeting_id: string | null;
|
|
8965
|
+
/**
|
|
8966
|
+
* Format: uri
|
|
8967
|
+
* @description Proxy URL the host follows to start the meeting. Treat as a
|
|
8968
|
+
* credential — anyone with this URL can start the meeting as host.
|
|
8969
|
+
* Valid through the appointment's end time + 24h grace window, then
|
|
8970
|
+
* returns 410 Gone. Generally stable, but may change across
|
|
8971
|
+
* `appointment.meeting.updated` events (e.g., if SavvyCal rotates the
|
|
8972
|
+
* token) and always changes when the meeting is replaced
|
|
8973
|
+
* (`appointment.meeting.replaced`). Null when the meeting is not
|
|
8974
|
+
* `created` or when the conferencing provider has no distinct host
|
|
8975
|
+
* start URL.
|
|
8976
|
+
*/
|
|
8977
|
+
host_url: string | null;
|
|
8882
8978
|
/** @description Unique identifier for the object. */
|
|
8883
8979
|
id: string;
|
|
8884
8980
|
/**
|
|
@@ -9051,6 +9147,9 @@ interface components {
|
|
|
9051
9147
|
* },
|
|
9052
9148
|
* "client_data": {
|
|
9053
9149
|
* "email": "jane.smith@example.com",
|
|
9150
|
+
* "fields": {
|
|
9151
|
+
* "age": 30
|
|
9152
|
+
* },
|
|
9054
9153
|
* "first_name": "Jane",
|
|
9055
9154
|
* "last_name": "Smith",
|
|
9056
9155
|
* "locale": "en-US",
|
|
@@ -9098,6 +9197,7 @@ interface components {
|
|
|
9098
9197
|
* "conferencing_provider": "zoom_admin",
|
|
9099
9198
|
* "error_message": null,
|
|
9100
9199
|
* "external_meeting_id": "82912345678",
|
|
9200
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
9101
9201
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
9102
9202
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
9103
9203
|
* "object": "appointment_meeting",
|
|
@@ -9577,6 +9677,9 @@ interface components {
|
|
|
9577
9677
|
* },
|
|
9578
9678
|
* "client_data": {
|
|
9579
9679
|
* "email": "jane.smith@example.com",
|
|
9680
|
+
* "fields": {
|
|
9681
|
+
* "age": 30
|
|
9682
|
+
* },
|
|
9580
9683
|
* "first_name": "Jane",
|
|
9581
9684
|
* "last_name": "Smith",
|
|
9582
9685
|
* "locale": "en-US",
|
|
@@ -9624,6 +9727,7 @@ interface components {
|
|
|
9624
9727
|
* "conferencing_provider": "zoom_admin",
|
|
9625
9728
|
* "error_message": null,
|
|
9626
9729
|
* "external_meeting_id": "82912345678",
|
|
9730
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
9627
9731
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
9628
9732
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
9629
9733
|
* "object": "appointment_meeting",
|
|
@@ -9859,19 +9963,7 @@ interface components {
|
|
|
9859
9963
|
/** @description When true, automatically assigns an available provider for the selected time slot if no provider_id is specified. */
|
|
9860
9964
|
auto_assign_provider?: boolean | null;
|
|
9861
9965
|
/** @description Progressive client data. Provided fields are merged with existing values. */
|
|
9862
|
-
client_data?:
|
|
9863
|
-
email?: string | null;
|
|
9864
|
-
/** @description A map of custom field key-value pairs. */
|
|
9865
|
-
fields?: {
|
|
9866
|
-
[key: string]: unknown;
|
|
9867
|
-
} | null;
|
|
9868
|
-
first_name?: string | null;
|
|
9869
|
-
last_name?: string | null;
|
|
9870
|
-
locale?: string | null;
|
|
9871
|
-
phone?: string | null;
|
|
9872
|
-
reference_id?: string | null;
|
|
9873
|
-
time_zone?: string | null;
|
|
9874
|
-
} | null;
|
|
9966
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
9875
9967
|
/**
|
|
9876
9968
|
* Format: date-time
|
|
9877
9969
|
* @description The end time of the slot as an ISO-8601 datetime string with a timezone offset.
|
|
@@ -10498,48 +10590,7 @@ interface components {
|
|
|
10498
10590
|
* }
|
|
10499
10591
|
*/
|
|
10500
10592
|
CreateAppointmentRequest: {
|
|
10501
|
-
|
|
10502
|
-
* @description Information about the client booking the appointment. You can either provide an `id` or `reference_id` for an existing client,
|
|
10503
|
-
* or provide a new client's details.
|
|
10504
|
-
*/
|
|
10505
|
-
client_data: {
|
|
10506
|
-
/**
|
|
10507
|
-
* Format: email
|
|
10508
|
-
* @description The client's email address. Required if no existing client is provided.
|
|
10509
|
-
*/
|
|
10510
|
-
email?: string | null;
|
|
10511
|
-
/** @description A map of custom field key-value pairs to set on the client. */
|
|
10512
|
-
fields?: {
|
|
10513
|
-
[key: string]: unknown;
|
|
10514
|
-
} | null;
|
|
10515
|
-
/** @description The client's first name. Required if no existing client is provided. */
|
|
10516
|
-
first_name?: string | null;
|
|
10517
|
-
/**
|
|
10518
|
-
* @description The ID of an existing client to attach to the appointment. If not provided, a new client will be created
|
|
10519
|
-
* if the `reference_id` does not correspond to an existing client. If there does exist a client with
|
|
10520
|
-
* the `reference_id` provided, the existing client will be attached to the appointment.
|
|
10521
|
-
*/
|
|
10522
|
-
id?: string | null;
|
|
10523
|
-
/** @description The client's last name. Required if no existing client is provided. */
|
|
10524
|
-
last_name?: string | null;
|
|
10525
|
-
/**
|
|
10526
|
-
* @description The locale of the client booking the appointment.
|
|
10527
|
-
* @example en-US
|
|
10528
|
-
*/
|
|
10529
|
-
locale?: string | null;
|
|
10530
|
-
/**
|
|
10531
|
-
* @description The client's phone number (E.164 format).
|
|
10532
|
-
* @example +1234567890
|
|
10533
|
-
*/
|
|
10534
|
-
phone?: string | null;
|
|
10535
|
-
/** @description External reference identifier for the client. */
|
|
10536
|
-
reference_id?: string | null;
|
|
10537
|
-
/**
|
|
10538
|
-
* @description The client's time zone (IANA format). This field will be used to represent the appointment time slot in the client's local time zone (in the event that it differs from the appointment's local time zone).
|
|
10539
|
-
* @example America/New_York
|
|
10540
|
-
*/
|
|
10541
|
-
time_zone: string;
|
|
10542
|
-
};
|
|
10593
|
+
client_data: components["schemas"]["AppointmentClientDataInput"];
|
|
10543
10594
|
/**
|
|
10544
10595
|
* Format: date-time
|
|
10545
10596
|
* @description The end time of the appointment as an ISO-8601 datetime string with a timezone offset (e.g., `2025-03-01T11:00:00-05:00` or `2025-03-01T16:00:00Z`). The `time_zone` field determines the canonical timezone.
|
|
@@ -10672,6 +10723,9 @@ interface components {
|
|
|
10672
10723
|
* },
|
|
10673
10724
|
* "client_data": {
|
|
10674
10725
|
* "email": "jane.smith@example.com",
|
|
10726
|
+
* "fields": {
|
|
10727
|
+
* "age": 30
|
|
10728
|
+
* },
|
|
10675
10729
|
* "first_name": "Jane",
|
|
10676
10730
|
* "last_name": "Smith",
|
|
10677
10731
|
* "locale": "en-US",
|
|
@@ -10719,6 +10773,7 @@ interface components {
|
|
|
10719
10773
|
* "conferencing_provider": "zoom_admin",
|
|
10720
10774
|
* "error_message": null,
|
|
10721
10775
|
* "external_meeting_id": "82912345678",
|
|
10776
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
10722
10777
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
10723
10778
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
10724
10779
|
* "object": "appointment_meeting",
|
|
@@ -10935,19 +10990,7 @@ interface components {
|
|
|
10935
10990
|
/** @description When true, automatically assigns an available provider for the selected time slot if no provider_id is specified. */
|
|
10936
10991
|
auto_assign_provider?: boolean | null;
|
|
10937
10992
|
/** @description Progressive client data to collect during the booking flow. */
|
|
10938
|
-
client_data?:
|
|
10939
|
-
email?: string | null;
|
|
10940
|
-
/** @description A map of custom field key-value pairs. */
|
|
10941
|
-
fields?: {
|
|
10942
|
-
[key: string]: unknown;
|
|
10943
|
-
} | null;
|
|
10944
|
-
first_name?: string | null;
|
|
10945
|
-
last_name?: string | null;
|
|
10946
|
-
locale?: string | null;
|
|
10947
|
-
phone?: string | null;
|
|
10948
|
-
reference_id?: string | null;
|
|
10949
|
-
time_zone?: string | null;
|
|
10950
|
-
} | null;
|
|
10993
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
10951
10994
|
/**
|
|
10952
10995
|
* Format: date-time
|
|
10953
10996
|
* @description The end time of the slot as an ISO-8601 datetime string with a timezone offset.
|
|
@@ -10983,6 +11026,9 @@ interface components {
|
|
|
10983
11026
|
* "client": null,
|
|
10984
11027
|
* "client_data": {
|
|
10985
11028
|
* "email": "jane@example.com",
|
|
11029
|
+
* "fields": {
|
|
11030
|
+
* "age": 30
|
|
11031
|
+
* },
|
|
10986
11032
|
* "first_name": "Jane",
|
|
10987
11033
|
* "last_name": "Doe",
|
|
10988
11034
|
* "locale": "en",
|
|
@@ -11215,6 +11261,9 @@ interface components {
|
|
|
11215
11261
|
* },
|
|
11216
11262
|
* "client_data": {
|
|
11217
11263
|
* "email": "jane.smith@example.com",
|
|
11264
|
+
* "fields": {
|
|
11265
|
+
* "age": 30
|
|
11266
|
+
* },
|
|
11218
11267
|
* "first_name": "Jane",
|
|
11219
11268
|
* "last_name": "Smith",
|
|
11220
11269
|
* "locale": "en-US",
|
|
@@ -11262,6 +11311,7 @@ interface components {
|
|
|
11262
11311
|
* "conferencing_provider": "zoom_admin",
|
|
11263
11312
|
* "error_message": null,
|
|
11264
11313
|
* "external_meeting_id": "82912345678",
|
|
11314
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
11265
11315
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
11266
11316
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
11267
11317
|
* "object": "appointment_meeting",
|
|
@@ -11520,6 +11570,9 @@ interface components {
|
|
|
11520
11570
|
* @example {
|
|
11521
11571
|
* "client_data": {
|
|
11522
11572
|
* "email": "john.doe@example.com",
|
|
11573
|
+
* "fields": {
|
|
11574
|
+
* "age": 30
|
|
11575
|
+
* },
|
|
11523
11576
|
* "first_name": "John",
|
|
11524
11577
|
* "last_name": "Doe",
|
|
11525
11578
|
* "locale": "en-US",
|
|
@@ -11534,44 +11587,7 @@ interface components {
|
|
|
11534
11587
|
* }
|
|
11535
11588
|
*/
|
|
11536
11589
|
CreatePublicAppointmentRequest: {
|
|
11537
|
-
|
|
11538
|
-
* @description Information about the client booking the appointment. You can either provide an `id` or `reference_id` for an existing client,
|
|
11539
|
-
* or provide a new client's details.
|
|
11540
|
-
*/
|
|
11541
|
-
client_data: {
|
|
11542
|
-
/**
|
|
11543
|
-
* Format: email
|
|
11544
|
-
* @description The client's email address. Required if no existing client is provided.
|
|
11545
|
-
*/
|
|
11546
|
-
email?: string | null;
|
|
11547
|
-
/** @description The client's first name. Required if no existing client is provided. */
|
|
11548
|
-
first_name?: string | null;
|
|
11549
|
-
/**
|
|
11550
|
-
* @description The ID of an existing client to attach to the appointment. If not provided, a new client will be created
|
|
11551
|
-
* if the `reference_id` does not correspond to an existing client. If there does exist a client with
|
|
11552
|
-
* the `reference_id` provided, the existing client will be attached to the appointment.
|
|
11553
|
-
*/
|
|
11554
|
-
id?: string | null;
|
|
11555
|
-
/** @description The client's last name. Required if no existing client is provided. */
|
|
11556
|
-
last_name?: string | null;
|
|
11557
|
-
/**
|
|
11558
|
-
* @description The locale of the client booking the appointment.
|
|
11559
|
-
* @example en-US
|
|
11560
|
-
*/
|
|
11561
|
-
locale?: string | null;
|
|
11562
|
-
/**
|
|
11563
|
-
* @description The client's phone number (E.164 format).
|
|
11564
|
-
* @example +1234567890
|
|
11565
|
-
*/
|
|
11566
|
-
phone?: string | null;
|
|
11567
|
-
/** @description External reference identifier for the client. */
|
|
11568
|
-
reference_id?: string | null;
|
|
11569
|
-
/**
|
|
11570
|
-
* @description The client's time zone (IANA format). This field will be used to represent the appointment time slot in the client's local time zone (in the event that it differs from the appointment's local time zone).
|
|
11571
|
-
* @example America/New_York
|
|
11572
|
-
*/
|
|
11573
|
-
time_zone: string;
|
|
11574
|
-
};
|
|
11590
|
+
client_data: components["schemas"]["AppointmentClientDataInput"];
|
|
11575
11591
|
/**
|
|
11576
11592
|
* Format: date-time
|
|
11577
11593
|
* @description The end time of the appointment as an ISO-8601 datetime string with a timezone offset (e.g., `2025-03-01T11:00:00-05:00` or `2025-03-01T16:00:00Z`). The `time_zone` field determines the canonical timezone.
|
|
@@ -11701,6 +11717,54 @@ interface components {
|
|
|
11701
11717
|
/** @description The client fields details */
|
|
11702
11718
|
data: components["schemas"]["ClientField"][];
|
|
11703
11719
|
};
|
|
11720
|
+
/**
|
|
11721
|
+
* ClientDataInput
|
|
11722
|
+
* @description Progressive client data for a booking intent. All fields are optional; provided fields are merged with existing values.
|
|
11723
|
+
* @example {
|
|
11724
|
+
* "email": "jane@example.com",
|
|
11725
|
+
* "fields": {
|
|
11726
|
+
* "age": 30
|
|
11727
|
+
* },
|
|
11728
|
+
* "first_name": "Jane",
|
|
11729
|
+
* "last_name": "Doe",
|
|
11730
|
+
* "locale": "en-US",
|
|
11731
|
+
* "phone": "+15551234567",
|
|
11732
|
+
* "reference_id": "ext_123",
|
|
11733
|
+
* "time_zone": "America/New_York"
|
|
11734
|
+
* }
|
|
11735
|
+
*/
|
|
11736
|
+
ClientDataInput: {
|
|
11737
|
+
/**
|
|
11738
|
+
* Format: email
|
|
11739
|
+
* @description The client's email address.
|
|
11740
|
+
*/
|
|
11741
|
+
email?: string | null;
|
|
11742
|
+
/** @description A map of custom field values to set on the client, keyed by field slug. Each key must correspond to a Client Field that has been defined in the account; arbitrary key-value pairs are not accepted. */
|
|
11743
|
+
fields?: {
|
|
11744
|
+
[key: string]: unknown;
|
|
11745
|
+
} | null;
|
|
11746
|
+
/** @description The client's first name. */
|
|
11747
|
+
first_name?: string | null;
|
|
11748
|
+
/** @description The client's last name. */
|
|
11749
|
+
last_name?: string | null;
|
|
11750
|
+
/**
|
|
11751
|
+
* @description The locale of the client booking the appointment.
|
|
11752
|
+
* @example en-US
|
|
11753
|
+
*/
|
|
11754
|
+
locale?: string | null;
|
|
11755
|
+
/**
|
|
11756
|
+
* @description The client's phone number (E.164 format).
|
|
11757
|
+
* @example +1234567890
|
|
11758
|
+
*/
|
|
11759
|
+
phone?: string | null;
|
|
11760
|
+
/** @description External reference identifier for the client. */
|
|
11761
|
+
reference_id?: string | null;
|
|
11762
|
+
/**
|
|
11763
|
+
* @description The client's time zone (IANA format).
|
|
11764
|
+
* @example America/New_York
|
|
11765
|
+
*/
|
|
11766
|
+
time_zone?: string | null;
|
|
11767
|
+
};
|
|
11704
11768
|
/**
|
|
11705
11769
|
* BlockResponse
|
|
11706
11770
|
* @description Response schema for a block
|
|
@@ -11788,6 +11852,9 @@ interface components {
|
|
|
11788
11852
|
* },
|
|
11789
11853
|
* "client_data": {
|
|
11790
11854
|
* "email": "jane.smith@example.com",
|
|
11855
|
+
* "fields": {
|
|
11856
|
+
* "age": 30
|
|
11857
|
+
* },
|
|
11791
11858
|
* "first_name": "Jane",
|
|
11792
11859
|
* "last_name": "Smith",
|
|
11793
11860
|
* "locale": "en-US",
|
|
@@ -11835,6 +11902,7 @@ interface components {
|
|
|
11835
11902
|
* "conferencing_provider": "zoom_admin",
|
|
11836
11903
|
* "error_message": null,
|
|
11837
11904
|
* "external_meeting_id": "82912345678",
|
|
11905
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
11838
11906
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
11839
11907
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
11840
11908
|
* "object": "appointment_meeting",
|
|
@@ -12075,6 +12143,9 @@ interface components {
|
|
|
12075
12143
|
* },
|
|
12076
12144
|
* "client_data": {
|
|
12077
12145
|
* "email": "jane.smith@example.com",
|
|
12146
|
+
* "fields": {
|
|
12147
|
+
* "age": 30
|
|
12148
|
+
* },
|
|
12078
12149
|
* "first_name": "Jane",
|
|
12079
12150
|
* "last_name": "Smith",
|
|
12080
12151
|
* "locale": "en-US",
|
|
@@ -12122,6 +12193,7 @@ interface components {
|
|
|
12122
12193
|
* "conferencing_provider": "zoom_admin",
|
|
12123
12194
|
* "error_message": null,
|
|
12124
12195
|
* "external_meeting_id": "82912345678",
|
|
12196
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
12125
12197
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
12126
12198
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
12127
12199
|
* "object": "appointment_meeting",
|
|
@@ -12336,6 +12408,10 @@ interface components {
|
|
|
12336
12408
|
* @description The client's email address. This field will be `null` unless `include_sensitive` is `true`.
|
|
12337
12409
|
*/
|
|
12338
12410
|
email?: string | null;
|
|
12411
|
+
/** @description A map of custom field values set on the client, keyed by field slug. Values for fields marked as sensitive will be `null` unless `include_sensitive` is `true`. */
|
|
12412
|
+
fields: {
|
|
12413
|
+
[key: string]: unknown;
|
|
12414
|
+
};
|
|
12339
12415
|
/** @description The client's first name. This field will be `null` unless `include_sensitive` is `true`. */
|
|
12340
12416
|
first_name?: string | null;
|
|
12341
12417
|
/** @description The client's last name. This field will be `null` unless `include_sensitive` is `true`. */
|
|
@@ -12864,6 +12940,9 @@ interface components {
|
|
|
12864
12940
|
* "client": null,
|
|
12865
12941
|
* "client_data": {
|
|
12866
12942
|
* "email": "jane@example.com",
|
|
12943
|
+
* "fields": {
|
|
12944
|
+
* "age": 30
|
|
12945
|
+
* },
|
|
12867
12946
|
* "first_name": "Jane",
|
|
12868
12947
|
* "last_name": "Doe",
|
|
12869
12948
|
* "locale": "en",
|
|
@@ -13035,9 +13114,13 @@ interface components {
|
|
|
13035
13114
|
booking_policy: components["schemas"]["BookingIntentBookingPolicy"];
|
|
13036
13115
|
/** @description The linked client */
|
|
13037
13116
|
client?: components["schemas"]["Client"] | null;
|
|
13038
|
-
/** @description Client data accumulated during the booking flow. Sensitive fields (first_name, last_name, email, phone) are redacted unless include_sensitive is true. */
|
|
13117
|
+
/** @description Client data accumulated during the booking flow. Sensitive fields (first_name, last_name, email, phone) are redacted unless include_sensitive is true. Values for `fields` entries flagged as sensitive are also redacted unless include_sensitive is true. */
|
|
13039
13118
|
client_data?: {
|
|
13040
13119
|
email?: string | null;
|
|
13120
|
+
/** @description A map of custom field values set on the client, keyed by field slug. Values for fields marked as sensitive will be `null` unless `include_sensitive` is `true`. */
|
|
13121
|
+
fields?: {
|
|
13122
|
+
[key: string]: unknown;
|
|
13123
|
+
};
|
|
13041
13124
|
first_name?: string | null;
|
|
13042
13125
|
last_name?: string | null;
|
|
13043
13126
|
locale?: string | null;
|
|
@@ -13251,6 +13334,9 @@ interface components {
|
|
|
13251
13334
|
* },
|
|
13252
13335
|
* "client_data": {
|
|
13253
13336
|
* "email": "jane.smith@example.com",
|
|
13337
|
+
* "fields": {
|
|
13338
|
+
* "age": 30
|
|
13339
|
+
* },
|
|
13254
13340
|
* "first_name": "Jane",
|
|
13255
13341
|
* "last_name": "Smith",
|
|
13256
13342
|
* "locale": "en-US",
|
|
@@ -13298,6 +13384,7 @@ interface components {
|
|
|
13298
13384
|
* "conferencing_provider": "zoom_admin",
|
|
13299
13385
|
* "error_message": null,
|
|
13300
13386
|
* "external_meeting_id": "82912345678",
|
|
13387
|
+
* "host_url": "https://book.acme.com/p/appointments/appt_a1b2c3d4e5f6/host?token=An5thqO6Li9Dy9WXe3IsJQYDEXGjS70GjQIdNntKZgw",
|
|
13301
13388
|
* "id": "amtg_a1b2c3d4e5f6",
|
|
13302
13389
|
* "join_url": "https://zoom.us/j/82912345678",
|
|
13303
13390
|
* "object": "appointment_meeting",
|
|
@@ -18309,6 +18396,7 @@ type AdvanceNoticePolicy = Schemas["AdvanceNoticePolicy"];
|
|
|
18309
18396
|
type AggregatedSlot = Schemas["AggregatedSlot"];
|
|
18310
18397
|
type Appointment = Schemas["Appointment"];
|
|
18311
18398
|
type AppointmentCanceledEventData = Schemas["AppointmentCanceledEventData"];
|
|
18399
|
+
type AppointmentClientDataInput = Schemas["AppointmentClientDataInput"];
|
|
18312
18400
|
type AppointmentConfirmedEventData = Schemas["AppointmentConfirmedEventData"];
|
|
18313
18401
|
type AppointmentCreatedEventData = Schemas["AppointmentCreatedEventData"];
|
|
18314
18402
|
type AppointmentDeletedEventData = Schemas["AppointmentDeletedEventData"];
|
|
@@ -18352,6 +18440,7 @@ type CancellationReasonsResponse = Schemas["CancellationReasonsResponse"];
|
|
|
18352
18440
|
type CancelPublicAppointmentRequest = Schemas["CancelPublicAppointmentRequest"];
|
|
18353
18441
|
type Client = Schemas["Client"];
|
|
18354
18442
|
type ClientCreatedEventData = Schemas["ClientCreatedEventData"];
|
|
18443
|
+
type ClientDataInput = Schemas["ClientDataInput"];
|
|
18355
18444
|
type ClientDeletedEventData = Schemas["ClientDeletedEventData"];
|
|
18356
18445
|
type ClientField = Schemas["ClientField"];
|
|
18357
18446
|
type ClientFieldChoice = Schemas["ClientFieldChoice"];
|
|
@@ -18867,18 +18956,7 @@ declare function completeBookingIntent(client: FetchClient, path: PathParams<"/v
|
|
|
18867
18956
|
}, {
|
|
18868
18957
|
body: {
|
|
18869
18958
|
auto_assign_provider?: boolean | null;
|
|
18870
|
-
client_data?:
|
|
18871
|
-
email?: string | null;
|
|
18872
|
-
fields?: {
|
|
18873
|
-
[key: string]: unknown;
|
|
18874
|
-
} | null;
|
|
18875
|
-
first_name?: string | null;
|
|
18876
|
-
last_name?: string | null;
|
|
18877
|
-
locale?: string | null;
|
|
18878
|
-
phone?: string | null;
|
|
18879
|
-
reference_id?: string | null;
|
|
18880
|
-
time_zone?: string | null;
|
|
18881
|
-
} | null;
|
|
18959
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
18882
18960
|
client_id?: string | null;
|
|
18883
18961
|
end_at?: string | null;
|
|
18884
18962
|
metadata?: {
|
|
@@ -18939,18 +19017,7 @@ declare function completePublicBookingIntent(client: FetchClient, path: PathPara
|
|
|
18939
19017
|
}, {
|
|
18940
19018
|
body: {
|
|
18941
19019
|
auto_assign_provider?: boolean | null;
|
|
18942
|
-
client_data?:
|
|
18943
|
-
email?: string | null;
|
|
18944
|
-
fields?: {
|
|
18945
|
-
[key: string]: unknown;
|
|
18946
|
-
} | null;
|
|
18947
|
-
first_name?: string | null;
|
|
18948
|
-
last_name?: string | null;
|
|
18949
|
-
locale?: string | null;
|
|
18950
|
-
phone?: string | null;
|
|
18951
|
-
reference_id?: string | null;
|
|
18952
|
-
time_zone?: string | null;
|
|
18953
|
-
} | null;
|
|
19020
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
18954
19021
|
end_at?: string | null;
|
|
18955
19022
|
provider_id?: string | null;
|
|
18956
19023
|
service_id?: string | null;
|
|
@@ -19163,19 +19230,7 @@ declare function createAppointment(client: FetchClient, body: RequestBody<"/v1/a
|
|
|
19163
19230
|
};
|
|
19164
19231
|
}, {
|
|
19165
19232
|
body: {
|
|
19166
|
-
client_data:
|
|
19167
|
-
email?: string | null;
|
|
19168
|
-
fields?: {
|
|
19169
|
-
[key: string]: unknown;
|
|
19170
|
-
} | null;
|
|
19171
|
-
first_name?: string | null;
|
|
19172
|
-
id?: string | null;
|
|
19173
|
-
last_name?: string | null;
|
|
19174
|
-
locale?: string | null;
|
|
19175
|
-
phone?: string | null;
|
|
19176
|
-
reference_id?: string | null;
|
|
19177
|
-
time_zone: string;
|
|
19178
|
-
};
|
|
19233
|
+
client_data: components["schemas"]["AppointmentClientDataInput"];
|
|
19179
19234
|
end_at: string;
|
|
19180
19235
|
provider_id?: string | null;
|
|
19181
19236
|
service_id: string;
|
|
@@ -19297,18 +19352,7 @@ declare function createBookingIntent(client: FetchClient, body: RequestBody<"/v1
|
|
|
19297
19352
|
enabled?: boolean;
|
|
19298
19353
|
} | null;
|
|
19299
19354
|
} | null;
|
|
19300
|
-
client_data?:
|
|
19301
|
-
email?: string | null;
|
|
19302
|
-
fields?: {
|
|
19303
|
-
[key: string]: unknown;
|
|
19304
|
-
} | null;
|
|
19305
|
-
first_name?: string | null;
|
|
19306
|
-
last_name?: string | null;
|
|
19307
|
-
locale?: string | null;
|
|
19308
|
-
phone?: string | null;
|
|
19309
|
-
reference_id?: string | null;
|
|
19310
|
-
time_zone?: string | null;
|
|
19311
|
-
} | null;
|
|
19355
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
19312
19356
|
client_id?: string | null;
|
|
19313
19357
|
end_at?: string | null;
|
|
19314
19358
|
locked_fields?: ("service_id" | "provider_id" | "slot" | "client_data" | "submissions")[] | null;
|
|
@@ -19710,16 +19754,7 @@ declare function createPublicAppointment(client: FetchClient, body: RequestBody<
|
|
|
19710
19754
|
};
|
|
19711
19755
|
}, {
|
|
19712
19756
|
body: {
|
|
19713
|
-
client_data:
|
|
19714
|
-
email?: string | null;
|
|
19715
|
-
first_name?: string | null;
|
|
19716
|
-
id?: string | null;
|
|
19717
|
-
last_name?: string | null;
|
|
19718
|
-
locale?: string | null;
|
|
19719
|
-
phone?: string | null;
|
|
19720
|
-
reference_id?: string | null;
|
|
19721
|
-
time_zone: string;
|
|
19722
|
-
};
|
|
19757
|
+
client_data: components["schemas"]["AppointmentClientDataInput"];
|
|
19723
19758
|
end_at: string;
|
|
19724
19759
|
provider_id?: string | null;
|
|
19725
19760
|
service_id: string;
|
|
@@ -19769,18 +19804,7 @@ declare function createPublicBookingIntent(client: FetchClient, body: RequestBod
|
|
|
19769
19804
|
body: {
|
|
19770
19805
|
account_id: string;
|
|
19771
19806
|
auto_assign_provider?: boolean | null;
|
|
19772
|
-
client_data?:
|
|
19773
|
-
email?: string | null;
|
|
19774
|
-
fields?: {
|
|
19775
|
-
[key: string]: unknown;
|
|
19776
|
-
} | null;
|
|
19777
|
-
first_name?: string | null;
|
|
19778
|
-
last_name?: string | null;
|
|
19779
|
-
locale?: string | null;
|
|
19780
|
-
phone?: string | null;
|
|
19781
|
-
reference_id?: string | null;
|
|
19782
|
-
time_zone?: string | null;
|
|
19783
|
-
} | null;
|
|
19807
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
19784
19808
|
end_at?: string | null;
|
|
19785
19809
|
provider_id?: string | null;
|
|
19786
19810
|
service_id?: string | null;
|
|
@@ -22971,18 +22995,7 @@ declare function updateBookingIntent(client: FetchClient, path: PathParams<"/v1/
|
|
|
22971
22995
|
enabled?: boolean;
|
|
22972
22996
|
} | null;
|
|
22973
22997
|
} | null;
|
|
22974
|
-
client_data?:
|
|
22975
|
-
email?: string | null;
|
|
22976
|
-
fields?: {
|
|
22977
|
-
[key: string]: unknown;
|
|
22978
|
-
} | null;
|
|
22979
|
-
first_name?: string | null;
|
|
22980
|
-
last_name?: string | null;
|
|
22981
|
-
locale?: string | null;
|
|
22982
|
-
phone?: string | null;
|
|
22983
|
-
reference_id?: string | null;
|
|
22984
|
-
time_zone?: string | null;
|
|
22985
|
-
} | null;
|
|
22998
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
22986
22999
|
client_id?: string | null;
|
|
22987
23000
|
end_at?: string | null;
|
|
22988
23001
|
locked_fields?: ("service_id" | "provider_id" | "slot" | "client_data" | "submissions")[] | null;
|
|
@@ -23482,18 +23495,7 @@ declare function updatePublicBookingIntent(client: FetchClient, path: PathParams
|
|
|
23482
23495
|
}, {
|
|
23483
23496
|
body: {
|
|
23484
23497
|
auto_assign_provider?: boolean | null;
|
|
23485
|
-
client_data?:
|
|
23486
|
-
email?: string | null;
|
|
23487
|
-
fields?: {
|
|
23488
|
-
[key: string]: unknown;
|
|
23489
|
-
} | null;
|
|
23490
|
-
first_name?: string | null;
|
|
23491
|
-
last_name?: string | null;
|
|
23492
|
-
locale?: string | null;
|
|
23493
|
-
phone?: string | null;
|
|
23494
|
-
reference_id?: string | null;
|
|
23495
|
-
time_zone?: string | null;
|
|
23496
|
-
} | null;
|
|
23498
|
+
client_data?: components["schemas"]["ClientDataInput"] | null;
|
|
23497
23499
|
end_at?: string | null;
|
|
23498
23500
|
provider_id?: string | null;
|
|
23499
23501
|
service_id?: string | null;
|
|
@@ -23580,4 +23582,4 @@ declare function updateService(client: FetchClient, path: PathParams<"/v1/servic
|
|
|
23580
23582
|
};
|
|
23581
23583
|
}, `${string}/${string}`>>;
|
|
23582
23584
|
|
|
23583
|
-
export { type Account, type AccountEvent, type AccountResponse, type AccountUser, type AccountUserCreatedEventData, type AccountUserDeletedEventData, type AccountUserResponse, type AccountUserUpdatedEventData, type AccountUsersResponse, type AccountsResponse, type AdvanceNoticePolicy, type AggregatedSlot, type Appointment, type AppointmentCanceledEventData, type AppointmentConfirmedEventData, type AppointmentCreatedEventData, type AppointmentDeletedEventData, type AppointmentMeeting, type AppointmentMeetingCancelFailedEventData, type AppointmentMeetingCanceledEventData, type AppointmentMeetingCreateFailedEventData, type AppointmentMeetingCreatedEventData, type AppointmentMeetingReplaceFailedEventData, type AppointmentMeetingReplacedEventData, type AppointmentMeetingUpdateFailedEventData, type AppointmentMeetingUpdatedEventData, type AppointmentProvider, type AppointmentRescheduledEventData, type AppointmentResponse, type AppointmentsResponse, type AttachServiceFormRequest, type Block, type BlockCreatedEventData, type BlockDeletedEventData, type BlockResponse, type BlockUpdatedEventData, type BlocksResponse, type BookingIntent, type BookingIntentAbandonedEventData, type BookingIntentBookingPolicy, type BookingIntentCompletedEventData, type BookingIntentCreatedEventData, type BookingIntentRequirements, type BookingIntentResponse, type BookingIntentUpdatedEventData, type BookingIntentWorkflow, type BookingIntentsResponse, type BookingPolicy, type CancelAppointmentRequest, type CancelPublicAppointmentRequest, type CancellationEvent, type CancellationPolicy, type CancellationReason, type CancellationReasonResponse, type CancellationReasonsResponse, type Client, type ClientCreatedEventData, type ClientDeletedEventData, type ClientField, type ClientFieldChoice, type ClientFieldOptions, type ClientFieldResponse, type ClientFieldsResponse, type ClientResponse, type ClientUpdatedEventData, type ClientsResponse, type CompleteBookingIntentRequest, type CompletePublicBookingIntentRequest, type ConfirmAppointmentRequest, type ConfirmationEvent, type ConnectedAccount, type ConnectedAccountCreatedEventData, type ConnectedAccountDeletedEventData, type ConnectedAccountReconnectedEventData, type ConnectedAccountRefreshFailedEventData, type ConnectedAccountResponse, type ConnectedAccountsResponse, type CreateAccountRequest, type CreateAccountUserRequest, type CreateAppointmentRequest, type CreateBlockRequest, type CreateBookingIntentRequest, type CreateCancellationReasonRequest, type CreateClientFieldRequest, type CreateClientRequest, type CreateDashboardSessionRequest, type CreateFormRequest, type CreateProviderRequest, type CreateProviderScheduleRequest, type CreatePublicAppointmentRequest, type CreatePublicBookingIntentRequest, type CreateServiceProviderRequest, type CreateServiceRequest, type DashboardSession, type DashboardSessionResponse, type FetchClient, type FetchClientOptions, type FieldChoice, type FieldChoiceInput, type FieldOptions, type FieldOptionsInput, type ForbiddenResponse, type Form, type FormDetail, type FormField, type FormFieldInput, type FormResponse, type FormsResponse, type GenericErrorResponse, type HoldPolicy, type IntentSubmissionInput, type JsonError, type JsonErrorResponse, type MaximizeUtilizationPolicy, type NotFoundResponse, type PaginationMeta, type PathParams, type Platform, type PlatformResponse, type Provider, type ProviderCreatedEventData, type ProviderDeactivatedEventData, type ProviderNotificationConfig, type ProviderNotificationType, type ProviderReactivatedEventData, type ProviderResponse, type ProviderSchedule, type ProviderScheduleCreatedEventData, type ProviderScheduleDeletedEventData, type ProviderScheduleResponse, type ProviderScheduleUpdatedEventData, type ProviderSchedulesResponse, type ProviderUpdatedEventData, type ProvidersResponse, type PublicAppointment, type PublicAppointmentResponse, type PublicBookingIntent, type PublicBookingIntentResponse, type PublicCancellationReason, type PublicCancellationReasonsResponse, type PublicServiceEarliestSlotResponse, type QueryParams, type RecurrenceRule, type RequestBody, type RescheduleAppointmentRequest, type RescheduleEvent, type ReschedulePublicAppointmentRequest, type ReschedulingPolicy, type Role, type RolesResponse, type Service, type ServiceCreatedEventData, type ServiceDeletedEventData, type ServiceForm, type ServiceFormResponse, type ServiceFormsResponse, type ServiceProvider, type ServiceProviderCreatedEventData, type ServiceProviderDeletedEventData, type ServiceProviderResponse, type ServiceProvidersResponse, type ServiceResponse, type ServiceSlotResponse, type ServiceUpdatedEventData, type ServicesResponse, type Slot, type SlotListResponse, type SlotRule, type SortServiceFormsRequest, type SubmissionRequirement, type UnauthorizedResponse, type UpdateAccountRequest, type UpdateAccountUserRequest, type UpdateBlockRequest, type UpdateBookingIntentRequest, type UpdateCancellationReasonRequest, type UpdateClientFieldRequest, type UpdateClientRequest, type UpdateConnectedAccountRequest, type UpdateFormRequest, type UpdateProviderRequest, type UpdateProviderScheduleRequest, type UpdatePublicBookingIntentRequest, type UpdateServiceRequest, type User, type WeeklyRule, type ZonedDateTime, abandonBookingIntent, abandonPublicBookingIntent, attachServiceForm, cancelAppointment, cancelPublicAppointment, completeBookingIntent, completePublicBookingIntent, confirmAppointment, createAccount, createAccountUser, createAppointment, createBlock, createBookingIntent, createCancellationReason, createClient, createClientField, createDashboardSession, createFetchClient, createForm, createProvider, createProviderSchedule, createPublicAppointment, createPublicBookingIntent, createService, createServiceProvider, deactivateProvider, deleteBlock, deleteCancellationReason, deleteClient, deleteClientField, deleteConnectedAccount, deleteForm, deleteProviderSchedule, deleteService, deleteServiceProvider, detachServiceForm, getAccountById, getAppointment, getBlock, getBookingIntent, getCancellationReason, getClient, getClientField, getConnectedAccount, getCurrentAccount, getCurrentAccountUser, getCurrentPlatform, getEarliestPublicServiceSlot, getForm, getProvider, getProviderSchedule, getPublicAppointment, getPublicBookingIntent, getService, listAccountUsers, listAccounts, listAppointments, listBlocks, listBookingIntentSlots, listBookingIntents, listCancellationReasons, listClientFields, listClients, listConnectedAccounts, listForms, listProviderSchedules, listProviders, listPublicBookingIntentSlots, listPublicCancellationReasons, listPublicServiceSlots, listRoles, listServiceForms, listServiceProviders, listServiceSlots, listServices, type paths, rescheduleAppointment, reschedulePublicAppointment, sortServiceForms, updateAccount, updateAccountUser, updateBlock, updateBookingIntent, updateCancellationReason, updateClient, updateClientField, updateConnectedAccount, updateForm, updateProvider, updateProviderSchedule, updatePublicBookingIntent, updateService };
|
|
23585
|
+
export { type Account, type AccountEvent, type AccountResponse, type AccountUser, type AccountUserCreatedEventData, type AccountUserDeletedEventData, type AccountUserResponse, type AccountUserUpdatedEventData, type AccountUsersResponse, type AccountsResponse, type AdvanceNoticePolicy, type AggregatedSlot, type Appointment, type AppointmentCanceledEventData, type AppointmentClientDataInput, type AppointmentConfirmedEventData, type AppointmentCreatedEventData, type AppointmentDeletedEventData, type AppointmentMeeting, type AppointmentMeetingCancelFailedEventData, type AppointmentMeetingCanceledEventData, type AppointmentMeetingCreateFailedEventData, type AppointmentMeetingCreatedEventData, type AppointmentMeetingReplaceFailedEventData, type AppointmentMeetingReplacedEventData, type AppointmentMeetingUpdateFailedEventData, type AppointmentMeetingUpdatedEventData, type AppointmentProvider, type AppointmentRescheduledEventData, type AppointmentResponse, type AppointmentsResponse, type AttachServiceFormRequest, type Block, type BlockCreatedEventData, type BlockDeletedEventData, type BlockResponse, type BlockUpdatedEventData, type BlocksResponse, type BookingIntent, type BookingIntentAbandonedEventData, type BookingIntentBookingPolicy, type BookingIntentCompletedEventData, type BookingIntentCreatedEventData, type BookingIntentRequirements, type BookingIntentResponse, type BookingIntentUpdatedEventData, type BookingIntentWorkflow, type BookingIntentsResponse, type BookingPolicy, type CancelAppointmentRequest, type CancelPublicAppointmentRequest, type CancellationEvent, type CancellationPolicy, type CancellationReason, type CancellationReasonResponse, type CancellationReasonsResponse, type Client, type ClientCreatedEventData, type ClientDataInput, type ClientDeletedEventData, type ClientField, type ClientFieldChoice, type ClientFieldOptions, type ClientFieldResponse, type ClientFieldsResponse, type ClientResponse, type ClientUpdatedEventData, type ClientsResponse, type CompleteBookingIntentRequest, type CompletePublicBookingIntentRequest, type ConfirmAppointmentRequest, type ConfirmationEvent, type ConnectedAccount, type ConnectedAccountCreatedEventData, type ConnectedAccountDeletedEventData, type ConnectedAccountReconnectedEventData, type ConnectedAccountRefreshFailedEventData, type ConnectedAccountResponse, type ConnectedAccountsResponse, type CreateAccountRequest, type CreateAccountUserRequest, type CreateAppointmentRequest, type CreateBlockRequest, type CreateBookingIntentRequest, type CreateCancellationReasonRequest, type CreateClientFieldRequest, type CreateClientRequest, type CreateDashboardSessionRequest, type CreateFormRequest, type CreateProviderRequest, type CreateProviderScheduleRequest, type CreatePublicAppointmentRequest, type CreatePublicBookingIntentRequest, type CreateServiceProviderRequest, type CreateServiceRequest, type DashboardSession, type DashboardSessionResponse, type FetchClient, type FetchClientOptions, type FieldChoice, type FieldChoiceInput, type FieldOptions, type FieldOptionsInput, type ForbiddenResponse, type Form, type FormDetail, type FormField, type FormFieldInput, type FormResponse, type FormsResponse, type GenericErrorResponse, type HoldPolicy, type IntentSubmissionInput, type JsonError, type JsonErrorResponse, type MaximizeUtilizationPolicy, type NotFoundResponse, type PaginationMeta, type PathParams, type Platform, type PlatformResponse, type Provider, type ProviderCreatedEventData, type ProviderDeactivatedEventData, type ProviderNotificationConfig, type ProviderNotificationType, type ProviderReactivatedEventData, type ProviderResponse, type ProviderSchedule, type ProviderScheduleCreatedEventData, type ProviderScheduleDeletedEventData, type ProviderScheduleResponse, type ProviderScheduleUpdatedEventData, type ProviderSchedulesResponse, type ProviderUpdatedEventData, type ProvidersResponse, type PublicAppointment, type PublicAppointmentResponse, type PublicBookingIntent, type PublicBookingIntentResponse, type PublicCancellationReason, type PublicCancellationReasonsResponse, type PublicServiceEarliestSlotResponse, type QueryParams, type RecurrenceRule, type RequestBody, type RescheduleAppointmentRequest, type RescheduleEvent, type ReschedulePublicAppointmentRequest, type ReschedulingPolicy, type Role, type RolesResponse, type Service, type ServiceCreatedEventData, type ServiceDeletedEventData, type ServiceForm, type ServiceFormResponse, type ServiceFormsResponse, type ServiceProvider, type ServiceProviderCreatedEventData, type ServiceProviderDeletedEventData, type ServiceProviderResponse, type ServiceProvidersResponse, type ServiceResponse, type ServiceSlotResponse, type ServiceUpdatedEventData, type ServicesResponse, type Slot, type SlotListResponse, type SlotRule, type SortServiceFormsRequest, type SubmissionRequirement, type UnauthorizedResponse, type UpdateAccountRequest, type UpdateAccountUserRequest, type UpdateBlockRequest, type UpdateBookingIntentRequest, type UpdateCancellationReasonRequest, type UpdateClientFieldRequest, type UpdateClientRequest, type UpdateConnectedAccountRequest, type UpdateFormRequest, type UpdateProviderRequest, type UpdateProviderScheduleRequest, type UpdatePublicBookingIntentRequest, type UpdateServiceRequest, type User, type WeeklyRule, type ZonedDateTime, abandonBookingIntent, abandonPublicBookingIntent, attachServiceForm, cancelAppointment, cancelPublicAppointment, completeBookingIntent, completePublicBookingIntent, confirmAppointment, createAccount, createAccountUser, createAppointment, createBlock, createBookingIntent, createCancellationReason, createClient, createClientField, createDashboardSession, createFetchClient, createForm, createProvider, createProviderSchedule, createPublicAppointment, createPublicBookingIntent, createService, createServiceProvider, deactivateProvider, deleteBlock, deleteCancellationReason, deleteClient, deleteClientField, deleteConnectedAccount, deleteForm, deleteProviderSchedule, deleteService, deleteServiceProvider, detachServiceForm, getAccountById, getAppointment, getBlock, getBookingIntent, getCancellationReason, getClient, getClientField, getConnectedAccount, getCurrentAccount, getCurrentAccountUser, getCurrentPlatform, getEarliestPublicServiceSlot, getForm, getProvider, getProviderSchedule, getPublicAppointment, getPublicBookingIntent, getService, listAccountUsers, listAccounts, listAppointments, listBlocks, listBookingIntentSlots, listBookingIntents, listCancellationReasons, listClientFields, listClients, listConnectedAccounts, listForms, listProviderSchedules, listProviders, listPublicBookingIntentSlots, listPublicCancellationReasons, listPublicServiceSlots, listRoles, listServiceForms, listServiceProviders, listServiceSlots, listServices, type paths, rescheduleAppointment, reschedulePublicAppointment, sortServiceForms, updateAccount, updateAccountUser, updateBlock, updateBookingIntent, updateCancellationReason, updateClient, updateClientField, updateConnectedAccount, updateForm, updateProvider, updateProviderSchedule, updatePublicBookingIntent, updateService };
|