Several fixes and optimizations all over the library #28

Merged
javier merged 22 commits from library/several-fixes-and-optimizations into main 2026-07-26 09:56:33 +00:00
Showing only changes of commit 25bef472a4 - Show all commits
+8 -2
View File
@@ -418,7 +418,10 @@ components:
- gameID - gameID
- gameName - gameName
AmiiboRelease: AmiiboRelease:
description: A type that contains the regional release dates of an amiibo. description: |
A type that contains the regional release dates of an amiibo.
Note: The service returns these dates as date-only strings (`yyyy-MM-dd`) without a time component, even though the properties declare the `date-time` format. The `date-time` format is kept deliberately so the generated code produces `Date` values, and the date-only strings are decoded by the custom transcoder configured in the live client, which interprets them as midnight UTC.
type: object type: object
properties: properties:
au: au:
@@ -511,7 +514,10 @@ components:
- key - key
- name - name
LastUpdated: LastUpdated:
description: A type that contains the date and time when the service data was last updated. description: |
A type that contains the date and time when the service data was last updated.
Note: The service returns this timestamp in the `yyyy-MM-dd'T'HH:mm:ss.SSSSSS` format without a timezone offset, so it is not a strictly valid RFC 3339 `date-time` value. The `date-time` format is kept deliberately so the generated code produces a `Date` value, and the timestamp is decoded by the custom transcoder configured in the live client, which interprets it as UTC.
type: object type: object
properties: properties:
lastUpdated: lastUpdated: