@rbxts/types 1.0.799 → 1.0.801
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/include/generated/None.d.ts +16 -4
- package/include/generated/enums.d.ts +55 -2
- package/include/roblox.d.ts +88 -0
- package/package.json +1 -1
|
@@ -23063,19 +23063,31 @@ interface MarketplaceService extends Instance {
|
|
|
23063
23063
|
/**
|
|
23064
23064
|
* Tags: Yields
|
|
23065
23065
|
*/
|
|
23066
|
-
GetSubscriptionProductInfoAsync(this: MarketplaceService, subscriptionId: string):
|
|
23066
|
+
GetSubscriptionProductInfoAsync(this: MarketplaceService, subscriptionId: string): SubscriptionInfo;
|
|
23067
23067
|
/**
|
|
23068
23068
|
* Tags: Yields
|
|
23069
23069
|
*/
|
|
23070
|
-
GetUserSubscriptionDetailsAsync(
|
|
23070
|
+
GetUserSubscriptionDetailsAsync(
|
|
23071
|
+
this: MarketplaceService,
|
|
23072
|
+
user: Player,
|
|
23073
|
+
subscriptionId: string,
|
|
23074
|
+
): UserSubscriptionDetails;
|
|
23071
23075
|
/**
|
|
23072
23076
|
* Tags: Yields
|
|
23073
23077
|
*/
|
|
23074
|
-
GetUserSubscriptionPaymentHistoryAsync(
|
|
23078
|
+
GetUserSubscriptionPaymentHistoryAsync(
|
|
23079
|
+
this: MarketplaceService,
|
|
23080
|
+
user: Player,
|
|
23081
|
+
subscriptionId: string,
|
|
23082
|
+
): Array<UserSubscriptionPaymentHistory>;
|
|
23075
23083
|
/**
|
|
23076
23084
|
* Tags: Yields
|
|
23077
23085
|
*/
|
|
23078
|
-
GetUserSubscriptionStatusAsync(
|
|
23086
|
+
GetUserSubscriptionStatusAsync(
|
|
23087
|
+
this: MarketplaceService,
|
|
23088
|
+
user: Player,
|
|
23089
|
+
subscriptionId: string,
|
|
23090
|
+
): UserSubscriptionStatus;
|
|
23079
23091
|
/**
|
|
23080
23092
|
* Returns whether the inventory of given [Player](https://developer.roblox.com/en-us/api-reference/class/Player) contains an asset, given the ID. This method can query for hats, models, sounds, etc. This function takes a small amount of time to send a request the Roblox website.
|
|
23081
23093
|
*
|
|
@@ -14566,9 +14566,17 @@ declare namespace Enum {
|
|
|
14566
14566
|
|
|
14567
14567
|
export const PS5: PS5;
|
|
14568
14568
|
|
|
14569
|
+
export interface MetaOS extends globalThis.EnumItem {
|
|
14570
|
+
Name: "MetaOS";
|
|
14571
|
+
Value: 20;
|
|
14572
|
+
EnumType: typeof globalThis.Enum.Platform;
|
|
14573
|
+
}
|
|
14574
|
+
|
|
14575
|
+
export const MetaOS: MetaOS;
|
|
14576
|
+
|
|
14569
14577
|
export interface None extends globalThis.EnumItem {
|
|
14570
14578
|
Name: "None";
|
|
14571
|
-
Value:
|
|
14579
|
+
Value: 21;
|
|
14572
14580
|
EnumType: typeof globalThis.Enum.Platform;
|
|
14573
14581
|
}
|
|
14574
14582
|
|
|
@@ -14576,7 +14584,7 @@ declare namespace Enum {
|
|
|
14576
14584
|
|
|
14577
14585
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Platform>;
|
|
14578
14586
|
}
|
|
14579
|
-
export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.None;
|
|
14587
|
+
export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.MetaOS | Platform.None;
|
|
14580
14588
|
|
|
14581
14589
|
export namespace PlaybackState {
|
|
14582
14590
|
export interface Begin extends globalThis.EnumItem {
|
|
@@ -21814,6 +21822,51 @@ declare namespace Enum {
|
|
|
21814
21822
|
}
|
|
21815
21823
|
export type VRControllerModelMode = VRControllerModelMode.Disabled | VRControllerModelMode.Transparent;
|
|
21816
21824
|
|
|
21825
|
+
export namespace VRDeviceType {
|
|
21826
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
21827
|
+
Name: "Unknown";
|
|
21828
|
+
Value: 0;
|
|
21829
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21830
|
+
}
|
|
21831
|
+
|
|
21832
|
+
export const Unknown: Unknown;
|
|
21833
|
+
|
|
21834
|
+
export interface OculusRift extends globalThis.EnumItem {
|
|
21835
|
+
Name: "OculusRift";
|
|
21836
|
+
Value: 1;
|
|
21837
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21838
|
+
}
|
|
21839
|
+
|
|
21840
|
+
export const OculusRift: OculusRift;
|
|
21841
|
+
|
|
21842
|
+
export interface HTCVive extends globalThis.EnumItem {
|
|
21843
|
+
Name: "HTCVive";
|
|
21844
|
+
Value: 2;
|
|
21845
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21846
|
+
}
|
|
21847
|
+
|
|
21848
|
+
export const HTCVive: HTCVive;
|
|
21849
|
+
|
|
21850
|
+
export interface ValveIndex extends globalThis.EnumItem {
|
|
21851
|
+
Name: "ValveIndex";
|
|
21852
|
+
Value: 3;
|
|
21853
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21854
|
+
}
|
|
21855
|
+
|
|
21856
|
+
export const ValveIndex: ValveIndex;
|
|
21857
|
+
|
|
21858
|
+
export interface OculusQuest extends globalThis.EnumItem {
|
|
21859
|
+
Name: "OculusQuest";
|
|
21860
|
+
Value: 4;
|
|
21861
|
+
EnumType: typeof globalThis.Enum.VRDeviceType;
|
|
21862
|
+
}
|
|
21863
|
+
|
|
21864
|
+
export const OculusQuest: OculusQuest;
|
|
21865
|
+
|
|
21866
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VRDeviceType>;
|
|
21867
|
+
}
|
|
21868
|
+
export type VRDeviceType = VRDeviceType.Unknown | VRDeviceType.OculusRift | VRDeviceType.HTCVive | VRDeviceType.ValveIndex | VRDeviceType.OculusQuest;
|
|
21869
|
+
|
|
21817
21870
|
export namespace VRLaserPointerMode {
|
|
21818
21871
|
export interface Disabled extends globalThis.EnumItem {
|
|
21819
21872
|
Name: "Disabled";
|
package/include/roblox.d.ts
CHANGED
|
@@ -3067,3 +3067,91 @@ interface VoxelChannels {
|
|
|
3067
3067
|
*/
|
|
3068
3068
|
LiquidOccupancy: number;
|
|
3069
3069
|
}
|
|
3070
|
+
|
|
3071
|
+
interface SubscriptionInfo {
|
|
3072
|
+
/**
|
|
3073
|
+
* The name of the subscription product.
|
|
3074
|
+
*/
|
|
3075
|
+
Name: string;
|
|
3076
|
+
/**
|
|
3077
|
+
* The description of the subscription product.
|
|
3078
|
+
*/
|
|
3079
|
+
Description: string;
|
|
3080
|
+
/**
|
|
3081
|
+
* The asset ID of the subscription product icon.
|
|
3082
|
+
*/
|
|
3083
|
+
IconImageAssetID: number;
|
|
3084
|
+
/**
|
|
3085
|
+
* The duration of the subscription (for example, `Month`, `Year`, etc.).
|
|
3086
|
+
*/
|
|
3087
|
+
SubscriptionPeriod: Enum.SubscriptionPeriod;
|
|
3088
|
+
/**
|
|
3089
|
+
* Localized price with the appropriate currency symbol for display (for example, `$4.99`). For users in unsupported countries, `DisplayPrice` returns a string without specific price information.
|
|
3090
|
+
*/
|
|
3091
|
+
DisplayPrice: string;
|
|
3092
|
+
/**
|
|
3093
|
+
* Localized subscription period text for display (for example, `/month`). Can be used together with `DisplayPrice`.
|
|
3094
|
+
*/
|
|
3095
|
+
DisplaySubscriptionPeriod: number;
|
|
3096
|
+
/**
|
|
3097
|
+
* Name of the subscription benefit provider (for example, the name of the associated experience).
|
|
3098
|
+
*/
|
|
3099
|
+
SubscriptionProviderName: string;
|
|
3100
|
+
/**
|
|
3101
|
+
* True if the subscription product is available for sale.
|
|
3102
|
+
*/
|
|
3103
|
+
IsForSale: boolean;
|
|
3104
|
+
/**
|
|
3105
|
+
* A number that can be used to compare the price of different subscription products. This is not the actual price of the subscription (for example, 499).
|
|
3106
|
+
*/
|
|
3107
|
+
PriceTier: number;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
interface UserSubscriptionDetails {
|
|
3111
|
+
/**
|
|
3112
|
+
* Current state of this particular subscription.
|
|
3113
|
+
*/
|
|
3114
|
+
SubscriptionState: Enum.SubscriptionState;
|
|
3115
|
+
/**
|
|
3116
|
+
* Renewal time for this current subscription. May be in the past if the subscription is in [SubscribedRenewalPaymentPending](https://create.roblox.com/docs/reference/engine/enums/SubscriptionState#SubscribedRenewalPaymentPending) state. This field is will be `nil` if the subscription will not renew, is [Expired](https://create.roblox.com/docs/reference/engine/enums/SubscriptionState#Expired), or the user never subscribed.
|
|
3117
|
+
*/
|
|
3118
|
+
NextRenewTime: DateTime | undefined;
|
|
3119
|
+
/**
|
|
3120
|
+
* When this subscription expires. This field will be nil if the subscription is not cancelled or the user never subscribed.
|
|
3121
|
+
*/
|
|
3122
|
+
ExpireTime: DateTime | undefined;
|
|
3123
|
+
/**
|
|
3124
|
+
* Table containing the details of the subscription expiration. This field will be `nil` if the subscription is not in the [Expired](https://create.roblox.com/docs/reference/engine/enums/SubscriptionState#Expired) state. If populated, the table contains a ExpirationReason key of type [Enum.SubscriptionExpirationReason](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason) describing why the subscription is expired.
|
|
3125
|
+
*/
|
|
3126
|
+
ExpirationDetails: ExpirationDetails | undefined;
|
|
3127
|
+
}
|
|
3128
|
+
|
|
3129
|
+
interface UserSubscriptionPaymentHistory {
|
|
3130
|
+
/**
|
|
3131
|
+
* [DateTime](https://create.roblox.com/docs/reference/engine/datatypes/DateTime) at the start of this particular subscription period.
|
|
3132
|
+
*/
|
|
3133
|
+
CycleStartTime: DateTime;
|
|
3134
|
+
/**
|
|
3135
|
+
* [DateTime](https://create.roblox.com/docs/reference/engine/datatypes/DateTime) at the end of this particular subscription period.
|
|
3136
|
+
*/
|
|
3137
|
+
CycleEndTime: DateTime;
|
|
3138
|
+
/**
|
|
3139
|
+
* [Enum.SubscriptionPaymentStatus.Paid](https://create.roblox.com/docs/reference/engine/enums/SubscriptionPaymentStatus#Paid) if the user paid for this particular subscription period. [Enum.SubscriptionPaymentStatus.Refunded](https://create.roblox.com/docs/reference/engine/enums/SubscriptionPaymentStatus#Refunded) if the user refunded this particular subscription period.
|
|
3140
|
+
*/
|
|
3141
|
+
PaymentStatus: Enum.SubscriptionPaymentStatus;
|
|
3142
|
+
}
|
|
3143
|
+
|
|
3144
|
+
interface UserSubscriptionStatus {
|
|
3145
|
+
/**
|
|
3146
|
+
* True if the user's subscription is active.
|
|
3147
|
+
*/
|
|
3148
|
+
IsSubscribed: boolean;
|
|
3149
|
+
/**
|
|
3150
|
+
* True if the user is set to renew this subscription after the current subscription period ends.
|
|
3151
|
+
*/
|
|
3152
|
+
IsRenewing: boolean;
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
interface ExpirationDetails {
|
|
3156
|
+
ExpirationReason: Enum.SubscriptionExpirationReason;
|
|
3157
|
+
}
|