@acorex/connectivity 21.0.0-next.10 → 21.0.0-next.11
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
|
@@ -1386,6 +1386,9 @@ interface TaskTemplate {
|
|
|
1386
1386
|
}
|
|
1387
1387
|
declare const TASK_TEMPLATES: TaskTemplate[];
|
|
1388
1388
|
|
|
1389
|
+
/**
|
|
1390
|
+
* Mock workflow definition entities for the entity list.
|
|
1391
|
+
*/
|
|
1389
1392
|
/**
|
|
1390
1393
|
* Mock workflow definition entities for the entity list.
|
|
1391
1394
|
*/
|
|
@@ -1821,7 +1824,12 @@ declare const meetingMock: ({
|
|
|
1821
1824
|
};
|
|
1822
1825
|
meetingProviderType: string;
|
|
1823
1826
|
isRecorded: boolean;
|
|
1824
|
-
|
|
1827
|
+
setInGoogleCalendar: boolean;
|
|
1828
|
+
meetingStatusId: string;
|
|
1829
|
+
meetingStatus: {
|
|
1830
|
+
id: string;
|
|
1831
|
+
title: string;
|
|
1832
|
+
};
|
|
1825
1833
|
isFullysignedOff: boolean;
|
|
1826
1834
|
meetingLocationId: {
|
|
1827
1835
|
id: string;
|
|
@@ -1841,7 +1849,12 @@ declare const meetingMock: ({
|
|
|
1841
1849
|
joinUrl: string;
|
|
1842
1850
|
hostUrl: string;
|
|
1843
1851
|
isRecorded: boolean;
|
|
1844
|
-
|
|
1852
|
+
setInGoogleCalendar: boolean;
|
|
1853
|
+
meetingStatusId: string;
|
|
1854
|
+
meetingStatus: {
|
|
1855
|
+
id: string;
|
|
1856
|
+
title: string;
|
|
1857
|
+
};
|
|
1845
1858
|
isFullysignedOff: boolean;
|
|
1846
1859
|
meetingLocationId?: undefined;
|
|
1847
1860
|
} | {
|
|
@@ -1856,7 +1869,12 @@ declare const meetingMock: ({
|
|
|
1856
1869
|
joinUrl: string;
|
|
1857
1870
|
hostUrl: string;
|
|
1858
1871
|
isRecorded: boolean;
|
|
1859
|
-
|
|
1872
|
+
setInGoogleCalendar: boolean;
|
|
1873
|
+
meetingStatusId: string;
|
|
1874
|
+
meetingStatus: {
|
|
1875
|
+
id: string;
|
|
1876
|
+
title: string;
|
|
1877
|
+
};
|
|
1860
1878
|
isFullysignedOff: boolean;
|
|
1861
1879
|
meetingLocationId: {
|
|
1862
1880
|
id: string;
|
|
@@ -1886,7 +1904,27 @@ declare class AXMMeetingTypeDataSeeder implements AXPDataSeeder {
|
|
|
1886
1904
|
declare const meetingParticipantMock: ({
|
|
1887
1905
|
id: string;
|
|
1888
1906
|
meetingId: string;
|
|
1889
|
-
|
|
1907
|
+
employeeId: {
|
|
1908
|
+
id: string;
|
|
1909
|
+
title: string;
|
|
1910
|
+
};
|
|
1911
|
+
jointime: Date;
|
|
1912
|
+
leaveTime: Date;
|
|
1913
|
+
duration: number;
|
|
1914
|
+
signOffAt: Date;
|
|
1915
|
+
participantStatusId: "present";
|
|
1916
|
+
participantStatus: {
|
|
1917
|
+
id: "present";
|
|
1918
|
+
title: "Present";
|
|
1919
|
+
};
|
|
1920
|
+
meetingRoleTypeIds: {
|
|
1921
|
+
id: string;
|
|
1922
|
+
title: string;
|
|
1923
|
+
};
|
|
1924
|
+
} | {
|
|
1925
|
+
id: string;
|
|
1926
|
+
meetingId: string;
|
|
1927
|
+
employeeId: {
|
|
1890
1928
|
id: string;
|
|
1891
1929
|
title: string;
|
|
1892
1930
|
};
|
|
@@ -1894,7 +1932,11 @@ declare const meetingParticipantMock: ({
|
|
|
1894
1932
|
leaveTime: Date;
|
|
1895
1933
|
duration: number;
|
|
1896
1934
|
signOffAt: Date;
|
|
1897
|
-
|
|
1935
|
+
participantStatusId: "accept";
|
|
1936
|
+
participantStatus: {
|
|
1937
|
+
id: "accept";
|
|
1938
|
+
title: "Accept";
|
|
1939
|
+
};
|
|
1898
1940
|
meetingRoleTypeIds: {
|
|
1899
1941
|
id: string;
|
|
1900
1942
|
title: string;
|
|
@@ -1902,7 +1944,7 @@ declare const meetingParticipantMock: ({
|
|
|
1902
1944
|
} | {
|
|
1903
1945
|
id: string;
|
|
1904
1946
|
meetingId: string;
|
|
1905
|
-
|
|
1947
|
+
employeeId: {
|
|
1906
1948
|
id: string;
|
|
1907
1949
|
title: string;
|
|
1908
1950
|
};
|
|
@@ -1910,7 +1952,31 @@ declare const meetingParticipantMock: ({
|
|
|
1910
1952
|
leaveTime: null;
|
|
1911
1953
|
duration: number;
|
|
1912
1954
|
signOffAt: null;
|
|
1913
|
-
|
|
1955
|
+
participantStatusId: "present";
|
|
1956
|
+
participantStatus: {
|
|
1957
|
+
id: "present";
|
|
1958
|
+
title: "Present";
|
|
1959
|
+
};
|
|
1960
|
+
meetingRoleTypeIds: {
|
|
1961
|
+
id: string;
|
|
1962
|
+
title: string;
|
|
1963
|
+
};
|
|
1964
|
+
} | {
|
|
1965
|
+
id: string;
|
|
1966
|
+
meetingId: string;
|
|
1967
|
+
employeeId: {
|
|
1968
|
+
id: string;
|
|
1969
|
+
title: string;
|
|
1970
|
+
};
|
|
1971
|
+
jointime: Date;
|
|
1972
|
+
leaveTime: Date;
|
|
1973
|
+
duration: number;
|
|
1974
|
+
signOffAt: Date;
|
|
1975
|
+
participantStatusId: "absent";
|
|
1976
|
+
participantStatus: {
|
|
1977
|
+
id: "absent";
|
|
1978
|
+
title: "Absent";
|
|
1979
|
+
};
|
|
1914
1980
|
meetingRoleTypeIds: {
|
|
1915
1981
|
id: string;
|
|
1916
1982
|
title: string;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/connectivity",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.11",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/modules": "21.0.0-next.
|
|
5
|
+
"@acorex/modules": "21.0.0-next.11"
|
|
6
6
|
},
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"module": "fesm2022/acorex-connectivity.mjs",
|