@communecter/cocolight-api-client 1.0.88 → 1.0.90

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.88",
3
+ "version": "1.0.90",
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;
@@ -21,6 +21,24 @@ export interface ProjectLinksBlock {
21
21
  [k: string]: unknown;
22
22
  }
23
23
 
24
+ /**
25
+ * Types d'avancement supportés
26
+ */
27
+ export const PROJECT_AVANCEMENTS = [
28
+ "abandoned",
29
+ "concept",
30
+ "development",
31
+ "production",
32
+ "started",
33
+ "testing",
34
+ "idea",
35
+ "mature",
36
+ "qa",
37
+ "finished"
38
+ ] as const;
39
+
40
+ export type ProjectAvancement = (typeof PROJECT_AVANCEMENTS)[number];
41
+
24
42
  export interface ProjectItemJson {
25
43
  _id: IdObject;
26
44
  collection: "projects";
@@ -31,6 +49,7 @@ export interface ProjectItemJson {
31
49
  parent?: ParentsMap;
32
50
  description?: string;
33
51
  shortDescription?: string;
52
+ avancement?: ProjectAvancement,
34
53
  slug?: string;
35
54
  address?: PostalAddress;
36
55
  geo?: GeoCoordinates;
@@ -56,6 +75,7 @@ export interface ProjectItemNormalized {
56
75
  parent?: ParentsMap;
57
76
  description?: string;
58
77
  shortDescription?: string;
78
+ avancement?: ProjectAvancement,
59
79
  slug?: string;
60
80
  address?: PostalAddress;
61
81
  geo?: GeoCoordinates;