From 6cc594831e1bfaa084066461995fd5dc06f5ee49 Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 12:51:40 -0300 Subject: [PATCH 1/7] Save Thu May 25 12:51:40 PM -03 2023 --- openapi/components/schemas/global/about.yaml | 33 +++++ src/client/client.schemas.ts | 140 +++++++++++-------- 2 files changed, 118 insertions(+), 55 deletions(-) diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index d89e09f..df44eaa 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -13,9 +13,42 @@ 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: diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index 0e2ccc3..0a5cd7b 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) @@ -916,10 +916,6 @@ export type GetAboutCatalystInfo503Content = { version?: string } -export type GetAboutCatalystInfo503Configurations = { - realmName?: string -} - export type GetAboutCatalystInfo503 = { healthy: boolean acceptingUsers: boolean @@ -930,6 +926,25 @@ 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 commitHash?: string @@ -954,10 +969,6 @@ export type GetAboutCatalystInfo200Content = { version?: string } -export type GetAboutCatalystInfo200Configurations = { - realmName?: string -} - export type GetAboutCatalystInfo200 = { healthy: boolean acceptingUsers: boolean @@ -967,3 +978,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 +} From eb64eb123f81d1f2f06415239eabd6d79ce4b08b Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 12:56:18 -0300 Subject: [PATCH 2/7] Save Thu May 25 12:56:18 PM -03 2023 --- openapi/components/schemas/global/about.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index df44eaa..1c2b3b4 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -53,6 +53,7 @@ properties: type: object required: - healthy + - publicUrl properties: healthy: type: boolean @@ -60,6 +61,8 @@ properties: type: string version: type: string + publicUrl: + type: string comms: type: object required: @@ -75,6 +78,7 @@ properties: type: object required: - healthy + - publicUrl properties: healthy: type: boolean @@ -82,8 +86,13 @@ properties: type: string version: type: string + publicUrl: + type: string bff: type: object + required: + - healthy + - publicUrl properties: healthy: type: boolean @@ -91,3 +100,5 @@ properties: type: string usersCount: type: number + publicUrl: + type: string From 5089511caa554c89f24df7a626ac955e57056f2c Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 12:58:38 -0300 Subject: [PATCH 3/7] Save Thu May 25 12:58:38 PM -03 2023 --- src/client/client.schemas.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index 0a5cd7b..a474156 100644 --- a/src/client/client.schemas.ts +++ b/src/client/client.schemas.ts @@ -893,15 +893,17 @@ export type GetStatsParcels200 = { } export type GetAboutCatalystInfo503Bff = { - healthy?: boolean + healthy: boolean commitHash?: string usersCount?: number + publicUrl: string } export type GetAboutCatalystInfo503Lambdas = { healthy: boolean commitHash?: string version?: string + publicUrl: string } export type GetAboutCatalystInfo503Comms = { @@ -914,6 +916,7 @@ export type GetAboutCatalystInfo503Content = { healthy: boolean commitHash?: string version?: string + publicUrl: string } export type GetAboutCatalystInfo503 = { @@ -946,15 +949,17 @@ export type GetAboutCatalystInfo503Configurations = { } export type GetAboutCatalystInfo200Bff = { - healthy?: boolean + healthy: boolean commitHash?: string usersCount?: number + publicUrl: string } export type GetAboutCatalystInfo200Lambdas = { healthy: boolean commitHash?: string version?: string + publicUrl: string } export type GetAboutCatalystInfo200Comms = { @@ -967,6 +972,7 @@ export type GetAboutCatalystInfo200Content = { healthy: boolean commitHash?: string version?: string + publicUrl: string } export type GetAboutCatalystInfo200 = { From a8ebc59a5cd54bf089276951a29e0a4e27fd192c Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 13:16:08 -0300 Subject: [PATCH 4/7] Save Thu May 25 01:16:08 PM -03 2023 --- openapi/components/schemas/global/about.yaml | 3 +++ src/client/client.schemas.ts | 2 ++ 2 files changed, 5 insertions(+) diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index 1c2b3b4..0278a5a 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -93,6 +93,7 @@ properties: required: - healthy - publicUrl + - protocol properties: healthy: type: boolean @@ -102,3 +103,5 @@ properties: type: number publicUrl: type: string + protocol: + type: string diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index a474156..0a81fad 100644 --- a/src/client/client.schemas.ts +++ b/src/client/client.schemas.ts @@ -897,6 +897,7 @@ export type GetAboutCatalystInfo503Bff = { commitHash?: string usersCount?: number publicUrl: string + protocol: string } export type GetAboutCatalystInfo503Lambdas = { @@ -953,6 +954,7 @@ export type GetAboutCatalystInfo200Bff = { commitHash?: string usersCount?: number publicUrl: string + protocol: string } export type GetAboutCatalystInfo200Lambdas = { From 4d727970af2f90b398e0b6b25d9982f315eeeac3 Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 13:36:18 -0300 Subject: [PATCH 5/7] Save Thu May 25 01:36:18 PM -03 2023 --- openapi/components/schemas/global/about.yaml | 4 ++-- src/client/client.schemas.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index 0278a5a..aa93f16 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -93,7 +93,7 @@ properties: required: - healthy - publicUrl - - protocol + - protocolVersion properties: healthy: type: boolean @@ -103,5 +103,5 @@ properties: type: number publicUrl: type: string - protocol: + protocolVersion: type: string diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index 0a81fad..0c5fd98 100644 --- a/src/client/client.schemas.ts +++ b/src/client/client.schemas.ts @@ -897,7 +897,7 @@ export type GetAboutCatalystInfo503Bff = { commitHash?: string usersCount?: number publicUrl: string - protocol: string + protocolVersion: string } export type GetAboutCatalystInfo503Lambdas = { @@ -954,7 +954,7 @@ export type GetAboutCatalystInfo200Bff = { commitHash?: string usersCount?: number publicUrl: string - protocol: string + protocolVersion: string } export type GetAboutCatalystInfo200Lambdas = { From 0d333af684564a721c77f37b2ad688f56bf04e85 Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 14:24:25 -0300 Subject: [PATCH 6/7] Save Thu May 25 02:24:25 PM -03 2023 --- openapi/components/schemas/global/about.yaml | 2 ++ src/client/client.schemas.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index aa93f16..5069558 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -74,6 +74,8 @@ properties: type: string commitHash: type: string + userCount: + type: string lambdas: type: object required: diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index 0c5fd98..f85a95e 100644 --- a/src/client/client.schemas.ts +++ b/src/client/client.schemas.ts @@ -911,6 +911,7 @@ export type GetAboutCatalystInfo503Comms = { healthy: boolean protocol?: string commitHash?: string + userCount?: string } export type GetAboutCatalystInfo503Content = { @@ -968,6 +969,7 @@ export type GetAboutCatalystInfo200Comms = { healthy: boolean protocol?: string commitHash?: string + userCount?: string } export type GetAboutCatalystInfo200Content = { From f5ce9365b10e05c988a05dc4571c6255229c1dd6 Mon Sep 17 00:00:00 2001 From: Hugo Arregui Date: Thu, 25 May 2023 14:26:38 -0300 Subject: [PATCH 7/7] Save Thu May 25 02:26:38 PM -03 2023 --- openapi/components/schemas/global/about.yaml | 1 + src/client/client.schemas.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/openapi/components/schemas/global/about.yaml b/openapi/components/schemas/global/about.yaml index 5069558..5bd1493 100644 --- a/openapi/components/schemas/global/about.yaml +++ b/openapi/components/schemas/global/about.yaml @@ -67,6 +67,7 @@ properties: type: object required: - healthy + - protocol properties: healthy: type: boolean diff --git a/src/client/client.schemas.ts b/src/client/client.schemas.ts index f85a95e..57b4e04 100644 --- a/src/client/client.schemas.ts +++ b/src/client/client.schemas.ts @@ -909,7 +909,7 @@ export type GetAboutCatalystInfo503Lambdas = { export type GetAboutCatalystInfo503Comms = { healthy: boolean - protocol?: string + protocol: string commitHash?: string userCount?: string } @@ -967,7 +967,7 @@ export type GetAboutCatalystInfo200Lambdas = { export type GetAboutCatalystInfo200Comms = { healthy: boolean - protocol?: string + protocol: string commitHash?: string userCount?: string }