Skip to content

Commit 6a27d32

Browse files
authored
Merge branch 'main' into TheAlizabeth/clarify-buffer-create
2 parents 610176d + b17dff6 commit 6a27d32

File tree

21 files changed

+8085
-1538
lines changed

21 files changed

+8085
-1538
lines changed

.github/actions/quality-checks/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ inputs:
1313
description: Whether to check relative links
1414
CHECK_RETEXT_ANALYSIS:
1515
description: Whether to check retext analysis
16+
CHECK_UNUSED_ASSETS:
17+
description: Whether to check for unused assets
1618
COMMIT_HASH:
1719
description: Commit hash
1820
EVENT_NAME:
@@ -53,6 +55,7 @@ runs:
5355
CHECK_PROTECTED_FIELDS: ${{ inputs.CHECK_PROTECTED_FIELDS }}
5456
CHECK_RELATIVE_LINKS: ${{ inputs.CHECK_RELATIVE_LINKS }}
5557
CHECK_RETEXT_ANALYSIS: ${{ inputs.CHECK_RETEXT_ANALYSIS }}
58+
CHECK_UNUSED_ASSETS: ${{ inputs.CHECK_UNUSED_ASSETS }}
5659
COMMIT_HASH: ${{ inputs.COMMIT_HASH }}
5760
POST_PULL_REQUEST_COMMENTS: ${{ inputs.POST_PULL_REQUEST_COMMENTS }}
5861
PULL_REQUEST_NUMBER: ${{ inputs.PULL_REQUEST_NUMBER }}

.github/workflows/content-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696
CHECK_PROTECTED_FIELDS: true
9797
CHECK_RELATIVE_LINKS: true
9898
CHECK_RETEXT_ANALYSIS: true
99+
CHECK_UNUSED_ASSETS: true
99100
COMMIT_HASH: ${{ github.event.pull_request.head.sha }}
100101
EVENT_NAME: ${{ github.event_name }}
101102
POST_PULL_REQUEST_COMMENTS: true
Lines changed: 2 additions & 2 deletions
Loading

content/en-us/production/monetization/price-optimization.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,11 @@ To run a price review period:
128128
<td>The number of active users during the test period.</td>
129129
</tr>
130130
<tr>
131-
<td>**Short-term revenue**</td>
132-
<td>The amount of Robux spent on tested products during the two-week price optimization test period.</td>
133-
</tr>
134-
<tr>
135-
<td>**Long-term revenue**</td>
131+
<td>**Revenue**</td>
136132
<td>The amount of Robux spent on tested products during the four-week price review period.</td>
137133
</tr>
138134
<tr>
139-
<td>**Approximate long-term revenue impact**</td>
135+
<td>**Approximate revenue impact**</td>
140136
<td>The projected long-term revenue increase if the optimized prices are applied to the tested products.</td>
141137
</tr>
142138
<tr>
@@ -151,5 +147,17 @@ To run a price review period:
151147
<td>**ARPPU**</td>
152148
<td>The average revenue per paying user during the price review period.</td>
153149
</tr>
150+
<tr>
151+
<td>**Recommended price increase**</td>
152+
<td>The number of products for which we recommend increasing the price.</td>
153+
</tr>
154+
<tr>
155+
<td>**Recommended price decrease**</td>
156+
<td>The number of products for which we recommend lowering the price.</td>
157+
</tr>
158+
<tr>
159+
<td>**Recommended no change**</td>
160+
<td>The number of products for which we recommend keeping the current price.</td>
161+
</tr>
154162
</tbody>
155163
</table>

content/en-us/production/promotion/ads-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Any Roblox user aged 13 and above can convert Robux to ad credit and use it for
4040

4141
You can specify the amount of ad credit you want to purchase. When converting Robux to ad credits, consider the following:
4242

43-
- 1 ad credit is equivalent to 285 Robux.
43+
- 1 ad credit is equivalent to 263 Robux.
4444
- 10 ad credits is the minimum conversion requirement.
4545

4646
This minimum conversion requirement streamlines the conversion process, prevents inaccuracies, and makes sure that you have enough ad credits to support meaningful advertising campaigns.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"openapi": "3.0.4",
3+
"info": {
4+
"title": "Roblox.AssetPermissionsApi",
5+
"version": "1.0",
6+
"x-roblox-extensions-version": "1.0.0"
7+
},
8+
"paths": {},
9+
"components": {
10+
"securitySchemes": {}
11+
},
12+
"servers": [
13+
{
14+
"url": "https://apis.roblox.com"
15+
}
16+
]
17+
}

content/en-us/reference/cloud/openapi.json

Lines changed: 279 additions & 119 deletions
Large diffs are not rendered by default.

content/en-us/reference/cloud/toolbox-service/v1.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,15 @@
563563
"description": "The social links associated with the asset.",
564564
"nullable": true
565565
},
566+
"previewAssets": {
567+
"allOf": [
568+
{
569+
"$ref": "#/components/schemas/PreviewAssetsModel"
570+
}
571+
],
572+
"description": "The asset's preview asset ids grouped by asset type.",
573+
"nullable": true
574+
},
566575
"createTime": {
567576
"type": "string",
568577
"description": "The time the asset was created.",
@@ -1338,6 +1347,32 @@
13381347
"description": "Representation of a plugin asset.",
13391348
"nullable": true
13401349
},
1350+
"PreviewAssetsModel": {
1351+
"type": "object",
1352+
"properties": {
1353+
"imagePreviewAssets": {
1354+
"type": "array",
1355+
"items": {
1356+
"type": "integer",
1357+
"format": "int64"
1358+
},
1359+
"description": "Ordered list of image preview asset ids.",
1360+
"nullable": true
1361+
},
1362+
"videoPreviewAssets": {
1363+
"type": "array",
1364+
"items": {
1365+
"type": "integer",
1366+
"format": "int64"
1367+
},
1368+
"description": "Ordered list of video preview asset ids.",
1369+
"nullable": true
1370+
}
1371+
},
1372+
"additionalProperties": false,
1373+
"description": "Grouped preview asset ids for an item, separated by media type.",
1374+
"nullable": true
1375+
},
13411376
"ProblemDetails": {
13421377
"type": "object",
13431378
"properties": {

0 commit comments

Comments
 (0)