@acorex/connectivity 20.6.4 → 20.6.6

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/mock/index.d.ts CHANGED
@@ -1986,7 +1986,12 @@ declare const meetingMock: ({
1986
1986
  };
1987
1987
  meetingProviderType: string;
1988
1988
  isRecorded: boolean;
1989
- mettingStatus: string;
1989
+ setInGoogleCalendar: boolean;
1990
+ meetingStatusId: string;
1991
+ meetingStatus: {
1992
+ id: string;
1993
+ title: string;
1994
+ };
1990
1995
  isFullysignedOff: boolean;
1991
1996
  meetingLocationId: {
1992
1997
  id: string;
@@ -2006,7 +2011,12 @@ declare const meetingMock: ({
2006
2011
  joinUrl: string;
2007
2012
  hostUrl: string;
2008
2013
  isRecorded: boolean;
2009
- mettingStatus: string;
2014
+ setInGoogleCalendar: boolean;
2015
+ meetingStatusId: string;
2016
+ meetingStatus: {
2017
+ id: string;
2018
+ title: string;
2019
+ };
2010
2020
  isFullysignedOff: boolean;
2011
2021
  meetingLocationId?: undefined;
2012
2022
  } | {
@@ -2021,7 +2031,12 @@ declare const meetingMock: ({
2021
2031
  joinUrl: string;
2022
2032
  hostUrl: string;
2023
2033
  isRecorded: boolean;
2024
- mettingStatus: string;
2034
+ setInGoogleCalendar: boolean;
2035
+ meetingStatusId: string;
2036
+ meetingStatus: {
2037
+ id: string;
2038
+ title: string;
2039
+ };
2025
2040
  isFullysignedOff: boolean;
2026
2041
  meetingLocationId: {
2027
2042
  id: string;
@@ -2051,7 +2066,7 @@ declare class AXMMeetingTypeDataSeeder implements AXPDataSeeder {
2051
2066
  declare const meetingParticipantMock: ({
2052
2067
  id: string;
2053
2068
  meetingId: string;
2054
- userId: {
2069
+ employeeId: {
2055
2070
  id: string;
2056
2071
  title: string;
2057
2072
  };
@@ -2059,7 +2074,11 @@ declare const meetingParticipantMock: ({
2059
2074
  leaveTime: Date;
2060
2075
  duration: number;
2061
2076
  signOffAt: Date;
2062
- participantStatus: string;
2077
+ participantStatusId: "present";
2078
+ participantStatus: {
2079
+ id: "present";
2080
+ title: "Present";
2081
+ };
2063
2082
  meetingRoleTypeIds: {
2064
2083
  id: string;
2065
2084
  title: string;
@@ -2067,7 +2086,27 @@ declare const meetingParticipantMock: ({
2067
2086
  } | {
2068
2087
  id: string;
2069
2088
  meetingId: string;
2070
- userId: {
2089
+ employeeId: {
2090
+ id: string;
2091
+ title: string;
2092
+ };
2093
+ jointime: Date;
2094
+ leaveTime: Date;
2095
+ duration: number;
2096
+ signOffAt: Date;
2097
+ participantStatusId: "accept";
2098
+ participantStatus: {
2099
+ id: "accept";
2100
+ title: "Accept";
2101
+ };
2102
+ meetingRoleTypeIds: {
2103
+ id: string;
2104
+ title: string;
2105
+ };
2106
+ } | {
2107
+ id: string;
2108
+ meetingId: string;
2109
+ employeeId: {
2071
2110
  id: string;
2072
2111
  title: string;
2073
2112
  };
@@ -2075,7 +2114,31 @@ declare const meetingParticipantMock: ({
2075
2114
  leaveTime: null;
2076
2115
  duration: number;
2077
2116
  signOffAt: null;
2078
- participantStatus: string;
2117
+ participantStatusId: "present";
2118
+ participantStatus: {
2119
+ id: "present";
2120
+ title: "Present";
2121
+ };
2122
+ meetingRoleTypeIds: {
2123
+ id: string;
2124
+ title: string;
2125
+ };
2126
+ } | {
2127
+ id: string;
2128
+ meetingId: string;
2129
+ employeeId: {
2130
+ id: string;
2131
+ title: string;
2132
+ };
2133
+ jointime: Date;
2134
+ leaveTime: Date;
2135
+ duration: number;
2136
+ signOffAt: Date;
2137
+ participantStatusId: "absent";
2138
+ participantStatus: {
2139
+ id: "absent";
2140
+ title: "Absent";
2141
+ };
2079
2142
  meetingRoleTypeIds: {
2080
2143
  id: string;
2081
2144
  title: string;
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@acorex/connectivity",
3
- "version": "20.6.4",
3
+ "version": "20.6.6",
4
4
  "peerDependencies": {
5
- "@acorex/modules": "20.6.4"
5
+ "@acorex/modules": "20.6.6"
6
6
  },
7
7
  "sideEffects": false,
8
8
  "module": "fesm2022/acorex-connectivity.mjs",