@wix/auto_sdk_calendar_events 1.0.75 → 1.0.76
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -18
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -18
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -18
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -18
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2372,7 +2372,7 @@ interface EventsQueryBuilder {
|
|
|
2372
2372
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2373
2373
|
* @param value - Value to compare against.
|
|
2374
2374
|
*/
|
|
2375
|
-
eq: (propertyName: 'scheduleId' | 'externalScheduleId' | 'type' | '
|
|
2375
|
+
eq: (propertyName: 'scheduleId' | 'externalScheduleId' | 'type' | 'recurringEventId' | 'transparency' | 'location.id' | 'location.type' | 'totalCapacity' | 'remainingCapacity' | 'participants.total' | 'appId', value: any) => EventsQueryBuilder;
|
|
2376
2376
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2377
2377
|
* @param value - Value to compare against.
|
|
2378
2378
|
*/
|
|
@@ -2401,12 +2401,8 @@ interface EventsQueryBuilder {
|
|
|
2401
2401
|
* @param values - List of values to compare against.
|
|
2402
2402
|
*/
|
|
2403
2403
|
hasAll: (propertyName: string, value: any[]) => EventsQueryBuilder;
|
|
2404
|
-
in: (propertyName: 'scheduleId' | 'externalScheduleId' | 'type' | '
|
|
2404
|
+
in: (propertyName: 'scheduleId' | 'externalScheduleId' | 'type' | 'recurringEventId' | 'location.id' | 'location.type' | 'appId', value: any) => EventsQueryBuilder;
|
|
2405
2405
|
exists: (propertyName: 'location' | 'totalCapacity' | 'conferencingDetails', value: boolean) => EventsQueryBuilder;
|
|
2406
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
2407
|
-
ascending: (...propertyNames: Array<'start' | 'end'>) => EventsQueryBuilder;
|
|
2408
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
2409
|
-
descending: (...propertyNames: Array<'start' | 'end'>) => EventsQueryBuilder;
|
|
2410
2406
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
|
|
2411
2407
|
limit: (limit: number) => EventsQueryBuilder;
|
|
2412
2408
|
/** @param cursor - A pointer to specific record */
|
|
@@ -2427,11 +2423,6 @@ interface EventQuerySpec extends QuerySpec {
|
|
|
2427
2423
|
operators: ['$eq'];
|
|
2428
2424
|
sort: 'NONE';
|
|
2429
2425
|
},
|
|
2430
|
-
{
|
|
2431
|
-
fields: ['end', 'start'];
|
|
2432
|
-
operators: [];
|
|
2433
|
-
sort: 'BOTH';
|
|
2434
|
-
},
|
|
2435
2426
|
{
|
|
2436
2427
|
fields: [
|
|
2437
2428
|
'appId',
|
|
@@ -2440,7 +2431,6 @@ interface EventQuerySpec extends QuerySpec {
|
|
|
2440
2431
|
'location.type',
|
|
2441
2432
|
'recurringEventId',
|
|
2442
2433
|
'scheduleId',
|
|
2443
|
-
'status',
|
|
2444
2434
|
'type'
|
|
2445
2435
|
];
|
|
2446
2436
|
operators: ['$eq', '$in'];
|
|
@@ -2457,12 +2447,7 @@ interface EventQuerySpec extends QuerySpec {
|
|
|
2457
2447
|
sort: 'NONE';
|
|
2458
2448
|
},
|
|
2459
2449
|
{
|
|
2460
|
-
fields: [
|
|
2461
|
-
'permissions.identity.wixUserId',
|
|
2462
|
-
'resources._id',
|
|
2463
|
-
'resources.transparency',
|
|
2464
|
-
'resources.type'
|
|
2465
|
-
];
|
|
2450
|
+
fields: ['resources._id', 'resources.transparency', 'resources.type'];
|
|
2466
2451
|
operators: ['$hasAll', '$hasSome'];
|
|
2467
2452
|
sort: 'NONE';
|
|
2468
2453
|
},
|