@savvycal/appointments-core 1.7.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 +23 -11
- package/dist/index.d.ts +23 -11
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -8918,17 +8918,25 @@ interface components {
|
|
|
8918
8918
|
* `status` field reflects where the meeting is in its lifecycle. Meeting details
|
|
8919
8919
|
* such as `join_url` are populated only once the status is `created`.
|
|
8920
8920
|
*
|
|
8921
|
-
* The `host_url` field is a
|
|
8922
|
-
*
|
|
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
8923
|
* configured) that the meeting host follows to start the meeting. **Treat
|
|
8924
8924
|
* this URL as a credential — anyone with it can start the meeting as the
|
|
8925
8925
|
* host.** It is valid through the appointment's end time + a 24h grace
|
|
8926
|
-
* window, after which it returns 410 Gone.
|
|
8927
|
-
*
|
|
8928
|
-
*
|
|
8929
|
-
*
|
|
8930
|
-
*
|
|
8931
|
-
*
|
|
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).
|
|
8932
8940
|
* @example {
|
|
8933
8941
|
* "conferencing_provider": "zoom_admin",
|
|
8934
8942
|
* "error_message": null,
|
|
@@ -8956,11 +8964,15 @@ interface components {
|
|
|
8956
8964
|
external_meeting_id: string | null;
|
|
8957
8965
|
/**
|
|
8958
8966
|
* Format: uri
|
|
8959
|
-
* @description
|
|
8967
|
+
* @description Proxy URL the host follows to start the meeting. Treat as a
|
|
8960
8968
|
* credential — anyone with this URL can start the meeting as host.
|
|
8961
8969
|
* Valid through the appointment's end time + 24h grace window, then
|
|
8962
|
-
* returns 410 Gone.
|
|
8963
|
-
*
|
|
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.
|
|
8964
8976
|
*/
|
|
8965
8977
|
host_url: string | null;
|
|
8966
8978
|
/** @description Unique identifier for the object. */
|
package/dist/index.d.ts
CHANGED
|
@@ -8918,17 +8918,25 @@ interface components {
|
|
|
8918
8918
|
* `status` field reflects where the meeting is in its lifecycle. Meeting details
|
|
8919
8919
|
* such as `join_url` are populated only once the status is `created`.
|
|
8920
8920
|
*
|
|
8921
|
-
* The `host_url` field is a
|
|
8922
|
-
*
|
|
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
8923
|
* configured) that the meeting host follows to start the meeting. **Treat
|
|
8924
8924
|
* this URL as a credential — anyone with it can start the meeting as the
|
|
8925
8925
|
* host.** It is valid through the appointment's end time + a 24h grace
|
|
8926
|
-
* window, after which it returns 410 Gone.
|
|
8927
|
-
*
|
|
8928
|
-
*
|
|
8929
|
-
*
|
|
8930
|
-
*
|
|
8931
|
-
*
|
|
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).
|
|
8932
8940
|
* @example {
|
|
8933
8941
|
* "conferencing_provider": "zoom_admin",
|
|
8934
8942
|
* "error_message": null,
|
|
@@ -8956,11 +8964,15 @@ interface components {
|
|
|
8956
8964
|
external_meeting_id: string | null;
|
|
8957
8965
|
/**
|
|
8958
8966
|
* Format: uri
|
|
8959
|
-
* @description
|
|
8967
|
+
* @description Proxy URL the host follows to start the meeting. Treat as a
|
|
8960
8968
|
* credential — anyone with this URL can start the meeting as host.
|
|
8961
8969
|
* Valid through the appointment's end time + 24h grace window, then
|
|
8962
|
-
* returns 410 Gone.
|
|
8963
|
-
*
|
|
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.
|
|
8964
8976
|
*/
|
|
8965
8977
|
host_url: string | null;
|
|
8966
8978
|
/** @description Unique identifier for the object. */
|