@communecter/cocolight-api-client 1.0.122 → 1.0.123

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.122",
3
+ "version": "1.0.123",
4
4
  "description": "Client Axios simplifié pour l'API cocolight",
5
5
  "repository": {
6
6
  "type": "git",
@@ -2719,6 +2719,36 @@ export interface AddOrganizationData {
2719
2719
  float: true;
2720
2720
  [k: string]: unknown;
2721
2721
  };
2722
+ costum?: {
2723
+ bannerImageUrl?: string;
2724
+ bannerLogoUrl?: string;
2725
+ bannerText?: string;
2726
+ /**
2727
+ * Pour bien indiquer que l'orga est un commune transparente
2728
+ */
2729
+ transparentCommune?: boolean;
2730
+ /**
2731
+ * Pour bien indiquer que l'orga est un centre ville
2732
+ */
2733
+ cocity?: boolean;
2734
+ slug?: string;
2735
+ typeCocity?: string;
2736
+ [k: string]: unknown;
2737
+ };
2738
+ /**
2739
+ * Thématiques de l’organisation
2740
+ */
2741
+ thematic?: string[];
2742
+ /**
2743
+ * Dictionnaire de filières par thématique
2744
+ */
2745
+ filiere?: {
2746
+ [k: string]: {
2747
+ name: string;
2748
+ icon: string;
2749
+ tags: string[];
2750
+ };
2751
+ };
2722
2752
  address?: {
2723
2753
  "@type": "PostalAddress";
2724
2754
  addressCountry: string;