@wix/calendar 1.0.14 → 1.0.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/calendar",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@wix/calendar_events": "1.0.9",
|
|
22
22
|
"@wix/calendar_schedule-time-frames": "1.0.7",
|
|
23
|
-
"@wix/calendar_schedules": "1.0.
|
|
23
|
+
"@wix/calendar_schedules": "1.0.11"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"glob": "^10.4.1",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"fqdn": ""
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
"falconPackageHash": "
|
|
48
|
+
"falconPackageHash": "e399c5ecdded75c52bcf09608590b1e6c32c53165ba2f9f4d3bafb9e"
|
|
49
49
|
}
|
|
@@ -2976,7 +2976,7 @@ interface ScheduleUpdatedWithMetadata {
|
|
|
2976
2976
|
}
|
|
2977
2977
|
interface CloneScheduleRequest {
|
|
2978
2978
|
/** The ID of the schedule to clone. */
|
|
2979
|
-
scheduleId
|
|
2979
|
+
scheduleId?: string | null;
|
|
2980
2980
|
/** Optional values to override. */
|
|
2981
2981
|
schedule?: Schedule;
|
|
2982
2982
|
}
|
|
@@ -3711,9 +3711,6 @@ interface CreateScheduleResponseNonNullableFields {
|
|
|
3711
3711
|
interface UpdateScheduleResponseNonNullableFields {
|
|
3712
3712
|
schedule?: ScheduleNonNullableFields;
|
|
3713
3713
|
}
|
|
3714
|
-
interface CloneScheduleResponseNonNullableFields {
|
|
3715
|
-
schedule?: ScheduleNonNullableFields;
|
|
3716
|
-
}
|
|
3717
3714
|
interface CancelScheduleResponseNonNullableFields {
|
|
3718
3715
|
schedule?: ScheduleNonNullableFields;
|
|
3719
3716
|
}
|
|
@@ -3911,10 +3908,6 @@ interface UpdateScheduleOptions {
|
|
|
3911
3908
|
/** Whether to notify participants regarding the changes. */
|
|
3912
3909
|
participantNotification?: ParticipantNotification;
|
|
3913
3910
|
}
|
|
3914
|
-
interface CloneScheduleOptions {
|
|
3915
|
-
/** Optional values to override. */
|
|
3916
|
-
schedule?: Schedule;
|
|
3917
|
-
}
|
|
3918
3911
|
interface CancelScheduleOptions {
|
|
3919
3912
|
/**
|
|
3920
3913
|
* Whether to preserve future events with participants.
|
|
@@ -3961,14 +3954,6 @@ interface UpdateScheduleSignature {
|
|
|
3961
3954
|
*/
|
|
3962
3955
|
(_id: string | null, schedule: UpdateSchedule, options?: UpdateScheduleOptions | undefined): Promise<Schedule & ScheduleNonNullableFields>;
|
|
3963
3956
|
}
|
|
3964
|
-
declare function cloneSchedule$1(httpClient: HttpClient): CloneScheduleSignature;
|
|
3965
|
-
interface CloneScheduleSignature {
|
|
3966
|
-
/**
|
|
3967
|
-
* Clone a schedule.
|
|
3968
|
-
* @param - The ID of the schedule to clone.
|
|
3969
|
-
*/
|
|
3970
|
-
(scheduleId: string | null, options?: CloneScheduleOptions | undefined): Promise<CloneScheduleResponse & CloneScheduleResponseNonNullableFields>;
|
|
3971
|
-
}
|
|
3972
3957
|
declare function cancelSchedule$1(httpClient: HttpClient): CancelScheduleSignature;
|
|
3973
3958
|
interface CancelScheduleSignature {
|
|
3974
3959
|
/**
|
|
@@ -4006,11 +3991,15 @@ declare const getSchedule: MaybeContext<BuildRESTFunction<typeof getSchedule$1>
|
|
|
4006
3991
|
declare const querySchedules: MaybeContext<BuildRESTFunction<typeof querySchedules$1> & typeof querySchedules$1>;
|
|
4007
3992
|
declare const createSchedule: MaybeContext<BuildRESTFunction<typeof createSchedule$1> & typeof createSchedule$1>;
|
|
4008
3993
|
declare const updateSchedule: MaybeContext<BuildRESTFunction<typeof updateSchedule$1> & typeof updateSchedule$1>;
|
|
4009
|
-
declare const cloneSchedule: MaybeContext<BuildRESTFunction<typeof cloneSchedule$1> & typeof cloneSchedule$1>;
|
|
4010
3994
|
declare const cancelSchedule: MaybeContext<BuildRESTFunction<typeof cancelSchedule$1> & typeof cancelSchedule$1>;
|
|
4011
3995
|
|
|
4012
3996
|
type _publicOnScheduleCreatedType = typeof onScheduleCreated$1;
|
|
4013
|
-
/**
|
|
3997
|
+
/**
|
|
3998
|
+
* Restore once implemented.
|
|
3999
|
+
* option (google.api.http) = {
|
|
4000
|
+
* post: "/v3/schedules/{schedule_id}/clone";
|
|
4001
|
+
* };
|
|
4002
|
+
*/
|
|
4014
4003
|
declare const onScheduleCreated: ReturnType<typeof createEventModule$1<_publicOnScheduleCreatedType>>;
|
|
4015
4004
|
|
|
4016
4005
|
type _publicOnScheduleUpdatedType = typeof onScheduleUpdated$1;
|
|
@@ -4030,10 +4019,8 @@ type context$1_CancelScheduleOptions = CancelScheduleOptions;
|
|
|
4030
4019
|
type context$1_CancelScheduleRequest = CancelScheduleRequest;
|
|
4031
4020
|
type context$1_CancelScheduleResponse = CancelScheduleResponse;
|
|
4032
4021
|
type context$1_CancelScheduleResponseNonNullableFields = CancelScheduleResponseNonNullableFields;
|
|
4033
|
-
type context$1_CloneScheduleOptions = CloneScheduleOptions;
|
|
4034
4022
|
type context$1_CloneScheduleRequest = CloneScheduleRequest;
|
|
4035
4023
|
type context$1_CloneScheduleResponse = CloneScheduleResponse;
|
|
4036
|
-
type context$1_CloneScheduleResponseNonNullableFields = CloneScheduleResponseNonNullableFields;
|
|
4037
4024
|
type context$1_CommonIdentificationData = CommonIdentificationData;
|
|
4038
4025
|
type context$1_CommonIdentificationDataIdOneOf = CommonIdentificationDataIdOneOf;
|
|
4039
4026
|
type context$1_ConferencingDetails = ConferencingDetails;
|
|
@@ -4117,7 +4104,6 @@ type context$1__publicOnScheduleClonedType = _publicOnScheduleClonedType;
|
|
|
4117
4104
|
type context$1__publicOnScheduleCreatedType = _publicOnScheduleCreatedType;
|
|
4118
4105
|
type context$1__publicOnScheduleUpdatedType = _publicOnScheduleUpdatedType;
|
|
4119
4106
|
declare const context$1_cancelSchedule: typeof cancelSchedule;
|
|
4120
|
-
declare const context$1_cloneSchedule: typeof cloneSchedule;
|
|
4121
4107
|
declare const context$1_createSchedule: typeof createSchedule;
|
|
4122
4108
|
declare const context$1_getSchedule: typeof getSchedule;
|
|
4123
4109
|
declare const context$1_onScheduleCancelled: typeof onScheduleCancelled;
|
|
@@ -4127,7 +4113,7 @@ declare const context$1_onScheduleUpdated: typeof onScheduleUpdated;
|
|
|
4127
4113
|
declare const context$1_querySchedules: typeof querySchedules;
|
|
4128
4114
|
declare const context$1_updateSchedule: typeof updateSchedule;
|
|
4129
4115
|
declare namespace context$1 {
|
|
4130
|
-
export { type ActionEvent$1 as ActionEvent, type Address$1 as Address, type AddressHint$1 as AddressHint, type context$1_Asset as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type BusinessSchedule$1 as BusinessSchedule, type context$1_CancelScheduleOptions as CancelScheduleOptions, type context$1_CancelScheduleRequest as CancelScheduleRequest, type context$1_CancelScheduleResponse as CancelScheduleResponse, type context$1_CancelScheduleResponseNonNullableFields as CancelScheduleResponseNonNullableFields, type Categories$1 as Categories, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, type context$
|
|
4116
|
+
export { type ActionEvent$1 as ActionEvent, type Address$1 as Address, type AddressHint$1 as AddressHint, type context$1_Asset as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type BusinessSchedule$1 as BusinessSchedule, type context$1_CancelScheduleOptions as CancelScheduleOptions, type context$1_CancelScheduleRequest as CancelScheduleRequest, type context$1_CancelScheduleResponse as CancelScheduleResponse, type context$1_CancelScheduleResponseNonNullableFields as CancelScheduleResponseNonNullableFields, type Categories$1 as Categories, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, type context$1_CloneScheduleRequest as CloneScheduleRequest, type context$1_CloneScheduleResponse as CloneScheduleResponse, type context$1_CommonIdentificationData as CommonIdentificationData, type context$1_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type context$1_ConferencingDetails as ConferencingDetails, type ConsentPolicy$1 as ConsentPolicy, type context$1_CreateScheduleOptions as CreateScheduleOptions, type context$1_CreateScheduleRequest as CreateScheduleRequest, type context$1_CreateScheduleResponse as CreateScheduleResponse, type context$1_CreateScheduleResponseNonNullableFields as CreateScheduleResponseNonNullableFields, type context$1_CursorPaging as CursorPaging, type context$1_CursorPagingMetadata as CursorPagingMetadata, type context$1_CursorQuery as CursorQuery, type context$1_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context$1_Cursors as Cursors, DayOfWeek$1 as DayOfWeek, type context$1_DeleteContext as DeleteContext, context$1_DeleteStatus as DeleteStatus, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$1_ExtendedFields as ExtendedFields, type GeoCoordinates$1 as GeoCoordinates, type context$1_GetScheduleOptions as GetScheduleOptions, type context$1_GetScheduleRequest as GetScheduleRequest, type context$1_GetScheduleResponse as GetScheduleResponse, type context$1_GetScheduleResponseNonNullableFields as GetScheduleResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$1_IdentityType as IdentityType, type Locale$1 as Locale, type context$1_Location as Location, context$1_LocationType as LocationType, type MessageEnvelope$1 as MessageEnvelope, type context$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type Multilingual$1 as Multilingual, context$1_Namespace as Namespace, type context$1_NamespaceChanged as NamespaceChanged, type context$1_ParticipantNotification as ParticipantNotification, type context$1_Permission as Permission, PlacementType$1 as PlacementType, type Properties$1 as Properties, type PropertiesChange$1 as PropertiesChange, type context$1_QuerySchedulesOptions as QuerySchedulesOptions, type context$1_QuerySchedulesRequest as QuerySchedulesRequest, type context$1_QuerySchedulesResponse as QuerySchedulesResponse, type context$1_QuerySchedulesResponseNonNullableFields as QuerySchedulesResponseNonNullableFields, context$1_RequestedFields as RequestedFields, ResolutionMethod$1 as ResolutionMethod, type RestoreInfo$1 as RestoreInfo, context$1_Role as Role, type context$1_Schedule as Schedule, type context$1_ScheduleCancelled as ScheduleCancelled, type context$1_ScheduleCancelledEnvelope as ScheduleCancelledEnvelope, type context$1_ScheduleCloned as ScheduleCloned, type context$1_ScheduleClonedEnvelope as ScheduleClonedEnvelope, type context$1_ScheduleCreatedEnvelope as ScheduleCreatedEnvelope, type context$1_ScheduleNonNullableFields as ScheduleNonNullableFields, type context$1_ScheduleUpdatedEnvelope as ScheduleUpdatedEnvelope, type context$1_ScheduleUpdatedWithMetadata as ScheduleUpdatedWithMetadata, type context$1_SchedulesQueryBuilder as SchedulesQueryBuilder, type context$1_SchedulesQueryResult as SchedulesQueryResult, type context$1_ServiceProvisioned as ServiceProvisioned, type context$1_ServiceRemoved as ServiceRemoved, type SiteCloned$1 as SiteCloned, type SiteCreated$1 as SiteCreated, context$1_SiteCreatedContext as SiteCreatedContext, type context$1_SiteDeleted as SiteDeleted, type context$1_SiteHardDeleted as SiteHardDeleted, type context$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type SitePropertiesEvent$1 as SitePropertiesEvent, type SitePropertiesNotification$1 as SitePropertiesNotification, type context$1_SitePublished as SitePublished, type context$1_SiteRenamed as SiteRenamed, type context$1_SiteTransferred as SiteTransferred, type context$1_SiteUndeleted as SiteUndeleted, type context$1_SiteUnpublished as SiteUnpublished, type SpecialHourPeriod$1 as SpecialHourPeriod, context$1_State as State, Status$1 as Status, type context$1_StudioAssigned as StudioAssigned, type context$1_StudioUnassigned as StudioUnassigned, type SupportedLanguage$1 as SupportedLanguage, type TimePeriod$1 as TimePeriod, type Translation$1 as Translation, context$1_Trigger as Trigger, context$1_Type as Type, type context$1_UpdateSchedule as UpdateSchedule, type context$1_UpdateScheduleOptions as UpdateScheduleOptions, type context$1_UpdateScheduleRequest as UpdateScheduleRequest, type context$1_UpdateScheduleResponse as UpdateScheduleResponse, type context$1_UpdateScheduleResponseNonNullableFields as UpdateScheduleResponseNonNullableFields, type context$1_V4SiteCreated as V4SiteCreated, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnScheduleCancelledType as _publicOnScheduleCancelledType, type context$1__publicOnScheduleClonedType as _publicOnScheduleClonedType, type context$1__publicOnScheduleCreatedType as _publicOnScheduleCreatedType, type context$1__publicOnScheduleUpdatedType as _publicOnScheduleUpdatedType, context$1_cancelSchedule as cancelSchedule, context$1_createSchedule as createSchedule, context$1_getSchedule as getSchedule, context$1_onScheduleCancelled as onScheduleCancelled, context$1_onScheduleCloned as onScheduleCloned, context$1_onScheduleCreated as onScheduleCreated, context$1_onScheduleUpdated as onScheduleUpdated, onScheduleCancelled$1 as publicOnScheduleCancelled, onScheduleCloned$1 as publicOnScheduleCloned, onScheduleCreated$1 as publicOnScheduleCreated, onScheduleUpdated$1 as publicOnScheduleUpdated, context$1_querySchedules as querySchedules, context$1_updateSchedule as updateSchedule };
|
|
4131
4117
|
}
|
|
4132
4118
|
|
|
4133
4119
|
interface ScheduleTimeFrame {
|
|
@@ -2976,7 +2976,7 @@ interface ScheduleUpdatedWithMetadata {
|
|
|
2976
2976
|
}
|
|
2977
2977
|
interface CloneScheduleRequest {
|
|
2978
2978
|
/** The ID of the schedule to clone. */
|
|
2979
|
-
scheduleId
|
|
2979
|
+
scheduleId?: string | null;
|
|
2980
2980
|
/** Optional values to override. */
|
|
2981
2981
|
schedule?: Schedule;
|
|
2982
2982
|
}
|
|
@@ -3711,9 +3711,6 @@ interface CreateScheduleResponseNonNullableFields {
|
|
|
3711
3711
|
interface UpdateScheduleResponseNonNullableFields {
|
|
3712
3712
|
schedule?: ScheduleNonNullableFields;
|
|
3713
3713
|
}
|
|
3714
|
-
interface CloneScheduleResponseNonNullableFields {
|
|
3715
|
-
schedule?: ScheduleNonNullableFields;
|
|
3716
|
-
}
|
|
3717
3714
|
interface CancelScheduleResponseNonNullableFields {
|
|
3718
3715
|
schedule?: ScheduleNonNullableFields;
|
|
3719
3716
|
}
|
|
@@ -3911,10 +3908,6 @@ interface UpdateScheduleOptions {
|
|
|
3911
3908
|
/** Whether to notify participants regarding the changes. */
|
|
3912
3909
|
participantNotification?: ParticipantNotification;
|
|
3913
3910
|
}
|
|
3914
|
-
interface CloneScheduleOptions {
|
|
3915
|
-
/** Optional values to override. */
|
|
3916
|
-
schedule?: Schedule;
|
|
3917
|
-
}
|
|
3918
3911
|
interface CancelScheduleOptions {
|
|
3919
3912
|
/**
|
|
3920
3913
|
* Whether to preserve future events with participants.
|
|
@@ -3961,14 +3954,6 @@ interface UpdateScheduleSignature {
|
|
|
3961
3954
|
*/
|
|
3962
3955
|
(_id: string | null, schedule: UpdateSchedule, options?: UpdateScheduleOptions | undefined): Promise<Schedule & ScheduleNonNullableFields>;
|
|
3963
3956
|
}
|
|
3964
|
-
declare function cloneSchedule$1(httpClient: HttpClient): CloneScheduleSignature;
|
|
3965
|
-
interface CloneScheduleSignature {
|
|
3966
|
-
/**
|
|
3967
|
-
* Clone a schedule.
|
|
3968
|
-
* @param - The ID of the schedule to clone.
|
|
3969
|
-
*/
|
|
3970
|
-
(scheduleId: string | null, options?: CloneScheduleOptions | undefined): Promise<CloneScheduleResponse & CloneScheduleResponseNonNullableFields>;
|
|
3971
|
-
}
|
|
3972
3957
|
declare function cancelSchedule$1(httpClient: HttpClient): CancelScheduleSignature;
|
|
3973
3958
|
interface CancelScheduleSignature {
|
|
3974
3959
|
/**
|
|
@@ -4006,11 +3991,15 @@ declare const getSchedule: MaybeContext<BuildRESTFunction<typeof getSchedule$1>
|
|
|
4006
3991
|
declare const querySchedules: MaybeContext<BuildRESTFunction<typeof querySchedules$1> & typeof querySchedules$1>;
|
|
4007
3992
|
declare const createSchedule: MaybeContext<BuildRESTFunction<typeof createSchedule$1> & typeof createSchedule$1>;
|
|
4008
3993
|
declare const updateSchedule: MaybeContext<BuildRESTFunction<typeof updateSchedule$1> & typeof updateSchedule$1>;
|
|
4009
|
-
declare const cloneSchedule: MaybeContext<BuildRESTFunction<typeof cloneSchedule$1> & typeof cloneSchedule$1>;
|
|
4010
3994
|
declare const cancelSchedule: MaybeContext<BuildRESTFunction<typeof cancelSchedule$1> & typeof cancelSchedule$1>;
|
|
4011
3995
|
|
|
4012
3996
|
type _publicOnScheduleCreatedType = typeof onScheduleCreated$1;
|
|
4013
|
-
/**
|
|
3997
|
+
/**
|
|
3998
|
+
* Restore once implemented.
|
|
3999
|
+
* option (google.api.http) = {
|
|
4000
|
+
* post: "/v3/schedules/{schedule_id}/clone";
|
|
4001
|
+
* };
|
|
4002
|
+
*/
|
|
4014
4003
|
declare const onScheduleCreated: ReturnType<typeof createEventModule$1<_publicOnScheduleCreatedType>>;
|
|
4015
4004
|
|
|
4016
4005
|
type _publicOnScheduleUpdatedType = typeof onScheduleUpdated$1;
|
|
@@ -4030,10 +4019,8 @@ type index_d$1_CancelScheduleOptions = CancelScheduleOptions;
|
|
|
4030
4019
|
type index_d$1_CancelScheduleRequest = CancelScheduleRequest;
|
|
4031
4020
|
type index_d$1_CancelScheduleResponse = CancelScheduleResponse;
|
|
4032
4021
|
type index_d$1_CancelScheduleResponseNonNullableFields = CancelScheduleResponseNonNullableFields;
|
|
4033
|
-
type index_d$1_CloneScheduleOptions = CloneScheduleOptions;
|
|
4034
4022
|
type index_d$1_CloneScheduleRequest = CloneScheduleRequest;
|
|
4035
4023
|
type index_d$1_CloneScheduleResponse = CloneScheduleResponse;
|
|
4036
|
-
type index_d$1_CloneScheduleResponseNonNullableFields = CloneScheduleResponseNonNullableFields;
|
|
4037
4024
|
type index_d$1_CommonIdentificationData = CommonIdentificationData;
|
|
4038
4025
|
type index_d$1_CommonIdentificationDataIdOneOf = CommonIdentificationDataIdOneOf;
|
|
4039
4026
|
type index_d$1_ConferencingDetails = ConferencingDetails;
|
|
@@ -4117,7 +4104,6 @@ type index_d$1__publicOnScheduleClonedType = _publicOnScheduleClonedType;
|
|
|
4117
4104
|
type index_d$1__publicOnScheduleCreatedType = _publicOnScheduleCreatedType;
|
|
4118
4105
|
type index_d$1__publicOnScheduleUpdatedType = _publicOnScheduleUpdatedType;
|
|
4119
4106
|
declare const index_d$1_cancelSchedule: typeof cancelSchedule;
|
|
4120
|
-
declare const index_d$1_cloneSchedule: typeof cloneSchedule;
|
|
4121
4107
|
declare const index_d$1_createSchedule: typeof createSchedule;
|
|
4122
4108
|
declare const index_d$1_getSchedule: typeof getSchedule;
|
|
4123
4109
|
declare const index_d$1_onScheduleCancelled: typeof onScheduleCancelled;
|
|
@@ -4127,7 +4113,7 @@ declare const index_d$1_onScheduleUpdated: typeof onScheduleUpdated;
|
|
|
4127
4113
|
declare const index_d$1_querySchedules: typeof querySchedules;
|
|
4128
4114
|
declare const index_d$1_updateSchedule: typeof updateSchedule;
|
|
4129
4115
|
declare namespace index_d$1 {
|
|
4130
|
-
export { type ActionEvent$1 as ActionEvent, type Address$1 as Address, type AddressHint$1 as AddressHint, type index_d$1_Asset as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type BusinessSchedule$1 as BusinessSchedule, type index_d$1_CancelScheduleOptions as CancelScheduleOptions, type index_d$1_CancelScheduleRequest as CancelScheduleRequest, type index_d$1_CancelScheduleResponse as CancelScheduleResponse, type index_d$1_CancelScheduleResponseNonNullableFields as CancelScheduleResponseNonNullableFields, type Categories$1 as Categories, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, type index_d$
|
|
4116
|
+
export { type ActionEvent$1 as ActionEvent, type Address$1 as Address, type AddressHint$1 as AddressHint, type index_d$1_Asset as Asset, type BaseEventMetadata$1 as BaseEventMetadata, type BusinessSchedule$1 as BusinessSchedule, type index_d$1_CancelScheduleOptions as CancelScheduleOptions, type index_d$1_CancelScheduleRequest as CancelScheduleRequest, type index_d$1_CancelScheduleResponse as CancelScheduleResponse, type index_d$1_CancelScheduleResponseNonNullableFields as CancelScheduleResponseNonNullableFields, type Categories$1 as Categories, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, type index_d$1_CloneScheduleRequest as CloneScheduleRequest, type index_d$1_CloneScheduleResponse as CloneScheduleResponse, type index_d$1_CommonIdentificationData as CommonIdentificationData, type index_d$1_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type index_d$1_ConferencingDetails as ConferencingDetails, type ConsentPolicy$1 as ConsentPolicy, type index_d$1_CreateScheduleOptions as CreateScheduleOptions, type index_d$1_CreateScheduleRequest as CreateScheduleRequest, type index_d$1_CreateScheduleResponse as CreateScheduleResponse, type index_d$1_CreateScheduleResponseNonNullableFields as CreateScheduleResponseNonNullableFields, type index_d$1_CursorPaging as CursorPaging, type index_d$1_CursorPagingMetadata as CursorPagingMetadata, type index_d$1_CursorQuery as CursorQuery, type index_d$1_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$1_Cursors as Cursors, DayOfWeek$1 as DayOfWeek, type index_d$1_DeleteContext as DeleteContext, index_d$1_DeleteStatus as DeleteStatus, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$1_ExtendedFields as ExtendedFields, type GeoCoordinates$1 as GeoCoordinates, type index_d$1_GetScheduleOptions as GetScheduleOptions, type index_d$1_GetScheduleRequest as GetScheduleRequest, type index_d$1_GetScheduleResponse as GetScheduleResponse, type index_d$1_GetScheduleResponseNonNullableFields as GetScheduleResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$1_IdentityType as IdentityType, type Locale$1 as Locale, type index_d$1_Location as Location, index_d$1_LocationType as LocationType, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type Multilingual$1 as Multilingual, index_d$1_Namespace as Namespace, type index_d$1_NamespaceChanged as NamespaceChanged, type index_d$1_ParticipantNotification as ParticipantNotification, type index_d$1_Permission as Permission, PlacementType$1 as PlacementType, type Properties$1 as Properties, type PropertiesChange$1 as PropertiesChange, type index_d$1_QuerySchedulesOptions as QuerySchedulesOptions, type index_d$1_QuerySchedulesRequest as QuerySchedulesRequest, type index_d$1_QuerySchedulesResponse as QuerySchedulesResponse, type index_d$1_QuerySchedulesResponseNonNullableFields as QuerySchedulesResponseNonNullableFields, index_d$1_RequestedFields as RequestedFields, ResolutionMethod$1 as ResolutionMethod, type RestoreInfo$1 as RestoreInfo, index_d$1_Role as Role, type index_d$1_Schedule as Schedule, type index_d$1_ScheduleCancelled as ScheduleCancelled, type index_d$1_ScheduleCancelledEnvelope as ScheduleCancelledEnvelope, type index_d$1_ScheduleCloned as ScheduleCloned, type index_d$1_ScheduleClonedEnvelope as ScheduleClonedEnvelope, type index_d$1_ScheduleCreatedEnvelope as ScheduleCreatedEnvelope, type index_d$1_ScheduleNonNullableFields as ScheduleNonNullableFields, type index_d$1_ScheduleUpdatedEnvelope as ScheduleUpdatedEnvelope, type index_d$1_ScheduleUpdatedWithMetadata as ScheduleUpdatedWithMetadata, type index_d$1_SchedulesQueryBuilder as SchedulesQueryBuilder, type index_d$1_SchedulesQueryResult as SchedulesQueryResult, type index_d$1_ServiceProvisioned as ServiceProvisioned, type index_d$1_ServiceRemoved as ServiceRemoved, type SiteCloned$1 as SiteCloned, type SiteCreated$1 as SiteCreated, index_d$1_SiteCreatedContext as SiteCreatedContext, type index_d$1_SiteDeleted as SiteDeleted, type index_d$1_SiteHardDeleted as SiteHardDeleted, type index_d$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type SitePropertiesEvent$1 as SitePropertiesEvent, type SitePropertiesNotification$1 as SitePropertiesNotification, type index_d$1_SitePublished as SitePublished, type index_d$1_SiteRenamed as SiteRenamed, type index_d$1_SiteTransferred as SiteTransferred, type index_d$1_SiteUndeleted as SiteUndeleted, type index_d$1_SiteUnpublished as SiteUnpublished, type SpecialHourPeriod$1 as SpecialHourPeriod, index_d$1_State as State, Status$1 as Status, type index_d$1_StudioAssigned as StudioAssigned, type index_d$1_StudioUnassigned as StudioUnassigned, type SupportedLanguage$1 as SupportedLanguage, type TimePeriod$1 as TimePeriod, type Translation$1 as Translation, index_d$1_Trigger as Trigger, index_d$1_Type as Type, type index_d$1_UpdateSchedule as UpdateSchedule, type index_d$1_UpdateScheduleOptions as UpdateScheduleOptions, type index_d$1_UpdateScheduleRequest as UpdateScheduleRequest, type index_d$1_UpdateScheduleResponse as UpdateScheduleResponse, type index_d$1_UpdateScheduleResponseNonNullableFields as UpdateScheduleResponseNonNullableFields, type index_d$1_V4SiteCreated as V4SiteCreated, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnScheduleCancelledType as _publicOnScheduleCancelledType, type index_d$1__publicOnScheduleClonedType as _publicOnScheduleClonedType, type index_d$1__publicOnScheduleCreatedType as _publicOnScheduleCreatedType, type index_d$1__publicOnScheduleUpdatedType as _publicOnScheduleUpdatedType, index_d$1_cancelSchedule as cancelSchedule, index_d$1_createSchedule as createSchedule, index_d$1_getSchedule as getSchedule, index_d$1_onScheduleCancelled as onScheduleCancelled, index_d$1_onScheduleCloned as onScheduleCloned, index_d$1_onScheduleCreated as onScheduleCreated, index_d$1_onScheduleUpdated as onScheduleUpdated, onScheduleCancelled$1 as publicOnScheduleCancelled, onScheduleCloned$1 as publicOnScheduleCloned, onScheduleCreated$1 as publicOnScheduleCreated, onScheduleUpdated$1 as publicOnScheduleUpdated, index_d$1_querySchedules as querySchedules, index_d$1_updateSchedule as updateSchedule };
|
|
4131
4117
|
}
|
|
4132
4118
|
|
|
4133
4119
|
interface ScheduleTimeFrame {
|
|
@@ -2371,16 +2371,6 @@ interface UpdateScheduleResponse$1 {
|
|
|
2371
2371
|
/** The updated schedule. */
|
|
2372
2372
|
schedule?: Schedule$1;
|
|
2373
2373
|
}
|
|
2374
|
-
interface CloneScheduleRequest$1 {
|
|
2375
|
-
/** The ID of the schedule to clone. */
|
|
2376
|
-
scheduleId: string | null;
|
|
2377
|
-
/** Optional values to override. */
|
|
2378
|
-
schedule?: Schedule$1;
|
|
2379
|
-
}
|
|
2380
|
-
interface CloneScheduleResponse$1 {
|
|
2381
|
-
/** The new cloned schedule. */
|
|
2382
|
-
schedule?: Schedule$1;
|
|
2383
|
-
}
|
|
2384
2374
|
interface CancelScheduleRequest$1 {
|
|
2385
2375
|
/** The ID of the schedule to cancel. */
|
|
2386
2376
|
scheduleId: string | null;
|
|
@@ -2428,9 +2418,6 @@ interface CreateScheduleResponseNonNullableFields$1 {
|
|
|
2428
2418
|
interface UpdateScheduleResponseNonNullableFields$1 {
|
|
2429
2419
|
schedule?: ScheduleNonNullableFields$1;
|
|
2430
2420
|
}
|
|
2431
|
-
interface CloneScheduleResponseNonNullableFields$1 {
|
|
2432
|
-
schedule?: ScheduleNonNullableFields$1;
|
|
2433
|
-
}
|
|
2434
2421
|
interface CancelScheduleResponseNonNullableFields$1 {
|
|
2435
2422
|
schedule?: ScheduleNonNullableFields$1;
|
|
2436
2423
|
}
|
|
@@ -2739,16 +2726,6 @@ interface UpdateScheduleResponse {
|
|
|
2739
2726
|
/** The updated schedule. */
|
|
2740
2727
|
schedule?: Schedule;
|
|
2741
2728
|
}
|
|
2742
|
-
interface CloneScheduleRequest {
|
|
2743
|
-
/** The ID of the schedule to clone. */
|
|
2744
|
-
scheduleId: string | null;
|
|
2745
|
-
/** Optional values to override. */
|
|
2746
|
-
schedule?: Schedule;
|
|
2747
|
-
}
|
|
2748
|
-
interface CloneScheduleResponse {
|
|
2749
|
-
/** The new cloned schedule. */
|
|
2750
|
-
schedule?: Schedule;
|
|
2751
|
-
}
|
|
2752
2729
|
interface CancelScheduleRequest {
|
|
2753
2730
|
/** The ID of the schedule to cancel. */
|
|
2754
2731
|
scheduleId: string | null;
|
|
@@ -2796,9 +2773,6 @@ interface CreateScheduleResponseNonNullableFields {
|
|
|
2796
2773
|
interface UpdateScheduleResponseNonNullableFields {
|
|
2797
2774
|
schedule?: ScheduleNonNullableFields;
|
|
2798
2775
|
}
|
|
2799
|
-
interface CloneScheduleResponseNonNullableFields {
|
|
2800
|
-
schedule?: ScheduleNonNullableFields;
|
|
2801
|
-
}
|
|
2802
2776
|
interface CancelScheduleResponseNonNullableFields {
|
|
2803
2777
|
schedule?: ScheduleNonNullableFields;
|
|
2804
2778
|
}
|
|
@@ -2821,21 +2795,17 @@ declare function createSchedule(): __PublicMethodMetaInfo$1<'POST', {}, CreateSc
|
|
|
2821
2795
|
declare function updateSchedule(): __PublicMethodMetaInfo$1<'PATCH', {
|
|
2822
2796
|
scheduleId: string;
|
|
2823
2797
|
}, UpdateScheduleRequest, UpdateScheduleRequest$1, UpdateScheduleResponse & UpdateScheduleResponseNonNullableFields, UpdateScheduleResponse$1 & UpdateScheduleResponseNonNullableFields$1>;
|
|
2824
|
-
declare function cloneSchedule(): __PublicMethodMetaInfo$1<'POST', {
|
|
2825
|
-
scheduleId: string;
|
|
2826
|
-
}, CloneScheduleRequest, CloneScheduleRequest$1, CloneScheduleResponse & CloneScheduleResponseNonNullableFields, CloneScheduleResponse$1 & CloneScheduleResponseNonNullableFields$1>;
|
|
2827
2798
|
declare function cancelSchedule(): __PublicMethodMetaInfo$1<'POST', {
|
|
2828
2799
|
scheduleId: string;
|
|
2829
2800
|
}, CancelScheduleRequest, CancelScheduleRequest$1, CancelScheduleResponse & CancelScheduleResponseNonNullableFields, CancelScheduleResponse$1 & CancelScheduleResponseNonNullableFields$1>;
|
|
2830
2801
|
|
|
2831
2802
|
declare const meta$1_cancelSchedule: typeof cancelSchedule;
|
|
2832
|
-
declare const meta$1_cloneSchedule: typeof cloneSchedule;
|
|
2833
2803
|
declare const meta$1_createSchedule: typeof createSchedule;
|
|
2834
2804
|
declare const meta$1_getSchedule: typeof getSchedule;
|
|
2835
2805
|
declare const meta$1_querySchedules: typeof querySchedules;
|
|
2836
2806
|
declare const meta$1_updateSchedule: typeof updateSchedule;
|
|
2837
2807
|
declare namespace meta$1 {
|
|
2838
|
-
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_cancelSchedule as cancelSchedule, meta$
|
|
2808
|
+
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_cancelSchedule as cancelSchedule, meta$1_createSchedule as createSchedule, meta$1_getSchedule as getSchedule, meta$1_querySchedules as querySchedules, meta$1_updateSchedule as updateSchedule };
|
|
2839
2809
|
}
|
|
2840
2810
|
|
|
2841
2811
|
interface ScheduleTimeFrame$1 {
|