@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/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/EndpointApi.types.ts +30 -0
- package/src/endpoints.module.ts +1 -1
- package/types/api/EndpointApi.types.d.ts +30 -0
- package/types/endpoints.module.d.ts +331 -0
package/package.json
CHANGED
|
@@ -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;
|