@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
|
@@ -2543,6 +2543,36 @@ export interface AddOrganizationData {
|
|
|
2543
2543
|
float: true;
|
|
2544
2544
|
[k: string]: unknown;
|
|
2545
2545
|
};
|
|
2546
|
+
costum?: {
|
|
2547
|
+
bannerImageUrl?: string;
|
|
2548
|
+
bannerLogoUrl?: string;
|
|
2549
|
+
bannerText?: string;
|
|
2550
|
+
/**
|
|
2551
|
+
* Pour bien indiquer que l'orga est un commune transparente
|
|
2552
|
+
*/
|
|
2553
|
+
transparentCommune?: boolean;
|
|
2554
|
+
/**
|
|
2555
|
+
* Pour bien indiquer que l'orga est un centre ville
|
|
2556
|
+
*/
|
|
2557
|
+
cocity?: boolean;
|
|
2558
|
+
slug?: string;
|
|
2559
|
+
typeCocity?: string;
|
|
2560
|
+
[k: string]: unknown;
|
|
2561
|
+
};
|
|
2562
|
+
/**
|
|
2563
|
+
* Thématiques de l’organisation
|
|
2564
|
+
*/
|
|
2565
|
+
thematic?: string[];
|
|
2566
|
+
/**
|
|
2567
|
+
* Dictionnaire de filières par thématique
|
|
2568
|
+
*/
|
|
2569
|
+
filiere?: {
|
|
2570
|
+
[k: string]: {
|
|
2571
|
+
name: string;
|
|
2572
|
+
icon: string;
|
|
2573
|
+
tags: string[];
|
|
2574
|
+
};
|
|
2575
|
+
};
|
|
2546
2576
|
address?: {
|
|
2547
2577
|
"@type": "PostalAddress";
|
|
2548
2578
|
addressCountry: string;
|