@globalscoutme/api-client 1.0.11 → 1.0.13

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.
@@ -377,6 +377,10 @@ export type ProfileResponseDto = {
377
377
  * Internal user_data id
378
378
  */
379
379
  id: string;
380
+ /**
381
+ * Email address
382
+ */
383
+ email?: string | null;
380
384
  /**
381
385
  * First name
382
386
  */
@@ -856,6 +860,10 @@ export type OrganizationResponseDto = {
856
860
  * Club name
857
861
  */
858
862
  name: string;
863
+ /**
864
+ * Club crest / logo URL
865
+ */
866
+ logoUrl?: string | null;
859
867
  /**
860
868
  * Slug
861
869
  */
@@ -902,6 +910,10 @@ export type UpdateOrganizationDto = {
902
910
  * Club name
903
911
  */
904
912
  name?: string;
913
+ /**
914
+ * Club crest / logo URL, null to clear
915
+ */
916
+ logoUrl?: string | null;
905
917
  /**
906
918
  * Country code (2-letter ISO)
907
919
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalscoutme/api-client",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "GlobalScoutMe API client (generated)",
5
5
  "author": "GlobalScoutMe",
6
6
  "license": "UNLICENSED",
package/types.gen.ts CHANGED
@@ -407,6 +407,10 @@ export type ProfileResponseDto = {
407
407
  * Internal user_data id
408
408
  */
409
409
  id: string;
410
+ /**
411
+ * Email address
412
+ */
413
+ email?: string | null;
410
414
  /**
411
415
  * First name
412
416
  */
@@ -906,6 +910,10 @@ export type OrganizationResponseDto = {
906
910
  * Club name
907
911
  */
908
912
  name: string;
913
+ /**
914
+ * Club crest / logo URL
915
+ */
916
+ logoUrl?: string | null;
909
917
  /**
910
918
  * Slug
911
919
  */
@@ -953,6 +961,10 @@ export type UpdateOrganizationDto = {
953
961
  * Club name
954
962
  */
955
963
  name?: string;
964
+ /**
965
+ * Club crest / logo URL, null to clear
966
+ */
967
+ logoUrl?: string | null;
956
968
  /**
957
969
  * Country code (2-letter ISO)
958
970
  */