@selfcommunity/types 0.5.50-events.76 → 0.5.50-events.78
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/lib/cjs/types/event.d.ts
CHANGED
|
@@ -152,15 +152,15 @@ export interface SCEventType {
|
|
|
152
152
|
/**
|
|
153
153
|
* The event place
|
|
154
154
|
*/
|
|
155
|
-
geolocation: string;
|
|
155
|
+
geolocation: string | null;
|
|
156
156
|
/**
|
|
157
157
|
* The event latitude
|
|
158
158
|
*/
|
|
159
|
-
geolocation_lat: number;
|
|
159
|
+
geolocation_lat: number | null;
|
|
160
160
|
/**
|
|
161
161
|
* The event longitude
|
|
162
162
|
*/
|
|
163
|
-
geolocation_lng: number;
|
|
163
|
+
geolocation_lng: number | null;
|
|
164
164
|
/**
|
|
165
165
|
* The event link(if virtual)
|
|
166
166
|
*/
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* SCOnBoardingStepType enum
|
|
3
3
|
*/
|
|
4
|
+
import { SCFeedObjectType } from './feed';
|
|
5
|
+
import { SCCategoryType } from './category';
|
|
4
6
|
export declare enum SCOnBoardingStepType {
|
|
5
7
|
CONTENTS = "contents",
|
|
6
8
|
CATEGORIES = "categories",
|
|
@@ -42,5 +44,5 @@ export interface SCStepType {
|
|
|
42
44
|
/**
|
|
43
45
|
* The ids of the generated content
|
|
44
46
|
*/
|
|
45
|
-
|
|
47
|
+
results?: SCFeedObjectType[] | SCCategoryType[];
|
|
46
48
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SCOnBoardingStepStatusType = exports.SCOnBoardingStepType = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* SCOnBoardingStepType enum
|
|
6
|
-
*/
|
|
7
4
|
var SCOnBoardingStepType;
|
|
8
5
|
(function (SCOnBoardingStepType) {
|
|
9
6
|
SCOnBoardingStepType["CONTENTS"] = "contents";
|
package/lib/esm/types/event.d.ts
CHANGED
|
@@ -152,15 +152,15 @@ export interface SCEventType {
|
|
|
152
152
|
/**
|
|
153
153
|
* The event place
|
|
154
154
|
*/
|
|
155
|
-
geolocation: string;
|
|
155
|
+
geolocation: string | null;
|
|
156
156
|
/**
|
|
157
157
|
* The event latitude
|
|
158
158
|
*/
|
|
159
|
-
geolocation_lat: number;
|
|
159
|
+
geolocation_lat: number | null;
|
|
160
160
|
/**
|
|
161
161
|
* The event longitude
|
|
162
162
|
*/
|
|
163
|
-
geolocation_lng: number;
|
|
163
|
+
geolocation_lng: number | null;
|
|
164
164
|
/**
|
|
165
165
|
* The event link(if virtual)
|
|
166
166
|
*/
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* SCOnBoardingStepType enum
|
|
3
3
|
*/
|
|
4
|
+
import { SCFeedObjectType } from './feed';
|
|
5
|
+
import { SCCategoryType } from './category';
|
|
4
6
|
export declare enum SCOnBoardingStepType {
|
|
5
7
|
CONTENTS = "contents",
|
|
6
8
|
CATEGORIES = "categories",
|
|
@@ -42,5 +44,5 @@ export interface SCStepType {
|
|
|
42
44
|
/**
|
|
43
45
|
* The ids of the generated content
|
|
44
46
|
*/
|
|
45
|
-
|
|
47
|
+
results?: SCFeedObjectType[] | SCCategoryType[];
|
|
46
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/types",
|
|
3
|
-
"version": "0.5.50-events.
|
|
3
|
+
"version": "0.5.50-events.78+277b1dd07",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"bugs": {
|
|
102
102
|
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "277b1dd07c25fdad08f933ec97cd8e32c92c277d"
|
|
105
105
|
}
|