@wix/auto_sdk_calendar_events 1.0.71 → 1.0.73
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 +0 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -17
- package/build/cjs/index.typings.js +0 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -17
- package/build/cjs/meta.js +0 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +0 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -17
- package/build/es/index.typings.mjs +0 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -17
- package/build/es/meta.mjs +0 -8
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +0 -8
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -17
- package/build/internal/cjs/index.typings.js +0 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -17
- package/build/internal/cjs/meta.js +0 -8
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +0 -8
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -17
- package/build/internal/es/index.typings.mjs +0 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +8 -17
- package/build/internal/es/meta.mjs +0 -8
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -242,14 +242,13 @@ interface Event {
|
|
|
242
242
|
_updatedDate?: Date | null;
|
|
243
243
|
}
|
|
244
244
|
declare enum Status {
|
|
245
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
246
245
|
/** Event is scheduled to happen or has happened. */
|
|
247
246
|
CONFIRMED = "CONFIRMED",
|
|
248
247
|
/** Event has been canceled. */
|
|
249
248
|
CANCELLED = "CANCELLED"
|
|
250
249
|
}
|
|
251
250
|
/** @enumType */
|
|
252
|
-
type StatusWithLiterals = Status | '
|
|
251
|
+
type StatusWithLiterals = Status | 'CONFIRMED' | 'CANCELLED';
|
|
253
252
|
/** A date time with a time zone, having the UTC offset and date determined by the server. */
|
|
254
253
|
interface ZonedDate {
|
|
255
254
|
/**
|
|
@@ -275,7 +274,6 @@ interface ZonedDate {
|
|
|
275
274
|
utcDate?: Date | null;
|
|
276
275
|
}
|
|
277
276
|
declare enum RecurrenceType {
|
|
278
|
-
UNKNOWN_RECURRENCE_TYPE = "UNKNOWN_RECURRENCE_TYPE",
|
|
279
277
|
/** The event occurs only once and doesn't repeat. */
|
|
280
278
|
NONE = "NONE",
|
|
281
279
|
/** Defines the recurrence pattern for a series of recurring events. */
|
|
@@ -286,7 +284,7 @@ declare enum RecurrenceType {
|
|
|
286
284
|
EXCEPTION = "EXCEPTION"
|
|
287
285
|
}
|
|
288
286
|
/** @enumType */
|
|
289
|
-
type RecurrenceTypeWithLiterals = RecurrenceType | '
|
|
287
|
+
type RecurrenceTypeWithLiterals = RecurrenceType | 'NONE' | 'MASTER' | 'INSTANCE' | 'EXCEPTION';
|
|
290
288
|
interface RecurrenceRule {
|
|
291
289
|
/**
|
|
292
290
|
* Frequency how often the event repeats. Works together with `interval`.
|
|
@@ -402,7 +400,6 @@ interface Location {
|
|
|
402
400
|
address?: string | null;
|
|
403
401
|
}
|
|
404
402
|
declare enum LocationType {
|
|
405
|
-
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
406
403
|
/** The event is held at a business location. */
|
|
407
404
|
BUSINESS = "BUSINESS",
|
|
408
405
|
/** The event is held at the customer's location, such as their home or office. */
|
|
@@ -411,7 +408,7 @@ declare enum LocationType {
|
|
|
411
408
|
CUSTOM = "CUSTOM"
|
|
412
409
|
}
|
|
413
410
|
/** @enumType */
|
|
414
|
-
type LocationTypeWithLiterals = LocationType | '
|
|
411
|
+
type LocationTypeWithLiterals = LocationType | 'BUSINESS' | 'CUSTOMER' | 'CUSTOM';
|
|
415
412
|
interface Resource {
|
|
416
413
|
/**
|
|
417
414
|
* Resource ID.
|
|
@@ -446,14 +443,13 @@ interface Resource {
|
|
|
446
443
|
permissionRole?: RoleWithLiterals;
|
|
447
444
|
}
|
|
448
445
|
declare enum Role {
|
|
449
|
-
UNKNOWN_ROLE = "UNKNOWN_ROLE",
|
|
450
446
|
/** Full read and write access. */
|
|
451
447
|
WRITER = "WRITER",
|
|
452
448
|
/** Full read access, write access limited to `event.notes`. */
|
|
453
449
|
COMMENTER = "COMMENTER"
|
|
454
450
|
}
|
|
455
451
|
/** @enumType */
|
|
456
|
-
type RoleWithLiterals = Role | '
|
|
452
|
+
type RoleWithLiterals = Role | 'WRITER' | 'COMMENTER';
|
|
457
453
|
interface Participants {
|
|
458
454
|
/**
|
|
459
455
|
* Total number of participants.
|
|
@@ -512,14 +508,13 @@ interface Participant {
|
|
|
512
508
|
contactId?: string | null;
|
|
513
509
|
}
|
|
514
510
|
declare enum ParticipantsStatus {
|
|
515
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
516
511
|
/** All participants are confirmed. */
|
|
517
512
|
CONFIRMED = "CONFIRMED",
|
|
518
513
|
/** At least one participant isn't confirmed yet. */
|
|
519
514
|
PENDING_CONFIRMATION = "PENDING_CONFIRMATION"
|
|
520
515
|
}
|
|
521
516
|
/** @enumType */
|
|
522
|
-
type ParticipantsStatusWithLiterals = ParticipantsStatus | '
|
|
517
|
+
type ParticipantsStatusWithLiterals = ParticipantsStatus | 'CONFIRMED' | 'PENDING_CONFIRMATION';
|
|
523
518
|
interface ConferencingDetails {
|
|
524
519
|
/** Conference type. For example, `Zoom`. */
|
|
525
520
|
type?: TypeWithLiterals;
|
|
@@ -561,15 +556,13 @@ interface ConferencingDetails {
|
|
|
561
556
|
externalId?: string | null;
|
|
562
557
|
}
|
|
563
558
|
declare enum ProviderType {
|
|
564
|
-
/** Unknown provider type. */
|
|
565
|
-
UNKNOWN_PROVIDER_TYPE = "UNKNOWN_PROVIDER_TYPE",
|
|
566
559
|
/** Custom conferencing link manually configured by the user. */
|
|
567
560
|
CUSTOM = "CUSTOM",
|
|
568
561
|
/** Online meeting provider integrated via an app. */
|
|
569
562
|
ONLINE_MEETING = "ONLINE_MEETING"
|
|
570
563
|
}
|
|
571
564
|
/** @enumType */
|
|
572
|
-
type ProviderTypeWithLiterals = ProviderType | '
|
|
565
|
+
type ProviderTypeWithLiterals = ProviderType | 'CUSTOM' | 'ONLINE_MEETING';
|
|
573
566
|
interface OnlineMeetingInfo {
|
|
574
567
|
/** @format GUID */
|
|
575
568
|
appId?: string;
|
|
@@ -592,7 +585,6 @@ interface ProviderProviderInfoOneOf {
|
|
|
592
585
|
onlineMeetingInfo?: OnlineMeetingInfo;
|
|
593
586
|
}
|
|
594
587
|
declare enum Field {
|
|
595
|
-
UNKNOWN_FIELD = "UNKNOWN_FIELD",
|
|
596
588
|
/** `title` is inherited from the schedule or `MASTER` event. */
|
|
597
589
|
TITLE = "TITLE",
|
|
598
590
|
/** `timeZone` is inherited from the schedule or `MASTER` event. */
|
|
@@ -611,7 +603,7 @@ declare enum Field {
|
|
|
611
603
|
CONFERENCING_DETAILS = "CONFERENCING_DETAILS"
|
|
612
604
|
}
|
|
613
605
|
/** @enumType */
|
|
614
|
-
type FieldWithLiterals = Field | '
|
|
606
|
+
type FieldWithLiterals = Field | 'TITLE' | 'TIME_ZONE' | 'TIME' | 'LOCATION' | 'RESOURCES' | 'CAPACITY' | 'PARTICIPANTS' | 'CONFERENCING_DETAILS';
|
|
615
607
|
interface Permission {
|
|
616
608
|
/**
|
|
617
609
|
* [Wix user](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities#wix-users)
|
|
@@ -1379,14 +1371,13 @@ interface GetEventRequest {
|
|
|
1379
1371
|
fields?: RequestedFieldsWithLiterals[];
|
|
1380
1372
|
}
|
|
1381
1373
|
declare enum RequestedFields {
|
|
1382
|
-
UNKNOWN_REQUESTED_FIELDS = "UNKNOWN_REQUESTED_FIELDS",
|
|
1383
1374
|
/** Returns all fields with personal data. Your app must have `Read Calendars - Including PI` or `Manage Calendars` permission scope. */
|
|
1384
1375
|
PI_FIELDS = "PI_FIELDS",
|
|
1385
1376
|
/** Returns only fields containing your own personal data. */
|
|
1386
1377
|
OWN_PI_FIELDS = "OWN_PI_FIELDS"
|
|
1387
1378
|
}
|
|
1388
1379
|
/** @enumType */
|
|
1389
|
-
type RequestedFieldsWithLiterals = RequestedFields | '
|
|
1380
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'PI_FIELDS' | 'OWN_PI_FIELDS';
|
|
1390
1381
|
interface GetEventResponse {
|
|
1391
1382
|
/** Retrieved event. */
|
|
1392
1383
|
event?: Event;
|
|
@@ -744,13 +744,11 @@ function bulkCancelEvent(payload) {
|
|
|
744
744
|
var import_transform_paths2 = require("@wix/sdk-runtime/transformations/transform-paths");
|
|
745
745
|
var import_query_builder_utils = require("@wix/sdk-runtime/query-builder-utils");
|
|
746
746
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
747
|
-
Status2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
|
|
748
747
|
Status2["CONFIRMED"] = "CONFIRMED";
|
|
749
748
|
Status2["CANCELLED"] = "CANCELLED";
|
|
750
749
|
return Status2;
|
|
751
750
|
})(Status || {});
|
|
752
751
|
var RecurrenceType = /* @__PURE__ */ ((RecurrenceType2) => {
|
|
753
|
-
RecurrenceType2["UNKNOWN_RECURRENCE_TYPE"] = "UNKNOWN_RECURRENCE_TYPE";
|
|
754
752
|
RecurrenceType2["NONE"] = "NONE";
|
|
755
753
|
RecurrenceType2["MASTER"] = "MASTER";
|
|
756
754
|
RecurrenceType2["INSTANCE"] = "INSTANCE";
|
|
@@ -779,26 +777,22 @@ var Transparency = /* @__PURE__ */ ((Transparency2) => {
|
|
|
779
777
|
return Transparency2;
|
|
780
778
|
})(Transparency || {});
|
|
781
779
|
var LocationType = /* @__PURE__ */ ((LocationType2) => {
|
|
782
|
-
LocationType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
783
780
|
LocationType2["BUSINESS"] = "BUSINESS";
|
|
784
781
|
LocationType2["CUSTOMER"] = "CUSTOMER";
|
|
785
782
|
LocationType2["CUSTOM"] = "CUSTOM";
|
|
786
783
|
return LocationType2;
|
|
787
784
|
})(LocationType || {});
|
|
788
785
|
var Role = /* @__PURE__ */ ((Role2) => {
|
|
789
|
-
Role2["UNKNOWN_ROLE"] = "UNKNOWN_ROLE";
|
|
790
786
|
Role2["WRITER"] = "WRITER";
|
|
791
787
|
Role2["COMMENTER"] = "COMMENTER";
|
|
792
788
|
return Role2;
|
|
793
789
|
})(Role || {});
|
|
794
790
|
var ParticipantsStatus = /* @__PURE__ */ ((ParticipantsStatus2) => {
|
|
795
|
-
ParticipantsStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
|
|
796
791
|
ParticipantsStatus2["CONFIRMED"] = "CONFIRMED";
|
|
797
792
|
ParticipantsStatus2["PENDING_CONFIRMATION"] = "PENDING_CONFIRMATION";
|
|
798
793
|
return ParticipantsStatus2;
|
|
799
794
|
})(ParticipantsStatus || {});
|
|
800
795
|
var ProviderType = /* @__PURE__ */ ((ProviderType2) => {
|
|
801
|
-
ProviderType2["UNKNOWN_PROVIDER_TYPE"] = "UNKNOWN_PROVIDER_TYPE";
|
|
802
796
|
ProviderType2["CUSTOM"] = "CUSTOM";
|
|
803
797
|
ProviderType2["ONLINE_MEETING"] = "ONLINE_MEETING";
|
|
804
798
|
return ProviderType2;
|
|
@@ -810,7 +804,6 @@ var Type = /* @__PURE__ */ ((Type2) => {
|
|
|
810
804
|
return Type2;
|
|
811
805
|
})(Type || {});
|
|
812
806
|
var Field = /* @__PURE__ */ ((Field2) => {
|
|
813
|
-
Field2["UNKNOWN_FIELD"] = "UNKNOWN_FIELD";
|
|
814
807
|
Field2["TITLE"] = "TITLE";
|
|
815
808
|
Field2["TIME_ZONE"] = "TIME_ZONE";
|
|
816
809
|
Field2["TIME"] = "TIME";
|
|
@@ -862,7 +855,6 @@ var ResolutionMethod = /* @__PURE__ */ ((ResolutionMethod2) => {
|
|
|
862
855
|
return ResolutionMethod2;
|
|
863
856
|
})(ResolutionMethod || {});
|
|
864
857
|
var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
|
|
865
|
-
RequestedFields2["UNKNOWN_REQUESTED_FIELDS"] = "UNKNOWN_REQUESTED_FIELDS";
|
|
866
858
|
RequestedFields2["PI_FIELDS"] = "PI_FIELDS";
|
|
867
859
|
RequestedFields2["OWN_PI_FIELDS"] = "OWN_PI_FIELDS";
|
|
868
860
|
return RequestedFields2;
|