Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions generated/cpp/fluent_builder_descriptors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
static const FluentParamDescriptor kHTTPRequestParamsDescs[] = {
{"method", 's', 0},
{"mimetype", 's', 1},
{"body_maxlength", 'i', 2},
{"max_body_length", 'i', 2},
{"verify_cert", 'b', 3},
{"verbose_throttle", 'b', 4},
{"custom_header", 'M', 5},
Expand Down Expand Up @@ -98,8 +98,8 @@ static const FluentParamDescriptor kPrimMediaParamsDescs[] = {
{"auto_scale", 'b', 6},
{"auto_zoom", 'b', 7},
{"first_click_interact", 'b', 8},
{"width_pixels", 'i', 9},
{"height_pixels", 'i', 10},
{"width", 'i', 9},
{"height", 'i', 10},
{"whitelist_enable", 'b', 11},
{"whitelist", 'C', 12},
{"perms_interact", 'i', 13},
Expand Down
6 changes: 3 additions & 3 deletions generated/secondlife.d.luau
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ export type MediaParams = {
auto_scale: boolean?,
auto_zoom: boolean?,
first_click_interact: boolean?,
width_pixels: number?,
height_pixels: number?,
width: number?,
height: number?,
whitelist_enable: boolean?,
whitelist: {string}?,
perms_interact: number?,
Expand All @@ -144,7 +144,7 @@ export type MediaParams = {
export type HttpRequestParams = {
method: string?,
mimetype: string?,
body_maxlength: number?,
max_body_length: number?,
verify_cert: boolean?,
verbose_throttle: boolean?,
custom_header: {[string]: string | number | boolean | vector | quaternion}?,
Expand Down
3 changes: 3 additions & 0 deletions lsl_definitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1967,6 +1967,7 @@ constants:
value-type: string-multi
HTTP_BODY_MAXLENGTH:
member-of: [HTTPRequestParam]
pretty-name: max_body_length
tooltip: "Sets the maximum (UTF-8 encoded) byte length of the HTTP response
body. The maximum limit depends on the VM being used (Mono Max: 16384
bytes, LSO Max: 4096 bytes)."
Expand Down Expand Up @@ -4099,6 +4100,7 @@ constants:
value-type: boolean
PRIM_MEDIA_HEIGHT_PIXELS:
member-of: [PrimMediaParam]
pretty-name: height
tooltip: Integer. Gets or sets the height of the media in pixels.
type: integer
value: 10
Expand Down Expand Up @@ -4186,6 +4188,7 @@ constants:
value-type: boolean
PRIM_MEDIA_WIDTH_PIXELS:
member-of: [PrimMediaParam]
pretty-name: width
tooltip: Integer. Gets or sets the width of the media in pixels.
type: integer
value: 9
Expand Down
Loading