@wix/auto_sdk_calendar_events 1.0.37 → 1.0.38

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.
@@ -1837,11 +1837,13 @@ interface BulkCancelEventResponse {
1837
1837
  /** Total successes and failures. */
1838
1838
  bulkActionMetadata?: BulkActionMetadata;
1839
1839
  }
1840
+ /** @docsIgnore */
1840
1841
  type CancelEventApplicationErrors = {
1841
1842
  code?: 'EVENT_ALREADY_CANCELLED';
1842
1843
  description?: string;
1843
1844
  data?: Record<string, any>;
1844
1845
  };
1846
+ /** @docsIgnore */
1845
1847
  type BulkCancelEventApplicationErrors = {
1846
1848
  code?: 'EVENT_ALREADY_CANCELLED';
1847
1849
  description?: string;
@@ -2089,7 +2091,6 @@ interface ListEventsByContactIdOptions {
2089
2091
  * @permissionId CALENDAR.EVENT_READ
2090
2092
  * @permissionId CALENDAR.EVENT_READ_PI
2091
2093
  * @applicableIdentity APP
2092
- * @applicableIdentity VISITOR
2093
2094
  * @fqn wix.calendar.participantevents.v3.ParticipantEventsService.ListEventsByMemberId
2094
2095
  */
2095
2096
  declare function listEventsByMemberId(memberId: string, options?: ListEventsByMemberIdOptions): Promise<NonNullablePaths<ListEventsByMemberIdResponse, `events` | `events.${number}.status` | `events.${number}.recurrenceType` | `events.${number}.recurrenceRule.frequency` | `events.${number}.transparency` | `events.${number}.location.type` | `events.${number}.participants.status` | `events.${number}.conferencingDetails.type`, 5>>;