@communecter/cocolight-api-client 1.0.87 → 1.0.89
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/dist/cocolight-api-client.browser.js +1 -1
- package/dist/cocolight-api-client.cjs +1 -1
- package/dist/cocolight-api-client.mjs.js +1 -1
- package/dist/cocolight-api-client.vite.mjs.js +1 -1
- package/dist/cocolight-api-client.vite.mjs.js.map +1 -1
- package/package.json +1 -1
- package/src/api/serverDataType/Event.ts +30 -2
- package/src/api/serverDataType/Organization.ts +15 -2
- package/src/endpoints.module.ts +18 -18
- package/src/index.ts +4 -0
- package/types/api/serverDataType/Event.d.ts +7 -2
- package/types/api/serverDataType/Organization.d.ts +7 -2
- package/types/endpoints.module.d.ts +9 -0
- package/types/index.d.ts +2 -0
package/src/index.ts
CHANGED
|
@@ -75,6 +75,10 @@ export type { Answer } from "./api/Answer.js";
|
|
|
75
75
|
// Types ServerData (données normalisées reçues du serveur)
|
|
76
76
|
export type * from "./api/serverDataType/User.js";
|
|
77
77
|
export type * from "./api/serverDataType/Organization.js";
|
|
78
|
+
|
|
79
|
+
// Export des constantes de types d'entités
|
|
80
|
+
export { ORGANIZATION_TYPES } from "./api/serverDataType/Organization.js";
|
|
81
|
+
export { EVENT_TYPES } from "./api/serverDataType/Event.js";
|
|
78
82
|
export type * from "./api/serverDataType/Project.js";
|
|
79
83
|
export type * from "./api/serverDataType/Event.js";
|
|
80
84
|
export type * from "./api/serverDataType/News.js";
|
|
@@ -7,11 +7,16 @@ export interface EventLinksBlock {
|
|
|
7
7
|
organizer?: Record<string, LinkOrganizerRef>;
|
|
8
8
|
[k: string]: unknown;
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* Types d'événements supportés
|
|
12
|
+
*/
|
|
13
|
+
export declare const EVENT_TYPES: readonly ["workshop", "competition", "concert", "contest", "conference", "debate", "exhibition", "festival", "crowdfunding", "fair", "course", "protest", "market", "film", "getTogether", "meeting", "spectacle", "internship", "stand", "others"];
|
|
14
|
+
export type EventType = (typeof EVENT_TYPES)[number];
|
|
10
15
|
export interface EventItemJson {
|
|
11
16
|
_id: IdObject;
|
|
12
17
|
collection: "events";
|
|
13
18
|
name: string;
|
|
14
|
-
type
|
|
19
|
+
type?: EventType;
|
|
15
20
|
startDate: DateValue;
|
|
16
21
|
endDate: DateValue;
|
|
17
22
|
created?: DateValue;
|
|
@@ -40,7 +45,7 @@ export interface EventItemNormalized {
|
|
|
40
45
|
_id: ObjectID;
|
|
41
46
|
collection: "events";
|
|
42
47
|
name: string;
|
|
43
|
-
type
|
|
48
|
+
type?: EventType;
|
|
44
49
|
startDate: Date;
|
|
45
50
|
endDate: Date;
|
|
46
51
|
created?: Date;
|
|
@@ -9,6 +9,11 @@ export interface OrganizationLinksBlock {
|
|
|
9
9
|
events?: Record<string, LinkEventsRef>;
|
|
10
10
|
[k: string]: unknown;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Types d'organisations supportés
|
|
14
|
+
*/
|
|
15
|
+
export declare const ORGANIZATION_TYPES: readonly ["NGO", "LocalBusiness", "Group", "GovernmentOrganization", "Cooperative"];
|
|
16
|
+
export type OrganizationType = (typeof ORGANIZATION_TYPES)[number];
|
|
12
17
|
export interface OrganizationItemJson {
|
|
13
18
|
_id: IdObject;
|
|
14
19
|
collection: "organizations";
|
|
@@ -20,7 +25,7 @@ export interface OrganizationItemJson {
|
|
|
20
25
|
description?: string;
|
|
21
26
|
shortDescription?: string;
|
|
22
27
|
slug?: string;
|
|
23
|
-
type?:
|
|
28
|
+
type?: OrganizationType;
|
|
24
29
|
address?: PostalAddress;
|
|
25
30
|
geo?: GeoCoordinates;
|
|
26
31
|
geoPosition?: GeoPosition;
|
|
@@ -47,7 +52,7 @@ export interface OrganizationItemNormalized {
|
|
|
47
52
|
description?: string;
|
|
48
53
|
shortDescription?: string;
|
|
49
54
|
slug?: string;
|
|
50
|
-
type?:
|
|
55
|
+
type?: OrganizationType;
|
|
51
56
|
address?: PostalAddress;
|
|
52
57
|
geo?: GeoCoordinates;
|
|
53
58
|
geoPosition?: GeoPosition;
|
|
@@ -1669,6 +1669,15 @@ declare const endpoints: {
|
|
|
1669
1669
|
format: string;
|
|
1670
1670
|
type: string;
|
|
1671
1671
|
};
|
|
1672
|
+
emailNullable: {
|
|
1673
|
+
anyOf: ({
|
|
1674
|
+
format: string;
|
|
1675
|
+
type: string;
|
|
1676
|
+
} | {
|
|
1677
|
+
const: string;
|
|
1678
|
+
type: string;
|
|
1679
|
+
})[];
|
|
1680
|
+
};
|
|
1672
1681
|
name: {
|
|
1673
1682
|
type: string;
|
|
1674
1683
|
};
|
package/types/index.d.ts
CHANGED
|
@@ -54,6 +54,8 @@ export type { Comment } from "./api/Comment.js";
|
|
|
54
54
|
export type { Answer } from "./api/Answer.js";
|
|
55
55
|
export type * from "./api/serverDataType/User.js";
|
|
56
56
|
export type * from "./api/serverDataType/Organization.js";
|
|
57
|
+
export { ORGANIZATION_TYPES } from "./api/serverDataType/Organization.js";
|
|
58
|
+
export { EVENT_TYPES } from "./api/serverDataType/Event.js";
|
|
57
59
|
export type * from "./api/serverDataType/Project.js";
|
|
58
60
|
export type * from "./api/serverDataType/Event.js";
|
|
59
61
|
export type * from "./api/serverDataType/News.js";
|