@wix/calendar 1.0.29 → 1.0.30
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.30",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@wix/calendar_events": "1.0.17",
|
|
23
23
|
"@wix/calendar_participations": "1.0.7",
|
|
24
24
|
"@wix/calendar_schedule-time-frames": "1.0.13",
|
|
25
|
-
"@wix/calendar_schedules": "1.0.
|
|
25
|
+
"@wix/calendar_schedules": "1.0.18"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "ac76a7955f99ae519136b3df615a562d027153f75aa02648e107370c"
|
|
51
51
|
}
|
|
@@ -4516,7 +4516,7 @@ interface Schedule {
|
|
|
4516
4516
|
* [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
|
|
4517
4517
|
* For example, `America/New_York`.
|
|
4518
4518
|
*
|
|
4519
|
-
* Default: `timeZone` specified in the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4519
|
+
* Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4520
4520
|
*
|
|
4521
4521
|
* Min: 1 character
|
|
4522
4522
|
* Max: 150 characters
|
|
@@ -4524,7 +4524,7 @@ interface Schedule {
|
|
|
4524
4524
|
timeZone?: string | null;
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Whether the schedule's `timeZone` is automatically synced from
|
|
4527
|
-
* `timeZone` of the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4527
|
+
* `timeZone` of the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4528
4528
|
*
|
|
4529
4529
|
* Default: `true`
|
|
4530
4530
|
*/
|
|
@@ -5763,7 +5763,7 @@ interface UpdateSchedule {
|
|
|
5763
5763
|
* [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
|
|
5764
5764
|
* For example, `America/New_York`.
|
|
5765
5765
|
*
|
|
5766
|
-
* Default: `timeZone` specified in the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5766
|
+
* Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5767
5767
|
*
|
|
5768
5768
|
* Min: 1 character
|
|
5769
5769
|
* Max: 150 characters
|
|
@@ -5771,7 +5771,7 @@ interface UpdateSchedule {
|
|
|
5771
5771
|
timeZone?: string | null;
|
|
5772
5772
|
/**
|
|
5773
5773
|
* Whether the schedule's `timeZone` is automatically synced from
|
|
5774
|
-
* `timeZone` of the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5774
|
+
* `timeZone` of the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5775
5775
|
*
|
|
5776
5776
|
* Default: `true`
|
|
5777
5777
|
*/
|
|
@@ -5950,10 +5950,7 @@ declare const cancelSchedule: MaybeContext<BuildRESTFunction<typeof cancelSchedu
|
|
|
5950
5950
|
|
|
5951
5951
|
type _publicOnScheduleCreatedType = typeof onScheduleCreated$1;
|
|
5952
5952
|
/**
|
|
5953
|
-
*
|
|
5954
|
-
* option (google.api.http) = {
|
|
5955
|
-
* post: "/v3/schedules/{schedule_id}/clone";
|
|
5956
|
-
* };
|
|
5953
|
+
* Triggered when a schedule is created.
|
|
5957
5954
|
*/
|
|
5958
5955
|
declare const onScheduleCreated: ReturnType<typeof createEventModule$1<_publicOnScheduleCreatedType>>;
|
|
5959
5956
|
|
|
@@ -5964,7 +5961,9 @@ type _publicOnScheduleUpdatedType = typeof onScheduleUpdated$1;
|
|
|
5964
5961
|
declare const onScheduleUpdated: ReturnType<typeof createEventModule$1<_publicOnScheduleUpdatedType>>;
|
|
5965
5962
|
|
|
5966
5963
|
type _publicOnScheduleClonedType = typeof onScheduleCloned$1;
|
|
5967
|
-
/**
|
|
5964
|
+
/**
|
|
5965
|
+
* Triggered when a schedule is cloned.
|
|
5966
|
+
*/
|
|
5968
5967
|
declare const onScheduleCloned: ReturnType<typeof createEventModule$1<_publicOnScheduleClonedType>>;
|
|
5969
5968
|
|
|
5970
5969
|
type _publicOnScheduleCancelledType = typeof onScheduleCancelled$1;
|
|
@@ -4516,7 +4516,7 @@ interface Schedule {
|
|
|
4516
4516
|
* [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
|
|
4517
4517
|
* For example, `America/New_York`.
|
|
4518
4518
|
*
|
|
4519
|
-
* Default: `timeZone` specified in the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4519
|
+
* Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4520
4520
|
*
|
|
4521
4521
|
* Min: 1 character
|
|
4522
4522
|
* Max: 150 characters
|
|
@@ -4524,7 +4524,7 @@ interface Schedule {
|
|
|
4524
4524
|
timeZone?: string | null;
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Whether the schedule's `timeZone` is automatically synced from
|
|
4527
|
-
* `timeZone` of the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4527
|
+
* `timeZone` of the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4528
4528
|
*
|
|
4529
4529
|
* Default: `true`
|
|
4530
4530
|
*/
|
|
@@ -5763,7 +5763,7 @@ interface UpdateSchedule {
|
|
|
5763
5763
|
* [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
|
|
5764
5764
|
* For example, `America/New_York`.
|
|
5765
5765
|
*
|
|
5766
|
-
* Default: `timeZone` specified in the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5766
|
+
* Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5767
5767
|
*
|
|
5768
5768
|
* Min: 1 character
|
|
5769
5769
|
* Max: 150 characters
|
|
@@ -5771,7 +5771,7 @@ interface UpdateSchedule {
|
|
|
5771
5771
|
timeZone?: string | null;
|
|
5772
5772
|
/**
|
|
5773
5773
|
* Whether the schedule's `timeZone` is automatically synced from
|
|
5774
|
-
* `timeZone` of the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5774
|
+
* `timeZone` of the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
5775
5775
|
*
|
|
5776
5776
|
* Default: `true`
|
|
5777
5777
|
*/
|
|
@@ -5950,10 +5950,7 @@ declare const cancelSchedule: MaybeContext<BuildRESTFunction<typeof cancelSchedu
|
|
|
5950
5950
|
|
|
5951
5951
|
type _publicOnScheduleCreatedType = typeof onScheduleCreated$1;
|
|
5952
5952
|
/**
|
|
5953
|
-
*
|
|
5954
|
-
* option (google.api.http) = {
|
|
5955
|
-
* post: "/v3/schedules/{schedule_id}/clone";
|
|
5956
|
-
* };
|
|
5953
|
+
* Triggered when a schedule is created.
|
|
5957
5954
|
*/
|
|
5958
5955
|
declare const onScheduleCreated: ReturnType<typeof createEventModule$1<_publicOnScheduleCreatedType>>;
|
|
5959
5956
|
|
|
@@ -5964,7 +5961,9 @@ type _publicOnScheduleUpdatedType = typeof onScheduleUpdated$1;
|
|
|
5964
5961
|
declare const onScheduleUpdated: ReturnType<typeof createEventModule$1<_publicOnScheduleUpdatedType>>;
|
|
5965
5962
|
|
|
5966
5963
|
type _publicOnScheduleClonedType = typeof onScheduleCloned$1;
|
|
5967
|
-
/**
|
|
5964
|
+
/**
|
|
5965
|
+
* Triggered when a schedule is cloned.
|
|
5966
|
+
*/
|
|
5968
5967
|
declare const onScheduleCloned: ReturnType<typeof createEventModule$1<_publicOnScheduleClonedType>>;
|
|
5969
5968
|
|
|
5970
5969
|
type _publicOnScheduleCancelledType = typeof onScheduleCancelled$1;
|
|
@@ -2931,7 +2931,7 @@ interface Schedule$1 {
|
|
|
2931
2931
|
* [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
|
|
2932
2932
|
* For example, `America/New_York`.
|
|
2933
2933
|
*
|
|
2934
|
-
* Default: `timeZone` specified in the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
2934
|
+
* Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
2935
2935
|
*
|
|
2936
2936
|
* Min: 1 character
|
|
2937
2937
|
* Max: 150 characters
|
|
@@ -2939,7 +2939,7 @@ interface Schedule$1 {
|
|
|
2939
2939
|
timeZone?: string | null;
|
|
2940
2940
|
/**
|
|
2941
2941
|
* Whether the schedule's `timeZone` is automatically synced from
|
|
2942
|
-
* `timeZone` of the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
2942
|
+
* `timeZone` of the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
2943
2943
|
*
|
|
2944
2944
|
* Default: `true`
|
|
2945
2945
|
*/
|
|
@@ -3356,7 +3356,7 @@ interface Schedule {
|
|
|
3356
3356
|
* [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).
|
|
3357
3357
|
* For example, `America/New_York`.
|
|
3358
3358
|
*
|
|
3359
|
-
* Default: `timeZone` specified in the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
3359
|
+
* Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
3360
3360
|
*
|
|
3361
3361
|
* Min: 1 character
|
|
3362
3362
|
* Max: 150 characters
|
|
@@ -3364,7 +3364,7 @@ interface Schedule {
|
|
|
3364
3364
|
timeZone?: string | null;
|
|
3365
3365
|
/**
|
|
3366
3366
|
* Whether the schedule's `timeZone` is automatically synced from
|
|
3367
|
-
* `timeZone` of the business [site properties(https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
3367
|
+
* `timeZone` of the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
3368
3368
|
*
|
|
3369
3369
|
* Default: `true`
|
|
3370
3370
|
*/
|