@jacobhumston/roblox-openapi-ts 1.0.39 → 1.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +6 -14
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -11552,7 +11552,6 @@ export interface paths {
|
|
|
11552
11552
|
contentRepresentationPriorityList?: string;
|
|
11553
11553
|
assetResolutionMode?: string;
|
|
11554
11554
|
accessContext?: string;
|
|
11555
|
-
usageContext?: number;
|
|
11556
11555
|
};
|
|
11557
11556
|
header: {
|
|
11558
11557
|
"Accept-Encoding": string;
|
|
@@ -11561,6 +11560,7 @@ export interface paths {
|
|
|
11561
11560
|
Accept: string;
|
|
11562
11561
|
AssetFormat: string;
|
|
11563
11562
|
"Roblox-AssetFormat": string;
|
|
11563
|
+
usageContext?: number;
|
|
11564
11564
|
};
|
|
11565
11565
|
path?: never;
|
|
11566
11566
|
cookie?: never;
|
|
@@ -57245,7 +57245,7 @@ export interface components {
|
|
|
57245
57245
|
* This is derived from the shutdown reason for shutdown rows; it is always "Active" for currently live servers.
|
|
57246
57246
|
* @enum {string}
|
|
57247
57247
|
*/
|
|
57248
|
-
ServerStatus: "active" | "shut_down" | "restarted" | "roblox_restarted" | "crashed" | "out_of_memory" | "moderated";
|
|
57248
|
+
ServerStatus: "active" | "shut_down" | "restarted" | "roblox_restarted" | "crashed" | "out_of_memory" | "moderated" | "pending" | "unspecified";
|
|
57249
57249
|
/**
|
|
57250
57250
|
* Format: int32
|
|
57251
57251
|
* @description Defines the different types of servers
|
|
@@ -57993,6 +57993,9 @@ export interface components {
|
|
|
57993
57993
|
*/
|
|
57994
57994
|
templateRootPlace: string;
|
|
57995
57995
|
};
|
|
57996
|
+
UniverseEligibility: {
|
|
57997
|
+
eligible?: boolean;
|
|
57998
|
+
};
|
|
57996
57999
|
/**
|
|
57997
58000
|
* @description A social link that may be associated with the universe.
|
|
57998
58001
|
*
|
|
@@ -58770,7 +58773,7 @@ export interface components {
|
|
|
58770
58773
|
* @description The eligibility result for the requested experience. Present only when
|
|
58771
58774
|
* universeId was supplied in the request.
|
|
58772
58775
|
*/
|
|
58773
|
-
eligibility?: components["schemas"]["
|
|
58776
|
+
eligibility?: components["schemas"]["UniverseEligibility"];
|
|
58774
58777
|
/** @description The campaign objectives you can create. Only `ENGAGEMENT` is supported in v1. */
|
|
58775
58778
|
objectives?: "ENGAGEMENT"[];
|
|
58776
58779
|
/**
|
|
@@ -58957,17 +58960,6 @@ export interface components {
|
|
|
58957
58960
|
/** @description The selectable device types. Values can be `PHONE`, `TABLET`, `DESKTOP`, or `CONSOLE`. */
|
|
58958
58961
|
devices?: ("PHONE" | "TABLET" | "DESKTOP" | "CONSOLE")[];
|
|
58959
58962
|
};
|
|
58960
|
-
"internal_public_v1.UniverseEligibility": {
|
|
58961
|
-
/** @description Whether the experience can currently be advertised. */
|
|
58962
|
-
eligible?: boolean;
|
|
58963
|
-
/**
|
|
58964
|
-
* @description The reasons the experience is not eligible. Omitted when eligible. Values can be
|
|
58965
|
-
* `NO_PERMISSION` or `BLOCKED`.
|
|
58966
|
-
*/
|
|
58967
|
-
reasons?: ("NO_PERMISSION" | "BLOCKED")[];
|
|
58968
|
-
/** @description The identifier of the experience that was checked. */
|
|
58969
|
-
universeId?: string;
|
|
58970
|
-
};
|
|
58971
58963
|
"internal_public_v1.UpdateBudget": {
|
|
58972
58964
|
/**
|
|
58973
58965
|
* @description The new budget amount in micro-USD, as a decimal string (for example,
|