@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@communecter/cocolight-api-client",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
4
4
  "description": "Client Axios simplifié pour l'API cocolight",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,11 +20,39 @@ export interface EventLinksBlock {
20
20
  [k: string]: unknown;
21
21
  }
22
22
 
23
+ /**
24
+ * Types d'événements supportés
25
+ */
26
+ export const EVENT_TYPES = [
27
+ "workshop",
28
+ "competition",
29
+ "concert",
30
+ "contest",
31
+ "conference",
32
+ "debate",
33
+ "exhibition",
34
+ "festival",
35
+ "crowdfunding",
36
+ "fair",
37
+ "course",
38
+ "protest",
39
+ "market",
40
+ "film",
41
+ "getTogether",
42
+ "meeting",
43
+ "spectacle",
44
+ "internship",
45
+ "stand",
46
+ "others",
47
+ ] as const;
48
+
49
+ export type EventType = (typeof EVENT_TYPES)[number];
50
+
23
51
  export interface EventItemJson {
24
52
  _id: IdObject;
25
53
  collection: "events";
26
54
  name: string;
27
- type: string;
55
+ type?: EventType;
28
56
  startDate: DateValue;
29
57
  endDate: DateValue;
30
58
  created?: DateValue;
@@ -54,7 +82,7 @@ export interface EventItemNormalized {
54
82
  _id: ObjectID;
55
83
  collection: "events";
56
84
  name: string;
57
- type: string;
85
+ type?: EventType;
58
86
  startDate: Date;
59
87
  endDate: Date;
60
88
  created?: Date;
@@ -24,6 +24,19 @@ export interface OrganizationLinksBlock {
24
24
  [k: string]: unknown;
25
25
  }
26
26
 
27
+ /**
28
+ * Types d'organisations supportés
29
+ */
30
+ export const ORGANIZATION_TYPES = [
31
+ "NGO",
32
+ "LocalBusiness",
33
+ "Group",
34
+ "GovernmentOrganization",
35
+ "Cooperative",
36
+ ] as const;
37
+
38
+ export type OrganizationType = (typeof ORGANIZATION_TYPES)[number];
39
+
27
40
  export interface OrganizationItemJson {
28
41
  _id: IdObject;
29
42
  collection: "organizations";
@@ -35,7 +48,7 @@ export interface OrganizationItemJson {
35
48
  description?: string;
36
49
  shortDescription?: string;
37
50
  slug?: string;
38
- type?: "NGO" | "LocalBusiness" | "Group" | "GovernmentOrganization" | "Cooperative";
51
+ type?: OrganizationType;
39
52
  address?: PostalAddress;
40
53
  geo?: GeoCoordinates;
41
54
  geoPosition?: GeoPosition;
@@ -63,7 +76,7 @@ export interface OrganizationItemNormalized {
63
76
  description?: string;
64
77
  shortDescription?: string;
65
78
  slug?: string;
66
- type?: "NGO" | "LocalBusiness" | "Group" | "GovernmentOrganization" | "Cooperative";
79
+ type?: OrganizationType;
67
80
  address?: PostalAddress;
68
81
  geo?: GeoCoordinates;
69
82
  geoPosition?: GeoPosition;