@communecter/cocolight-api-client 1.0.90 → 1.0.92

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.
@@ -2862,7 +2862,7 @@ export interface AddEventData {
2862
2862
  * Description courte
2863
2863
  */
2864
2864
  shortDescription?: string;
2865
- tags?: string[];
2865
+ tags?: string[] | "";
2866
2866
  /**
2867
2867
  * Site web
2868
2868
  */
@@ -2870,7 +2870,7 @@ export interface AddEventData {
2870
2870
  /**
2871
2871
  * Email de l’organisation
2872
2872
  */
2873
- email?: string;
2873
+ email?: string | "";
2874
2874
  preferences?: {
2875
2875
  /**
2876
2876
  * Open data (true/false)
@@ -3068,7 +3068,7 @@ export interface AddEventData {
3068
3068
  float: true;
3069
3069
  [k: string]: unknown;
3070
3070
  };
3071
- address?: {
3071
+ address?: "" | {
3072
3072
  "@type": "PostalAddress";
3073
3073
  addressCountry: string;
3074
3074
  codeInsee: string;
@@ -1673,9 +1673,11 @@ declare const endpoints: {
1673
1673
  anyOf: ({
1674
1674
  format: string;
1675
1675
  type: string;
1676
+ const?: undefined;
1676
1677
  } | {
1677
1678
  const: string;
1678
1679
  type: string;
1680
+ format?: undefined;
1679
1681
  })[];
1680
1682
  };
1681
1683
  name: {
@@ -1807,7 +1809,13 @@ declare const endpoints: {
1807
1809
  $ref: string;
1808
1810
  };
1809
1811
  fixe: {
1810
- type: string;
1812
+ anyOf: ({
1813
+ type: string;
1814
+ const?: undefined;
1815
+ } | {
1816
+ const: string;
1817
+ type: string;
1818
+ })[];
1811
1819
  };
1812
1820
  id: {
1813
1821
  default: string;
@@ -1815,7 +1823,13 @@ declare const endpoints: {
1815
1823
  type: string;
1816
1824
  };
1817
1825
  mobile: {
1818
- type: string;
1826
+ anyOf: ({
1827
+ type: string;
1828
+ const?: undefined;
1829
+ } | {
1830
+ const: string;
1831
+ type: string;
1832
+ })[];
1819
1833
  };
1820
1834
  name: {
1821
1835
  $ref: string;
@@ -2944,6 +2958,9 @@ declare const endpoints: {
2944
2958
  oneOf: ({
2945
2959
  const: string;
2946
2960
  type: string;
2961
+ additionalProperties?: undefined;
2962
+ properties?: undefined;
2963
+ required?: undefined;
2947
2964
  } | {
2948
2965
  additionalProperties: boolean;
2949
2966
  properties: {
@@ -2994,6 +3011,7 @@ declare const endpoints: {
2994
3011
  };
2995
3012
  required: string[];
2996
3013
  type: string;
3014
+ const?: undefined;
2997
3015
  })[];
2998
3016
  };
2999
3017
  block: {
@@ -16051,55 +16069,64 @@ declare const endpoints: {
16051
16069
  };
16052
16070
  properties: {
16053
16071
  address: {
16054
- additionalProperties: boolean;
16055
- properties: {
16056
- "@type": {
16057
- const: string;
16058
- type: string;
16059
- };
16060
- addressCountry: {
16061
- type: string;
16062
- };
16063
- addressLocality: {
16064
- type: string;
16065
- };
16066
- codeInsee: {
16067
- type: string;
16068
- };
16069
- level1: {
16070
- type: string;
16071
- };
16072
- level1Name: {
16073
- type: string;
16074
- };
16075
- level3: {
16076
- minLength: number;
16077
- type: string;
16078
- };
16079
- level3Name: {
16080
- minLength: number;
16081
- type: string;
16082
- };
16083
- level4: {
16084
- minLength: number;
16085
- type: string;
16086
- };
16087
- level4Name: {
16088
- minLength: number;
16089
- type: string;
16090
- };
16091
- localityId: {
16092
- type: string;
16093
- };
16094
- postalCode: {
16095
- type: string;
16096
- };
16097
- streetAddress: {
16098
- type: string;
16072
+ oneOf: ({
16073
+ const: string;
16074
+ type: string;
16075
+ additionalProperties?: undefined;
16076
+ properties?: undefined;
16077
+ required?: undefined;
16078
+ } | {
16079
+ additionalProperties: boolean;
16080
+ properties: {
16081
+ "@type": {
16082
+ const: string;
16083
+ type: string;
16084
+ };
16085
+ addressCountry: {
16086
+ type: string;
16087
+ };
16088
+ addressLocality: {
16089
+ type: string;
16090
+ };
16091
+ codeInsee: {
16092
+ type: string;
16093
+ };
16094
+ level1: {
16095
+ type: string;
16096
+ };
16097
+ level1Name: {
16098
+ type: string;
16099
+ };
16100
+ level3: {
16101
+ minLength: number;
16102
+ type: string;
16103
+ };
16104
+ level3Name: {
16105
+ minLength: number;
16106
+ type: string;
16107
+ };
16108
+ level4: {
16109
+ minLength: number;
16110
+ type: string;
16111
+ };
16112
+ level4Name: {
16113
+ minLength: number;
16114
+ type: string;
16115
+ };
16116
+ localityId: {
16117
+ type: string;
16118
+ };
16119
+ postalCode: {
16120
+ type: string;
16121
+ };
16122
+ streetAddress: {
16123
+ type: string;
16124
+ };
16099
16125
  };
16100
- };
16101
- required: string[];
16102
- type: string;
16126
+ required: string[];
16127
+ type: string;
16128
+ const?: undefined;
16129
+ })[];
16103
16130
  };
16104
16131
  collection: {
16105
16132
  const: string;
@@ -16107,8 +16134,15 @@ declare const endpoints: {
16107
16134
  type: string;
16108
16135
  };
16109
16136
  email: {
16110
- format: string;
16111
- type: string;
16137
+ anyOf: ({
16138
+ format: string;
16139
+ type: string;
16140
+ const?: undefined;
16141
+ } | {
16142
+ const: string;
16143
+ type: string;
16144
+ format?: undefined;
16145
+ })[];
16112
16146
  };
16113
16147
  endDate: {
16114
16148
  format: string;
@@ -16294,10 +16328,15 @@ declare const endpoints: {
16294
16328
  type: string;
16295
16329
  };
16296
16330
  tags: {
16297
- items: {
16331
+ anyOf: ({
16332
+ const: string;
16298
16333
  type: string;
16299
- };
16300
- type: string;
16334
+ } | {
16335
+ items: {
16336
+ type: string;
16337
+ };
16338
+ type: string;
16339
+ })[];
16301
16340
  };
16302
16341
  timeZone: {
16303
16342
  type: string;