Skip to content

Commit

Permalink
1.14.2 (42214)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gethe committed Feb 8, 2022
1 parent f7ed67f commit 00cee12
Show file tree
Hide file tree
Showing 251 changed files with 1,760 additions and 44,813 deletions.
Expand Up @@ -143,6 +143,7 @@ CurrencyConstantsDocumentation.lua
DamageConstantsDocumentation.lua
GarrisonConstantsDocumentation.lua
GuildInfoSharedDocumentation.lua
ImGuiTypesSharedDocumentation.lua
InputConstantsDocumentation.lua
ItemConstantsDocumentation.lua
ItemLocationSharedDocumentation.lua
Expand All @@ -154,6 +155,7 @@ PetBattleConstantsDocumentation.lua
PetScalingConstantsDocumentation.lua
PlayerDocumentation.lua
ProfessionConstantsDocumentation.lua
PvpInfoConstantsDocumentation.lua
QuestConstantsDocumentation.lua
QuestSessionConstantsDocumentation.lua
QueueSpecificDocumentation.lua
Expand All @@ -163,6 +165,7 @@ TimeDocumentation.lua
TradeSkillUITypesDocumentation.lua
TransmogSharedDocumentation.lua
UIWidgetManagerSharedDocumentation.lua
UnitSexConstantsDocumentation.lua
UnitSharedDocumentation.lua
VectorSharedDocumentation.lua
VehicleConstantsDocumentation.lua
Expand Down
@@ -0,0 +1,59 @@
local CharacterCustomizationShared =
{
Tables =
{
{
Name = "ChrCustomizationCategoryFlag",
Type = "Enumeration",
NumValues = 1,
MinValue = 1,
MaxValue = 1,
Fields =
{
{ Name = "UndressModel", Type = "ChrCustomizationCategoryFlag", EnumValue = 1 },
},
},
{
Name = "ChrCustomizationOptionType",
Type = "Enumeration",
NumValues = 3,
MinValue = 0,
MaxValue = 2,
Fields =
{
{ Name = "SelectionPopout", Type = "ChrCustomizationOptionType", EnumValue = 0 },
{ Name = "Checkbox", Type = "ChrCustomizationOptionType", EnumValue = 1 },
{ Name = "Slider", Type = "ChrCustomizationOptionType", EnumValue = 2 },
},
},
{
Name = "CharCustomizationChoice",
Type = "Structure",
Fields =
{
{ Name = "id", Type = "number", Nilable = false },
{ Name = "name", Type = "string", Nilable = false },
{ Name = "ineligibleChoice", Type = "bool", Nilable = false },
{ Name = "isNew", Type = "bool", Nilable = false },
{ Name = "swatchColor1", Type = "table", Mixin = "ColorMixin", Nilable = true },
{ Name = "swatchColor2", Type = "table", Mixin = "ColorMixin", Nilable = true },
},
},
{
Name = "CharCustomizationOption",
Type = "Structure",
Fields =
{
{ Name = "id", Type = "number", Nilable = false },
{ Name = "name", Type = "string", Nilable = false },
{ Name = "orderIndex", Type = "number", Nilable = false },
{ Name = "optionType", Type = "ChrCustomizationOptionType", Nilable = false },
{ Name = "choices", Type = "table", InnerType = "CharCustomizationChoice", Nilable = false },
{ Name = "currentChoiceIndex", Type = "number", Nilable = false },
{ Name = "hasNewChoices", Type = "bool", Nilable = false },
},
},
},
};

APIDocumentation:AddDocumentationTable(CharacterCustomizationShared);
130 changes: 65 additions & 65 deletions Interface/AddOns/Blizzard_APIDocumentation/ChatInfoDocumentation.lua

Large diffs are not rendered by default.

Expand Up @@ -110,7 +110,7 @@ local LFGListInfo =
Arguments =
{
{ Name = "categoryID", Type = "number", Nilable = false },
{ Name = "activityID", Type = "number", Nilable = false },
{ Name = "activityIDs", Type = "table", InnerType = "number", Nilable = false },
{ Name = "filter", Type = "number", Nilable = false, Default = 0 },
{ Name = "preferredFilters", Type = "number", Nilable = false, Default = 0 },
},
Expand Down

0 comments on commit 00cee12

Please sign in to comment.