diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index d89e09f..5bd1493 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -13,13 +13,47 @@ properties: type: boolean configurations: type: object + required: + - networkId + - globalScenesUrn + - scenesUrn properties: realmName: type: string + networkId: + type: number + globalScenesUrn: + type: array + items: + type: string + scenesUrn: + type: array + items: + type: string + minimap: + type: object + required: + - enabled + properties: + enabled: + type: boolean + dataImage: + type: string + estateImage: + type: string + skybox: + type: object + properties: + fixedHour: + type: number + + + content: type: object required: - healthy + - publicUrl properties: healthy: type: boolean @@ -27,10 +61,13 @@ properties: type: string version: type: string + publicUrl: + type: string comms: type: object required: - healthy + - protocol properties: healthy: type: boolean @@ -38,10 +75,13 @@ properties: type: string commitHash: type: string + userCount: + type: string lambdas: type: object required: - healthy + - publicUrl properties: healthy: type: boolean @@ -49,8 +89,14 @@ properties: type: string version: type: string + publicUrl: + type: string bff: type: object + required: + - healthy + - publicUrl + - protocolVersion properties: healthy: type: boolean @@ -58,3 +104,7 @@ properties: type: string usersCount: type: number + publicUrl: + type: string + protocolVersion: + type: string diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index 0e2ccc3..57b4e04 100644 --- a/src/client/client.schemas.ts +++ b/src/client/client.schemas.ts @@ -131,20 +131,6 @@ export type GetAvatarDetails200AvatarsItemAvatar = { wearables?: string[] } -export type GetAvatarsDetailsByPost200ItemAvatarsItem = { - userId?: string - email?: string - name?: string - hasClaimedName?: boolean - description?: string - ethAddress?: string - version?: number - avatar?: GetAvatarsDetailsByPost200ItemAvatarsItemAvatar - tutorialStep?: number - interests?: string[] - unclaimedName?: string -} - export type GetAvatarsDetailsByPost200Item = { avatars?: GetAvatarsDetailsByPost200ItemAvatarsItem[] } @@ -195,6 +181,20 @@ export type GetAvatarsDetailsByPost200ItemAvatarsItemAvatar = { wearables?: string[] } +export type GetAvatarsDetailsByPost200ItemAvatarsItem = { + userId?: string + email?: string + name?: string + hasClaimedName?: boolean + description?: string + ethAddress?: string + version?: number + avatar?: GetAvatarsDetailsByPost200ItemAvatarsItemAvatar + tutorialStep?: number + interests?: string[] + unclaimedName?: string +} + export type GetAvatarsDetailsByPostBody = { ids?: string[] } @@ -368,13 +368,6 @@ export type GetThirdPartyCollectionParams = { pageSize?: string } -export type GetThirdPartyWearables200 = { - elements: GetThirdPartyWearables200ElementsItem[] - totalAmount: number - pageNum: number - pageSize: number -} - export type GetThirdPartyWearables200ElementsItemIndividualDataItem = { id?: string } @@ -405,6 +398,13 @@ export type GetThirdPartyWearables200ElementsItem = { individualData?: GetThirdPartyWearables200ElementsItemIndividualDataItem[] } +export type GetThirdPartyWearables200 = { + elements: GetThirdPartyWearables200ElementsItem[] + totalAmount: number + pageNum: number + pageSize: number +} + export type GetThirdPartyWearablesParams = { /** * The number of the requested page. @@ -471,6 +471,18 @@ export type GetNamesParams = { pageSize?: string } +export type GetEmotes200ElementsItemEntityMetadata = { [key: string]: any } + +export type GetEmotes200ElementsItemEntity = { + version: string + id: string + type: string + timestamp: number + pointers: string[] + content: GetEmotes200ElementsItemEntityContentItem[] + metadata?: GetEmotes200ElementsItemEntityMetadata +} + export type GetEmotes200ElementsItem = { urn: string amount?: number @@ -485,23 +497,11 @@ export type GetEmotes200 = { pageSize: number } -export type GetEmotes200ElementsItemEntityMetadata = { [key: string]: any } - export type GetEmotes200ElementsItemEntityContentItem = { file: string hash: string } -export type GetEmotes200ElementsItemEntity = { - version: string - id: string - type: string - timestamp: number - pointers: string[] - content: GetEmotes200ElementsItemEntityContentItem[] - metadata?: GetEmotes200ElementsItemEntityMetadata -} - export type GetEmotesParams = { /** * Third Party collection Id to filter emotes, if this param is not sent then the 3rd parties emotes are not shown. If it is sent, only the 3rd parties emotes are shown. @@ -526,13 +526,6 @@ export type GetWearables503 = { message: string } -export type GetWearables200 = { - elements: GetWearables200ElementsItem[] - totalAmount: number - pageNum: number - pageSize: number -} - export type GetWearables200ElementsItemIndividualDataItem = { id?: string tokenId?: string @@ -567,6 +560,13 @@ export type GetWearables200ElementsItem = { individualData?: GetWearables200ElementsItemIndividualDataItem[] } +export type GetWearables200 = { + elements: GetWearables200ElementsItem[] + totalAmount: number + pageNum: number + pageSize: number +} + export type GetWearablesParams = { /** * If present, response will be extended with the entity data. @@ -776,13 +776,6 @@ export type GetActiveEntitiesBody = { ids?: string[] } -export type GetEntitiesByPointerPrefix200EntitiesItemMetadata = { [key: string]: any } - -export type GetEntitiesByPointerPrefix200EntitiesItemContentItem = { - file: string - hash: string -} - export type GetEntitiesByPointerPrefix200EntitiesItem = { version: string id: string @@ -798,6 +791,13 @@ export type GetEntitiesByPointerPrefix200 = { entities: GetEntitiesByPointerPrefix200EntitiesItem[] } +export type GetEntitiesByPointerPrefix200EntitiesItemMetadata = { [key: string]: any } + +export type GetEntitiesByPointerPrefix200EntitiesItemContentItem = { + file: string + hash: string +} + export type GetEntitiesByPointerPrefixParams = { /** * Page size (max 1000) @@ -893,31 +893,32 @@ export type GetStatsParcels200 = { } export type GetAboutCatalystInfo503Bff = { - healthy?: boolean + healthy: boolean commitHash?: string usersCount?: number + publicUrl: string + protocolVersion: string } export type GetAboutCatalystInfo503Lambdas = { healthy: boolean commitHash?: string version?: string + publicUrl: string } export type GetAboutCatalystInfo503Comms = { healthy: boolean - protocol?: string + protocol: string commitHash?: string + userCount?: string } export type GetAboutCatalystInfo503Content = { healthy: boolean commitHash?: string version?: string -} - -export type GetAboutCatalystInfo503Configurations = { - realmName?: string + publicUrl: string } export type GetAboutCatalystInfo503 = { @@ -930,32 +931,52 @@ export type GetAboutCatalystInfo503 = { bff?: GetAboutCatalystInfo503Bff } +export type GetAboutCatalystInfo503ConfigurationsSkybox = { + fixedHour?: number +} + +export type GetAboutCatalystInfo503ConfigurationsMinimap = { + enabled: boolean + dataImage?: string + estateImage?: string +} + +export type GetAboutCatalystInfo503Configurations = { + realmName?: string + networkId: number + globalScenesUrn: string[] + scenesUrn: string[] + minimap?: GetAboutCatalystInfo503ConfigurationsMinimap + skybox?: GetAboutCatalystInfo503ConfigurationsSkybox +} + export type GetAboutCatalystInfo200Bff = { - healthy?: boolean + healthy: boolean commitHash?: string usersCount?: number + publicUrl: string + protocolVersion: string } export type GetAboutCatalystInfo200Lambdas = { healthy: boolean commitHash?: string version?: string + publicUrl: string } export type GetAboutCatalystInfo200Comms = { healthy: boolean - protocol?: string + protocol: string commitHash?: string + userCount?: string } export type GetAboutCatalystInfo200Content = { healthy: boolean commitHash?: string version?: string -} - -export type GetAboutCatalystInfo200Configurations = { - realmName?: string + publicUrl: string } export type GetAboutCatalystInfo200 = { @@ -967,3 +988,22 @@ export type GetAboutCatalystInfo200 = { lambdas: GetAboutCatalystInfo200Lambdas bff?: GetAboutCatalystInfo200Bff } + +export type GetAboutCatalystInfo200ConfigurationsSkybox = { + fixedHour?: number +} + +export type GetAboutCatalystInfo200ConfigurationsMinimap = { + enabled: boolean + dataImage?: string + estateImage?: string +} + +export type GetAboutCatalystInfo200Configurations = { + realmName?: string + networkId: number + globalScenesUrn: string[] + scenesUrn: string[] + minimap?: GetAboutCatalystInfo200ConfigurationsMinimap + skybox?: GetAboutCatalystInfo200ConfigurationsSkybox +}